@wix/metro-common-builders 1.0.1382 → 1.0.1383
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 +386 -10
- package/dist/es/src/proto/index.d.ts +189 -5
- package/dist/es/src/proto/index.js +2229 -32
- package/dist/es/src/proto/server/index.d.ts +384 -10
- package/dist/src/proto/client/index.d.ts +386 -10
- package/dist/src/proto/index.d.ts +189 -5
- package/dist/src/proto/index.js +2229 -32
- package/dist/src/proto/server/index.d.ts +384 -10
- package/package.json +5 -5
|
@@ -108,6 +108,7 @@ declare namespace $requests {
|
|
|
108
108
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
109
109
|
containsPii?: boolean;
|
|
110
110
|
segment?: $requests.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
111
|
+
domainEventsSettings?: $requests.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
111
112
|
}
|
|
112
113
|
export class EntityInfo implements IEntityInfo {
|
|
113
114
|
constructor(data?: IEntityInfo);
|
|
@@ -134,6 +135,15 @@ declare namespace $requests {
|
|
|
134
135
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
135
136
|
containsPii?: boolean;
|
|
136
137
|
segment?: $requests.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
138
|
+
domainEventsSettings?: $requests.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
139
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
140
|
+
}
|
|
141
|
+
export interface IDomainEventsSettings {
|
|
142
|
+
deletedIncludeEntity?: boolean;
|
|
143
|
+
}
|
|
144
|
+
export class DomainEventsSettings implements IDomainEventsSettings {
|
|
145
|
+
constructor(data?: IDomainEventsSettings);
|
|
146
|
+
deletedIncludeEntity?: boolean;
|
|
137
147
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
138
148
|
}
|
|
139
149
|
export interface IExtensible {
|
|
@@ -1039,6 +1049,51 @@ declare namespace $requests {
|
|
|
1039
1049
|
custom?: { [k: string]: string };
|
|
1040
1050
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1041
1051
|
}
|
|
1052
|
+
export namespace internal {
|
|
1053
|
+
export enum TargetType {
|
|
1054
|
+
NONE = "NONE",
|
|
1055
|
+
WIX_PROTO_BUNDLE_EXPORT = "WIX_PROTO_BUNDLE_EXPORT",
|
|
1056
|
+
WIX_API_REGISTRY_INFO_EXPORT = "WIX_API_REGISTRY_INFO_EXPORT",
|
|
1057
|
+
}
|
|
1058
|
+
export interface ITarget {
|
|
1059
|
+
id?: string;
|
|
1060
|
+
location?: string;
|
|
1061
|
+
combinedDigest?: string;
|
|
1062
|
+
commitTimestamp?: (number | string);
|
|
1063
|
+
type?: $requests.wix.coreservices.businessschema.v1.internal.TargetType;
|
|
1064
|
+
}
|
|
1065
|
+
export class Target implements ITarget {
|
|
1066
|
+
constructor(data?: ITarget);
|
|
1067
|
+
id?: string;
|
|
1068
|
+
location?: string;
|
|
1069
|
+
combinedDigest?: string;
|
|
1070
|
+
commitTimestamp?: (number | string);
|
|
1071
|
+
type?: $requests.wix.coreservices.businessschema.v1.internal.TargetType;
|
|
1072
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1073
|
+
}
|
|
1074
|
+
export interface IMarkTargetAsProcessedRequest {
|
|
1075
|
+
target?: $requests.wix.coreservices.businessschema.v1.internal.ITarget;
|
|
1076
|
+
}
|
|
1077
|
+
export class MarkTargetAsProcessedRequest implements IMarkTargetAsProcessedRequest {
|
|
1078
|
+
constructor(data?: IMarkTargetAsProcessedRequest);
|
|
1079
|
+
target?: $requests.wix.coreservices.businessschema.v1.internal.ITarget;
|
|
1080
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1081
|
+
}
|
|
1082
|
+
export interface IMarkTargetAsProcessedResponse {
|
|
1083
|
+
}
|
|
1084
|
+
export class MarkTargetAsProcessedResponse implements IMarkTargetAsProcessedResponse {
|
|
1085
|
+
constructor(data?: IMarkTargetAsProcessedResponse);
|
|
1086
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1087
|
+
}
|
|
1088
|
+
export interface IUnprocessedTargetEvent {
|
|
1089
|
+
target?: $requests.wix.coreservices.businessschema.v1.internal.ITarget;
|
|
1090
|
+
}
|
|
1091
|
+
export class UnprocessedTargetEvent implements IUnprocessedTargetEvent {
|
|
1092
|
+
constructor(data?: IUnprocessedTargetEvent);
|
|
1093
|
+
target?: $requests.wix.coreservices.businessschema.v1.internal.ITarget;
|
|
1094
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1042
1097
|
export interface IDeleteServiceDocumentRequest {
|
|
1043
1098
|
protoServiceFqn?: string;
|
|
1044
1099
|
}
|
|
@@ -2084,12 +2139,34 @@ declare namespace $requests {
|
|
|
2084
2139
|
FAILED_PRECONDITION = "FAILED_PRECONDITION",
|
|
2085
2140
|
}
|
|
2086
2141
|
}
|
|
2087
|
-
export interface
|
|
2088
|
-
|
|
2142
|
+
export interface IPermissionRule {
|
|
2143
|
+
name?: string;
|
|
2144
|
+
type?: $requests.wix.api.PermissionType;
|
|
2089
2145
|
}
|
|
2090
|
-
export class
|
|
2091
|
-
constructor(data?:
|
|
2092
|
-
|
|
2146
|
+
export class PermissionRule implements IPermissionRule {
|
|
2147
|
+
constructor(data?: IPermissionRule);
|
|
2148
|
+
name?: string;
|
|
2149
|
+
type?: $requests.wix.api.PermissionType;
|
|
2150
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2151
|
+
}
|
|
2152
|
+
export enum PermissionType {
|
|
2153
|
+
AUTO = "AUTO",
|
|
2154
|
+
MANUAL = "MANUAL",
|
|
2155
|
+
}
|
|
2156
|
+
export interface ISubscription {
|
|
2157
|
+
topic?: string;
|
|
2158
|
+
segment?: $requests.wix.api.Segment.SegmentName;
|
|
2159
|
+
batch?: boolean;
|
|
2160
|
+
entity?: string;
|
|
2161
|
+
dynamic?: boolean;
|
|
2162
|
+
}
|
|
2163
|
+
export class Subscription implements ISubscription {
|
|
2164
|
+
constructor(data?: ISubscription);
|
|
2165
|
+
topic?: string;
|
|
2166
|
+
segment?: $requests.wix.api.Segment.SegmentName;
|
|
2167
|
+
batch?: boolean;
|
|
2168
|
+
entity?: string;
|
|
2169
|
+
dynamic?: boolean;
|
|
2093
2170
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2094
2171
|
}
|
|
2095
2172
|
export interface IActionPayload {
|
|
@@ -2100,6 +2177,14 @@ declare namespace $requests {
|
|
|
2100
2177
|
customSlug?: string;
|
|
2101
2178
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2102
2179
|
}
|
|
2180
|
+
export interface ISla {
|
|
2181
|
+
responseTimeMs?: number;
|
|
2182
|
+
}
|
|
2183
|
+
export class Sla implements ISla {
|
|
2184
|
+
constructor(data?: ISla);
|
|
2185
|
+
responseTimeMs?: number;
|
|
2186
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2187
|
+
}
|
|
2103
2188
|
}
|
|
2104
2189
|
export namespace common {
|
|
2105
2190
|
export interface IQuery {
|
|
@@ -2715,6 +2800,82 @@ declare namespace $requests {
|
|
|
2715
2800
|
}
|
|
2716
2801
|
}
|
|
2717
2802
|
}
|
|
2803
|
+
export namespace com {
|
|
2804
|
+
export namespace wixpress {
|
|
2805
|
+
export namespace ci {
|
|
2806
|
+
export namespace gh {
|
|
2807
|
+
export namespace api {
|
|
2808
|
+
export interface IBazelBuildInvocationEvent {
|
|
2809
|
+
buildId?: string;
|
|
2810
|
+
invocationId?: string;
|
|
2811
|
+
gcbBuildIdentifier?: $requests.com.wixpress.ci.gh.api.IGcbBuildIdentifier;
|
|
2812
|
+
buildkiteBuildIdentifier?: $requests.com.wixpress.ci.gh.api.IBuildKiteBuildIdentifier;
|
|
2813
|
+
invocationStatus?: $requests.com.wixpress.ci.gh.api.BazelBuildInvocationEvent.BuildStatus;
|
|
2814
|
+
repoUrl?: string;
|
|
2815
|
+
revision?: string;
|
|
2816
|
+
pushTimeInSeconds?: (number | string);
|
|
2817
|
+
maxPushTimeInSeconds?: (number | string);
|
|
2818
|
+
triggeredBy?: $requests.com.wixpress.ci.gh.api.ITriggeredBy;
|
|
2819
|
+
}
|
|
2820
|
+
export class BazelBuildInvocationEvent implements IBazelBuildInvocationEvent {
|
|
2821
|
+
constructor(data?: IBazelBuildInvocationEvent);
|
|
2822
|
+
buildId?: string;
|
|
2823
|
+
invocationId?: string;
|
|
2824
|
+
gcbBuildIdentifier?: $requests.com.wixpress.ci.gh.api.IGcbBuildIdentifier;
|
|
2825
|
+
buildkiteBuildIdentifier?: $requests.com.wixpress.ci.gh.api.IBuildKiteBuildIdentifier;
|
|
2826
|
+
invocationStatus?: $requests.com.wixpress.ci.gh.api.BazelBuildInvocationEvent.BuildStatus;
|
|
2827
|
+
repoUrl?: string;
|
|
2828
|
+
revision?: string;
|
|
2829
|
+
pushTimeInSeconds?: (number | string);
|
|
2830
|
+
maxPushTimeInSeconds?: (number | string);
|
|
2831
|
+
triggeredBy?: $requests.com.wixpress.ci.gh.api.ITriggeredBy;
|
|
2832
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2833
|
+
}
|
|
2834
|
+
export namespace BazelBuildInvocationEvent {
|
|
2835
|
+
export enum BuildStatus {
|
|
2836
|
+
QUEUED = "QUEUED",
|
|
2837
|
+
WORKING = "WORKING",
|
|
2838
|
+
SUCCESS = "SUCCESS",
|
|
2839
|
+
FAILURE = "FAILURE",
|
|
2840
|
+
CANCELLED = "CANCELLED",
|
|
2841
|
+
INTERNAL_ERROR = "INTERNAL_ERROR",
|
|
2842
|
+
TIMEOUT = "TIMEOUT",
|
|
2843
|
+
STATUS_UNKNOWN = "STATUS_UNKNOWN",
|
|
2844
|
+
}
|
|
2845
|
+
}
|
|
2846
|
+
export interface ITriggeredBy {
|
|
2847
|
+
repoUrl?: string;
|
|
2848
|
+
commitHash?: string;
|
|
2849
|
+
}
|
|
2850
|
+
export class TriggeredBy implements ITriggeredBy {
|
|
2851
|
+
constructor(data?: ITriggeredBy);
|
|
2852
|
+
repoUrl?: string;
|
|
2853
|
+
commitHash?: string;
|
|
2854
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2855
|
+
}
|
|
2856
|
+
export interface IGcbBuildIdentifier {
|
|
2857
|
+
}
|
|
2858
|
+
export class GcbBuildIdentifier implements IGcbBuildIdentifier {
|
|
2859
|
+
constructor(data?: IGcbBuildIdentifier);
|
|
2860
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2861
|
+
}
|
|
2862
|
+
export interface IBuildKiteBuildIdentifier {
|
|
2863
|
+
orgSlug?: string;
|
|
2864
|
+
pipelineSlug?: string;
|
|
2865
|
+
buildNumber?: string;
|
|
2866
|
+
}
|
|
2867
|
+
export class BuildKiteBuildIdentifier implements IBuildKiteBuildIdentifier {
|
|
2868
|
+
constructor(data?: IBuildKiteBuildIdentifier);
|
|
2869
|
+
orgSlug?: string;
|
|
2870
|
+
pipelineSlug?: string;
|
|
2871
|
+
buildNumber?: string;
|
|
2872
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2873
|
+
}
|
|
2874
|
+
}
|
|
2875
|
+
}
|
|
2876
|
+
}
|
|
2877
|
+
}
|
|
2878
|
+
}
|
|
2718
2879
|
export namespace google {
|
|
2719
2880
|
export namespace protobuf {
|
|
2720
2881
|
export interface IFileDescriptorSet {
|
|
@@ -3186,6 +3347,9 @@ declare namespace $requests {
|
|
|
3186
3347
|
'.wix.api.error'?: $requests.wix.api.IError[];
|
|
3187
3348
|
'.wix.api.customValidationError'?: $requests.wix.api.ICustomValidationError[];
|
|
3188
3349
|
'.wix.api.inheritCrudErrors'?: $requests.wix.api.IInheritCrudErrors[];
|
|
3350
|
+
'.wix.api.permission'?: $requests.wix.api.IPermissionRule;
|
|
3351
|
+
'.wix.api.additionalPermission'?: $requests.wix.api.IPermissionRule[];
|
|
3352
|
+
'.wix.api.subscription'?: $requests.wix.api.ISubscription;
|
|
3189
3353
|
'.google.api.http'?: $requests.google.api.IHttpRule;
|
|
3190
3354
|
'.wix.api.sla'?: $requests.wix.api.ISla;
|
|
3191
3355
|
}
|
|
@@ -3207,6 +3371,9 @@ declare namespace $requests {
|
|
|
3207
3371
|
'.wix.api.error'?: $requests.wix.api.IError[];
|
|
3208
3372
|
'.wix.api.customValidationError'?: $requests.wix.api.ICustomValidationError[];
|
|
3209
3373
|
'.wix.api.inheritCrudErrors'?: $requests.wix.api.IInheritCrudErrors[];
|
|
3374
|
+
'.wix.api.permission'?: $requests.wix.api.IPermissionRule;
|
|
3375
|
+
'.wix.api.additionalPermission'?: $requests.wix.api.IPermissionRule[];
|
|
3376
|
+
'.wix.api.subscription'?: $requests.wix.api.ISubscription;
|
|
3210
3377
|
'.google.api.http'?: $requests.google.api.IHttpRule;
|
|
3211
3378
|
'.wix.api.sla'?: $requests.wix.api.ISla;
|
|
3212
3379
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
@@ -3300,6 +3467,17 @@ declare namespace $requests {
|
|
|
3300
3467
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3301
3468
|
}
|
|
3302
3469
|
}
|
|
3470
|
+
export interface Any {
|
|
3471
|
+
readonly typeUrl: string;
|
|
3472
|
+
readonly typeName: string;
|
|
3473
|
+
is(ctor: $$GeneratedMessage$$<any>): boolean;
|
|
3474
|
+
unpack<S>(ctor: $$GeneratedMessage$$<S>): S;
|
|
3475
|
+
}
|
|
3476
|
+
export namespace Any {
|
|
3477
|
+
export function pack<S>(ctor: $$GeneratedMessage$$<S>, value: S): $requests.google.protobuf.Any;
|
|
3478
|
+
export function isAny(instance: object): boolean;
|
|
3479
|
+
export function typeUrl(ctor: $$GeneratedMessage$$<any>): string;
|
|
3480
|
+
}
|
|
3303
3481
|
}
|
|
3304
3482
|
export namespace api {
|
|
3305
3483
|
export interface IHttp {
|
|
@@ -3452,6 +3630,7 @@ declare namespace $responses {
|
|
|
3452
3630
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3453
3631
|
containsPii: boolean;
|
|
3454
3632
|
segment: $responses.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
3633
|
+
domainEventsSettings?: $responses.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
3455
3634
|
}
|
|
3456
3635
|
export class EntityInfo implements IEntityInfo {
|
|
3457
3636
|
constructor(data?: IEntityInfo);
|
|
@@ -3478,6 +3657,15 @@ declare namespace $responses {
|
|
|
3478
3657
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3479
3658
|
containsPii: boolean;
|
|
3480
3659
|
segment: $responses.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
3660
|
+
domainEventsSettings?: $responses.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
3661
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3662
|
+
}
|
|
3663
|
+
export interface IDomainEventsSettings {
|
|
3664
|
+
deletedIncludeEntity?: boolean;
|
|
3665
|
+
}
|
|
3666
|
+
export class DomainEventsSettings implements IDomainEventsSettings {
|
|
3667
|
+
constructor(data?: IDomainEventsSettings);
|
|
3668
|
+
deletedIncludeEntity?: boolean;
|
|
3481
3669
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3482
3670
|
}
|
|
3483
3671
|
export interface IExtensible {
|
|
@@ -4383,6 +4571,51 @@ declare namespace $responses {
|
|
|
4383
4571
|
custom?: { [k: string]: string };
|
|
4384
4572
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4385
4573
|
}
|
|
4574
|
+
export namespace internal {
|
|
4575
|
+
export enum TargetType {
|
|
4576
|
+
NONE = "NONE",
|
|
4577
|
+
WIX_PROTO_BUNDLE_EXPORT = "WIX_PROTO_BUNDLE_EXPORT",
|
|
4578
|
+
WIX_API_REGISTRY_INFO_EXPORT = "WIX_API_REGISTRY_INFO_EXPORT",
|
|
4579
|
+
}
|
|
4580
|
+
export interface ITarget {
|
|
4581
|
+
id?: string;
|
|
4582
|
+
location?: string;
|
|
4583
|
+
combinedDigest?: string;
|
|
4584
|
+
commitTimestamp: (number | string);
|
|
4585
|
+
type: $responses.wix.coreservices.businessschema.v1.internal.TargetType;
|
|
4586
|
+
}
|
|
4587
|
+
export class Target implements ITarget {
|
|
4588
|
+
constructor(data?: ITarget);
|
|
4589
|
+
id?: string;
|
|
4590
|
+
location?: string;
|
|
4591
|
+
combinedDigest?: string;
|
|
4592
|
+
commitTimestamp: (number | string);
|
|
4593
|
+
type: $responses.wix.coreservices.businessschema.v1.internal.TargetType;
|
|
4594
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4595
|
+
}
|
|
4596
|
+
export interface IMarkTargetAsProcessedRequest {
|
|
4597
|
+
target?: $responses.wix.coreservices.businessschema.v1.internal.ITarget;
|
|
4598
|
+
}
|
|
4599
|
+
export class MarkTargetAsProcessedRequest implements IMarkTargetAsProcessedRequest {
|
|
4600
|
+
constructor(data?: IMarkTargetAsProcessedRequest);
|
|
4601
|
+
target?: $responses.wix.coreservices.businessschema.v1.internal.ITarget;
|
|
4602
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4603
|
+
}
|
|
4604
|
+
export interface IMarkTargetAsProcessedResponse {
|
|
4605
|
+
}
|
|
4606
|
+
export class MarkTargetAsProcessedResponse implements IMarkTargetAsProcessedResponse {
|
|
4607
|
+
constructor(data?: IMarkTargetAsProcessedResponse);
|
|
4608
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4609
|
+
}
|
|
4610
|
+
export interface IUnprocessedTargetEvent {
|
|
4611
|
+
target?: $responses.wix.coreservices.businessschema.v1.internal.ITarget;
|
|
4612
|
+
}
|
|
4613
|
+
export class UnprocessedTargetEvent implements IUnprocessedTargetEvent {
|
|
4614
|
+
constructor(data?: IUnprocessedTargetEvent);
|
|
4615
|
+
target?: $responses.wix.coreservices.businessschema.v1.internal.ITarget;
|
|
4616
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4617
|
+
}
|
|
4618
|
+
}
|
|
4386
4619
|
export interface IDeleteServiceDocumentRequest {
|
|
4387
4620
|
protoServiceFqn: string;
|
|
4388
4621
|
}
|
|
@@ -5428,12 +5661,34 @@ declare namespace $responses {
|
|
|
5428
5661
|
FAILED_PRECONDITION = "FAILED_PRECONDITION",
|
|
5429
5662
|
}
|
|
5430
5663
|
}
|
|
5431
|
-
export interface
|
|
5432
|
-
|
|
5664
|
+
export interface IPermissionRule {
|
|
5665
|
+
name: string;
|
|
5666
|
+
type: $responses.wix.api.PermissionType;
|
|
5433
5667
|
}
|
|
5434
|
-
export class
|
|
5435
|
-
constructor(data?:
|
|
5436
|
-
|
|
5668
|
+
export class PermissionRule implements IPermissionRule {
|
|
5669
|
+
constructor(data?: IPermissionRule);
|
|
5670
|
+
name: string;
|
|
5671
|
+
type: $responses.wix.api.PermissionType;
|
|
5672
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5673
|
+
}
|
|
5674
|
+
export enum PermissionType {
|
|
5675
|
+
AUTO = "AUTO",
|
|
5676
|
+
MANUAL = "MANUAL",
|
|
5677
|
+
}
|
|
5678
|
+
export interface ISubscription {
|
|
5679
|
+
topic: string;
|
|
5680
|
+
segment: $responses.wix.api.Segment.SegmentName;
|
|
5681
|
+
batch: boolean;
|
|
5682
|
+
entity: string;
|
|
5683
|
+
dynamic: boolean;
|
|
5684
|
+
}
|
|
5685
|
+
export class Subscription implements ISubscription {
|
|
5686
|
+
constructor(data?: ISubscription);
|
|
5687
|
+
topic: string;
|
|
5688
|
+
segment: $responses.wix.api.Segment.SegmentName;
|
|
5689
|
+
batch: boolean;
|
|
5690
|
+
entity: string;
|
|
5691
|
+
dynamic: boolean;
|
|
5437
5692
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5438
5693
|
}
|
|
5439
5694
|
export interface IActionPayload {
|
|
@@ -5444,6 +5699,14 @@ declare namespace $responses {
|
|
|
5444
5699
|
customSlug: string;
|
|
5445
5700
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5446
5701
|
}
|
|
5702
|
+
export interface ISla {
|
|
5703
|
+
responseTimeMs: number;
|
|
5704
|
+
}
|
|
5705
|
+
export class Sla implements ISla {
|
|
5706
|
+
constructor(data?: ISla);
|
|
5707
|
+
responseTimeMs: number;
|
|
5708
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5709
|
+
}
|
|
5447
5710
|
}
|
|
5448
5711
|
export namespace common {
|
|
5449
5712
|
export interface IQuery {
|
|
@@ -6059,6 +6322,82 @@ declare namespace $responses {
|
|
|
6059
6322
|
}
|
|
6060
6323
|
}
|
|
6061
6324
|
}
|
|
6325
|
+
export namespace com {
|
|
6326
|
+
export namespace wixpress {
|
|
6327
|
+
export namespace ci {
|
|
6328
|
+
export namespace gh {
|
|
6329
|
+
export namespace api {
|
|
6330
|
+
export interface IBazelBuildInvocationEvent {
|
|
6331
|
+
buildId: string;
|
|
6332
|
+
invocationId: string;
|
|
6333
|
+
gcbBuildIdentifier?: $responses.com.wixpress.ci.gh.api.IGcbBuildIdentifier;
|
|
6334
|
+
buildkiteBuildIdentifier?: $responses.com.wixpress.ci.gh.api.IBuildKiteBuildIdentifier;
|
|
6335
|
+
invocationStatus: $responses.com.wixpress.ci.gh.api.BazelBuildInvocationEvent.BuildStatus;
|
|
6336
|
+
repoUrl: string;
|
|
6337
|
+
revision: string;
|
|
6338
|
+
pushTimeInSeconds: (number | string);
|
|
6339
|
+
maxPushTimeInSeconds: (number | string);
|
|
6340
|
+
triggeredBy?: $responses.com.wixpress.ci.gh.api.ITriggeredBy;
|
|
6341
|
+
}
|
|
6342
|
+
export class BazelBuildInvocationEvent implements IBazelBuildInvocationEvent {
|
|
6343
|
+
constructor(data?: IBazelBuildInvocationEvent);
|
|
6344
|
+
buildId: string;
|
|
6345
|
+
invocationId: string;
|
|
6346
|
+
gcbBuildIdentifier?: $responses.com.wixpress.ci.gh.api.IGcbBuildIdentifier;
|
|
6347
|
+
buildkiteBuildIdentifier?: $responses.com.wixpress.ci.gh.api.IBuildKiteBuildIdentifier;
|
|
6348
|
+
invocationStatus: $responses.com.wixpress.ci.gh.api.BazelBuildInvocationEvent.BuildStatus;
|
|
6349
|
+
repoUrl: string;
|
|
6350
|
+
revision: string;
|
|
6351
|
+
pushTimeInSeconds: (number | string);
|
|
6352
|
+
maxPushTimeInSeconds: (number | string);
|
|
6353
|
+
triggeredBy?: $responses.com.wixpress.ci.gh.api.ITriggeredBy;
|
|
6354
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6355
|
+
}
|
|
6356
|
+
export namespace BazelBuildInvocationEvent {
|
|
6357
|
+
export enum BuildStatus {
|
|
6358
|
+
QUEUED = "QUEUED",
|
|
6359
|
+
WORKING = "WORKING",
|
|
6360
|
+
SUCCESS = "SUCCESS",
|
|
6361
|
+
FAILURE = "FAILURE",
|
|
6362
|
+
CANCELLED = "CANCELLED",
|
|
6363
|
+
INTERNAL_ERROR = "INTERNAL_ERROR",
|
|
6364
|
+
TIMEOUT = "TIMEOUT",
|
|
6365
|
+
STATUS_UNKNOWN = "STATUS_UNKNOWN",
|
|
6366
|
+
}
|
|
6367
|
+
}
|
|
6368
|
+
export interface ITriggeredBy {
|
|
6369
|
+
repoUrl: string;
|
|
6370
|
+
commitHash: string;
|
|
6371
|
+
}
|
|
6372
|
+
export class TriggeredBy implements ITriggeredBy {
|
|
6373
|
+
constructor(data?: ITriggeredBy);
|
|
6374
|
+
repoUrl: string;
|
|
6375
|
+
commitHash: string;
|
|
6376
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6377
|
+
}
|
|
6378
|
+
export interface IGcbBuildIdentifier {
|
|
6379
|
+
}
|
|
6380
|
+
export class GcbBuildIdentifier implements IGcbBuildIdentifier {
|
|
6381
|
+
constructor(data?: IGcbBuildIdentifier);
|
|
6382
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6383
|
+
}
|
|
6384
|
+
export interface IBuildKiteBuildIdentifier {
|
|
6385
|
+
orgSlug: string;
|
|
6386
|
+
pipelineSlug: string;
|
|
6387
|
+
buildNumber: string;
|
|
6388
|
+
}
|
|
6389
|
+
export class BuildKiteBuildIdentifier implements IBuildKiteBuildIdentifier {
|
|
6390
|
+
constructor(data?: IBuildKiteBuildIdentifier);
|
|
6391
|
+
orgSlug: string;
|
|
6392
|
+
pipelineSlug: string;
|
|
6393
|
+
buildNumber: string;
|
|
6394
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6395
|
+
}
|
|
6396
|
+
}
|
|
6397
|
+
}
|
|
6398
|
+
}
|
|
6399
|
+
}
|
|
6400
|
+
}
|
|
6062
6401
|
export namespace google {
|
|
6063
6402
|
export namespace protobuf {
|
|
6064
6403
|
export interface IFileDescriptorSet {
|
|
@@ -6530,6 +6869,9 @@ declare namespace $responses {
|
|
|
6530
6869
|
'.wix.api.error': $responses.wix.api.IError[];
|
|
6531
6870
|
'.wix.api.customValidationError': $responses.wix.api.ICustomValidationError[];
|
|
6532
6871
|
'.wix.api.inheritCrudErrors': $responses.wix.api.IInheritCrudErrors[];
|
|
6872
|
+
'.wix.api.permission'?: $responses.wix.api.IPermissionRule;
|
|
6873
|
+
'.wix.api.additionalPermission': $responses.wix.api.IPermissionRule[];
|
|
6874
|
+
'.wix.api.subscription'?: $responses.wix.api.ISubscription;
|
|
6533
6875
|
'.google.api.http'?: $responses.google.api.IHttpRule;
|
|
6534
6876
|
'.wix.api.sla'?: $responses.wix.api.ISla;
|
|
6535
6877
|
}
|
|
@@ -6551,6 +6893,9 @@ declare namespace $responses {
|
|
|
6551
6893
|
'.wix.api.error': $responses.wix.api.IError[];
|
|
6552
6894
|
'.wix.api.customValidationError': $responses.wix.api.ICustomValidationError[];
|
|
6553
6895
|
'.wix.api.inheritCrudErrors': $responses.wix.api.IInheritCrudErrors[];
|
|
6896
|
+
'.wix.api.permission'?: $responses.wix.api.IPermissionRule;
|
|
6897
|
+
'.wix.api.additionalPermission': $responses.wix.api.IPermissionRule[];
|
|
6898
|
+
'.wix.api.subscription'?: $responses.wix.api.ISubscription;
|
|
6554
6899
|
'.google.api.http'?: $responses.google.api.IHttpRule;
|
|
6555
6900
|
'.wix.api.sla'?: $responses.wix.api.ISla;
|
|
6556
6901
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
@@ -6644,6 +6989,17 @@ declare namespace $responses {
|
|
|
6644
6989
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6645
6990
|
}
|
|
6646
6991
|
}
|
|
6992
|
+
export interface Any {
|
|
6993
|
+
readonly typeUrl: string;
|
|
6994
|
+
readonly typeName: string;
|
|
6995
|
+
is(ctor: $$GeneratedMessage$$<any>): boolean;
|
|
6996
|
+
unpack<S>(ctor: $$GeneratedMessage$$<S>): S;
|
|
6997
|
+
}
|
|
6998
|
+
export namespace Any {
|
|
6999
|
+
export function pack<S>(ctor: $$GeneratedMessage$$<S>, value: S): $responses.google.protobuf.Any;
|
|
7000
|
+
export function isAny(instance: object): boolean;
|
|
7001
|
+
export function typeUrl(ctor: $$GeneratedMessage$$<any>): string;
|
|
7002
|
+
}
|
|
6647
7003
|
}
|
|
6648
7004
|
export namespace api {
|
|
6649
7005
|
export interface IHttp {
|
|
@@ -6698,6 +7054,14 @@ declare namespace $services {
|
|
|
6698
7054
|
export namespace coreservices {
|
|
6699
7055
|
export namespace businessschema {
|
|
6700
7056
|
export namespace v1 {
|
|
7057
|
+
export namespace internal {
|
|
7058
|
+
export abstract class BusinessSchemaIndexerService {
|
|
7059
|
+
abstract markTargetAsProcessed(aspects: object, req: $requests.wix.coreservices.businessschema.v1.internal.IMarkTargetAsProcessedRequest): Promise<$responses.wix.coreservices.businessschema.v1.internal.IMarkTargetAsProcessedResponse>
|
|
7060
|
+
abstract markTargetAsProcessed(req: $requests.wix.coreservices.businessschema.v1.internal.IMarkTargetAsProcessedRequest): Promise<$responses.wix.coreservices.businessschema.v1.internal.IMarkTargetAsProcessedResponse>
|
|
7061
|
+
abstract consumeBazelInvocationEvent(aspects: object, req: $requests.com.wixpress.ci.gh.api.IBazelBuildInvocationEvent): Promise<{}>
|
|
7062
|
+
abstract consumeBazelInvocationEvent(req: $requests.com.wixpress.ci.gh.api.IBazelBuildInvocationEvent): Promise<{}>
|
|
7063
|
+
}
|
|
7064
|
+
}
|
|
6701
7065
|
export abstract class ManagementService {
|
|
6702
7066
|
abstract deleteServiceDocument(aspects: object, req: $requests.wix.coreservices.businessschema.v1.IDeleteServiceDocumentRequest): Promise<$responses.wix.coreservices.businessschema.v1.IDeleteServiceDocumentResponse>
|
|
6703
7067
|
abstract deleteServiceDocument(req: $requests.wix.coreservices.businessschema.v1.IDeleteServiceDocumentRequest): Promise<$responses.wix.coreservices.businessschema.v1.IDeleteServiceDocumentResponse>
|
|
@@ -6728,5 +7092,17 @@ declare namespace $services {
|
|
|
6728
7092
|
}
|
|
6729
7093
|
}
|
|
6730
7094
|
}
|
|
7095
|
+
export namespace com {
|
|
7096
|
+
export namespace wixpress {
|
|
7097
|
+
export namespace ci {
|
|
7098
|
+
export namespace gh {
|
|
7099
|
+
export namespace api {
|
|
7100
|
+
export abstract class GcbEventsService {
|
|
7101
|
+
}
|
|
7102
|
+
}
|
|
7103
|
+
}
|
|
7104
|
+
}
|
|
7105
|
+
}
|
|
7106
|
+
}
|
|
6731
7107
|
}
|
|
6732
7108
|
export {$services as services};
|