@wix/metro-common-builders 1.0.1704 → 1.0.1706

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.
@@ -2626,17 +2626,23 @@ declare namespace $requests {
2626
2626
  export interface IPermissionRule {
2627
2627
  name: string;
2628
2628
  type: $requests.wix.api.PermissionType;
2629
+ abacRequestValidation: $requests.wix.api.AbacRequestValidationMode;
2629
2630
  }
2630
2631
  export class PermissionRule implements IPermissionRule {
2631
2632
  constructor(data?: IPermissionRule);
2632
2633
  name: string;
2633
2634
  type: $requests.wix.api.PermissionType;
2635
+ abacRequestValidation: $requests.wix.api.AbacRequestValidationMode;
2634
2636
  static __$$generatedFromProtobuf$$__: Symbol;
2635
2637
  }
2636
2638
  export enum PermissionType {
2637
2639
  AUTO = "AUTO",
2638
2640
  MANUAL = "MANUAL",
2639
2641
  }
2642
+ export enum AbacRequestValidationMode {
2643
+ ON = "ON",
2644
+ OFF = "OFF",
2645
+ }
2640
2646
  export interface ISubscription {
2641
2647
  topic: string;
2642
2648
  segment: $requests.wix.api.Segment.SegmentName;
@@ -6644,17 +6650,23 @@ declare namespace $responses {
6644
6650
  export interface IPermissionRule {
6645
6651
  name?: string;
6646
6652
  type?: $responses.wix.api.PermissionType;
6653
+ abacRequestValidation?: $responses.wix.api.AbacRequestValidationMode;
6647
6654
  }
6648
6655
  export class PermissionRule implements IPermissionRule {
6649
6656
  constructor(data?: IPermissionRule);
6650
6657
  name?: string;
6651
6658
  type?: $responses.wix.api.PermissionType;
6659
+ abacRequestValidation?: $responses.wix.api.AbacRequestValidationMode;
6652
6660
  static __$$generatedFromProtobuf$$__: Symbol;
6653
6661
  }
6654
6662
  export enum PermissionType {
6655
6663
  AUTO = "AUTO",
6656
6664
  MANUAL = "MANUAL",
6657
6665
  }
6666
+ export enum AbacRequestValidationMode {
6667
+ ON = "ON",
6668
+ OFF = "OFF",
6669
+ }
6658
6670
  export interface ISubscription {
6659
6671
  topic?: string;
6660
6672
  segment?: $responses.wix.api.Segment.SegmentName;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/metro-common-builders",
3
- "version": "1.0.1704",
3
+ "version": "1.0.1706",
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.2059.0",
36
+ "@wix/metro-runtime": "^1.2061.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": "50660026287f23312f182232cbc1ca6e548983a550ba543bd9ee4df1"
74
+ "falconPackageHash": "b47e430b5a8b38ac14aa3319691222e66911040c1107169571fe3d61"
75
75
  }