@wix/metro-common-builders 1.0.1408 → 1.0.1410
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/src/proto/client/index.d.ts +4 -0
- package/dist/es/src/proto/index.d.ts +2 -0
- package/dist/es/src/proto/index.js +28 -1
- package/dist/es/src/proto/server/index.d.ts +4 -0
- package/dist/src/proto/client/index.d.ts +4 -0
- package/dist/src/proto/index.d.ts +2 -0
- package/dist/src/proto/index.js +28 -1
- package/dist/src/proto/server/index.d.ts +4 -0
- package/package.json +4 -4
|
@@ -413,6 +413,7 @@ declare namespace $requests {
|
|
|
413
413
|
applicationCode?: string;
|
|
414
414
|
name?: string;
|
|
415
415
|
errorSchemaName?: string;
|
|
416
|
+
comment?: string;
|
|
416
417
|
}
|
|
417
418
|
export class Error implements IError {
|
|
418
419
|
constructor(data?: IError);
|
|
@@ -421,6 +422,7 @@ declare namespace $requests {
|
|
|
421
422
|
applicationCode?: string;
|
|
422
423
|
name?: string;
|
|
423
424
|
errorSchemaName?: string;
|
|
425
|
+
comment?: string;
|
|
424
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
425
427
|
}
|
|
426
428
|
export namespace Error {
|
|
@@ -3949,6 +3951,7 @@ declare namespace $responses {
|
|
|
3949
3951
|
applicationCode: string;
|
|
3950
3952
|
name?: string;
|
|
3951
3953
|
errorSchemaName?: string;
|
|
3954
|
+
comment?: string;
|
|
3952
3955
|
}
|
|
3953
3956
|
export class Error implements IError {
|
|
3954
3957
|
constructor(data?: IError);
|
|
@@ -3957,6 +3960,7 @@ declare namespace $responses {
|
|
|
3957
3960
|
applicationCode: string;
|
|
3958
3961
|
name?: string;
|
|
3959
3962
|
errorSchemaName?: string;
|
|
3963
|
+
comment?: string;
|
|
3960
3964
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3961
3965
|
}
|
|
3962
3966
|
export namespace Error {
|
|
@@ -413,6 +413,7 @@ declare namespace $wrapper {
|
|
|
413
413
|
applicationCode?: (string | null);
|
|
414
414
|
name?: (string | null);
|
|
415
415
|
errorSchemaName?: (string | null);
|
|
416
|
+
comment?: (string | null);
|
|
416
417
|
}
|
|
417
418
|
export class Error implements IError {
|
|
418
419
|
constructor(data?: IError);
|
|
@@ -421,6 +422,7 @@ declare namespace $wrapper {
|
|
|
421
422
|
applicationCode?: (string | null);
|
|
422
423
|
name?: (string | null);
|
|
423
424
|
errorSchemaName?: (string | null);
|
|
425
|
+
comment?: (string | null);
|
|
424
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
425
427
|
}
|
|
426
428
|
export namespace Error {
|
|
@@ -10,7 +10,7 @@ $root.__options = {
|
|
|
10
10
|
'stringLongs': true,
|
|
11
11
|
'stdCase': false,
|
|
12
12
|
'generatorVersion': '2.0.1155',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': '228f4ff7eaa5d880307a89e9c26f337a2e4e349c'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -1071,6 +1071,12 @@ $root.__lookup = function (pbjs) {
|
|
|
1071
1071
|
'id': 5,
|
|
1072
1072
|
'comment': null,
|
|
1073
1073
|
'parsedOptions': null
|
|
1074
|
+
},
|
|
1075
|
+
'comment': {
|
|
1076
|
+
'type': 'google.protobuf.StringValue',
|
|
1077
|
+
'id': 6,
|
|
1078
|
+
'comment': null,
|
|
1079
|
+
'parsedOptions': null
|
|
1074
1080
|
}
|
|
1075
1081
|
},
|
|
1076
1082
|
'nested': {
|
|
@@ -13702,6 +13708,7 @@ $root.wix = (function () {
|
|
|
13702
13708
|
this.applicationCode = props && props.applicationCode;
|
|
13703
13709
|
this.name = props && props.name;
|
|
13704
13710
|
this.errorSchemaName = props && props.errorSchemaName;
|
|
13711
|
+
this.comment = props && props.comment;
|
|
13705
13712
|
}
|
|
13706
13713
|
static toJSON(obj, helper, withDefaults) {
|
|
13707
13714
|
if (obj == null) {
|
|
@@ -13733,6 +13740,11 @@ $root.wix = (function () {
|
|
|
13733
13740
|
} else if (withDefaults) {
|
|
13734
13741
|
delete json['errorSchemaName'];
|
|
13735
13742
|
}
|
|
13743
|
+
if (obj['comment'] != null) {
|
|
13744
|
+
json['comment'] = $root.google.protobuf.StringValue.toJSON(obj['comment'], helper, withDefaults);
|
|
13745
|
+
} else if (withDefaults) {
|
|
13746
|
+
delete json['comment'];
|
|
13747
|
+
}
|
|
13736
13748
|
return json;
|
|
13737
13749
|
}
|
|
13738
13750
|
}
|
|
@@ -13774,6 +13786,13 @@ $root.wix = (function () {
|
|
|
13774
13786
|
} else {
|
|
13775
13787
|
delete result['errorSchemaName'];
|
|
13776
13788
|
}
|
|
13789
|
+
if (json['comment'] != null) {
|
|
13790
|
+
result['comment'] = $root.google.protobuf.StringValue.fromJSON(json['comment'], helper);
|
|
13791
|
+
} else if (withDefaults !== false) {
|
|
13792
|
+
delete result['comment'];
|
|
13793
|
+
} else {
|
|
13794
|
+
delete result['comment'];
|
|
13795
|
+
}
|
|
13777
13796
|
return result;
|
|
13778
13797
|
} else
|
|
13779
13798
|
return json;
|
|
@@ -13798,6 +13817,9 @@ $root.wix = (function () {
|
|
|
13798
13817
|
if (obj['errorSchemaName'] != null) {
|
|
13799
13818
|
grpc['errorSchemaName'] = $root.google.protobuf.StringValue.toGRPC(obj['errorSchemaName'], helper);
|
|
13800
13819
|
}
|
|
13820
|
+
if (obj['comment'] != null) {
|
|
13821
|
+
grpc['comment'] = $root.google.protobuf.StringValue.toGRPC(obj['comment'], helper);
|
|
13822
|
+
}
|
|
13801
13823
|
return grpc;
|
|
13802
13824
|
}
|
|
13803
13825
|
}
|
|
@@ -13831,6 +13853,11 @@ $root.wix = (function () {
|
|
|
13831
13853
|
} else {
|
|
13832
13854
|
delete result['errorSchemaName'];
|
|
13833
13855
|
}
|
|
13856
|
+
if (grpc['comment'] != null) {
|
|
13857
|
+
result['comment'] = $root.google.protobuf.StringValue.fromGRPC(grpc['comment'], helper);
|
|
13858
|
+
} else {
|
|
13859
|
+
delete result['comment'];
|
|
13860
|
+
}
|
|
13834
13861
|
return result;
|
|
13835
13862
|
}
|
|
13836
13863
|
}
|
|
@@ -413,6 +413,7 @@ declare namespace $requests {
|
|
|
413
413
|
applicationCode: string;
|
|
414
414
|
name?: string;
|
|
415
415
|
errorSchemaName?: string;
|
|
416
|
+
comment?: string;
|
|
416
417
|
}
|
|
417
418
|
export class Error implements IError {
|
|
418
419
|
constructor(data?: IError);
|
|
@@ -421,6 +422,7 @@ declare namespace $requests {
|
|
|
421
422
|
applicationCode: string;
|
|
422
423
|
name?: string;
|
|
423
424
|
errorSchemaName?: string;
|
|
425
|
+
comment?: string;
|
|
424
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
425
427
|
}
|
|
426
428
|
export namespace Error {
|
|
@@ -3949,6 +3951,7 @@ declare namespace $responses {
|
|
|
3949
3951
|
applicationCode?: string;
|
|
3950
3952
|
name?: string;
|
|
3951
3953
|
errorSchemaName?: string;
|
|
3954
|
+
comment?: string;
|
|
3952
3955
|
}
|
|
3953
3956
|
export class Error implements IError {
|
|
3954
3957
|
constructor(data?: IError);
|
|
@@ -3957,6 +3960,7 @@ declare namespace $responses {
|
|
|
3957
3960
|
applicationCode?: string;
|
|
3958
3961
|
name?: string;
|
|
3959
3962
|
errorSchemaName?: string;
|
|
3963
|
+
comment?: string;
|
|
3960
3964
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3961
3965
|
}
|
|
3962
3966
|
export namespace Error {
|
|
@@ -413,6 +413,7 @@ declare namespace $requests {
|
|
|
413
413
|
applicationCode?: string;
|
|
414
414
|
name?: string;
|
|
415
415
|
errorSchemaName?: string;
|
|
416
|
+
comment?: string;
|
|
416
417
|
}
|
|
417
418
|
export class Error implements IError {
|
|
418
419
|
constructor(data?: IError);
|
|
@@ -421,6 +422,7 @@ declare namespace $requests {
|
|
|
421
422
|
applicationCode?: string;
|
|
422
423
|
name?: string;
|
|
423
424
|
errorSchemaName?: string;
|
|
425
|
+
comment?: string;
|
|
424
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
425
427
|
}
|
|
426
428
|
export namespace Error {
|
|
@@ -3949,6 +3951,7 @@ declare namespace $responses {
|
|
|
3949
3951
|
applicationCode: string;
|
|
3950
3952
|
name?: string;
|
|
3951
3953
|
errorSchemaName?: string;
|
|
3954
|
+
comment?: string;
|
|
3952
3955
|
}
|
|
3953
3956
|
export class Error implements IError {
|
|
3954
3957
|
constructor(data?: IError);
|
|
@@ -3957,6 +3960,7 @@ declare namespace $responses {
|
|
|
3957
3960
|
applicationCode: string;
|
|
3958
3961
|
name?: string;
|
|
3959
3962
|
errorSchemaName?: string;
|
|
3963
|
+
comment?: string;
|
|
3960
3964
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3961
3965
|
}
|
|
3962
3966
|
export namespace Error {
|
|
@@ -413,6 +413,7 @@ declare namespace $wrapper {
|
|
|
413
413
|
applicationCode?: (string | null);
|
|
414
414
|
name?: (string | null);
|
|
415
415
|
errorSchemaName?: (string | null);
|
|
416
|
+
comment?: (string | null);
|
|
416
417
|
}
|
|
417
418
|
export class Error implements IError {
|
|
418
419
|
constructor(data?: IError);
|
|
@@ -421,6 +422,7 @@ declare namespace $wrapper {
|
|
|
421
422
|
applicationCode?: (string | null);
|
|
422
423
|
name?: (string | null);
|
|
423
424
|
errorSchemaName?: (string | null);
|
|
425
|
+
comment?: (string | null);
|
|
424
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
425
427
|
}
|
|
426
428
|
export namespace Error {
|
package/dist/src/proto/index.js
CHANGED
|
@@ -10,7 +10,7 @@ $root.__options = {
|
|
|
10
10
|
'stringLongs': true,
|
|
11
11
|
'stdCase': false,
|
|
12
12
|
'generatorVersion': '2.0.1155',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': '228f4ff7eaa5d880307a89e9c26f337a2e4e349c'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -1071,6 +1071,12 @@ $root.__lookup = function (pbjs) {
|
|
|
1071
1071
|
'id': 5,
|
|
1072
1072
|
'comment': null,
|
|
1073
1073
|
'parsedOptions': null
|
|
1074
|
+
},
|
|
1075
|
+
'comment': {
|
|
1076
|
+
'type': 'google.protobuf.StringValue',
|
|
1077
|
+
'id': 6,
|
|
1078
|
+
'comment': null,
|
|
1079
|
+
'parsedOptions': null
|
|
1074
1080
|
}
|
|
1075
1081
|
},
|
|
1076
1082
|
'nested': {
|
|
@@ -13702,6 +13708,7 @@ $root.wix = (function () {
|
|
|
13702
13708
|
this.applicationCode = props && props.applicationCode;
|
|
13703
13709
|
this.name = props && props.name;
|
|
13704
13710
|
this.errorSchemaName = props && props.errorSchemaName;
|
|
13711
|
+
this.comment = props && props.comment;
|
|
13705
13712
|
}
|
|
13706
13713
|
static toJSON(obj, helper, withDefaults) {
|
|
13707
13714
|
if (obj == null) {
|
|
@@ -13733,6 +13740,11 @@ $root.wix = (function () {
|
|
|
13733
13740
|
} else if (withDefaults) {
|
|
13734
13741
|
delete json['errorSchemaName'];
|
|
13735
13742
|
}
|
|
13743
|
+
if (obj['comment'] != null) {
|
|
13744
|
+
json['comment'] = $root.google.protobuf.StringValue.toJSON(obj['comment'], helper, withDefaults);
|
|
13745
|
+
} else if (withDefaults) {
|
|
13746
|
+
delete json['comment'];
|
|
13747
|
+
}
|
|
13736
13748
|
return json;
|
|
13737
13749
|
}
|
|
13738
13750
|
}
|
|
@@ -13774,6 +13786,13 @@ $root.wix = (function () {
|
|
|
13774
13786
|
} else {
|
|
13775
13787
|
delete result['errorSchemaName'];
|
|
13776
13788
|
}
|
|
13789
|
+
if (json['comment'] != null) {
|
|
13790
|
+
result['comment'] = $root.google.protobuf.StringValue.fromJSON(json['comment'], helper);
|
|
13791
|
+
} else if (withDefaults !== false) {
|
|
13792
|
+
delete result['comment'];
|
|
13793
|
+
} else {
|
|
13794
|
+
delete result['comment'];
|
|
13795
|
+
}
|
|
13777
13796
|
return result;
|
|
13778
13797
|
} else
|
|
13779
13798
|
return json;
|
|
@@ -13798,6 +13817,9 @@ $root.wix = (function () {
|
|
|
13798
13817
|
if (obj['errorSchemaName'] != null) {
|
|
13799
13818
|
grpc['errorSchemaName'] = $root.google.protobuf.StringValue.toGRPC(obj['errorSchemaName'], helper);
|
|
13800
13819
|
}
|
|
13820
|
+
if (obj['comment'] != null) {
|
|
13821
|
+
grpc['comment'] = $root.google.protobuf.StringValue.toGRPC(obj['comment'], helper);
|
|
13822
|
+
}
|
|
13801
13823
|
return grpc;
|
|
13802
13824
|
}
|
|
13803
13825
|
}
|
|
@@ -13831,6 +13853,11 @@ $root.wix = (function () {
|
|
|
13831
13853
|
} else {
|
|
13832
13854
|
delete result['errorSchemaName'];
|
|
13833
13855
|
}
|
|
13856
|
+
if (grpc['comment'] != null) {
|
|
13857
|
+
result['comment'] = $root.google.protobuf.StringValue.fromGRPC(grpc['comment'], helper);
|
|
13858
|
+
} else {
|
|
13859
|
+
delete result['comment'];
|
|
13860
|
+
}
|
|
13834
13861
|
return result;
|
|
13835
13862
|
}
|
|
13836
13863
|
}
|
|
@@ -413,6 +413,7 @@ declare namespace $requests {
|
|
|
413
413
|
applicationCode: string;
|
|
414
414
|
name?: string;
|
|
415
415
|
errorSchemaName?: string;
|
|
416
|
+
comment?: string;
|
|
416
417
|
}
|
|
417
418
|
export class Error implements IError {
|
|
418
419
|
constructor(data?: IError);
|
|
@@ -421,6 +422,7 @@ declare namespace $requests {
|
|
|
421
422
|
applicationCode: string;
|
|
422
423
|
name?: string;
|
|
423
424
|
errorSchemaName?: string;
|
|
425
|
+
comment?: string;
|
|
424
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
425
427
|
}
|
|
426
428
|
export namespace Error {
|
|
@@ -3949,6 +3951,7 @@ declare namespace $responses {
|
|
|
3949
3951
|
applicationCode?: string;
|
|
3950
3952
|
name?: string;
|
|
3951
3953
|
errorSchemaName?: string;
|
|
3954
|
+
comment?: string;
|
|
3952
3955
|
}
|
|
3953
3956
|
export class Error implements IError {
|
|
3954
3957
|
constructor(data?: IError);
|
|
@@ -3957,6 +3960,7 @@ declare namespace $responses {
|
|
|
3957
3960
|
applicationCode?: string;
|
|
3958
3961
|
name?: string;
|
|
3959
3962
|
errorSchemaName?: string;
|
|
3963
|
+
comment?: string;
|
|
3960
3964
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3961
3965
|
}
|
|
3962
3966
|
export namespace Error {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/metro-common-builders",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1410",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Eli Ponyatovski",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"*.{js,ts}": "yoshi lint"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@wix/metro-runtime": "1.
|
|
36
|
+
"@wix/metro-runtime": "1.1765.0",
|
|
37
37
|
"long": "^5.1.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@rushstack/eslint-patch": "^1.1.0",
|
|
41
41
|
"@types/jest": "^24.9.1",
|
|
42
42
|
"@types/node": "^16.11.7",
|
|
43
|
-
"@wix/business-schema-api": "^1.7.
|
|
43
|
+
"@wix/business-schema-api": "^1.7.1485",
|
|
44
44
|
"@wix/wix-proto-codegen": "^2.0.1155",
|
|
45
45
|
"@wix/yoshi": "^6.95.1",
|
|
46
46
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"wallaby": {
|
|
72
72
|
"autoDetect": true
|
|
73
73
|
},
|
|
74
|
-
"falconPackageHash": "
|
|
74
|
+
"falconPackageHash": "a1012b29ffbdb02e86e62e8d62b1a8eb043e2c800dc3862131861313"
|
|
75
75
|
}
|