@supernova-studio/client 0.48.15 → 0.48.17
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/index.d.mts +587 -350
- package/dist/index.d.ts +587 -350
- package/dist/index.js +15 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/aux/index.ts +1 -0
- package/src/api/dto/aux/pagination.ts +8 -0
- package/src/api/dto/export/filter.ts +6 -0
- package/src/api/dto/export/index.ts +1 -0
- package/src/api/dto/export/job.ts +9 -1
- package/src/api/dto/index.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -8122,7 +8122,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8122
8122
|
}>;
|
|
8123
8123
|
exporterId: z.ZodString;
|
|
8124
8124
|
scheduleId: z.ZodOptional<z.ZodString>;
|
|
8125
|
-
result: z.ZodOptional<z.ZodObject<{
|
|
8125
|
+
result: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
8126
8126
|
error: z.ZodOptional<z.ZodString>;
|
|
8127
8127
|
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
8128
8128
|
path: string;
|
|
@@ -8200,87 +8200,95 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8200
8200
|
} | null | undefined>;
|
|
8201
8201
|
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
8202
8202
|
message: string;
|
|
8203
|
-
type: "user" | "
|
|
8203
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
8204
8204
|
time: Date;
|
|
8205
8205
|
id?: string | undefined;
|
|
8206
8206
|
}[], z.ZodTypeDef, {
|
|
8207
8207
|
message: string;
|
|
8208
|
-
type: "user" | "
|
|
8208
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
8209
8209
|
time: Date;
|
|
8210
8210
|
id?: string | undefined;
|
|
8211
8211
|
}[]>>>, {
|
|
8212
8212
|
message: string;
|
|
8213
|
-
type: "user" | "
|
|
8213
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
8214
8214
|
time: Date;
|
|
8215
8215
|
id?: string | undefined;
|
|
8216
8216
|
}[] | undefined, {
|
|
8217
8217
|
message: string;
|
|
8218
|
-
type: "user" | "
|
|
8218
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
8219
8219
|
time: Date;
|
|
8220
8220
|
id?: string | undefined;
|
|
8221
8221
|
}[] | null | undefined>;
|
|
8222
|
-
}, "
|
|
8223
|
-
|
|
8222
|
+
}, "sndocs">, {
|
|
8223
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
8224
|
+
url: z.ZodString;
|
|
8225
|
+
}, "strip", z.ZodTypeAny, {
|
|
8226
|
+
url: string;
|
|
8227
|
+
}, {
|
|
8228
|
+
url: string;
|
|
8229
|
+
}>>;
|
|
8230
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8231
|
+
s3?: {
|
|
8232
|
+
path: string;
|
|
8233
|
+
files: string[];
|
|
8234
|
+
bucket: string;
|
|
8235
|
+
url?: string | undefined;
|
|
8236
|
+
urlPrefix?: string | undefined;
|
|
8237
|
+
urls?: string[] | undefined;
|
|
8238
|
+
} | undefined;
|
|
8224
8239
|
azure?: {
|
|
8225
8240
|
pullRequestUrl: string;
|
|
8226
8241
|
} | undefined;
|
|
8242
|
+
bitbucket?: {
|
|
8243
|
+
pullRequestUrl: string;
|
|
8244
|
+
} | undefined;
|
|
8227
8245
|
github?: {
|
|
8228
8246
|
pullRequestUrl: string;
|
|
8229
8247
|
} | undefined;
|
|
8230
8248
|
gitlab?: {
|
|
8231
8249
|
pullRequestUrl: string;
|
|
8232
8250
|
} | undefined;
|
|
8233
|
-
|
|
8234
|
-
|
|
8251
|
+
documentation?: {
|
|
8252
|
+
url: string;
|
|
8235
8253
|
} | undefined;
|
|
8254
|
+
error?: string | undefined;
|
|
8236
8255
|
logs?: {
|
|
8237
8256
|
message: string;
|
|
8238
|
-
type: "user" | "
|
|
8257
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
8239
8258
|
time: Date;
|
|
8240
8259
|
id?: string | undefined;
|
|
8241
8260
|
}[] | undefined;
|
|
8261
|
+
}, {
|
|
8242
8262
|
s3?: {
|
|
8243
8263
|
path: string;
|
|
8244
8264
|
files: string[];
|
|
8245
8265
|
bucket: string;
|
|
8246
|
-
url?: string | undefined;
|
|
8266
|
+
url?: string | null | undefined;
|
|
8247
8267
|
urlPrefix?: string | undefined;
|
|
8248
|
-
urls?: string[] | undefined;
|
|
8249
|
-
} | undefined;
|
|
8250
|
-
sndocs?: {
|
|
8251
|
-
url: string;
|
|
8252
|
-
} | undefined;
|
|
8253
|
-
}, {
|
|
8254
|
-
error?: string | undefined;
|
|
8268
|
+
urls?: string[] | null | undefined;
|
|
8269
|
+
} | null | undefined;
|
|
8255
8270
|
azure?: {
|
|
8256
8271
|
pullRequestUrl: string;
|
|
8257
8272
|
} | null | undefined;
|
|
8258
|
-
|
|
8273
|
+
bitbucket?: {
|
|
8259
8274
|
pullRequestUrl: string;
|
|
8260
8275
|
} | null | undefined;
|
|
8261
|
-
|
|
8276
|
+
github?: {
|
|
8262
8277
|
pullRequestUrl: string;
|
|
8263
8278
|
} | null | undefined;
|
|
8264
|
-
|
|
8279
|
+
gitlab?: {
|
|
8265
8280
|
pullRequestUrl: string;
|
|
8266
8281
|
} | null | undefined;
|
|
8282
|
+
documentation?: {
|
|
8283
|
+
url: string;
|
|
8284
|
+
} | undefined;
|
|
8285
|
+
error?: string | undefined;
|
|
8267
8286
|
logs?: {
|
|
8268
8287
|
message: string;
|
|
8269
|
-
type: "user" | "
|
|
8288
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
8270
8289
|
time: Date;
|
|
8271
8290
|
id?: string | undefined;
|
|
8272
8291
|
}[] | null | undefined;
|
|
8273
|
-
s3?: {
|
|
8274
|
-
path: string;
|
|
8275
|
-
files: string[];
|
|
8276
|
-
bucket: string;
|
|
8277
|
-
url?: string | null | undefined;
|
|
8278
|
-
urlPrefix?: string | undefined;
|
|
8279
|
-
urls?: string[] | null | undefined;
|
|
8280
|
-
} | null | undefined;
|
|
8281
|
-
sndocs?: {
|
|
8282
|
-
url: string;
|
|
8283
|
-
} | null | undefined;
|
|
8284
8292
|
}>>;
|
|
8285
8293
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
8286
8294
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8365,36 +8373,36 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8365
8373
|
} | undefined;
|
|
8366
8374
|
scheduleId?: string | undefined;
|
|
8367
8375
|
result?: {
|
|
8368
|
-
|
|
8376
|
+
s3?: {
|
|
8377
|
+
path: string;
|
|
8378
|
+
files: string[];
|
|
8379
|
+
bucket: string;
|
|
8380
|
+
url?: string | undefined;
|
|
8381
|
+
urlPrefix?: string | undefined;
|
|
8382
|
+
urls?: string[] | undefined;
|
|
8383
|
+
} | undefined;
|
|
8369
8384
|
azure?: {
|
|
8370
8385
|
pullRequestUrl: string;
|
|
8371
8386
|
} | undefined;
|
|
8387
|
+
bitbucket?: {
|
|
8388
|
+
pullRequestUrl: string;
|
|
8389
|
+
} | undefined;
|
|
8372
8390
|
github?: {
|
|
8373
8391
|
pullRequestUrl: string;
|
|
8374
8392
|
} | undefined;
|
|
8375
8393
|
gitlab?: {
|
|
8376
8394
|
pullRequestUrl: string;
|
|
8377
8395
|
} | undefined;
|
|
8378
|
-
|
|
8379
|
-
|
|
8396
|
+
documentation?: {
|
|
8397
|
+
url: string;
|
|
8380
8398
|
} | undefined;
|
|
8399
|
+
error?: string | undefined;
|
|
8381
8400
|
logs?: {
|
|
8382
8401
|
message: string;
|
|
8383
|
-
type: "user" | "
|
|
8402
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
8384
8403
|
time: Date;
|
|
8385
8404
|
id?: string | undefined;
|
|
8386
8405
|
}[] | undefined;
|
|
8387
|
-
s3?: {
|
|
8388
|
-
path: string;
|
|
8389
|
-
files: string[];
|
|
8390
|
-
bucket: string;
|
|
8391
|
-
url?: string | undefined;
|
|
8392
|
-
urlPrefix?: string | undefined;
|
|
8393
|
-
urls?: string[] | undefined;
|
|
8394
|
-
} | undefined;
|
|
8395
|
-
sndocs?: {
|
|
8396
|
-
url: string;
|
|
8397
|
-
} | undefined;
|
|
8398
8406
|
} | undefined;
|
|
8399
8407
|
}, {
|
|
8400
8408
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
@@ -8477,36 +8485,36 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8477
8485
|
} | undefined;
|
|
8478
8486
|
scheduleId?: string | undefined;
|
|
8479
8487
|
result?: {
|
|
8480
|
-
|
|
8488
|
+
s3?: {
|
|
8489
|
+
path: string;
|
|
8490
|
+
files: string[];
|
|
8491
|
+
bucket: string;
|
|
8492
|
+
url?: string | null | undefined;
|
|
8493
|
+
urlPrefix?: string | undefined;
|
|
8494
|
+
urls?: string[] | null | undefined;
|
|
8495
|
+
} | null | undefined;
|
|
8481
8496
|
azure?: {
|
|
8482
8497
|
pullRequestUrl: string;
|
|
8483
8498
|
} | null | undefined;
|
|
8484
|
-
|
|
8499
|
+
bitbucket?: {
|
|
8485
8500
|
pullRequestUrl: string;
|
|
8486
8501
|
} | null | undefined;
|
|
8487
|
-
|
|
8502
|
+
github?: {
|
|
8488
8503
|
pullRequestUrl: string;
|
|
8489
8504
|
} | null | undefined;
|
|
8490
|
-
|
|
8505
|
+
gitlab?: {
|
|
8491
8506
|
pullRequestUrl: string;
|
|
8492
8507
|
} | null | undefined;
|
|
8508
|
+
documentation?: {
|
|
8509
|
+
url: string;
|
|
8510
|
+
} | undefined;
|
|
8511
|
+
error?: string | undefined;
|
|
8493
8512
|
logs?: {
|
|
8494
8513
|
message: string;
|
|
8495
|
-
type: "user" | "
|
|
8514
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
8496
8515
|
time: Date;
|
|
8497
8516
|
id?: string | undefined;
|
|
8498
8517
|
}[] | null | undefined;
|
|
8499
|
-
s3?: {
|
|
8500
|
-
path: string;
|
|
8501
|
-
files: string[];
|
|
8502
|
-
bucket: string;
|
|
8503
|
-
url?: string | null | undefined;
|
|
8504
|
-
urlPrefix?: string | undefined;
|
|
8505
|
-
urls?: string[] | null | undefined;
|
|
8506
|
-
} | null | undefined;
|
|
8507
|
-
sndocs?: {
|
|
8508
|
-
url: string;
|
|
8509
|
-
} | null | undefined;
|
|
8510
8518
|
} | undefined;
|
|
8511
8519
|
}>;
|
|
8512
8520
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8591,36 +8599,36 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8591
8599
|
} | undefined;
|
|
8592
8600
|
scheduleId?: string | undefined;
|
|
8593
8601
|
result?: {
|
|
8594
|
-
|
|
8602
|
+
s3?: {
|
|
8603
|
+
path: string;
|
|
8604
|
+
files: string[];
|
|
8605
|
+
bucket: string;
|
|
8606
|
+
url?: string | undefined;
|
|
8607
|
+
urlPrefix?: string | undefined;
|
|
8608
|
+
urls?: string[] | undefined;
|
|
8609
|
+
} | undefined;
|
|
8595
8610
|
azure?: {
|
|
8596
8611
|
pullRequestUrl: string;
|
|
8597
8612
|
} | undefined;
|
|
8613
|
+
bitbucket?: {
|
|
8614
|
+
pullRequestUrl: string;
|
|
8615
|
+
} | undefined;
|
|
8598
8616
|
github?: {
|
|
8599
8617
|
pullRequestUrl: string;
|
|
8600
8618
|
} | undefined;
|
|
8601
8619
|
gitlab?: {
|
|
8602
8620
|
pullRequestUrl: string;
|
|
8603
8621
|
} | undefined;
|
|
8604
|
-
|
|
8605
|
-
|
|
8622
|
+
documentation?: {
|
|
8623
|
+
url: string;
|
|
8606
8624
|
} | undefined;
|
|
8625
|
+
error?: string | undefined;
|
|
8607
8626
|
logs?: {
|
|
8608
8627
|
message: string;
|
|
8609
|
-
type: "user" | "
|
|
8628
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
8610
8629
|
time: Date;
|
|
8611
8630
|
id?: string | undefined;
|
|
8612
8631
|
}[] | undefined;
|
|
8613
|
-
s3?: {
|
|
8614
|
-
path: string;
|
|
8615
|
-
files: string[];
|
|
8616
|
-
bucket: string;
|
|
8617
|
-
url?: string | undefined;
|
|
8618
|
-
urlPrefix?: string | undefined;
|
|
8619
|
-
urls?: string[] | undefined;
|
|
8620
|
-
} | undefined;
|
|
8621
|
-
sndocs?: {
|
|
8622
|
-
url: string;
|
|
8623
|
-
} | undefined;
|
|
8624
8632
|
} | undefined;
|
|
8625
8633
|
};
|
|
8626
8634
|
}, {
|
|
@@ -8705,36 +8713,36 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8705
8713
|
} | undefined;
|
|
8706
8714
|
scheduleId?: string | undefined;
|
|
8707
8715
|
result?: {
|
|
8708
|
-
|
|
8716
|
+
s3?: {
|
|
8717
|
+
path: string;
|
|
8718
|
+
files: string[];
|
|
8719
|
+
bucket: string;
|
|
8720
|
+
url?: string | null | undefined;
|
|
8721
|
+
urlPrefix?: string | undefined;
|
|
8722
|
+
urls?: string[] | null | undefined;
|
|
8723
|
+
} | null | undefined;
|
|
8709
8724
|
azure?: {
|
|
8710
8725
|
pullRequestUrl: string;
|
|
8711
8726
|
} | null | undefined;
|
|
8712
|
-
|
|
8727
|
+
bitbucket?: {
|
|
8713
8728
|
pullRequestUrl: string;
|
|
8714
8729
|
} | null | undefined;
|
|
8715
|
-
|
|
8730
|
+
github?: {
|
|
8716
8731
|
pullRequestUrl: string;
|
|
8717
8732
|
} | null | undefined;
|
|
8718
|
-
|
|
8733
|
+
gitlab?: {
|
|
8719
8734
|
pullRequestUrl: string;
|
|
8720
8735
|
} | null | undefined;
|
|
8736
|
+
documentation?: {
|
|
8737
|
+
url: string;
|
|
8738
|
+
} | undefined;
|
|
8739
|
+
error?: string | undefined;
|
|
8721
8740
|
logs?: {
|
|
8722
8741
|
message: string;
|
|
8723
|
-
type: "user" | "
|
|
8742
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
8724
8743
|
time: Date;
|
|
8725
8744
|
id?: string | undefined;
|
|
8726
8745
|
}[] | null | undefined;
|
|
8727
|
-
s3?: {
|
|
8728
|
-
path: string;
|
|
8729
|
-
files: string[];
|
|
8730
|
-
bucket: string;
|
|
8731
|
-
url?: string | null | undefined;
|
|
8732
|
-
urlPrefix?: string | undefined;
|
|
8733
|
-
urls?: string[] | null | undefined;
|
|
8734
|
-
} | null | undefined;
|
|
8735
|
-
sndocs?: {
|
|
8736
|
-
url: string;
|
|
8737
|
-
} | null | undefined;
|
|
8738
8746
|
} | undefined;
|
|
8739
8747
|
};
|
|
8740
8748
|
}>;
|
|
@@ -27920,6 +27928,42 @@ declare const DTOExporterUpdateInput: z.ZodObject<{
|
|
|
27920
27928
|
}>;
|
|
27921
27929
|
type DTOExporterUpdateInput = z.infer<typeof DTOExporterUpdateInput>;
|
|
27922
27930
|
|
|
27931
|
+
declare const DTOExportJobsListFilter: z.ZodObject<{
|
|
27932
|
+
status: z.ZodOptional<z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>>;
|
|
27933
|
+
designSystemId: z.ZodOptional<z.ZodString>;
|
|
27934
|
+
designSystemVersionId: z.ZodOptional<z.ZodString>;
|
|
27935
|
+
brandId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
27936
|
+
createdByUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
27937
|
+
themeId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
27938
|
+
exporterId: z.ZodOptional<z.ZodString>;
|
|
27939
|
+
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
27940
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab", "bitbucket"]>, "many">>;
|
|
27941
|
+
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
27942
|
+
}, "strip", z.ZodTypeAny, {
|
|
27943
|
+
status?: "InProgress" | "Success" | "Failed" | "Timeout" | undefined;
|
|
27944
|
+
designSystemId?: string | undefined;
|
|
27945
|
+
designSystemVersionId?: string | undefined;
|
|
27946
|
+
brandId?: string | undefined;
|
|
27947
|
+
createdByUserId?: string | undefined;
|
|
27948
|
+
themeId?: string | undefined;
|
|
27949
|
+
exporterId?: string | undefined;
|
|
27950
|
+
scheduleId?: string | null | undefined;
|
|
27951
|
+
destinations?: ("s3" | "azure" | "bitbucket" | "github" | "gitlab" | "documentation" | "webhookUrl")[] | undefined;
|
|
27952
|
+
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
27953
|
+
}, {
|
|
27954
|
+
status?: "InProgress" | "Success" | "Failed" | "Timeout" | undefined;
|
|
27955
|
+
designSystemId?: string | undefined;
|
|
27956
|
+
designSystemVersionId?: string | undefined;
|
|
27957
|
+
brandId?: string | undefined;
|
|
27958
|
+
createdByUserId?: string | undefined;
|
|
27959
|
+
themeId?: string | undefined;
|
|
27960
|
+
exporterId?: string | undefined;
|
|
27961
|
+
scheduleId?: string | null | undefined;
|
|
27962
|
+
destinations?: ("s3" | "azure" | "bitbucket" | "github" | "gitlab" | "documentation" | "webhookUrl")[] | undefined;
|
|
27963
|
+
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
27964
|
+
}>;
|
|
27965
|
+
type DTOExportJobsListFilter = z.infer<typeof DTOExportJobsListFilter>;
|
|
27966
|
+
|
|
27923
27967
|
declare const DTOExportJobCreatedBy: z.ZodObject<{
|
|
27924
27968
|
userId: z.ZodString;
|
|
27925
27969
|
userName: z.ZodString;
|
|
@@ -28224,6 +28268,175 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28224
28268
|
webhookUrl?: string | undefined;
|
|
28225
28269
|
}>;
|
|
28226
28270
|
type DTOExportJobDestinations = z.infer<typeof DTOExportJobDestinations>;
|
|
28271
|
+
declare const DTOExportJobResult: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
28272
|
+
error: z.ZodOptional<z.ZodString>;
|
|
28273
|
+
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28274
|
+
path: string;
|
|
28275
|
+
files: string[];
|
|
28276
|
+
bucket: string;
|
|
28277
|
+
url?: string | undefined;
|
|
28278
|
+
urlPrefix?: string | undefined;
|
|
28279
|
+
urls?: string[] | undefined;
|
|
28280
|
+
}, z.ZodTypeDef, {
|
|
28281
|
+
path: string;
|
|
28282
|
+
files: string[];
|
|
28283
|
+
bucket: string;
|
|
28284
|
+
url?: string | null | undefined;
|
|
28285
|
+
urlPrefix?: string | undefined;
|
|
28286
|
+
urls?: string[] | null | undefined;
|
|
28287
|
+
}>>>, {
|
|
28288
|
+
path: string;
|
|
28289
|
+
files: string[];
|
|
28290
|
+
bucket: string;
|
|
28291
|
+
url?: string | undefined;
|
|
28292
|
+
urlPrefix?: string | undefined;
|
|
28293
|
+
urls?: string[] | undefined;
|
|
28294
|
+
} | undefined, {
|
|
28295
|
+
path: string;
|
|
28296
|
+
files: string[];
|
|
28297
|
+
bucket: string;
|
|
28298
|
+
url?: string | null | undefined;
|
|
28299
|
+
urlPrefix?: string | undefined;
|
|
28300
|
+
urls?: string[] | null | undefined;
|
|
28301
|
+
} | null | undefined>;
|
|
28302
|
+
github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28303
|
+
pullRequestUrl: string;
|
|
28304
|
+
}, z.ZodTypeDef, {
|
|
28305
|
+
pullRequestUrl: string;
|
|
28306
|
+
}>>>, {
|
|
28307
|
+
pullRequestUrl: string;
|
|
28308
|
+
} | undefined, {
|
|
28309
|
+
pullRequestUrl: string;
|
|
28310
|
+
} | null | undefined>;
|
|
28311
|
+
azure: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28312
|
+
pullRequestUrl: string;
|
|
28313
|
+
}, z.ZodTypeDef, {
|
|
28314
|
+
pullRequestUrl: string;
|
|
28315
|
+
}>>>, {
|
|
28316
|
+
pullRequestUrl: string;
|
|
28317
|
+
} | undefined, {
|
|
28318
|
+
pullRequestUrl: string;
|
|
28319
|
+
} | null | undefined>;
|
|
28320
|
+
gitlab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28321
|
+
pullRequestUrl: string;
|
|
28322
|
+
}, z.ZodTypeDef, {
|
|
28323
|
+
pullRequestUrl: string;
|
|
28324
|
+
}>>>, {
|
|
28325
|
+
pullRequestUrl: string;
|
|
28326
|
+
} | undefined, {
|
|
28327
|
+
pullRequestUrl: string;
|
|
28328
|
+
} | null | undefined>;
|
|
28329
|
+
bitbucket: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28330
|
+
pullRequestUrl: string;
|
|
28331
|
+
}, z.ZodTypeDef, {
|
|
28332
|
+
pullRequestUrl: string;
|
|
28333
|
+
}>>>, {
|
|
28334
|
+
pullRequestUrl: string;
|
|
28335
|
+
} | undefined, {
|
|
28336
|
+
pullRequestUrl: string;
|
|
28337
|
+
} | null | undefined>;
|
|
28338
|
+
sndocs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28339
|
+
url: string;
|
|
28340
|
+
}, z.ZodTypeDef, {
|
|
28341
|
+
url: string;
|
|
28342
|
+
}>>>, {
|
|
28343
|
+
url: string;
|
|
28344
|
+
} | undefined, {
|
|
28345
|
+
url: string;
|
|
28346
|
+
} | null | undefined>;
|
|
28347
|
+
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28348
|
+
message: string;
|
|
28349
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28350
|
+
time: Date;
|
|
28351
|
+
id?: string | undefined;
|
|
28352
|
+
}[], z.ZodTypeDef, {
|
|
28353
|
+
message: string;
|
|
28354
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28355
|
+
time: Date;
|
|
28356
|
+
id?: string | undefined;
|
|
28357
|
+
}[]>>>, {
|
|
28358
|
+
message: string;
|
|
28359
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28360
|
+
time: Date;
|
|
28361
|
+
id?: string | undefined;
|
|
28362
|
+
}[] | undefined, {
|
|
28363
|
+
message: string;
|
|
28364
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28365
|
+
time: Date;
|
|
28366
|
+
id?: string | undefined;
|
|
28367
|
+
}[] | null | undefined>;
|
|
28368
|
+
}, "sndocs">, {
|
|
28369
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
28370
|
+
url: z.ZodString;
|
|
28371
|
+
}, "strip", z.ZodTypeAny, {
|
|
28372
|
+
url: string;
|
|
28373
|
+
}, {
|
|
28374
|
+
url: string;
|
|
28375
|
+
}>>;
|
|
28376
|
+
}>, "strip", z.ZodTypeAny, {
|
|
28377
|
+
s3?: {
|
|
28378
|
+
path: string;
|
|
28379
|
+
files: string[];
|
|
28380
|
+
bucket: string;
|
|
28381
|
+
url?: string | undefined;
|
|
28382
|
+
urlPrefix?: string | undefined;
|
|
28383
|
+
urls?: string[] | undefined;
|
|
28384
|
+
} | undefined;
|
|
28385
|
+
azure?: {
|
|
28386
|
+
pullRequestUrl: string;
|
|
28387
|
+
} | undefined;
|
|
28388
|
+
bitbucket?: {
|
|
28389
|
+
pullRequestUrl: string;
|
|
28390
|
+
} | undefined;
|
|
28391
|
+
github?: {
|
|
28392
|
+
pullRequestUrl: string;
|
|
28393
|
+
} | undefined;
|
|
28394
|
+
gitlab?: {
|
|
28395
|
+
pullRequestUrl: string;
|
|
28396
|
+
} | undefined;
|
|
28397
|
+
documentation?: {
|
|
28398
|
+
url: string;
|
|
28399
|
+
} | undefined;
|
|
28400
|
+
error?: string | undefined;
|
|
28401
|
+
logs?: {
|
|
28402
|
+
message: string;
|
|
28403
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28404
|
+
time: Date;
|
|
28405
|
+
id?: string | undefined;
|
|
28406
|
+
}[] | undefined;
|
|
28407
|
+
}, {
|
|
28408
|
+
s3?: {
|
|
28409
|
+
path: string;
|
|
28410
|
+
files: string[];
|
|
28411
|
+
bucket: string;
|
|
28412
|
+
url?: string | null | undefined;
|
|
28413
|
+
urlPrefix?: string | undefined;
|
|
28414
|
+
urls?: string[] | null | undefined;
|
|
28415
|
+
} | null | undefined;
|
|
28416
|
+
azure?: {
|
|
28417
|
+
pullRequestUrl: string;
|
|
28418
|
+
} | null | undefined;
|
|
28419
|
+
bitbucket?: {
|
|
28420
|
+
pullRequestUrl: string;
|
|
28421
|
+
} | null | undefined;
|
|
28422
|
+
github?: {
|
|
28423
|
+
pullRequestUrl: string;
|
|
28424
|
+
} | null | undefined;
|
|
28425
|
+
gitlab?: {
|
|
28426
|
+
pullRequestUrl: string;
|
|
28427
|
+
} | null | undefined;
|
|
28428
|
+
documentation?: {
|
|
28429
|
+
url: string;
|
|
28430
|
+
} | undefined;
|
|
28431
|
+
error?: string | undefined;
|
|
28432
|
+
logs?: {
|
|
28433
|
+
message: string;
|
|
28434
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28435
|
+
time: Date;
|
|
28436
|
+
id?: string | undefined;
|
|
28437
|
+
}[] | null | undefined;
|
|
28438
|
+
}>;
|
|
28439
|
+
type DTOExportJobResult = z.infer<typeof DTOExportJobResult>;
|
|
28227
28440
|
declare const DTOExportJob: z.ZodObject<{
|
|
28228
28441
|
id: z.ZodString;
|
|
28229
28442
|
createdAt: z.ZodDate;
|
|
@@ -28533,7 +28746,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
28533
28746
|
}>;
|
|
28534
28747
|
exporterId: z.ZodString;
|
|
28535
28748
|
scheduleId: z.ZodOptional<z.ZodString>;
|
|
28536
|
-
result: z.ZodOptional<z.ZodObject<{
|
|
28749
|
+
result: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
28537
28750
|
error: z.ZodOptional<z.ZodString>;
|
|
28538
28751
|
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28539
28752
|
path: string;
|
|
@@ -28611,87 +28824,95 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
28611
28824
|
} | null | undefined>;
|
|
28612
28825
|
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28613
28826
|
message: string;
|
|
28614
|
-
type: "user" | "
|
|
28827
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28615
28828
|
time: Date;
|
|
28616
28829
|
id?: string | undefined;
|
|
28617
28830
|
}[], z.ZodTypeDef, {
|
|
28618
28831
|
message: string;
|
|
28619
|
-
type: "user" | "
|
|
28832
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28620
28833
|
time: Date;
|
|
28621
28834
|
id?: string | undefined;
|
|
28622
28835
|
}[]>>>, {
|
|
28623
28836
|
message: string;
|
|
28624
|
-
type: "user" | "
|
|
28837
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28625
28838
|
time: Date;
|
|
28626
28839
|
id?: string | undefined;
|
|
28627
28840
|
}[] | undefined, {
|
|
28628
28841
|
message: string;
|
|
28629
|
-
type: "user" | "
|
|
28842
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28630
28843
|
time: Date;
|
|
28631
28844
|
id?: string | undefined;
|
|
28632
28845
|
}[] | null | undefined>;
|
|
28633
|
-
}, "
|
|
28634
|
-
|
|
28846
|
+
}, "sndocs">, {
|
|
28847
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
28848
|
+
url: z.ZodString;
|
|
28849
|
+
}, "strip", z.ZodTypeAny, {
|
|
28850
|
+
url: string;
|
|
28851
|
+
}, {
|
|
28852
|
+
url: string;
|
|
28853
|
+
}>>;
|
|
28854
|
+
}>, "strip", z.ZodTypeAny, {
|
|
28855
|
+
s3?: {
|
|
28856
|
+
path: string;
|
|
28857
|
+
files: string[];
|
|
28858
|
+
bucket: string;
|
|
28859
|
+
url?: string | undefined;
|
|
28860
|
+
urlPrefix?: string | undefined;
|
|
28861
|
+
urls?: string[] | undefined;
|
|
28862
|
+
} | undefined;
|
|
28635
28863
|
azure?: {
|
|
28636
28864
|
pullRequestUrl: string;
|
|
28637
28865
|
} | undefined;
|
|
28866
|
+
bitbucket?: {
|
|
28867
|
+
pullRequestUrl: string;
|
|
28868
|
+
} | undefined;
|
|
28638
28869
|
github?: {
|
|
28639
28870
|
pullRequestUrl: string;
|
|
28640
28871
|
} | undefined;
|
|
28641
28872
|
gitlab?: {
|
|
28642
28873
|
pullRequestUrl: string;
|
|
28643
28874
|
} | undefined;
|
|
28644
|
-
|
|
28645
|
-
|
|
28875
|
+
documentation?: {
|
|
28876
|
+
url: string;
|
|
28646
28877
|
} | undefined;
|
|
28878
|
+
error?: string | undefined;
|
|
28647
28879
|
logs?: {
|
|
28648
28880
|
message: string;
|
|
28649
|
-
type: "user" | "
|
|
28881
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28650
28882
|
time: Date;
|
|
28651
28883
|
id?: string | undefined;
|
|
28652
28884
|
}[] | undefined;
|
|
28885
|
+
}, {
|
|
28653
28886
|
s3?: {
|
|
28654
28887
|
path: string;
|
|
28655
28888
|
files: string[];
|
|
28656
28889
|
bucket: string;
|
|
28657
|
-
url?: string | undefined;
|
|
28890
|
+
url?: string | null | undefined;
|
|
28658
28891
|
urlPrefix?: string | undefined;
|
|
28659
|
-
urls?: string[] | undefined;
|
|
28660
|
-
} | undefined;
|
|
28661
|
-
sndocs?: {
|
|
28662
|
-
url: string;
|
|
28663
|
-
} | undefined;
|
|
28664
|
-
}, {
|
|
28665
|
-
error?: string | undefined;
|
|
28892
|
+
urls?: string[] | null | undefined;
|
|
28893
|
+
} | null | undefined;
|
|
28666
28894
|
azure?: {
|
|
28667
28895
|
pullRequestUrl: string;
|
|
28668
28896
|
} | null | undefined;
|
|
28669
|
-
|
|
28897
|
+
bitbucket?: {
|
|
28670
28898
|
pullRequestUrl: string;
|
|
28671
28899
|
} | null | undefined;
|
|
28672
|
-
|
|
28900
|
+
github?: {
|
|
28673
28901
|
pullRequestUrl: string;
|
|
28674
28902
|
} | null | undefined;
|
|
28675
|
-
|
|
28903
|
+
gitlab?: {
|
|
28676
28904
|
pullRequestUrl: string;
|
|
28677
28905
|
} | null | undefined;
|
|
28906
|
+
documentation?: {
|
|
28907
|
+
url: string;
|
|
28908
|
+
} | undefined;
|
|
28909
|
+
error?: string | undefined;
|
|
28678
28910
|
logs?: {
|
|
28679
28911
|
message: string;
|
|
28680
|
-
type: "user" | "
|
|
28912
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28681
28913
|
time: Date;
|
|
28682
28914
|
id?: string | undefined;
|
|
28683
28915
|
}[] | null | undefined;
|
|
28684
|
-
s3?: {
|
|
28685
|
-
path: string;
|
|
28686
|
-
files: string[];
|
|
28687
|
-
bucket: string;
|
|
28688
|
-
url?: string | null | undefined;
|
|
28689
|
-
urlPrefix?: string | undefined;
|
|
28690
|
-
urls?: string[] | null | undefined;
|
|
28691
|
-
} | null | undefined;
|
|
28692
|
-
sndocs?: {
|
|
28693
|
-
url: string;
|
|
28694
|
-
} | null | undefined;
|
|
28695
28916
|
}>>;
|
|
28696
28917
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
28697
28918
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
@@ -28776,36 +28997,36 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
28776
28997
|
} | undefined;
|
|
28777
28998
|
scheduleId?: string | undefined;
|
|
28778
28999
|
result?: {
|
|
28779
|
-
|
|
29000
|
+
s3?: {
|
|
29001
|
+
path: string;
|
|
29002
|
+
files: string[];
|
|
29003
|
+
bucket: string;
|
|
29004
|
+
url?: string | undefined;
|
|
29005
|
+
urlPrefix?: string | undefined;
|
|
29006
|
+
urls?: string[] | undefined;
|
|
29007
|
+
} | undefined;
|
|
28780
29008
|
azure?: {
|
|
28781
29009
|
pullRequestUrl: string;
|
|
28782
29010
|
} | undefined;
|
|
29011
|
+
bitbucket?: {
|
|
29012
|
+
pullRequestUrl: string;
|
|
29013
|
+
} | undefined;
|
|
28783
29014
|
github?: {
|
|
28784
29015
|
pullRequestUrl: string;
|
|
28785
29016
|
} | undefined;
|
|
28786
29017
|
gitlab?: {
|
|
28787
29018
|
pullRequestUrl: string;
|
|
28788
29019
|
} | undefined;
|
|
28789
|
-
|
|
28790
|
-
|
|
29020
|
+
documentation?: {
|
|
29021
|
+
url: string;
|
|
28791
29022
|
} | undefined;
|
|
29023
|
+
error?: string | undefined;
|
|
28792
29024
|
logs?: {
|
|
28793
29025
|
message: string;
|
|
28794
|
-
type: "user" | "
|
|
29026
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28795
29027
|
time: Date;
|
|
28796
29028
|
id?: string | undefined;
|
|
28797
29029
|
}[] | undefined;
|
|
28798
|
-
s3?: {
|
|
28799
|
-
path: string;
|
|
28800
|
-
files: string[];
|
|
28801
|
-
bucket: string;
|
|
28802
|
-
url?: string | undefined;
|
|
28803
|
-
urlPrefix?: string | undefined;
|
|
28804
|
-
urls?: string[] | undefined;
|
|
28805
|
-
} | undefined;
|
|
28806
|
-
sndocs?: {
|
|
28807
|
-
url: string;
|
|
28808
|
-
} | undefined;
|
|
28809
29030
|
} | undefined;
|
|
28810
29031
|
}, {
|
|
28811
29032
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
@@ -28888,36 +29109,36 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
28888
29109
|
} | undefined;
|
|
28889
29110
|
scheduleId?: string | undefined;
|
|
28890
29111
|
result?: {
|
|
28891
|
-
|
|
29112
|
+
s3?: {
|
|
29113
|
+
path: string;
|
|
29114
|
+
files: string[];
|
|
29115
|
+
bucket: string;
|
|
29116
|
+
url?: string | null | undefined;
|
|
29117
|
+
urlPrefix?: string | undefined;
|
|
29118
|
+
urls?: string[] | null | undefined;
|
|
29119
|
+
} | null | undefined;
|
|
28892
29120
|
azure?: {
|
|
28893
29121
|
pullRequestUrl: string;
|
|
28894
29122
|
} | null | undefined;
|
|
28895
|
-
|
|
29123
|
+
bitbucket?: {
|
|
28896
29124
|
pullRequestUrl: string;
|
|
28897
29125
|
} | null | undefined;
|
|
28898
|
-
|
|
29126
|
+
github?: {
|
|
28899
29127
|
pullRequestUrl: string;
|
|
28900
29128
|
} | null | undefined;
|
|
28901
|
-
|
|
29129
|
+
gitlab?: {
|
|
28902
29130
|
pullRequestUrl: string;
|
|
28903
29131
|
} | null | undefined;
|
|
29132
|
+
documentation?: {
|
|
29133
|
+
url: string;
|
|
29134
|
+
} | undefined;
|
|
29135
|
+
error?: string | undefined;
|
|
28904
29136
|
logs?: {
|
|
28905
29137
|
message: string;
|
|
28906
|
-
type: "user" | "
|
|
29138
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28907
29139
|
time: Date;
|
|
28908
29140
|
id?: string | undefined;
|
|
28909
29141
|
}[] | null | undefined;
|
|
28910
|
-
s3?: {
|
|
28911
|
-
path: string;
|
|
28912
|
-
files: string[];
|
|
28913
|
-
bucket: string;
|
|
28914
|
-
url?: string | null | undefined;
|
|
28915
|
-
urlPrefix?: string | undefined;
|
|
28916
|
-
urls?: string[] | null | undefined;
|
|
28917
|
-
} | null | undefined;
|
|
28918
|
-
sndocs?: {
|
|
28919
|
-
url: string;
|
|
28920
|
-
} | null | undefined;
|
|
28921
29142
|
} | undefined;
|
|
28922
29143
|
}>;
|
|
28923
29144
|
type DTOExportJob = z.infer<typeof DTOExportJob>;
|
|
@@ -29231,7 +29452,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29231
29452
|
}>;
|
|
29232
29453
|
exporterId: z.ZodString;
|
|
29233
29454
|
scheduleId: z.ZodOptional<z.ZodString>;
|
|
29234
|
-
result: z.ZodOptional<z.ZodObject<{
|
|
29455
|
+
result: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
29235
29456
|
error: z.ZodOptional<z.ZodString>;
|
|
29236
29457
|
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
29237
29458
|
path: string;
|
|
@@ -29309,87 +29530,95 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29309
29530
|
} | null | undefined>;
|
|
29310
29531
|
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
29311
29532
|
message: string;
|
|
29312
|
-
type: "user" | "
|
|
29533
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29313
29534
|
time: Date;
|
|
29314
29535
|
id?: string | undefined;
|
|
29315
29536
|
}[], z.ZodTypeDef, {
|
|
29316
29537
|
message: string;
|
|
29317
|
-
type: "user" | "
|
|
29538
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29318
29539
|
time: Date;
|
|
29319
29540
|
id?: string | undefined;
|
|
29320
29541
|
}[]>>>, {
|
|
29321
29542
|
message: string;
|
|
29322
|
-
type: "user" | "
|
|
29543
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29323
29544
|
time: Date;
|
|
29324
29545
|
id?: string | undefined;
|
|
29325
29546
|
}[] | undefined, {
|
|
29326
29547
|
message: string;
|
|
29327
|
-
type: "user" | "
|
|
29548
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29328
29549
|
time: Date;
|
|
29329
29550
|
id?: string | undefined;
|
|
29330
29551
|
}[] | null | undefined>;
|
|
29331
|
-
}, "
|
|
29332
|
-
|
|
29552
|
+
}, "sndocs">, {
|
|
29553
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
29554
|
+
url: z.ZodString;
|
|
29555
|
+
}, "strip", z.ZodTypeAny, {
|
|
29556
|
+
url: string;
|
|
29557
|
+
}, {
|
|
29558
|
+
url: string;
|
|
29559
|
+
}>>;
|
|
29560
|
+
}>, "strip", z.ZodTypeAny, {
|
|
29561
|
+
s3?: {
|
|
29562
|
+
path: string;
|
|
29563
|
+
files: string[];
|
|
29564
|
+
bucket: string;
|
|
29565
|
+
url?: string | undefined;
|
|
29566
|
+
urlPrefix?: string | undefined;
|
|
29567
|
+
urls?: string[] | undefined;
|
|
29568
|
+
} | undefined;
|
|
29333
29569
|
azure?: {
|
|
29334
29570
|
pullRequestUrl: string;
|
|
29335
29571
|
} | undefined;
|
|
29572
|
+
bitbucket?: {
|
|
29573
|
+
pullRequestUrl: string;
|
|
29574
|
+
} | undefined;
|
|
29336
29575
|
github?: {
|
|
29337
29576
|
pullRequestUrl: string;
|
|
29338
29577
|
} | undefined;
|
|
29339
29578
|
gitlab?: {
|
|
29340
29579
|
pullRequestUrl: string;
|
|
29341
29580
|
} | undefined;
|
|
29342
|
-
|
|
29343
|
-
|
|
29581
|
+
documentation?: {
|
|
29582
|
+
url: string;
|
|
29344
29583
|
} | undefined;
|
|
29584
|
+
error?: string | undefined;
|
|
29345
29585
|
logs?: {
|
|
29346
29586
|
message: string;
|
|
29347
|
-
type: "user" | "
|
|
29587
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29348
29588
|
time: Date;
|
|
29349
29589
|
id?: string | undefined;
|
|
29350
29590
|
}[] | undefined;
|
|
29591
|
+
}, {
|
|
29351
29592
|
s3?: {
|
|
29352
29593
|
path: string;
|
|
29353
29594
|
files: string[];
|
|
29354
29595
|
bucket: string;
|
|
29355
|
-
url?: string | undefined;
|
|
29596
|
+
url?: string | null | undefined;
|
|
29356
29597
|
urlPrefix?: string | undefined;
|
|
29357
|
-
urls?: string[] | undefined;
|
|
29358
|
-
} | undefined;
|
|
29359
|
-
sndocs?: {
|
|
29360
|
-
url: string;
|
|
29361
|
-
} | undefined;
|
|
29362
|
-
}, {
|
|
29363
|
-
error?: string | undefined;
|
|
29598
|
+
urls?: string[] | null | undefined;
|
|
29599
|
+
} | null | undefined;
|
|
29364
29600
|
azure?: {
|
|
29365
29601
|
pullRequestUrl: string;
|
|
29366
29602
|
} | null | undefined;
|
|
29367
|
-
|
|
29603
|
+
bitbucket?: {
|
|
29368
29604
|
pullRequestUrl: string;
|
|
29369
29605
|
} | null | undefined;
|
|
29370
|
-
|
|
29606
|
+
github?: {
|
|
29371
29607
|
pullRequestUrl: string;
|
|
29372
29608
|
} | null | undefined;
|
|
29373
|
-
|
|
29609
|
+
gitlab?: {
|
|
29374
29610
|
pullRequestUrl: string;
|
|
29375
29611
|
} | null | undefined;
|
|
29612
|
+
documentation?: {
|
|
29613
|
+
url: string;
|
|
29614
|
+
} | undefined;
|
|
29615
|
+
error?: string | undefined;
|
|
29376
29616
|
logs?: {
|
|
29377
29617
|
message: string;
|
|
29378
|
-
type: "user" | "
|
|
29618
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29379
29619
|
time: Date;
|
|
29380
29620
|
id?: string | undefined;
|
|
29381
29621
|
}[] | null | undefined;
|
|
29382
|
-
s3?: {
|
|
29383
|
-
path: string;
|
|
29384
|
-
files: string[];
|
|
29385
|
-
bucket: string;
|
|
29386
|
-
url?: string | null | undefined;
|
|
29387
|
-
urlPrefix?: string | undefined;
|
|
29388
|
-
urls?: string[] | null | undefined;
|
|
29389
|
-
} | null | undefined;
|
|
29390
|
-
sndocs?: {
|
|
29391
|
-
url: string;
|
|
29392
|
-
} | null | undefined;
|
|
29393
29622
|
}>>;
|
|
29394
29623
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
29395
29624
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
@@ -29474,36 +29703,36 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29474
29703
|
} | undefined;
|
|
29475
29704
|
scheduleId?: string | undefined;
|
|
29476
29705
|
result?: {
|
|
29477
|
-
|
|
29706
|
+
s3?: {
|
|
29707
|
+
path: string;
|
|
29708
|
+
files: string[];
|
|
29709
|
+
bucket: string;
|
|
29710
|
+
url?: string | undefined;
|
|
29711
|
+
urlPrefix?: string | undefined;
|
|
29712
|
+
urls?: string[] | undefined;
|
|
29713
|
+
} | undefined;
|
|
29478
29714
|
azure?: {
|
|
29479
29715
|
pullRequestUrl: string;
|
|
29480
29716
|
} | undefined;
|
|
29717
|
+
bitbucket?: {
|
|
29718
|
+
pullRequestUrl: string;
|
|
29719
|
+
} | undefined;
|
|
29481
29720
|
github?: {
|
|
29482
29721
|
pullRequestUrl: string;
|
|
29483
29722
|
} | undefined;
|
|
29484
29723
|
gitlab?: {
|
|
29485
29724
|
pullRequestUrl: string;
|
|
29486
29725
|
} | undefined;
|
|
29487
|
-
|
|
29488
|
-
|
|
29726
|
+
documentation?: {
|
|
29727
|
+
url: string;
|
|
29489
29728
|
} | undefined;
|
|
29729
|
+
error?: string | undefined;
|
|
29490
29730
|
logs?: {
|
|
29491
29731
|
message: string;
|
|
29492
|
-
type: "user" | "
|
|
29732
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29493
29733
|
time: Date;
|
|
29494
29734
|
id?: string | undefined;
|
|
29495
29735
|
}[] | undefined;
|
|
29496
|
-
s3?: {
|
|
29497
|
-
path: string;
|
|
29498
|
-
files: string[];
|
|
29499
|
-
bucket: string;
|
|
29500
|
-
url?: string | undefined;
|
|
29501
|
-
urlPrefix?: string | undefined;
|
|
29502
|
-
urls?: string[] | undefined;
|
|
29503
|
-
} | undefined;
|
|
29504
|
-
sndocs?: {
|
|
29505
|
-
url: string;
|
|
29506
|
-
} | undefined;
|
|
29507
29736
|
} | undefined;
|
|
29508
29737
|
}, {
|
|
29509
29738
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
@@ -29586,36 +29815,36 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29586
29815
|
} | undefined;
|
|
29587
29816
|
scheduleId?: string | undefined;
|
|
29588
29817
|
result?: {
|
|
29589
|
-
|
|
29818
|
+
s3?: {
|
|
29819
|
+
path: string;
|
|
29820
|
+
files: string[];
|
|
29821
|
+
bucket: string;
|
|
29822
|
+
url?: string | null | undefined;
|
|
29823
|
+
urlPrefix?: string | undefined;
|
|
29824
|
+
urls?: string[] | null | undefined;
|
|
29825
|
+
} | null | undefined;
|
|
29590
29826
|
azure?: {
|
|
29591
29827
|
pullRequestUrl: string;
|
|
29592
29828
|
} | null | undefined;
|
|
29593
|
-
|
|
29829
|
+
bitbucket?: {
|
|
29594
29830
|
pullRequestUrl: string;
|
|
29595
29831
|
} | null | undefined;
|
|
29596
|
-
|
|
29832
|
+
github?: {
|
|
29597
29833
|
pullRequestUrl: string;
|
|
29598
29834
|
} | null | undefined;
|
|
29599
|
-
|
|
29835
|
+
gitlab?: {
|
|
29600
29836
|
pullRequestUrl: string;
|
|
29601
29837
|
} | null | undefined;
|
|
29838
|
+
documentation?: {
|
|
29839
|
+
url: string;
|
|
29840
|
+
} | undefined;
|
|
29841
|
+
error?: string | undefined;
|
|
29602
29842
|
logs?: {
|
|
29603
29843
|
message: string;
|
|
29604
|
-
type: "user" | "
|
|
29844
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29605
29845
|
time: Date;
|
|
29606
29846
|
id?: string | undefined;
|
|
29607
29847
|
}[] | null | undefined;
|
|
29608
|
-
s3?: {
|
|
29609
|
-
path: string;
|
|
29610
|
-
files: string[];
|
|
29611
|
-
bucket: string;
|
|
29612
|
-
url?: string | null | undefined;
|
|
29613
|
-
urlPrefix?: string | undefined;
|
|
29614
|
-
urls?: string[] | null | undefined;
|
|
29615
|
-
} | null | undefined;
|
|
29616
|
-
sndocs?: {
|
|
29617
|
-
url: string;
|
|
29618
|
-
} | null | undefined;
|
|
29619
29848
|
} | undefined;
|
|
29620
29849
|
}>;
|
|
29621
29850
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -29700,36 +29929,36 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29700
29929
|
} | undefined;
|
|
29701
29930
|
scheduleId?: string | undefined;
|
|
29702
29931
|
result?: {
|
|
29703
|
-
|
|
29932
|
+
s3?: {
|
|
29933
|
+
path: string;
|
|
29934
|
+
files: string[];
|
|
29935
|
+
bucket: string;
|
|
29936
|
+
url?: string | undefined;
|
|
29937
|
+
urlPrefix?: string | undefined;
|
|
29938
|
+
urls?: string[] | undefined;
|
|
29939
|
+
} | undefined;
|
|
29704
29940
|
azure?: {
|
|
29705
29941
|
pullRequestUrl: string;
|
|
29706
29942
|
} | undefined;
|
|
29943
|
+
bitbucket?: {
|
|
29944
|
+
pullRequestUrl: string;
|
|
29945
|
+
} | undefined;
|
|
29707
29946
|
github?: {
|
|
29708
29947
|
pullRequestUrl: string;
|
|
29709
29948
|
} | undefined;
|
|
29710
29949
|
gitlab?: {
|
|
29711
29950
|
pullRequestUrl: string;
|
|
29712
29951
|
} | undefined;
|
|
29713
|
-
|
|
29714
|
-
|
|
29952
|
+
documentation?: {
|
|
29953
|
+
url: string;
|
|
29715
29954
|
} | undefined;
|
|
29955
|
+
error?: string | undefined;
|
|
29716
29956
|
logs?: {
|
|
29717
29957
|
message: string;
|
|
29718
|
-
type: "user" | "
|
|
29958
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29719
29959
|
time: Date;
|
|
29720
29960
|
id?: string | undefined;
|
|
29721
29961
|
}[] | undefined;
|
|
29722
|
-
s3?: {
|
|
29723
|
-
path: string;
|
|
29724
|
-
files: string[];
|
|
29725
|
-
bucket: string;
|
|
29726
|
-
url?: string | undefined;
|
|
29727
|
-
urlPrefix?: string | undefined;
|
|
29728
|
-
urls?: string[] | undefined;
|
|
29729
|
-
} | undefined;
|
|
29730
|
-
sndocs?: {
|
|
29731
|
-
url: string;
|
|
29732
|
-
} | undefined;
|
|
29733
29962
|
} | undefined;
|
|
29734
29963
|
};
|
|
29735
29964
|
}, {
|
|
@@ -29814,36 +30043,36 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29814
30043
|
} | undefined;
|
|
29815
30044
|
scheduleId?: string | undefined;
|
|
29816
30045
|
result?: {
|
|
29817
|
-
|
|
30046
|
+
s3?: {
|
|
30047
|
+
path: string;
|
|
30048
|
+
files: string[];
|
|
30049
|
+
bucket: string;
|
|
30050
|
+
url?: string | null | undefined;
|
|
30051
|
+
urlPrefix?: string | undefined;
|
|
30052
|
+
urls?: string[] | null | undefined;
|
|
30053
|
+
} | null | undefined;
|
|
29818
30054
|
azure?: {
|
|
29819
30055
|
pullRequestUrl: string;
|
|
29820
30056
|
} | null | undefined;
|
|
29821
|
-
|
|
30057
|
+
bitbucket?: {
|
|
29822
30058
|
pullRequestUrl: string;
|
|
29823
30059
|
} | null | undefined;
|
|
29824
|
-
|
|
30060
|
+
github?: {
|
|
29825
30061
|
pullRequestUrl: string;
|
|
29826
30062
|
} | null | undefined;
|
|
29827
|
-
|
|
30063
|
+
gitlab?: {
|
|
29828
30064
|
pullRequestUrl: string;
|
|
29829
30065
|
} | null | undefined;
|
|
30066
|
+
documentation?: {
|
|
30067
|
+
url: string;
|
|
30068
|
+
} | undefined;
|
|
30069
|
+
error?: string | undefined;
|
|
29830
30070
|
logs?: {
|
|
29831
30071
|
message: string;
|
|
29832
|
-
type: "user" | "
|
|
30072
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29833
30073
|
time: Date;
|
|
29834
30074
|
id?: string | undefined;
|
|
29835
30075
|
}[] | null | undefined;
|
|
29836
|
-
s3?: {
|
|
29837
|
-
path: string;
|
|
29838
|
-
files: string[];
|
|
29839
|
-
bucket: string;
|
|
29840
|
-
url?: string | null | undefined;
|
|
29841
|
-
urlPrefix?: string | undefined;
|
|
29842
|
-
urls?: string[] | null | undefined;
|
|
29843
|
-
} | null | undefined;
|
|
29844
|
-
sndocs?: {
|
|
29845
|
-
url: string;
|
|
29846
|
-
} | null | undefined;
|
|
29847
30076
|
} | undefined;
|
|
29848
30077
|
};
|
|
29849
30078
|
}>;
|
|
@@ -30159,7 +30388,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30159
30388
|
}>;
|
|
30160
30389
|
exporterId: z.ZodString;
|
|
30161
30390
|
scheduleId: z.ZodOptional<z.ZodString>;
|
|
30162
|
-
result: z.ZodOptional<z.ZodObject<{
|
|
30391
|
+
result: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
30163
30392
|
error: z.ZodOptional<z.ZodString>;
|
|
30164
30393
|
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
30165
30394
|
path: string;
|
|
@@ -30237,87 +30466,95 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30237
30466
|
} | null | undefined>;
|
|
30238
30467
|
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
30239
30468
|
message: string;
|
|
30240
|
-
type: "user" | "
|
|
30469
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30241
30470
|
time: Date;
|
|
30242
30471
|
id?: string | undefined;
|
|
30243
30472
|
}[], z.ZodTypeDef, {
|
|
30244
30473
|
message: string;
|
|
30245
|
-
type: "user" | "
|
|
30474
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30246
30475
|
time: Date;
|
|
30247
30476
|
id?: string | undefined;
|
|
30248
30477
|
}[]>>>, {
|
|
30249
30478
|
message: string;
|
|
30250
|
-
type: "user" | "
|
|
30479
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30251
30480
|
time: Date;
|
|
30252
30481
|
id?: string | undefined;
|
|
30253
30482
|
}[] | undefined, {
|
|
30254
30483
|
message: string;
|
|
30255
|
-
type: "user" | "
|
|
30484
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30256
30485
|
time: Date;
|
|
30257
30486
|
id?: string | undefined;
|
|
30258
30487
|
}[] | null | undefined>;
|
|
30259
|
-
}, "
|
|
30260
|
-
|
|
30488
|
+
}, "sndocs">, {
|
|
30489
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
30490
|
+
url: z.ZodString;
|
|
30491
|
+
}, "strip", z.ZodTypeAny, {
|
|
30492
|
+
url: string;
|
|
30493
|
+
}, {
|
|
30494
|
+
url: string;
|
|
30495
|
+
}>>;
|
|
30496
|
+
}>, "strip", z.ZodTypeAny, {
|
|
30497
|
+
s3?: {
|
|
30498
|
+
path: string;
|
|
30499
|
+
files: string[];
|
|
30500
|
+
bucket: string;
|
|
30501
|
+
url?: string | undefined;
|
|
30502
|
+
urlPrefix?: string | undefined;
|
|
30503
|
+
urls?: string[] | undefined;
|
|
30504
|
+
} | undefined;
|
|
30261
30505
|
azure?: {
|
|
30262
30506
|
pullRequestUrl: string;
|
|
30263
30507
|
} | undefined;
|
|
30508
|
+
bitbucket?: {
|
|
30509
|
+
pullRequestUrl: string;
|
|
30510
|
+
} | undefined;
|
|
30264
30511
|
github?: {
|
|
30265
30512
|
pullRequestUrl: string;
|
|
30266
30513
|
} | undefined;
|
|
30267
30514
|
gitlab?: {
|
|
30268
30515
|
pullRequestUrl: string;
|
|
30269
30516
|
} | undefined;
|
|
30270
|
-
|
|
30271
|
-
|
|
30517
|
+
documentation?: {
|
|
30518
|
+
url: string;
|
|
30272
30519
|
} | undefined;
|
|
30520
|
+
error?: string | undefined;
|
|
30273
30521
|
logs?: {
|
|
30274
30522
|
message: string;
|
|
30275
|
-
type: "user" | "
|
|
30523
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30276
30524
|
time: Date;
|
|
30277
30525
|
id?: string | undefined;
|
|
30278
30526
|
}[] | undefined;
|
|
30527
|
+
}, {
|
|
30279
30528
|
s3?: {
|
|
30280
30529
|
path: string;
|
|
30281
30530
|
files: string[];
|
|
30282
30531
|
bucket: string;
|
|
30283
|
-
url?: string | undefined;
|
|
30532
|
+
url?: string | null | undefined;
|
|
30284
30533
|
urlPrefix?: string | undefined;
|
|
30285
|
-
urls?: string[] | undefined;
|
|
30286
|
-
} | undefined;
|
|
30287
|
-
sndocs?: {
|
|
30288
|
-
url: string;
|
|
30289
|
-
} | undefined;
|
|
30290
|
-
}, {
|
|
30291
|
-
error?: string | undefined;
|
|
30534
|
+
urls?: string[] | null | undefined;
|
|
30535
|
+
} | null | undefined;
|
|
30292
30536
|
azure?: {
|
|
30293
30537
|
pullRequestUrl: string;
|
|
30294
30538
|
} | null | undefined;
|
|
30295
|
-
|
|
30539
|
+
bitbucket?: {
|
|
30296
30540
|
pullRequestUrl: string;
|
|
30297
30541
|
} | null | undefined;
|
|
30298
|
-
|
|
30542
|
+
github?: {
|
|
30299
30543
|
pullRequestUrl: string;
|
|
30300
30544
|
} | null | undefined;
|
|
30301
|
-
|
|
30545
|
+
gitlab?: {
|
|
30302
30546
|
pullRequestUrl: string;
|
|
30303
30547
|
} | null | undefined;
|
|
30548
|
+
documentation?: {
|
|
30549
|
+
url: string;
|
|
30550
|
+
} | undefined;
|
|
30551
|
+
error?: string | undefined;
|
|
30304
30552
|
logs?: {
|
|
30305
30553
|
message: string;
|
|
30306
|
-
type: "user" | "
|
|
30554
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30307
30555
|
time: Date;
|
|
30308
30556
|
id?: string | undefined;
|
|
30309
30557
|
}[] | null | undefined;
|
|
30310
|
-
s3?: {
|
|
30311
|
-
path: string;
|
|
30312
|
-
files: string[];
|
|
30313
|
-
bucket: string;
|
|
30314
|
-
url?: string | null | undefined;
|
|
30315
|
-
urlPrefix?: string | undefined;
|
|
30316
|
-
urls?: string[] | null | undefined;
|
|
30317
|
-
} | null | undefined;
|
|
30318
|
-
sndocs?: {
|
|
30319
|
-
url: string;
|
|
30320
|
-
} | null | undefined;
|
|
30321
30558
|
}>>;
|
|
30322
30559
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
30323
30560
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
@@ -30402,36 +30639,36 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30402
30639
|
} | undefined;
|
|
30403
30640
|
scheduleId?: string | undefined;
|
|
30404
30641
|
result?: {
|
|
30405
|
-
|
|
30642
|
+
s3?: {
|
|
30643
|
+
path: string;
|
|
30644
|
+
files: string[];
|
|
30645
|
+
bucket: string;
|
|
30646
|
+
url?: string | undefined;
|
|
30647
|
+
urlPrefix?: string | undefined;
|
|
30648
|
+
urls?: string[] | undefined;
|
|
30649
|
+
} | undefined;
|
|
30406
30650
|
azure?: {
|
|
30407
30651
|
pullRequestUrl: string;
|
|
30408
30652
|
} | undefined;
|
|
30653
|
+
bitbucket?: {
|
|
30654
|
+
pullRequestUrl: string;
|
|
30655
|
+
} | undefined;
|
|
30409
30656
|
github?: {
|
|
30410
30657
|
pullRequestUrl: string;
|
|
30411
30658
|
} | undefined;
|
|
30412
30659
|
gitlab?: {
|
|
30413
30660
|
pullRequestUrl: string;
|
|
30414
30661
|
} | undefined;
|
|
30415
|
-
|
|
30416
|
-
|
|
30662
|
+
documentation?: {
|
|
30663
|
+
url: string;
|
|
30417
30664
|
} | undefined;
|
|
30665
|
+
error?: string | undefined;
|
|
30418
30666
|
logs?: {
|
|
30419
30667
|
message: string;
|
|
30420
|
-
type: "user" | "
|
|
30668
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30421
30669
|
time: Date;
|
|
30422
30670
|
id?: string | undefined;
|
|
30423
30671
|
}[] | undefined;
|
|
30424
|
-
s3?: {
|
|
30425
|
-
path: string;
|
|
30426
|
-
files: string[];
|
|
30427
|
-
bucket: string;
|
|
30428
|
-
url?: string | undefined;
|
|
30429
|
-
urlPrefix?: string | undefined;
|
|
30430
|
-
urls?: string[] | undefined;
|
|
30431
|
-
} | undefined;
|
|
30432
|
-
sndocs?: {
|
|
30433
|
-
url: string;
|
|
30434
|
-
} | undefined;
|
|
30435
30672
|
} | undefined;
|
|
30436
30673
|
}, {
|
|
30437
30674
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
@@ -30514,36 +30751,36 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30514
30751
|
} | undefined;
|
|
30515
30752
|
scheduleId?: string | undefined;
|
|
30516
30753
|
result?: {
|
|
30517
|
-
|
|
30754
|
+
s3?: {
|
|
30755
|
+
path: string;
|
|
30756
|
+
files: string[];
|
|
30757
|
+
bucket: string;
|
|
30758
|
+
url?: string | null | undefined;
|
|
30759
|
+
urlPrefix?: string | undefined;
|
|
30760
|
+
urls?: string[] | null | undefined;
|
|
30761
|
+
} | null | undefined;
|
|
30518
30762
|
azure?: {
|
|
30519
30763
|
pullRequestUrl: string;
|
|
30520
30764
|
} | null | undefined;
|
|
30521
|
-
|
|
30765
|
+
bitbucket?: {
|
|
30522
30766
|
pullRequestUrl: string;
|
|
30523
30767
|
} | null | undefined;
|
|
30524
|
-
|
|
30768
|
+
github?: {
|
|
30525
30769
|
pullRequestUrl: string;
|
|
30526
30770
|
} | null | undefined;
|
|
30527
|
-
|
|
30771
|
+
gitlab?: {
|
|
30528
30772
|
pullRequestUrl: string;
|
|
30529
30773
|
} | null | undefined;
|
|
30774
|
+
documentation?: {
|
|
30775
|
+
url: string;
|
|
30776
|
+
} | undefined;
|
|
30777
|
+
error?: string | undefined;
|
|
30530
30778
|
logs?: {
|
|
30531
30779
|
message: string;
|
|
30532
|
-
type: "user" | "
|
|
30780
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30533
30781
|
time: Date;
|
|
30534
30782
|
id?: string | undefined;
|
|
30535
30783
|
}[] | null | undefined;
|
|
30536
|
-
s3?: {
|
|
30537
|
-
path: string;
|
|
30538
|
-
files: string[];
|
|
30539
|
-
bucket: string;
|
|
30540
|
-
url?: string | null | undefined;
|
|
30541
|
-
urlPrefix?: string | undefined;
|
|
30542
|
-
urls?: string[] | null | undefined;
|
|
30543
|
-
} | null | undefined;
|
|
30544
|
-
sndocs?: {
|
|
30545
|
-
url: string;
|
|
30546
|
-
} | null | undefined;
|
|
30547
30784
|
} | undefined;
|
|
30548
30785
|
}>, "many">;
|
|
30549
30786
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -30780,36 +31017,36 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30780
31017
|
} | undefined;
|
|
30781
31018
|
scheduleId?: string | undefined;
|
|
30782
31019
|
result?: {
|
|
30783
|
-
|
|
31020
|
+
s3?: {
|
|
31021
|
+
path: string;
|
|
31022
|
+
files: string[];
|
|
31023
|
+
bucket: string;
|
|
31024
|
+
url?: string | undefined;
|
|
31025
|
+
urlPrefix?: string | undefined;
|
|
31026
|
+
urls?: string[] | undefined;
|
|
31027
|
+
} | undefined;
|
|
30784
31028
|
azure?: {
|
|
30785
31029
|
pullRequestUrl: string;
|
|
30786
31030
|
} | undefined;
|
|
31031
|
+
bitbucket?: {
|
|
31032
|
+
pullRequestUrl: string;
|
|
31033
|
+
} | undefined;
|
|
30787
31034
|
github?: {
|
|
30788
31035
|
pullRequestUrl: string;
|
|
30789
31036
|
} | undefined;
|
|
30790
31037
|
gitlab?: {
|
|
30791
31038
|
pullRequestUrl: string;
|
|
30792
31039
|
} | undefined;
|
|
30793
|
-
|
|
30794
|
-
|
|
31040
|
+
documentation?: {
|
|
31041
|
+
url: string;
|
|
30795
31042
|
} | undefined;
|
|
31043
|
+
error?: string | undefined;
|
|
30796
31044
|
logs?: {
|
|
30797
31045
|
message: string;
|
|
30798
|
-
type: "user" | "
|
|
31046
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30799
31047
|
time: Date;
|
|
30800
31048
|
id?: string | undefined;
|
|
30801
31049
|
}[] | undefined;
|
|
30802
|
-
s3?: {
|
|
30803
|
-
path: string;
|
|
30804
|
-
files: string[];
|
|
30805
|
-
bucket: string;
|
|
30806
|
-
url?: string | undefined;
|
|
30807
|
-
urlPrefix?: string | undefined;
|
|
30808
|
-
urls?: string[] | undefined;
|
|
30809
|
-
} | undefined;
|
|
30810
|
-
sndocs?: {
|
|
30811
|
-
url: string;
|
|
30812
|
-
} | undefined;
|
|
30813
31050
|
} | undefined;
|
|
30814
31051
|
}[];
|
|
30815
31052
|
brandPersistentId?: string | undefined;
|
|
@@ -30950,36 +31187,36 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30950
31187
|
} | undefined;
|
|
30951
31188
|
scheduleId?: string | undefined;
|
|
30952
31189
|
result?: {
|
|
30953
|
-
|
|
31190
|
+
s3?: {
|
|
31191
|
+
path: string;
|
|
31192
|
+
files: string[];
|
|
31193
|
+
bucket: string;
|
|
31194
|
+
url?: string | null | undefined;
|
|
31195
|
+
urlPrefix?: string | undefined;
|
|
31196
|
+
urls?: string[] | null | undefined;
|
|
31197
|
+
} | null | undefined;
|
|
30954
31198
|
azure?: {
|
|
30955
31199
|
pullRequestUrl: string;
|
|
30956
31200
|
} | null | undefined;
|
|
30957
|
-
|
|
31201
|
+
bitbucket?: {
|
|
30958
31202
|
pullRequestUrl: string;
|
|
30959
31203
|
} | null | undefined;
|
|
30960
|
-
|
|
31204
|
+
github?: {
|
|
30961
31205
|
pullRequestUrl: string;
|
|
30962
31206
|
} | null | undefined;
|
|
30963
|
-
|
|
31207
|
+
gitlab?: {
|
|
30964
31208
|
pullRequestUrl: string;
|
|
30965
31209
|
} | null | undefined;
|
|
31210
|
+
documentation?: {
|
|
31211
|
+
url: string;
|
|
31212
|
+
} | undefined;
|
|
31213
|
+
error?: string | undefined;
|
|
30966
31214
|
logs?: {
|
|
30967
31215
|
message: string;
|
|
30968
|
-
type: "user" | "
|
|
31216
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30969
31217
|
time: Date;
|
|
30970
31218
|
id?: string | undefined;
|
|
30971
31219
|
}[] | null | undefined;
|
|
30972
|
-
s3?: {
|
|
30973
|
-
path: string;
|
|
30974
|
-
files: string[];
|
|
30975
|
-
bucket: string;
|
|
30976
|
-
url?: string | null | undefined;
|
|
30977
|
-
urlPrefix?: string | undefined;
|
|
30978
|
-
urls?: string[] | null | undefined;
|
|
30979
|
-
} | null | undefined;
|
|
30980
|
-
sndocs?: {
|
|
30981
|
-
url: string;
|
|
30982
|
-
} | null | undefined;
|
|
30983
31220
|
} | undefined;
|
|
30984
31221
|
}[];
|
|
30985
31222
|
brandPersistentId?: string | undefined;
|
|
@@ -42292,4 +42529,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
42292
42529
|
|
|
42293
42530
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, debug?: boolean): string;
|
|
42294
42531
|
|
|
42295
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
42532
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|