@wix/metro-common-builders 1.0.1277 → 1.0.1279
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 +16 -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 +16 -16
- package/dist/src/proto/server/index.d.ts +4 -4
- package/package.json +3 -3
|
@@ -1590,13 +1590,13 @@ declare namespace $requests {
|
|
|
1590
1590
|
export interface IWql {
|
|
1591
1591
|
operatorFieldSupport?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1592
1592
|
pattern?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1593
|
-
|
|
1593
|
+
validateQuery?: boolean;
|
|
1594
1594
|
}
|
|
1595
1595
|
export class Wql implements IWql {
|
|
1596
1596
|
constructor(data?: IWql);
|
|
1597
1597
|
operatorFieldSupport?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1598
1598
|
pattern?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1599
|
-
|
|
1599
|
+
validateQuery?: boolean;
|
|
1600
1600
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1601
1601
|
}
|
|
1602
1602
|
export namespace Wql {
|
|
@@ -4636,13 +4636,13 @@ declare namespace $responses {
|
|
|
4636
4636
|
export interface IWql {
|
|
4637
4637
|
operatorFieldSupport: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4638
4638
|
pattern: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4639
|
-
|
|
4639
|
+
validateQuery: boolean;
|
|
4640
4640
|
}
|
|
4641
4641
|
export class Wql implements IWql {
|
|
4642
4642
|
constructor(data?: IWql);
|
|
4643
4643
|
operatorFieldSupport: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4644
4644
|
pattern: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4645
|
-
|
|
4645
|
+
validateQuery: boolean;
|
|
4646
4646
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4647
4647
|
}
|
|
4648
4648
|
export namespace Wql {
|
|
@@ -1605,13 +1605,13 @@ declare namespace $wrapper {
|
|
|
1605
1605
|
export interface IWql {
|
|
1606
1606
|
operatorFieldSupport?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
1607
1607
|
pattern?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
1608
|
-
|
|
1608
|
+
validateQuery?: (boolean | null);
|
|
1609
1609
|
}
|
|
1610
1610
|
export class Wql implements IWql {
|
|
1611
1611
|
constructor(data?: IWql);
|
|
1612
1612
|
operatorFieldSupport?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
1613
1613
|
pattern?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
1614
|
-
|
|
1614
|
+
validateQuery?: (boolean | null);
|
|
1615
1615
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1616
1616
|
}
|
|
1617
1617
|
export namespace Wql {
|
|
@@ -10,7 +10,7 @@ $root.__options = {
|
|
|
10
10
|
'stringLongs': true,
|
|
11
11
|
'stdCase': false,
|
|
12
12
|
'generatorVersion': '2.0.1148',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': 'decf395e3452d6cbd50367bf009caf4cd72c8691'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -3889,9 +3889,9 @@ $root.__lookup = function (pbjs) {
|
|
|
3889
3889
|
'comment': null,
|
|
3890
3890
|
'parsedOptions': null
|
|
3891
3891
|
},
|
|
3892
|
-
'
|
|
3892
|
+
'validateQuery': {
|
|
3893
3893
|
'type': 'bool',
|
|
3894
|
-
'id':
|
|
3894
|
+
'id': 6,
|
|
3895
3895
|
'comment': null,
|
|
3896
3896
|
'parsedOptions': null
|
|
3897
3897
|
}
|
|
@@ -23991,7 +23991,7 @@ $root.wix = (function () {
|
|
|
23991
23991
|
constructor(props) {
|
|
23992
23992
|
this.operatorFieldSupport = props && props.operatorFieldSupport;
|
|
23993
23993
|
this.pattern = props && props.pattern;
|
|
23994
|
-
this.
|
|
23994
|
+
this.validateQuery = props && props.validateQuery;
|
|
23995
23995
|
}
|
|
23996
23996
|
static toJSON(obj, helper, withDefaults) {
|
|
23997
23997
|
if (obj == null) {
|
|
@@ -24012,10 +24012,10 @@ $root.wix = (function () {
|
|
|
24012
24012
|
} else if (withDefaults) {
|
|
24013
24013
|
json['pattern'] = [];
|
|
24014
24014
|
}
|
|
24015
|
-
if (obj['
|
|
24016
|
-
json['
|
|
24015
|
+
if (obj['validateQuery'] != null) {
|
|
24016
|
+
json['validateQuery'] = obj['validateQuery'];
|
|
24017
24017
|
} else if (withDefaults) {
|
|
24018
|
-
json['
|
|
24018
|
+
json['validateQuery'] = false;
|
|
24019
24019
|
}
|
|
24020
24020
|
return json;
|
|
24021
24021
|
}
|
|
@@ -24041,12 +24041,12 @@ $root.wix = (function () {
|
|
|
24041
24041
|
} else {
|
|
24042
24042
|
delete result['pattern'];
|
|
24043
24043
|
}
|
|
24044
|
-
if (json['
|
|
24045
|
-
result['
|
|
24044
|
+
if (json['validateQuery'] != null) {
|
|
24045
|
+
result['validateQuery'] = json['validateQuery'];
|
|
24046
24046
|
} else if (withDefaults !== false) {
|
|
24047
|
-
result['
|
|
24047
|
+
result['validateQuery'] = false;
|
|
24048
24048
|
} else {
|
|
24049
|
-
delete result['
|
|
24049
|
+
delete result['validateQuery'];
|
|
24050
24050
|
}
|
|
24051
24051
|
return result;
|
|
24052
24052
|
} else
|
|
@@ -24067,8 +24067,8 @@ $root.wix = (function () {
|
|
|
24067
24067
|
return $root.wix.api.Wql.OperatorFieldSupport.toGRPC(e, helper);
|
|
24068
24068
|
});
|
|
24069
24069
|
}
|
|
24070
|
-
if (obj['
|
|
24071
|
-
grpc['
|
|
24070
|
+
if (obj['validateQuery'] != null) {
|
|
24071
|
+
grpc['validateQuery'] = obj['validateQuery'];
|
|
24072
24072
|
}
|
|
24073
24073
|
return grpc;
|
|
24074
24074
|
}
|
|
@@ -24092,10 +24092,10 @@ $root.wix = (function () {
|
|
|
24092
24092
|
} else {
|
|
24093
24093
|
result['pattern'] = [];
|
|
24094
24094
|
}
|
|
24095
|
-
if (grpc['
|
|
24096
|
-
result['
|
|
24095
|
+
if (grpc['validateQuery'] != null) {
|
|
24096
|
+
result['validateQuery'] = grpc['validateQuery'];
|
|
24097
24097
|
} else {
|
|
24098
|
-
result['
|
|
24098
|
+
result['validateQuery'] = false;
|
|
24099
24099
|
}
|
|
24100
24100
|
return result;
|
|
24101
24101
|
}
|
|
@@ -1590,13 +1590,13 @@ declare namespace $requests {
|
|
|
1590
1590
|
export interface IWql {
|
|
1591
1591
|
operatorFieldSupport: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1592
1592
|
pattern: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1593
|
-
|
|
1593
|
+
validateQuery: boolean;
|
|
1594
1594
|
}
|
|
1595
1595
|
export class Wql implements IWql {
|
|
1596
1596
|
constructor(data?: IWql);
|
|
1597
1597
|
operatorFieldSupport: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1598
1598
|
pattern: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1599
|
-
|
|
1599
|
+
validateQuery: boolean;
|
|
1600
1600
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1601
1601
|
}
|
|
1602
1602
|
export namespace Wql {
|
|
@@ -4636,13 +4636,13 @@ declare namespace $responses {
|
|
|
4636
4636
|
export interface IWql {
|
|
4637
4637
|
operatorFieldSupport?: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4638
4638
|
pattern?: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4639
|
-
|
|
4639
|
+
validateQuery?: boolean;
|
|
4640
4640
|
}
|
|
4641
4641
|
export class Wql implements IWql {
|
|
4642
4642
|
constructor(data?: IWql);
|
|
4643
4643
|
operatorFieldSupport?: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4644
4644
|
pattern?: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4645
|
-
|
|
4645
|
+
validateQuery?: boolean;
|
|
4646
4646
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4647
4647
|
}
|
|
4648
4648
|
export namespace Wql {
|
|
@@ -1590,13 +1590,13 @@ declare namespace $requests {
|
|
|
1590
1590
|
export interface IWql {
|
|
1591
1591
|
operatorFieldSupport?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1592
1592
|
pattern?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1593
|
-
|
|
1593
|
+
validateQuery?: boolean;
|
|
1594
1594
|
}
|
|
1595
1595
|
export class Wql implements IWql {
|
|
1596
1596
|
constructor(data?: IWql);
|
|
1597
1597
|
operatorFieldSupport?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1598
1598
|
pattern?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1599
|
-
|
|
1599
|
+
validateQuery?: boolean;
|
|
1600
1600
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1601
1601
|
}
|
|
1602
1602
|
export namespace Wql {
|
|
@@ -4636,13 +4636,13 @@ declare namespace $responses {
|
|
|
4636
4636
|
export interface IWql {
|
|
4637
4637
|
operatorFieldSupport: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4638
4638
|
pattern: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4639
|
-
|
|
4639
|
+
validateQuery: boolean;
|
|
4640
4640
|
}
|
|
4641
4641
|
export class Wql implements IWql {
|
|
4642
4642
|
constructor(data?: IWql);
|
|
4643
4643
|
operatorFieldSupport: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4644
4644
|
pattern: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4645
|
-
|
|
4645
|
+
validateQuery: boolean;
|
|
4646
4646
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4647
4647
|
}
|
|
4648
4648
|
export namespace Wql {
|
|
@@ -1605,13 +1605,13 @@ declare namespace $wrapper {
|
|
|
1605
1605
|
export interface IWql {
|
|
1606
1606
|
operatorFieldSupport?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
1607
1607
|
pattern?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
1608
|
-
|
|
1608
|
+
validateQuery?: (boolean | null);
|
|
1609
1609
|
}
|
|
1610
1610
|
export class Wql implements IWql {
|
|
1611
1611
|
constructor(data?: IWql);
|
|
1612
1612
|
operatorFieldSupport?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
1613
1613
|
pattern?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
1614
|
-
|
|
1614
|
+
validateQuery?: (boolean | null);
|
|
1615
1615
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1616
1616
|
}
|
|
1617
1617
|
export namespace Wql {
|
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.1148',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': 'decf395e3452d6cbd50367bf009caf4cd72c8691'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -3889,9 +3889,9 @@ $root.__lookup = function (pbjs) {
|
|
|
3889
3889
|
'comment': null,
|
|
3890
3890
|
'parsedOptions': null
|
|
3891
3891
|
},
|
|
3892
|
-
'
|
|
3892
|
+
'validateQuery': {
|
|
3893
3893
|
'type': 'bool',
|
|
3894
|
-
'id':
|
|
3894
|
+
'id': 6,
|
|
3895
3895
|
'comment': null,
|
|
3896
3896
|
'parsedOptions': null
|
|
3897
3897
|
}
|
|
@@ -23991,7 +23991,7 @@ $root.wix = (function () {
|
|
|
23991
23991
|
constructor(props) {
|
|
23992
23992
|
this.operatorFieldSupport = props && props.operatorFieldSupport;
|
|
23993
23993
|
this.pattern = props && props.pattern;
|
|
23994
|
-
this.
|
|
23994
|
+
this.validateQuery = props && props.validateQuery;
|
|
23995
23995
|
}
|
|
23996
23996
|
static toJSON(obj, helper, withDefaults) {
|
|
23997
23997
|
if (obj == null) {
|
|
@@ -24012,10 +24012,10 @@ $root.wix = (function () {
|
|
|
24012
24012
|
} else if (withDefaults) {
|
|
24013
24013
|
json['pattern'] = [];
|
|
24014
24014
|
}
|
|
24015
|
-
if (obj['
|
|
24016
|
-
json['
|
|
24015
|
+
if (obj['validateQuery'] != null) {
|
|
24016
|
+
json['validateQuery'] = obj['validateQuery'];
|
|
24017
24017
|
} else if (withDefaults) {
|
|
24018
|
-
json['
|
|
24018
|
+
json['validateQuery'] = false;
|
|
24019
24019
|
}
|
|
24020
24020
|
return json;
|
|
24021
24021
|
}
|
|
@@ -24041,12 +24041,12 @@ $root.wix = (function () {
|
|
|
24041
24041
|
} else {
|
|
24042
24042
|
delete result['pattern'];
|
|
24043
24043
|
}
|
|
24044
|
-
if (json['
|
|
24045
|
-
result['
|
|
24044
|
+
if (json['validateQuery'] != null) {
|
|
24045
|
+
result['validateQuery'] = json['validateQuery'];
|
|
24046
24046
|
} else if (withDefaults !== false) {
|
|
24047
|
-
result['
|
|
24047
|
+
result['validateQuery'] = false;
|
|
24048
24048
|
} else {
|
|
24049
|
-
delete result['
|
|
24049
|
+
delete result['validateQuery'];
|
|
24050
24050
|
}
|
|
24051
24051
|
return result;
|
|
24052
24052
|
} else
|
|
@@ -24067,8 +24067,8 @@ $root.wix = (function () {
|
|
|
24067
24067
|
return $root.wix.api.Wql.OperatorFieldSupport.toGRPC(e, helper);
|
|
24068
24068
|
});
|
|
24069
24069
|
}
|
|
24070
|
-
if (obj['
|
|
24071
|
-
grpc['
|
|
24070
|
+
if (obj['validateQuery'] != null) {
|
|
24071
|
+
grpc['validateQuery'] = obj['validateQuery'];
|
|
24072
24072
|
}
|
|
24073
24073
|
return grpc;
|
|
24074
24074
|
}
|
|
@@ -24092,10 +24092,10 @@ $root.wix = (function () {
|
|
|
24092
24092
|
} else {
|
|
24093
24093
|
result['pattern'] = [];
|
|
24094
24094
|
}
|
|
24095
|
-
if (grpc['
|
|
24096
|
-
result['
|
|
24095
|
+
if (grpc['validateQuery'] != null) {
|
|
24096
|
+
result['validateQuery'] = grpc['validateQuery'];
|
|
24097
24097
|
} else {
|
|
24098
|
-
result['
|
|
24098
|
+
result['validateQuery'] = false;
|
|
24099
24099
|
}
|
|
24100
24100
|
return result;
|
|
24101
24101
|
}
|
|
@@ -1590,13 +1590,13 @@ declare namespace $requests {
|
|
|
1590
1590
|
export interface IWql {
|
|
1591
1591
|
operatorFieldSupport: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1592
1592
|
pattern: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1593
|
-
|
|
1593
|
+
validateQuery: boolean;
|
|
1594
1594
|
}
|
|
1595
1595
|
export class Wql implements IWql {
|
|
1596
1596
|
constructor(data?: IWql);
|
|
1597
1597
|
operatorFieldSupport: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1598
1598
|
pattern: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
1599
|
-
|
|
1599
|
+
validateQuery: boolean;
|
|
1600
1600
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1601
1601
|
}
|
|
1602
1602
|
export namespace Wql {
|
|
@@ -4636,13 +4636,13 @@ declare namespace $responses {
|
|
|
4636
4636
|
export interface IWql {
|
|
4637
4637
|
operatorFieldSupport?: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4638
4638
|
pattern?: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4639
|
-
|
|
4639
|
+
validateQuery?: boolean;
|
|
4640
4640
|
}
|
|
4641
4641
|
export class Wql implements IWql {
|
|
4642
4642
|
constructor(data?: IWql);
|
|
4643
4643
|
operatorFieldSupport?: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4644
4644
|
pattern?: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
4645
|
-
|
|
4645
|
+
validateQuery?: boolean;
|
|
4646
4646
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4647
4647
|
}
|
|
4648
4648
|
export namespace Wql {
|
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.1279",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Eli Ponyatovski",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"*.{js,ts}": "yoshi lint"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@wix/metro-runtime": "1.
|
|
36
|
+
"@wix/metro-runtime": "1.1635.0",
|
|
37
37
|
"long": "^5.1.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"wallaby": {
|
|
72
72
|
"autoDetect": true
|
|
73
73
|
},
|
|
74
|
-
"falconPackageHash": "
|
|
74
|
+
"falconPackageHash": "f6c4f53ea454d39698826ef2ac1a0dcbcffae1b1cf6988877b49bce2"
|
|
75
75
|
}
|