@wix/metro-common-builders 1.0.1163 → 1.0.1165
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
|
@@ -92,6 +92,7 @@ declare namespace $requests {
|
|
|
92
92
|
appId?: string;
|
|
93
93
|
exposure?: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
94
94
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
95
|
+
containsPii?: boolean;
|
|
95
96
|
}
|
|
96
97
|
export class EntityInfo implements IEntityInfo {
|
|
97
98
|
constructor(data?: IEntityInfo);
|
|
@@ -116,6 +117,7 @@ declare namespace $requests {
|
|
|
116
117
|
appId?: string;
|
|
117
118
|
exposure?: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
118
119
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
120
|
+
containsPii?: boolean;
|
|
119
121
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
120
122
|
}
|
|
121
123
|
export interface IExtensible {
|
|
@@ -3001,6 +3003,7 @@ declare namespace $responses {
|
|
|
3001
3003
|
appId?: string;
|
|
3002
3004
|
exposure: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3003
3005
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3006
|
+
containsPii: boolean;
|
|
3004
3007
|
}
|
|
3005
3008
|
export class EntityInfo implements IEntityInfo {
|
|
3006
3009
|
constructor(data?: IEntityInfo);
|
|
@@ -3025,6 +3028,7 @@ declare namespace $responses {
|
|
|
3025
3028
|
appId?: string;
|
|
3026
3029
|
exposure: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3027
3030
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3031
|
+
containsPii: boolean;
|
|
3028
3032
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3029
3033
|
}
|
|
3030
3034
|
export interface IExtensible {
|
|
@@ -92,6 +92,7 @@ declare namespace $wrapper {
|
|
|
92
92
|
appId?: (string | null);
|
|
93
93
|
exposure?: ($wrapper.wix.coreservices.businessschema.v1.Exposure | null);
|
|
94
94
|
extensible?: ($wrapper.wix.coreservices.businessschema.v1.IExtensible | null);
|
|
95
|
+
containsPii?: (boolean | null);
|
|
95
96
|
}
|
|
96
97
|
export class EntityInfo implements IEntityInfo {
|
|
97
98
|
constructor(data?: IEntityInfo);
|
|
@@ -116,6 +117,7 @@ declare namespace $wrapper {
|
|
|
116
117
|
appId?: (string | null);
|
|
117
118
|
exposure?: ($wrapper.wix.coreservices.businessschema.v1.Exposure | null);
|
|
118
119
|
extensible?: ($wrapper.wix.coreservices.businessschema.v1.IExtensible | null);
|
|
120
|
+
containsPii?: (boolean | null);
|
|
119
121
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
120
122
|
}
|
|
121
123
|
export interface IExtensible {
|
|
@@ -10,7 +10,7 @@ $root.__options = {
|
|
|
10
10
|
'stringLongs': true,
|
|
11
11
|
'stdCase': false,
|
|
12
12
|
'generatorVersion': '2.0.1121',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': '69921c55c12ce30796cc232a15178bae19c1bb04'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -309,6 +309,12 @@ $root.__lookup = function (pbjs) {
|
|
|
309
309
|
'id': 21,
|
|
310
310
|
'comment': null,
|
|
311
311
|
'parsedOptions': null
|
|
312
|
+
},
|
|
313
|
+
'containsPii': {
|
|
314
|
+
'type': 'bool',
|
|
315
|
+
'id': 22,
|
|
316
|
+
'comment': null,
|
|
317
|
+
'parsedOptions': null
|
|
312
318
|
}
|
|
313
319
|
},
|
|
314
320
|
'comment': null
|
|
@@ -7651,6 +7657,7 @@ $root.wix = (function () {
|
|
|
7651
7657
|
this.appId = props && props.appId;
|
|
7652
7658
|
this.exposure = props && props.exposure;
|
|
7653
7659
|
this.extensible = props && props.extensible;
|
|
7660
|
+
this.containsPii = props && props.containsPii;
|
|
7654
7661
|
}
|
|
7655
7662
|
static toJSON(obj, helper, withDefaults) {
|
|
7656
7663
|
if (obj == null) {
|
|
@@ -7772,6 +7779,11 @@ $root.wix = (function () {
|
|
|
7772
7779
|
} else if (withDefaults) {
|
|
7773
7780
|
delete json['extensible'];
|
|
7774
7781
|
}
|
|
7782
|
+
if (obj['containsPii'] != null) {
|
|
7783
|
+
json['containsPii'] = obj['containsPii'];
|
|
7784
|
+
} else if (withDefaults) {
|
|
7785
|
+
json['containsPii'] = false;
|
|
7786
|
+
}
|
|
7775
7787
|
return json;
|
|
7776
7788
|
}
|
|
7777
7789
|
}
|
|
@@ -7935,6 +7947,13 @@ $root.wix = (function () {
|
|
|
7935
7947
|
} else {
|
|
7936
7948
|
delete result['extensible'];
|
|
7937
7949
|
}
|
|
7950
|
+
if (json['containsPii'] != null) {
|
|
7951
|
+
result['containsPii'] = json['containsPii'];
|
|
7952
|
+
} else if (withDefaults !== false) {
|
|
7953
|
+
result['containsPii'] = false;
|
|
7954
|
+
} else {
|
|
7955
|
+
delete result['containsPii'];
|
|
7956
|
+
}
|
|
7938
7957
|
return result;
|
|
7939
7958
|
} else
|
|
7940
7959
|
return json;
|
|
@@ -8017,6 +8036,9 @@ $root.wix = (function () {
|
|
|
8017
8036
|
if (obj['extensible'] != null) {
|
|
8018
8037
|
grpc['extensible'] = $root.wix.coreservices.businessschema.v1.Extensible.toGRPC(obj['extensible'], helper);
|
|
8019
8038
|
}
|
|
8039
|
+
if (obj['containsPii'] != null) {
|
|
8040
|
+
grpc['containsPii'] = obj['containsPii'];
|
|
8041
|
+
}
|
|
8020
8042
|
return grpc;
|
|
8021
8043
|
}
|
|
8022
8044
|
}
|
|
@@ -8140,6 +8162,11 @@ $root.wix = (function () {
|
|
|
8140
8162
|
} else {
|
|
8141
8163
|
delete result['extensible'];
|
|
8142
8164
|
}
|
|
8165
|
+
if (grpc['containsPii'] != null) {
|
|
8166
|
+
result['containsPii'] = grpc['containsPii'];
|
|
8167
|
+
} else {
|
|
8168
|
+
result['containsPii'] = false;
|
|
8169
|
+
}
|
|
8143
8170
|
return result;
|
|
8144
8171
|
}
|
|
8145
8172
|
}
|
|
@@ -92,6 +92,7 @@ declare namespace $requests {
|
|
|
92
92
|
appId?: string;
|
|
93
93
|
exposure: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
94
94
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
95
|
+
containsPii: boolean;
|
|
95
96
|
}
|
|
96
97
|
export class EntityInfo implements IEntityInfo {
|
|
97
98
|
constructor(data?: IEntityInfo);
|
|
@@ -116,6 +117,7 @@ declare namespace $requests {
|
|
|
116
117
|
appId?: string;
|
|
117
118
|
exposure: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
118
119
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
120
|
+
containsPii: boolean;
|
|
119
121
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
120
122
|
}
|
|
121
123
|
export interface IExtensible {
|
|
@@ -3001,6 +3003,7 @@ declare namespace $responses {
|
|
|
3001
3003
|
appId?: string;
|
|
3002
3004
|
exposure?: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3003
3005
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3006
|
+
containsPii?: boolean;
|
|
3004
3007
|
}
|
|
3005
3008
|
export class EntityInfo implements IEntityInfo {
|
|
3006
3009
|
constructor(data?: IEntityInfo);
|
|
@@ -3025,6 +3028,7 @@ declare namespace $responses {
|
|
|
3025
3028
|
appId?: string;
|
|
3026
3029
|
exposure?: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3027
3030
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3031
|
+
containsPii?: boolean;
|
|
3028
3032
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3029
3033
|
}
|
|
3030
3034
|
export interface IExtensible {
|
|
@@ -92,6 +92,7 @@ declare namespace $requests {
|
|
|
92
92
|
appId?: string;
|
|
93
93
|
exposure?: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
94
94
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
95
|
+
containsPii?: boolean;
|
|
95
96
|
}
|
|
96
97
|
export class EntityInfo implements IEntityInfo {
|
|
97
98
|
constructor(data?: IEntityInfo);
|
|
@@ -116,6 +117,7 @@ declare namespace $requests {
|
|
|
116
117
|
appId?: string;
|
|
117
118
|
exposure?: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
118
119
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
120
|
+
containsPii?: boolean;
|
|
119
121
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
120
122
|
}
|
|
121
123
|
export interface IExtensible {
|
|
@@ -3001,6 +3003,7 @@ declare namespace $responses {
|
|
|
3001
3003
|
appId?: string;
|
|
3002
3004
|
exposure: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3003
3005
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3006
|
+
containsPii: boolean;
|
|
3004
3007
|
}
|
|
3005
3008
|
export class EntityInfo implements IEntityInfo {
|
|
3006
3009
|
constructor(data?: IEntityInfo);
|
|
@@ -3025,6 +3028,7 @@ declare namespace $responses {
|
|
|
3025
3028
|
appId?: string;
|
|
3026
3029
|
exposure: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3027
3030
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3031
|
+
containsPii: boolean;
|
|
3028
3032
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3029
3033
|
}
|
|
3030
3034
|
export interface IExtensible {
|
|
@@ -92,6 +92,7 @@ declare namespace $wrapper {
|
|
|
92
92
|
appId?: (string | null);
|
|
93
93
|
exposure?: ($wrapper.wix.coreservices.businessschema.v1.Exposure | null);
|
|
94
94
|
extensible?: ($wrapper.wix.coreservices.businessschema.v1.IExtensible | null);
|
|
95
|
+
containsPii?: (boolean | null);
|
|
95
96
|
}
|
|
96
97
|
export class EntityInfo implements IEntityInfo {
|
|
97
98
|
constructor(data?: IEntityInfo);
|
|
@@ -116,6 +117,7 @@ declare namespace $wrapper {
|
|
|
116
117
|
appId?: (string | null);
|
|
117
118
|
exposure?: ($wrapper.wix.coreservices.businessschema.v1.Exposure | null);
|
|
118
119
|
extensible?: ($wrapper.wix.coreservices.businessschema.v1.IExtensible | null);
|
|
120
|
+
containsPii?: (boolean | null);
|
|
119
121
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
120
122
|
}
|
|
121
123
|
export interface IExtensible {
|
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.1121',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': '69921c55c12ce30796cc232a15178bae19c1bb04'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -309,6 +309,12 @@ $root.__lookup = function (pbjs) {
|
|
|
309
309
|
'id': 21,
|
|
310
310
|
'comment': null,
|
|
311
311
|
'parsedOptions': null
|
|
312
|
+
},
|
|
313
|
+
'containsPii': {
|
|
314
|
+
'type': 'bool',
|
|
315
|
+
'id': 22,
|
|
316
|
+
'comment': null,
|
|
317
|
+
'parsedOptions': null
|
|
312
318
|
}
|
|
313
319
|
},
|
|
314
320
|
'comment': null
|
|
@@ -7651,6 +7657,7 @@ $root.wix = (function () {
|
|
|
7651
7657
|
this.appId = props && props.appId;
|
|
7652
7658
|
this.exposure = props && props.exposure;
|
|
7653
7659
|
this.extensible = props && props.extensible;
|
|
7660
|
+
this.containsPii = props && props.containsPii;
|
|
7654
7661
|
}
|
|
7655
7662
|
static toJSON(obj, helper, withDefaults) {
|
|
7656
7663
|
if (obj == null) {
|
|
@@ -7772,6 +7779,11 @@ $root.wix = (function () {
|
|
|
7772
7779
|
} else if (withDefaults) {
|
|
7773
7780
|
delete json['extensible'];
|
|
7774
7781
|
}
|
|
7782
|
+
if (obj['containsPii'] != null) {
|
|
7783
|
+
json['containsPii'] = obj['containsPii'];
|
|
7784
|
+
} else if (withDefaults) {
|
|
7785
|
+
json['containsPii'] = false;
|
|
7786
|
+
}
|
|
7775
7787
|
return json;
|
|
7776
7788
|
}
|
|
7777
7789
|
}
|
|
@@ -7935,6 +7947,13 @@ $root.wix = (function () {
|
|
|
7935
7947
|
} else {
|
|
7936
7948
|
delete result['extensible'];
|
|
7937
7949
|
}
|
|
7950
|
+
if (json['containsPii'] != null) {
|
|
7951
|
+
result['containsPii'] = json['containsPii'];
|
|
7952
|
+
} else if (withDefaults !== false) {
|
|
7953
|
+
result['containsPii'] = false;
|
|
7954
|
+
} else {
|
|
7955
|
+
delete result['containsPii'];
|
|
7956
|
+
}
|
|
7938
7957
|
return result;
|
|
7939
7958
|
} else
|
|
7940
7959
|
return json;
|
|
@@ -8017,6 +8036,9 @@ $root.wix = (function () {
|
|
|
8017
8036
|
if (obj['extensible'] != null) {
|
|
8018
8037
|
grpc['extensible'] = $root.wix.coreservices.businessschema.v1.Extensible.toGRPC(obj['extensible'], helper);
|
|
8019
8038
|
}
|
|
8039
|
+
if (obj['containsPii'] != null) {
|
|
8040
|
+
grpc['containsPii'] = obj['containsPii'];
|
|
8041
|
+
}
|
|
8020
8042
|
return grpc;
|
|
8021
8043
|
}
|
|
8022
8044
|
}
|
|
@@ -8140,6 +8162,11 @@ $root.wix = (function () {
|
|
|
8140
8162
|
} else {
|
|
8141
8163
|
delete result['extensible'];
|
|
8142
8164
|
}
|
|
8165
|
+
if (grpc['containsPii'] != null) {
|
|
8166
|
+
result['containsPii'] = grpc['containsPii'];
|
|
8167
|
+
} else {
|
|
8168
|
+
result['containsPii'] = false;
|
|
8169
|
+
}
|
|
8143
8170
|
return result;
|
|
8144
8171
|
}
|
|
8145
8172
|
}
|
|
@@ -92,6 +92,7 @@ declare namespace $requests {
|
|
|
92
92
|
appId?: string;
|
|
93
93
|
exposure: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
94
94
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
95
|
+
containsPii: boolean;
|
|
95
96
|
}
|
|
96
97
|
export class EntityInfo implements IEntityInfo {
|
|
97
98
|
constructor(data?: IEntityInfo);
|
|
@@ -116,6 +117,7 @@ declare namespace $requests {
|
|
|
116
117
|
appId?: string;
|
|
117
118
|
exposure: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
118
119
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
120
|
+
containsPii: boolean;
|
|
119
121
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
120
122
|
}
|
|
121
123
|
export interface IExtensible {
|
|
@@ -3001,6 +3003,7 @@ declare namespace $responses {
|
|
|
3001
3003
|
appId?: string;
|
|
3002
3004
|
exposure?: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3003
3005
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3006
|
+
containsPii?: boolean;
|
|
3004
3007
|
}
|
|
3005
3008
|
export class EntityInfo implements IEntityInfo {
|
|
3006
3009
|
constructor(data?: IEntityInfo);
|
|
@@ -3025,6 +3028,7 @@ declare namespace $responses {
|
|
|
3025
3028
|
appId?: string;
|
|
3026
3029
|
exposure?: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3027
3030
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3031
|
+
containsPii?: boolean;
|
|
3028
3032
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3029
3033
|
}
|
|
3030
3034
|
export interface IExtensible {
|
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.1165",
|
|
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.1522.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.1351",
|
|
44
44
|
"@wix/wix-proto-codegen": "^2.0.1121",
|
|
45
45
|
"@wix/yoshi": "^5.162.14",
|
|
46
46
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"wallaby": {
|
|
71
71
|
"autoDetect": true
|
|
72
72
|
},
|
|
73
|
-
"falconPackageHash": "
|
|
73
|
+
"falconPackageHash": "1d3b77681a8e3f8c293a21edc6fb9d7d9b27b1dcacc3211fa92dad49"
|
|
74
74
|
}
|