@wix/metro-common-builders 1.0.1409 → 1.0.1411
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 +32 -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 +32 -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
|
+
description?: 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
|
+
description?: 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
|
+
description?: 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
|
+
description?: 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
|
+
description?: (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
|
+
description?: (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': '25087fab2ac69a8af5a94a1edca8ee2f45b4ccf7'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -1071,6 +1071,16 @@ $root.__lookup = function (pbjs) {
|
|
|
1071
1071
|
'id': 5,
|
|
1072
1072
|
'comment': null,
|
|
1073
1073
|
'parsedOptions': null
|
|
1074
|
+
},
|
|
1075
|
+
'description': {
|
|
1076
|
+
'type': 'google.protobuf.StringValue',
|
|
1077
|
+
'id': 6,
|
|
1078
|
+
'options': { '(wix.api.maxLength)': 256 },
|
|
1079
|
+
'comment': null,
|
|
1080
|
+
'parsedOptions': [{
|
|
1081
|
+
'(wix.api.maxLength)': 256,
|
|
1082
|
+
'__comment': null
|
|
1083
|
+
}]
|
|
1074
1084
|
}
|
|
1075
1085
|
},
|
|
1076
1086
|
'nested': {
|
|
@@ -13702,6 +13712,7 @@ $root.wix = (function () {
|
|
|
13702
13712
|
this.applicationCode = props && props.applicationCode;
|
|
13703
13713
|
this.name = props && props.name;
|
|
13704
13714
|
this.errorSchemaName = props && props.errorSchemaName;
|
|
13715
|
+
this.description = props && props.description;
|
|
13705
13716
|
}
|
|
13706
13717
|
static toJSON(obj, helper, withDefaults) {
|
|
13707
13718
|
if (obj == null) {
|
|
@@ -13733,6 +13744,11 @@ $root.wix = (function () {
|
|
|
13733
13744
|
} else if (withDefaults) {
|
|
13734
13745
|
delete json['errorSchemaName'];
|
|
13735
13746
|
}
|
|
13747
|
+
if (obj['description'] != null) {
|
|
13748
|
+
json['description'] = $root.google.protobuf.StringValue.toJSON(obj['description'], helper, withDefaults);
|
|
13749
|
+
} else if (withDefaults) {
|
|
13750
|
+
delete json['description'];
|
|
13751
|
+
}
|
|
13736
13752
|
return json;
|
|
13737
13753
|
}
|
|
13738
13754
|
}
|
|
@@ -13774,6 +13790,13 @@ $root.wix = (function () {
|
|
|
13774
13790
|
} else {
|
|
13775
13791
|
delete result['errorSchemaName'];
|
|
13776
13792
|
}
|
|
13793
|
+
if (json['description'] != null) {
|
|
13794
|
+
result['description'] = $root.google.protobuf.StringValue.fromJSON(json['description'], helper);
|
|
13795
|
+
} else if (withDefaults !== false) {
|
|
13796
|
+
delete result['description'];
|
|
13797
|
+
} else {
|
|
13798
|
+
delete result['description'];
|
|
13799
|
+
}
|
|
13777
13800
|
return result;
|
|
13778
13801
|
} else
|
|
13779
13802
|
return json;
|
|
@@ -13798,6 +13821,9 @@ $root.wix = (function () {
|
|
|
13798
13821
|
if (obj['errorSchemaName'] != null) {
|
|
13799
13822
|
grpc['errorSchemaName'] = $root.google.protobuf.StringValue.toGRPC(obj['errorSchemaName'], helper);
|
|
13800
13823
|
}
|
|
13824
|
+
if (obj['description'] != null) {
|
|
13825
|
+
grpc['description'] = $root.google.protobuf.StringValue.toGRPC(obj['description'], helper);
|
|
13826
|
+
}
|
|
13801
13827
|
return grpc;
|
|
13802
13828
|
}
|
|
13803
13829
|
}
|
|
@@ -13831,6 +13857,11 @@ $root.wix = (function () {
|
|
|
13831
13857
|
} else {
|
|
13832
13858
|
delete result['errorSchemaName'];
|
|
13833
13859
|
}
|
|
13860
|
+
if (grpc['description'] != null) {
|
|
13861
|
+
result['description'] = $root.google.protobuf.StringValue.fromGRPC(grpc['description'], helper);
|
|
13862
|
+
} else {
|
|
13863
|
+
delete result['description'];
|
|
13864
|
+
}
|
|
13834
13865
|
return result;
|
|
13835
13866
|
}
|
|
13836
13867
|
}
|
|
@@ -413,6 +413,7 @@ declare namespace $requests {
|
|
|
413
413
|
applicationCode: string;
|
|
414
414
|
name?: string;
|
|
415
415
|
errorSchemaName?: string;
|
|
416
|
+
description?: 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
|
+
description?: 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
|
+
description?: 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
|
+
description?: 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
|
+
description?: 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
|
+
description?: 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
|
+
description?: 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
|
+
description?: 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
|
+
description?: (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
|
+
description?: (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': '25087fab2ac69a8af5a94a1edca8ee2f45b4ccf7'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -1071,6 +1071,16 @@ $root.__lookup = function (pbjs) {
|
|
|
1071
1071
|
'id': 5,
|
|
1072
1072
|
'comment': null,
|
|
1073
1073
|
'parsedOptions': null
|
|
1074
|
+
},
|
|
1075
|
+
'description': {
|
|
1076
|
+
'type': 'google.protobuf.StringValue',
|
|
1077
|
+
'id': 6,
|
|
1078
|
+
'options': { '(wix.api.maxLength)': 256 },
|
|
1079
|
+
'comment': null,
|
|
1080
|
+
'parsedOptions': [{
|
|
1081
|
+
'(wix.api.maxLength)': 256,
|
|
1082
|
+
'__comment': null
|
|
1083
|
+
}]
|
|
1074
1084
|
}
|
|
1075
1085
|
},
|
|
1076
1086
|
'nested': {
|
|
@@ -13702,6 +13712,7 @@ $root.wix = (function () {
|
|
|
13702
13712
|
this.applicationCode = props && props.applicationCode;
|
|
13703
13713
|
this.name = props && props.name;
|
|
13704
13714
|
this.errorSchemaName = props && props.errorSchemaName;
|
|
13715
|
+
this.description = props && props.description;
|
|
13705
13716
|
}
|
|
13706
13717
|
static toJSON(obj, helper, withDefaults) {
|
|
13707
13718
|
if (obj == null) {
|
|
@@ -13733,6 +13744,11 @@ $root.wix = (function () {
|
|
|
13733
13744
|
} else if (withDefaults) {
|
|
13734
13745
|
delete json['errorSchemaName'];
|
|
13735
13746
|
}
|
|
13747
|
+
if (obj['description'] != null) {
|
|
13748
|
+
json['description'] = $root.google.protobuf.StringValue.toJSON(obj['description'], helper, withDefaults);
|
|
13749
|
+
} else if (withDefaults) {
|
|
13750
|
+
delete json['description'];
|
|
13751
|
+
}
|
|
13736
13752
|
return json;
|
|
13737
13753
|
}
|
|
13738
13754
|
}
|
|
@@ -13774,6 +13790,13 @@ $root.wix = (function () {
|
|
|
13774
13790
|
} else {
|
|
13775
13791
|
delete result['errorSchemaName'];
|
|
13776
13792
|
}
|
|
13793
|
+
if (json['description'] != null) {
|
|
13794
|
+
result['description'] = $root.google.protobuf.StringValue.fromJSON(json['description'], helper);
|
|
13795
|
+
} else if (withDefaults !== false) {
|
|
13796
|
+
delete result['description'];
|
|
13797
|
+
} else {
|
|
13798
|
+
delete result['description'];
|
|
13799
|
+
}
|
|
13777
13800
|
return result;
|
|
13778
13801
|
} else
|
|
13779
13802
|
return json;
|
|
@@ -13798,6 +13821,9 @@ $root.wix = (function () {
|
|
|
13798
13821
|
if (obj['errorSchemaName'] != null) {
|
|
13799
13822
|
grpc['errorSchemaName'] = $root.google.protobuf.StringValue.toGRPC(obj['errorSchemaName'], helper);
|
|
13800
13823
|
}
|
|
13824
|
+
if (obj['description'] != null) {
|
|
13825
|
+
grpc['description'] = $root.google.protobuf.StringValue.toGRPC(obj['description'], helper);
|
|
13826
|
+
}
|
|
13801
13827
|
return grpc;
|
|
13802
13828
|
}
|
|
13803
13829
|
}
|
|
@@ -13831,6 +13857,11 @@ $root.wix = (function () {
|
|
|
13831
13857
|
} else {
|
|
13832
13858
|
delete result['errorSchemaName'];
|
|
13833
13859
|
}
|
|
13860
|
+
if (grpc['description'] != null) {
|
|
13861
|
+
result['description'] = $root.google.protobuf.StringValue.fromGRPC(grpc['description'], helper);
|
|
13862
|
+
} else {
|
|
13863
|
+
delete result['description'];
|
|
13864
|
+
}
|
|
13834
13865
|
return result;
|
|
13835
13866
|
}
|
|
13836
13867
|
}
|
|
@@ -413,6 +413,7 @@ declare namespace $requests {
|
|
|
413
413
|
applicationCode: string;
|
|
414
414
|
name?: string;
|
|
415
415
|
errorSchemaName?: string;
|
|
416
|
+
description?: 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
|
+
description?: 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
|
+
description?: 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
|
+
description?: 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.1411",
|
|
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.1766.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": "669a2ab345401f6363320434c9dea276a620f4266ae9ab9f0cb2db41"
|
|
75
75
|
}
|