@supernova-studio/client 0.48.16 → 0.48.18
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 +551 -350
- package/dist/index.d.ts +551 -350
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/export/job.ts +9 -1
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
|
}>;
|
|
@@ -28260,6 +28268,175 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28260
28268
|
webhookUrl?: string | undefined;
|
|
28261
28269
|
}>;
|
|
28262
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>;
|
|
28263
28440
|
declare const DTOExportJob: z.ZodObject<{
|
|
28264
28441
|
id: z.ZodString;
|
|
28265
28442
|
createdAt: z.ZodDate;
|
|
@@ -28569,7 +28746,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
28569
28746
|
}>;
|
|
28570
28747
|
exporterId: z.ZodString;
|
|
28571
28748
|
scheduleId: z.ZodOptional<z.ZodString>;
|
|
28572
|
-
result: z.ZodOptional<z.ZodObject<{
|
|
28749
|
+
result: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
28573
28750
|
error: z.ZodOptional<z.ZodString>;
|
|
28574
28751
|
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28575
28752
|
path: string;
|
|
@@ -28647,87 +28824,95 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
28647
28824
|
} | null | undefined>;
|
|
28648
28825
|
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
28649
28826
|
message: string;
|
|
28650
|
-
type: "user" | "
|
|
28827
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28651
28828
|
time: Date;
|
|
28652
28829
|
id?: string | undefined;
|
|
28653
28830
|
}[], z.ZodTypeDef, {
|
|
28654
28831
|
message: string;
|
|
28655
|
-
type: "user" | "
|
|
28832
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28656
28833
|
time: Date;
|
|
28657
28834
|
id?: string | undefined;
|
|
28658
28835
|
}[]>>>, {
|
|
28659
28836
|
message: string;
|
|
28660
|
-
type: "user" | "
|
|
28837
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28661
28838
|
time: Date;
|
|
28662
28839
|
id?: string | undefined;
|
|
28663
28840
|
}[] | undefined, {
|
|
28664
28841
|
message: string;
|
|
28665
|
-
type: "user" | "
|
|
28842
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28666
28843
|
time: Date;
|
|
28667
28844
|
id?: string | undefined;
|
|
28668
28845
|
}[] | null | undefined>;
|
|
28669
|
-
}, "
|
|
28670
|
-
|
|
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;
|
|
28671
28863
|
azure?: {
|
|
28672
28864
|
pullRequestUrl: string;
|
|
28673
28865
|
} | undefined;
|
|
28866
|
+
bitbucket?: {
|
|
28867
|
+
pullRequestUrl: string;
|
|
28868
|
+
} | undefined;
|
|
28674
28869
|
github?: {
|
|
28675
28870
|
pullRequestUrl: string;
|
|
28676
28871
|
} | undefined;
|
|
28677
28872
|
gitlab?: {
|
|
28678
28873
|
pullRequestUrl: string;
|
|
28679
28874
|
} | undefined;
|
|
28680
|
-
|
|
28681
|
-
|
|
28875
|
+
documentation?: {
|
|
28876
|
+
url: string;
|
|
28682
28877
|
} | undefined;
|
|
28878
|
+
error?: string | undefined;
|
|
28683
28879
|
logs?: {
|
|
28684
28880
|
message: string;
|
|
28685
|
-
type: "user" | "
|
|
28881
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28686
28882
|
time: Date;
|
|
28687
28883
|
id?: string | undefined;
|
|
28688
28884
|
}[] | undefined;
|
|
28885
|
+
}, {
|
|
28689
28886
|
s3?: {
|
|
28690
28887
|
path: string;
|
|
28691
28888
|
files: string[];
|
|
28692
28889
|
bucket: string;
|
|
28693
|
-
url?: string | undefined;
|
|
28890
|
+
url?: string | null | undefined;
|
|
28694
28891
|
urlPrefix?: string | undefined;
|
|
28695
|
-
urls?: string[] | undefined;
|
|
28696
|
-
} | undefined;
|
|
28697
|
-
sndocs?: {
|
|
28698
|
-
url: string;
|
|
28699
|
-
} | undefined;
|
|
28700
|
-
}, {
|
|
28701
|
-
error?: string | undefined;
|
|
28892
|
+
urls?: string[] | null | undefined;
|
|
28893
|
+
} | null | undefined;
|
|
28702
28894
|
azure?: {
|
|
28703
28895
|
pullRequestUrl: string;
|
|
28704
28896
|
} | null | undefined;
|
|
28705
|
-
|
|
28897
|
+
bitbucket?: {
|
|
28706
28898
|
pullRequestUrl: string;
|
|
28707
28899
|
} | null | undefined;
|
|
28708
|
-
|
|
28900
|
+
github?: {
|
|
28709
28901
|
pullRequestUrl: string;
|
|
28710
28902
|
} | null | undefined;
|
|
28711
|
-
|
|
28903
|
+
gitlab?: {
|
|
28712
28904
|
pullRequestUrl: string;
|
|
28713
28905
|
} | null | undefined;
|
|
28906
|
+
documentation?: {
|
|
28907
|
+
url: string;
|
|
28908
|
+
} | undefined;
|
|
28909
|
+
error?: string | undefined;
|
|
28714
28910
|
logs?: {
|
|
28715
28911
|
message: string;
|
|
28716
|
-
type: "user" | "
|
|
28912
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28717
28913
|
time: Date;
|
|
28718
28914
|
id?: string | undefined;
|
|
28719
28915
|
}[] | null | undefined;
|
|
28720
|
-
s3?: {
|
|
28721
|
-
path: string;
|
|
28722
|
-
files: string[];
|
|
28723
|
-
bucket: string;
|
|
28724
|
-
url?: string | null | undefined;
|
|
28725
|
-
urlPrefix?: string | undefined;
|
|
28726
|
-
urls?: string[] | null | undefined;
|
|
28727
|
-
} | null | undefined;
|
|
28728
|
-
sndocs?: {
|
|
28729
|
-
url: string;
|
|
28730
|
-
} | null | undefined;
|
|
28731
28916
|
}>>;
|
|
28732
28917
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
28733
28918
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
@@ -28812,36 +28997,36 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
28812
28997
|
} | undefined;
|
|
28813
28998
|
scheduleId?: string | undefined;
|
|
28814
28999
|
result?: {
|
|
28815
|
-
|
|
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;
|
|
28816
29008
|
azure?: {
|
|
28817
29009
|
pullRequestUrl: string;
|
|
28818
29010
|
} | undefined;
|
|
29011
|
+
bitbucket?: {
|
|
29012
|
+
pullRequestUrl: string;
|
|
29013
|
+
} | undefined;
|
|
28819
29014
|
github?: {
|
|
28820
29015
|
pullRequestUrl: string;
|
|
28821
29016
|
} | undefined;
|
|
28822
29017
|
gitlab?: {
|
|
28823
29018
|
pullRequestUrl: string;
|
|
28824
29019
|
} | undefined;
|
|
28825
|
-
|
|
28826
|
-
|
|
29020
|
+
documentation?: {
|
|
29021
|
+
url: string;
|
|
28827
29022
|
} | undefined;
|
|
29023
|
+
error?: string | undefined;
|
|
28828
29024
|
logs?: {
|
|
28829
29025
|
message: string;
|
|
28830
|
-
type: "user" | "
|
|
29026
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28831
29027
|
time: Date;
|
|
28832
29028
|
id?: string | undefined;
|
|
28833
29029
|
}[] | undefined;
|
|
28834
|
-
s3?: {
|
|
28835
|
-
path: string;
|
|
28836
|
-
files: string[];
|
|
28837
|
-
bucket: string;
|
|
28838
|
-
url?: string | undefined;
|
|
28839
|
-
urlPrefix?: string | undefined;
|
|
28840
|
-
urls?: string[] | undefined;
|
|
28841
|
-
} | undefined;
|
|
28842
|
-
sndocs?: {
|
|
28843
|
-
url: string;
|
|
28844
|
-
} | undefined;
|
|
28845
29030
|
} | undefined;
|
|
28846
29031
|
}, {
|
|
28847
29032
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
@@ -28924,36 +29109,36 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
28924
29109
|
} | undefined;
|
|
28925
29110
|
scheduleId?: string | undefined;
|
|
28926
29111
|
result?: {
|
|
28927
|
-
|
|
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;
|
|
28928
29120
|
azure?: {
|
|
28929
29121
|
pullRequestUrl: string;
|
|
28930
29122
|
} | null | undefined;
|
|
28931
|
-
|
|
29123
|
+
bitbucket?: {
|
|
28932
29124
|
pullRequestUrl: string;
|
|
28933
29125
|
} | null | undefined;
|
|
28934
|
-
|
|
29126
|
+
github?: {
|
|
28935
29127
|
pullRequestUrl: string;
|
|
28936
29128
|
} | null | undefined;
|
|
28937
|
-
|
|
29129
|
+
gitlab?: {
|
|
28938
29130
|
pullRequestUrl: string;
|
|
28939
29131
|
} | null | undefined;
|
|
29132
|
+
documentation?: {
|
|
29133
|
+
url: string;
|
|
29134
|
+
} | undefined;
|
|
29135
|
+
error?: string | undefined;
|
|
28940
29136
|
logs?: {
|
|
28941
29137
|
message: string;
|
|
28942
|
-
type: "user" | "
|
|
29138
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
28943
29139
|
time: Date;
|
|
28944
29140
|
id?: string | undefined;
|
|
28945
29141
|
}[] | null | undefined;
|
|
28946
|
-
s3?: {
|
|
28947
|
-
path: string;
|
|
28948
|
-
files: string[];
|
|
28949
|
-
bucket: string;
|
|
28950
|
-
url?: string | null | undefined;
|
|
28951
|
-
urlPrefix?: string | undefined;
|
|
28952
|
-
urls?: string[] | null | undefined;
|
|
28953
|
-
} | null | undefined;
|
|
28954
|
-
sndocs?: {
|
|
28955
|
-
url: string;
|
|
28956
|
-
} | null | undefined;
|
|
28957
29142
|
} | undefined;
|
|
28958
29143
|
}>;
|
|
28959
29144
|
type DTOExportJob = z.infer<typeof DTOExportJob>;
|
|
@@ -29267,7 +29452,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29267
29452
|
}>;
|
|
29268
29453
|
exporterId: z.ZodString;
|
|
29269
29454
|
scheduleId: z.ZodOptional<z.ZodString>;
|
|
29270
|
-
result: z.ZodOptional<z.ZodObject<{
|
|
29455
|
+
result: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
29271
29456
|
error: z.ZodOptional<z.ZodString>;
|
|
29272
29457
|
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
29273
29458
|
path: string;
|
|
@@ -29345,87 +29530,95 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29345
29530
|
} | null | undefined>;
|
|
29346
29531
|
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
29347
29532
|
message: string;
|
|
29348
|
-
type: "user" | "
|
|
29533
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29349
29534
|
time: Date;
|
|
29350
29535
|
id?: string | undefined;
|
|
29351
29536
|
}[], z.ZodTypeDef, {
|
|
29352
29537
|
message: string;
|
|
29353
|
-
type: "user" | "
|
|
29538
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29354
29539
|
time: Date;
|
|
29355
29540
|
id?: string | undefined;
|
|
29356
29541
|
}[]>>>, {
|
|
29357
29542
|
message: string;
|
|
29358
|
-
type: "user" | "
|
|
29543
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29359
29544
|
time: Date;
|
|
29360
29545
|
id?: string | undefined;
|
|
29361
29546
|
}[] | undefined, {
|
|
29362
29547
|
message: string;
|
|
29363
|
-
type: "user" | "
|
|
29548
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29364
29549
|
time: Date;
|
|
29365
29550
|
id?: string | undefined;
|
|
29366
29551
|
}[] | null | undefined>;
|
|
29367
|
-
}, "
|
|
29368
|
-
|
|
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;
|
|
29369
29569
|
azure?: {
|
|
29370
29570
|
pullRequestUrl: string;
|
|
29371
29571
|
} | undefined;
|
|
29572
|
+
bitbucket?: {
|
|
29573
|
+
pullRequestUrl: string;
|
|
29574
|
+
} | undefined;
|
|
29372
29575
|
github?: {
|
|
29373
29576
|
pullRequestUrl: string;
|
|
29374
29577
|
} | undefined;
|
|
29375
29578
|
gitlab?: {
|
|
29376
29579
|
pullRequestUrl: string;
|
|
29377
29580
|
} | undefined;
|
|
29378
|
-
|
|
29379
|
-
|
|
29581
|
+
documentation?: {
|
|
29582
|
+
url: string;
|
|
29380
29583
|
} | undefined;
|
|
29584
|
+
error?: string | undefined;
|
|
29381
29585
|
logs?: {
|
|
29382
29586
|
message: string;
|
|
29383
|
-
type: "user" | "
|
|
29587
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29384
29588
|
time: Date;
|
|
29385
29589
|
id?: string | undefined;
|
|
29386
29590
|
}[] | undefined;
|
|
29591
|
+
}, {
|
|
29387
29592
|
s3?: {
|
|
29388
29593
|
path: string;
|
|
29389
29594
|
files: string[];
|
|
29390
29595
|
bucket: string;
|
|
29391
|
-
url?: string | undefined;
|
|
29596
|
+
url?: string | null | undefined;
|
|
29392
29597
|
urlPrefix?: string | undefined;
|
|
29393
|
-
urls?: string[] | undefined;
|
|
29394
|
-
} | undefined;
|
|
29395
|
-
sndocs?: {
|
|
29396
|
-
url: string;
|
|
29397
|
-
} | undefined;
|
|
29398
|
-
}, {
|
|
29399
|
-
error?: string | undefined;
|
|
29598
|
+
urls?: string[] | null | undefined;
|
|
29599
|
+
} | null | undefined;
|
|
29400
29600
|
azure?: {
|
|
29401
29601
|
pullRequestUrl: string;
|
|
29402
29602
|
} | null | undefined;
|
|
29403
|
-
|
|
29603
|
+
bitbucket?: {
|
|
29404
29604
|
pullRequestUrl: string;
|
|
29405
29605
|
} | null | undefined;
|
|
29406
|
-
|
|
29606
|
+
github?: {
|
|
29407
29607
|
pullRequestUrl: string;
|
|
29408
29608
|
} | null | undefined;
|
|
29409
|
-
|
|
29609
|
+
gitlab?: {
|
|
29410
29610
|
pullRequestUrl: string;
|
|
29411
29611
|
} | null | undefined;
|
|
29612
|
+
documentation?: {
|
|
29613
|
+
url: string;
|
|
29614
|
+
} | undefined;
|
|
29615
|
+
error?: string | undefined;
|
|
29412
29616
|
logs?: {
|
|
29413
29617
|
message: string;
|
|
29414
|
-
type: "user" | "
|
|
29618
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29415
29619
|
time: Date;
|
|
29416
29620
|
id?: string | undefined;
|
|
29417
29621
|
}[] | null | undefined;
|
|
29418
|
-
s3?: {
|
|
29419
|
-
path: string;
|
|
29420
|
-
files: string[];
|
|
29421
|
-
bucket: string;
|
|
29422
|
-
url?: string | null | undefined;
|
|
29423
|
-
urlPrefix?: string | undefined;
|
|
29424
|
-
urls?: string[] | null | undefined;
|
|
29425
|
-
} | null | undefined;
|
|
29426
|
-
sndocs?: {
|
|
29427
|
-
url: string;
|
|
29428
|
-
} | null | undefined;
|
|
29429
29622
|
}>>;
|
|
29430
29623
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
29431
29624
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
@@ -29510,36 +29703,36 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29510
29703
|
} | undefined;
|
|
29511
29704
|
scheduleId?: string | undefined;
|
|
29512
29705
|
result?: {
|
|
29513
|
-
|
|
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;
|
|
29514
29714
|
azure?: {
|
|
29515
29715
|
pullRequestUrl: string;
|
|
29516
29716
|
} | undefined;
|
|
29717
|
+
bitbucket?: {
|
|
29718
|
+
pullRequestUrl: string;
|
|
29719
|
+
} | undefined;
|
|
29517
29720
|
github?: {
|
|
29518
29721
|
pullRequestUrl: string;
|
|
29519
29722
|
} | undefined;
|
|
29520
29723
|
gitlab?: {
|
|
29521
29724
|
pullRequestUrl: string;
|
|
29522
29725
|
} | undefined;
|
|
29523
|
-
|
|
29524
|
-
|
|
29726
|
+
documentation?: {
|
|
29727
|
+
url: string;
|
|
29525
29728
|
} | undefined;
|
|
29729
|
+
error?: string | undefined;
|
|
29526
29730
|
logs?: {
|
|
29527
29731
|
message: string;
|
|
29528
|
-
type: "user" | "
|
|
29732
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29529
29733
|
time: Date;
|
|
29530
29734
|
id?: string | undefined;
|
|
29531
29735
|
}[] | undefined;
|
|
29532
|
-
s3?: {
|
|
29533
|
-
path: string;
|
|
29534
|
-
files: string[];
|
|
29535
|
-
bucket: string;
|
|
29536
|
-
url?: string | undefined;
|
|
29537
|
-
urlPrefix?: string | undefined;
|
|
29538
|
-
urls?: string[] | undefined;
|
|
29539
|
-
} | undefined;
|
|
29540
|
-
sndocs?: {
|
|
29541
|
-
url: string;
|
|
29542
|
-
} | undefined;
|
|
29543
29736
|
} | undefined;
|
|
29544
29737
|
}, {
|
|
29545
29738
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
@@ -29622,36 +29815,36 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29622
29815
|
} | undefined;
|
|
29623
29816
|
scheduleId?: string | undefined;
|
|
29624
29817
|
result?: {
|
|
29625
|
-
|
|
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;
|
|
29626
29826
|
azure?: {
|
|
29627
29827
|
pullRequestUrl: string;
|
|
29628
29828
|
} | null | undefined;
|
|
29629
|
-
|
|
29829
|
+
bitbucket?: {
|
|
29630
29830
|
pullRequestUrl: string;
|
|
29631
29831
|
} | null | undefined;
|
|
29632
|
-
|
|
29832
|
+
github?: {
|
|
29633
29833
|
pullRequestUrl: string;
|
|
29634
29834
|
} | null | undefined;
|
|
29635
|
-
|
|
29835
|
+
gitlab?: {
|
|
29636
29836
|
pullRequestUrl: string;
|
|
29637
29837
|
} | null | undefined;
|
|
29838
|
+
documentation?: {
|
|
29839
|
+
url: string;
|
|
29840
|
+
} | undefined;
|
|
29841
|
+
error?: string | undefined;
|
|
29638
29842
|
logs?: {
|
|
29639
29843
|
message: string;
|
|
29640
|
-
type: "user" | "
|
|
29844
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29641
29845
|
time: Date;
|
|
29642
29846
|
id?: string | undefined;
|
|
29643
29847
|
}[] | null | undefined;
|
|
29644
|
-
s3?: {
|
|
29645
|
-
path: string;
|
|
29646
|
-
files: string[];
|
|
29647
|
-
bucket: string;
|
|
29648
|
-
url?: string | null | undefined;
|
|
29649
|
-
urlPrefix?: string | undefined;
|
|
29650
|
-
urls?: string[] | null | undefined;
|
|
29651
|
-
} | null | undefined;
|
|
29652
|
-
sndocs?: {
|
|
29653
|
-
url: string;
|
|
29654
|
-
} | null | undefined;
|
|
29655
29848
|
} | undefined;
|
|
29656
29849
|
}>;
|
|
29657
29850
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -29736,36 +29929,36 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29736
29929
|
} | undefined;
|
|
29737
29930
|
scheduleId?: string | undefined;
|
|
29738
29931
|
result?: {
|
|
29739
|
-
|
|
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;
|
|
29740
29940
|
azure?: {
|
|
29741
29941
|
pullRequestUrl: string;
|
|
29742
29942
|
} | undefined;
|
|
29943
|
+
bitbucket?: {
|
|
29944
|
+
pullRequestUrl: string;
|
|
29945
|
+
} | undefined;
|
|
29743
29946
|
github?: {
|
|
29744
29947
|
pullRequestUrl: string;
|
|
29745
29948
|
} | undefined;
|
|
29746
29949
|
gitlab?: {
|
|
29747
29950
|
pullRequestUrl: string;
|
|
29748
29951
|
} | undefined;
|
|
29749
|
-
|
|
29750
|
-
|
|
29952
|
+
documentation?: {
|
|
29953
|
+
url: string;
|
|
29751
29954
|
} | undefined;
|
|
29955
|
+
error?: string | undefined;
|
|
29752
29956
|
logs?: {
|
|
29753
29957
|
message: string;
|
|
29754
|
-
type: "user" | "
|
|
29958
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29755
29959
|
time: Date;
|
|
29756
29960
|
id?: string | undefined;
|
|
29757
29961
|
}[] | undefined;
|
|
29758
|
-
s3?: {
|
|
29759
|
-
path: string;
|
|
29760
|
-
files: string[];
|
|
29761
|
-
bucket: string;
|
|
29762
|
-
url?: string | undefined;
|
|
29763
|
-
urlPrefix?: string | undefined;
|
|
29764
|
-
urls?: string[] | undefined;
|
|
29765
|
-
} | undefined;
|
|
29766
|
-
sndocs?: {
|
|
29767
|
-
url: string;
|
|
29768
|
-
} | undefined;
|
|
29769
29962
|
} | undefined;
|
|
29770
29963
|
};
|
|
29771
29964
|
}, {
|
|
@@ -29850,36 +30043,36 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29850
30043
|
} | undefined;
|
|
29851
30044
|
scheduleId?: string | undefined;
|
|
29852
30045
|
result?: {
|
|
29853
|
-
|
|
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;
|
|
29854
30054
|
azure?: {
|
|
29855
30055
|
pullRequestUrl: string;
|
|
29856
30056
|
} | null | undefined;
|
|
29857
|
-
|
|
30057
|
+
bitbucket?: {
|
|
29858
30058
|
pullRequestUrl: string;
|
|
29859
30059
|
} | null | undefined;
|
|
29860
|
-
|
|
30060
|
+
github?: {
|
|
29861
30061
|
pullRequestUrl: string;
|
|
29862
30062
|
} | null | undefined;
|
|
29863
|
-
|
|
30063
|
+
gitlab?: {
|
|
29864
30064
|
pullRequestUrl: string;
|
|
29865
30065
|
} | null | undefined;
|
|
30066
|
+
documentation?: {
|
|
30067
|
+
url: string;
|
|
30068
|
+
} | undefined;
|
|
30069
|
+
error?: string | undefined;
|
|
29866
30070
|
logs?: {
|
|
29867
30071
|
message: string;
|
|
29868
|
-
type: "user" | "
|
|
30072
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
29869
30073
|
time: Date;
|
|
29870
30074
|
id?: string | undefined;
|
|
29871
30075
|
}[] | null | undefined;
|
|
29872
|
-
s3?: {
|
|
29873
|
-
path: string;
|
|
29874
|
-
files: string[];
|
|
29875
|
-
bucket: string;
|
|
29876
|
-
url?: string | null | undefined;
|
|
29877
|
-
urlPrefix?: string | undefined;
|
|
29878
|
-
urls?: string[] | null | undefined;
|
|
29879
|
-
} | null | undefined;
|
|
29880
|
-
sndocs?: {
|
|
29881
|
-
url: string;
|
|
29882
|
-
} | null | undefined;
|
|
29883
30076
|
} | undefined;
|
|
29884
30077
|
};
|
|
29885
30078
|
}>;
|
|
@@ -30195,7 +30388,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30195
30388
|
}>;
|
|
30196
30389
|
exporterId: z.ZodString;
|
|
30197
30390
|
scheduleId: z.ZodOptional<z.ZodString>;
|
|
30198
|
-
result: z.ZodOptional<z.ZodObject<{
|
|
30391
|
+
result: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
30199
30392
|
error: z.ZodOptional<z.ZodString>;
|
|
30200
30393
|
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
30201
30394
|
path: string;
|
|
@@ -30273,87 +30466,95 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30273
30466
|
} | null | undefined>;
|
|
30274
30467
|
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
30275
30468
|
message: string;
|
|
30276
|
-
type: "user" | "
|
|
30469
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30277
30470
|
time: Date;
|
|
30278
30471
|
id?: string | undefined;
|
|
30279
30472
|
}[], z.ZodTypeDef, {
|
|
30280
30473
|
message: string;
|
|
30281
|
-
type: "user" | "
|
|
30474
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30282
30475
|
time: Date;
|
|
30283
30476
|
id?: string | undefined;
|
|
30284
30477
|
}[]>>>, {
|
|
30285
30478
|
message: string;
|
|
30286
|
-
type: "user" | "
|
|
30479
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30287
30480
|
time: Date;
|
|
30288
30481
|
id?: string | undefined;
|
|
30289
30482
|
}[] | undefined, {
|
|
30290
30483
|
message: string;
|
|
30291
|
-
type: "user" | "
|
|
30484
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30292
30485
|
time: Date;
|
|
30293
30486
|
id?: string | undefined;
|
|
30294
30487
|
}[] | null | undefined>;
|
|
30295
|
-
}, "
|
|
30296
|
-
|
|
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;
|
|
30297
30505
|
azure?: {
|
|
30298
30506
|
pullRequestUrl: string;
|
|
30299
30507
|
} | undefined;
|
|
30508
|
+
bitbucket?: {
|
|
30509
|
+
pullRequestUrl: string;
|
|
30510
|
+
} | undefined;
|
|
30300
30511
|
github?: {
|
|
30301
30512
|
pullRequestUrl: string;
|
|
30302
30513
|
} | undefined;
|
|
30303
30514
|
gitlab?: {
|
|
30304
30515
|
pullRequestUrl: string;
|
|
30305
30516
|
} | undefined;
|
|
30306
|
-
|
|
30307
|
-
|
|
30517
|
+
documentation?: {
|
|
30518
|
+
url: string;
|
|
30308
30519
|
} | undefined;
|
|
30520
|
+
error?: string | undefined;
|
|
30309
30521
|
logs?: {
|
|
30310
30522
|
message: string;
|
|
30311
|
-
type: "user" | "
|
|
30523
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30312
30524
|
time: Date;
|
|
30313
30525
|
id?: string | undefined;
|
|
30314
30526
|
}[] | undefined;
|
|
30527
|
+
}, {
|
|
30315
30528
|
s3?: {
|
|
30316
30529
|
path: string;
|
|
30317
30530
|
files: string[];
|
|
30318
30531
|
bucket: string;
|
|
30319
|
-
url?: string | undefined;
|
|
30532
|
+
url?: string | null | undefined;
|
|
30320
30533
|
urlPrefix?: string | undefined;
|
|
30321
|
-
urls?: string[] | undefined;
|
|
30322
|
-
} | undefined;
|
|
30323
|
-
sndocs?: {
|
|
30324
|
-
url: string;
|
|
30325
|
-
} | undefined;
|
|
30326
|
-
}, {
|
|
30327
|
-
error?: string | undefined;
|
|
30534
|
+
urls?: string[] | null | undefined;
|
|
30535
|
+
} | null | undefined;
|
|
30328
30536
|
azure?: {
|
|
30329
30537
|
pullRequestUrl: string;
|
|
30330
30538
|
} | null | undefined;
|
|
30331
|
-
|
|
30539
|
+
bitbucket?: {
|
|
30332
30540
|
pullRequestUrl: string;
|
|
30333
30541
|
} | null | undefined;
|
|
30334
|
-
|
|
30542
|
+
github?: {
|
|
30335
30543
|
pullRequestUrl: string;
|
|
30336
30544
|
} | null | undefined;
|
|
30337
|
-
|
|
30545
|
+
gitlab?: {
|
|
30338
30546
|
pullRequestUrl: string;
|
|
30339
30547
|
} | null | undefined;
|
|
30548
|
+
documentation?: {
|
|
30549
|
+
url: string;
|
|
30550
|
+
} | undefined;
|
|
30551
|
+
error?: string | undefined;
|
|
30340
30552
|
logs?: {
|
|
30341
30553
|
message: string;
|
|
30342
|
-
type: "user" | "
|
|
30554
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30343
30555
|
time: Date;
|
|
30344
30556
|
id?: string | undefined;
|
|
30345
30557
|
}[] | null | undefined;
|
|
30346
|
-
s3?: {
|
|
30347
|
-
path: string;
|
|
30348
|
-
files: string[];
|
|
30349
|
-
bucket: string;
|
|
30350
|
-
url?: string | null | undefined;
|
|
30351
|
-
urlPrefix?: string | undefined;
|
|
30352
|
-
urls?: string[] | null | undefined;
|
|
30353
|
-
} | null | undefined;
|
|
30354
|
-
sndocs?: {
|
|
30355
|
-
url: string;
|
|
30356
|
-
} | null | undefined;
|
|
30357
30558
|
}>>;
|
|
30358
30559
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
30359
30560
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
@@ -30438,36 +30639,36 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30438
30639
|
} | undefined;
|
|
30439
30640
|
scheduleId?: string | undefined;
|
|
30440
30641
|
result?: {
|
|
30441
|
-
|
|
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;
|
|
30442
30650
|
azure?: {
|
|
30443
30651
|
pullRequestUrl: string;
|
|
30444
30652
|
} | undefined;
|
|
30653
|
+
bitbucket?: {
|
|
30654
|
+
pullRequestUrl: string;
|
|
30655
|
+
} | undefined;
|
|
30445
30656
|
github?: {
|
|
30446
30657
|
pullRequestUrl: string;
|
|
30447
30658
|
} | undefined;
|
|
30448
30659
|
gitlab?: {
|
|
30449
30660
|
pullRequestUrl: string;
|
|
30450
30661
|
} | undefined;
|
|
30451
|
-
|
|
30452
|
-
|
|
30662
|
+
documentation?: {
|
|
30663
|
+
url: string;
|
|
30453
30664
|
} | undefined;
|
|
30665
|
+
error?: string | undefined;
|
|
30454
30666
|
logs?: {
|
|
30455
30667
|
message: string;
|
|
30456
|
-
type: "user" | "
|
|
30668
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30457
30669
|
time: Date;
|
|
30458
30670
|
id?: string | undefined;
|
|
30459
30671
|
}[] | undefined;
|
|
30460
|
-
s3?: {
|
|
30461
|
-
path: string;
|
|
30462
|
-
files: string[];
|
|
30463
|
-
bucket: string;
|
|
30464
|
-
url?: string | undefined;
|
|
30465
|
-
urlPrefix?: string | undefined;
|
|
30466
|
-
urls?: string[] | undefined;
|
|
30467
|
-
} | undefined;
|
|
30468
|
-
sndocs?: {
|
|
30469
|
-
url: string;
|
|
30470
|
-
} | undefined;
|
|
30471
30672
|
} | undefined;
|
|
30472
30673
|
}, {
|
|
30473
30674
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
@@ -30550,36 +30751,36 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30550
30751
|
} | undefined;
|
|
30551
30752
|
scheduleId?: string | undefined;
|
|
30552
30753
|
result?: {
|
|
30553
|
-
|
|
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;
|
|
30554
30762
|
azure?: {
|
|
30555
30763
|
pullRequestUrl: string;
|
|
30556
30764
|
} | null | undefined;
|
|
30557
|
-
|
|
30765
|
+
bitbucket?: {
|
|
30558
30766
|
pullRequestUrl: string;
|
|
30559
30767
|
} | null | undefined;
|
|
30560
|
-
|
|
30768
|
+
github?: {
|
|
30561
30769
|
pullRequestUrl: string;
|
|
30562
30770
|
} | null | undefined;
|
|
30563
|
-
|
|
30771
|
+
gitlab?: {
|
|
30564
30772
|
pullRequestUrl: string;
|
|
30565
30773
|
} | null | undefined;
|
|
30774
|
+
documentation?: {
|
|
30775
|
+
url: string;
|
|
30776
|
+
} | undefined;
|
|
30777
|
+
error?: string | undefined;
|
|
30566
30778
|
logs?: {
|
|
30567
30779
|
message: string;
|
|
30568
|
-
type: "user" | "
|
|
30780
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30569
30781
|
time: Date;
|
|
30570
30782
|
id?: string | undefined;
|
|
30571
30783
|
}[] | null | undefined;
|
|
30572
|
-
s3?: {
|
|
30573
|
-
path: string;
|
|
30574
|
-
files: string[];
|
|
30575
|
-
bucket: string;
|
|
30576
|
-
url?: string | null | undefined;
|
|
30577
|
-
urlPrefix?: string | undefined;
|
|
30578
|
-
urls?: string[] | null | undefined;
|
|
30579
|
-
} | null | undefined;
|
|
30580
|
-
sndocs?: {
|
|
30581
|
-
url: string;
|
|
30582
|
-
} | null | undefined;
|
|
30583
30784
|
} | undefined;
|
|
30584
30785
|
}>, "many">;
|
|
30585
30786
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -30816,36 +31017,36 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30816
31017
|
} | undefined;
|
|
30817
31018
|
scheduleId?: string | undefined;
|
|
30818
31019
|
result?: {
|
|
30819
|
-
|
|
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;
|
|
30820
31028
|
azure?: {
|
|
30821
31029
|
pullRequestUrl: string;
|
|
30822
31030
|
} | undefined;
|
|
31031
|
+
bitbucket?: {
|
|
31032
|
+
pullRequestUrl: string;
|
|
31033
|
+
} | undefined;
|
|
30823
31034
|
github?: {
|
|
30824
31035
|
pullRequestUrl: string;
|
|
30825
31036
|
} | undefined;
|
|
30826
31037
|
gitlab?: {
|
|
30827
31038
|
pullRequestUrl: string;
|
|
30828
31039
|
} | undefined;
|
|
30829
|
-
|
|
30830
|
-
|
|
31040
|
+
documentation?: {
|
|
31041
|
+
url: string;
|
|
30831
31042
|
} | undefined;
|
|
31043
|
+
error?: string | undefined;
|
|
30832
31044
|
logs?: {
|
|
30833
31045
|
message: string;
|
|
30834
|
-
type: "user" | "
|
|
31046
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
30835
31047
|
time: Date;
|
|
30836
31048
|
id?: string | undefined;
|
|
30837
31049
|
}[] | undefined;
|
|
30838
|
-
s3?: {
|
|
30839
|
-
path: string;
|
|
30840
|
-
files: string[];
|
|
30841
|
-
bucket: string;
|
|
30842
|
-
url?: string | undefined;
|
|
30843
|
-
urlPrefix?: string | undefined;
|
|
30844
|
-
urls?: string[] | undefined;
|
|
30845
|
-
} | undefined;
|
|
30846
|
-
sndocs?: {
|
|
30847
|
-
url: string;
|
|
30848
|
-
} | undefined;
|
|
30849
31050
|
} | undefined;
|
|
30850
31051
|
}[];
|
|
30851
31052
|
brandPersistentId?: string | undefined;
|
|
@@ -30986,36 +31187,36 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30986
31187
|
} | undefined;
|
|
30987
31188
|
scheduleId?: string | undefined;
|
|
30988
31189
|
result?: {
|
|
30989
|
-
|
|
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;
|
|
30990
31198
|
azure?: {
|
|
30991
31199
|
pullRequestUrl: string;
|
|
30992
31200
|
} | null | undefined;
|
|
30993
|
-
|
|
31201
|
+
bitbucket?: {
|
|
30994
31202
|
pullRequestUrl: string;
|
|
30995
31203
|
} | null | undefined;
|
|
30996
|
-
|
|
31204
|
+
github?: {
|
|
30997
31205
|
pullRequestUrl: string;
|
|
30998
31206
|
} | null | undefined;
|
|
30999
|
-
|
|
31207
|
+
gitlab?: {
|
|
31000
31208
|
pullRequestUrl: string;
|
|
31001
31209
|
} | null | undefined;
|
|
31210
|
+
documentation?: {
|
|
31211
|
+
url: string;
|
|
31212
|
+
} | undefined;
|
|
31213
|
+
error?: string | undefined;
|
|
31002
31214
|
logs?: {
|
|
31003
31215
|
message: string;
|
|
31004
|
-
type: "user" | "
|
|
31216
|
+
type: "user" | "error" | "success" | "warning" | "info";
|
|
31005
31217
|
time: Date;
|
|
31006
31218
|
id?: string | undefined;
|
|
31007
31219
|
}[] | null | undefined;
|
|
31008
|
-
s3?: {
|
|
31009
|
-
path: string;
|
|
31010
|
-
files: string[];
|
|
31011
|
-
bucket: string;
|
|
31012
|
-
url?: string | null | undefined;
|
|
31013
|
-
urlPrefix?: string | undefined;
|
|
31014
|
-
urls?: string[] | null | undefined;
|
|
31015
|
-
} | null | undefined;
|
|
31016
|
-
sndocs?: {
|
|
31017
|
-
url: string;
|
|
31018
|
-
} | null | undefined;
|
|
31019
31220
|
} | undefined;
|
|
31020
31221
|
}[];
|
|
31021
31222
|
brandPersistentId?: string | undefined;
|
|
@@ -42328,4 +42529,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
42328
42529
|
|
|
42329
42530
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, debug?: boolean): string;
|
|
42330
42531
|
|
|
42331
|
-
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, 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 };
|
|
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 };
|