@wix/metro-common-builders 1.0.1545 → 1.0.1547
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;
|
|
@@ -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);
|