@wix/metro-common-builders 1.0.1545 → 1.0.1546
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 +56 -0
- package/dist/es/src/proto/index.d.ts +28 -0
- package/dist/es/src/proto/index.js +321 -3
- package/dist/es/src/proto/server/index.d.ts +56 -0
- package/dist/src/proto/client/index.d.ts +56 -0
- package/dist/src/proto/index.d.ts +28 -0
- package/dist/src/proto/index.js +321 -3
- package/dist/src/proto/server/index.d.ts +56 -0
- package/package.json +3 -3
|
@@ -1729,6 +1729,8 @@ declare namespace $requests {
|
|
|
1729
1729
|
searchRelatedOptions?: $requests.wix.api.ISearchRelatedOptions;
|
|
1730
1730
|
updateExtendedFieldsOptions?: $requests.wix.api.IUpdateExtendedFieldsOptions;
|
|
1731
1731
|
customActionOptions?: $requests.wix.api.ICustomActionOptions;
|
|
1732
|
+
bulkUpdateTagsOptions?: $requests.wix.api.IBulkUpdateTagsMethodOptions;
|
|
1733
|
+
bulkUpdateTagsByFilterOptions?: $requests.wix.api.IBulkUpdateTagsByFilterMethodOptions;
|
|
1732
1734
|
}
|
|
1733
1735
|
export class Crud implements ICrud {
|
|
1734
1736
|
constructor(data?: ICrud);
|
|
@@ -1755,6 +1757,8 @@ declare namespace $requests {
|
|
|
1755
1757
|
searchRelatedOptions?: $requests.wix.api.ISearchRelatedOptions;
|
|
1756
1758
|
updateExtendedFieldsOptions?: $requests.wix.api.IUpdateExtendedFieldsOptions;
|
|
1757
1759
|
customActionOptions?: $requests.wix.api.ICustomActionOptions;
|
|
1760
|
+
bulkUpdateTagsOptions?: $requests.wix.api.IBulkUpdateTagsMethodOptions;
|
|
1761
|
+
bulkUpdateTagsByFilterOptions?: $requests.wix.api.IBulkUpdateTagsByFilterMethodOptions;
|
|
1758
1762
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1759
1763
|
}
|
|
1760
1764
|
export namespace Crud {
|
|
@@ -1941,6 +1945,24 @@ declare namespace $requests {
|
|
|
1941
1945
|
queryOptionsName?: string;
|
|
1942
1946
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1943
1947
|
}
|
|
1948
|
+
export interface IBulkUpdateTagsMethodOptions {
|
|
1949
|
+
idsField?: string;
|
|
1950
|
+
}
|
|
1951
|
+
export class BulkUpdateTagsMethodOptions implements IBulkUpdateTagsMethodOptions {
|
|
1952
|
+
constructor(data?: IBulkUpdateTagsMethodOptions);
|
|
1953
|
+
idsField?: string;
|
|
1954
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1955
|
+
}
|
|
1956
|
+
export interface IBulkUpdateTagsByFilterMethodOptions {
|
|
1957
|
+
filterField?: string;
|
|
1958
|
+
queryOptionsName?: string;
|
|
1959
|
+
}
|
|
1960
|
+
export class BulkUpdateTagsByFilterMethodOptions implements IBulkUpdateTagsByFilterMethodOptions {
|
|
1961
|
+
constructor(data?: IBulkUpdateTagsByFilterMethodOptions);
|
|
1962
|
+
filterField?: string;
|
|
1963
|
+
queryOptionsName?: string;
|
|
1964
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1965
|
+
}
|
|
1944
1966
|
export interface IBulkUpsertMethodOptions {
|
|
1945
1967
|
itemField?: string;
|
|
1946
1968
|
fieldmaskField?: string;
|
|
@@ -2047,12 +2069,14 @@ declare namespace $requests {
|
|
|
2047
2069
|
operatorFieldSupport?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
2048
2070
|
pattern?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
2049
2071
|
validateQuery?: boolean;
|
|
2072
|
+
virtualSubfields?: $requests.wix.api.Wql.VirtualSubfields;
|
|
2050
2073
|
}
|
|
2051
2074
|
export class Wql implements IWql {
|
|
2052
2075
|
constructor(data?: IWql);
|
|
2053
2076
|
operatorFieldSupport?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
2054
2077
|
pattern?: $requests.wix.api.Wql.IOperatorFieldSupport[];
|
|
2055
2078
|
validateQuery?: boolean;
|
|
2079
|
+
virtualSubfields?: $requests.wix.api.Wql.VirtualSubfields;
|
|
2056
2080
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2057
2081
|
}
|
|
2058
2082
|
export namespace Wql {
|
|
@@ -2105,6 +2129,10 @@ declare namespace $requests {
|
|
|
2105
2129
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2106
2130
|
}
|
|
2107
2131
|
}
|
|
2132
|
+
export enum VirtualSubfields {
|
|
2133
|
+
NO_VIRTUAL_SUBFIELDS = "NO_VIRTUAL_SUBFIELDS",
|
|
2134
|
+
DATE = "DATE",
|
|
2135
|
+
}
|
|
2108
2136
|
export interface IOperatorFieldSupport {
|
|
2109
2137
|
operator?: $requests.wix.api.Wql.Operator[];
|
|
2110
2138
|
glob?: string;
|
|
@@ -5552,6 +5580,8 @@ declare namespace $responses {
|
|
|
5552
5580
|
searchRelatedOptions?: $responses.wix.api.ISearchRelatedOptions;
|
|
5553
5581
|
updateExtendedFieldsOptions?: $responses.wix.api.IUpdateExtendedFieldsOptions;
|
|
5554
5582
|
customActionOptions?: $responses.wix.api.ICustomActionOptions;
|
|
5583
|
+
bulkUpdateTagsOptions?: $responses.wix.api.IBulkUpdateTagsMethodOptions;
|
|
5584
|
+
bulkUpdateTagsByFilterOptions?: $responses.wix.api.IBulkUpdateTagsByFilterMethodOptions;
|
|
5555
5585
|
}
|
|
5556
5586
|
export class Crud implements ICrud {
|
|
5557
5587
|
constructor(data?: ICrud);
|
|
@@ -5578,6 +5608,8 @@ declare namespace $responses {
|
|
|
5578
5608
|
searchRelatedOptions?: $responses.wix.api.ISearchRelatedOptions;
|
|
5579
5609
|
updateExtendedFieldsOptions?: $responses.wix.api.IUpdateExtendedFieldsOptions;
|
|
5580
5610
|
customActionOptions?: $responses.wix.api.ICustomActionOptions;
|
|
5611
|
+
bulkUpdateTagsOptions?: $responses.wix.api.IBulkUpdateTagsMethodOptions;
|
|
5612
|
+
bulkUpdateTagsByFilterOptions?: $responses.wix.api.IBulkUpdateTagsByFilterMethodOptions;
|
|
5581
5613
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5582
5614
|
}
|
|
5583
5615
|
export namespace Crud {
|
|
@@ -5764,6 +5796,24 @@ declare namespace $responses {
|
|
|
5764
5796
|
queryOptionsName: string;
|
|
5765
5797
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5766
5798
|
}
|
|
5799
|
+
export interface IBulkUpdateTagsMethodOptions {
|
|
5800
|
+
idsField: string;
|
|
5801
|
+
}
|
|
5802
|
+
export class BulkUpdateTagsMethodOptions implements IBulkUpdateTagsMethodOptions {
|
|
5803
|
+
constructor(data?: IBulkUpdateTagsMethodOptions);
|
|
5804
|
+
idsField: string;
|
|
5805
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5806
|
+
}
|
|
5807
|
+
export interface IBulkUpdateTagsByFilterMethodOptions {
|
|
5808
|
+
filterField: string;
|
|
5809
|
+
queryOptionsName: string;
|
|
5810
|
+
}
|
|
5811
|
+
export class BulkUpdateTagsByFilterMethodOptions implements IBulkUpdateTagsByFilterMethodOptions {
|
|
5812
|
+
constructor(data?: IBulkUpdateTagsByFilterMethodOptions);
|
|
5813
|
+
filterField: string;
|
|
5814
|
+
queryOptionsName: string;
|
|
5815
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5816
|
+
}
|
|
5767
5817
|
export interface IBulkUpsertMethodOptions {
|
|
5768
5818
|
itemField: string;
|
|
5769
5819
|
fieldmaskField: string;
|
|
@@ -5870,12 +5920,14 @@ declare namespace $responses {
|
|
|
5870
5920
|
operatorFieldSupport: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
5871
5921
|
pattern: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
5872
5922
|
validateQuery: boolean;
|
|
5923
|
+
virtualSubfields: $responses.wix.api.Wql.VirtualSubfields;
|
|
5873
5924
|
}
|
|
5874
5925
|
export class Wql implements IWql {
|
|
5875
5926
|
constructor(data?: IWql);
|
|
5876
5927
|
operatorFieldSupport: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
5877
5928
|
pattern: $responses.wix.api.Wql.IOperatorFieldSupport[];
|
|
5878
5929
|
validateQuery: boolean;
|
|
5930
|
+
virtualSubfields: $responses.wix.api.Wql.VirtualSubfields;
|
|
5879
5931
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5880
5932
|
}
|
|
5881
5933
|
export namespace Wql {
|
|
@@ -5928,6 +5980,10 @@ declare namespace $responses {
|
|
|
5928
5980
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5929
5981
|
}
|
|
5930
5982
|
}
|
|
5983
|
+
export enum VirtualSubfields {
|
|
5984
|
+
NO_VIRTUAL_SUBFIELDS = "NO_VIRTUAL_SUBFIELDS",
|
|
5985
|
+
DATE = "DATE",
|
|
5986
|
+
}
|
|
5931
5987
|
export interface IOperatorFieldSupport {
|
|
5932
5988
|
operator: $responses.wix.api.Wql.Operator[];
|
|
5933
5989
|
glob: string;
|
|
@@ -1750,6 +1750,8 @@ declare namespace $wrapper {
|
|
|
1750
1750
|
searchRelatedOptions?: ($wrapper.wix.api.ISearchRelatedOptions | null);
|
|
1751
1751
|
updateExtendedFieldsOptions?: ($wrapper.wix.api.IUpdateExtendedFieldsOptions | null);
|
|
1752
1752
|
customActionOptions?: ($wrapper.wix.api.ICustomActionOptions | null);
|
|
1753
|
+
bulkUpdateTagsOptions?: ($wrapper.wix.api.IBulkUpdateTagsMethodOptions | null);
|
|
1754
|
+
bulkUpdateTagsByFilterOptions?: ($wrapper.wix.api.IBulkUpdateTagsByFilterMethodOptions | null);
|
|
1753
1755
|
}
|
|
1754
1756
|
export class Crud implements ICrud {
|
|
1755
1757
|
constructor(data?: ICrud);
|
|
@@ -1776,6 +1778,8 @@ declare namespace $wrapper {
|
|
|
1776
1778
|
searchRelatedOptions?: ($wrapper.wix.api.ISearchRelatedOptions | null);
|
|
1777
1779
|
updateExtendedFieldsOptions?: ($wrapper.wix.api.IUpdateExtendedFieldsOptions | null);
|
|
1778
1780
|
customActionOptions?: ($wrapper.wix.api.ICustomActionOptions | null);
|
|
1781
|
+
bulkUpdateTagsOptions?: ($wrapper.wix.api.IBulkUpdateTagsMethodOptions | null);
|
|
1782
|
+
bulkUpdateTagsByFilterOptions?: ($wrapper.wix.api.IBulkUpdateTagsByFilterMethodOptions | null);
|
|
1779
1783
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1780
1784
|
}
|
|
1781
1785
|
export namespace Crud {
|
|
@@ -1962,6 +1966,24 @@ declare namespace $wrapper {
|
|
|
1962
1966
|
queryOptionsName?: (string | null);
|
|
1963
1967
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1964
1968
|
}
|
|
1969
|
+
export interface IBulkUpdateTagsMethodOptions {
|
|
1970
|
+
idsField?: (string | null);
|
|
1971
|
+
}
|
|
1972
|
+
export class BulkUpdateTagsMethodOptions implements IBulkUpdateTagsMethodOptions {
|
|
1973
|
+
constructor(data?: IBulkUpdateTagsMethodOptions);
|
|
1974
|
+
idsField?: (string | null);
|
|
1975
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1976
|
+
}
|
|
1977
|
+
export interface IBulkUpdateTagsByFilterMethodOptions {
|
|
1978
|
+
filterField?: (string | null);
|
|
1979
|
+
queryOptionsName?: (string | null);
|
|
1980
|
+
}
|
|
1981
|
+
export class BulkUpdateTagsByFilterMethodOptions implements IBulkUpdateTagsByFilterMethodOptions {
|
|
1982
|
+
constructor(data?: IBulkUpdateTagsByFilterMethodOptions);
|
|
1983
|
+
filterField?: (string | null);
|
|
1984
|
+
queryOptionsName?: (string | null);
|
|
1985
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1986
|
+
}
|
|
1965
1987
|
export interface IBulkUpsertMethodOptions {
|
|
1966
1988
|
itemField?: (string | null);
|
|
1967
1989
|
fieldmaskField?: (string | null);
|
|
@@ -2068,12 +2090,14 @@ declare namespace $wrapper {
|
|
|
2068
2090
|
operatorFieldSupport?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
2069
2091
|
pattern?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
2070
2092
|
validateQuery?: (boolean | null);
|
|
2093
|
+
virtualSubfields?: ($wrapper.wix.api.Wql.VirtualSubfields | null);
|
|
2071
2094
|
}
|
|
2072
2095
|
export class Wql implements IWql {
|
|
2073
2096
|
constructor(data?: IWql);
|
|
2074
2097
|
operatorFieldSupport?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
2075
2098
|
pattern?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
|
|
2076
2099
|
validateQuery?: (boolean | null);
|
|
2100
|
+
virtualSubfields?: ($wrapper.wix.api.Wql.VirtualSubfields | null);
|
|
2077
2101
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2078
2102
|
}
|
|
2079
2103
|
export namespace Wql {
|
|
@@ -2126,6 +2150,10 @@ declare namespace $wrapper {
|
|
|
2126
2150
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2127
2151
|
}
|
|
2128
2152
|
}
|
|
2153
|
+
export enum VirtualSubfields {
|
|
2154
|
+
NO_VIRTUAL_SUBFIELDS = "NO_VIRTUAL_SUBFIELDS",
|
|
2155
|
+
DATE = "DATE",
|
|
2156
|
+
}
|
|
2129
2157
|
export interface IOperatorFieldSupport {
|
|
2130
2158
|
operator?: ($wrapper.wix.api.Wql.Operator[] | null);
|
|
2131
2159
|
glob?: (string | null);
|
|
@@ -10,7 +10,7 @@ $root.__options = {
|
|
|
10
10
|
'stringLongs': true,
|
|
11
11
|
'stdCase': false,
|
|
12
12
|
'generatorVersion': '2.0.1157',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': 'aa3c32e2b2768e41cf071b5c3b222c360f776a97'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -4633,7 +4633,9 @@ $root.__lookup = function (pbjs) {
|
|
|
4633
4633
|
'countOptions',
|
|
4634
4634
|
'searchRelatedOptions',
|
|
4635
4635
|
'updateExtendedFieldsOptions',
|
|
4636
|
-
'customActionOptions'
|
|
4636
|
+
'customActionOptions',
|
|
4637
|
+
'bulkUpdateTagsOptions',
|
|
4638
|
+
'bulkUpdateTagsByFilterOptions'
|
|
4637
4639
|
],
|
|
4638
4640
|
'comment': null
|
|
4639
4641
|
}
|
|
@@ -4777,6 +4779,18 @@ $root.__lookup = function (pbjs) {
|
|
|
4777
4779
|
'id': 24,
|
|
4778
4780
|
'comment': null,
|
|
4779
4781
|
'parsedOptions': null
|
|
4782
|
+
},
|
|
4783
|
+
'bulkUpdateTagsOptions': {
|
|
4784
|
+
'type': 'BulkUpdateTagsMethodOptions',
|
|
4785
|
+
'id': 25,
|
|
4786
|
+
'comment': null,
|
|
4787
|
+
'parsedOptions': null
|
|
4788
|
+
},
|
|
4789
|
+
'bulkUpdateTagsByFilterOptions': {
|
|
4790
|
+
'type': 'BulkUpdateTagsByFilterMethodOptions',
|
|
4791
|
+
'id': 26,
|
|
4792
|
+
'comment': null,
|
|
4793
|
+
'parsedOptions': null
|
|
4780
4794
|
}
|
|
4781
4795
|
},
|
|
4782
4796
|
'nested': {
|
|
@@ -5159,6 +5173,34 @@ $root.__lookup = function (pbjs) {
|
|
|
5159
5173
|
},
|
|
5160
5174
|
'comment': null
|
|
5161
5175
|
},
|
|
5176
|
+
'BulkUpdateTagsMethodOptions': {
|
|
5177
|
+
'fields': {
|
|
5178
|
+
'idsField': {
|
|
5179
|
+
'type': 'string',
|
|
5180
|
+
'id': 1,
|
|
5181
|
+
'comment': null,
|
|
5182
|
+
'parsedOptions': null
|
|
5183
|
+
}
|
|
5184
|
+
},
|
|
5185
|
+
'comment': null
|
|
5186
|
+
},
|
|
5187
|
+
'BulkUpdateTagsByFilterMethodOptions': {
|
|
5188
|
+
'fields': {
|
|
5189
|
+
'filterField': {
|
|
5190
|
+
'type': 'string',
|
|
5191
|
+
'id': 1,
|
|
5192
|
+
'comment': null,
|
|
5193
|
+
'parsedOptions': null
|
|
5194
|
+
},
|
|
5195
|
+
'queryOptionsName': {
|
|
5196
|
+
'type': 'string',
|
|
5197
|
+
'id': 2,
|
|
5198
|
+
'comment': null,
|
|
5199
|
+
'parsedOptions': null
|
|
5200
|
+
}
|
|
5201
|
+
},
|
|
5202
|
+
'comment': null
|
|
5203
|
+
},
|
|
5162
5204
|
'BulkUpsertMethodOptions': {
|
|
5163
5205
|
'fields': {
|
|
5164
5206
|
'itemField': {
|
|
@@ -5405,6 +5447,12 @@ $root.__lookup = function (pbjs) {
|
|
|
5405
5447
|
'id': 6,
|
|
5406
5448
|
'comment': null,
|
|
5407
5449
|
'parsedOptions': null
|
|
5450
|
+
},
|
|
5451
|
+
'virtualSubfields': {
|
|
5452
|
+
'type': 'VirtualSubfields',
|
|
5453
|
+
'id': 7,
|
|
5454
|
+
'comment': null,
|
|
5455
|
+
'parsedOptions': null
|
|
5408
5456
|
}
|
|
5409
5457
|
},
|
|
5410
5458
|
'nested': {
|
|
@@ -5433,7 +5481,8 @@ $root.__lookup = function (pbjs) {
|
|
|
5433
5481
|
},
|
|
5434
5482
|
'valuesOptions': {
|
|
5435
5483
|
'ALL': { 'deprecated': true },
|
|
5436
|
-
'ANY': { 'deprecated': true }
|
|
5484
|
+
'ANY': { 'deprecated': true },
|
|
5485
|
+
'ENHANCED_DATE': { 'deprecated': true }
|
|
5437
5486
|
},
|
|
5438
5487
|
'comment': null,
|
|
5439
5488
|
'comments': {
|
|
@@ -5526,6 +5575,17 @@ $root.__lookup = function (pbjs) {
|
|
|
5526
5575
|
},
|
|
5527
5576
|
'comment': null
|
|
5528
5577
|
},
|
|
5578
|
+
'VirtualSubfields': {
|
|
5579
|
+
'values': {
|
|
5580
|
+
'NO_VIRTUAL_SUBFIELDS': 0,
|
|
5581
|
+
'DATE': 1
|
|
5582
|
+
},
|
|
5583
|
+
'comment': null,
|
|
5584
|
+
'comments': {
|
|
5585
|
+
'NO_VIRTUAL_SUBFIELDS': null,
|
|
5586
|
+
'DATE': null
|
|
5587
|
+
}
|
|
5588
|
+
},
|
|
5529
5589
|
'OperatorFieldSupport': {
|
|
5530
5590
|
'fields': {
|
|
5531
5591
|
'operator': {
|
|
@@ -28218,6 +28278,8 @@ $root.wix = (function () {
|
|
|
28218
28278
|
this.searchRelatedOptions = props && props.searchRelatedOptions;
|
|
28219
28279
|
this.updateExtendedFieldsOptions = props && props.updateExtendedFieldsOptions;
|
|
28220
28280
|
this.customActionOptions = props && props.customActionOptions;
|
|
28281
|
+
this.bulkUpdateTagsOptions = props && props.bulkUpdateTagsOptions;
|
|
28282
|
+
this.bulkUpdateTagsByFilterOptions = props && props.bulkUpdateTagsByFilterOptions;
|
|
28221
28283
|
}
|
|
28222
28284
|
static toJSON(obj, helper, withDefaults) {
|
|
28223
28285
|
if (obj == null) {
|
|
@@ -28339,6 +28401,16 @@ $root.wix = (function () {
|
|
|
28339
28401
|
} else if (withDefaults) {
|
|
28340
28402
|
delete json['customActionOptions'];
|
|
28341
28403
|
}
|
|
28404
|
+
if (obj['bulkUpdateTagsOptions'] != null) {
|
|
28405
|
+
json['bulkUpdateTagsOptions'] = $root.wix.api.BulkUpdateTagsMethodOptions.toJSON(obj['bulkUpdateTagsOptions'], helper, withDefaults);
|
|
28406
|
+
} else if (withDefaults) {
|
|
28407
|
+
delete json['bulkUpdateTagsOptions'];
|
|
28408
|
+
}
|
|
28409
|
+
if (obj['bulkUpdateTagsByFilterOptions'] != null) {
|
|
28410
|
+
json['bulkUpdateTagsByFilterOptions'] = $root.wix.api.BulkUpdateTagsByFilterMethodOptions.toJSON(obj['bulkUpdateTagsByFilterOptions'], helper, withDefaults);
|
|
28411
|
+
} else if (withDefaults) {
|
|
28412
|
+
delete json['bulkUpdateTagsByFilterOptions'];
|
|
28413
|
+
}
|
|
28342
28414
|
return json;
|
|
28343
28415
|
}
|
|
28344
28416
|
}
|
|
@@ -28506,6 +28578,20 @@ $root.wix = (function () {
|
|
|
28506
28578
|
} else {
|
|
28507
28579
|
delete result['customActionOptions'];
|
|
28508
28580
|
}
|
|
28581
|
+
if (json['bulkUpdateTagsOptions'] != null) {
|
|
28582
|
+
result['bulkUpdateTagsOptions'] = $root.wix.api.BulkUpdateTagsMethodOptions.fromJSON(json['bulkUpdateTagsOptions'], helper);
|
|
28583
|
+
} else if (withDefaults !== false) {
|
|
28584
|
+
delete result['bulkUpdateTagsOptions'];
|
|
28585
|
+
} else {
|
|
28586
|
+
delete result['bulkUpdateTagsOptions'];
|
|
28587
|
+
}
|
|
28588
|
+
if (json['bulkUpdateTagsByFilterOptions'] != null) {
|
|
28589
|
+
result['bulkUpdateTagsByFilterOptions'] = $root.wix.api.BulkUpdateTagsByFilterMethodOptions.fromJSON(json['bulkUpdateTagsByFilterOptions'], helper);
|
|
28590
|
+
} else if (withDefaults !== false) {
|
|
28591
|
+
delete result['bulkUpdateTagsByFilterOptions'];
|
|
28592
|
+
} else {
|
|
28593
|
+
delete result['bulkUpdateTagsByFilterOptions'];
|
|
28594
|
+
}
|
|
28509
28595
|
return result;
|
|
28510
28596
|
} else
|
|
28511
28597
|
return json;
|
|
@@ -28584,6 +28670,12 @@ $root.wix = (function () {
|
|
|
28584
28670
|
if (obj['customActionOptions'] != null) {
|
|
28585
28671
|
grpc['customActionOptions'] = $root.wix.api.CustomActionOptions.toGRPC(obj['customActionOptions'], helper);
|
|
28586
28672
|
}
|
|
28673
|
+
if (obj['bulkUpdateTagsOptions'] != null) {
|
|
28674
|
+
grpc['bulkUpdateTagsOptions'] = $root.wix.api.BulkUpdateTagsMethodOptions.toGRPC(obj['bulkUpdateTagsOptions'], helper);
|
|
28675
|
+
}
|
|
28676
|
+
if (obj['bulkUpdateTagsByFilterOptions'] != null) {
|
|
28677
|
+
grpc['bulkUpdateTagsByFilterOptions'] = $root.wix.api.BulkUpdateTagsByFilterMethodOptions.toGRPC(obj['bulkUpdateTagsByFilterOptions'], helper);
|
|
28678
|
+
}
|
|
28587
28679
|
return grpc;
|
|
28588
28680
|
}
|
|
28589
28681
|
}
|
|
@@ -28707,6 +28799,16 @@ $root.wix = (function () {
|
|
|
28707
28799
|
} else {
|
|
28708
28800
|
delete result['customActionOptions'];
|
|
28709
28801
|
}
|
|
28802
|
+
if (grpc['bulkUpdateTagsOptions'] != null) {
|
|
28803
|
+
result['bulkUpdateTagsOptions'] = $root.wix.api.BulkUpdateTagsMethodOptions.fromGRPC(grpc['bulkUpdateTagsOptions'], helper);
|
|
28804
|
+
} else {
|
|
28805
|
+
delete result['bulkUpdateTagsOptions'];
|
|
28806
|
+
}
|
|
28807
|
+
if (grpc['bulkUpdateTagsByFilterOptions'] != null) {
|
|
28808
|
+
result['bulkUpdateTagsByFilterOptions'] = $root.wix.api.BulkUpdateTagsByFilterMethodOptions.fromGRPC(grpc['bulkUpdateTagsByFilterOptions'], helper);
|
|
28809
|
+
} else {
|
|
28810
|
+
delete result['bulkUpdateTagsByFilterOptions'];
|
|
28811
|
+
}
|
|
28710
28812
|
return result;
|
|
28711
28813
|
}
|
|
28712
28814
|
}
|
|
@@ -30402,6 +30504,189 @@ $root.wix = (function () {
|
|
|
30402
30504
|
});
|
|
30403
30505
|
return BulkUpdateByFilterMethodOptions;
|
|
30404
30506
|
}());;
|
|
30507
|
+
_api.BulkUpdateTagsMethodOptions = (function () {
|
|
30508
|
+
class BulkUpdateTagsMethodOptions {
|
|
30509
|
+
constructor(props) {
|
|
30510
|
+
this.idsField = props && props.idsField;
|
|
30511
|
+
}
|
|
30512
|
+
static toJSON(obj, helper, withDefaults) {
|
|
30513
|
+
if (obj == null) {
|
|
30514
|
+
return null;
|
|
30515
|
+
} else {
|
|
30516
|
+
const json = {};
|
|
30517
|
+
if (obj['idsField'] != null) {
|
|
30518
|
+
json['idsField'] = obj['idsField'];
|
|
30519
|
+
} else if (withDefaults) {
|
|
30520
|
+
json['idsField'] = '';
|
|
30521
|
+
}
|
|
30522
|
+
return json;
|
|
30523
|
+
}
|
|
30524
|
+
}
|
|
30525
|
+
static fromJSON(json, helper, withDefaults) {
|
|
30526
|
+
if (typeof json === 'object' && !Array.isArray(json)) {
|
|
30527
|
+
const result = new $root.wix.api.BulkUpdateTagsMethodOptions();
|
|
30528
|
+
if (json['idsField'] != null) {
|
|
30529
|
+
result['idsField'] = json['idsField'];
|
|
30530
|
+
} else if (withDefaults !== false) {
|
|
30531
|
+
result['idsField'] = '';
|
|
30532
|
+
} else {
|
|
30533
|
+
delete result['idsField'];
|
|
30534
|
+
}
|
|
30535
|
+
return result;
|
|
30536
|
+
} else
|
|
30537
|
+
return json;
|
|
30538
|
+
}
|
|
30539
|
+
static toGRPC(obj, helper) {
|
|
30540
|
+
if (obj == null) {
|
|
30541
|
+
return null;
|
|
30542
|
+
} else {
|
|
30543
|
+
const grpc = {};
|
|
30544
|
+
if (obj['idsField'] != null) {
|
|
30545
|
+
grpc['idsField'] = obj['idsField'];
|
|
30546
|
+
}
|
|
30547
|
+
return grpc;
|
|
30548
|
+
}
|
|
30549
|
+
}
|
|
30550
|
+
static fromGRPC(grpc, helper) {
|
|
30551
|
+
if (grpc == null) {
|
|
30552
|
+
return null;
|
|
30553
|
+
} else {
|
|
30554
|
+
const result = new $root.wix.api.BulkUpdateTagsMethodOptions();
|
|
30555
|
+
if (grpc['idsField'] != null) {
|
|
30556
|
+
result['idsField'] = grpc['idsField'];
|
|
30557
|
+
} else {
|
|
30558
|
+
result['idsField'] = '';
|
|
30559
|
+
}
|
|
30560
|
+
return result;
|
|
30561
|
+
}
|
|
30562
|
+
}
|
|
30563
|
+
}
|
|
30564
|
+
__builtIn.Object.defineProperty(BulkUpdateTagsMethodOptions.prototype, '__proto', {
|
|
30565
|
+
value: pbjs => {
|
|
30566
|
+
return $root.__lookup(pbjs)('wix.api.BulkUpdateTagsMethodOptions');
|
|
30567
|
+
},
|
|
30568
|
+
enumerable: false,
|
|
30569
|
+
configurable: false
|
|
30570
|
+
});
|
|
30571
|
+
__builtIn.Object.defineProperty(BulkUpdateTagsMethodOptions.prototype, '__fqn__', {
|
|
30572
|
+
value: 'wix.api.BulkUpdateTagsMethodOptions',
|
|
30573
|
+
enumerable: false,
|
|
30574
|
+
configurable: false
|
|
30575
|
+
});
|
|
30576
|
+
__builtIn.Object.defineProperty(BulkUpdateTagsMethodOptions.prototype, '__options__', {
|
|
30577
|
+
value: $root.__options,
|
|
30578
|
+
enumerable: false,
|
|
30579
|
+
configurable: false
|
|
30580
|
+
});
|
|
30581
|
+
__builtIn.Object.defineProperty(BulkUpdateTagsMethodOptions.prototype, '__root__', {
|
|
30582
|
+
value: $root,
|
|
30583
|
+
enumerable: false,
|
|
30584
|
+
configurable: false
|
|
30585
|
+
});
|
|
30586
|
+
return BulkUpdateTagsMethodOptions;
|
|
30587
|
+
}());;
|
|
30588
|
+
_api.BulkUpdateTagsByFilterMethodOptions = (function () {
|
|
30589
|
+
class BulkUpdateTagsByFilterMethodOptions {
|
|
30590
|
+
constructor(props) {
|
|
30591
|
+
this.filterField = props && props.filterField;
|
|
30592
|
+
this.queryOptionsName = props && props.queryOptionsName;
|
|
30593
|
+
}
|
|
30594
|
+
static toJSON(obj, helper, withDefaults) {
|
|
30595
|
+
if (obj == null) {
|
|
30596
|
+
return null;
|
|
30597
|
+
} else {
|
|
30598
|
+
const json = {};
|
|
30599
|
+
if (obj['filterField'] != null) {
|
|
30600
|
+
json['filterField'] = obj['filterField'];
|
|
30601
|
+
} else if (withDefaults) {
|
|
30602
|
+
json['filterField'] = '';
|
|
30603
|
+
}
|
|
30604
|
+
if (obj['queryOptionsName'] != null) {
|
|
30605
|
+
json['queryOptionsName'] = obj['queryOptionsName'];
|
|
30606
|
+
} else if (withDefaults) {
|
|
30607
|
+
json['queryOptionsName'] = '';
|
|
30608
|
+
}
|
|
30609
|
+
return json;
|
|
30610
|
+
}
|
|
30611
|
+
}
|
|
30612
|
+
static fromJSON(json, helper, withDefaults) {
|
|
30613
|
+
if (typeof json === 'object' && !Array.isArray(json)) {
|
|
30614
|
+
const result = new $root.wix.api.BulkUpdateTagsByFilterMethodOptions();
|
|
30615
|
+
if (json['filterField'] != null) {
|
|
30616
|
+
result['filterField'] = json['filterField'];
|
|
30617
|
+
} else if (withDefaults !== false) {
|
|
30618
|
+
result['filterField'] = '';
|
|
30619
|
+
} else {
|
|
30620
|
+
delete result['filterField'];
|
|
30621
|
+
}
|
|
30622
|
+
if (json['queryOptionsName'] != null) {
|
|
30623
|
+
result['queryOptionsName'] = json['queryOptionsName'];
|
|
30624
|
+
} else if (withDefaults !== false) {
|
|
30625
|
+
result['queryOptionsName'] = '';
|
|
30626
|
+
} else {
|
|
30627
|
+
delete result['queryOptionsName'];
|
|
30628
|
+
}
|
|
30629
|
+
return result;
|
|
30630
|
+
} else
|
|
30631
|
+
return json;
|
|
30632
|
+
}
|
|
30633
|
+
static toGRPC(obj, helper) {
|
|
30634
|
+
if (obj == null) {
|
|
30635
|
+
return null;
|
|
30636
|
+
} else {
|
|
30637
|
+
const grpc = {};
|
|
30638
|
+
if (obj['filterField'] != null) {
|
|
30639
|
+
grpc['filterField'] = obj['filterField'];
|
|
30640
|
+
}
|
|
30641
|
+
if (obj['queryOptionsName'] != null) {
|
|
30642
|
+
grpc['queryOptionsName'] = obj['queryOptionsName'];
|
|
30643
|
+
}
|
|
30644
|
+
return grpc;
|
|
30645
|
+
}
|
|
30646
|
+
}
|
|
30647
|
+
static fromGRPC(grpc, helper) {
|
|
30648
|
+
if (grpc == null) {
|
|
30649
|
+
return null;
|
|
30650
|
+
} else {
|
|
30651
|
+
const result = new $root.wix.api.BulkUpdateTagsByFilterMethodOptions();
|
|
30652
|
+
if (grpc['filterField'] != null) {
|
|
30653
|
+
result['filterField'] = grpc['filterField'];
|
|
30654
|
+
} else {
|
|
30655
|
+
result['filterField'] = '';
|
|
30656
|
+
}
|
|
30657
|
+
if (grpc['queryOptionsName'] != null) {
|
|
30658
|
+
result['queryOptionsName'] = grpc['queryOptionsName'];
|
|
30659
|
+
} else {
|
|
30660
|
+
result['queryOptionsName'] = '';
|
|
30661
|
+
}
|
|
30662
|
+
return result;
|
|
30663
|
+
}
|
|
30664
|
+
}
|
|
30665
|
+
}
|
|
30666
|
+
__builtIn.Object.defineProperty(BulkUpdateTagsByFilterMethodOptions.prototype, '__proto', {
|
|
30667
|
+
value: pbjs => {
|
|
30668
|
+
return $root.__lookup(pbjs)('wix.api.BulkUpdateTagsByFilterMethodOptions');
|
|
30669
|
+
},
|
|
30670
|
+
enumerable: false,
|
|
30671
|
+
configurable: false
|
|
30672
|
+
});
|
|
30673
|
+
__builtIn.Object.defineProperty(BulkUpdateTagsByFilterMethodOptions.prototype, '__fqn__', {
|
|
30674
|
+
value: 'wix.api.BulkUpdateTagsByFilterMethodOptions',
|
|
30675
|
+
enumerable: false,
|
|
30676
|
+
configurable: false
|
|
30677
|
+
});
|
|
30678
|
+
__builtIn.Object.defineProperty(BulkUpdateTagsByFilterMethodOptions.prototype, '__options__', {
|
|
30679
|
+
value: $root.__options,
|
|
30680
|
+
enumerable: false,
|
|
30681
|
+
configurable: false
|
|
30682
|
+
});
|
|
30683
|
+
__builtIn.Object.defineProperty(BulkUpdateTagsByFilterMethodOptions.prototype, '__root__', {
|
|
30684
|
+
value: $root,
|
|
30685
|
+
enumerable: false,
|
|
30686
|
+
configurable: false
|
|
30687
|
+
});
|
|
30688
|
+
return BulkUpdateTagsByFilterMethodOptions;
|
|
30689
|
+
}());;
|
|
30405
30690
|
_api.BulkUpsertMethodOptions = (function () {
|
|
30406
30691
|
class BulkUpsertMethodOptions {
|
|
30407
30692
|
constructor(props) {
|
|
@@ -31457,6 +31742,7 @@ $root.wix = (function () {
|
|
|
31457
31742
|
this.operatorFieldSupport = props && props.operatorFieldSupport;
|
|
31458
31743
|
this.pattern = props && props.pattern;
|
|
31459
31744
|
this.validateQuery = props && props.validateQuery;
|
|
31745
|
+
this.virtualSubfields = props && props.virtualSubfields;
|
|
31460
31746
|
}
|
|
31461
31747
|
static toJSON(obj, helper, withDefaults) {
|
|
31462
31748
|
if (obj == null) {
|
|
@@ -31482,6 +31768,11 @@ $root.wix = (function () {
|
|
|
31482
31768
|
} else if (withDefaults) {
|
|
31483
31769
|
json['validateQuery'] = false;
|
|
31484
31770
|
}
|
|
31771
|
+
if (obj['virtualSubfields'] != null) {
|
|
31772
|
+
json['virtualSubfields'] = $root.wix.api.Wql.VirtualSubfields[obj['virtualSubfields']];
|
|
31773
|
+
} else if (withDefaults) {
|
|
31774
|
+
json['virtualSubfields'] = 'NO_VIRTUAL_SUBFIELDS';
|
|
31775
|
+
}
|
|
31485
31776
|
return json;
|
|
31486
31777
|
}
|
|
31487
31778
|
}
|
|
@@ -31513,6 +31804,13 @@ $root.wix = (function () {
|
|
|
31513
31804
|
} else {
|
|
31514
31805
|
delete result['validateQuery'];
|
|
31515
31806
|
}
|
|
31807
|
+
if (json['virtualSubfields'] != null) {
|
|
31808
|
+
result['virtualSubfields'] = typeof json['virtualSubfields'] === 'string' ? json['virtualSubfields'] : $root.wix.api.Wql.VirtualSubfields[json['virtualSubfields']];
|
|
31809
|
+
} else if (withDefaults !== false) {
|
|
31810
|
+
result['virtualSubfields'] = 'NO_VIRTUAL_SUBFIELDS';
|
|
31811
|
+
} else {
|
|
31812
|
+
delete result['virtualSubfields'];
|
|
31813
|
+
}
|
|
31516
31814
|
return result;
|
|
31517
31815
|
} else
|
|
31518
31816
|
return json;
|
|
@@ -31535,6 +31833,9 @@ $root.wix = (function () {
|
|
|
31535
31833
|
if (obj['validateQuery'] != null) {
|
|
31536
31834
|
grpc['validateQuery'] = obj['validateQuery'];
|
|
31537
31835
|
}
|
|
31836
|
+
if (obj['virtualSubfields'] != null) {
|
|
31837
|
+
grpc['virtualSubfields'] = obj['virtualSubfields'];
|
|
31838
|
+
}
|
|
31538
31839
|
return grpc;
|
|
31539
31840
|
}
|
|
31540
31841
|
}
|
|
@@ -31562,6 +31863,11 @@ $root.wix = (function () {
|
|
|
31562
31863
|
} else {
|
|
31563
31864
|
result['validateQuery'] = false;
|
|
31564
31865
|
}
|
|
31866
|
+
if (grpc['virtualSubfields'] != null) {
|
|
31867
|
+
result['virtualSubfields'] = grpc['virtualSubfields'];
|
|
31868
|
+
} else {
|
|
31869
|
+
result['virtualSubfields'] = 'NO_VIRTUAL_SUBFIELDS';
|
|
31870
|
+
}
|
|
31565
31871
|
return result;
|
|
31566
31872
|
}
|
|
31567
31873
|
}
|
|
@@ -31938,6 +32244,12 @@ $root.wix = (function () {
|
|
|
31938
32244
|
});
|
|
31939
32245
|
return RequiredFields;
|
|
31940
32246
|
}());;
|
|
32247
|
+
Wql.VirtualSubfields = {
|
|
32248
|
+
'NO_VIRTUAL_SUBFIELDS': 'NO_VIRTUAL_SUBFIELDS',
|
|
32249
|
+
0: 'NO_VIRTUAL_SUBFIELDS',
|
|
32250
|
+
'DATE': 'DATE',
|
|
32251
|
+
1: 'DATE'
|
|
32252
|
+
};
|
|
31941
32253
|
Wql.OperatorFieldSupport = (function () {
|
|
31942
32254
|
class OperatorFieldSupport {
|
|
31943
32255
|
constructor(props) {
|
|
@@ -32520,6 +32832,12 @@ $root.wix = (function () {
|
|
|
32520
32832
|
});
|
|
32521
32833
|
return RequiredFields;
|
|
32522
32834
|
}());;
|
|
32835
|
+
Wql.VirtualSubfields = {
|
|
32836
|
+
'NO_VIRTUAL_SUBFIELDS': 'NO_VIRTUAL_SUBFIELDS',
|
|
32837
|
+
0: 'NO_VIRTUAL_SUBFIELDS',
|
|
32838
|
+
'DATE': 'DATE',
|
|
32839
|
+
1: 'DATE'
|
|
32840
|
+
};
|
|
32523
32841
|
Wql.OperatorFieldSupport = (function () {
|
|
32524
32842
|
class OperatorFieldSupport {
|
|
32525
32843
|
constructor(props) {
|