@wix/metro-common-builders 1.0.1116 → 1.0.1118
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 +78 -0
- package/dist/es/src/proto/index.d.ts +39 -0
- package/dist/es/src/proto/index.js +441 -2
- package/dist/es/src/proto/server/index.d.ts +78 -0
- package/dist/src/proto/client/index.d.ts +78 -0
- package/dist/src/proto/index.d.ts +39 -0
- package/dist/src/proto/index.js +441 -2
- package/dist/src/proto/server/index.d.ts +78 -0
- package/package.json +3 -3
|
@@ -1644,6 +1644,41 @@ declare namespace $requests {
|
|
|
1644
1644
|
ACTION = "ACTION",
|
|
1645
1645
|
}
|
|
1646
1646
|
}
|
|
1647
|
+
export interface IDomainEvent {
|
|
1648
|
+
actionMessageFqn?: string;
|
|
1649
|
+
webhookPermissionOverride?: string;
|
|
1650
|
+
eventType?: $requests.wix.api.DomainEvent.EventType;
|
|
1651
|
+
exposure?: $requests.wix.api.Exposure;
|
|
1652
|
+
maturity?: $requests.wix.api.Maturity;
|
|
1653
|
+
}
|
|
1654
|
+
export class DomainEvent implements IDomainEvent {
|
|
1655
|
+
constructor(data?: IDomainEvent);
|
|
1656
|
+
actionMessageFqn?: string;
|
|
1657
|
+
webhookPermissionOverride?: string;
|
|
1658
|
+
eventType?: $requests.wix.api.DomainEvent.EventType;
|
|
1659
|
+
exposure?: $requests.wix.api.Exposure;
|
|
1660
|
+
maturity?: $requests.wix.api.Maturity;
|
|
1661
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1662
|
+
}
|
|
1663
|
+
export namespace DomainEvent {
|
|
1664
|
+
export enum EventType {
|
|
1665
|
+
UNKNOWN = "UNKNOWN",
|
|
1666
|
+
CREATED = "CREATED",
|
|
1667
|
+
UPDATED = "UPDATED",
|
|
1668
|
+
DELETED = "DELETED",
|
|
1669
|
+
ACTION = "ACTION",
|
|
1670
|
+
}
|
|
1671
|
+
}
|
|
1672
|
+
export interface IEmits {
|
|
1673
|
+
eventType?: $requests.wix.api.DomainEvent.EventType;
|
|
1674
|
+
actionMessageFqn?: string;
|
|
1675
|
+
}
|
|
1676
|
+
export class Emits implements IEmits {
|
|
1677
|
+
constructor(data?: IEmits);
|
|
1678
|
+
eventType?: $requests.wix.api.DomainEvent.EventType;
|
|
1679
|
+
actionMessageFqn?: string;
|
|
1680
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1681
|
+
}
|
|
1647
1682
|
export interface ICallbackDeprecation {
|
|
1648
1683
|
replacedBy?: string;
|
|
1649
1684
|
targetRemovalDate?: string;
|
|
@@ -2594,6 +2629,7 @@ declare namespace $requests {
|
|
|
2594
2629
|
'.wix.api.appendixFiles'?: $requests.wix.api.IServiceAppendix[];
|
|
2595
2630
|
'.wix.api.event'?: $requests.wix.api.ICallback[];
|
|
2596
2631
|
'.wix.api.eventDeprecated'?: $requests.wix.api.ICallbackDeprecation[];
|
|
2632
|
+
'.wix.api.domainEvent'?: $requests.wix.api.IDomainEvent[];
|
|
2597
2633
|
}
|
|
2598
2634
|
export class ServiceOptions implements IServiceOptions {
|
|
2599
2635
|
constructor(data?: IServiceOptions);
|
|
@@ -2606,6 +2642,7 @@ declare namespace $requests {
|
|
|
2606
2642
|
'.wix.api.appendixFiles'?: $requests.wix.api.IServiceAppendix[];
|
|
2607
2643
|
'.wix.api.event'?: $requests.wix.api.ICallback[];
|
|
2608
2644
|
'.wix.api.eventDeprecated'?: $requests.wix.api.ICallbackDeprecation[];
|
|
2645
|
+
'.wix.api.domainEvent'?: $requests.wix.api.IDomainEvent[];
|
|
2609
2646
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2610
2647
|
}
|
|
2611
2648
|
export interface IMethodOptions {
|
|
@@ -2620,6 +2657,7 @@ declare namespace $requests {
|
|
|
2620
2657
|
'.wix.api.hookable'?: $requests.wix.api.IHookable;
|
|
2621
2658
|
'.wix.api.acceptsLinguist'?: boolean;
|
|
2622
2659
|
'.wix.api.callback'?: $requests.wix.api.ICallback[];
|
|
2660
|
+
'.wix.api.emits'?: $requests.wix.api.IEmits[];
|
|
2623
2661
|
'.wix.api.required'?: string[];
|
|
2624
2662
|
'.wix.api.writable'?: string[];
|
|
2625
2663
|
'.wix.api.error'?: $requests.wix.api.IError[];
|
|
@@ -2641,6 +2679,7 @@ declare namespace $requests {
|
|
|
2641
2679
|
'.wix.api.hookable'?: $requests.wix.api.IHookable;
|
|
2642
2680
|
'.wix.api.acceptsLinguist'?: boolean;
|
|
2643
2681
|
'.wix.api.callback'?: $requests.wix.api.ICallback[];
|
|
2682
|
+
'.wix.api.emits'?: $requests.wix.api.IEmits[];
|
|
2644
2683
|
'.wix.api.required'?: string[];
|
|
2645
2684
|
'.wix.api.writable'?: string[];
|
|
2646
2685
|
'.wix.api.error'?: $requests.wix.api.IError[];
|
|
@@ -4427,6 +4466,41 @@ declare namespace $responses {
|
|
|
4427
4466
|
ACTION = "ACTION",
|
|
4428
4467
|
}
|
|
4429
4468
|
}
|
|
4469
|
+
export interface IDomainEvent {
|
|
4470
|
+
actionMessageFqn: string;
|
|
4471
|
+
webhookPermissionOverride: string;
|
|
4472
|
+
eventType: $responses.wix.api.DomainEvent.EventType;
|
|
4473
|
+
exposure: $responses.wix.api.Exposure;
|
|
4474
|
+
maturity: $responses.wix.api.Maturity;
|
|
4475
|
+
}
|
|
4476
|
+
export class DomainEvent implements IDomainEvent {
|
|
4477
|
+
constructor(data?: IDomainEvent);
|
|
4478
|
+
actionMessageFqn: string;
|
|
4479
|
+
webhookPermissionOverride: string;
|
|
4480
|
+
eventType: $responses.wix.api.DomainEvent.EventType;
|
|
4481
|
+
exposure: $responses.wix.api.Exposure;
|
|
4482
|
+
maturity: $responses.wix.api.Maturity;
|
|
4483
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4484
|
+
}
|
|
4485
|
+
export namespace DomainEvent {
|
|
4486
|
+
export enum EventType {
|
|
4487
|
+
UNKNOWN = "UNKNOWN",
|
|
4488
|
+
CREATED = "CREATED",
|
|
4489
|
+
UPDATED = "UPDATED",
|
|
4490
|
+
DELETED = "DELETED",
|
|
4491
|
+
ACTION = "ACTION",
|
|
4492
|
+
}
|
|
4493
|
+
}
|
|
4494
|
+
export interface IEmits {
|
|
4495
|
+
eventType: $responses.wix.api.DomainEvent.EventType;
|
|
4496
|
+
actionMessageFqn: string;
|
|
4497
|
+
}
|
|
4498
|
+
export class Emits implements IEmits {
|
|
4499
|
+
constructor(data?: IEmits);
|
|
4500
|
+
eventType: $responses.wix.api.DomainEvent.EventType;
|
|
4501
|
+
actionMessageFqn: string;
|
|
4502
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4503
|
+
}
|
|
4430
4504
|
export interface ICallbackDeprecation {
|
|
4431
4505
|
replacedBy: string;
|
|
4432
4506
|
targetRemovalDate: string;
|
|
@@ -5377,6 +5451,7 @@ declare namespace $responses {
|
|
|
5377
5451
|
'.wix.api.appendixFiles': $responses.wix.api.IServiceAppendix[];
|
|
5378
5452
|
'.wix.api.event': $responses.wix.api.ICallback[];
|
|
5379
5453
|
'.wix.api.eventDeprecated': $responses.wix.api.ICallbackDeprecation[];
|
|
5454
|
+
'.wix.api.domainEvent': $responses.wix.api.IDomainEvent[];
|
|
5380
5455
|
}
|
|
5381
5456
|
export class ServiceOptions implements IServiceOptions {
|
|
5382
5457
|
constructor(data?: IServiceOptions);
|
|
@@ -5389,6 +5464,7 @@ declare namespace $responses {
|
|
|
5389
5464
|
'.wix.api.appendixFiles': $responses.wix.api.IServiceAppendix[];
|
|
5390
5465
|
'.wix.api.event': $responses.wix.api.ICallback[];
|
|
5391
5466
|
'.wix.api.eventDeprecated': $responses.wix.api.ICallbackDeprecation[];
|
|
5467
|
+
'.wix.api.domainEvent': $responses.wix.api.IDomainEvent[];
|
|
5392
5468
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5393
5469
|
}
|
|
5394
5470
|
export interface IMethodOptions {
|
|
@@ -5403,6 +5479,7 @@ declare namespace $responses {
|
|
|
5403
5479
|
'.wix.api.hookable'?: $responses.wix.api.IHookable;
|
|
5404
5480
|
'.wix.api.acceptsLinguist': boolean;
|
|
5405
5481
|
'.wix.api.callback': $responses.wix.api.ICallback[];
|
|
5482
|
+
'.wix.api.emits': $responses.wix.api.IEmits[];
|
|
5406
5483
|
'.wix.api.required': string[];
|
|
5407
5484
|
'.wix.api.writable': string[];
|
|
5408
5485
|
'.wix.api.error': $responses.wix.api.IError[];
|
|
@@ -5424,6 +5501,7 @@ declare namespace $responses {
|
|
|
5424
5501
|
'.wix.api.hookable'?: $responses.wix.api.IHookable;
|
|
5425
5502
|
'.wix.api.acceptsLinguist': boolean;
|
|
5426
5503
|
'.wix.api.callback': $responses.wix.api.ICallback[];
|
|
5504
|
+
'.wix.api.emits': $responses.wix.api.IEmits[];
|
|
5427
5505
|
'.wix.api.required': string[];
|
|
5428
5506
|
'.wix.api.writable': string[];
|
|
5429
5507
|
'.wix.api.error': $responses.wix.api.IError[];
|
|
@@ -1657,6 +1657,41 @@ declare namespace $wrapper {
|
|
|
1657
1657
|
ACTION = "ACTION",
|
|
1658
1658
|
}
|
|
1659
1659
|
}
|
|
1660
|
+
export interface IDomainEvent {
|
|
1661
|
+
actionMessageFqn?: (string | null);
|
|
1662
|
+
webhookPermissionOverride?: (string | null);
|
|
1663
|
+
eventType?: ($wrapper.wix.api.DomainEvent.EventType | null);
|
|
1664
|
+
exposure?: ($wrapper.wix.api.Exposure | null);
|
|
1665
|
+
maturity?: ($wrapper.wix.api.Maturity | null);
|
|
1666
|
+
}
|
|
1667
|
+
export class DomainEvent implements IDomainEvent {
|
|
1668
|
+
constructor(data?: IDomainEvent);
|
|
1669
|
+
actionMessageFqn?: (string | null);
|
|
1670
|
+
webhookPermissionOverride?: (string | null);
|
|
1671
|
+
eventType?: ($wrapper.wix.api.DomainEvent.EventType | null);
|
|
1672
|
+
exposure?: ($wrapper.wix.api.Exposure | null);
|
|
1673
|
+
maturity?: ($wrapper.wix.api.Maturity | null);
|
|
1674
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1675
|
+
}
|
|
1676
|
+
export namespace DomainEvent {
|
|
1677
|
+
export enum EventType {
|
|
1678
|
+
UNKNOWN = "UNKNOWN",
|
|
1679
|
+
CREATED = "CREATED",
|
|
1680
|
+
UPDATED = "UPDATED",
|
|
1681
|
+
DELETED = "DELETED",
|
|
1682
|
+
ACTION = "ACTION",
|
|
1683
|
+
}
|
|
1684
|
+
}
|
|
1685
|
+
export interface IEmits {
|
|
1686
|
+
eventType?: ($wrapper.wix.api.DomainEvent.EventType | null);
|
|
1687
|
+
actionMessageFqn?: (string | null);
|
|
1688
|
+
}
|
|
1689
|
+
export class Emits implements IEmits {
|
|
1690
|
+
constructor(data?: IEmits);
|
|
1691
|
+
eventType?: ($wrapper.wix.api.DomainEvent.EventType | null);
|
|
1692
|
+
actionMessageFqn?: (string | null);
|
|
1693
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1694
|
+
}
|
|
1660
1695
|
export interface ICallbackDeprecation {
|
|
1661
1696
|
replacedBy?: (string | null);
|
|
1662
1697
|
targetRemovalDate?: (string | null);
|
|
@@ -2607,6 +2642,7 @@ declare namespace $wrapper {
|
|
|
2607
2642
|
'.wix.api.appendixFiles'?: ($wrapper.wix.api.IServiceAppendix[] | null);
|
|
2608
2643
|
'.wix.api.event'?: ($wrapper.wix.api.ICallback[] | null);
|
|
2609
2644
|
'.wix.api.eventDeprecated'?: ($wrapper.wix.api.ICallbackDeprecation[] | null);
|
|
2645
|
+
'.wix.api.domainEvent'?: ($wrapper.wix.api.IDomainEvent[] | null);
|
|
2610
2646
|
}
|
|
2611
2647
|
export class ServiceOptions implements IServiceOptions {
|
|
2612
2648
|
constructor(data?: IServiceOptions);
|
|
@@ -2619,6 +2655,7 @@ declare namespace $wrapper {
|
|
|
2619
2655
|
'.wix.api.appendixFiles'?: ($wrapper.wix.api.IServiceAppendix[] | null);
|
|
2620
2656
|
'.wix.api.event'?: ($wrapper.wix.api.ICallback[] | null);
|
|
2621
2657
|
'.wix.api.eventDeprecated'?: ($wrapper.wix.api.ICallbackDeprecation[] | null);
|
|
2658
|
+
'.wix.api.domainEvent'?: ($wrapper.wix.api.IDomainEvent[] | null);
|
|
2622
2659
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2623
2660
|
}
|
|
2624
2661
|
export interface IMethodOptions {
|
|
@@ -2633,6 +2670,7 @@ declare namespace $wrapper {
|
|
|
2633
2670
|
'.wix.api.hookable'?: ($wrapper.wix.api.IHookable | null);
|
|
2634
2671
|
'.wix.api.acceptsLinguist'?: (boolean | null);
|
|
2635
2672
|
'.wix.api.callback'?: ($wrapper.wix.api.ICallback[] | null);
|
|
2673
|
+
'.wix.api.emits'?: ($wrapper.wix.api.IEmits[] | null);
|
|
2636
2674
|
'.wix.api.required'?: (string[] | null);
|
|
2637
2675
|
'.wix.api.writable'?: (string[] | null);
|
|
2638
2676
|
'.wix.api.error'?: ($wrapper.wix.api.IError[] | null);
|
|
@@ -2654,6 +2692,7 @@ declare namespace $wrapper {
|
|
|
2654
2692
|
'.wix.api.hookable'?: ($wrapper.wix.api.IHookable | null);
|
|
2655
2693
|
'.wix.api.acceptsLinguist'?: (boolean | null);
|
|
2656
2694
|
'.wix.api.callback'?: ($wrapper.wix.api.ICallback[] | null);
|
|
2695
|
+
'.wix.api.emits'?: ($wrapper.wix.api.IEmits[] | null);
|
|
2657
2696
|
'.wix.api.required'?: (string[] | null);
|
|
2658
2697
|
'.wix.api.writable'?: (string[] | null);
|
|
2659
2698
|
'.wix.api.error'?: ($wrapper.wix.api.IError[] | null);
|