Skip to content

Commit

Permalink
fix: rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-fenster committed Apr 9, 2021
1 parent 2d48c59 commit c39195c
Show file tree
Hide file tree
Showing 13 changed files with 99 additions and 34 deletions.
1 change: 1 addition & 0 deletions cli/package.json
@@ -1,6 +1,7 @@
{
"version": "6.9.0",
"dependencies": {
"escodegen": "^2.0.0",
"espree": "^7.1.0",
"tmp": "^0.2.1"
}
Expand Down
22 changes: 17 additions & 5 deletions dist/light/protobuf.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/light/protobuf.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/light/protobuf.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/light/protobuf.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/minimal/protobuf.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/minimal/protobuf.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/minimal/protobuf.min.js.map

Large diffs are not rendered by default.

63 changes: 54 additions & 9 deletions dist/protobuf.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/protobuf.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/protobuf.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/protobuf.min.js.map

Large diffs are not rendered by default.

15 changes: 11 additions & 4 deletions index.d.ts
Expand Up @@ -300,9 +300,6 @@ export class FieldBase extends ReflectionObject {
*/
constructor(name: string, id: number, type: string, rule?: (string|{ [k: string]: any }), extend?: (string|{ [k: string]: any }), options?: { [k: string]: any }, comment?: string);

/** Field rule, if any. */
public rule?: string;

/** Field type. */
public type: string;

Expand Down Expand Up @@ -602,8 +599,9 @@ export class Method extends ReflectionObject {
* @param [responseStream] Whether the response is streamed
* @param [options] Declared options
* @param [comment] The comment for this method
* @param [parsedOptions] Declared options, properly parsed into an object
*/
constructor(name: string, type: (string|undefined), requestType: string, responseType: string, requestStream?: (boolean|{ [k: string]: any }), responseStream?: (boolean|{ [k: string]: any }), options?: { [k: string]: any }, comment?: string);
constructor(name: string, type: (string|undefined), requestType: string, responseType: string, requestStream?: (boolean|{ [k: string]: any }), responseStream?: (boolean|{ [k: string]: any }), options?: { [k: string]: any }, comment?: string, parsedOptions?: { [k: string]: any });

/** Method type. */
public type: string;
Expand All @@ -629,6 +627,9 @@ export class Method extends ReflectionObject {
/** Comment for this method */
public comment: (string|null);

/** Options properly parsed into an object */
public parsedOptions: any;

/**
* Constructs a method from a method descriptor.
* @param name Method name
Expand Down Expand Up @@ -666,6 +667,12 @@ export interface IMethod {

/** Method options */
options?: { [k: string]: any };

/** Method comments */
comment: string;

/** Method options properly parsed into an object */
parsedOptions?: { [k: string]: any };
}

/** Reflected namespace. */
Expand Down

0 comments on commit c39195c

Please sign in to comment.