@wix/metro-common-builders 1.0.1520 → 1.0.1522
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 +8 -0
- package/dist/es/src/proto/index.d.ts +4 -0
- package/dist/es/src/proto/index.js +55 -1
- package/dist/es/src/proto/server/index.d.ts +8 -0
- package/dist/src/proto/client/index.d.ts +8 -0
- package/dist/src/proto/index.d.ts +4 -0
- package/dist/src/proto/index.js +55 -1
- package/dist/src/proto/server/index.d.ts +8 -0
- package/package.json +4 -4
|
@@ -2014,11 +2014,15 @@ declare namespace $requests {
|
|
|
2014
2014
|
export interface ICountOptions {
|
|
2015
2015
|
inheritWqlFrom?: string;
|
|
2016
2016
|
queryOptionsName?: string;
|
|
2017
|
+
filterField?: string;
|
|
2018
|
+
countField?: string;
|
|
2017
2019
|
}
|
|
2018
2020
|
export class CountOptions implements ICountOptions {
|
|
2019
2021
|
constructor(data?: ICountOptions);
|
|
2020
2022
|
inheritWqlFrom?: string;
|
|
2021
2023
|
queryOptionsName?: string;
|
|
2024
|
+
filterField?: string;
|
|
2025
|
+
countField?: string;
|
|
2022
2026
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2023
2027
|
}
|
|
2024
2028
|
export interface ISearchRelatedOptions {
|
|
@@ -5820,11 +5824,15 @@ declare namespace $responses {
|
|
|
5820
5824
|
export interface ICountOptions {
|
|
5821
5825
|
inheritWqlFrom?: string;
|
|
5822
5826
|
queryOptionsName?: string;
|
|
5827
|
+
filterField: string;
|
|
5828
|
+
countField: string;
|
|
5823
5829
|
}
|
|
5824
5830
|
export class CountOptions implements ICountOptions {
|
|
5825
5831
|
constructor(data?: ICountOptions);
|
|
5826
5832
|
inheritWqlFrom?: string;
|
|
5827
5833
|
queryOptionsName?: string;
|
|
5834
|
+
filterField: string;
|
|
5835
|
+
countField: string;
|
|
5828
5836
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5829
5837
|
}
|
|
5830
5838
|
export interface ISearchRelatedOptions {
|
|
@@ -2035,11 +2035,15 @@ declare namespace $wrapper {
|
|
|
2035
2035
|
export interface ICountOptions {
|
|
2036
2036
|
inheritWqlFrom?: (string | null);
|
|
2037
2037
|
queryOptionsName?: (string | null);
|
|
2038
|
+
filterField?: (string | null);
|
|
2039
|
+
countField?: (string | null);
|
|
2038
2040
|
}
|
|
2039
2041
|
export class CountOptions implements ICountOptions {
|
|
2040
2042
|
constructor(data?: ICountOptions);
|
|
2041
2043
|
inheritWqlFrom?: (string | null);
|
|
2042
2044
|
queryOptionsName?: (string | null);
|
|
2045
|
+
filterField?: (string | null);
|
|
2046
|
+
countField?: (string | null);
|
|
2043
2047
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2044
2048
|
}
|
|
2045
2049
|
export interface ISearchRelatedOptions {
|
|
@@ -10,7 +10,7 @@ $root.__options = {
|
|
|
10
10
|
'stringLongs': true,
|
|
11
11
|
'stdCase': false,
|
|
12
12
|
'generatorVersion': '2.0.1156',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': 'c3a5d1244926f7d5903824b5656ac5efa6308400'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -5306,6 +5306,18 @@ $root.__lookup = function (pbjs) {
|
|
|
5306
5306
|
'id': 2,
|
|
5307
5307
|
'comment': null,
|
|
5308
5308
|
'parsedOptions': null
|
|
5309
|
+
},
|
|
5310
|
+
'filterField': {
|
|
5311
|
+
'type': 'string',
|
|
5312
|
+
'id': 3,
|
|
5313
|
+
'comment': null,
|
|
5314
|
+
'parsedOptions': null
|
|
5315
|
+
},
|
|
5316
|
+
'countField': {
|
|
5317
|
+
'type': 'string',
|
|
5318
|
+
'id': 4,
|
|
5319
|
+
'comment': null,
|
|
5320
|
+
'parsedOptions': null
|
|
5309
5321
|
}
|
|
5310
5322
|
},
|
|
5311
5323
|
'comment': null
|
|
@@ -31092,6 +31104,8 @@ $root.wix = (function () {
|
|
|
31092
31104
|
constructor(props) {
|
|
31093
31105
|
this.inheritWqlFrom = props && props.inheritWqlFrom;
|
|
31094
31106
|
this.queryOptionsName = props && props.queryOptionsName;
|
|
31107
|
+
this.filterField = props && props.filterField;
|
|
31108
|
+
this.countField = props && props.countField;
|
|
31095
31109
|
}
|
|
31096
31110
|
static toJSON(obj, helper, withDefaults) {
|
|
31097
31111
|
if (obj == null) {
|
|
@@ -31108,6 +31122,16 @@ $root.wix = (function () {
|
|
|
31108
31122
|
} else if (withDefaults) {
|
|
31109
31123
|
delete json['queryOptionsName'];
|
|
31110
31124
|
}
|
|
31125
|
+
if (obj['filterField'] != null) {
|
|
31126
|
+
json['filterField'] = obj['filterField'];
|
|
31127
|
+
} else if (withDefaults) {
|
|
31128
|
+
json['filterField'] = '';
|
|
31129
|
+
}
|
|
31130
|
+
if (obj['countField'] != null) {
|
|
31131
|
+
json['countField'] = obj['countField'];
|
|
31132
|
+
} else if (withDefaults) {
|
|
31133
|
+
json['countField'] = '';
|
|
31134
|
+
}
|
|
31111
31135
|
return json;
|
|
31112
31136
|
}
|
|
31113
31137
|
}
|
|
@@ -31128,6 +31152,20 @@ $root.wix = (function () {
|
|
|
31128
31152
|
} else {
|
|
31129
31153
|
delete result['queryOptionsName'];
|
|
31130
31154
|
}
|
|
31155
|
+
if (json['filterField'] != null) {
|
|
31156
|
+
result['filterField'] = json['filterField'];
|
|
31157
|
+
} else if (withDefaults !== false) {
|
|
31158
|
+
result['filterField'] = '';
|
|
31159
|
+
} else {
|
|
31160
|
+
delete result['filterField'];
|
|
31161
|
+
}
|
|
31162
|
+
if (json['countField'] != null) {
|
|
31163
|
+
result['countField'] = json['countField'];
|
|
31164
|
+
} else if (withDefaults !== false) {
|
|
31165
|
+
result['countField'] = '';
|
|
31166
|
+
} else {
|
|
31167
|
+
delete result['countField'];
|
|
31168
|
+
}
|
|
31131
31169
|
return result;
|
|
31132
31170
|
} else
|
|
31133
31171
|
return json;
|
|
@@ -31143,6 +31181,12 @@ $root.wix = (function () {
|
|
|
31143
31181
|
if (obj['queryOptionsName'] != null) {
|
|
31144
31182
|
grpc['queryOptionsName'] = obj['queryOptionsName'];
|
|
31145
31183
|
}
|
|
31184
|
+
if (obj['filterField'] != null) {
|
|
31185
|
+
grpc['filterField'] = obj['filterField'];
|
|
31186
|
+
}
|
|
31187
|
+
if (obj['countField'] != null) {
|
|
31188
|
+
grpc['countField'] = obj['countField'];
|
|
31189
|
+
}
|
|
31146
31190
|
return grpc;
|
|
31147
31191
|
}
|
|
31148
31192
|
}
|
|
@@ -31161,6 +31205,16 @@ $root.wix = (function () {
|
|
|
31161
31205
|
} else {
|
|
31162
31206
|
delete result['queryOptionsName'];
|
|
31163
31207
|
}
|
|
31208
|
+
if (grpc['filterField'] != null) {
|
|
31209
|
+
result['filterField'] = grpc['filterField'];
|
|
31210
|
+
} else {
|
|
31211
|
+
result['filterField'] = '';
|
|
31212
|
+
}
|
|
31213
|
+
if (grpc['countField'] != null) {
|
|
31214
|
+
result['countField'] = grpc['countField'];
|
|
31215
|
+
} else {
|
|
31216
|
+
result['countField'] = '';
|
|
31217
|
+
}
|
|
31164
31218
|
return result;
|
|
31165
31219
|
}
|
|
31166
31220
|
}
|
|
@@ -2014,11 +2014,15 @@ declare namespace $requests {
|
|
|
2014
2014
|
export interface ICountOptions {
|
|
2015
2015
|
inheritWqlFrom?: string;
|
|
2016
2016
|
queryOptionsName?: string;
|
|
2017
|
+
filterField: string;
|
|
2018
|
+
countField: string;
|
|
2017
2019
|
}
|
|
2018
2020
|
export class CountOptions implements ICountOptions {
|
|
2019
2021
|
constructor(data?: ICountOptions);
|
|
2020
2022
|
inheritWqlFrom?: string;
|
|
2021
2023
|
queryOptionsName?: string;
|
|
2024
|
+
filterField: string;
|
|
2025
|
+
countField: string;
|
|
2022
2026
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2023
2027
|
}
|
|
2024
2028
|
export interface ISearchRelatedOptions {
|
|
@@ -5820,11 +5824,15 @@ declare namespace $responses {
|
|
|
5820
5824
|
export interface ICountOptions {
|
|
5821
5825
|
inheritWqlFrom?: string;
|
|
5822
5826
|
queryOptionsName?: string;
|
|
5827
|
+
filterField?: string;
|
|
5828
|
+
countField?: string;
|
|
5823
5829
|
}
|
|
5824
5830
|
export class CountOptions implements ICountOptions {
|
|
5825
5831
|
constructor(data?: ICountOptions);
|
|
5826
5832
|
inheritWqlFrom?: string;
|
|
5827
5833
|
queryOptionsName?: string;
|
|
5834
|
+
filterField?: string;
|
|
5835
|
+
countField?: string;
|
|
5828
5836
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5829
5837
|
}
|
|
5830
5838
|
export interface ISearchRelatedOptions {
|
|
@@ -2014,11 +2014,15 @@ declare namespace $requests {
|
|
|
2014
2014
|
export interface ICountOptions {
|
|
2015
2015
|
inheritWqlFrom?: string;
|
|
2016
2016
|
queryOptionsName?: string;
|
|
2017
|
+
filterField?: string;
|
|
2018
|
+
countField?: string;
|
|
2017
2019
|
}
|
|
2018
2020
|
export class CountOptions implements ICountOptions {
|
|
2019
2021
|
constructor(data?: ICountOptions);
|
|
2020
2022
|
inheritWqlFrom?: string;
|
|
2021
2023
|
queryOptionsName?: string;
|
|
2024
|
+
filterField?: string;
|
|
2025
|
+
countField?: string;
|
|
2022
2026
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2023
2027
|
}
|
|
2024
2028
|
export interface ISearchRelatedOptions {
|
|
@@ -5820,11 +5824,15 @@ declare namespace $responses {
|
|
|
5820
5824
|
export interface ICountOptions {
|
|
5821
5825
|
inheritWqlFrom?: string;
|
|
5822
5826
|
queryOptionsName?: string;
|
|
5827
|
+
filterField: string;
|
|
5828
|
+
countField: string;
|
|
5823
5829
|
}
|
|
5824
5830
|
export class CountOptions implements ICountOptions {
|
|
5825
5831
|
constructor(data?: ICountOptions);
|
|
5826
5832
|
inheritWqlFrom?: string;
|
|
5827
5833
|
queryOptionsName?: string;
|
|
5834
|
+
filterField: string;
|
|
5835
|
+
countField: string;
|
|
5828
5836
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5829
5837
|
}
|
|
5830
5838
|
export interface ISearchRelatedOptions {
|
|
@@ -2035,11 +2035,15 @@ declare namespace $wrapper {
|
|
|
2035
2035
|
export interface ICountOptions {
|
|
2036
2036
|
inheritWqlFrom?: (string | null);
|
|
2037
2037
|
queryOptionsName?: (string | null);
|
|
2038
|
+
filterField?: (string | null);
|
|
2039
|
+
countField?: (string | null);
|
|
2038
2040
|
}
|
|
2039
2041
|
export class CountOptions implements ICountOptions {
|
|
2040
2042
|
constructor(data?: ICountOptions);
|
|
2041
2043
|
inheritWqlFrom?: (string | null);
|
|
2042
2044
|
queryOptionsName?: (string | null);
|
|
2045
|
+
filterField?: (string | null);
|
|
2046
|
+
countField?: (string | null);
|
|
2043
2047
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2044
2048
|
}
|
|
2045
2049
|
export interface ISearchRelatedOptions {
|
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.1156',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': 'c3a5d1244926f7d5903824b5656ac5efa6308400'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -5306,6 +5306,18 @@ $root.__lookup = function (pbjs) {
|
|
|
5306
5306
|
'id': 2,
|
|
5307
5307
|
'comment': null,
|
|
5308
5308
|
'parsedOptions': null
|
|
5309
|
+
},
|
|
5310
|
+
'filterField': {
|
|
5311
|
+
'type': 'string',
|
|
5312
|
+
'id': 3,
|
|
5313
|
+
'comment': null,
|
|
5314
|
+
'parsedOptions': null
|
|
5315
|
+
},
|
|
5316
|
+
'countField': {
|
|
5317
|
+
'type': 'string',
|
|
5318
|
+
'id': 4,
|
|
5319
|
+
'comment': null,
|
|
5320
|
+
'parsedOptions': null
|
|
5309
5321
|
}
|
|
5310
5322
|
},
|
|
5311
5323
|
'comment': null
|
|
@@ -31092,6 +31104,8 @@ $root.wix = (function () {
|
|
|
31092
31104
|
constructor(props) {
|
|
31093
31105
|
this.inheritWqlFrom = props && props.inheritWqlFrom;
|
|
31094
31106
|
this.queryOptionsName = props && props.queryOptionsName;
|
|
31107
|
+
this.filterField = props && props.filterField;
|
|
31108
|
+
this.countField = props && props.countField;
|
|
31095
31109
|
}
|
|
31096
31110
|
static toJSON(obj, helper, withDefaults) {
|
|
31097
31111
|
if (obj == null) {
|
|
@@ -31108,6 +31122,16 @@ $root.wix = (function () {
|
|
|
31108
31122
|
} else if (withDefaults) {
|
|
31109
31123
|
delete json['queryOptionsName'];
|
|
31110
31124
|
}
|
|
31125
|
+
if (obj['filterField'] != null) {
|
|
31126
|
+
json['filterField'] = obj['filterField'];
|
|
31127
|
+
} else if (withDefaults) {
|
|
31128
|
+
json['filterField'] = '';
|
|
31129
|
+
}
|
|
31130
|
+
if (obj['countField'] != null) {
|
|
31131
|
+
json['countField'] = obj['countField'];
|
|
31132
|
+
} else if (withDefaults) {
|
|
31133
|
+
json['countField'] = '';
|
|
31134
|
+
}
|
|
31111
31135
|
return json;
|
|
31112
31136
|
}
|
|
31113
31137
|
}
|
|
@@ -31128,6 +31152,20 @@ $root.wix = (function () {
|
|
|
31128
31152
|
} else {
|
|
31129
31153
|
delete result['queryOptionsName'];
|
|
31130
31154
|
}
|
|
31155
|
+
if (json['filterField'] != null) {
|
|
31156
|
+
result['filterField'] = json['filterField'];
|
|
31157
|
+
} else if (withDefaults !== false) {
|
|
31158
|
+
result['filterField'] = '';
|
|
31159
|
+
} else {
|
|
31160
|
+
delete result['filterField'];
|
|
31161
|
+
}
|
|
31162
|
+
if (json['countField'] != null) {
|
|
31163
|
+
result['countField'] = json['countField'];
|
|
31164
|
+
} else if (withDefaults !== false) {
|
|
31165
|
+
result['countField'] = '';
|
|
31166
|
+
} else {
|
|
31167
|
+
delete result['countField'];
|
|
31168
|
+
}
|
|
31131
31169
|
return result;
|
|
31132
31170
|
} else
|
|
31133
31171
|
return json;
|
|
@@ -31143,6 +31181,12 @@ $root.wix = (function () {
|
|
|
31143
31181
|
if (obj['queryOptionsName'] != null) {
|
|
31144
31182
|
grpc['queryOptionsName'] = obj['queryOptionsName'];
|
|
31145
31183
|
}
|
|
31184
|
+
if (obj['filterField'] != null) {
|
|
31185
|
+
grpc['filterField'] = obj['filterField'];
|
|
31186
|
+
}
|
|
31187
|
+
if (obj['countField'] != null) {
|
|
31188
|
+
grpc['countField'] = obj['countField'];
|
|
31189
|
+
}
|
|
31146
31190
|
return grpc;
|
|
31147
31191
|
}
|
|
31148
31192
|
}
|
|
@@ -31161,6 +31205,16 @@ $root.wix = (function () {
|
|
|
31161
31205
|
} else {
|
|
31162
31206
|
delete result['queryOptionsName'];
|
|
31163
31207
|
}
|
|
31208
|
+
if (grpc['filterField'] != null) {
|
|
31209
|
+
result['filterField'] = grpc['filterField'];
|
|
31210
|
+
} else {
|
|
31211
|
+
result['filterField'] = '';
|
|
31212
|
+
}
|
|
31213
|
+
if (grpc['countField'] != null) {
|
|
31214
|
+
result['countField'] = grpc['countField'];
|
|
31215
|
+
} else {
|
|
31216
|
+
result['countField'] = '';
|
|
31217
|
+
}
|
|
31164
31218
|
return result;
|
|
31165
31219
|
}
|
|
31166
31220
|
}
|
|
@@ -2014,11 +2014,15 @@ declare namespace $requests {
|
|
|
2014
2014
|
export interface ICountOptions {
|
|
2015
2015
|
inheritWqlFrom?: string;
|
|
2016
2016
|
queryOptionsName?: string;
|
|
2017
|
+
filterField: string;
|
|
2018
|
+
countField: string;
|
|
2017
2019
|
}
|
|
2018
2020
|
export class CountOptions implements ICountOptions {
|
|
2019
2021
|
constructor(data?: ICountOptions);
|
|
2020
2022
|
inheritWqlFrom?: string;
|
|
2021
2023
|
queryOptionsName?: string;
|
|
2024
|
+
filterField: string;
|
|
2025
|
+
countField: string;
|
|
2022
2026
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2023
2027
|
}
|
|
2024
2028
|
export interface ISearchRelatedOptions {
|
|
@@ -5820,11 +5824,15 @@ declare namespace $responses {
|
|
|
5820
5824
|
export interface ICountOptions {
|
|
5821
5825
|
inheritWqlFrom?: string;
|
|
5822
5826
|
queryOptionsName?: string;
|
|
5827
|
+
filterField?: string;
|
|
5828
|
+
countField?: string;
|
|
5823
5829
|
}
|
|
5824
5830
|
export class CountOptions implements ICountOptions {
|
|
5825
5831
|
constructor(data?: ICountOptions);
|
|
5826
5832
|
inheritWqlFrom?: string;
|
|
5827
5833
|
queryOptionsName?: string;
|
|
5834
|
+
filterField?: string;
|
|
5835
|
+
countField?: string;
|
|
5828
5836
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5829
5837
|
}
|
|
5830
5838
|
export interface ISearchRelatedOptions {
|
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.1522",
|
|
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.1877.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.1548",
|
|
44
44
|
"@wix/wix-proto-codegen": "^2.0.1156",
|
|
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": "44d8cc29e8b01849af26e196b4f14d214ec87a27a3fc96bcd0bd0da4"
|
|
75
75
|
}
|