@wix/metro-common-builders 1.0.1410 → 1.0.1412
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 -4
- package/dist/es/src/proto/index.d.ts +2 -2
- package/dist/es/src/proto/index.js +20 -16
- package/dist/es/src/proto/server/index.d.ts +4 -4
- package/dist/src/proto/client/index.d.ts +4 -4
- package/dist/src/proto/index.d.ts +2 -2
- package/dist/src/proto/index.js +20 -16
- package/dist/src/proto/server/index.d.ts +4 -4
- package/package.json +4 -4
|
@@ -413,7 +413,7 @@ declare namespace $requests {
|
|
|
413
413
|
applicationCode?: string;
|
|
414
414
|
name?: string;
|
|
415
415
|
errorSchemaName?: string;
|
|
416
|
-
|
|
416
|
+
description?: string;
|
|
417
417
|
}
|
|
418
418
|
export class Error implements IError {
|
|
419
419
|
constructor(data?: IError);
|
|
@@ -422,7 +422,7 @@ declare namespace $requests {
|
|
|
422
422
|
applicationCode?: string;
|
|
423
423
|
name?: string;
|
|
424
424
|
errorSchemaName?: string;
|
|
425
|
-
|
|
425
|
+
description?: string;
|
|
426
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
427
427
|
}
|
|
428
428
|
export namespace Error {
|
|
@@ -3951,7 +3951,7 @@ declare namespace $responses {
|
|
|
3951
3951
|
applicationCode: string;
|
|
3952
3952
|
name?: string;
|
|
3953
3953
|
errorSchemaName?: string;
|
|
3954
|
-
|
|
3954
|
+
description?: string;
|
|
3955
3955
|
}
|
|
3956
3956
|
export class Error implements IError {
|
|
3957
3957
|
constructor(data?: IError);
|
|
@@ -3960,7 +3960,7 @@ declare namespace $responses {
|
|
|
3960
3960
|
applicationCode: string;
|
|
3961
3961
|
name?: string;
|
|
3962
3962
|
errorSchemaName?: string;
|
|
3963
|
-
|
|
3963
|
+
description?: string;
|
|
3964
3964
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3965
3965
|
}
|
|
3966
3966
|
export namespace Error {
|
|
@@ -413,7 +413,7 @@ declare namespace $wrapper {
|
|
|
413
413
|
applicationCode?: (string | null);
|
|
414
414
|
name?: (string | null);
|
|
415
415
|
errorSchemaName?: (string | null);
|
|
416
|
-
|
|
416
|
+
description?: (string | null);
|
|
417
417
|
}
|
|
418
418
|
export class Error implements IError {
|
|
419
419
|
constructor(data?: IError);
|
|
@@ -422,7 +422,7 @@ declare namespace $wrapper {
|
|
|
422
422
|
applicationCode?: (string | null);
|
|
423
423
|
name?: (string | null);
|
|
424
424
|
errorSchemaName?: (string | null);
|
|
425
|
-
|
|
425
|
+
description?: (string | null);
|
|
426
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
427
427
|
}
|
|
428
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': '25087fab2ac69a8af5a94a1edca8ee2f45b4ccf7'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -1072,11 +1072,15 @@ $root.__lookup = function (pbjs) {
|
|
|
1072
1072
|
'comment': null,
|
|
1073
1073
|
'parsedOptions': null
|
|
1074
1074
|
},
|
|
1075
|
-
'
|
|
1075
|
+
'description': {
|
|
1076
1076
|
'type': 'google.protobuf.StringValue',
|
|
1077
1077
|
'id': 6,
|
|
1078
|
+
'options': { '(wix.api.maxLength)': 256 },
|
|
1078
1079
|
'comment': null,
|
|
1079
|
-
'parsedOptions':
|
|
1080
|
+
'parsedOptions': [{
|
|
1081
|
+
'(wix.api.maxLength)': 256,
|
|
1082
|
+
'__comment': null
|
|
1083
|
+
}]
|
|
1080
1084
|
}
|
|
1081
1085
|
},
|
|
1082
1086
|
'nested': {
|
|
@@ -13708,7 +13712,7 @@ $root.wix = (function () {
|
|
|
13708
13712
|
this.applicationCode = props && props.applicationCode;
|
|
13709
13713
|
this.name = props && props.name;
|
|
13710
13714
|
this.errorSchemaName = props && props.errorSchemaName;
|
|
13711
|
-
this.
|
|
13715
|
+
this.description = props && props.description;
|
|
13712
13716
|
}
|
|
13713
13717
|
static toJSON(obj, helper, withDefaults) {
|
|
13714
13718
|
if (obj == null) {
|
|
@@ -13740,10 +13744,10 @@ $root.wix = (function () {
|
|
|
13740
13744
|
} else if (withDefaults) {
|
|
13741
13745
|
delete json['errorSchemaName'];
|
|
13742
13746
|
}
|
|
13743
|
-
if (obj['
|
|
13744
|
-
json['
|
|
13747
|
+
if (obj['description'] != null) {
|
|
13748
|
+
json['description'] = $root.google.protobuf.StringValue.toJSON(obj['description'], helper, withDefaults);
|
|
13745
13749
|
} else if (withDefaults) {
|
|
13746
|
-
delete json['
|
|
13750
|
+
delete json['description'];
|
|
13747
13751
|
}
|
|
13748
13752
|
return json;
|
|
13749
13753
|
}
|
|
@@ -13786,12 +13790,12 @@ $root.wix = (function () {
|
|
|
13786
13790
|
} else {
|
|
13787
13791
|
delete result['errorSchemaName'];
|
|
13788
13792
|
}
|
|
13789
|
-
if (json['
|
|
13790
|
-
result['
|
|
13793
|
+
if (json['description'] != null) {
|
|
13794
|
+
result['description'] = $root.google.protobuf.StringValue.fromJSON(json['description'], helper);
|
|
13791
13795
|
} else if (withDefaults !== false) {
|
|
13792
|
-
delete result['
|
|
13796
|
+
delete result['description'];
|
|
13793
13797
|
} else {
|
|
13794
|
-
delete result['
|
|
13798
|
+
delete result['description'];
|
|
13795
13799
|
}
|
|
13796
13800
|
return result;
|
|
13797
13801
|
} else
|
|
@@ -13817,8 +13821,8 @@ $root.wix = (function () {
|
|
|
13817
13821
|
if (obj['errorSchemaName'] != null) {
|
|
13818
13822
|
grpc['errorSchemaName'] = $root.google.protobuf.StringValue.toGRPC(obj['errorSchemaName'], helper);
|
|
13819
13823
|
}
|
|
13820
|
-
if (obj['
|
|
13821
|
-
grpc['
|
|
13824
|
+
if (obj['description'] != null) {
|
|
13825
|
+
grpc['description'] = $root.google.protobuf.StringValue.toGRPC(obj['description'], helper);
|
|
13822
13826
|
}
|
|
13823
13827
|
return grpc;
|
|
13824
13828
|
}
|
|
@@ -13853,10 +13857,10 @@ $root.wix = (function () {
|
|
|
13853
13857
|
} else {
|
|
13854
13858
|
delete result['errorSchemaName'];
|
|
13855
13859
|
}
|
|
13856
|
-
if (grpc['
|
|
13857
|
-
result['
|
|
13860
|
+
if (grpc['description'] != null) {
|
|
13861
|
+
result['description'] = $root.google.protobuf.StringValue.fromGRPC(grpc['description'], helper);
|
|
13858
13862
|
} else {
|
|
13859
|
-
delete result['
|
|
13863
|
+
delete result['description'];
|
|
13860
13864
|
}
|
|
13861
13865
|
return result;
|
|
13862
13866
|
}
|
|
@@ -413,7 +413,7 @@ declare namespace $requests {
|
|
|
413
413
|
applicationCode: string;
|
|
414
414
|
name?: string;
|
|
415
415
|
errorSchemaName?: string;
|
|
416
|
-
|
|
416
|
+
description?: string;
|
|
417
417
|
}
|
|
418
418
|
export class Error implements IError {
|
|
419
419
|
constructor(data?: IError);
|
|
@@ -422,7 +422,7 @@ declare namespace $requests {
|
|
|
422
422
|
applicationCode: string;
|
|
423
423
|
name?: string;
|
|
424
424
|
errorSchemaName?: string;
|
|
425
|
-
|
|
425
|
+
description?: string;
|
|
426
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
427
427
|
}
|
|
428
428
|
export namespace Error {
|
|
@@ -3951,7 +3951,7 @@ declare namespace $responses {
|
|
|
3951
3951
|
applicationCode?: string;
|
|
3952
3952
|
name?: string;
|
|
3953
3953
|
errorSchemaName?: string;
|
|
3954
|
-
|
|
3954
|
+
description?: string;
|
|
3955
3955
|
}
|
|
3956
3956
|
export class Error implements IError {
|
|
3957
3957
|
constructor(data?: IError);
|
|
@@ -3960,7 +3960,7 @@ declare namespace $responses {
|
|
|
3960
3960
|
applicationCode?: string;
|
|
3961
3961
|
name?: string;
|
|
3962
3962
|
errorSchemaName?: string;
|
|
3963
|
-
|
|
3963
|
+
description?: string;
|
|
3964
3964
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3965
3965
|
}
|
|
3966
3966
|
export namespace Error {
|
|
@@ -413,7 +413,7 @@ declare namespace $requests {
|
|
|
413
413
|
applicationCode?: string;
|
|
414
414
|
name?: string;
|
|
415
415
|
errorSchemaName?: string;
|
|
416
|
-
|
|
416
|
+
description?: string;
|
|
417
417
|
}
|
|
418
418
|
export class Error implements IError {
|
|
419
419
|
constructor(data?: IError);
|
|
@@ -422,7 +422,7 @@ declare namespace $requests {
|
|
|
422
422
|
applicationCode?: string;
|
|
423
423
|
name?: string;
|
|
424
424
|
errorSchemaName?: string;
|
|
425
|
-
|
|
425
|
+
description?: string;
|
|
426
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
427
427
|
}
|
|
428
428
|
export namespace Error {
|
|
@@ -3951,7 +3951,7 @@ declare namespace $responses {
|
|
|
3951
3951
|
applicationCode: string;
|
|
3952
3952
|
name?: string;
|
|
3953
3953
|
errorSchemaName?: string;
|
|
3954
|
-
|
|
3954
|
+
description?: string;
|
|
3955
3955
|
}
|
|
3956
3956
|
export class Error implements IError {
|
|
3957
3957
|
constructor(data?: IError);
|
|
@@ -3960,7 +3960,7 @@ declare namespace $responses {
|
|
|
3960
3960
|
applicationCode: string;
|
|
3961
3961
|
name?: string;
|
|
3962
3962
|
errorSchemaName?: string;
|
|
3963
|
-
|
|
3963
|
+
description?: string;
|
|
3964
3964
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3965
3965
|
}
|
|
3966
3966
|
export namespace Error {
|
|
@@ -413,7 +413,7 @@ declare namespace $wrapper {
|
|
|
413
413
|
applicationCode?: (string | null);
|
|
414
414
|
name?: (string | null);
|
|
415
415
|
errorSchemaName?: (string | null);
|
|
416
|
-
|
|
416
|
+
description?: (string | null);
|
|
417
417
|
}
|
|
418
418
|
export class Error implements IError {
|
|
419
419
|
constructor(data?: IError);
|
|
@@ -422,7 +422,7 @@ declare namespace $wrapper {
|
|
|
422
422
|
applicationCode?: (string | null);
|
|
423
423
|
name?: (string | null);
|
|
424
424
|
errorSchemaName?: (string | null);
|
|
425
|
-
|
|
425
|
+
description?: (string | null);
|
|
426
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
427
427
|
}
|
|
428
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': '25087fab2ac69a8af5a94a1edca8ee2f45b4ccf7'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -1072,11 +1072,15 @@ $root.__lookup = function (pbjs) {
|
|
|
1072
1072
|
'comment': null,
|
|
1073
1073
|
'parsedOptions': null
|
|
1074
1074
|
},
|
|
1075
|
-
'
|
|
1075
|
+
'description': {
|
|
1076
1076
|
'type': 'google.protobuf.StringValue',
|
|
1077
1077
|
'id': 6,
|
|
1078
|
+
'options': { '(wix.api.maxLength)': 256 },
|
|
1078
1079
|
'comment': null,
|
|
1079
|
-
'parsedOptions':
|
|
1080
|
+
'parsedOptions': [{
|
|
1081
|
+
'(wix.api.maxLength)': 256,
|
|
1082
|
+
'__comment': null
|
|
1083
|
+
}]
|
|
1080
1084
|
}
|
|
1081
1085
|
},
|
|
1082
1086
|
'nested': {
|
|
@@ -13708,7 +13712,7 @@ $root.wix = (function () {
|
|
|
13708
13712
|
this.applicationCode = props && props.applicationCode;
|
|
13709
13713
|
this.name = props && props.name;
|
|
13710
13714
|
this.errorSchemaName = props && props.errorSchemaName;
|
|
13711
|
-
this.
|
|
13715
|
+
this.description = props && props.description;
|
|
13712
13716
|
}
|
|
13713
13717
|
static toJSON(obj, helper, withDefaults) {
|
|
13714
13718
|
if (obj == null) {
|
|
@@ -13740,10 +13744,10 @@ $root.wix = (function () {
|
|
|
13740
13744
|
} else if (withDefaults) {
|
|
13741
13745
|
delete json['errorSchemaName'];
|
|
13742
13746
|
}
|
|
13743
|
-
if (obj['
|
|
13744
|
-
json['
|
|
13747
|
+
if (obj['description'] != null) {
|
|
13748
|
+
json['description'] = $root.google.protobuf.StringValue.toJSON(obj['description'], helper, withDefaults);
|
|
13745
13749
|
} else if (withDefaults) {
|
|
13746
|
-
delete json['
|
|
13750
|
+
delete json['description'];
|
|
13747
13751
|
}
|
|
13748
13752
|
return json;
|
|
13749
13753
|
}
|
|
@@ -13786,12 +13790,12 @@ $root.wix = (function () {
|
|
|
13786
13790
|
} else {
|
|
13787
13791
|
delete result['errorSchemaName'];
|
|
13788
13792
|
}
|
|
13789
|
-
if (json['
|
|
13790
|
-
result['
|
|
13793
|
+
if (json['description'] != null) {
|
|
13794
|
+
result['description'] = $root.google.protobuf.StringValue.fromJSON(json['description'], helper);
|
|
13791
13795
|
} else if (withDefaults !== false) {
|
|
13792
|
-
delete result['
|
|
13796
|
+
delete result['description'];
|
|
13793
13797
|
} else {
|
|
13794
|
-
delete result['
|
|
13798
|
+
delete result['description'];
|
|
13795
13799
|
}
|
|
13796
13800
|
return result;
|
|
13797
13801
|
} else
|
|
@@ -13817,8 +13821,8 @@ $root.wix = (function () {
|
|
|
13817
13821
|
if (obj['errorSchemaName'] != null) {
|
|
13818
13822
|
grpc['errorSchemaName'] = $root.google.protobuf.StringValue.toGRPC(obj['errorSchemaName'], helper);
|
|
13819
13823
|
}
|
|
13820
|
-
if (obj['
|
|
13821
|
-
grpc['
|
|
13824
|
+
if (obj['description'] != null) {
|
|
13825
|
+
grpc['description'] = $root.google.protobuf.StringValue.toGRPC(obj['description'], helper);
|
|
13822
13826
|
}
|
|
13823
13827
|
return grpc;
|
|
13824
13828
|
}
|
|
@@ -13853,10 +13857,10 @@ $root.wix = (function () {
|
|
|
13853
13857
|
} else {
|
|
13854
13858
|
delete result['errorSchemaName'];
|
|
13855
13859
|
}
|
|
13856
|
-
if (grpc['
|
|
13857
|
-
result['
|
|
13860
|
+
if (grpc['description'] != null) {
|
|
13861
|
+
result['description'] = $root.google.protobuf.StringValue.fromGRPC(grpc['description'], helper);
|
|
13858
13862
|
} else {
|
|
13859
|
-
delete result['
|
|
13863
|
+
delete result['description'];
|
|
13860
13864
|
}
|
|
13861
13865
|
return result;
|
|
13862
13866
|
}
|
|
@@ -413,7 +413,7 @@ declare namespace $requests {
|
|
|
413
413
|
applicationCode: string;
|
|
414
414
|
name?: string;
|
|
415
415
|
errorSchemaName?: string;
|
|
416
|
-
|
|
416
|
+
description?: string;
|
|
417
417
|
}
|
|
418
418
|
export class Error implements IError {
|
|
419
419
|
constructor(data?: IError);
|
|
@@ -422,7 +422,7 @@ declare namespace $requests {
|
|
|
422
422
|
applicationCode: string;
|
|
423
423
|
name?: string;
|
|
424
424
|
errorSchemaName?: string;
|
|
425
|
-
|
|
425
|
+
description?: string;
|
|
426
426
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
427
427
|
}
|
|
428
428
|
export namespace Error {
|
|
@@ -3951,7 +3951,7 @@ declare namespace $responses {
|
|
|
3951
3951
|
applicationCode?: string;
|
|
3952
3952
|
name?: string;
|
|
3953
3953
|
errorSchemaName?: string;
|
|
3954
|
-
|
|
3954
|
+
description?: string;
|
|
3955
3955
|
}
|
|
3956
3956
|
export class Error implements IError {
|
|
3957
3957
|
constructor(data?: IError);
|
|
@@ -3960,7 +3960,7 @@ declare namespace $responses {
|
|
|
3960
3960
|
applicationCode?: string;
|
|
3961
3961
|
name?: string;
|
|
3962
3962
|
errorSchemaName?: string;
|
|
3963
|
-
|
|
3963
|
+
description?: string;
|
|
3964
3964
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3965
3965
|
}
|
|
3966
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.1412",
|
|
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.1767.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.1486",
|
|
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": "04598b42559ea4e42cfe9ff3021e4796780b3dd1ad13b7db16796ef7"
|
|
75
75
|
}
|