@wix/metro-common-builders 1.0.1441 → 1.0.1442

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.
@@ -1569,6 +1569,7 @@ declare namespace $requests {
1569
1569
  removeFromTrashbinOptions?: $requests.wix.api.IRemoveFromTrashbinMethodOptions;
1570
1570
  countOptions?: $requests.wix.api.ICountOptions;
1571
1571
  searchRelatedOptions?: $requests.wix.api.ISearchRelatedOptions;
1572
+ updateExtendedFieldsOptions?: $requests.wix.api.IUpdateExtendedFieldsOptions;
1572
1573
  }
1573
1574
  export class Crud implements ICrud {
1574
1575
  constructor(data?: ICrud);
@@ -1593,6 +1594,7 @@ declare namespace $requests {
1593
1594
  removeFromTrashbinOptions?: $requests.wix.api.IRemoveFromTrashbinMethodOptions;
1594
1595
  countOptions?: $requests.wix.api.ICountOptions;
1595
1596
  searchRelatedOptions?: $requests.wix.api.ISearchRelatedOptions;
1597
+ updateExtendedFieldsOptions?: $requests.wix.api.IUpdateExtendedFieldsOptions;
1596
1598
  static __$$generatedFromProtobuf$$__: Symbol;
1597
1599
  }
1598
1600
  export namespace Crud {
@@ -1618,6 +1620,9 @@ declare namespace $requests {
1618
1620
  REMOVE_FROM_TRASHBIN = "REMOVE_FROM_TRASHBIN",
1619
1621
  COUNT = "COUNT",
1620
1622
  SEARCH_RELATED = "SEARCH_RELATED",
1623
+ UPDATE_EXTENDED_FIELDS = "UPDATE_EXTENDED_FIELDS",
1624
+ BULK_UPDATE_TAGS = "BULK_UPDATE_TAGS",
1625
+ BULK_UPDATE_TAGS_BY_FILTER = "BULK_UPDATE_TAGS_BY_FILTER",
1621
1626
  }
1622
1627
  }
1623
1628
  export interface IPaging {
@@ -1857,6 +1862,14 @@ declare namespace $requests {
1857
1862
  queryOptionsName?: string;
1858
1863
  static __$$generatedFromProtobuf$$__: Symbol;
1859
1864
  }
1865
+ export interface IUpdateExtendedFieldsOptions {
1866
+ itemField: string;
1867
+ }
1868
+ export class UpdateExtendedFieldsOptions implements IUpdateExtendedFieldsOptions {
1869
+ constructor(data?: IUpdateExtendedFieldsOptions);
1870
+ itemField: string;
1871
+ static __$$generatedFromProtobuf$$__: Symbol;
1872
+ }
1860
1873
  export interface IWql {
1861
1874
  operatorFieldSupport: $requests.wix.api.Wql.IOperatorFieldSupport[];
1862
1875
  pattern: $requests.wix.api.Wql.IOperatorFieldSupport[];
@@ -1882,10 +1895,10 @@ declare namespace $requests {
1882
1895
  NIN = "NIN",
1883
1896
  BEGINS = "BEGINS",
1884
1897
  EXISTS = "EXISTS",
1885
- ALL = "ALL",
1886
1898
  HAS_ALL = "HAS_ALL",
1887
- ANY = "ANY",
1899
+ ALL = "ALL",
1888
1900
  HAS_SOME = "HAS_SOME",
1901
+ ANY = "ANY",
1889
1902
  EMPTY = "EMPTY",
1890
1903
  MATCH_ALL = "MATCH_ALL",
1891
1904
  MATCH_ITEMS = "MATCH_ITEMS",
@@ -2854,12 +2867,14 @@ declare namespace $requests {
2854
2867
  count?: number;
2855
2868
  cursors?: $requests.wix.common.ICursors;
2856
2869
  hasNext?: boolean;
2870
+ total?: number;
2857
2871
  }
2858
2872
  export class CursorPagingMetadata implements ICursorPagingMetadata {
2859
2873
  constructor(data?: ICursorPagingMetadata);
2860
2874
  count?: number;
2861
2875
  cursors?: $requests.wix.common.ICursors;
2862
2876
  hasNext?: boolean;
2877
+ total?: number;
2863
2878
  static __$$generatedFromProtobuf$$__: Symbol;
2864
2879
  }
2865
2880
  export interface ICursors {
@@ -5181,6 +5196,7 @@ declare namespace $responses {
5181
5196
  removeFromTrashbinOptions?: $responses.wix.api.IRemoveFromTrashbinMethodOptions;
5182
5197
  countOptions?: $responses.wix.api.ICountOptions;
5183
5198
  searchRelatedOptions?: $responses.wix.api.ISearchRelatedOptions;
5199
+ updateExtendedFieldsOptions?: $responses.wix.api.IUpdateExtendedFieldsOptions;
5184
5200
  }
5185
5201
  export class Crud implements ICrud {
5186
5202
  constructor(data?: ICrud);
@@ -5205,6 +5221,7 @@ declare namespace $responses {
5205
5221
  removeFromTrashbinOptions?: $responses.wix.api.IRemoveFromTrashbinMethodOptions;
5206
5222
  countOptions?: $responses.wix.api.ICountOptions;
5207
5223
  searchRelatedOptions?: $responses.wix.api.ISearchRelatedOptions;
5224
+ updateExtendedFieldsOptions?: $responses.wix.api.IUpdateExtendedFieldsOptions;
5208
5225
  static __$$generatedFromProtobuf$$__: Symbol;
5209
5226
  }
5210
5227
  export namespace Crud {
@@ -5230,6 +5247,9 @@ declare namespace $responses {
5230
5247
  REMOVE_FROM_TRASHBIN = "REMOVE_FROM_TRASHBIN",
5231
5248
  COUNT = "COUNT",
5232
5249
  SEARCH_RELATED = "SEARCH_RELATED",
5250
+ UPDATE_EXTENDED_FIELDS = "UPDATE_EXTENDED_FIELDS",
5251
+ BULK_UPDATE_TAGS = "BULK_UPDATE_TAGS",
5252
+ BULK_UPDATE_TAGS_BY_FILTER = "BULK_UPDATE_TAGS_BY_FILTER",
5233
5253
  }
5234
5254
  }
5235
5255
  export interface IPaging {
@@ -5469,6 +5489,14 @@ declare namespace $responses {
5469
5489
  queryOptionsName?: string;
5470
5490
  static __$$generatedFromProtobuf$$__: Symbol;
5471
5491
  }
5492
+ export interface IUpdateExtendedFieldsOptions {
5493
+ itemField?: string;
5494
+ }
5495
+ export class UpdateExtendedFieldsOptions implements IUpdateExtendedFieldsOptions {
5496
+ constructor(data?: IUpdateExtendedFieldsOptions);
5497
+ itemField?: string;
5498
+ static __$$generatedFromProtobuf$$__: Symbol;
5499
+ }
5472
5500
  export interface IWql {
5473
5501
  operatorFieldSupport?: $responses.wix.api.Wql.IOperatorFieldSupport[];
5474
5502
  pattern?: $responses.wix.api.Wql.IOperatorFieldSupport[];
@@ -5494,10 +5522,10 @@ declare namespace $responses {
5494
5522
  NIN = "NIN",
5495
5523
  BEGINS = "BEGINS",
5496
5524
  EXISTS = "EXISTS",
5497
- ALL = "ALL",
5498
5525
  HAS_ALL = "HAS_ALL",
5499
- ANY = "ANY",
5526
+ ALL = "ALL",
5500
5527
  HAS_SOME = "HAS_SOME",
5528
+ ANY = "ANY",
5501
5529
  EMPTY = "EMPTY",
5502
5530
  MATCH_ALL = "MATCH_ALL",
5503
5531
  MATCH_ITEMS = "MATCH_ITEMS",
@@ -6466,12 +6494,14 @@ declare namespace $responses {
6466
6494
  count?: number;
6467
6495
  cursors?: $responses.wix.common.ICursors;
6468
6496
  hasNext?: boolean;
6497
+ total?: number;
6469
6498
  }
6470
6499
  export class CursorPagingMetadata implements ICursorPagingMetadata {
6471
6500
  constructor(data?: ICursorPagingMetadata);
6472
6501
  count?: number;
6473
6502
  cursors?: $responses.wix.common.ICursors;
6474
6503
  hasNext?: boolean;
6504
+ total?: number;
6475
6505
  static __$$generatedFromProtobuf$$__: Symbol;
6476
6506
  }
6477
6507
  export interface ICursors {
@@ -1569,6 +1569,7 @@ declare namespace $requests {
1569
1569
  removeFromTrashbinOptions?: $requests.wix.api.IRemoveFromTrashbinMethodOptions;
1570
1570
  countOptions?: $requests.wix.api.ICountOptions;
1571
1571
  searchRelatedOptions?: $requests.wix.api.ISearchRelatedOptions;
1572
+ updateExtendedFieldsOptions?: $requests.wix.api.IUpdateExtendedFieldsOptions;
1572
1573
  }
1573
1574
  export class Crud implements ICrud {
1574
1575
  constructor(data?: ICrud);
@@ -1593,6 +1594,7 @@ declare namespace $requests {
1593
1594
  removeFromTrashbinOptions?: $requests.wix.api.IRemoveFromTrashbinMethodOptions;
1594
1595
  countOptions?: $requests.wix.api.ICountOptions;
1595
1596
  searchRelatedOptions?: $requests.wix.api.ISearchRelatedOptions;
1597
+ updateExtendedFieldsOptions?: $requests.wix.api.IUpdateExtendedFieldsOptions;
1596
1598
  static __$$generatedFromProtobuf$$__: Symbol;
1597
1599
  }
1598
1600
  export namespace Crud {
@@ -1618,6 +1620,9 @@ declare namespace $requests {
1618
1620
  REMOVE_FROM_TRASHBIN = "REMOVE_FROM_TRASHBIN",
1619
1621
  COUNT = "COUNT",
1620
1622
  SEARCH_RELATED = "SEARCH_RELATED",
1623
+ UPDATE_EXTENDED_FIELDS = "UPDATE_EXTENDED_FIELDS",
1624
+ BULK_UPDATE_TAGS = "BULK_UPDATE_TAGS",
1625
+ BULK_UPDATE_TAGS_BY_FILTER = "BULK_UPDATE_TAGS_BY_FILTER",
1621
1626
  }
1622
1627
  }
1623
1628
  export interface IPaging {
@@ -1857,6 +1862,14 @@ declare namespace $requests {
1857
1862
  queryOptionsName?: string;
1858
1863
  static __$$generatedFromProtobuf$$__: Symbol;
1859
1864
  }
1865
+ export interface IUpdateExtendedFieldsOptions {
1866
+ itemField?: string;
1867
+ }
1868
+ export class UpdateExtendedFieldsOptions implements IUpdateExtendedFieldsOptions {
1869
+ constructor(data?: IUpdateExtendedFieldsOptions);
1870
+ itemField?: string;
1871
+ static __$$generatedFromProtobuf$$__: Symbol;
1872
+ }
1860
1873
  export interface IWql {
1861
1874
  operatorFieldSupport?: $requests.wix.api.Wql.IOperatorFieldSupport[];
1862
1875
  pattern?: $requests.wix.api.Wql.IOperatorFieldSupport[];
@@ -1882,10 +1895,10 @@ declare namespace $requests {
1882
1895
  NIN = "NIN",
1883
1896
  BEGINS = "BEGINS",
1884
1897
  EXISTS = "EXISTS",
1885
- ALL = "ALL",
1886
1898
  HAS_ALL = "HAS_ALL",
1887
- ANY = "ANY",
1899
+ ALL = "ALL",
1888
1900
  HAS_SOME = "HAS_SOME",
1901
+ ANY = "ANY",
1889
1902
  EMPTY = "EMPTY",
1890
1903
  MATCH_ALL = "MATCH_ALL",
1891
1904
  MATCH_ITEMS = "MATCH_ITEMS",
@@ -2854,12 +2867,14 @@ declare namespace $requests {
2854
2867
  count?: number;
2855
2868
  cursors?: $requests.wix.common.ICursors;
2856
2869
  hasNext?: boolean;
2870
+ total?: number;
2857
2871
  }
2858
2872
  export class CursorPagingMetadata implements ICursorPagingMetadata {
2859
2873
  constructor(data?: ICursorPagingMetadata);
2860
2874
  count?: number;
2861
2875
  cursors?: $requests.wix.common.ICursors;
2862
2876
  hasNext?: boolean;
2877
+ total?: number;
2863
2878
  static __$$generatedFromProtobuf$$__: Symbol;
2864
2879
  }
2865
2880
  export interface ICursors {
@@ -5181,6 +5196,7 @@ declare namespace $responses {
5181
5196
  removeFromTrashbinOptions?: $responses.wix.api.IRemoveFromTrashbinMethodOptions;
5182
5197
  countOptions?: $responses.wix.api.ICountOptions;
5183
5198
  searchRelatedOptions?: $responses.wix.api.ISearchRelatedOptions;
5199
+ updateExtendedFieldsOptions?: $responses.wix.api.IUpdateExtendedFieldsOptions;
5184
5200
  }
5185
5201
  export class Crud implements ICrud {
5186
5202
  constructor(data?: ICrud);
@@ -5205,6 +5221,7 @@ declare namespace $responses {
5205
5221
  removeFromTrashbinOptions?: $responses.wix.api.IRemoveFromTrashbinMethodOptions;
5206
5222
  countOptions?: $responses.wix.api.ICountOptions;
5207
5223
  searchRelatedOptions?: $responses.wix.api.ISearchRelatedOptions;
5224
+ updateExtendedFieldsOptions?: $responses.wix.api.IUpdateExtendedFieldsOptions;
5208
5225
  static __$$generatedFromProtobuf$$__: Symbol;
5209
5226
  }
5210
5227
  export namespace Crud {
@@ -5230,6 +5247,9 @@ declare namespace $responses {
5230
5247
  REMOVE_FROM_TRASHBIN = "REMOVE_FROM_TRASHBIN",
5231
5248
  COUNT = "COUNT",
5232
5249
  SEARCH_RELATED = "SEARCH_RELATED",
5250
+ UPDATE_EXTENDED_FIELDS = "UPDATE_EXTENDED_FIELDS",
5251
+ BULK_UPDATE_TAGS = "BULK_UPDATE_TAGS",
5252
+ BULK_UPDATE_TAGS_BY_FILTER = "BULK_UPDATE_TAGS_BY_FILTER",
5233
5253
  }
5234
5254
  }
5235
5255
  export interface IPaging {
@@ -5469,6 +5489,14 @@ declare namespace $responses {
5469
5489
  queryOptionsName?: string;
5470
5490
  static __$$generatedFromProtobuf$$__: Symbol;
5471
5491
  }
5492
+ export interface IUpdateExtendedFieldsOptions {
5493
+ itemField: string;
5494
+ }
5495
+ export class UpdateExtendedFieldsOptions implements IUpdateExtendedFieldsOptions {
5496
+ constructor(data?: IUpdateExtendedFieldsOptions);
5497
+ itemField: string;
5498
+ static __$$generatedFromProtobuf$$__: Symbol;
5499
+ }
5472
5500
  export interface IWql {
5473
5501
  operatorFieldSupport: $responses.wix.api.Wql.IOperatorFieldSupport[];
5474
5502
  pattern: $responses.wix.api.Wql.IOperatorFieldSupport[];
@@ -5494,10 +5522,10 @@ declare namespace $responses {
5494
5522
  NIN = "NIN",
5495
5523
  BEGINS = "BEGINS",
5496
5524
  EXISTS = "EXISTS",
5497
- ALL = "ALL",
5498
5525
  HAS_ALL = "HAS_ALL",
5499
- ANY = "ANY",
5526
+ ALL = "ALL",
5500
5527
  HAS_SOME = "HAS_SOME",
5528
+ ANY = "ANY",
5501
5529
  EMPTY = "EMPTY",
5502
5530
  MATCH_ALL = "MATCH_ALL",
5503
5531
  MATCH_ITEMS = "MATCH_ITEMS",
@@ -6466,12 +6494,14 @@ declare namespace $responses {
6466
6494
  count?: number;
6467
6495
  cursors?: $responses.wix.common.ICursors;
6468
6496
  hasNext?: boolean;
6497
+ total?: number;
6469
6498
  }
6470
6499
  export class CursorPagingMetadata implements ICursorPagingMetadata {
6471
6500
  constructor(data?: ICursorPagingMetadata);
6472
6501
  count?: number;
6473
6502
  cursors?: $responses.wix.common.ICursors;
6474
6503
  hasNext?: boolean;
6504
+ total?: number;
6475
6505
  static __$$generatedFromProtobuf$$__: Symbol;
6476
6506
  }
6477
6507
  export interface ICursors {
@@ -1588,6 +1588,7 @@ declare namespace $wrapper {
1588
1588
  removeFromTrashbinOptions?: ($wrapper.wix.api.IRemoveFromTrashbinMethodOptions | null);
1589
1589
  countOptions?: ($wrapper.wix.api.ICountOptions | null);
1590
1590
  searchRelatedOptions?: ($wrapper.wix.api.ISearchRelatedOptions | null);
1591
+ updateExtendedFieldsOptions?: ($wrapper.wix.api.IUpdateExtendedFieldsOptions | null);
1591
1592
  }
1592
1593
  export class Crud implements ICrud {
1593
1594
  constructor(data?: ICrud);
@@ -1612,6 +1613,7 @@ declare namespace $wrapper {
1612
1613
  removeFromTrashbinOptions?: ($wrapper.wix.api.IRemoveFromTrashbinMethodOptions | null);
1613
1614
  countOptions?: ($wrapper.wix.api.ICountOptions | null);
1614
1615
  searchRelatedOptions?: ($wrapper.wix.api.ISearchRelatedOptions | null);
1616
+ updateExtendedFieldsOptions?: ($wrapper.wix.api.IUpdateExtendedFieldsOptions | null);
1615
1617
  static __$$generatedFromProtobuf$$__: Symbol;
1616
1618
  }
1617
1619
  export namespace Crud {
@@ -1637,6 +1639,9 @@ declare namespace $wrapper {
1637
1639
  REMOVE_FROM_TRASHBIN = "REMOVE_FROM_TRASHBIN",
1638
1640
  COUNT = "COUNT",
1639
1641
  SEARCH_RELATED = "SEARCH_RELATED",
1642
+ UPDATE_EXTENDED_FIELDS = "UPDATE_EXTENDED_FIELDS",
1643
+ BULK_UPDATE_TAGS = "BULK_UPDATE_TAGS",
1644
+ BULK_UPDATE_TAGS_BY_FILTER = "BULK_UPDATE_TAGS_BY_FILTER",
1640
1645
  }
1641
1646
  }
1642
1647
  export interface IPaging {
@@ -1876,6 +1881,14 @@ declare namespace $wrapper {
1876
1881
  queryOptionsName?: (string | null);
1877
1882
  static __$$generatedFromProtobuf$$__: Symbol;
1878
1883
  }
1884
+ export interface IUpdateExtendedFieldsOptions {
1885
+ itemField?: (string | null);
1886
+ }
1887
+ export class UpdateExtendedFieldsOptions implements IUpdateExtendedFieldsOptions {
1888
+ constructor(data?: IUpdateExtendedFieldsOptions);
1889
+ itemField?: (string | null);
1890
+ static __$$generatedFromProtobuf$$__: Symbol;
1891
+ }
1879
1892
  export interface IWql {
1880
1893
  operatorFieldSupport?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
1881
1894
  pattern?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
@@ -1901,10 +1914,10 @@ declare namespace $wrapper {
1901
1914
  NIN = "NIN",
1902
1915
  BEGINS = "BEGINS",
1903
1916
  EXISTS = "EXISTS",
1904
- ALL = "ALL",
1905
1917
  HAS_ALL = "HAS_ALL",
1906
- ANY = "ANY",
1918
+ ALL = "ALL",
1907
1919
  HAS_SOME = "HAS_SOME",
1920
+ ANY = "ANY",
1908
1921
  EMPTY = "EMPTY",
1909
1922
  MATCH_ALL = "MATCH_ALL",
1910
1923
  MATCH_ITEMS = "MATCH_ITEMS",
@@ -2873,12 +2886,14 @@ declare namespace $wrapper {
2873
2886
  count?: (number | null);
2874
2887
  cursors?: ($wrapper.wix.common.ICursors | null);
2875
2888
  hasNext?: (boolean | null);
2889
+ total?: (number | null);
2876
2890
  }
2877
2891
  export class CursorPagingMetadata implements ICursorPagingMetadata {
2878
2892
  constructor(data?: ICursorPagingMetadata);
2879
2893
  count?: (number | null);
2880
2894
  cursors?: ($wrapper.wix.common.ICursors | null);
2881
2895
  hasNext?: (boolean | null);
2896
+ total?: (number | null);
2882
2897
  static __$$generatedFromProtobuf$$__: Symbol;
2883
2898
  }
2884
2899
  export interface ICursors {