@wix/metro-common-builders 1.0.1703 → 1.0.1705
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 +12 -0
- package/dist/es/src/proto/index.d.ts +6 -0
- package/dist/es/src/proto/index.js +1 -1
- package/dist/es/src/proto/server/index.d.ts +12 -0
- package/dist/src/proto/client/index.d.ts +12 -0
- package/dist/src/proto/index.d.ts +6 -0
- package/dist/src/proto/index.js +1 -1
- package/dist/src/proto/server/index.d.ts +12 -0
- package/package.json +3 -3
|
@@ -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;
|
|
@@ -2648,17 +2648,23 @@ declare namespace $wrapper {
|
|
|
2648
2648
|
export interface IPermissionRule {
|
|
2649
2649
|
name?: (string | null);
|
|
2650
2650
|
type?: ($wrapper.wix.api.PermissionType | null);
|
|
2651
|
+
abacRequestValidation?: ($wrapper.wix.api.AbacRequestValidationMode | null);
|
|
2651
2652
|
}
|
|
2652
2653
|
export class PermissionRule implements IPermissionRule {
|
|
2653
2654
|
constructor(data?: IPermissionRule);
|
|
2654
2655
|
name?: (string | null);
|
|
2655
2656
|
type?: ($wrapper.wix.api.PermissionType | null);
|
|
2657
|
+
abacRequestValidation?: ($wrapper.wix.api.AbacRequestValidationMode | null);
|
|
2656
2658
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2657
2659
|
}
|
|
2658
2660
|
export enum PermissionType {
|
|
2659
2661
|
AUTO = "AUTO",
|
|
2660
2662
|
MANUAL = "MANUAL",
|
|
2661
2663
|
}
|
|
2664
|
+
export enum AbacRequestValidationMode {
|
|
2665
|
+
ON = "ON",
|
|
2666
|
+
OFF = "OFF",
|
|
2667
|
+
}
|
|
2662
2668
|
export interface ISubscription {
|
|
2663
2669
|
topic?: (string | null);
|
|
2664
2670
|
segment?: ($wrapper.wix.api.Segment.SegmentName | null);
|