@wix/metro-common-builders 1.0.1766 → 1.0.1767

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.
@@ -78,6 +78,7 @@ declare namespace $requests {
78
78
  TENANCY_TYPE_ACCOUNT = "TENANCY_TYPE_ACCOUNT",
79
79
  TENANCY_TYPE_ORGANIZATION = "TENANCY_TYPE_ORGANIZATION",
80
80
  TENANCY_TYPE_CUSTOM = "TENANCY_TYPE_CUSTOM",
81
+ TENANCY_TYPE_INSTANCE = "TENANCY_TYPE_INSTANCE",
81
82
  }
82
83
  }
83
84
  /**
@@ -129,7 +130,7 @@ declare namespace $requests {
129
130
  APPS_ACCESS_UNSPECIFIED = "APPS_ACCESS_UNSPECIFIED",
130
131
  APPS_ACCESS_NOT_ALLOWED = "APPS_ACCESS_NOT_ALLOWED",
131
132
  APPS_ACCESS_WIX_APPS_ONLY = "APPS_ACCESS_WIX_APPS_ONLY",
132
- APPS_ACCESS_ALL_APPS = "APPS_ACCESS_ALL_APPS",
133
+ APPS_ACCESS_WIX_AND_PUBLIC_APPS = "APPS_ACCESS_WIX_AND_PUBLIC_APPS",
133
134
  }
134
135
  }
135
136
  export interface IUsers {
@@ -144,7 +145,7 @@ declare namespace $requests {
144
145
  export enum Access {
145
146
  USERS_ACCESS_UNSPECIFIED = "USERS_ACCESS_UNSPECIFIED",
146
147
  USERS_ACCESS_NOT_ALLOWED = "USERS_ACCESS_NOT_ALLOWED",
147
- USERS_ACCESS_ALL_USERS = "USERS_ACCESS_ALL_USERS",
148
+ USERS_ACCESS_ALLOWED = "USERS_ACCESS_ALLOWED",
148
149
  }
149
150
  }
150
151
  export interface IBoUsers {
@@ -523,6 +524,7 @@ declare namespace $requests {
523
524
  permissionsInfo?: $requests.wix.coreservices.businessschema.v1.IPermissionInfo[];
524
525
  tenancyOptions?: $requests.wix.coreservices.businessschema.v1.ITenancyOptions;
525
526
  audience?: $requests.wix.coreservices.businessschema.v1.IAudience;
527
+ readOperation?: boolean;
526
528
  }
527
529
  export class Action implements IAction {
528
530
  constructor(data?: IAction);
@@ -550,6 +552,7 @@ declare namespace $requests {
550
552
  permissionsInfo?: $requests.wix.coreservices.businessschema.v1.IPermissionInfo[];
551
553
  tenancyOptions?: $requests.wix.coreservices.businessschema.v1.ITenancyOptions;
552
554
  audience?: $requests.wix.coreservices.businessschema.v1.IAudience;
555
+ readOperation?: boolean;
553
556
  static __$$generatedFromProtobuf$$__: Symbol;
554
557
  }
555
558
  export interface IPermissionInfo {
@@ -1298,6 +1301,7 @@ declare namespace $requests {
1298
1301
  grouping?: string;
1299
1302
  type?: $requests.wix.coreservices.businessschema.v1.Translatable.Type;
1300
1303
  displayOnly?: boolean;
1304
+ index?: number;
1301
1305
  }
1302
1306
  export class Translatable implements ITranslatable {
1303
1307
  constructor(data?: ITranslatable);
@@ -1306,6 +1310,7 @@ declare namespace $requests {
1306
1310
  grouping?: string;
1307
1311
  type?: $requests.wix.coreservices.businessschema.v1.Translatable.Type;
1308
1312
  displayOnly?: boolean;
1313
+ index?: number;
1309
1314
  static __$$generatedFromProtobuf$$__: Symbol;
1310
1315
  }
1311
1316
  export namespace Translatable {
@@ -3542,82 +3547,6 @@ declare namespace $requests {
3542
3547
  }
3543
3548
  }
3544
3549
  }
3545
- export namespace com {
3546
- export namespace wixpress {
3547
- export namespace ci {
3548
- export namespace gh {
3549
- export namespace api {
3550
- export interface IBazelBuildInvocationEvent {
3551
- buildId?: string;
3552
- invocationId?: string;
3553
- gcbBuildIdentifier?: $requests.com.wixpress.ci.gh.api.IGcbBuildIdentifier;
3554
- buildkiteBuildIdentifier?: $requests.com.wixpress.ci.gh.api.IBuildKiteBuildIdentifier;
3555
- invocationStatus?: $requests.com.wixpress.ci.gh.api.BazelBuildInvocationEvent.BuildStatus;
3556
- repoUrl?: string;
3557
- revision?: string;
3558
- pushTimeInSeconds?: (number | string);
3559
- maxPushTimeInSeconds?: (number | string);
3560
- triggeredBy?: $requests.com.wixpress.ci.gh.api.ITriggeredBy;
3561
- }
3562
- export class BazelBuildInvocationEvent implements IBazelBuildInvocationEvent {
3563
- constructor(data?: IBazelBuildInvocationEvent);
3564
- buildId?: string;
3565
- invocationId?: string;
3566
- gcbBuildIdentifier?: $requests.com.wixpress.ci.gh.api.IGcbBuildIdentifier;
3567
- buildkiteBuildIdentifier?: $requests.com.wixpress.ci.gh.api.IBuildKiteBuildIdentifier;
3568
- invocationStatus?: $requests.com.wixpress.ci.gh.api.BazelBuildInvocationEvent.BuildStatus;
3569
- repoUrl?: string;
3570
- revision?: string;
3571
- pushTimeInSeconds?: (number | string);
3572
- maxPushTimeInSeconds?: (number | string);
3573
- triggeredBy?: $requests.com.wixpress.ci.gh.api.ITriggeredBy;
3574
- static __$$generatedFromProtobuf$$__: Symbol;
3575
- }
3576
- export namespace BazelBuildInvocationEvent {
3577
- export enum BuildStatus {
3578
- QUEUED = "QUEUED",
3579
- WORKING = "WORKING",
3580
- SUCCESS = "SUCCESS",
3581
- FAILURE = "FAILURE",
3582
- CANCELLED = "CANCELLED",
3583
- INTERNAL_ERROR = "INTERNAL_ERROR",
3584
- TIMEOUT = "TIMEOUT",
3585
- STATUS_UNKNOWN = "STATUS_UNKNOWN",
3586
- }
3587
- }
3588
- export interface ITriggeredBy {
3589
- repoUrl?: string;
3590
- commitHash?: string;
3591
- }
3592
- export class TriggeredBy implements ITriggeredBy {
3593
- constructor(data?: ITriggeredBy);
3594
- repoUrl?: string;
3595
- commitHash?: string;
3596
- static __$$generatedFromProtobuf$$__: Symbol;
3597
- }
3598
- export interface IGcbBuildIdentifier {
3599
- }
3600
- export class GcbBuildIdentifier implements IGcbBuildIdentifier {
3601
- constructor(data?: IGcbBuildIdentifier);
3602
- static __$$generatedFromProtobuf$$__: Symbol;
3603
- }
3604
- export interface IBuildKiteBuildIdentifier {
3605
- orgSlug?: string;
3606
- pipelineSlug?: string;
3607
- buildNumber?: string;
3608
- }
3609
- export class BuildKiteBuildIdentifier implements IBuildKiteBuildIdentifier {
3610
- constructor(data?: IBuildKiteBuildIdentifier);
3611
- orgSlug?: string;
3612
- pipelineSlug?: string;
3613
- buildNumber?: string;
3614
- static __$$generatedFromProtobuf$$__: Symbol;
3615
- }
3616
- }
3617
- }
3618
- }
3619
- }
3620
- }
3621
3550
  export namespace google {
3622
3551
  export namespace protobuf {
3623
3552
  export interface IFileDescriptorSet {
@@ -4219,17 +4148,6 @@ declare namespace $requests {
4219
4148
  static __$$generatedFromProtobuf$$__: Symbol;
4220
4149
  }
4221
4150
  }
4222
- export interface Any {
4223
- readonly typeUrl: string;
4224
- readonly typeName: string;
4225
- is(ctor: $$GeneratedMessage$$<any>): boolean;
4226
- unpack<S>(ctor: $$GeneratedMessage$$<S>): S;
4227
- }
4228
- export namespace Any {
4229
- export function pack<S>(ctor: $$GeneratedMessage$$<S>, value: S): $requests.google.protobuf.Any;
4230
- export function isAny(instance: object): boolean;
4231
- export function typeUrl(ctor: $$GeneratedMessage$$<any>): string;
4232
- }
4233
4151
  }
4234
4152
  export namespace api {
4235
4153
  export interface IHttp {
@@ -4276,6 +4194,74 @@ declare namespace $requests {
4276
4194
  }
4277
4195
  }
4278
4196
  }
4197
+ export namespace com {
4198
+ export namespace wixpress {
4199
+ export namespace ci {
4200
+ export namespace commons {
4201
+ export namespace api {
4202
+ export interface IBazelBuildEvent {
4203
+ id?: string;
4204
+ buildId?: string;
4205
+ invocationId?: string;
4206
+ repoUrl?: string;
4207
+ branch?: string;
4208
+ commitHash?: string;
4209
+ prNumber?: number;
4210
+ commitAuthor?: string;
4211
+ state?: $requests.com.wixpress.ci.commons.api.BazelBuildEvent.BuildState;
4212
+ buildType?: $requests.com.wixpress.ci.commons.api.BazelBuildEvent.BuildType;
4213
+ commitTimestamp?: Date;
4214
+ startedAt?: Date;
4215
+ finishedAt?: Date;
4216
+ linkUrl?: string;
4217
+ pipeline?: string;
4218
+ metadata?: { [k: string]: string };
4219
+ buildNumber?: string;
4220
+ }
4221
+ export class BazelBuildEvent implements IBazelBuildEvent {
4222
+ constructor(data?: IBazelBuildEvent);
4223
+ id?: string;
4224
+ buildId?: string;
4225
+ invocationId?: string;
4226
+ repoUrl?: string;
4227
+ branch?: string;
4228
+ commitHash?: string;
4229
+ prNumber?: number;
4230
+ commitAuthor?: string;
4231
+ state?: $requests.com.wixpress.ci.commons.api.BazelBuildEvent.BuildState;
4232
+ buildType?: $requests.com.wixpress.ci.commons.api.BazelBuildEvent.BuildType;
4233
+ commitTimestamp?: Date;
4234
+ startedAt?: Date;
4235
+ finishedAt?: Date;
4236
+ linkUrl?: string;
4237
+ pipeline?: string;
4238
+ metadata?: { [k: string]: string };
4239
+ buildNumber?: string;
4240
+ static __$$generatedFromProtobuf$$__: Symbol;
4241
+ }
4242
+ export namespace BazelBuildEvent {
4243
+ export enum BuildState {
4244
+ UNKNOWN_BUILD_STATE = "UNKNOWN_BUILD_STATE",
4245
+ QUEUED = "QUEUED",
4246
+ WORKING = "WORKING",
4247
+ SUCCESS = "SUCCESS",
4248
+ FAILURE = "FAILURE",
4249
+ CANCELLED = "CANCELLED",
4250
+ }
4251
+ export enum BuildType {
4252
+ UNKNOWN_BUILD_TYPE = "UNKNOWN_BUILD_TYPE",
4253
+ MASTER = "MASTER",
4254
+ PR = "PR",
4255
+ BRANCH = "BRANCH",
4256
+ CACHE_REFRESH = "CACHE_REFRESH",
4257
+ MONOREPO_CHECKS = "MONOREPO_CHECKS",
4258
+ }
4259
+ }
4260
+ }
4261
+ }
4262
+ }
4263
+ }
4264
+ }
4279
4265
  }
4280
4266
  export {$requests as requests};
4281
4267
 
@@ -4352,6 +4338,7 @@ declare namespace $responses {
4352
4338
  TENANCY_TYPE_ACCOUNT = "TENANCY_TYPE_ACCOUNT",
4353
4339
  TENANCY_TYPE_ORGANIZATION = "TENANCY_TYPE_ORGANIZATION",
4354
4340
  TENANCY_TYPE_CUSTOM = "TENANCY_TYPE_CUSTOM",
4341
+ TENANCY_TYPE_INSTANCE = "TENANCY_TYPE_INSTANCE",
4355
4342
  }
4356
4343
  }
4357
4344
  /**
@@ -4403,7 +4390,7 @@ declare namespace $responses {
4403
4390
  APPS_ACCESS_UNSPECIFIED = "APPS_ACCESS_UNSPECIFIED",
4404
4391
  APPS_ACCESS_NOT_ALLOWED = "APPS_ACCESS_NOT_ALLOWED",
4405
4392
  APPS_ACCESS_WIX_APPS_ONLY = "APPS_ACCESS_WIX_APPS_ONLY",
4406
- APPS_ACCESS_ALL_APPS = "APPS_ACCESS_ALL_APPS",
4393
+ APPS_ACCESS_WIX_AND_PUBLIC_APPS = "APPS_ACCESS_WIX_AND_PUBLIC_APPS",
4407
4394
  }
4408
4395
  }
4409
4396
  export interface IUsers {
@@ -4418,7 +4405,7 @@ declare namespace $responses {
4418
4405
  export enum Access {
4419
4406
  USERS_ACCESS_UNSPECIFIED = "USERS_ACCESS_UNSPECIFIED",
4420
4407
  USERS_ACCESS_NOT_ALLOWED = "USERS_ACCESS_NOT_ALLOWED",
4421
- USERS_ACCESS_ALL_USERS = "USERS_ACCESS_ALL_USERS",
4408
+ USERS_ACCESS_ALLOWED = "USERS_ACCESS_ALLOWED",
4422
4409
  }
4423
4410
  }
4424
4411
  export interface IBoUsers {
@@ -4797,6 +4784,7 @@ declare namespace $responses {
4797
4784
  permissionsInfo: $responses.wix.coreservices.businessschema.v1.IPermissionInfo[];
4798
4785
  tenancyOptions?: $responses.wix.coreservices.businessschema.v1.ITenancyOptions;
4799
4786
  audience?: $responses.wix.coreservices.businessschema.v1.IAudience;
4787
+ readOperation?: boolean;
4800
4788
  }
4801
4789
  export class Action implements IAction {
4802
4790
  constructor(data?: IAction);
@@ -4824,6 +4812,7 @@ declare namespace $responses {
4824
4812
  permissionsInfo: $responses.wix.coreservices.businessschema.v1.IPermissionInfo[];
4825
4813
  tenancyOptions?: $responses.wix.coreservices.businessschema.v1.ITenancyOptions;
4826
4814
  audience?: $responses.wix.coreservices.businessschema.v1.IAudience;
4815
+ readOperation?: boolean;
4827
4816
  static __$$generatedFromProtobuf$$__: Symbol;
4828
4817
  }
4829
4818
  export interface IPermissionInfo {
@@ -5572,6 +5561,7 @@ declare namespace $responses {
5572
5561
  grouping?: string;
5573
5562
  type: $responses.wix.coreservices.businessschema.v1.Translatable.Type;
5574
5563
  displayOnly?: boolean;
5564
+ index?: number;
5575
5565
  }
5576
5566
  export class Translatable implements ITranslatable {
5577
5567
  constructor(data?: ITranslatable);
@@ -5580,6 +5570,7 @@ declare namespace $responses {
5580
5570
  grouping?: string;
5581
5571
  type: $responses.wix.coreservices.businessschema.v1.Translatable.Type;
5582
5572
  displayOnly?: boolean;
5573
+ index?: number;
5583
5574
  static __$$generatedFromProtobuf$$__: Symbol;
5584
5575
  }
5585
5576
  export namespace Translatable {
@@ -7816,82 +7807,6 @@ declare namespace $responses {
7816
7807
  }
7817
7808
  }
7818
7809
  }
7819
- export namespace com {
7820
- export namespace wixpress {
7821
- export namespace ci {
7822
- export namespace gh {
7823
- export namespace api {
7824
- export interface IBazelBuildInvocationEvent {
7825
- buildId: string;
7826
- invocationId: string;
7827
- gcbBuildIdentifier?: $responses.com.wixpress.ci.gh.api.IGcbBuildIdentifier;
7828
- buildkiteBuildIdentifier?: $responses.com.wixpress.ci.gh.api.IBuildKiteBuildIdentifier;
7829
- invocationStatus: $responses.com.wixpress.ci.gh.api.BazelBuildInvocationEvent.BuildStatus;
7830
- repoUrl: string;
7831
- revision: string;
7832
- pushTimeInSeconds: (number | string);
7833
- maxPushTimeInSeconds: (number | string);
7834
- triggeredBy?: $responses.com.wixpress.ci.gh.api.ITriggeredBy;
7835
- }
7836
- export class BazelBuildInvocationEvent implements IBazelBuildInvocationEvent {
7837
- constructor(data?: IBazelBuildInvocationEvent);
7838
- buildId: string;
7839
- invocationId: string;
7840
- gcbBuildIdentifier?: $responses.com.wixpress.ci.gh.api.IGcbBuildIdentifier;
7841
- buildkiteBuildIdentifier?: $responses.com.wixpress.ci.gh.api.IBuildKiteBuildIdentifier;
7842
- invocationStatus: $responses.com.wixpress.ci.gh.api.BazelBuildInvocationEvent.BuildStatus;
7843
- repoUrl: string;
7844
- revision: string;
7845
- pushTimeInSeconds: (number | string);
7846
- maxPushTimeInSeconds: (number | string);
7847
- triggeredBy?: $responses.com.wixpress.ci.gh.api.ITriggeredBy;
7848
- static __$$generatedFromProtobuf$$__: Symbol;
7849
- }
7850
- export namespace BazelBuildInvocationEvent {
7851
- export enum BuildStatus {
7852
- QUEUED = "QUEUED",
7853
- WORKING = "WORKING",
7854
- SUCCESS = "SUCCESS",
7855
- FAILURE = "FAILURE",
7856
- CANCELLED = "CANCELLED",
7857
- INTERNAL_ERROR = "INTERNAL_ERROR",
7858
- TIMEOUT = "TIMEOUT",
7859
- STATUS_UNKNOWN = "STATUS_UNKNOWN",
7860
- }
7861
- }
7862
- export interface ITriggeredBy {
7863
- repoUrl: string;
7864
- commitHash: string;
7865
- }
7866
- export class TriggeredBy implements ITriggeredBy {
7867
- constructor(data?: ITriggeredBy);
7868
- repoUrl: string;
7869
- commitHash: string;
7870
- static __$$generatedFromProtobuf$$__: Symbol;
7871
- }
7872
- export interface IGcbBuildIdentifier {
7873
- }
7874
- export class GcbBuildIdentifier implements IGcbBuildIdentifier {
7875
- constructor(data?: IGcbBuildIdentifier);
7876
- static __$$generatedFromProtobuf$$__: Symbol;
7877
- }
7878
- export interface IBuildKiteBuildIdentifier {
7879
- orgSlug: string;
7880
- pipelineSlug: string;
7881
- buildNumber: string;
7882
- }
7883
- export class BuildKiteBuildIdentifier implements IBuildKiteBuildIdentifier {
7884
- constructor(data?: IBuildKiteBuildIdentifier);
7885
- orgSlug: string;
7886
- pipelineSlug: string;
7887
- buildNumber: string;
7888
- static __$$generatedFromProtobuf$$__: Symbol;
7889
- }
7890
- }
7891
- }
7892
- }
7893
- }
7894
- }
7895
7810
  export namespace google {
7896
7811
  export namespace protobuf {
7897
7812
  export interface IFileDescriptorSet {
@@ -8493,17 +8408,6 @@ declare namespace $responses {
8493
8408
  static __$$generatedFromProtobuf$$__: Symbol;
8494
8409
  }
8495
8410
  }
8496
- export interface Any {
8497
- readonly typeUrl: string;
8498
- readonly typeName: string;
8499
- is(ctor: $$GeneratedMessage$$<any>): boolean;
8500
- unpack<S>(ctor: $$GeneratedMessage$$<S>): S;
8501
- }
8502
- export namespace Any {
8503
- export function pack<S>(ctor: $$GeneratedMessage$$<S>, value: S): $responses.google.protobuf.Any;
8504
- export function isAny(instance: object): boolean;
8505
- export function typeUrl(ctor: $$GeneratedMessage$$<any>): string;
8506
- }
8507
8411
  }
8508
8412
  export namespace api {
8509
8413
  export interface IHttp {
@@ -8550,6 +8454,74 @@ declare namespace $responses {
8550
8454
  }
8551
8455
  }
8552
8456
  }
8457
+ export namespace com {
8458
+ export namespace wixpress {
8459
+ export namespace ci {
8460
+ export namespace commons {
8461
+ export namespace api {
8462
+ export interface IBazelBuildEvent {
8463
+ id?: string;
8464
+ buildId: string;
8465
+ invocationId: string;
8466
+ repoUrl: string;
8467
+ branch: string;
8468
+ commitHash: string;
8469
+ prNumber?: number;
8470
+ commitAuthor?: string;
8471
+ state: $responses.com.wixpress.ci.commons.api.BazelBuildEvent.BuildState;
8472
+ buildType: $responses.com.wixpress.ci.commons.api.BazelBuildEvent.BuildType;
8473
+ commitTimestamp?: Date;
8474
+ startedAt?: Date;
8475
+ finishedAt?: Date;
8476
+ linkUrl: string;
8477
+ pipeline: string;
8478
+ metadata?: { [k: string]: string };
8479
+ buildNumber: string;
8480
+ }
8481
+ export class BazelBuildEvent implements IBazelBuildEvent {
8482
+ constructor(data?: IBazelBuildEvent);
8483
+ id?: string;
8484
+ buildId: string;
8485
+ invocationId: string;
8486
+ repoUrl: string;
8487
+ branch: string;
8488
+ commitHash: string;
8489
+ prNumber?: number;
8490
+ commitAuthor?: string;
8491
+ state: $responses.com.wixpress.ci.commons.api.BazelBuildEvent.BuildState;
8492
+ buildType: $responses.com.wixpress.ci.commons.api.BazelBuildEvent.BuildType;
8493
+ commitTimestamp?: Date;
8494
+ startedAt?: Date;
8495
+ finishedAt?: Date;
8496
+ linkUrl: string;
8497
+ pipeline: string;
8498
+ metadata?: { [k: string]: string };
8499
+ buildNumber: string;
8500
+ static __$$generatedFromProtobuf$$__: Symbol;
8501
+ }
8502
+ export namespace BazelBuildEvent {
8503
+ export enum BuildState {
8504
+ UNKNOWN_BUILD_STATE = "UNKNOWN_BUILD_STATE",
8505
+ QUEUED = "QUEUED",
8506
+ WORKING = "WORKING",
8507
+ SUCCESS = "SUCCESS",
8508
+ FAILURE = "FAILURE",
8509
+ CANCELLED = "CANCELLED",
8510
+ }
8511
+ export enum BuildType {
8512
+ UNKNOWN_BUILD_TYPE = "UNKNOWN_BUILD_TYPE",
8513
+ MASTER = "MASTER",
8514
+ PR = "PR",
8515
+ BRANCH = "BRANCH",
8516
+ CACHE_REFRESH = "CACHE_REFRESH",
8517
+ MONOREPO_CHECKS = "MONOREPO_CHECKS",
8518
+ }
8519
+ }
8520
+ }
8521
+ }
8522
+ }
8523
+ }
8524
+ }
8553
8525
  }
8554
8526
  export {$responses as responses};
8555
8527
 
@@ -8612,17 +8584,5 @@ declare namespace $services {
8612
8584
  }
8613
8585
  }
8614
8586
  }
8615
- export namespace com {
8616
- export namespace wixpress {
8617
- export namespace ci {
8618
- export namespace gh {
8619
- export namespace api {
8620
- export abstract class GcbEventsService {
8621
- }
8622
- }
8623
- }
8624
- }
8625
- }
8626
- }
8627
8587
  }
8628
8588
  export {$services as services};