@wix/metro-common-builders 1.0.1485 → 1.0.1486

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.
@@ -1449,6 +1449,7 @@ declare namespace $requests {
1449
1449
  queryOptions?: $requests.wix.api.IQueryOptions;
1450
1450
  eventsExposure?: $requests.wix.api.Exposure;
1451
1451
  eventsMaturity?: $requests.wix.api.Maturity;
1452
+ persistence?: $requests.wix.api.IPersistence;
1452
1453
  }
1453
1454
  export class Entity implements IEntity {
1454
1455
  constructor(data?: IEntity);
@@ -1468,8 +1469,24 @@ declare namespace $requests {
1468
1469
  queryOptions?: $requests.wix.api.IQueryOptions;
1469
1470
  eventsExposure?: $requests.wix.api.Exposure;
1470
1471
  eventsMaturity?: $requests.wix.api.Maturity;
1472
+ persistence?: $requests.wix.api.IPersistence;
1471
1473
  static __$$generatedFromProtobuf$$__: Symbol;
1472
1474
  }
1475
+ export interface IPersistence {
1476
+ type?: $requests.wix.api.Persistence.Type;
1477
+ }
1478
+ export class Persistence implements IPersistence {
1479
+ constructor(data?: IPersistence);
1480
+ type?: $requests.wix.api.Persistence.Type;
1481
+ static __$$generatedFromProtobuf$$__: Symbol;
1482
+ }
1483
+ export namespace Persistence {
1484
+ export enum Type {
1485
+ STANDARD = "STANDARD",
1486
+ SINGLETON = "SINGLETON",
1487
+ NONE = "NONE",
1488
+ }
1489
+ }
1473
1490
  export interface IExtensible {
1474
1491
  nestedExtensionFieldPath?: string;
1475
1492
  filterable?: boolean;
@@ -1621,6 +1638,7 @@ declare namespace $requests {
1621
1638
  countOptions?: $requests.wix.api.ICountOptions;
1622
1639
  searchRelatedOptions?: $requests.wix.api.ISearchRelatedOptions;
1623
1640
  updateExtendedFieldsOptions?: $requests.wix.api.IUpdateExtendedFieldsOptions;
1641
+ customActionOptions?: $requests.wix.api.ICustomActionOptions;
1624
1642
  }
1625
1643
  export class Crud implements ICrud {
1626
1644
  constructor(data?: ICrud);
@@ -1646,6 +1664,7 @@ declare namespace $requests {
1646
1664
  countOptions?: $requests.wix.api.ICountOptions;
1647
1665
  searchRelatedOptions?: $requests.wix.api.ISearchRelatedOptions;
1648
1666
  updateExtendedFieldsOptions?: $requests.wix.api.IUpdateExtendedFieldsOptions;
1667
+ customActionOptions?: $requests.wix.api.ICustomActionOptions;
1649
1668
  static __$$generatedFromProtobuf$$__: Symbol;
1650
1669
  }
1651
1670
  export namespace Crud {
@@ -1674,6 +1693,7 @@ declare namespace $requests {
1674
1693
  UPDATE_EXTENDED_FIELDS = "UPDATE_EXTENDED_FIELDS",
1675
1694
  BULK_UPDATE_TAGS = "BULK_UPDATE_TAGS",
1676
1695
  BULK_UPDATE_TAGS_BY_FILTER = "BULK_UPDATE_TAGS_BY_FILTER",
1696
+ CUSTOM_ACTION = "CUSTOM_ACTION",
1677
1697
  }
1678
1698
  }
1679
1699
  export interface IPaging {
@@ -1693,6 +1713,14 @@ declare namespace $requests {
1693
1713
  CURSOR = "CURSOR",
1694
1714
  }
1695
1715
  }
1716
+ export interface ICustomActionOptions {
1717
+ readOperation?: boolean;
1718
+ }
1719
+ export class CustomActionOptions implements ICustomActionOptions {
1720
+ constructor(data?: ICustomActionOptions);
1721
+ readOperation?: boolean;
1722
+ static __$$generatedFromProtobuf$$__: Symbol;
1723
+ }
1696
1724
  export interface ICreateMethodOptions {
1697
1725
  itemField?: string;
1698
1726
  }
@@ -2232,6 +2260,7 @@ declare namespace $requests {
2232
2260
  LOCAL_DATE_TIME = "LOCAL_DATE_TIME",
2233
2261
  URL_SLUG = "URL_SLUG",
2234
2262
  SYSTEM_SLUG = "SYSTEM_SLUG",
2263
+ SECURE_WEB_URL = "SECURE_WEB_URL",
2235
2264
  }
2236
2265
  /**
2237
2266
  * ApplicationError: named Error for backwards compatibility
@@ -3379,6 +3408,7 @@ declare namespace $requests {
3379
3408
  '.wix.api.format'?: $requests.wix.api.Format;
3380
3409
  '.wix.api.readOnly'?: boolean;
3381
3410
  '.wix.api.immutable'?: boolean;
3411
+ '.wix.api.writeOnly'?: boolean;
3382
3412
  '.wix.api.decimalValue'?: $requests.wix.api.IDecimalValueOptions;
3383
3413
  '.wix.api.customValidation'?: $requests.wix.api.ICustomValidationError;
3384
3414
  }
@@ -3410,6 +3440,7 @@ declare namespace $requests {
3410
3440
  '.wix.api.format'?: $requests.wix.api.Format;
3411
3441
  '.wix.api.readOnly'?: boolean;
3412
3442
  '.wix.api.immutable'?: boolean;
3443
+ '.wix.api.writeOnly'?: boolean;
3413
3444
  '.wix.api.decimalValue'?: $requests.wix.api.IDecimalValueOptions;
3414
3445
  '.wix.api.customValidation'?: $requests.wix.api.ICustomValidationError;
3415
3446
  static __$$generatedFromProtobuf$$__: Symbol;
@@ -5127,6 +5158,7 @@ declare namespace $responses {
5127
5158
  queryOptions?: $responses.wix.api.IQueryOptions;
5128
5159
  eventsExposure: $responses.wix.api.Exposure;
5129
5160
  eventsMaturity: $responses.wix.api.Maturity;
5161
+ persistence?: $responses.wix.api.IPersistence;
5130
5162
  }
5131
5163
  export class Entity implements IEntity {
5132
5164
  constructor(data?: IEntity);
@@ -5146,8 +5178,24 @@ declare namespace $responses {
5146
5178
  queryOptions?: $responses.wix.api.IQueryOptions;
5147
5179
  eventsExposure: $responses.wix.api.Exposure;
5148
5180
  eventsMaturity: $responses.wix.api.Maturity;
5181
+ persistence?: $responses.wix.api.IPersistence;
5149
5182
  static __$$generatedFromProtobuf$$__: Symbol;
5150
5183
  }
5184
+ export interface IPersistence {
5185
+ type: $responses.wix.api.Persistence.Type;
5186
+ }
5187
+ export class Persistence implements IPersistence {
5188
+ constructor(data?: IPersistence);
5189
+ type: $responses.wix.api.Persistence.Type;
5190
+ static __$$generatedFromProtobuf$$__: Symbol;
5191
+ }
5192
+ export namespace Persistence {
5193
+ export enum Type {
5194
+ STANDARD = "STANDARD",
5195
+ SINGLETON = "SINGLETON",
5196
+ NONE = "NONE",
5197
+ }
5198
+ }
5151
5199
  export interface IExtensible {
5152
5200
  nestedExtensionFieldPath: string;
5153
5201
  filterable: boolean;
@@ -5299,6 +5347,7 @@ declare namespace $responses {
5299
5347
  countOptions?: $responses.wix.api.ICountOptions;
5300
5348
  searchRelatedOptions?: $responses.wix.api.ISearchRelatedOptions;
5301
5349
  updateExtendedFieldsOptions?: $responses.wix.api.IUpdateExtendedFieldsOptions;
5350
+ customActionOptions?: $responses.wix.api.ICustomActionOptions;
5302
5351
  }
5303
5352
  export class Crud implements ICrud {
5304
5353
  constructor(data?: ICrud);
@@ -5324,6 +5373,7 @@ declare namespace $responses {
5324
5373
  countOptions?: $responses.wix.api.ICountOptions;
5325
5374
  searchRelatedOptions?: $responses.wix.api.ISearchRelatedOptions;
5326
5375
  updateExtendedFieldsOptions?: $responses.wix.api.IUpdateExtendedFieldsOptions;
5376
+ customActionOptions?: $responses.wix.api.ICustomActionOptions;
5327
5377
  static __$$generatedFromProtobuf$$__: Symbol;
5328
5378
  }
5329
5379
  export namespace Crud {
@@ -5352,6 +5402,7 @@ declare namespace $responses {
5352
5402
  UPDATE_EXTENDED_FIELDS = "UPDATE_EXTENDED_FIELDS",
5353
5403
  BULK_UPDATE_TAGS = "BULK_UPDATE_TAGS",
5354
5404
  BULK_UPDATE_TAGS_BY_FILTER = "BULK_UPDATE_TAGS_BY_FILTER",
5405
+ CUSTOM_ACTION = "CUSTOM_ACTION",
5355
5406
  }
5356
5407
  }
5357
5408
  export interface IPaging {
@@ -5371,6 +5422,14 @@ declare namespace $responses {
5371
5422
  CURSOR = "CURSOR",
5372
5423
  }
5373
5424
  }
5425
+ export interface ICustomActionOptions {
5426
+ readOperation: boolean;
5427
+ }
5428
+ export class CustomActionOptions implements ICustomActionOptions {
5429
+ constructor(data?: ICustomActionOptions);
5430
+ readOperation: boolean;
5431
+ static __$$generatedFromProtobuf$$__: Symbol;
5432
+ }
5374
5433
  export interface ICreateMethodOptions {
5375
5434
  itemField: string;
5376
5435
  }
@@ -5910,6 +5969,7 @@ declare namespace $responses {
5910
5969
  LOCAL_DATE_TIME = "LOCAL_DATE_TIME",
5911
5970
  URL_SLUG = "URL_SLUG",
5912
5971
  SYSTEM_SLUG = "SYSTEM_SLUG",
5972
+ SECURE_WEB_URL = "SECURE_WEB_URL",
5913
5973
  }
5914
5974
  /**
5915
5975
  * ApplicationError: named Error for backwards compatibility
@@ -7057,6 +7117,7 @@ declare namespace $responses {
7057
7117
  '.wix.api.format': $responses.wix.api.Format;
7058
7118
  '.wix.api.readOnly': boolean;
7059
7119
  '.wix.api.immutable': boolean;
7120
+ '.wix.api.writeOnly': boolean;
7060
7121
  '.wix.api.decimalValue'?: $responses.wix.api.IDecimalValueOptions;
7061
7122
  '.wix.api.customValidation'?: $responses.wix.api.ICustomValidationError;
7062
7123
  }
@@ -7088,6 +7149,7 @@ declare namespace $responses {
7088
7149
  '.wix.api.format': $responses.wix.api.Format;
7089
7150
  '.wix.api.readOnly': boolean;
7090
7151
  '.wix.api.immutable': boolean;
7152
+ '.wix.api.writeOnly': boolean;
7091
7153
  '.wix.api.decimalValue'?: $responses.wix.api.IDecimalValueOptions;
7092
7154
  '.wix.api.customValidation'?: $responses.wix.api.ICustomValidationError;
7093
7155
  static __$$generatedFromProtobuf$$__: Symbol;
@@ -1467,6 +1467,7 @@ declare namespace $wrapper {
1467
1467
  queryOptions?: ($wrapper.wix.api.IQueryOptions | null);
1468
1468
  eventsExposure?: ($wrapper.wix.api.Exposure | null);
1469
1469
  eventsMaturity?: ($wrapper.wix.api.Maturity | null);
1470
+ persistence?: ($wrapper.wix.api.IPersistence | null);
1470
1471
  }
1471
1472
  export class Entity implements IEntity {
1472
1473
  constructor(data?: IEntity);
@@ -1486,8 +1487,24 @@ declare namespace $wrapper {
1486
1487
  queryOptions?: ($wrapper.wix.api.IQueryOptions | null);
1487
1488
  eventsExposure?: ($wrapper.wix.api.Exposure | null);
1488
1489
  eventsMaturity?: ($wrapper.wix.api.Maturity | null);
1490
+ persistence?: ($wrapper.wix.api.IPersistence | null);
1489
1491
  static __$$generatedFromProtobuf$$__: Symbol;
1490
1492
  }
1493
+ export interface IPersistence {
1494
+ type?: ($wrapper.wix.api.Persistence.Type | null);
1495
+ }
1496
+ export class Persistence implements IPersistence {
1497
+ constructor(data?: IPersistence);
1498
+ type?: ($wrapper.wix.api.Persistence.Type | null);
1499
+ static __$$generatedFromProtobuf$$__: Symbol;
1500
+ }
1501
+ export namespace Persistence {
1502
+ export enum Type {
1503
+ STANDARD = "STANDARD",
1504
+ SINGLETON = "SINGLETON",
1505
+ NONE = "NONE",
1506
+ }
1507
+ }
1491
1508
  export interface IExtensible {
1492
1509
  nestedExtensionFieldPath?: (string | null);
1493
1510
  filterable?: (boolean | null);
@@ -1639,6 +1656,7 @@ declare namespace $wrapper {
1639
1656
  countOptions?: ($wrapper.wix.api.ICountOptions | null);
1640
1657
  searchRelatedOptions?: ($wrapper.wix.api.ISearchRelatedOptions | null);
1641
1658
  updateExtendedFieldsOptions?: ($wrapper.wix.api.IUpdateExtendedFieldsOptions | null);
1659
+ customActionOptions?: ($wrapper.wix.api.ICustomActionOptions | null);
1642
1660
  }
1643
1661
  export class Crud implements ICrud {
1644
1662
  constructor(data?: ICrud);
@@ -1664,6 +1682,7 @@ declare namespace $wrapper {
1664
1682
  countOptions?: ($wrapper.wix.api.ICountOptions | null);
1665
1683
  searchRelatedOptions?: ($wrapper.wix.api.ISearchRelatedOptions | null);
1666
1684
  updateExtendedFieldsOptions?: ($wrapper.wix.api.IUpdateExtendedFieldsOptions | null);
1685
+ customActionOptions?: ($wrapper.wix.api.ICustomActionOptions | null);
1667
1686
  static __$$generatedFromProtobuf$$__: Symbol;
1668
1687
  }
1669
1688
  export namespace Crud {
@@ -1692,6 +1711,7 @@ declare namespace $wrapper {
1692
1711
  UPDATE_EXTENDED_FIELDS = "UPDATE_EXTENDED_FIELDS",
1693
1712
  BULK_UPDATE_TAGS = "BULK_UPDATE_TAGS",
1694
1713
  BULK_UPDATE_TAGS_BY_FILTER = "BULK_UPDATE_TAGS_BY_FILTER",
1714
+ CUSTOM_ACTION = "CUSTOM_ACTION",
1695
1715
  }
1696
1716
  }
1697
1717
  export interface IPaging {
@@ -1711,6 +1731,14 @@ declare namespace $wrapper {
1711
1731
  CURSOR = "CURSOR",
1712
1732
  }
1713
1733
  }
1734
+ export interface ICustomActionOptions {
1735
+ readOperation?: (boolean | null);
1736
+ }
1737
+ export class CustomActionOptions implements ICustomActionOptions {
1738
+ constructor(data?: ICustomActionOptions);
1739
+ readOperation?: (boolean | null);
1740
+ static __$$generatedFromProtobuf$$__: Symbol;
1741
+ }
1714
1742
  export interface ICreateMethodOptions {
1715
1743
  itemField?: (string | null);
1716
1744
  }
@@ -2250,6 +2278,7 @@ declare namespace $wrapper {
2250
2278
  LOCAL_DATE_TIME = "LOCAL_DATE_TIME",
2251
2279
  URL_SLUG = "URL_SLUG",
2252
2280
  SYSTEM_SLUG = "SYSTEM_SLUG",
2281
+ SECURE_WEB_URL = "SECURE_WEB_URL",
2253
2282
  }
2254
2283
  /**
2255
2284
  * ApplicationError: named Error for backwards compatibility
@@ -3399,6 +3428,7 @@ declare namespace $wrapper {
3399
3428
  '.wix.api.format'?: ($wrapper.wix.api.Format | null);
3400
3429
  '.wix.api.readOnly'?: (boolean | null);
3401
3430
  '.wix.api.immutable'?: (boolean | null);
3431
+ '.wix.api.writeOnly'?: (boolean | null);
3402
3432
  '.wix.api.decimalValue'?: ($wrapper.wix.api.IDecimalValueOptions | null);
3403
3433
  '.wix.api.customValidation'?: ($wrapper.wix.api.ICustomValidationError | null);
3404
3434
  }
@@ -3430,6 +3460,7 @@ declare namespace $wrapper {
3430
3460
  '.wix.api.format'?: ($wrapper.wix.api.Format | null);
3431
3461
  '.wix.api.readOnly'?: (boolean | null);
3432
3462
  '.wix.api.immutable'?: (boolean | null);
3463
+ '.wix.api.writeOnly'?: (boolean | null);
3433
3464
  '.wix.api.decimalValue'?: ($wrapper.wix.api.IDecimalValueOptions | null);
3434
3465
  '.wix.api.customValidation'?: ($wrapper.wix.api.ICustomValidationError | null);
3435
3466
  static __$$generatedFromProtobuf$$__: Symbol;