@wix/metro-common-builders 1.0.1683 → 1.0.1685
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 +74 -0
- package/dist/es/src/proto/index.d.ts +37 -0
- package/dist/es/src/proto/index.js +550 -3
- package/dist/es/src/proto/server/index.d.ts +73 -0
- package/dist/src/proto/client/index.d.ts +74 -0
- package/dist/src/proto/index.d.ts +37 -0
- package/dist/src/proto/index.js +550 -3
- package/dist/src/proto/server/index.d.ts +73 -0
- package/package.json +4 -4
|
@@ -1319,6 +1319,42 @@ declare namespace $requests {
|
|
|
1319
1319
|
target?: $requests.wix.coreservices.businessschema.v1.internal.ITarget;
|
|
1320
1320
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1321
1321
|
}
|
|
1322
|
+
export interface IProtoArtifactInvocationData {
|
|
1323
|
+
protoArtifactId?: string;
|
|
1324
|
+
invocationId?: string;
|
|
1325
|
+
ranAt?: string;
|
|
1326
|
+
label?: string;
|
|
1327
|
+
repoUrl?: string;
|
|
1328
|
+
githubTargetPath?: string;
|
|
1329
|
+
commitHash?: string;
|
|
1330
|
+
}
|
|
1331
|
+
export class ProtoArtifactInvocationData implements IProtoArtifactInvocationData {
|
|
1332
|
+
constructor(data?: IProtoArtifactInvocationData);
|
|
1333
|
+
protoArtifactId?: string;
|
|
1334
|
+
invocationId?: string;
|
|
1335
|
+
ranAt?: string;
|
|
1336
|
+
label?: string;
|
|
1337
|
+
repoUrl?: string;
|
|
1338
|
+
githubTargetPath?: string;
|
|
1339
|
+
commitHash?: string;
|
|
1340
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1341
|
+
}
|
|
1342
|
+
export interface IGetProtoArtifactLastInvocationDataRequest {
|
|
1343
|
+
protoArtifactId?: string;
|
|
1344
|
+
}
|
|
1345
|
+
export class GetProtoArtifactLastInvocationDataRequest implements IGetProtoArtifactLastInvocationDataRequest {
|
|
1346
|
+
constructor(data?: IGetProtoArtifactLastInvocationDataRequest);
|
|
1347
|
+
protoArtifactId?: string;
|
|
1348
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1349
|
+
}
|
|
1350
|
+
export interface IGetProtoArtifactLastInvocationDataResponse {
|
|
1351
|
+
invocationData?: $requests.wix.coreservices.businessschema.v1.internal.IProtoArtifactInvocationData;
|
|
1352
|
+
}
|
|
1353
|
+
export class GetProtoArtifactLastInvocationDataResponse implements IGetProtoArtifactLastInvocationDataResponse {
|
|
1354
|
+
constructor(data?: IGetProtoArtifactLastInvocationDataResponse);
|
|
1355
|
+
invocationData?: $requests.wix.coreservices.businessschema.v1.internal.IProtoArtifactInvocationData;
|
|
1356
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1357
|
+
}
|
|
1322
1358
|
}
|
|
1323
1359
|
export interface IDeleteServiceDocumentRequest {
|
|
1324
1360
|
protoServiceFqn?: string;
|
|
@@ -5301,6 +5337,42 @@ declare namespace $responses {
|
|
|
5301
5337
|
target?: $responses.wix.coreservices.businessschema.v1.internal.ITarget;
|
|
5302
5338
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5303
5339
|
}
|
|
5340
|
+
export interface IProtoArtifactInvocationData {
|
|
5341
|
+
protoArtifactId?: string;
|
|
5342
|
+
invocationId?: string;
|
|
5343
|
+
ranAt?: string;
|
|
5344
|
+
label?: string;
|
|
5345
|
+
repoUrl?: string;
|
|
5346
|
+
githubTargetPath?: string;
|
|
5347
|
+
commitHash?: string;
|
|
5348
|
+
}
|
|
5349
|
+
export class ProtoArtifactInvocationData implements IProtoArtifactInvocationData {
|
|
5350
|
+
constructor(data?: IProtoArtifactInvocationData);
|
|
5351
|
+
protoArtifactId?: string;
|
|
5352
|
+
invocationId?: string;
|
|
5353
|
+
ranAt?: string;
|
|
5354
|
+
label?: string;
|
|
5355
|
+
repoUrl?: string;
|
|
5356
|
+
githubTargetPath?: string;
|
|
5357
|
+
commitHash?: string;
|
|
5358
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5359
|
+
}
|
|
5360
|
+
export interface IGetProtoArtifactLastInvocationDataRequest {
|
|
5361
|
+
protoArtifactId: string;
|
|
5362
|
+
}
|
|
5363
|
+
export class GetProtoArtifactLastInvocationDataRequest implements IGetProtoArtifactLastInvocationDataRequest {
|
|
5364
|
+
constructor(data?: IGetProtoArtifactLastInvocationDataRequest);
|
|
5365
|
+
protoArtifactId: string;
|
|
5366
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5367
|
+
}
|
|
5368
|
+
export interface IGetProtoArtifactLastInvocationDataResponse {
|
|
5369
|
+
invocationData?: $responses.wix.coreservices.businessschema.v1.internal.IProtoArtifactInvocationData;
|
|
5370
|
+
}
|
|
5371
|
+
export class GetProtoArtifactLastInvocationDataResponse implements IGetProtoArtifactLastInvocationDataResponse {
|
|
5372
|
+
constructor(data?: IGetProtoArtifactLastInvocationDataResponse);
|
|
5373
|
+
invocationData?: $responses.wix.coreservices.businessschema.v1.internal.IProtoArtifactInvocationData;
|
|
5374
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5375
|
+
}
|
|
5304
5376
|
}
|
|
5305
5377
|
export interface IDeleteServiceDocumentRequest {
|
|
5306
5378
|
protoServiceFqn: string;
|
|
@@ -7976,6 +8048,8 @@ declare namespace $services {
|
|
|
7976
8048
|
export namespace v1 {
|
|
7977
8049
|
export namespace internal {
|
|
7978
8050
|
export abstract class BusinessSchemaIndexerService {
|
|
8051
|
+
abstract getProtoArtifactLastInvocationData(aspects: object, req: $requests.wix.coreservices.businessschema.v1.internal.IGetProtoArtifactLastInvocationDataRequest): Promise<$responses.wix.coreservices.businessschema.v1.internal.IGetProtoArtifactLastInvocationDataResponse>
|
|
8052
|
+
abstract getProtoArtifactLastInvocationData(req: $requests.wix.coreservices.businessschema.v1.internal.IGetProtoArtifactLastInvocationDataRequest): Promise<$responses.wix.coreservices.businessschema.v1.internal.IGetProtoArtifactLastInvocationDataResponse>
|
|
7979
8053
|
}
|
|
7980
8054
|
}
|
|
7981
8055
|
export abstract class ManagementService {
|
|
@@ -1312,6 +1312,7 @@ declare namespace $wrapper {
|
|
|
1312
1312
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1313
1313
|
}
|
|
1314
1314
|
export abstract class BusinessSchemaIndexerService {
|
|
1315
|
+
abstract getProtoArtifactLastInvocationData(aspects: object, req: $wrapper.wix.coreservices.businessschema.v1.internal.IGetProtoArtifactLastInvocationDataRequest): Promise<$wrapper.wix.coreservices.businessschema.v1.internal.IGetProtoArtifactLastInvocationDataResponse>
|
|
1315
1316
|
}
|
|
1316
1317
|
export interface IUnprocessedTargetEvent {
|
|
1317
1318
|
target?: ($wrapper.wix.coreservices.businessschema.v1.internal.ITarget | null);
|
|
@@ -1321,6 +1322,42 @@ declare namespace $wrapper {
|
|
|
1321
1322
|
target?: ($wrapper.wix.coreservices.businessschema.v1.internal.ITarget | null);
|
|
1322
1323
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1323
1324
|
}
|
|
1325
|
+
export interface IProtoArtifactInvocationData {
|
|
1326
|
+
protoArtifactId?: (string | null);
|
|
1327
|
+
invocationId?: (string | null);
|
|
1328
|
+
ranAt?: (string | null);
|
|
1329
|
+
label?: (string | null);
|
|
1330
|
+
repoUrl?: (string | null);
|
|
1331
|
+
githubTargetPath?: (string | null);
|
|
1332
|
+
commitHash?: (string | null);
|
|
1333
|
+
}
|
|
1334
|
+
export class ProtoArtifactInvocationData implements IProtoArtifactInvocationData {
|
|
1335
|
+
constructor(data?: IProtoArtifactInvocationData);
|
|
1336
|
+
protoArtifactId?: (string | null);
|
|
1337
|
+
invocationId?: (string | null);
|
|
1338
|
+
ranAt?: (string | null);
|
|
1339
|
+
label?: (string | null);
|
|
1340
|
+
repoUrl?: (string | null);
|
|
1341
|
+
githubTargetPath?: (string | null);
|
|
1342
|
+
commitHash?: (string | null);
|
|
1343
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1344
|
+
}
|
|
1345
|
+
export interface IGetProtoArtifactLastInvocationDataRequest {
|
|
1346
|
+
protoArtifactId?: (string | null);
|
|
1347
|
+
}
|
|
1348
|
+
export class GetProtoArtifactLastInvocationDataRequest implements IGetProtoArtifactLastInvocationDataRequest {
|
|
1349
|
+
constructor(data?: IGetProtoArtifactLastInvocationDataRequest);
|
|
1350
|
+
protoArtifactId?: (string | null);
|
|
1351
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1352
|
+
}
|
|
1353
|
+
export interface IGetProtoArtifactLastInvocationDataResponse {
|
|
1354
|
+
invocationData?: ($wrapper.wix.coreservices.businessschema.v1.internal.IProtoArtifactInvocationData | null);
|
|
1355
|
+
}
|
|
1356
|
+
export class GetProtoArtifactLastInvocationDataResponse implements IGetProtoArtifactLastInvocationDataResponse {
|
|
1357
|
+
constructor(data?: IGetProtoArtifactLastInvocationDataResponse);
|
|
1358
|
+
invocationData?: ($wrapper.wix.coreservices.businessschema.v1.internal.IProtoArtifactInvocationData | null);
|
|
1359
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1360
|
+
}
|
|
1324
1361
|
}
|
|
1325
1362
|
export abstract class ManagementService {
|
|
1326
1363
|
abstract deleteServiceDocument(aspects: object, req: $wrapper.wix.coreservices.businessschema.v1.IDeleteServiceDocumentRequest): Promise<$wrapper.wix.coreservices.businessschema.v1.IDeleteServiceDocumentResponse>
|