@supernova-studio/client 0.57.10 → 0.57.12
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 +857 -378
- package/dist/index.d.ts +857 -378
- package/dist/index.js +121 -81
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +121 -81
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/properties/property-values.ts +23 -2
- package/src/api/endpoints/design-system/versions/index.ts +1 -0
- package/src/api/endpoints/design-system/versions/property-values.ts +25 -0
- package/src/api/endpoints/design-system/versions/versions.ts +3 -0
package/dist/index.d.mts
CHANGED
|
@@ -23134,6 +23134,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23134
23134
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23135
23135
|
branch: z.ZodString;
|
|
23136
23136
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23137
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
23137
23138
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23138
23139
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23139
23140
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -23146,6 +23147,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23146
23147
|
userId?: number | undefined;
|
|
23147
23148
|
credentialId?: string | undefined;
|
|
23148
23149
|
relativePath?: string | undefined;
|
|
23150
|
+
purgeDirectory?: boolean | undefined;
|
|
23149
23151
|
commitAuthorName?: string | undefined;
|
|
23150
23152
|
commitAuthorEmail?: string | undefined;
|
|
23151
23153
|
connectionId?: string | undefined;
|
|
@@ -23158,6 +23160,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23158
23160
|
userId?: number | null | undefined;
|
|
23159
23161
|
credentialId?: string | undefined;
|
|
23160
23162
|
relativePath?: string | null | undefined;
|
|
23163
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23161
23164
|
commitAuthorName?: string | null | undefined;
|
|
23162
23165
|
commitAuthorEmail?: string | null | undefined;
|
|
23163
23166
|
connectionId?: string | null | undefined;
|
|
@@ -23171,6 +23174,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23171
23174
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23172
23175
|
branch: z.ZodString;
|
|
23173
23176
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23177
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
23174
23178
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23175
23179
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
23176
23180
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23181,6 +23185,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23181
23185
|
userId?: number | undefined;
|
|
23182
23186
|
credentialId?: string | undefined;
|
|
23183
23187
|
relativePath?: string | undefined;
|
|
23188
|
+
purgeDirectory?: boolean | undefined;
|
|
23184
23189
|
commitAuthorName?: string | undefined;
|
|
23185
23190
|
commitAuthorEmail?: string | undefined;
|
|
23186
23191
|
connectionId?: string | undefined;
|
|
@@ -23192,6 +23197,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23192
23197
|
userId?: number | null | undefined;
|
|
23193
23198
|
credentialId?: string | undefined;
|
|
23194
23199
|
relativePath?: string | null | undefined;
|
|
23200
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23195
23201
|
commitAuthorName?: string | null | undefined;
|
|
23196
23202
|
commitAuthorEmail?: string | null | undefined;
|
|
23197
23203
|
connectionId?: string | null | undefined;
|
|
@@ -23201,6 +23207,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23201
23207
|
url: z.ZodString;
|
|
23202
23208
|
branch: z.ZodString;
|
|
23203
23209
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23210
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
23204
23211
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23205
23212
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23206
23213
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -23211,6 +23218,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23211
23218
|
userId?: number | undefined;
|
|
23212
23219
|
credentialId?: string | undefined;
|
|
23213
23220
|
relativePath?: string | undefined;
|
|
23221
|
+
purgeDirectory?: boolean | undefined;
|
|
23214
23222
|
commitAuthorName?: string | undefined;
|
|
23215
23223
|
commitAuthorEmail?: string | undefined;
|
|
23216
23224
|
connectionId?: string | undefined;
|
|
@@ -23220,6 +23228,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23220
23228
|
userId?: number | null | undefined;
|
|
23221
23229
|
credentialId?: string | undefined;
|
|
23222
23230
|
relativePath?: string | null | undefined;
|
|
23231
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23223
23232
|
commitAuthorName?: string | null | undefined;
|
|
23224
23233
|
commitAuthorEmail?: string | null | undefined;
|
|
23225
23234
|
connectionId?: string | null | undefined;
|
|
@@ -23231,6 +23240,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23231
23240
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23232
23241
|
branch: z.ZodString;
|
|
23233
23242
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23243
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
23234
23244
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23235
23245
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23236
23246
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -23241,6 +23251,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23241
23251
|
userId?: number | undefined;
|
|
23242
23252
|
credentialId?: string | undefined;
|
|
23243
23253
|
relativePath?: string | undefined;
|
|
23254
|
+
purgeDirectory?: boolean | undefined;
|
|
23244
23255
|
commitAuthorName?: string | undefined;
|
|
23245
23256
|
commitAuthorEmail?: string | undefined;
|
|
23246
23257
|
connectionId?: string | undefined;
|
|
@@ -23251,6 +23262,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23251
23262
|
userId?: number | null | undefined;
|
|
23252
23263
|
credentialId?: string | undefined;
|
|
23253
23264
|
relativePath?: string | null | undefined;
|
|
23265
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23254
23266
|
commitAuthorName?: string | null | undefined;
|
|
23255
23267
|
commitAuthorEmail?: string | null | undefined;
|
|
23256
23268
|
connectionId?: string | null | undefined;
|
|
@@ -23295,6 +23307,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23295
23307
|
userId?: number | undefined;
|
|
23296
23308
|
credentialId?: string | undefined;
|
|
23297
23309
|
relativePath?: string | undefined;
|
|
23310
|
+
purgeDirectory?: boolean | undefined;
|
|
23298
23311
|
commitAuthorName?: string | undefined;
|
|
23299
23312
|
commitAuthorEmail?: string | undefined;
|
|
23300
23313
|
connectionId?: string | undefined;
|
|
@@ -23307,6 +23320,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23307
23320
|
userId?: number | undefined;
|
|
23308
23321
|
credentialId?: string | undefined;
|
|
23309
23322
|
relativePath?: string | undefined;
|
|
23323
|
+
purgeDirectory?: boolean | undefined;
|
|
23310
23324
|
commitAuthorName?: string | undefined;
|
|
23311
23325
|
commitAuthorEmail?: string | undefined;
|
|
23312
23326
|
connectionId?: string | undefined;
|
|
@@ -23317,6 +23331,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23317
23331
|
userId?: number | undefined;
|
|
23318
23332
|
credentialId?: string | undefined;
|
|
23319
23333
|
relativePath?: string | undefined;
|
|
23334
|
+
purgeDirectory?: boolean | undefined;
|
|
23320
23335
|
commitAuthorName?: string | undefined;
|
|
23321
23336
|
commitAuthorEmail?: string | undefined;
|
|
23322
23337
|
connectionId?: string | undefined;
|
|
@@ -23328,6 +23343,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23328
23343
|
userId?: number | undefined;
|
|
23329
23344
|
credentialId?: string | undefined;
|
|
23330
23345
|
relativePath?: string | undefined;
|
|
23346
|
+
purgeDirectory?: boolean | undefined;
|
|
23331
23347
|
commitAuthorName?: string | undefined;
|
|
23332
23348
|
commitAuthorEmail?: string | undefined;
|
|
23333
23349
|
connectionId?: string | undefined;
|
|
@@ -23351,6 +23367,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23351
23367
|
userId?: number | null | undefined;
|
|
23352
23368
|
credentialId?: string | undefined;
|
|
23353
23369
|
relativePath?: string | null | undefined;
|
|
23370
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23354
23371
|
commitAuthorName?: string | null | undefined;
|
|
23355
23372
|
commitAuthorEmail?: string | null | undefined;
|
|
23356
23373
|
connectionId?: string | null | undefined;
|
|
@@ -23363,6 +23380,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23363
23380
|
userId?: number | null | undefined;
|
|
23364
23381
|
credentialId?: string | undefined;
|
|
23365
23382
|
relativePath?: string | null | undefined;
|
|
23383
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23366
23384
|
commitAuthorName?: string | null | undefined;
|
|
23367
23385
|
commitAuthorEmail?: string | null | undefined;
|
|
23368
23386
|
connectionId?: string | null | undefined;
|
|
@@ -23373,6 +23391,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23373
23391
|
userId?: number | null | undefined;
|
|
23374
23392
|
credentialId?: string | undefined;
|
|
23375
23393
|
relativePath?: string | null | undefined;
|
|
23394
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23376
23395
|
commitAuthorName?: string | null | undefined;
|
|
23377
23396
|
commitAuthorEmail?: string | null | undefined;
|
|
23378
23397
|
connectionId?: string | null | undefined;
|
|
@@ -23384,6 +23403,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23384
23403
|
userId?: number | null | undefined;
|
|
23385
23404
|
credentialId?: string | undefined;
|
|
23386
23405
|
relativePath?: string | null | undefined;
|
|
23406
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23387
23407
|
commitAuthorName?: string | null | undefined;
|
|
23388
23408
|
commitAuthorEmail?: string | null | undefined;
|
|
23389
23409
|
connectionId?: string | null | undefined;
|
|
@@ -23593,6 +23613,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23593
23613
|
userId?: number | undefined;
|
|
23594
23614
|
credentialId?: string | undefined;
|
|
23595
23615
|
relativePath?: string | undefined;
|
|
23616
|
+
purgeDirectory?: boolean | undefined;
|
|
23596
23617
|
commitAuthorName?: string | undefined;
|
|
23597
23618
|
commitAuthorEmail?: string | undefined;
|
|
23598
23619
|
connectionId?: string | undefined;
|
|
@@ -23605,6 +23626,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23605
23626
|
userId?: number | undefined;
|
|
23606
23627
|
credentialId?: string | undefined;
|
|
23607
23628
|
relativePath?: string | undefined;
|
|
23629
|
+
purgeDirectory?: boolean | undefined;
|
|
23608
23630
|
commitAuthorName?: string | undefined;
|
|
23609
23631
|
commitAuthorEmail?: string | undefined;
|
|
23610
23632
|
connectionId?: string | undefined;
|
|
@@ -23615,6 +23637,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23615
23637
|
userId?: number | undefined;
|
|
23616
23638
|
credentialId?: string | undefined;
|
|
23617
23639
|
relativePath?: string | undefined;
|
|
23640
|
+
purgeDirectory?: boolean | undefined;
|
|
23618
23641
|
commitAuthorName?: string | undefined;
|
|
23619
23642
|
commitAuthorEmail?: string | undefined;
|
|
23620
23643
|
connectionId?: string | undefined;
|
|
@@ -23626,6 +23649,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23626
23649
|
userId?: number | undefined;
|
|
23627
23650
|
credentialId?: string | undefined;
|
|
23628
23651
|
relativePath?: string | undefined;
|
|
23652
|
+
purgeDirectory?: boolean | undefined;
|
|
23629
23653
|
commitAuthorName?: string | undefined;
|
|
23630
23654
|
commitAuthorEmail?: string | undefined;
|
|
23631
23655
|
connectionId?: string | undefined;
|
|
@@ -23714,6 +23738,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23714
23738
|
userId?: number | null | undefined;
|
|
23715
23739
|
credentialId?: string | undefined;
|
|
23716
23740
|
relativePath?: string | null | undefined;
|
|
23741
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23717
23742
|
commitAuthorName?: string | null | undefined;
|
|
23718
23743
|
commitAuthorEmail?: string | null | undefined;
|
|
23719
23744
|
connectionId?: string | null | undefined;
|
|
@@ -23726,6 +23751,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23726
23751
|
userId?: number | null | undefined;
|
|
23727
23752
|
credentialId?: string | undefined;
|
|
23728
23753
|
relativePath?: string | null | undefined;
|
|
23754
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23729
23755
|
commitAuthorName?: string | null | undefined;
|
|
23730
23756
|
commitAuthorEmail?: string | null | undefined;
|
|
23731
23757
|
connectionId?: string | null | undefined;
|
|
@@ -23736,6 +23762,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23736
23762
|
userId?: number | null | undefined;
|
|
23737
23763
|
credentialId?: string | undefined;
|
|
23738
23764
|
relativePath?: string | null | undefined;
|
|
23765
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23739
23766
|
commitAuthorName?: string | null | undefined;
|
|
23740
23767
|
commitAuthorEmail?: string | null | undefined;
|
|
23741
23768
|
connectionId?: string | null | undefined;
|
|
@@ -23747,6 +23774,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23747
23774
|
userId?: number | null | undefined;
|
|
23748
23775
|
credentialId?: string | undefined;
|
|
23749
23776
|
relativePath?: string | null | undefined;
|
|
23777
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23750
23778
|
commitAuthorName?: string | null | undefined;
|
|
23751
23779
|
commitAuthorEmail?: string | null | undefined;
|
|
23752
23780
|
connectionId?: string | null | undefined;
|
|
@@ -23837,6 +23865,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23837
23865
|
userId?: number | undefined;
|
|
23838
23866
|
credentialId?: string | undefined;
|
|
23839
23867
|
relativePath?: string | undefined;
|
|
23868
|
+
purgeDirectory?: boolean | undefined;
|
|
23840
23869
|
commitAuthorName?: string | undefined;
|
|
23841
23870
|
commitAuthorEmail?: string | undefined;
|
|
23842
23871
|
connectionId?: string | undefined;
|
|
@@ -23849,6 +23878,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23849
23878
|
userId?: number | undefined;
|
|
23850
23879
|
credentialId?: string | undefined;
|
|
23851
23880
|
relativePath?: string | undefined;
|
|
23881
|
+
purgeDirectory?: boolean | undefined;
|
|
23852
23882
|
commitAuthorName?: string | undefined;
|
|
23853
23883
|
commitAuthorEmail?: string | undefined;
|
|
23854
23884
|
connectionId?: string | undefined;
|
|
@@ -23859,6 +23889,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23859
23889
|
userId?: number | undefined;
|
|
23860
23890
|
credentialId?: string | undefined;
|
|
23861
23891
|
relativePath?: string | undefined;
|
|
23892
|
+
purgeDirectory?: boolean | undefined;
|
|
23862
23893
|
commitAuthorName?: string | undefined;
|
|
23863
23894
|
commitAuthorEmail?: string | undefined;
|
|
23864
23895
|
connectionId?: string | undefined;
|
|
@@ -23870,6 +23901,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23870
23901
|
userId?: number | undefined;
|
|
23871
23902
|
credentialId?: string | undefined;
|
|
23872
23903
|
relativePath?: string | undefined;
|
|
23904
|
+
purgeDirectory?: boolean | undefined;
|
|
23873
23905
|
commitAuthorName?: string | undefined;
|
|
23874
23906
|
commitAuthorEmail?: string | undefined;
|
|
23875
23907
|
connectionId?: string | undefined;
|
|
@@ -23960,6 +23992,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23960
23992
|
userId?: number | null | undefined;
|
|
23961
23993
|
credentialId?: string | undefined;
|
|
23962
23994
|
relativePath?: string | null | undefined;
|
|
23995
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23963
23996
|
commitAuthorName?: string | null | undefined;
|
|
23964
23997
|
commitAuthorEmail?: string | null | undefined;
|
|
23965
23998
|
connectionId?: string | null | undefined;
|
|
@@ -23972,6 +24005,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23972
24005
|
userId?: number | null | undefined;
|
|
23973
24006
|
credentialId?: string | undefined;
|
|
23974
24007
|
relativePath?: string | null | undefined;
|
|
24008
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23975
24009
|
commitAuthorName?: string | null | undefined;
|
|
23976
24010
|
commitAuthorEmail?: string | null | undefined;
|
|
23977
24011
|
connectionId?: string | null | undefined;
|
|
@@ -23982,6 +24016,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23982
24016
|
userId?: number | null | undefined;
|
|
23983
24017
|
credentialId?: string | undefined;
|
|
23984
24018
|
relativePath?: string | null | undefined;
|
|
24019
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23985
24020
|
commitAuthorName?: string | null | undefined;
|
|
23986
24021
|
commitAuthorEmail?: string | null | undefined;
|
|
23987
24022
|
connectionId?: string | null | undefined;
|
|
@@ -23993,6 +24028,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
23993
24028
|
userId?: number | null | undefined;
|
|
23994
24029
|
credentialId?: string | undefined;
|
|
23995
24030
|
relativePath?: string | null | undefined;
|
|
24031
|
+
purgeDirectory?: boolean | null | undefined;
|
|
23996
24032
|
commitAuthorName?: string | null | undefined;
|
|
23997
24033
|
commitAuthorEmail?: string | null | undefined;
|
|
23998
24034
|
connectionId?: string | null | undefined;
|
|
@@ -40985,7 +41021,7 @@ declare const DTOElementPropertyValue: z.ZodObject<{
|
|
|
40985
41021
|
valuePreview?: string | undefined;
|
|
40986
41022
|
}>;
|
|
40987
41023
|
type DTOElementPropertyValue = z.infer<typeof DTOElementPropertyValue>;
|
|
40988
|
-
declare const
|
|
41024
|
+
declare const DTOElementPropertyValueListResponse: z.ZodObject<{
|
|
40989
41025
|
values: z.ZodArray<z.ZodObject<{
|
|
40990
41026
|
id: z.ZodString;
|
|
40991
41027
|
designSystemVersionId: z.ZodString;
|
|
@@ -41027,7 +41063,64 @@ declare const DTOElementPropertyValuesGetResponse: z.ZodObject<{
|
|
|
41027
41063
|
valuePreview?: string | undefined;
|
|
41028
41064
|
}[];
|
|
41029
41065
|
}>;
|
|
41030
|
-
type
|
|
41066
|
+
type DTOElementPropertyValueListResponse = z.infer<typeof DTOElementPropertyValueListResponse>;
|
|
41067
|
+
declare const DTOElementPropertyValueResponse: z.ZodObject<{
|
|
41068
|
+
value: z.ZodObject<{
|
|
41069
|
+
id: z.ZodString;
|
|
41070
|
+
designSystemVersionId: z.ZodString;
|
|
41071
|
+
definitionId: z.ZodString;
|
|
41072
|
+
targetElementId: z.ZodString;
|
|
41073
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
41074
|
+
valuePreview: z.ZodOptional<z.ZodString>;
|
|
41075
|
+
}, "strip", z.ZodTypeAny, {
|
|
41076
|
+
id: string;
|
|
41077
|
+
designSystemVersionId: string;
|
|
41078
|
+
definitionId: string;
|
|
41079
|
+
targetElementId: string;
|
|
41080
|
+
value?: string | number | boolean | undefined;
|
|
41081
|
+
valuePreview?: string | undefined;
|
|
41082
|
+
}, {
|
|
41083
|
+
id: string;
|
|
41084
|
+
designSystemVersionId: string;
|
|
41085
|
+
definitionId: string;
|
|
41086
|
+
targetElementId: string;
|
|
41087
|
+
value?: string | number | boolean | undefined;
|
|
41088
|
+
valuePreview?: string | undefined;
|
|
41089
|
+
}>;
|
|
41090
|
+
}, "strip", z.ZodTypeAny, {
|
|
41091
|
+
value: {
|
|
41092
|
+
id: string;
|
|
41093
|
+
designSystemVersionId: string;
|
|
41094
|
+
definitionId: string;
|
|
41095
|
+
targetElementId: string;
|
|
41096
|
+
value?: string | number | boolean | undefined;
|
|
41097
|
+
valuePreview?: string | undefined;
|
|
41098
|
+
};
|
|
41099
|
+
}, {
|
|
41100
|
+
value: {
|
|
41101
|
+
id: string;
|
|
41102
|
+
designSystemVersionId: string;
|
|
41103
|
+
definitionId: string;
|
|
41104
|
+
targetElementId: string;
|
|
41105
|
+
value?: string | number | boolean | undefined;
|
|
41106
|
+
valuePreview?: string | undefined;
|
|
41107
|
+
};
|
|
41108
|
+
}>;
|
|
41109
|
+
type DTOElementPropertyValueResponse = z.infer<typeof DTOElementPropertyValueResponse>;
|
|
41110
|
+
declare const DTOElementPropertyValueUpsertPaylod: z.ZodObject<{
|
|
41111
|
+
definitionId: z.ZodString;
|
|
41112
|
+
targetElementId: z.ZodString;
|
|
41113
|
+
value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]>;
|
|
41114
|
+
}, "strip", z.ZodTypeAny, {
|
|
41115
|
+
value: string | number | boolean;
|
|
41116
|
+
definitionId: string;
|
|
41117
|
+
targetElementId: string;
|
|
41118
|
+
}, {
|
|
41119
|
+
value: string | number | boolean;
|
|
41120
|
+
definitionId: string;
|
|
41121
|
+
targetElementId: string;
|
|
41122
|
+
}>;
|
|
41123
|
+
type DTOElementPropertyValueUpsertPaylod = z.infer<typeof DTOElementPropertyValueUpsertPaylod>;
|
|
41031
41124
|
|
|
41032
41125
|
declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
41033
41126
|
type: z.ZodLiteral<"DocumentationPageCreate">;
|
|
@@ -45168,6 +45261,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45168
45261
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45169
45262
|
branch: z.ZodString;
|
|
45170
45263
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45264
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
45171
45265
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45172
45266
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45173
45267
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -45180,6 +45274,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45180
45274
|
userId?: number | undefined;
|
|
45181
45275
|
credentialId?: string | undefined;
|
|
45182
45276
|
relativePath?: string | undefined;
|
|
45277
|
+
purgeDirectory?: boolean | undefined;
|
|
45183
45278
|
commitAuthorName?: string | undefined;
|
|
45184
45279
|
commitAuthorEmail?: string | undefined;
|
|
45185
45280
|
connectionId?: string | undefined;
|
|
@@ -45192,6 +45287,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45192
45287
|
userId?: number | null | undefined;
|
|
45193
45288
|
credentialId?: string | undefined;
|
|
45194
45289
|
relativePath?: string | null | undefined;
|
|
45290
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45195
45291
|
commitAuthorName?: string | null | undefined;
|
|
45196
45292
|
commitAuthorEmail?: string | null | undefined;
|
|
45197
45293
|
connectionId?: string | null | undefined;
|
|
@@ -45205,6 +45301,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45205
45301
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45206
45302
|
branch: z.ZodString;
|
|
45207
45303
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45304
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
45208
45305
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45209
45306
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
45210
45307
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -45215,6 +45312,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45215
45312
|
userId?: number | undefined;
|
|
45216
45313
|
credentialId?: string | undefined;
|
|
45217
45314
|
relativePath?: string | undefined;
|
|
45315
|
+
purgeDirectory?: boolean | undefined;
|
|
45218
45316
|
commitAuthorName?: string | undefined;
|
|
45219
45317
|
commitAuthorEmail?: string | undefined;
|
|
45220
45318
|
connectionId?: string | undefined;
|
|
@@ -45226,6 +45324,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45226
45324
|
userId?: number | null | undefined;
|
|
45227
45325
|
credentialId?: string | undefined;
|
|
45228
45326
|
relativePath?: string | null | undefined;
|
|
45327
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45229
45328
|
commitAuthorName?: string | null | undefined;
|
|
45230
45329
|
commitAuthorEmail?: string | null | undefined;
|
|
45231
45330
|
connectionId?: string | null | undefined;
|
|
@@ -45235,6 +45334,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45235
45334
|
url: z.ZodString;
|
|
45236
45335
|
branch: z.ZodString;
|
|
45237
45336
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45337
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
45238
45338
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45239
45339
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45240
45340
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -45245,6 +45345,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45245
45345
|
userId?: number | undefined;
|
|
45246
45346
|
credentialId?: string | undefined;
|
|
45247
45347
|
relativePath?: string | undefined;
|
|
45348
|
+
purgeDirectory?: boolean | undefined;
|
|
45248
45349
|
commitAuthorName?: string | undefined;
|
|
45249
45350
|
commitAuthorEmail?: string | undefined;
|
|
45250
45351
|
connectionId?: string | undefined;
|
|
@@ -45254,6 +45355,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45254
45355
|
userId?: number | null | undefined;
|
|
45255
45356
|
credentialId?: string | undefined;
|
|
45256
45357
|
relativePath?: string | null | undefined;
|
|
45358
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45257
45359
|
commitAuthorName?: string | null | undefined;
|
|
45258
45360
|
commitAuthorEmail?: string | null | undefined;
|
|
45259
45361
|
connectionId?: string | null | undefined;
|
|
@@ -45265,6 +45367,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45265
45367
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45266
45368
|
branch: z.ZodString;
|
|
45267
45369
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45370
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
45268
45371
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45269
45372
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45270
45373
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -45275,6 +45378,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45275
45378
|
userId?: number | undefined;
|
|
45276
45379
|
credentialId?: string | undefined;
|
|
45277
45380
|
relativePath?: string | undefined;
|
|
45381
|
+
purgeDirectory?: boolean | undefined;
|
|
45278
45382
|
commitAuthorName?: string | undefined;
|
|
45279
45383
|
commitAuthorEmail?: string | undefined;
|
|
45280
45384
|
connectionId?: string | undefined;
|
|
@@ -45285,6 +45389,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45285
45389
|
userId?: number | null | undefined;
|
|
45286
45390
|
credentialId?: string | undefined;
|
|
45287
45391
|
relativePath?: string | null | undefined;
|
|
45392
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45288
45393
|
commitAuthorName?: string | null | undefined;
|
|
45289
45394
|
commitAuthorEmail?: string | null | undefined;
|
|
45290
45395
|
connectionId?: string | null | undefined;
|
|
@@ -45329,6 +45434,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45329
45434
|
userId?: number | undefined;
|
|
45330
45435
|
credentialId?: string | undefined;
|
|
45331
45436
|
relativePath?: string | undefined;
|
|
45437
|
+
purgeDirectory?: boolean | undefined;
|
|
45332
45438
|
commitAuthorName?: string | undefined;
|
|
45333
45439
|
commitAuthorEmail?: string | undefined;
|
|
45334
45440
|
connectionId?: string | undefined;
|
|
@@ -45341,6 +45447,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45341
45447
|
userId?: number | undefined;
|
|
45342
45448
|
credentialId?: string | undefined;
|
|
45343
45449
|
relativePath?: string | undefined;
|
|
45450
|
+
purgeDirectory?: boolean | undefined;
|
|
45344
45451
|
commitAuthorName?: string | undefined;
|
|
45345
45452
|
commitAuthorEmail?: string | undefined;
|
|
45346
45453
|
connectionId?: string | undefined;
|
|
@@ -45351,6 +45458,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45351
45458
|
userId?: number | undefined;
|
|
45352
45459
|
credentialId?: string | undefined;
|
|
45353
45460
|
relativePath?: string | undefined;
|
|
45461
|
+
purgeDirectory?: boolean | undefined;
|
|
45354
45462
|
commitAuthorName?: string | undefined;
|
|
45355
45463
|
commitAuthorEmail?: string | undefined;
|
|
45356
45464
|
connectionId?: string | undefined;
|
|
@@ -45362,6 +45470,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45362
45470
|
userId?: number | undefined;
|
|
45363
45471
|
credentialId?: string | undefined;
|
|
45364
45472
|
relativePath?: string | undefined;
|
|
45473
|
+
purgeDirectory?: boolean | undefined;
|
|
45365
45474
|
commitAuthorName?: string | undefined;
|
|
45366
45475
|
commitAuthorEmail?: string | undefined;
|
|
45367
45476
|
connectionId?: string | undefined;
|
|
@@ -45385,6 +45494,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45385
45494
|
userId?: number | null | undefined;
|
|
45386
45495
|
credentialId?: string | undefined;
|
|
45387
45496
|
relativePath?: string | null | undefined;
|
|
45497
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45388
45498
|
commitAuthorName?: string | null | undefined;
|
|
45389
45499
|
commitAuthorEmail?: string | null | undefined;
|
|
45390
45500
|
connectionId?: string | null | undefined;
|
|
@@ -45397,6 +45507,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45397
45507
|
userId?: number | null | undefined;
|
|
45398
45508
|
credentialId?: string | undefined;
|
|
45399
45509
|
relativePath?: string | null | undefined;
|
|
45510
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45400
45511
|
commitAuthorName?: string | null | undefined;
|
|
45401
45512
|
commitAuthorEmail?: string | null | undefined;
|
|
45402
45513
|
connectionId?: string | null | undefined;
|
|
@@ -45407,6 +45518,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45407
45518
|
userId?: number | null | undefined;
|
|
45408
45519
|
credentialId?: string | undefined;
|
|
45409
45520
|
relativePath?: string | null | undefined;
|
|
45521
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45410
45522
|
commitAuthorName?: string | null | undefined;
|
|
45411
45523
|
commitAuthorEmail?: string | null | undefined;
|
|
45412
45524
|
connectionId?: string | null | undefined;
|
|
@@ -45418,6 +45530,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
45418
45530
|
userId?: number | null | undefined;
|
|
45419
45531
|
credentialId?: string | undefined;
|
|
45420
45532
|
relativePath?: string | null | undefined;
|
|
45533
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45421
45534
|
commitAuthorName?: string | null | undefined;
|
|
45422
45535
|
commitAuthorEmail?: string | null | undefined;
|
|
45423
45536
|
connectionId?: string | null | undefined;
|
|
@@ -45685,6 +45798,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45685
45798
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45686
45799
|
branch: z.ZodString;
|
|
45687
45800
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45801
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
45688
45802
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45689
45803
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45690
45804
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -45697,6 +45811,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45697
45811
|
userId?: number | undefined;
|
|
45698
45812
|
credentialId?: string | undefined;
|
|
45699
45813
|
relativePath?: string | undefined;
|
|
45814
|
+
purgeDirectory?: boolean | undefined;
|
|
45700
45815
|
commitAuthorName?: string | undefined;
|
|
45701
45816
|
commitAuthorEmail?: string | undefined;
|
|
45702
45817
|
connectionId?: string | undefined;
|
|
@@ -45709,6 +45824,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45709
45824
|
userId?: number | null | undefined;
|
|
45710
45825
|
credentialId?: string | undefined;
|
|
45711
45826
|
relativePath?: string | null | undefined;
|
|
45827
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45712
45828
|
commitAuthorName?: string | null | undefined;
|
|
45713
45829
|
commitAuthorEmail?: string | null | undefined;
|
|
45714
45830
|
connectionId?: string | null | undefined;
|
|
@@ -45722,6 +45838,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45722
45838
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45723
45839
|
branch: z.ZodString;
|
|
45724
45840
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45841
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
45725
45842
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45726
45843
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
45727
45844
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -45732,6 +45849,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45732
45849
|
userId?: number | undefined;
|
|
45733
45850
|
credentialId?: string | undefined;
|
|
45734
45851
|
relativePath?: string | undefined;
|
|
45852
|
+
purgeDirectory?: boolean | undefined;
|
|
45735
45853
|
commitAuthorName?: string | undefined;
|
|
45736
45854
|
commitAuthorEmail?: string | undefined;
|
|
45737
45855
|
connectionId?: string | undefined;
|
|
@@ -45743,6 +45861,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45743
45861
|
userId?: number | null | undefined;
|
|
45744
45862
|
credentialId?: string | undefined;
|
|
45745
45863
|
relativePath?: string | null | undefined;
|
|
45864
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45746
45865
|
commitAuthorName?: string | null | undefined;
|
|
45747
45866
|
commitAuthorEmail?: string | null | undefined;
|
|
45748
45867
|
connectionId?: string | null | undefined;
|
|
@@ -45752,6 +45871,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45752
45871
|
url: z.ZodString;
|
|
45753
45872
|
branch: z.ZodString;
|
|
45754
45873
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45874
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
45755
45875
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45756
45876
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45757
45877
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -45762,6 +45882,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45762
45882
|
userId?: number | undefined;
|
|
45763
45883
|
credentialId?: string | undefined;
|
|
45764
45884
|
relativePath?: string | undefined;
|
|
45885
|
+
purgeDirectory?: boolean | undefined;
|
|
45765
45886
|
commitAuthorName?: string | undefined;
|
|
45766
45887
|
commitAuthorEmail?: string | undefined;
|
|
45767
45888
|
connectionId?: string | undefined;
|
|
@@ -45771,6 +45892,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45771
45892
|
userId?: number | null | undefined;
|
|
45772
45893
|
credentialId?: string | undefined;
|
|
45773
45894
|
relativePath?: string | null | undefined;
|
|
45895
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45774
45896
|
commitAuthorName?: string | null | undefined;
|
|
45775
45897
|
commitAuthorEmail?: string | null | undefined;
|
|
45776
45898
|
connectionId?: string | null | undefined;
|
|
@@ -45782,6 +45904,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45782
45904
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45783
45905
|
branch: z.ZodString;
|
|
45784
45906
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45907
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
45785
45908
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45786
45909
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
45787
45910
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -45792,6 +45915,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45792
45915
|
userId?: number | undefined;
|
|
45793
45916
|
credentialId?: string | undefined;
|
|
45794
45917
|
relativePath?: string | undefined;
|
|
45918
|
+
purgeDirectory?: boolean | undefined;
|
|
45795
45919
|
commitAuthorName?: string | undefined;
|
|
45796
45920
|
commitAuthorEmail?: string | undefined;
|
|
45797
45921
|
connectionId?: string | undefined;
|
|
@@ -45802,6 +45926,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45802
45926
|
userId?: number | null | undefined;
|
|
45803
45927
|
credentialId?: string | undefined;
|
|
45804
45928
|
relativePath?: string | null | undefined;
|
|
45929
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45805
45930
|
commitAuthorName?: string | null | undefined;
|
|
45806
45931
|
commitAuthorEmail?: string | null | undefined;
|
|
45807
45932
|
connectionId?: string | null | undefined;
|
|
@@ -45846,6 +45971,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45846
45971
|
userId?: number | undefined;
|
|
45847
45972
|
credentialId?: string | undefined;
|
|
45848
45973
|
relativePath?: string | undefined;
|
|
45974
|
+
purgeDirectory?: boolean | undefined;
|
|
45849
45975
|
commitAuthorName?: string | undefined;
|
|
45850
45976
|
commitAuthorEmail?: string | undefined;
|
|
45851
45977
|
connectionId?: string | undefined;
|
|
@@ -45858,6 +45984,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45858
45984
|
userId?: number | undefined;
|
|
45859
45985
|
credentialId?: string | undefined;
|
|
45860
45986
|
relativePath?: string | undefined;
|
|
45987
|
+
purgeDirectory?: boolean | undefined;
|
|
45861
45988
|
commitAuthorName?: string | undefined;
|
|
45862
45989
|
commitAuthorEmail?: string | undefined;
|
|
45863
45990
|
connectionId?: string | undefined;
|
|
@@ -45868,6 +45995,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45868
45995
|
userId?: number | undefined;
|
|
45869
45996
|
credentialId?: string | undefined;
|
|
45870
45997
|
relativePath?: string | undefined;
|
|
45998
|
+
purgeDirectory?: boolean | undefined;
|
|
45871
45999
|
commitAuthorName?: string | undefined;
|
|
45872
46000
|
commitAuthorEmail?: string | undefined;
|
|
45873
46001
|
connectionId?: string | undefined;
|
|
@@ -45879,6 +46007,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45879
46007
|
userId?: number | undefined;
|
|
45880
46008
|
credentialId?: string | undefined;
|
|
45881
46009
|
relativePath?: string | undefined;
|
|
46010
|
+
purgeDirectory?: boolean | undefined;
|
|
45882
46011
|
commitAuthorName?: string | undefined;
|
|
45883
46012
|
commitAuthorEmail?: string | undefined;
|
|
45884
46013
|
connectionId?: string | undefined;
|
|
@@ -45902,6 +46031,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45902
46031
|
userId?: number | null | undefined;
|
|
45903
46032
|
credentialId?: string | undefined;
|
|
45904
46033
|
relativePath?: string | null | undefined;
|
|
46034
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45905
46035
|
commitAuthorName?: string | null | undefined;
|
|
45906
46036
|
commitAuthorEmail?: string | null | undefined;
|
|
45907
46037
|
connectionId?: string | null | undefined;
|
|
@@ -45914,6 +46044,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45914
46044
|
userId?: number | null | undefined;
|
|
45915
46045
|
credentialId?: string | undefined;
|
|
45916
46046
|
relativePath?: string | null | undefined;
|
|
46047
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45917
46048
|
commitAuthorName?: string | null | undefined;
|
|
45918
46049
|
commitAuthorEmail?: string | null | undefined;
|
|
45919
46050
|
connectionId?: string | null | undefined;
|
|
@@ -45924,6 +46055,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45924
46055
|
userId?: number | null | undefined;
|
|
45925
46056
|
credentialId?: string | undefined;
|
|
45926
46057
|
relativePath?: string | null | undefined;
|
|
46058
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45927
46059
|
commitAuthorName?: string | null | undefined;
|
|
45928
46060
|
commitAuthorEmail?: string | null | undefined;
|
|
45929
46061
|
connectionId?: string | null | undefined;
|
|
@@ -45935,6 +46067,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
45935
46067
|
userId?: number | null | undefined;
|
|
45936
46068
|
credentialId?: string | undefined;
|
|
45937
46069
|
relativePath?: string | null | undefined;
|
|
46070
|
+
purgeDirectory?: boolean | null | undefined;
|
|
45938
46071
|
commitAuthorName?: string | null | undefined;
|
|
45939
46072
|
commitAuthorEmail?: string | null | undefined;
|
|
45940
46073
|
connectionId?: string | null | undefined;
|
|
@@ -46144,6 +46277,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
46144
46277
|
userId?: number | undefined;
|
|
46145
46278
|
credentialId?: string | undefined;
|
|
46146
46279
|
relativePath?: string | undefined;
|
|
46280
|
+
purgeDirectory?: boolean | undefined;
|
|
46147
46281
|
commitAuthorName?: string | undefined;
|
|
46148
46282
|
commitAuthorEmail?: string | undefined;
|
|
46149
46283
|
connectionId?: string | undefined;
|
|
@@ -46156,6 +46290,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
46156
46290
|
userId?: number | undefined;
|
|
46157
46291
|
credentialId?: string | undefined;
|
|
46158
46292
|
relativePath?: string | undefined;
|
|
46293
|
+
purgeDirectory?: boolean | undefined;
|
|
46159
46294
|
commitAuthorName?: string | undefined;
|
|
46160
46295
|
commitAuthorEmail?: string | undefined;
|
|
46161
46296
|
connectionId?: string | undefined;
|
|
@@ -46166,6 +46301,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
46166
46301
|
userId?: number | undefined;
|
|
46167
46302
|
credentialId?: string | undefined;
|
|
46168
46303
|
relativePath?: string | undefined;
|
|
46304
|
+
purgeDirectory?: boolean | undefined;
|
|
46169
46305
|
commitAuthorName?: string | undefined;
|
|
46170
46306
|
commitAuthorEmail?: string | undefined;
|
|
46171
46307
|
connectionId?: string | undefined;
|
|
@@ -46177,6 +46313,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
46177
46313
|
userId?: number | undefined;
|
|
46178
46314
|
credentialId?: string | undefined;
|
|
46179
46315
|
relativePath?: string | undefined;
|
|
46316
|
+
purgeDirectory?: boolean | undefined;
|
|
46180
46317
|
commitAuthorName?: string | undefined;
|
|
46181
46318
|
commitAuthorEmail?: string | undefined;
|
|
46182
46319
|
connectionId?: string | undefined;
|
|
@@ -46265,6 +46402,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
46265
46402
|
userId?: number | null | undefined;
|
|
46266
46403
|
credentialId?: string | undefined;
|
|
46267
46404
|
relativePath?: string | null | undefined;
|
|
46405
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46268
46406
|
commitAuthorName?: string | null | undefined;
|
|
46269
46407
|
commitAuthorEmail?: string | null | undefined;
|
|
46270
46408
|
connectionId?: string | null | undefined;
|
|
@@ -46277,6 +46415,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
46277
46415
|
userId?: number | null | undefined;
|
|
46278
46416
|
credentialId?: string | undefined;
|
|
46279
46417
|
relativePath?: string | null | undefined;
|
|
46418
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46280
46419
|
commitAuthorName?: string | null | undefined;
|
|
46281
46420
|
commitAuthorEmail?: string | null | undefined;
|
|
46282
46421
|
connectionId?: string | null | undefined;
|
|
@@ -46287,6 +46426,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
46287
46426
|
userId?: number | null | undefined;
|
|
46288
46427
|
credentialId?: string | undefined;
|
|
46289
46428
|
relativePath?: string | null | undefined;
|
|
46429
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46290
46430
|
commitAuthorName?: string | null | undefined;
|
|
46291
46431
|
commitAuthorEmail?: string | null | undefined;
|
|
46292
46432
|
connectionId?: string | null | undefined;
|
|
@@ -46298,6 +46438,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
46298
46438
|
userId?: number | null | undefined;
|
|
46299
46439
|
credentialId?: string | undefined;
|
|
46300
46440
|
relativePath?: string | null | undefined;
|
|
46441
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46301
46442
|
commitAuthorName?: string | null | undefined;
|
|
46302
46443
|
commitAuthorEmail?: string | null | undefined;
|
|
46303
46444
|
connectionId?: string | null | undefined;
|
|
@@ -46450,6 +46591,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46450
46591
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46451
46592
|
branch: z.ZodString;
|
|
46452
46593
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46594
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
46453
46595
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46454
46596
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46455
46597
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -46462,6 +46604,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46462
46604
|
userId?: number | undefined;
|
|
46463
46605
|
credentialId?: string | undefined;
|
|
46464
46606
|
relativePath?: string | undefined;
|
|
46607
|
+
purgeDirectory?: boolean | undefined;
|
|
46465
46608
|
commitAuthorName?: string | undefined;
|
|
46466
46609
|
commitAuthorEmail?: string | undefined;
|
|
46467
46610
|
connectionId?: string | undefined;
|
|
@@ -46474,6 +46617,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46474
46617
|
userId?: number | null | undefined;
|
|
46475
46618
|
credentialId?: string | undefined;
|
|
46476
46619
|
relativePath?: string | null | undefined;
|
|
46620
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46477
46621
|
commitAuthorName?: string | null | undefined;
|
|
46478
46622
|
commitAuthorEmail?: string | null | undefined;
|
|
46479
46623
|
connectionId?: string | null | undefined;
|
|
@@ -46487,6 +46631,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46487
46631
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46488
46632
|
branch: z.ZodString;
|
|
46489
46633
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46634
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
46490
46635
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46491
46636
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
46492
46637
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -46497,6 +46642,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46497
46642
|
userId?: number | undefined;
|
|
46498
46643
|
credentialId?: string | undefined;
|
|
46499
46644
|
relativePath?: string | undefined;
|
|
46645
|
+
purgeDirectory?: boolean | undefined;
|
|
46500
46646
|
commitAuthorName?: string | undefined;
|
|
46501
46647
|
commitAuthorEmail?: string | undefined;
|
|
46502
46648
|
connectionId?: string | undefined;
|
|
@@ -46508,6 +46654,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46508
46654
|
userId?: number | null | undefined;
|
|
46509
46655
|
credentialId?: string | undefined;
|
|
46510
46656
|
relativePath?: string | null | undefined;
|
|
46657
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46511
46658
|
commitAuthorName?: string | null | undefined;
|
|
46512
46659
|
commitAuthorEmail?: string | null | undefined;
|
|
46513
46660
|
connectionId?: string | null | undefined;
|
|
@@ -46517,6 +46664,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46517
46664
|
url: z.ZodString;
|
|
46518
46665
|
branch: z.ZodString;
|
|
46519
46666
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46667
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
46520
46668
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46521
46669
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46522
46670
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -46527,6 +46675,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46527
46675
|
userId?: number | undefined;
|
|
46528
46676
|
credentialId?: string | undefined;
|
|
46529
46677
|
relativePath?: string | undefined;
|
|
46678
|
+
purgeDirectory?: boolean | undefined;
|
|
46530
46679
|
commitAuthorName?: string | undefined;
|
|
46531
46680
|
commitAuthorEmail?: string | undefined;
|
|
46532
46681
|
connectionId?: string | undefined;
|
|
@@ -46536,6 +46685,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46536
46685
|
userId?: number | null | undefined;
|
|
46537
46686
|
credentialId?: string | undefined;
|
|
46538
46687
|
relativePath?: string | null | undefined;
|
|
46688
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46539
46689
|
commitAuthorName?: string | null | undefined;
|
|
46540
46690
|
commitAuthorEmail?: string | null | undefined;
|
|
46541
46691
|
connectionId?: string | null | undefined;
|
|
@@ -46547,6 +46697,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46547
46697
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46548
46698
|
branch: z.ZodString;
|
|
46549
46699
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46700
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
46550
46701
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46551
46702
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
46552
46703
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -46557,6 +46708,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46557
46708
|
userId?: number | undefined;
|
|
46558
46709
|
credentialId?: string | undefined;
|
|
46559
46710
|
relativePath?: string | undefined;
|
|
46711
|
+
purgeDirectory?: boolean | undefined;
|
|
46560
46712
|
commitAuthorName?: string | undefined;
|
|
46561
46713
|
commitAuthorEmail?: string | undefined;
|
|
46562
46714
|
connectionId?: string | undefined;
|
|
@@ -46567,6 +46719,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46567
46719
|
userId?: number | null | undefined;
|
|
46568
46720
|
credentialId?: string | undefined;
|
|
46569
46721
|
relativePath?: string | null | undefined;
|
|
46722
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46570
46723
|
commitAuthorName?: string | null | undefined;
|
|
46571
46724
|
commitAuthorEmail?: string | null | undefined;
|
|
46572
46725
|
connectionId?: string | null | undefined;
|
|
@@ -46611,6 +46764,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46611
46764
|
userId?: number | undefined;
|
|
46612
46765
|
credentialId?: string | undefined;
|
|
46613
46766
|
relativePath?: string | undefined;
|
|
46767
|
+
purgeDirectory?: boolean | undefined;
|
|
46614
46768
|
commitAuthorName?: string | undefined;
|
|
46615
46769
|
commitAuthorEmail?: string | undefined;
|
|
46616
46770
|
connectionId?: string | undefined;
|
|
@@ -46623,6 +46777,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46623
46777
|
userId?: number | undefined;
|
|
46624
46778
|
credentialId?: string | undefined;
|
|
46625
46779
|
relativePath?: string | undefined;
|
|
46780
|
+
purgeDirectory?: boolean | undefined;
|
|
46626
46781
|
commitAuthorName?: string | undefined;
|
|
46627
46782
|
commitAuthorEmail?: string | undefined;
|
|
46628
46783
|
connectionId?: string | undefined;
|
|
@@ -46633,6 +46788,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46633
46788
|
userId?: number | undefined;
|
|
46634
46789
|
credentialId?: string | undefined;
|
|
46635
46790
|
relativePath?: string | undefined;
|
|
46791
|
+
purgeDirectory?: boolean | undefined;
|
|
46636
46792
|
commitAuthorName?: string | undefined;
|
|
46637
46793
|
commitAuthorEmail?: string | undefined;
|
|
46638
46794
|
connectionId?: string | undefined;
|
|
@@ -46644,6 +46800,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46644
46800
|
userId?: number | undefined;
|
|
46645
46801
|
credentialId?: string | undefined;
|
|
46646
46802
|
relativePath?: string | undefined;
|
|
46803
|
+
purgeDirectory?: boolean | undefined;
|
|
46647
46804
|
commitAuthorName?: string | undefined;
|
|
46648
46805
|
commitAuthorEmail?: string | undefined;
|
|
46649
46806
|
connectionId?: string | undefined;
|
|
@@ -46667,6 +46824,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46667
46824
|
userId?: number | null | undefined;
|
|
46668
46825
|
credentialId?: string | undefined;
|
|
46669
46826
|
relativePath?: string | null | undefined;
|
|
46827
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46670
46828
|
commitAuthorName?: string | null | undefined;
|
|
46671
46829
|
commitAuthorEmail?: string | null | undefined;
|
|
46672
46830
|
connectionId?: string | null | undefined;
|
|
@@ -46679,6 +46837,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46679
46837
|
userId?: number | null | undefined;
|
|
46680
46838
|
credentialId?: string | undefined;
|
|
46681
46839
|
relativePath?: string | null | undefined;
|
|
46840
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46682
46841
|
commitAuthorName?: string | null | undefined;
|
|
46683
46842
|
commitAuthorEmail?: string | null | undefined;
|
|
46684
46843
|
connectionId?: string | null | undefined;
|
|
@@ -46689,6 +46848,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46689
46848
|
userId?: number | null | undefined;
|
|
46690
46849
|
credentialId?: string | undefined;
|
|
46691
46850
|
relativePath?: string | null | undefined;
|
|
46851
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46692
46852
|
commitAuthorName?: string | null | undefined;
|
|
46693
46853
|
commitAuthorEmail?: string | null | undefined;
|
|
46694
46854
|
connectionId?: string | null | undefined;
|
|
@@ -46700,6 +46860,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46700
46860
|
userId?: number | null | undefined;
|
|
46701
46861
|
credentialId?: string | undefined;
|
|
46702
46862
|
relativePath?: string | null | undefined;
|
|
46863
|
+
purgeDirectory?: boolean | null | undefined;
|
|
46703
46864
|
commitAuthorName?: string | null | undefined;
|
|
46704
46865
|
commitAuthorEmail?: string | null | undefined;
|
|
46705
46866
|
connectionId?: string | null | undefined;
|
|
@@ -46909,6 +47070,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46909
47070
|
userId?: number | undefined;
|
|
46910
47071
|
credentialId?: string | undefined;
|
|
46911
47072
|
relativePath?: string | undefined;
|
|
47073
|
+
purgeDirectory?: boolean | undefined;
|
|
46912
47074
|
commitAuthorName?: string | undefined;
|
|
46913
47075
|
commitAuthorEmail?: string | undefined;
|
|
46914
47076
|
connectionId?: string | undefined;
|
|
@@ -46921,6 +47083,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46921
47083
|
userId?: number | undefined;
|
|
46922
47084
|
credentialId?: string | undefined;
|
|
46923
47085
|
relativePath?: string | undefined;
|
|
47086
|
+
purgeDirectory?: boolean | undefined;
|
|
46924
47087
|
commitAuthorName?: string | undefined;
|
|
46925
47088
|
commitAuthorEmail?: string | undefined;
|
|
46926
47089
|
connectionId?: string | undefined;
|
|
@@ -46931,6 +47094,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46931
47094
|
userId?: number | undefined;
|
|
46932
47095
|
credentialId?: string | undefined;
|
|
46933
47096
|
relativePath?: string | undefined;
|
|
47097
|
+
purgeDirectory?: boolean | undefined;
|
|
46934
47098
|
commitAuthorName?: string | undefined;
|
|
46935
47099
|
commitAuthorEmail?: string | undefined;
|
|
46936
47100
|
connectionId?: string | undefined;
|
|
@@ -46942,6 +47106,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
46942
47106
|
userId?: number | undefined;
|
|
46943
47107
|
credentialId?: string | undefined;
|
|
46944
47108
|
relativePath?: string | undefined;
|
|
47109
|
+
purgeDirectory?: boolean | undefined;
|
|
46945
47110
|
commitAuthorName?: string | undefined;
|
|
46946
47111
|
commitAuthorEmail?: string | undefined;
|
|
46947
47112
|
connectionId?: string | undefined;
|
|
@@ -47030,6 +47195,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47030
47195
|
userId?: number | null | undefined;
|
|
47031
47196
|
credentialId?: string | undefined;
|
|
47032
47197
|
relativePath?: string | null | undefined;
|
|
47198
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47033
47199
|
commitAuthorName?: string | null | undefined;
|
|
47034
47200
|
commitAuthorEmail?: string | null | undefined;
|
|
47035
47201
|
connectionId?: string | null | undefined;
|
|
@@ -47042,6 +47208,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47042
47208
|
userId?: number | null | undefined;
|
|
47043
47209
|
credentialId?: string | undefined;
|
|
47044
47210
|
relativePath?: string | null | undefined;
|
|
47211
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47045
47212
|
commitAuthorName?: string | null | undefined;
|
|
47046
47213
|
commitAuthorEmail?: string | null | undefined;
|
|
47047
47214
|
connectionId?: string | null | undefined;
|
|
@@ -47052,6 +47219,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47052
47219
|
userId?: number | null | undefined;
|
|
47053
47220
|
credentialId?: string | undefined;
|
|
47054
47221
|
relativePath?: string | null | undefined;
|
|
47222
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47055
47223
|
commitAuthorName?: string | null | undefined;
|
|
47056
47224
|
commitAuthorEmail?: string | null | undefined;
|
|
47057
47225
|
connectionId?: string | null | undefined;
|
|
@@ -47063,6 +47231,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47063
47231
|
userId?: number | null | undefined;
|
|
47064
47232
|
credentialId?: string | undefined;
|
|
47065
47233
|
relativePath?: string | null | undefined;
|
|
47234
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47066
47235
|
commitAuthorName?: string | null | undefined;
|
|
47067
47236
|
commitAuthorEmail?: string | null | undefined;
|
|
47068
47237
|
connectionId?: string | null | undefined;
|
|
@@ -47153,6 +47322,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47153
47322
|
userId?: number | undefined;
|
|
47154
47323
|
credentialId?: string | undefined;
|
|
47155
47324
|
relativePath?: string | undefined;
|
|
47325
|
+
purgeDirectory?: boolean | undefined;
|
|
47156
47326
|
commitAuthorName?: string | undefined;
|
|
47157
47327
|
commitAuthorEmail?: string | undefined;
|
|
47158
47328
|
connectionId?: string | undefined;
|
|
@@ -47165,6 +47335,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47165
47335
|
userId?: number | undefined;
|
|
47166
47336
|
credentialId?: string | undefined;
|
|
47167
47337
|
relativePath?: string | undefined;
|
|
47338
|
+
purgeDirectory?: boolean | undefined;
|
|
47168
47339
|
commitAuthorName?: string | undefined;
|
|
47169
47340
|
commitAuthorEmail?: string | undefined;
|
|
47170
47341
|
connectionId?: string | undefined;
|
|
@@ -47175,6 +47346,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47175
47346
|
userId?: number | undefined;
|
|
47176
47347
|
credentialId?: string | undefined;
|
|
47177
47348
|
relativePath?: string | undefined;
|
|
47349
|
+
purgeDirectory?: boolean | undefined;
|
|
47178
47350
|
commitAuthorName?: string | undefined;
|
|
47179
47351
|
commitAuthorEmail?: string | undefined;
|
|
47180
47352
|
connectionId?: string | undefined;
|
|
@@ -47186,6 +47358,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47186
47358
|
userId?: number | undefined;
|
|
47187
47359
|
credentialId?: string | undefined;
|
|
47188
47360
|
relativePath?: string | undefined;
|
|
47361
|
+
purgeDirectory?: boolean | undefined;
|
|
47189
47362
|
commitAuthorName?: string | undefined;
|
|
47190
47363
|
commitAuthorEmail?: string | undefined;
|
|
47191
47364
|
connectionId?: string | undefined;
|
|
@@ -47276,6 +47449,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47276
47449
|
userId?: number | null | undefined;
|
|
47277
47450
|
credentialId?: string | undefined;
|
|
47278
47451
|
relativePath?: string | null | undefined;
|
|
47452
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47279
47453
|
commitAuthorName?: string | null | undefined;
|
|
47280
47454
|
commitAuthorEmail?: string | null | undefined;
|
|
47281
47455
|
connectionId?: string | null | undefined;
|
|
@@ -47288,6 +47462,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47288
47462
|
userId?: number | null | undefined;
|
|
47289
47463
|
credentialId?: string | undefined;
|
|
47290
47464
|
relativePath?: string | null | undefined;
|
|
47465
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47291
47466
|
commitAuthorName?: string | null | undefined;
|
|
47292
47467
|
commitAuthorEmail?: string | null | undefined;
|
|
47293
47468
|
connectionId?: string | null | undefined;
|
|
@@ -47298,6 +47473,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47298
47473
|
userId?: number | null | undefined;
|
|
47299
47474
|
credentialId?: string | undefined;
|
|
47300
47475
|
relativePath?: string | null | undefined;
|
|
47476
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47301
47477
|
commitAuthorName?: string | null | undefined;
|
|
47302
47478
|
commitAuthorEmail?: string | null | undefined;
|
|
47303
47479
|
connectionId?: string | null | undefined;
|
|
@@ -47309,6 +47485,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
47309
47485
|
userId?: number | null | undefined;
|
|
47310
47486
|
credentialId?: string | undefined;
|
|
47311
47487
|
relativePath?: string | null | undefined;
|
|
47488
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47312
47489
|
commitAuthorName?: string | null | undefined;
|
|
47313
47490
|
commitAuthorEmail?: string | null | undefined;
|
|
47314
47491
|
connectionId?: string | null | undefined;
|
|
@@ -47477,6 +47654,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47477
47654
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47478
47655
|
branch: z.ZodString;
|
|
47479
47656
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47657
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
47480
47658
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47481
47659
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47482
47660
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -47489,6 +47667,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47489
47667
|
userId?: number | undefined;
|
|
47490
47668
|
credentialId?: string | undefined;
|
|
47491
47669
|
relativePath?: string | undefined;
|
|
47670
|
+
purgeDirectory?: boolean | undefined;
|
|
47492
47671
|
commitAuthorName?: string | undefined;
|
|
47493
47672
|
commitAuthorEmail?: string | undefined;
|
|
47494
47673
|
connectionId?: string | undefined;
|
|
@@ -47501,6 +47680,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47501
47680
|
userId?: number | null | undefined;
|
|
47502
47681
|
credentialId?: string | undefined;
|
|
47503
47682
|
relativePath?: string | null | undefined;
|
|
47683
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47504
47684
|
commitAuthorName?: string | null | undefined;
|
|
47505
47685
|
commitAuthorEmail?: string | null | undefined;
|
|
47506
47686
|
connectionId?: string | null | undefined;
|
|
@@ -47514,6 +47694,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47514
47694
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47515
47695
|
branch: z.ZodString;
|
|
47516
47696
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47697
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
47517
47698
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47518
47699
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
47519
47700
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -47524,6 +47705,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47524
47705
|
userId?: number | undefined;
|
|
47525
47706
|
credentialId?: string | undefined;
|
|
47526
47707
|
relativePath?: string | undefined;
|
|
47708
|
+
purgeDirectory?: boolean | undefined;
|
|
47527
47709
|
commitAuthorName?: string | undefined;
|
|
47528
47710
|
commitAuthorEmail?: string | undefined;
|
|
47529
47711
|
connectionId?: string | undefined;
|
|
@@ -47535,6 +47717,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47535
47717
|
userId?: number | null | undefined;
|
|
47536
47718
|
credentialId?: string | undefined;
|
|
47537
47719
|
relativePath?: string | null | undefined;
|
|
47720
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47538
47721
|
commitAuthorName?: string | null | undefined;
|
|
47539
47722
|
commitAuthorEmail?: string | null | undefined;
|
|
47540
47723
|
connectionId?: string | null | undefined;
|
|
@@ -47544,6 +47727,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47544
47727
|
url: z.ZodString;
|
|
47545
47728
|
branch: z.ZodString;
|
|
47546
47729
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47730
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
47547
47731
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47548
47732
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47549
47733
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -47554,6 +47738,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47554
47738
|
userId?: number | undefined;
|
|
47555
47739
|
credentialId?: string | undefined;
|
|
47556
47740
|
relativePath?: string | undefined;
|
|
47741
|
+
purgeDirectory?: boolean | undefined;
|
|
47557
47742
|
commitAuthorName?: string | undefined;
|
|
47558
47743
|
commitAuthorEmail?: string | undefined;
|
|
47559
47744
|
connectionId?: string | undefined;
|
|
@@ -47563,6 +47748,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47563
47748
|
userId?: number | null | undefined;
|
|
47564
47749
|
credentialId?: string | undefined;
|
|
47565
47750
|
relativePath?: string | null | undefined;
|
|
47751
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47566
47752
|
commitAuthorName?: string | null | undefined;
|
|
47567
47753
|
commitAuthorEmail?: string | null | undefined;
|
|
47568
47754
|
connectionId?: string | null | undefined;
|
|
@@ -47574,6 +47760,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47574
47760
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47575
47761
|
branch: z.ZodString;
|
|
47576
47762
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47763
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
47577
47764
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47578
47765
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
47579
47766
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -47584,6 +47771,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47584
47771
|
userId?: number | undefined;
|
|
47585
47772
|
credentialId?: string | undefined;
|
|
47586
47773
|
relativePath?: string | undefined;
|
|
47774
|
+
purgeDirectory?: boolean | undefined;
|
|
47587
47775
|
commitAuthorName?: string | undefined;
|
|
47588
47776
|
commitAuthorEmail?: string | undefined;
|
|
47589
47777
|
connectionId?: string | undefined;
|
|
@@ -47594,6 +47782,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47594
47782
|
userId?: number | null | undefined;
|
|
47595
47783
|
credentialId?: string | undefined;
|
|
47596
47784
|
relativePath?: string | null | undefined;
|
|
47785
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47597
47786
|
commitAuthorName?: string | null | undefined;
|
|
47598
47787
|
commitAuthorEmail?: string | null | undefined;
|
|
47599
47788
|
connectionId?: string | null | undefined;
|
|
@@ -47638,6 +47827,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47638
47827
|
userId?: number | undefined;
|
|
47639
47828
|
credentialId?: string | undefined;
|
|
47640
47829
|
relativePath?: string | undefined;
|
|
47830
|
+
purgeDirectory?: boolean | undefined;
|
|
47641
47831
|
commitAuthorName?: string | undefined;
|
|
47642
47832
|
commitAuthorEmail?: string | undefined;
|
|
47643
47833
|
connectionId?: string | undefined;
|
|
@@ -47650,6 +47840,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47650
47840
|
userId?: number | undefined;
|
|
47651
47841
|
credentialId?: string | undefined;
|
|
47652
47842
|
relativePath?: string | undefined;
|
|
47843
|
+
purgeDirectory?: boolean | undefined;
|
|
47653
47844
|
commitAuthorName?: string | undefined;
|
|
47654
47845
|
commitAuthorEmail?: string | undefined;
|
|
47655
47846
|
connectionId?: string | undefined;
|
|
@@ -47660,6 +47851,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47660
47851
|
userId?: number | undefined;
|
|
47661
47852
|
credentialId?: string | undefined;
|
|
47662
47853
|
relativePath?: string | undefined;
|
|
47854
|
+
purgeDirectory?: boolean | undefined;
|
|
47663
47855
|
commitAuthorName?: string | undefined;
|
|
47664
47856
|
commitAuthorEmail?: string | undefined;
|
|
47665
47857
|
connectionId?: string | undefined;
|
|
@@ -47671,6 +47863,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47671
47863
|
userId?: number | undefined;
|
|
47672
47864
|
credentialId?: string | undefined;
|
|
47673
47865
|
relativePath?: string | undefined;
|
|
47866
|
+
purgeDirectory?: boolean | undefined;
|
|
47674
47867
|
commitAuthorName?: string | undefined;
|
|
47675
47868
|
commitAuthorEmail?: string | undefined;
|
|
47676
47869
|
connectionId?: string | undefined;
|
|
@@ -47694,6 +47887,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47694
47887
|
userId?: number | null | undefined;
|
|
47695
47888
|
credentialId?: string | undefined;
|
|
47696
47889
|
relativePath?: string | null | undefined;
|
|
47890
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47697
47891
|
commitAuthorName?: string | null | undefined;
|
|
47698
47892
|
commitAuthorEmail?: string | null | undefined;
|
|
47699
47893
|
connectionId?: string | null | undefined;
|
|
@@ -47706,6 +47900,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47706
47900
|
userId?: number | null | undefined;
|
|
47707
47901
|
credentialId?: string | undefined;
|
|
47708
47902
|
relativePath?: string | null | undefined;
|
|
47903
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47709
47904
|
commitAuthorName?: string | null | undefined;
|
|
47710
47905
|
commitAuthorEmail?: string | null | undefined;
|
|
47711
47906
|
connectionId?: string | null | undefined;
|
|
@@ -47716,6 +47911,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47716
47911
|
userId?: number | null | undefined;
|
|
47717
47912
|
credentialId?: string | undefined;
|
|
47718
47913
|
relativePath?: string | null | undefined;
|
|
47914
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47719
47915
|
commitAuthorName?: string | null | undefined;
|
|
47720
47916
|
commitAuthorEmail?: string | null | undefined;
|
|
47721
47917
|
connectionId?: string | null | undefined;
|
|
@@ -47727,6 +47923,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47727
47923
|
userId?: number | null | undefined;
|
|
47728
47924
|
credentialId?: string | undefined;
|
|
47729
47925
|
relativePath?: string | null | undefined;
|
|
47926
|
+
purgeDirectory?: boolean | null | undefined;
|
|
47730
47927
|
commitAuthorName?: string | null | undefined;
|
|
47731
47928
|
commitAuthorEmail?: string | null | undefined;
|
|
47732
47929
|
connectionId?: string | null | undefined;
|
|
@@ -47936,6 +48133,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47936
48133
|
userId?: number | undefined;
|
|
47937
48134
|
credentialId?: string | undefined;
|
|
47938
48135
|
relativePath?: string | undefined;
|
|
48136
|
+
purgeDirectory?: boolean | undefined;
|
|
47939
48137
|
commitAuthorName?: string | undefined;
|
|
47940
48138
|
commitAuthorEmail?: string | undefined;
|
|
47941
48139
|
connectionId?: string | undefined;
|
|
@@ -47948,6 +48146,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47948
48146
|
userId?: number | undefined;
|
|
47949
48147
|
credentialId?: string | undefined;
|
|
47950
48148
|
relativePath?: string | undefined;
|
|
48149
|
+
purgeDirectory?: boolean | undefined;
|
|
47951
48150
|
commitAuthorName?: string | undefined;
|
|
47952
48151
|
commitAuthorEmail?: string | undefined;
|
|
47953
48152
|
connectionId?: string | undefined;
|
|
@@ -47958,6 +48157,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47958
48157
|
userId?: number | undefined;
|
|
47959
48158
|
credentialId?: string | undefined;
|
|
47960
48159
|
relativePath?: string | undefined;
|
|
48160
|
+
purgeDirectory?: boolean | undefined;
|
|
47961
48161
|
commitAuthorName?: string | undefined;
|
|
47962
48162
|
commitAuthorEmail?: string | undefined;
|
|
47963
48163
|
connectionId?: string | undefined;
|
|
@@ -47969,6 +48169,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
47969
48169
|
userId?: number | undefined;
|
|
47970
48170
|
credentialId?: string | undefined;
|
|
47971
48171
|
relativePath?: string | undefined;
|
|
48172
|
+
purgeDirectory?: boolean | undefined;
|
|
47972
48173
|
commitAuthorName?: string | undefined;
|
|
47973
48174
|
commitAuthorEmail?: string | undefined;
|
|
47974
48175
|
connectionId?: string | undefined;
|
|
@@ -48057,6 +48258,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48057
48258
|
userId?: number | null | undefined;
|
|
48058
48259
|
credentialId?: string | undefined;
|
|
48059
48260
|
relativePath?: string | null | undefined;
|
|
48261
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48060
48262
|
commitAuthorName?: string | null | undefined;
|
|
48061
48263
|
commitAuthorEmail?: string | null | undefined;
|
|
48062
48264
|
connectionId?: string | null | undefined;
|
|
@@ -48069,6 +48271,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48069
48271
|
userId?: number | null | undefined;
|
|
48070
48272
|
credentialId?: string | undefined;
|
|
48071
48273
|
relativePath?: string | null | undefined;
|
|
48274
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48072
48275
|
commitAuthorName?: string | null | undefined;
|
|
48073
48276
|
commitAuthorEmail?: string | null | undefined;
|
|
48074
48277
|
connectionId?: string | null | undefined;
|
|
@@ -48079,6 +48282,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48079
48282
|
userId?: number | null | undefined;
|
|
48080
48283
|
credentialId?: string | undefined;
|
|
48081
48284
|
relativePath?: string | null | undefined;
|
|
48285
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48082
48286
|
commitAuthorName?: string | null | undefined;
|
|
48083
48287
|
commitAuthorEmail?: string | null | undefined;
|
|
48084
48288
|
connectionId?: string | null | undefined;
|
|
@@ -48090,6 +48294,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48090
48294
|
userId?: number | null | undefined;
|
|
48091
48295
|
credentialId?: string | undefined;
|
|
48092
48296
|
relativePath?: string | null | undefined;
|
|
48297
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48093
48298
|
commitAuthorName?: string | null | undefined;
|
|
48094
48299
|
commitAuthorEmail?: string | null | undefined;
|
|
48095
48300
|
connectionId?: string | null | undefined;
|
|
@@ -48191,6 +48396,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48191
48396
|
url: z.ZodString;
|
|
48192
48397
|
branch: z.ZodString;
|
|
48193
48398
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48399
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
48194
48400
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48195
48401
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48196
48402
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -48201,6 +48407,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48201
48407
|
userId?: number | undefined;
|
|
48202
48408
|
credentialId?: string | undefined;
|
|
48203
48409
|
relativePath?: string | undefined;
|
|
48410
|
+
purgeDirectory?: boolean | undefined;
|
|
48204
48411
|
commitAuthorName?: string | undefined;
|
|
48205
48412
|
commitAuthorEmail?: string | undefined;
|
|
48206
48413
|
connectionId?: string | undefined;
|
|
@@ -48210,6 +48417,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48210
48417
|
userId?: number | null | undefined;
|
|
48211
48418
|
credentialId?: string | undefined;
|
|
48212
48419
|
relativePath?: string | null | undefined;
|
|
48420
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48213
48421
|
commitAuthorName?: string | null | undefined;
|
|
48214
48422
|
commitAuthorEmail?: string | null | undefined;
|
|
48215
48423
|
connectionId?: string | null | undefined;
|
|
@@ -48223,6 +48431,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48223
48431
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48224
48432
|
branch: z.ZodString;
|
|
48225
48433
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48434
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
48226
48435
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48227
48436
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48228
48437
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -48235,6 +48444,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48235
48444
|
userId?: number | undefined;
|
|
48236
48445
|
credentialId?: string | undefined;
|
|
48237
48446
|
relativePath?: string | undefined;
|
|
48447
|
+
purgeDirectory?: boolean | undefined;
|
|
48238
48448
|
commitAuthorName?: string | undefined;
|
|
48239
48449
|
commitAuthorEmail?: string | undefined;
|
|
48240
48450
|
connectionId?: string | undefined;
|
|
@@ -48247,6 +48457,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48247
48457
|
userId?: number | null | undefined;
|
|
48248
48458
|
credentialId?: string | undefined;
|
|
48249
48459
|
relativePath?: string | null | undefined;
|
|
48460
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48250
48461
|
commitAuthorName?: string | null | undefined;
|
|
48251
48462
|
commitAuthorEmail?: string | null | undefined;
|
|
48252
48463
|
connectionId?: string | null | undefined;
|
|
@@ -48258,6 +48469,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48258
48469
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48259
48470
|
branch: z.ZodString;
|
|
48260
48471
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48472
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
48261
48473
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48262
48474
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48263
48475
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -48268,6 +48480,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48268
48480
|
userId?: number | undefined;
|
|
48269
48481
|
credentialId?: string | undefined;
|
|
48270
48482
|
relativePath?: string | undefined;
|
|
48483
|
+
purgeDirectory?: boolean | undefined;
|
|
48271
48484
|
commitAuthorName?: string | undefined;
|
|
48272
48485
|
commitAuthorEmail?: string | undefined;
|
|
48273
48486
|
connectionId?: string | undefined;
|
|
@@ -48278,6 +48491,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48278
48491
|
userId?: number | null | undefined;
|
|
48279
48492
|
credentialId?: string | undefined;
|
|
48280
48493
|
relativePath?: string | null | undefined;
|
|
48494
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48281
48495
|
commitAuthorName?: string | null | undefined;
|
|
48282
48496
|
commitAuthorEmail?: string | null | undefined;
|
|
48283
48497
|
connectionId?: string | null | undefined;
|
|
@@ -48291,6 +48505,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48291
48505
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48292
48506
|
branch: z.ZodString;
|
|
48293
48507
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48508
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
48294
48509
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48295
48510
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
48296
48511
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48301,6 +48516,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48301
48516
|
userId?: number | undefined;
|
|
48302
48517
|
credentialId?: string | undefined;
|
|
48303
48518
|
relativePath?: string | undefined;
|
|
48519
|
+
purgeDirectory?: boolean | undefined;
|
|
48304
48520
|
commitAuthorName?: string | undefined;
|
|
48305
48521
|
commitAuthorEmail?: string | undefined;
|
|
48306
48522
|
connectionId?: string | undefined;
|
|
@@ -48312,6 +48528,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48312
48528
|
userId?: number | null | undefined;
|
|
48313
48529
|
credentialId?: string | undefined;
|
|
48314
48530
|
relativePath?: string | null | undefined;
|
|
48531
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48315
48532
|
commitAuthorName?: string | null | undefined;
|
|
48316
48533
|
commitAuthorEmail?: string | null | undefined;
|
|
48317
48534
|
connectionId?: string | null | undefined;
|
|
@@ -48357,6 +48574,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48357
48574
|
userId?: number | undefined;
|
|
48358
48575
|
credentialId?: string | undefined;
|
|
48359
48576
|
relativePath?: string | undefined;
|
|
48577
|
+
purgeDirectory?: boolean | undefined;
|
|
48360
48578
|
commitAuthorName?: string | undefined;
|
|
48361
48579
|
commitAuthorEmail?: string | undefined;
|
|
48362
48580
|
connectionId?: string | undefined;
|
|
@@ -48369,6 +48587,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48369
48587
|
userId?: number | undefined;
|
|
48370
48588
|
credentialId?: string | undefined;
|
|
48371
48589
|
relativePath?: string | undefined;
|
|
48590
|
+
purgeDirectory?: boolean | undefined;
|
|
48372
48591
|
commitAuthorName?: string | undefined;
|
|
48373
48592
|
commitAuthorEmail?: string | undefined;
|
|
48374
48593
|
connectionId?: string | undefined;
|
|
@@ -48379,6 +48598,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48379
48598
|
userId?: number | undefined;
|
|
48380
48599
|
credentialId?: string | undefined;
|
|
48381
48600
|
relativePath?: string | undefined;
|
|
48601
|
+
purgeDirectory?: boolean | undefined;
|
|
48382
48602
|
commitAuthorName?: string | undefined;
|
|
48383
48603
|
commitAuthorEmail?: string | undefined;
|
|
48384
48604
|
connectionId?: string | undefined;
|
|
@@ -48390,6 +48610,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48390
48610
|
userId?: number | undefined;
|
|
48391
48611
|
credentialId?: string | undefined;
|
|
48392
48612
|
relativePath?: string | undefined;
|
|
48613
|
+
purgeDirectory?: boolean | undefined;
|
|
48393
48614
|
commitAuthorName?: string | undefined;
|
|
48394
48615
|
commitAuthorEmail?: string | undefined;
|
|
48395
48616
|
connectionId?: string | undefined;
|
|
@@ -48474,6 +48695,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48474
48695
|
userId?: number | undefined;
|
|
48475
48696
|
credentialId?: string | undefined;
|
|
48476
48697
|
relativePath?: string | undefined;
|
|
48698
|
+
purgeDirectory?: boolean | undefined;
|
|
48477
48699
|
commitAuthorName?: string | undefined;
|
|
48478
48700
|
commitAuthorEmail?: string | undefined;
|
|
48479
48701
|
connectionId?: string | undefined;
|
|
@@ -48487,6 +48709,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48487
48709
|
userId?: number | undefined;
|
|
48488
48710
|
credentialId?: string | undefined;
|
|
48489
48711
|
relativePath?: string | undefined;
|
|
48712
|
+
purgeDirectory?: boolean | undefined;
|
|
48490
48713
|
commitAuthorName?: string | undefined;
|
|
48491
48714
|
commitAuthorEmail?: string | undefined;
|
|
48492
48715
|
connectionId?: string | undefined;
|
|
@@ -48498,6 +48721,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48498
48721
|
userId?: number | undefined;
|
|
48499
48722
|
credentialId?: string | undefined;
|
|
48500
48723
|
relativePath?: string | undefined;
|
|
48724
|
+
purgeDirectory?: boolean | undefined;
|
|
48501
48725
|
commitAuthorName?: string | undefined;
|
|
48502
48726
|
commitAuthorEmail?: string | undefined;
|
|
48503
48727
|
connectionId?: string | undefined;
|
|
@@ -48510,6 +48734,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48510
48734
|
userId?: number | undefined;
|
|
48511
48735
|
credentialId?: string | undefined;
|
|
48512
48736
|
relativePath?: string | undefined;
|
|
48737
|
+
purgeDirectory?: boolean | undefined;
|
|
48513
48738
|
commitAuthorName?: string | undefined;
|
|
48514
48739
|
commitAuthorEmail?: string | undefined;
|
|
48515
48740
|
connectionId?: string | undefined;
|
|
@@ -48545,6 +48770,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48545
48770
|
userId?: number | null | undefined;
|
|
48546
48771
|
credentialId?: string | undefined;
|
|
48547
48772
|
relativePath?: string | null | undefined;
|
|
48773
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48548
48774
|
commitAuthorName?: string | null | undefined;
|
|
48549
48775
|
commitAuthorEmail?: string | null | undefined;
|
|
48550
48776
|
connectionId?: string | null | undefined;
|
|
@@ -48557,6 +48783,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48557
48783
|
userId?: number | null | undefined;
|
|
48558
48784
|
credentialId?: string | undefined;
|
|
48559
48785
|
relativePath?: string | null | undefined;
|
|
48786
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48560
48787
|
commitAuthorName?: string | null | undefined;
|
|
48561
48788
|
commitAuthorEmail?: string | null | undefined;
|
|
48562
48789
|
connectionId?: string | null | undefined;
|
|
@@ -48567,6 +48794,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48567
48794
|
userId?: number | null | undefined;
|
|
48568
48795
|
credentialId?: string | undefined;
|
|
48569
48796
|
relativePath?: string | null | undefined;
|
|
48797
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48570
48798
|
commitAuthorName?: string | null | undefined;
|
|
48571
48799
|
commitAuthorEmail?: string | null | undefined;
|
|
48572
48800
|
connectionId?: string | null | undefined;
|
|
@@ -48578,6 +48806,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48578
48806
|
userId?: number | null | undefined;
|
|
48579
48807
|
credentialId?: string | undefined;
|
|
48580
48808
|
relativePath?: string | null | undefined;
|
|
48809
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48581
48810
|
commitAuthorName?: string | null | undefined;
|
|
48582
48811
|
commitAuthorEmail?: string | null | undefined;
|
|
48583
48812
|
connectionId?: string | null | undefined;
|
|
@@ -48662,6 +48891,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48662
48891
|
userId?: number | null | undefined;
|
|
48663
48892
|
credentialId?: string | undefined;
|
|
48664
48893
|
relativePath?: string | null | undefined;
|
|
48894
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48665
48895
|
commitAuthorName?: string | null | undefined;
|
|
48666
48896
|
commitAuthorEmail?: string | null | undefined;
|
|
48667
48897
|
connectionId?: string | null | undefined;
|
|
@@ -48675,6 +48905,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48675
48905
|
userId?: number | null | undefined;
|
|
48676
48906
|
credentialId?: string | undefined;
|
|
48677
48907
|
relativePath?: string | null | undefined;
|
|
48908
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48678
48909
|
commitAuthorName?: string | null | undefined;
|
|
48679
48910
|
commitAuthorEmail?: string | null | undefined;
|
|
48680
48911
|
connectionId?: string | null | undefined;
|
|
@@ -48686,6 +48917,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48686
48917
|
userId?: number | null | undefined;
|
|
48687
48918
|
credentialId?: string | undefined;
|
|
48688
48919
|
relativePath?: string | null | undefined;
|
|
48920
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48689
48921
|
commitAuthorName?: string | null | undefined;
|
|
48690
48922
|
commitAuthorEmail?: string | null | undefined;
|
|
48691
48923
|
connectionId?: string | null | undefined;
|
|
@@ -48698,6 +48930,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48698
48930
|
userId?: number | null | undefined;
|
|
48699
48931
|
credentialId?: string | undefined;
|
|
48700
48932
|
relativePath?: string | null | undefined;
|
|
48933
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48701
48934
|
commitAuthorName?: string | null | undefined;
|
|
48702
48935
|
commitAuthorEmail?: string | null | undefined;
|
|
48703
48936
|
connectionId?: string | null | undefined;
|
|
@@ -48790,6 +49023,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48790
49023
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48791
49024
|
branch: z.ZodString;
|
|
48792
49025
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49026
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
48793
49027
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48794
49028
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48795
49029
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -48802,6 +49036,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48802
49036
|
userId?: number | undefined;
|
|
48803
49037
|
credentialId?: string | undefined;
|
|
48804
49038
|
relativePath?: string | undefined;
|
|
49039
|
+
purgeDirectory?: boolean | undefined;
|
|
48805
49040
|
commitAuthorName?: string | undefined;
|
|
48806
49041
|
commitAuthorEmail?: string | undefined;
|
|
48807
49042
|
connectionId?: string | undefined;
|
|
@@ -48814,6 +49049,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48814
49049
|
userId?: number | null | undefined;
|
|
48815
49050
|
credentialId?: string | undefined;
|
|
48816
49051
|
relativePath?: string | null | undefined;
|
|
49052
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48817
49053
|
commitAuthorName?: string | null | undefined;
|
|
48818
49054
|
commitAuthorEmail?: string | null | undefined;
|
|
48819
49055
|
connectionId?: string | null | undefined;
|
|
@@ -48827,6 +49063,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48827
49063
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48828
49064
|
branch: z.ZodString;
|
|
48829
49065
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49066
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
48830
49067
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48831
49068
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
48832
49069
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48837,6 +49074,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48837
49074
|
userId?: number | undefined;
|
|
48838
49075
|
credentialId?: string | undefined;
|
|
48839
49076
|
relativePath?: string | undefined;
|
|
49077
|
+
purgeDirectory?: boolean | undefined;
|
|
48840
49078
|
commitAuthorName?: string | undefined;
|
|
48841
49079
|
commitAuthorEmail?: string | undefined;
|
|
48842
49080
|
connectionId?: string | undefined;
|
|
@@ -48848,6 +49086,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48848
49086
|
userId?: number | null | undefined;
|
|
48849
49087
|
credentialId?: string | undefined;
|
|
48850
49088
|
relativePath?: string | null | undefined;
|
|
49089
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48851
49090
|
commitAuthorName?: string | null | undefined;
|
|
48852
49091
|
commitAuthorEmail?: string | null | undefined;
|
|
48853
49092
|
connectionId?: string | null | undefined;
|
|
@@ -48857,6 +49096,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48857
49096
|
url: z.ZodString;
|
|
48858
49097
|
branch: z.ZodString;
|
|
48859
49098
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49099
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
48860
49100
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48861
49101
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48862
49102
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -48867,6 +49107,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48867
49107
|
userId?: number | undefined;
|
|
48868
49108
|
credentialId?: string | undefined;
|
|
48869
49109
|
relativePath?: string | undefined;
|
|
49110
|
+
purgeDirectory?: boolean | undefined;
|
|
48870
49111
|
commitAuthorName?: string | undefined;
|
|
48871
49112
|
commitAuthorEmail?: string | undefined;
|
|
48872
49113
|
connectionId?: string | undefined;
|
|
@@ -48876,6 +49117,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48876
49117
|
userId?: number | null | undefined;
|
|
48877
49118
|
credentialId?: string | undefined;
|
|
48878
49119
|
relativePath?: string | null | undefined;
|
|
49120
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48879
49121
|
commitAuthorName?: string | null | undefined;
|
|
48880
49122
|
commitAuthorEmail?: string | null | undefined;
|
|
48881
49123
|
connectionId?: string | null | undefined;
|
|
@@ -48887,6 +49129,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48887
49129
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48888
49130
|
branch: z.ZodString;
|
|
48889
49131
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49132
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
48890
49133
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48891
49134
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
48892
49135
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -48897,6 +49140,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48897
49140
|
userId?: number | undefined;
|
|
48898
49141
|
credentialId?: string | undefined;
|
|
48899
49142
|
relativePath?: string | undefined;
|
|
49143
|
+
purgeDirectory?: boolean | undefined;
|
|
48900
49144
|
commitAuthorName?: string | undefined;
|
|
48901
49145
|
commitAuthorEmail?: string | undefined;
|
|
48902
49146
|
connectionId?: string | undefined;
|
|
@@ -48907,6 +49151,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48907
49151
|
userId?: number | null | undefined;
|
|
48908
49152
|
credentialId?: string | undefined;
|
|
48909
49153
|
relativePath?: string | null | undefined;
|
|
49154
|
+
purgeDirectory?: boolean | null | undefined;
|
|
48910
49155
|
commitAuthorName?: string | null | undefined;
|
|
48911
49156
|
commitAuthorEmail?: string | null | undefined;
|
|
48912
49157
|
connectionId?: string | null | undefined;
|
|
@@ -48951,6 +49196,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48951
49196
|
userId?: number | undefined;
|
|
48952
49197
|
credentialId?: string | undefined;
|
|
48953
49198
|
relativePath?: string | undefined;
|
|
49199
|
+
purgeDirectory?: boolean | undefined;
|
|
48954
49200
|
commitAuthorName?: string | undefined;
|
|
48955
49201
|
commitAuthorEmail?: string | undefined;
|
|
48956
49202
|
connectionId?: string | undefined;
|
|
@@ -48963,6 +49209,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48963
49209
|
userId?: number | undefined;
|
|
48964
49210
|
credentialId?: string | undefined;
|
|
48965
49211
|
relativePath?: string | undefined;
|
|
49212
|
+
purgeDirectory?: boolean | undefined;
|
|
48966
49213
|
commitAuthorName?: string | undefined;
|
|
48967
49214
|
commitAuthorEmail?: string | undefined;
|
|
48968
49215
|
connectionId?: string | undefined;
|
|
@@ -48973,6 +49220,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48973
49220
|
userId?: number | undefined;
|
|
48974
49221
|
credentialId?: string | undefined;
|
|
48975
49222
|
relativePath?: string | undefined;
|
|
49223
|
+
purgeDirectory?: boolean | undefined;
|
|
48976
49224
|
commitAuthorName?: string | undefined;
|
|
48977
49225
|
commitAuthorEmail?: string | undefined;
|
|
48978
49226
|
connectionId?: string | undefined;
|
|
@@ -48984,6 +49232,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
48984
49232
|
userId?: number | undefined;
|
|
48985
49233
|
credentialId?: string | undefined;
|
|
48986
49234
|
relativePath?: string | undefined;
|
|
49235
|
+
purgeDirectory?: boolean | undefined;
|
|
48987
49236
|
commitAuthorName?: string | undefined;
|
|
48988
49237
|
commitAuthorEmail?: string | undefined;
|
|
48989
49238
|
connectionId?: string | undefined;
|
|
@@ -49007,6 +49256,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49007
49256
|
userId?: number | null | undefined;
|
|
49008
49257
|
credentialId?: string | undefined;
|
|
49009
49258
|
relativePath?: string | null | undefined;
|
|
49259
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49010
49260
|
commitAuthorName?: string | null | undefined;
|
|
49011
49261
|
commitAuthorEmail?: string | null | undefined;
|
|
49012
49262
|
connectionId?: string | null | undefined;
|
|
@@ -49019,6 +49269,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49019
49269
|
userId?: number | null | undefined;
|
|
49020
49270
|
credentialId?: string | undefined;
|
|
49021
49271
|
relativePath?: string | null | undefined;
|
|
49272
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49022
49273
|
commitAuthorName?: string | null | undefined;
|
|
49023
49274
|
commitAuthorEmail?: string | null | undefined;
|
|
49024
49275
|
connectionId?: string | null | undefined;
|
|
@@ -49029,6 +49280,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49029
49280
|
userId?: number | null | undefined;
|
|
49030
49281
|
credentialId?: string | undefined;
|
|
49031
49282
|
relativePath?: string | null | undefined;
|
|
49283
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49032
49284
|
commitAuthorName?: string | null | undefined;
|
|
49033
49285
|
commitAuthorEmail?: string | null | undefined;
|
|
49034
49286
|
connectionId?: string | null | undefined;
|
|
@@ -49040,6 +49292,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49040
49292
|
userId?: number | null | undefined;
|
|
49041
49293
|
credentialId?: string | undefined;
|
|
49042
49294
|
relativePath?: string | null | undefined;
|
|
49295
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49043
49296
|
commitAuthorName?: string | null | undefined;
|
|
49044
49297
|
commitAuthorEmail?: string | null | undefined;
|
|
49045
49298
|
connectionId?: string | null | undefined;
|
|
@@ -49249,6 +49502,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49249
49502
|
userId?: number | undefined;
|
|
49250
49503
|
credentialId?: string | undefined;
|
|
49251
49504
|
relativePath?: string | undefined;
|
|
49505
|
+
purgeDirectory?: boolean | undefined;
|
|
49252
49506
|
commitAuthorName?: string | undefined;
|
|
49253
49507
|
commitAuthorEmail?: string | undefined;
|
|
49254
49508
|
connectionId?: string | undefined;
|
|
@@ -49261,6 +49515,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49261
49515
|
userId?: number | undefined;
|
|
49262
49516
|
credentialId?: string | undefined;
|
|
49263
49517
|
relativePath?: string | undefined;
|
|
49518
|
+
purgeDirectory?: boolean | undefined;
|
|
49264
49519
|
commitAuthorName?: string | undefined;
|
|
49265
49520
|
commitAuthorEmail?: string | undefined;
|
|
49266
49521
|
connectionId?: string | undefined;
|
|
@@ -49271,6 +49526,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49271
49526
|
userId?: number | undefined;
|
|
49272
49527
|
credentialId?: string | undefined;
|
|
49273
49528
|
relativePath?: string | undefined;
|
|
49529
|
+
purgeDirectory?: boolean | undefined;
|
|
49274
49530
|
commitAuthorName?: string | undefined;
|
|
49275
49531
|
commitAuthorEmail?: string | undefined;
|
|
49276
49532
|
connectionId?: string | undefined;
|
|
@@ -49282,6 +49538,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49282
49538
|
userId?: number | undefined;
|
|
49283
49539
|
credentialId?: string | undefined;
|
|
49284
49540
|
relativePath?: string | undefined;
|
|
49541
|
+
purgeDirectory?: boolean | undefined;
|
|
49285
49542
|
commitAuthorName?: string | undefined;
|
|
49286
49543
|
commitAuthorEmail?: string | undefined;
|
|
49287
49544
|
connectionId?: string | undefined;
|
|
@@ -49370,6 +49627,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49370
49627
|
userId?: number | null | undefined;
|
|
49371
49628
|
credentialId?: string | undefined;
|
|
49372
49629
|
relativePath?: string | null | undefined;
|
|
49630
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49373
49631
|
commitAuthorName?: string | null | undefined;
|
|
49374
49632
|
commitAuthorEmail?: string | null | undefined;
|
|
49375
49633
|
connectionId?: string | null | undefined;
|
|
@@ -49382,6 +49640,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49382
49640
|
userId?: number | null | undefined;
|
|
49383
49641
|
credentialId?: string | undefined;
|
|
49384
49642
|
relativePath?: string | null | undefined;
|
|
49643
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49385
49644
|
commitAuthorName?: string | null | undefined;
|
|
49386
49645
|
commitAuthorEmail?: string | null | undefined;
|
|
49387
49646
|
connectionId?: string | null | undefined;
|
|
@@ -49392,6 +49651,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49392
49651
|
userId?: number | null | undefined;
|
|
49393
49652
|
credentialId?: string | undefined;
|
|
49394
49653
|
relativePath?: string | null | undefined;
|
|
49654
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49395
49655
|
commitAuthorName?: string | null | undefined;
|
|
49396
49656
|
commitAuthorEmail?: string | null | undefined;
|
|
49397
49657
|
connectionId?: string | null | undefined;
|
|
@@ -49403,6 +49663,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49403
49663
|
userId?: number | null | undefined;
|
|
49404
49664
|
credentialId?: string | undefined;
|
|
49405
49665
|
relativePath?: string | null | undefined;
|
|
49666
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49406
49667
|
commitAuthorName?: string | null | undefined;
|
|
49407
49668
|
commitAuthorEmail?: string | null | undefined;
|
|
49408
49669
|
connectionId?: string | null | undefined;
|
|
@@ -49504,6 +49765,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49504
49765
|
url: z.ZodString;
|
|
49505
49766
|
branch: z.ZodString;
|
|
49506
49767
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49768
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
49507
49769
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49508
49770
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49509
49771
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -49514,6 +49776,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49514
49776
|
userId?: number | undefined;
|
|
49515
49777
|
credentialId?: string | undefined;
|
|
49516
49778
|
relativePath?: string | undefined;
|
|
49779
|
+
purgeDirectory?: boolean | undefined;
|
|
49517
49780
|
commitAuthorName?: string | undefined;
|
|
49518
49781
|
commitAuthorEmail?: string | undefined;
|
|
49519
49782
|
connectionId?: string | undefined;
|
|
@@ -49523,6 +49786,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49523
49786
|
userId?: number | null | undefined;
|
|
49524
49787
|
credentialId?: string | undefined;
|
|
49525
49788
|
relativePath?: string | null | undefined;
|
|
49789
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49526
49790
|
commitAuthorName?: string | null | undefined;
|
|
49527
49791
|
commitAuthorEmail?: string | null | undefined;
|
|
49528
49792
|
connectionId?: string | null | undefined;
|
|
@@ -49536,6 +49800,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49536
49800
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49537
49801
|
branch: z.ZodString;
|
|
49538
49802
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49803
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
49539
49804
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49540
49805
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49541
49806
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -49548,6 +49813,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49548
49813
|
userId?: number | undefined;
|
|
49549
49814
|
credentialId?: string | undefined;
|
|
49550
49815
|
relativePath?: string | undefined;
|
|
49816
|
+
purgeDirectory?: boolean | undefined;
|
|
49551
49817
|
commitAuthorName?: string | undefined;
|
|
49552
49818
|
commitAuthorEmail?: string | undefined;
|
|
49553
49819
|
connectionId?: string | undefined;
|
|
@@ -49560,6 +49826,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49560
49826
|
userId?: number | null | undefined;
|
|
49561
49827
|
credentialId?: string | undefined;
|
|
49562
49828
|
relativePath?: string | null | undefined;
|
|
49829
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49563
49830
|
commitAuthorName?: string | null | undefined;
|
|
49564
49831
|
commitAuthorEmail?: string | null | undefined;
|
|
49565
49832
|
connectionId?: string | null | undefined;
|
|
@@ -49571,6 +49838,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49571
49838
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49572
49839
|
branch: z.ZodString;
|
|
49573
49840
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49841
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
49574
49842
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49575
49843
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49576
49844
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -49581,6 +49849,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49581
49849
|
userId?: number | undefined;
|
|
49582
49850
|
credentialId?: string | undefined;
|
|
49583
49851
|
relativePath?: string | undefined;
|
|
49852
|
+
purgeDirectory?: boolean | undefined;
|
|
49584
49853
|
commitAuthorName?: string | undefined;
|
|
49585
49854
|
commitAuthorEmail?: string | undefined;
|
|
49586
49855
|
connectionId?: string | undefined;
|
|
@@ -49591,6 +49860,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49591
49860
|
userId?: number | null | undefined;
|
|
49592
49861
|
credentialId?: string | undefined;
|
|
49593
49862
|
relativePath?: string | null | undefined;
|
|
49863
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49594
49864
|
commitAuthorName?: string | null | undefined;
|
|
49595
49865
|
commitAuthorEmail?: string | null | undefined;
|
|
49596
49866
|
connectionId?: string | null | undefined;
|
|
@@ -49604,6 +49874,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49604
49874
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49605
49875
|
branch: z.ZodString;
|
|
49606
49876
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49877
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
49607
49878
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
49608
49879
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
49609
49880
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -49614,6 +49885,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49614
49885
|
userId?: number | undefined;
|
|
49615
49886
|
credentialId?: string | undefined;
|
|
49616
49887
|
relativePath?: string | undefined;
|
|
49888
|
+
purgeDirectory?: boolean | undefined;
|
|
49617
49889
|
commitAuthorName?: string | undefined;
|
|
49618
49890
|
commitAuthorEmail?: string | undefined;
|
|
49619
49891
|
connectionId?: string | undefined;
|
|
@@ -49625,6 +49897,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49625
49897
|
userId?: number | null | undefined;
|
|
49626
49898
|
credentialId?: string | undefined;
|
|
49627
49899
|
relativePath?: string | null | undefined;
|
|
49900
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49628
49901
|
commitAuthorName?: string | null | undefined;
|
|
49629
49902
|
commitAuthorEmail?: string | null | undefined;
|
|
49630
49903
|
connectionId?: string | null | undefined;
|
|
@@ -49670,6 +49943,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49670
49943
|
userId?: number | undefined;
|
|
49671
49944
|
credentialId?: string | undefined;
|
|
49672
49945
|
relativePath?: string | undefined;
|
|
49946
|
+
purgeDirectory?: boolean | undefined;
|
|
49673
49947
|
commitAuthorName?: string | undefined;
|
|
49674
49948
|
commitAuthorEmail?: string | undefined;
|
|
49675
49949
|
connectionId?: string | undefined;
|
|
@@ -49682,6 +49956,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49682
49956
|
userId?: number | undefined;
|
|
49683
49957
|
credentialId?: string | undefined;
|
|
49684
49958
|
relativePath?: string | undefined;
|
|
49959
|
+
purgeDirectory?: boolean | undefined;
|
|
49685
49960
|
commitAuthorName?: string | undefined;
|
|
49686
49961
|
commitAuthorEmail?: string | undefined;
|
|
49687
49962
|
connectionId?: string | undefined;
|
|
@@ -49692,6 +49967,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49692
49967
|
userId?: number | undefined;
|
|
49693
49968
|
credentialId?: string | undefined;
|
|
49694
49969
|
relativePath?: string | undefined;
|
|
49970
|
+
purgeDirectory?: boolean | undefined;
|
|
49695
49971
|
commitAuthorName?: string | undefined;
|
|
49696
49972
|
commitAuthorEmail?: string | undefined;
|
|
49697
49973
|
connectionId?: string | undefined;
|
|
@@ -49703,6 +49979,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49703
49979
|
userId?: number | undefined;
|
|
49704
49980
|
credentialId?: string | undefined;
|
|
49705
49981
|
relativePath?: string | undefined;
|
|
49982
|
+
purgeDirectory?: boolean | undefined;
|
|
49706
49983
|
commitAuthorName?: string | undefined;
|
|
49707
49984
|
commitAuthorEmail?: string | undefined;
|
|
49708
49985
|
connectionId?: string | undefined;
|
|
@@ -49787,6 +50064,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49787
50064
|
userId?: number | undefined;
|
|
49788
50065
|
credentialId?: string | undefined;
|
|
49789
50066
|
relativePath?: string | undefined;
|
|
50067
|
+
purgeDirectory?: boolean | undefined;
|
|
49790
50068
|
commitAuthorName?: string | undefined;
|
|
49791
50069
|
commitAuthorEmail?: string | undefined;
|
|
49792
50070
|
connectionId?: string | undefined;
|
|
@@ -49800,6 +50078,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49800
50078
|
userId?: number | undefined;
|
|
49801
50079
|
credentialId?: string | undefined;
|
|
49802
50080
|
relativePath?: string | undefined;
|
|
50081
|
+
purgeDirectory?: boolean | undefined;
|
|
49803
50082
|
commitAuthorName?: string | undefined;
|
|
49804
50083
|
commitAuthorEmail?: string | undefined;
|
|
49805
50084
|
connectionId?: string | undefined;
|
|
@@ -49811,6 +50090,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49811
50090
|
userId?: number | undefined;
|
|
49812
50091
|
credentialId?: string | undefined;
|
|
49813
50092
|
relativePath?: string | undefined;
|
|
50093
|
+
purgeDirectory?: boolean | undefined;
|
|
49814
50094
|
commitAuthorName?: string | undefined;
|
|
49815
50095
|
commitAuthorEmail?: string | undefined;
|
|
49816
50096
|
connectionId?: string | undefined;
|
|
@@ -49823,6 +50103,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49823
50103
|
userId?: number | undefined;
|
|
49824
50104
|
credentialId?: string | undefined;
|
|
49825
50105
|
relativePath?: string | undefined;
|
|
50106
|
+
purgeDirectory?: boolean | undefined;
|
|
49826
50107
|
commitAuthorName?: string | undefined;
|
|
49827
50108
|
commitAuthorEmail?: string | undefined;
|
|
49828
50109
|
connectionId?: string | undefined;
|
|
@@ -49858,6 +50139,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49858
50139
|
userId?: number | null | undefined;
|
|
49859
50140
|
credentialId?: string | undefined;
|
|
49860
50141
|
relativePath?: string | null | undefined;
|
|
50142
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49861
50143
|
commitAuthorName?: string | null | undefined;
|
|
49862
50144
|
commitAuthorEmail?: string | null | undefined;
|
|
49863
50145
|
connectionId?: string | null | undefined;
|
|
@@ -49870,6 +50152,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49870
50152
|
userId?: number | null | undefined;
|
|
49871
50153
|
credentialId?: string | undefined;
|
|
49872
50154
|
relativePath?: string | null | undefined;
|
|
50155
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49873
50156
|
commitAuthorName?: string | null | undefined;
|
|
49874
50157
|
commitAuthorEmail?: string | null | undefined;
|
|
49875
50158
|
connectionId?: string | null | undefined;
|
|
@@ -49880,6 +50163,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49880
50163
|
userId?: number | null | undefined;
|
|
49881
50164
|
credentialId?: string | undefined;
|
|
49882
50165
|
relativePath?: string | null | undefined;
|
|
50166
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49883
50167
|
commitAuthorName?: string | null | undefined;
|
|
49884
50168
|
commitAuthorEmail?: string | null | undefined;
|
|
49885
50169
|
connectionId?: string | null | undefined;
|
|
@@ -49891,6 +50175,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49891
50175
|
userId?: number | null | undefined;
|
|
49892
50176
|
credentialId?: string | undefined;
|
|
49893
50177
|
relativePath?: string | null | undefined;
|
|
50178
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49894
50179
|
commitAuthorName?: string | null | undefined;
|
|
49895
50180
|
commitAuthorEmail?: string | null | undefined;
|
|
49896
50181
|
connectionId?: string | null | undefined;
|
|
@@ -49975,6 +50260,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49975
50260
|
userId?: number | null | undefined;
|
|
49976
50261
|
credentialId?: string | undefined;
|
|
49977
50262
|
relativePath?: string | null | undefined;
|
|
50263
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49978
50264
|
commitAuthorName?: string | null | undefined;
|
|
49979
50265
|
commitAuthorEmail?: string | null | undefined;
|
|
49980
50266
|
connectionId?: string | null | undefined;
|
|
@@ -49988,6 +50274,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49988
50274
|
userId?: number | null | undefined;
|
|
49989
50275
|
credentialId?: string | undefined;
|
|
49990
50276
|
relativePath?: string | null | undefined;
|
|
50277
|
+
purgeDirectory?: boolean | null | undefined;
|
|
49991
50278
|
commitAuthorName?: string | null | undefined;
|
|
49992
50279
|
commitAuthorEmail?: string | null | undefined;
|
|
49993
50280
|
connectionId?: string | null | undefined;
|
|
@@ -49999,6 +50286,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49999
50286
|
userId?: number | null | undefined;
|
|
50000
50287
|
credentialId?: string | undefined;
|
|
50001
50288
|
relativePath?: string | null | undefined;
|
|
50289
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50002
50290
|
commitAuthorName?: string | null | undefined;
|
|
50003
50291
|
commitAuthorEmail?: string | null | undefined;
|
|
50004
50292
|
connectionId?: string | null | undefined;
|
|
@@ -50011,6 +50299,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50011
50299
|
userId?: number | null | undefined;
|
|
50012
50300
|
credentialId?: string | undefined;
|
|
50013
50301
|
relativePath?: string | null | undefined;
|
|
50302
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50014
50303
|
commitAuthorName?: string | null | undefined;
|
|
50015
50304
|
commitAuthorEmail?: string | null | undefined;
|
|
50016
50305
|
connectionId?: string | null | undefined;
|
|
@@ -50048,6 +50337,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50048
50337
|
userId?: number | undefined;
|
|
50049
50338
|
credentialId?: string | undefined;
|
|
50050
50339
|
relativePath?: string | undefined;
|
|
50340
|
+
purgeDirectory?: boolean | undefined;
|
|
50051
50341
|
commitAuthorName?: string | undefined;
|
|
50052
50342
|
commitAuthorEmail?: string | undefined;
|
|
50053
50343
|
connectionId?: string | undefined;
|
|
@@ -50060,6 +50350,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50060
50350
|
userId?: number | undefined;
|
|
50061
50351
|
credentialId?: string | undefined;
|
|
50062
50352
|
relativePath?: string | undefined;
|
|
50353
|
+
purgeDirectory?: boolean | undefined;
|
|
50063
50354
|
commitAuthorName?: string | undefined;
|
|
50064
50355
|
commitAuthorEmail?: string | undefined;
|
|
50065
50356
|
connectionId?: string | undefined;
|
|
@@ -50070,6 +50361,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50070
50361
|
userId?: number | undefined;
|
|
50071
50362
|
credentialId?: string | undefined;
|
|
50072
50363
|
relativePath?: string | undefined;
|
|
50364
|
+
purgeDirectory?: boolean | undefined;
|
|
50073
50365
|
commitAuthorName?: string | undefined;
|
|
50074
50366
|
commitAuthorEmail?: string | undefined;
|
|
50075
50367
|
connectionId?: string | undefined;
|
|
@@ -50081,6 +50373,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50081
50373
|
userId?: number | undefined;
|
|
50082
50374
|
credentialId?: string | undefined;
|
|
50083
50375
|
relativePath?: string | undefined;
|
|
50376
|
+
purgeDirectory?: boolean | undefined;
|
|
50084
50377
|
commitAuthorName?: string | undefined;
|
|
50085
50378
|
commitAuthorEmail?: string | undefined;
|
|
50086
50379
|
connectionId?: string | undefined;
|
|
@@ -50165,6 +50458,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50165
50458
|
userId?: number | undefined;
|
|
50166
50459
|
credentialId?: string | undefined;
|
|
50167
50460
|
relativePath?: string | undefined;
|
|
50461
|
+
purgeDirectory?: boolean | undefined;
|
|
50168
50462
|
commitAuthorName?: string | undefined;
|
|
50169
50463
|
commitAuthorEmail?: string | undefined;
|
|
50170
50464
|
connectionId?: string | undefined;
|
|
@@ -50178,6 +50472,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50178
50472
|
userId?: number | undefined;
|
|
50179
50473
|
credentialId?: string | undefined;
|
|
50180
50474
|
relativePath?: string | undefined;
|
|
50475
|
+
purgeDirectory?: boolean | undefined;
|
|
50181
50476
|
commitAuthorName?: string | undefined;
|
|
50182
50477
|
commitAuthorEmail?: string | undefined;
|
|
50183
50478
|
connectionId?: string | undefined;
|
|
@@ -50189,6 +50484,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50189
50484
|
userId?: number | undefined;
|
|
50190
50485
|
credentialId?: string | undefined;
|
|
50191
50486
|
relativePath?: string | undefined;
|
|
50487
|
+
purgeDirectory?: boolean | undefined;
|
|
50192
50488
|
commitAuthorName?: string | undefined;
|
|
50193
50489
|
commitAuthorEmail?: string | undefined;
|
|
50194
50490
|
connectionId?: string | undefined;
|
|
@@ -50201,6 +50497,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50201
50497
|
userId?: number | undefined;
|
|
50202
50498
|
credentialId?: string | undefined;
|
|
50203
50499
|
relativePath?: string | undefined;
|
|
50500
|
+
purgeDirectory?: boolean | undefined;
|
|
50204
50501
|
commitAuthorName?: string | undefined;
|
|
50205
50502
|
commitAuthorEmail?: string | undefined;
|
|
50206
50503
|
connectionId?: string | undefined;
|
|
@@ -50238,6 +50535,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50238
50535
|
userId?: number | null | undefined;
|
|
50239
50536
|
credentialId?: string | undefined;
|
|
50240
50537
|
relativePath?: string | null | undefined;
|
|
50538
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50241
50539
|
commitAuthorName?: string | null | undefined;
|
|
50242
50540
|
commitAuthorEmail?: string | null | undefined;
|
|
50243
50541
|
connectionId?: string | null | undefined;
|
|
@@ -50250,6 +50548,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50250
50548
|
userId?: number | null | undefined;
|
|
50251
50549
|
credentialId?: string | undefined;
|
|
50252
50550
|
relativePath?: string | null | undefined;
|
|
50551
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50253
50552
|
commitAuthorName?: string | null | undefined;
|
|
50254
50553
|
commitAuthorEmail?: string | null | undefined;
|
|
50255
50554
|
connectionId?: string | null | undefined;
|
|
@@ -50260,6 +50559,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50260
50559
|
userId?: number | null | undefined;
|
|
50261
50560
|
credentialId?: string | undefined;
|
|
50262
50561
|
relativePath?: string | null | undefined;
|
|
50562
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50263
50563
|
commitAuthorName?: string | null | undefined;
|
|
50264
50564
|
commitAuthorEmail?: string | null | undefined;
|
|
50265
50565
|
connectionId?: string | null | undefined;
|
|
@@ -50271,6 +50571,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50271
50571
|
userId?: number | null | undefined;
|
|
50272
50572
|
credentialId?: string | undefined;
|
|
50273
50573
|
relativePath?: string | null | undefined;
|
|
50574
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50274
50575
|
commitAuthorName?: string | null | undefined;
|
|
50275
50576
|
commitAuthorEmail?: string | null | undefined;
|
|
50276
50577
|
connectionId?: string | null | undefined;
|
|
@@ -50355,6 +50656,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50355
50656
|
userId?: number | null | undefined;
|
|
50356
50657
|
credentialId?: string | undefined;
|
|
50357
50658
|
relativePath?: string | null | undefined;
|
|
50659
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50358
50660
|
commitAuthorName?: string | null | undefined;
|
|
50359
50661
|
commitAuthorEmail?: string | null | undefined;
|
|
50360
50662
|
connectionId?: string | null | undefined;
|
|
@@ -50368,6 +50670,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50368
50670
|
userId?: number | null | undefined;
|
|
50369
50671
|
credentialId?: string | undefined;
|
|
50370
50672
|
relativePath?: string | null | undefined;
|
|
50673
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50371
50674
|
commitAuthorName?: string | null | undefined;
|
|
50372
50675
|
commitAuthorEmail?: string | null | undefined;
|
|
50373
50676
|
connectionId?: string | null | undefined;
|
|
@@ -50379,6 +50682,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50379
50682
|
userId?: number | null | undefined;
|
|
50380
50683
|
credentialId?: string | undefined;
|
|
50381
50684
|
relativePath?: string | null | undefined;
|
|
50685
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50382
50686
|
commitAuthorName?: string | null | undefined;
|
|
50383
50687
|
commitAuthorEmail?: string | null | undefined;
|
|
50384
50688
|
connectionId?: string | null | undefined;
|
|
@@ -50391,6 +50695,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50391
50695
|
userId?: number | null | undefined;
|
|
50392
50696
|
credentialId?: string | undefined;
|
|
50393
50697
|
relativePath?: string | null | undefined;
|
|
50698
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50394
50699
|
commitAuthorName?: string | null | undefined;
|
|
50395
50700
|
commitAuthorEmail?: string | null | undefined;
|
|
50396
50701
|
connectionId?: string | null | undefined;
|
|
@@ -50484,6 +50789,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50484
50789
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50485
50790
|
branch: z.ZodString;
|
|
50486
50791
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50792
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
50487
50793
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50488
50794
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50489
50795
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -50496,6 +50802,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50496
50802
|
userId?: number | undefined;
|
|
50497
50803
|
credentialId?: string | undefined;
|
|
50498
50804
|
relativePath?: string | undefined;
|
|
50805
|
+
purgeDirectory?: boolean | undefined;
|
|
50499
50806
|
commitAuthorName?: string | undefined;
|
|
50500
50807
|
commitAuthorEmail?: string | undefined;
|
|
50501
50808
|
connectionId?: string | undefined;
|
|
@@ -50508,6 +50815,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50508
50815
|
userId?: number | null | undefined;
|
|
50509
50816
|
credentialId?: string | undefined;
|
|
50510
50817
|
relativePath?: string | null | undefined;
|
|
50818
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50511
50819
|
commitAuthorName?: string | null | undefined;
|
|
50512
50820
|
commitAuthorEmail?: string | null | undefined;
|
|
50513
50821
|
connectionId?: string | null | undefined;
|
|
@@ -50521,6 +50829,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50521
50829
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50522
50830
|
branch: z.ZodString;
|
|
50523
50831
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50832
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
50524
50833
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50525
50834
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
50526
50835
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -50531,6 +50840,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50531
50840
|
userId?: number | undefined;
|
|
50532
50841
|
credentialId?: string | undefined;
|
|
50533
50842
|
relativePath?: string | undefined;
|
|
50843
|
+
purgeDirectory?: boolean | undefined;
|
|
50534
50844
|
commitAuthorName?: string | undefined;
|
|
50535
50845
|
commitAuthorEmail?: string | undefined;
|
|
50536
50846
|
connectionId?: string | undefined;
|
|
@@ -50542,6 +50852,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50542
50852
|
userId?: number | null | undefined;
|
|
50543
50853
|
credentialId?: string | undefined;
|
|
50544
50854
|
relativePath?: string | null | undefined;
|
|
50855
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50545
50856
|
commitAuthorName?: string | null | undefined;
|
|
50546
50857
|
commitAuthorEmail?: string | null | undefined;
|
|
50547
50858
|
connectionId?: string | null | undefined;
|
|
@@ -50551,6 +50862,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50551
50862
|
url: z.ZodString;
|
|
50552
50863
|
branch: z.ZodString;
|
|
50553
50864
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50865
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
50554
50866
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50555
50867
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50556
50868
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -50561,6 +50873,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50561
50873
|
userId?: number | undefined;
|
|
50562
50874
|
credentialId?: string | undefined;
|
|
50563
50875
|
relativePath?: string | undefined;
|
|
50876
|
+
purgeDirectory?: boolean | undefined;
|
|
50564
50877
|
commitAuthorName?: string | undefined;
|
|
50565
50878
|
commitAuthorEmail?: string | undefined;
|
|
50566
50879
|
connectionId?: string | undefined;
|
|
@@ -50570,6 +50883,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50570
50883
|
userId?: number | null | undefined;
|
|
50571
50884
|
credentialId?: string | undefined;
|
|
50572
50885
|
relativePath?: string | null | undefined;
|
|
50886
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50573
50887
|
commitAuthorName?: string | null | undefined;
|
|
50574
50888
|
commitAuthorEmail?: string | null | undefined;
|
|
50575
50889
|
connectionId?: string | null | undefined;
|
|
@@ -50581,6 +50895,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50581
50895
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50582
50896
|
branch: z.ZodString;
|
|
50583
50897
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50898
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
50584
50899
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50585
50900
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50586
50901
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -50591,6 +50906,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50591
50906
|
userId?: number | undefined;
|
|
50592
50907
|
credentialId?: string | undefined;
|
|
50593
50908
|
relativePath?: string | undefined;
|
|
50909
|
+
purgeDirectory?: boolean | undefined;
|
|
50594
50910
|
commitAuthorName?: string | undefined;
|
|
50595
50911
|
commitAuthorEmail?: string | undefined;
|
|
50596
50912
|
connectionId?: string | undefined;
|
|
@@ -50601,6 +50917,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50601
50917
|
userId?: number | null | undefined;
|
|
50602
50918
|
credentialId?: string | undefined;
|
|
50603
50919
|
relativePath?: string | null | undefined;
|
|
50920
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50604
50921
|
commitAuthorName?: string | null | undefined;
|
|
50605
50922
|
commitAuthorEmail?: string | null | undefined;
|
|
50606
50923
|
connectionId?: string | null | undefined;
|
|
@@ -50645,6 +50962,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50645
50962
|
userId?: number | undefined;
|
|
50646
50963
|
credentialId?: string | undefined;
|
|
50647
50964
|
relativePath?: string | undefined;
|
|
50965
|
+
purgeDirectory?: boolean | undefined;
|
|
50648
50966
|
commitAuthorName?: string | undefined;
|
|
50649
50967
|
commitAuthorEmail?: string | undefined;
|
|
50650
50968
|
connectionId?: string | undefined;
|
|
@@ -50657,6 +50975,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50657
50975
|
userId?: number | undefined;
|
|
50658
50976
|
credentialId?: string | undefined;
|
|
50659
50977
|
relativePath?: string | undefined;
|
|
50978
|
+
purgeDirectory?: boolean | undefined;
|
|
50660
50979
|
commitAuthorName?: string | undefined;
|
|
50661
50980
|
commitAuthorEmail?: string | undefined;
|
|
50662
50981
|
connectionId?: string | undefined;
|
|
@@ -50667,6 +50986,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50667
50986
|
userId?: number | undefined;
|
|
50668
50987
|
credentialId?: string | undefined;
|
|
50669
50988
|
relativePath?: string | undefined;
|
|
50989
|
+
purgeDirectory?: boolean | undefined;
|
|
50670
50990
|
commitAuthorName?: string | undefined;
|
|
50671
50991
|
commitAuthorEmail?: string | undefined;
|
|
50672
50992
|
connectionId?: string | undefined;
|
|
@@ -50678,6 +50998,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50678
50998
|
userId?: number | undefined;
|
|
50679
50999
|
credentialId?: string | undefined;
|
|
50680
51000
|
relativePath?: string | undefined;
|
|
51001
|
+
purgeDirectory?: boolean | undefined;
|
|
50681
51002
|
commitAuthorName?: string | undefined;
|
|
50682
51003
|
commitAuthorEmail?: string | undefined;
|
|
50683
51004
|
connectionId?: string | undefined;
|
|
@@ -50701,6 +51022,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50701
51022
|
userId?: number | null | undefined;
|
|
50702
51023
|
credentialId?: string | undefined;
|
|
50703
51024
|
relativePath?: string | null | undefined;
|
|
51025
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50704
51026
|
commitAuthorName?: string | null | undefined;
|
|
50705
51027
|
commitAuthorEmail?: string | null | undefined;
|
|
50706
51028
|
connectionId?: string | null | undefined;
|
|
@@ -50713,6 +51035,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50713
51035
|
userId?: number | null | undefined;
|
|
50714
51036
|
credentialId?: string | undefined;
|
|
50715
51037
|
relativePath?: string | null | undefined;
|
|
51038
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50716
51039
|
commitAuthorName?: string | null | undefined;
|
|
50717
51040
|
commitAuthorEmail?: string | null | undefined;
|
|
50718
51041
|
connectionId?: string | null | undefined;
|
|
@@ -50723,6 +51046,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50723
51046
|
userId?: number | null | undefined;
|
|
50724
51047
|
credentialId?: string | undefined;
|
|
50725
51048
|
relativePath?: string | null | undefined;
|
|
51049
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50726
51050
|
commitAuthorName?: string | null | undefined;
|
|
50727
51051
|
commitAuthorEmail?: string | null | undefined;
|
|
50728
51052
|
connectionId?: string | null | undefined;
|
|
@@ -50734,6 +51058,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50734
51058
|
userId?: number | null | undefined;
|
|
50735
51059
|
credentialId?: string | undefined;
|
|
50736
51060
|
relativePath?: string | null | undefined;
|
|
51061
|
+
purgeDirectory?: boolean | null | undefined;
|
|
50737
51062
|
commitAuthorName?: string | null | undefined;
|
|
50738
51063
|
commitAuthorEmail?: string | null | undefined;
|
|
50739
51064
|
connectionId?: string | null | undefined;
|
|
@@ -50943,6 +51268,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50943
51268
|
userId?: number | undefined;
|
|
50944
51269
|
credentialId?: string | undefined;
|
|
50945
51270
|
relativePath?: string | undefined;
|
|
51271
|
+
purgeDirectory?: boolean | undefined;
|
|
50946
51272
|
commitAuthorName?: string | undefined;
|
|
50947
51273
|
commitAuthorEmail?: string | undefined;
|
|
50948
51274
|
connectionId?: string | undefined;
|
|
@@ -50955,6 +51281,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50955
51281
|
userId?: number | undefined;
|
|
50956
51282
|
credentialId?: string | undefined;
|
|
50957
51283
|
relativePath?: string | undefined;
|
|
51284
|
+
purgeDirectory?: boolean | undefined;
|
|
50958
51285
|
commitAuthorName?: string | undefined;
|
|
50959
51286
|
commitAuthorEmail?: string | undefined;
|
|
50960
51287
|
connectionId?: string | undefined;
|
|
@@ -50965,6 +51292,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50965
51292
|
userId?: number | undefined;
|
|
50966
51293
|
credentialId?: string | undefined;
|
|
50967
51294
|
relativePath?: string | undefined;
|
|
51295
|
+
purgeDirectory?: boolean | undefined;
|
|
50968
51296
|
commitAuthorName?: string | undefined;
|
|
50969
51297
|
commitAuthorEmail?: string | undefined;
|
|
50970
51298
|
connectionId?: string | undefined;
|
|
@@ -50976,6 +51304,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
50976
51304
|
userId?: number | undefined;
|
|
50977
51305
|
credentialId?: string | undefined;
|
|
50978
51306
|
relativePath?: string | undefined;
|
|
51307
|
+
purgeDirectory?: boolean | undefined;
|
|
50979
51308
|
commitAuthorName?: string | undefined;
|
|
50980
51309
|
commitAuthorEmail?: string | undefined;
|
|
50981
51310
|
connectionId?: string | undefined;
|
|
@@ -51064,6 +51393,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51064
51393
|
userId?: number | null | undefined;
|
|
51065
51394
|
credentialId?: string | undefined;
|
|
51066
51395
|
relativePath?: string | null | undefined;
|
|
51396
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51067
51397
|
commitAuthorName?: string | null | undefined;
|
|
51068
51398
|
commitAuthorEmail?: string | null | undefined;
|
|
51069
51399
|
connectionId?: string | null | undefined;
|
|
@@ -51076,6 +51406,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51076
51406
|
userId?: number | null | undefined;
|
|
51077
51407
|
credentialId?: string | undefined;
|
|
51078
51408
|
relativePath?: string | null | undefined;
|
|
51409
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51079
51410
|
commitAuthorName?: string | null | undefined;
|
|
51080
51411
|
commitAuthorEmail?: string | null | undefined;
|
|
51081
51412
|
connectionId?: string | null | undefined;
|
|
@@ -51086,6 +51417,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51086
51417
|
userId?: number | null | undefined;
|
|
51087
51418
|
credentialId?: string | undefined;
|
|
51088
51419
|
relativePath?: string | null | undefined;
|
|
51420
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51089
51421
|
commitAuthorName?: string | null | undefined;
|
|
51090
51422
|
commitAuthorEmail?: string | null | undefined;
|
|
51091
51423
|
connectionId?: string | null | undefined;
|
|
@@ -51097,6 +51429,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51097
51429
|
userId?: number | null | undefined;
|
|
51098
51430
|
credentialId?: string | undefined;
|
|
51099
51431
|
relativePath?: string | null | undefined;
|
|
51432
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51100
51433
|
commitAuthorName?: string | null | undefined;
|
|
51101
51434
|
commitAuthorEmail?: string | null | undefined;
|
|
51102
51435
|
connectionId?: string | null | undefined;
|
|
@@ -51198,6 +51531,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51198
51531
|
url: z.ZodString;
|
|
51199
51532
|
branch: z.ZodString;
|
|
51200
51533
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51534
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
51201
51535
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51202
51536
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51203
51537
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -51208,6 +51542,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51208
51542
|
userId?: number | undefined;
|
|
51209
51543
|
credentialId?: string | undefined;
|
|
51210
51544
|
relativePath?: string | undefined;
|
|
51545
|
+
purgeDirectory?: boolean | undefined;
|
|
51211
51546
|
commitAuthorName?: string | undefined;
|
|
51212
51547
|
commitAuthorEmail?: string | undefined;
|
|
51213
51548
|
connectionId?: string | undefined;
|
|
@@ -51217,6 +51552,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51217
51552
|
userId?: number | null | undefined;
|
|
51218
51553
|
credentialId?: string | undefined;
|
|
51219
51554
|
relativePath?: string | null | undefined;
|
|
51555
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51220
51556
|
commitAuthorName?: string | null | undefined;
|
|
51221
51557
|
commitAuthorEmail?: string | null | undefined;
|
|
51222
51558
|
connectionId?: string | null | undefined;
|
|
@@ -51230,6 +51566,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51230
51566
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51231
51567
|
branch: z.ZodString;
|
|
51232
51568
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51569
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
51233
51570
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51234
51571
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51235
51572
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -51242,6 +51579,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51242
51579
|
userId?: number | undefined;
|
|
51243
51580
|
credentialId?: string | undefined;
|
|
51244
51581
|
relativePath?: string | undefined;
|
|
51582
|
+
purgeDirectory?: boolean | undefined;
|
|
51245
51583
|
commitAuthorName?: string | undefined;
|
|
51246
51584
|
commitAuthorEmail?: string | undefined;
|
|
51247
51585
|
connectionId?: string | undefined;
|
|
@@ -51254,6 +51592,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51254
51592
|
userId?: number | null | undefined;
|
|
51255
51593
|
credentialId?: string | undefined;
|
|
51256
51594
|
relativePath?: string | null | undefined;
|
|
51595
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51257
51596
|
commitAuthorName?: string | null | undefined;
|
|
51258
51597
|
commitAuthorEmail?: string | null | undefined;
|
|
51259
51598
|
connectionId?: string | null | undefined;
|
|
@@ -51265,6 +51604,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51265
51604
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51266
51605
|
branch: z.ZodString;
|
|
51267
51606
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51607
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
51268
51608
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51269
51609
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51270
51610
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -51275,6 +51615,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51275
51615
|
userId?: number | undefined;
|
|
51276
51616
|
credentialId?: string | undefined;
|
|
51277
51617
|
relativePath?: string | undefined;
|
|
51618
|
+
purgeDirectory?: boolean | undefined;
|
|
51278
51619
|
commitAuthorName?: string | undefined;
|
|
51279
51620
|
commitAuthorEmail?: string | undefined;
|
|
51280
51621
|
connectionId?: string | undefined;
|
|
@@ -51285,6 +51626,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51285
51626
|
userId?: number | null | undefined;
|
|
51286
51627
|
credentialId?: string | undefined;
|
|
51287
51628
|
relativePath?: string | null | undefined;
|
|
51629
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51288
51630
|
commitAuthorName?: string | null | undefined;
|
|
51289
51631
|
commitAuthorEmail?: string | null | undefined;
|
|
51290
51632
|
connectionId?: string | null | undefined;
|
|
@@ -51298,6 +51640,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51298
51640
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51299
51641
|
branch: z.ZodString;
|
|
51300
51642
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51643
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
51301
51644
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
51302
51645
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
51303
51646
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -51308,6 +51651,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51308
51651
|
userId?: number | undefined;
|
|
51309
51652
|
credentialId?: string | undefined;
|
|
51310
51653
|
relativePath?: string | undefined;
|
|
51654
|
+
purgeDirectory?: boolean | undefined;
|
|
51311
51655
|
commitAuthorName?: string | undefined;
|
|
51312
51656
|
commitAuthorEmail?: string | undefined;
|
|
51313
51657
|
connectionId?: string | undefined;
|
|
@@ -51319,6 +51663,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51319
51663
|
userId?: number | null | undefined;
|
|
51320
51664
|
credentialId?: string | undefined;
|
|
51321
51665
|
relativePath?: string | null | undefined;
|
|
51666
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51322
51667
|
commitAuthorName?: string | null | undefined;
|
|
51323
51668
|
commitAuthorEmail?: string | null | undefined;
|
|
51324
51669
|
connectionId?: string | null | undefined;
|
|
@@ -51364,6 +51709,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51364
51709
|
userId?: number | undefined;
|
|
51365
51710
|
credentialId?: string | undefined;
|
|
51366
51711
|
relativePath?: string | undefined;
|
|
51712
|
+
purgeDirectory?: boolean | undefined;
|
|
51367
51713
|
commitAuthorName?: string | undefined;
|
|
51368
51714
|
commitAuthorEmail?: string | undefined;
|
|
51369
51715
|
connectionId?: string | undefined;
|
|
@@ -51376,6 +51722,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51376
51722
|
userId?: number | undefined;
|
|
51377
51723
|
credentialId?: string | undefined;
|
|
51378
51724
|
relativePath?: string | undefined;
|
|
51725
|
+
purgeDirectory?: boolean | undefined;
|
|
51379
51726
|
commitAuthorName?: string | undefined;
|
|
51380
51727
|
commitAuthorEmail?: string | undefined;
|
|
51381
51728
|
connectionId?: string | undefined;
|
|
@@ -51386,6 +51733,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51386
51733
|
userId?: number | undefined;
|
|
51387
51734
|
credentialId?: string | undefined;
|
|
51388
51735
|
relativePath?: string | undefined;
|
|
51736
|
+
purgeDirectory?: boolean | undefined;
|
|
51389
51737
|
commitAuthorName?: string | undefined;
|
|
51390
51738
|
commitAuthorEmail?: string | undefined;
|
|
51391
51739
|
connectionId?: string | undefined;
|
|
@@ -51397,6 +51745,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51397
51745
|
userId?: number | undefined;
|
|
51398
51746
|
credentialId?: string | undefined;
|
|
51399
51747
|
relativePath?: string | undefined;
|
|
51748
|
+
purgeDirectory?: boolean | undefined;
|
|
51400
51749
|
commitAuthorName?: string | undefined;
|
|
51401
51750
|
commitAuthorEmail?: string | undefined;
|
|
51402
51751
|
connectionId?: string | undefined;
|
|
@@ -51481,6 +51830,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51481
51830
|
userId?: number | undefined;
|
|
51482
51831
|
credentialId?: string | undefined;
|
|
51483
51832
|
relativePath?: string | undefined;
|
|
51833
|
+
purgeDirectory?: boolean | undefined;
|
|
51484
51834
|
commitAuthorName?: string | undefined;
|
|
51485
51835
|
commitAuthorEmail?: string | undefined;
|
|
51486
51836
|
connectionId?: string | undefined;
|
|
@@ -51494,6 +51844,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51494
51844
|
userId?: number | undefined;
|
|
51495
51845
|
credentialId?: string | undefined;
|
|
51496
51846
|
relativePath?: string | undefined;
|
|
51847
|
+
purgeDirectory?: boolean | undefined;
|
|
51497
51848
|
commitAuthorName?: string | undefined;
|
|
51498
51849
|
commitAuthorEmail?: string | undefined;
|
|
51499
51850
|
connectionId?: string | undefined;
|
|
@@ -51505,6 +51856,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51505
51856
|
userId?: number | undefined;
|
|
51506
51857
|
credentialId?: string | undefined;
|
|
51507
51858
|
relativePath?: string | undefined;
|
|
51859
|
+
purgeDirectory?: boolean | undefined;
|
|
51508
51860
|
commitAuthorName?: string | undefined;
|
|
51509
51861
|
commitAuthorEmail?: string | undefined;
|
|
51510
51862
|
connectionId?: string | undefined;
|
|
@@ -51517,6 +51869,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51517
51869
|
userId?: number | undefined;
|
|
51518
51870
|
credentialId?: string | undefined;
|
|
51519
51871
|
relativePath?: string | undefined;
|
|
51872
|
+
purgeDirectory?: boolean | undefined;
|
|
51520
51873
|
commitAuthorName?: string | undefined;
|
|
51521
51874
|
commitAuthorEmail?: string | undefined;
|
|
51522
51875
|
connectionId?: string | undefined;
|
|
@@ -51552,6 +51905,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51552
51905
|
userId?: number | null | undefined;
|
|
51553
51906
|
credentialId?: string | undefined;
|
|
51554
51907
|
relativePath?: string | null | undefined;
|
|
51908
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51555
51909
|
commitAuthorName?: string | null | undefined;
|
|
51556
51910
|
commitAuthorEmail?: string | null | undefined;
|
|
51557
51911
|
connectionId?: string | null | undefined;
|
|
@@ -51564,6 +51918,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51564
51918
|
userId?: number | null | undefined;
|
|
51565
51919
|
credentialId?: string | undefined;
|
|
51566
51920
|
relativePath?: string | null | undefined;
|
|
51921
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51567
51922
|
commitAuthorName?: string | null | undefined;
|
|
51568
51923
|
commitAuthorEmail?: string | null | undefined;
|
|
51569
51924
|
connectionId?: string | null | undefined;
|
|
@@ -51574,6 +51929,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51574
51929
|
userId?: number | null | undefined;
|
|
51575
51930
|
credentialId?: string | undefined;
|
|
51576
51931
|
relativePath?: string | null | undefined;
|
|
51932
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51577
51933
|
commitAuthorName?: string | null | undefined;
|
|
51578
51934
|
commitAuthorEmail?: string | null | undefined;
|
|
51579
51935
|
connectionId?: string | null | undefined;
|
|
@@ -51585,6 +51941,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51585
51941
|
userId?: number | null | undefined;
|
|
51586
51942
|
credentialId?: string | undefined;
|
|
51587
51943
|
relativePath?: string | null | undefined;
|
|
51944
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51588
51945
|
commitAuthorName?: string | null | undefined;
|
|
51589
51946
|
commitAuthorEmail?: string | null | undefined;
|
|
51590
51947
|
connectionId?: string | null | undefined;
|
|
@@ -51669,6 +52026,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51669
52026
|
userId?: number | null | undefined;
|
|
51670
52027
|
credentialId?: string | undefined;
|
|
51671
52028
|
relativePath?: string | null | undefined;
|
|
52029
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51672
52030
|
commitAuthorName?: string | null | undefined;
|
|
51673
52031
|
commitAuthorEmail?: string | null | undefined;
|
|
51674
52032
|
connectionId?: string | null | undefined;
|
|
@@ -51682,6 +52040,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51682
52040
|
userId?: number | null | undefined;
|
|
51683
52041
|
credentialId?: string | undefined;
|
|
51684
52042
|
relativePath?: string | null | undefined;
|
|
52043
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51685
52044
|
commitAuthorName?: string | null | undefined;
|
|
51686
52045
|
commitAuthorEmail?: string | null | undefined;
|
|
51687
52046
|
connectionId?: string | null | undefined;
|
|
@@ -51693,6 +52052,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51693
52052
|
userId?: number | null | undefined;
|
|
51694
52053
|
credentialId?: string | undefined;
|
|
51695
52054
|
relativePath?: string | null | undefined;
|
|
52055
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51696
52056
|
commitAuthorName?: string | null | undefined;
|
|
51697
52057
|
commitAuthorEmail?: string | null | undefined;
|
|
51698
52058
|
connectionId?: string | null | undefined;
|
|
@@ -51705,6 +52065,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51705
52065
|
userId?: number | null | undefined;
|
|
51706
52066
|
credentialId?: string | undefined;
|
|
51707
52067
|
relativePath?: string | null | undefined;
|
|
52068
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51708
52069
|
commitAuthorName?: string | null | undefined;
|
|
51709
52070
|
commitAuthorEmail?: string | null | undefined;
|
|
51710
52071
|
connectionId?: string | null | undefined;
|
|
@@ -51742,6 +52103,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51742
52103
|
userId?: number | undefined;
|
|
51743
52104
|
credentialId?: string | undefined;
|
|
51744
52105
|
relativePath?: string | undefined;
|
|
52106
|
+
purgeDirectory?: boolean | undefined;
|
|
51745
52107
|
commitAuthorName?: string | undefined;
|
|
51746
52108
|
commitAuthorEmail?: string | undefined;
|
|
51747
52109
|
connectionId?: string | undefined;
|
|
@@ -51754,6 +52116,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51754
52116
|
userId?: number | undefined;
|
|
51755
52117
|
credentialId?: string | undefined;
|
|
51756
52118
|
relativePath?: string | undefined;
|
|
52119
|
+
purgeDirectory?: boolean | undefined;
|
|
51757
52120
|
commitAuthorName?: string | undefined;
|
|
51758
52121
|
commitAuthorEmail?: string | undefined;
|
|
51759
52122
|
connectionId?: string | undefined;
|
|
@@ -51764,6 +52127,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51764
52127
|
userId?: number | undefined;
|
|
51765
52128
|
credentialId?: string | undefined;
|
|
51766
52129
|
relativePath?: string | undefined;
|
|
52130
|
+
purgeDirectory?: boolean | undefined;
|
|
51767
52131
|
commitAuthorName?: string | undefined;
|
|
51768
52132
|
commitAuthorEmail?: string | undefined;
|
|
51769
52133
|
connectionId?: string | undefined;
|
|
@@ -51775,6 +52139,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51775
52139
|
userId?: number | undefined;
|
|
51776
52140
|
credentialId?: string | undefined;
|
|
51777
52141
|
relativePath?: string | undefined;
|
|
52142
|
+
purgeDirectory?: boolean | undefined;
|
|
51778
52143
|
commitAuthorName?: string | undefined;
|
|
51779
52144
|
commitAuthorEmail?: string | undefined;
|
|
51780
52145
|
connectionId?: string | undefined;
|
|
@@ -51859,6 +52224,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51859
52224
|
userId?: number | undefined;
|
|
51860
52225
|
credentialId?: string | undefined;
|
|
51861
52226
|
relativePath?: string | undefined;
|
|
52227
|
+
purgeDirectory?: boolean | undefined;
|
|
51862
52228
|
commitAuthorName?: string | undefined;
|
|
51863
52229
|
commitAuthorEmail?: string | undefined;
|
|
51864
52230
|
connectionId?: string | undefined;
|
|
@@ -51872,6 +52238,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51872
52238
|
userId?: number | undefined;
|
|
51873
52239
|
credentialId?: string | undefined;
|
|
51874
52240
|
relativePath?: string | undefined;
|
|
52241
|
+
purgeDirectory?: boolean | undefined;
|
|
51875
52242
|
commitAuthorName?: string | undefined;
|
|
51876
52243
|
commitAuthorEmail?: string | undefined;
|
|
51877
52244
|
connectionId?: string | undefined;
|
|
@@ -51883,6 +52250,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51883
52250
|
userId?: number | undefined;
|
|
51884
52251
|
credentialId?: string | undefined;
|
|
51885
52252
|
relativePath?: string | undefined;
|
|
52253
|
+
purgeDirectory?: boolean | undefined;
|
|
51886
52254
|
commitAuthorName?: string | undefined;
|
|
51887
52255
|
commitAuthorEmail?: string | undefined;
|
|
51888
52256
|
connectionId?: string | undefined;
|
|
@@ -51895,6 +52263,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51895
52263
|
userId?: number | undefined;
|
|
51896
52264
|
credentialId?: string | undefined;
|
|
51897
52265
|
relativePath?: string | undefined;
|
|
52266
|
+
purgeDirectory?: boolean | undefined;
|
|
51898
52267
|
commitAuthorName?: string | undefined;
|
|
51899
52268
|
commitAuthorEmail?: string | undefined;
|
|
51900
52269
|
connectionId?: string | undefined;
|
|
@@ -51932,6 +52301,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51932
52301
|
userId?: number | null | undefined;
|
|
51933
52302
|
credentialId?: string | undefined;
|
|
51934
52303
|
relativePath?: string | null | undefined;
|
|
52304
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51935
52305
|
commitAuthorName?: string | null | undefined;
|
|
51936
52306
|
commitAuthorEmail?: string | null | undefined;
|
|
51937
52307
|
connectionId?: string | null | undefined;
|
|
@@ -51944,6 +52314,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51944
52314
|
userId?: number | null | undefined;
|
|
51945
52315
|
credentialId?: string | undefined;
|
|
51946
52316
|
relativePath?: string | null | undefined;
|
|
52317
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51947
52318
|
commitAuthorName?: string | null | undefined;
|
|
51948
52319
|
commitAuthorEmail?: string | null | undefined;
|
|
51949
52320
|
connectionId?: string | null | undefined;
|
|
@@ -51954,6 +52325,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51954
52325
|
userId?: number | null | undefined;
|
|
51955
52326
|
credentialId?: string | undefined;
|
|
51956
52327
|
relativePath?: string | null | undefined;
|
|
52328
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51957
52329
|
commitAuthorName?: string | null | undefined;
|
|
51958
52330
|
commitAuthorEmail?: string | null | undefined;
|
|
51959
52331
|
connectionId?: string | null | undefined;
|
|
@@ -51965,6 +52337,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51965
52337
|
userId?: number | null | undefined;
|
|
51966
52338
|
credentialId?: string | undefined;
|
|
51967
52339
|
relativePath?: string | null | undefined;
|
|
52340
|
+
purgeDirectory?: boolean | null | undefined;
|
|
51968
52341
|
commitAuthorName?: string | null | undefined;
|
|
51969
52342
|
commitAuthorEmail?: string | null | undefined;
|
|
51970
52343
|
connectionId?: string | null | undefined;
|
|
@@ -52049,6 +52422,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
52049
52422
|
userId?: number | null | undefined;
|
|
52050
52423
|
credentialId?: string | undefined;
|
|
52051
52424
|
relativePath?: string | null | undefined;
|
|
52425
|
+
purgeDirectory?: boolean | null | undefined;
|
|
52052
52426
|
commitAuthorName?: string | null | undefined;
|
|
52053
52427
|
commitAuthorEmail?: string | null | undefined;
|
|
52054
52428
|
connectionId?: string | null | undefined;
|
|
@@ -52062,6 +52436,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
52062
52436
|
userId?: number | null | undefined;
|
|
52063
52437
|
credentialId?: string | undefined;
|
|
52064
52438
|
relativePath?: string | null | undefined;
|
|
52439
|
+
purgeDirectory?: boolean | null | undefined;
|
|
52065
52440
|
commitAuthorName?: string | null | undefined;
|
|
52066
52441
|
commitAuthorEmail?: string | null | undefined;
|
|
52067
52442
|
connectionId?: string | null | undefined;
|
|
@@ -52073,6 +52448,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
52073
52448
|
userId?: number | null | undefined;
|
|
52074
52449
|
credentialId?: string | undefined;
|
|
52075
52450
|
relativePath?: string | null | undefined;
|
|
52451
|
+
purgeDirectory?: boolean | null | undefined;
|
|
52076
52452
|
commitAuthorName?: string | null | undefined;
|
|
52077
52453
|
commitAuthorEmail?: string | null | undefined;
|
|
52078
52454
|
connectionId?: string | null | undefined;
|
|
@@ -52085,6 +52461,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
52085
52461
|
userId?: number | null | undefined;
|
|
52086
52462
|
credentialId?: string | undefined;
|
|
52087
52463
|
relativePath?: string | null | undefined;
|
|
52464
|
+
purgeDirectory?: boolean | null | undefined;
|
|
52088
52465
|
commitAuthorName?: string | null | undefined;
|
|
52089
52466
|
commitAuthorEmail?: string | null | undefined;
|
|
52090
52467
|
connectionId?: string | null | undefined;
|
|
@@ -82306,6 +82683,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82306
82683
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82307
82684
|
branch: z.ZodString;
|
|
82308
82685
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82686
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
82309
82687
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82310
82688
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82311
82689
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -82318,6 +82696,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82318
82696
|
userId?: number | undefined;
|
|
82319
82697
|
credentialId?: string | undefined;
|
|
82320
82698
|
relativePath?: string | undefined;
|
|
82699
|
+
purgeDirectory?: boolean | undefined;
|
|
82321
82700
|
commitAuthorName?: string | undefined;
|
|
82322
82701
|
commitAuthorEmail?: string | undefined;
|
|
82323
82702
|
connectionId?: string | undefined;
|
|
@@ -82330,6 +82709,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82330
82709
|
userId?: number | null | undefined;
|
|
82331
82710
|
credentialId?: string | undefined;
|
|
82332
82711
|
relativePath?: string | null | undefined;
|
|
82712
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82333
82713
|
commitAuthorName?: string | null | undefined;
|
|
82334
82714
|
commitAuthorEmail?: string | null | undefined;
|
|
82335
82715
|
connectionId?: string | null | undefined;
|
|
@@ -82343,6 +82723,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82343
82723
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82344
82724
|
branch: z.ZodString;
|
|
82345
82725
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82726
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
82346
82727
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82347
82728
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
82348
82729
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -82353,6 +82734,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82353
82734
|
userId?: number | undefined;
|
|
82354
82735
|
credentialId?: string | undefined;
|
|
82355
82736
|
relativePath?: string | undefined;
|
|
82737
|
+
purgeDirectory?: boolean | undefined;
|
|
82356
82738
|
commitAuthorName?: string | undefined;
|
|
82357
82739
|
commitAuthorEmail?: string | undefined;
|
|
82358
82740
|
connectionId?: string | undefined;
|
|
@@ -82364,6 +82746,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82364
82746
|
userId?: number | null | undefined;
|
|
82365
82747
|
credentialId?: string | undefined;
|
|
82366
82748
|
relativePath?: string | null | undefined;
|
|
82749
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82367
82750
|
commitAuthorName?: string | null | undefined;
|
|
82368
82751
|
commitAuthorEmail?: string | null | undefined;
|
|
82369
82752
|
connectionId?: string | null | undefined;
|
|
@@ -82373,6 +82756,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82373
82756
|
url: z.ZodString;
|
|
82374
82757
|
branch: z.ZodString;
|
|
82375
82758
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82759
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
82376
82760
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82377
82761
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82378
82762
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -82383,6 +82767,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82383
82767
|
userId?: number | undefined;
|
|
82384
82768
|
credentialId?: string | undefined;
|
|
82385
82769
|
relativePath?: string | undefined;
|
|
82770
|
+
purgeDirectory?: boolean | undefined;
|
|
82386
82771
|
commitAuthorName?: string | undefined;
|
|
82387
82772
|
commitAuthorEmail?: string | undefined;
|
|
82388
82773
|
connectionId?: string | undefined;
|
|
@@ -82392,6 +82777,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82392
82777
|
userId?: number | null | undefined;
|
|
82393
82778
|
credentialId?: string | undefined;
|
|
82394
82779
|
relativePath?: string | null | undefined;
|
|
82780
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82395
82781
|
commitAuthorName?: string | null | undefined;
|
|
82396
82782
|
commitAuthorEmail?: string | null | undefined;
|
|
82397
82783
|
connectionId?: string | null | undefined;
|
|
@@ -82403,6 +82789,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82403
82789
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82404
82790
|
branch: z.ZodString;
|
|
82405
82791
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82792
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
82406
82793
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82407
82794
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82408
82795
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -82413,6 +82800,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82413
82800
|
userId?: number | undefined;
|
|
82414
82801
|
credentialId?: string | undefined;
|
|
82415
82802
|
relativePath?: string | undefined;
|
|
82803
|
+
purgeDirectory?: boolean | undefined;
|
|
82416
82804
|
commitAuthorName?: string | undefined;
|
|
82417
82805
|
commitAuthorEmail?: string | undefined;
|
|
82418
82806
|
connectionId?: string | undefined;
|
|
@@ -82423,6 +82811,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82423
82811
|
userId?: number | null | undefined;
|
|
82424
82812
|
credentialId?: string | undefined;
|
|
82425
82813
|
relativePath?: string | null | undefined;
|
|
82814
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82426
82815
|
commitAuthorName?: string | null | undefined;
|
|
82427
82816
|
commitAuthorEmail?: string | null | undefined;
|
|
82428
82817
|
connectionId?: string | null | undefined;
|
|
@@ -82467,6 +82856,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82467
82856
|
userId?: number | undefined;
|
|
82468
82857
|
credentialId?: string | undefined;
|
|
82469
82858
|
relativePath?: string | undefined;
|
|
82859
|
+
purgeDirectory?: boolean | undefined;
|
|
82470
82860
|
commitAuthorName?: string | undefined;
|
|
82471
82861
|
commitAuthorEmail?: string | undefined;
|
|
82472
82862
|
connectionId?: string | undefined;
|
|
@@ -82479,6 +82869,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82479
82869
|
userId?: number | undefined;
|
|
82480
82870
|
credentialId?: string | undefined;
|
|
82481
82871
|
relativePath?: string | undefined;
|
|
82872
|
+
purgeDirectory?: boolean | undefined;
|
|
82482
82873
|
commitAuthorName?: string | undefined;
|
|
82483
82874
|
commitAuthorEmail?: string | undefined;
|
|
82484
82875
|
connectionId?: string | undefined;
|
|
@@ -82489,6 +82880,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82489
82880
|
userId?: number | undefined;
|
|
82490
82881
|
credentialId?: string | undefined;
|
|
82491
82882
|
relativePath?: string | undefined;
|
|
82883
|
+
purgeDirectory?: boolean | undefined;
|
|
82492
82884
|
commitAuthorName?: string | undefined;
|
|
82493
82885
|
commitAuthorEmail?: string | undefined;
|
|
82494
82886
|
connectionId?: string | undefined;
|
|
@@ -82500,6 +82892,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82500
82892
|
userId?: number | undefined;
|
|
82501
82893
|
credentialId?: string | undefined;
|
|
82502
82894
|
relativePath?: string | undefined;
|
|
82895
|
+
purgeDirectory?: boolean | undefined;
|
|
82503
82896
|
commitAuthorName?: string | undefined;
|
|
82504
82897
|
commitAuthorEmail?: string | undefined;
|
|
82505
82898
|
connectionId?: string | undefined;
|
|
@@ -82523,6 +82916,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82523
82916
|
userId?: number | null | undefined;
|
|
82524
82917
|
credentialId?: string | undefined;
|
|
82525
82918
|
relativePath?: string | null | undefined;
|
|
82919
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82526
82920
|
commitAuthorName?: string | null | undefined;
|
|
82527
82921
|
commitAuthorEmail?: string | null | undefined;
|
|
82528
82922
|
connectionId?: string | null | undefined;
|
|
@@ -82535,6 +82929,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82535
82929
|
userId?: number | null | undefined;
|
|
82536
82930
|
credentialId?: string | undefined;
|
|
82537
82931
|
relativePath?: string | null | undefined;
|
|
82932
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82538
82933
|
commitAuthorName?: string | null | undefined;
|
|
82539
82934
|
commitAuthorEmail?: string | null | undefined;
|
|
82540
82935
|
connectionId?: string | null | undefined;
|
|
@@ -82545,6 +82940,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82545
82940
|
userId?: number | null | undefined;
|
|
82546
82941
|
credentialId?: string | undefined;
|
|
82547
82942
|
relativePath?: string | null | undefined;
|
|
82943
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82548
82944
|
commitAuthorName?: string | null | undefined;
|
|
82549
82945
|
commitAuthorEmail?: string | null | undefined;
|
|
82550
82946
|
connectionId?: string | null | undefined;
|
|
@@ -82556,6 +82952,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82556
82952
|
userId?: number | null | undefined;
|
|
82557
82953
|
credentialId?: string | undefined;
|
|
82558
82954
|
relativePath?: string | null | undefined;
|
|
82955
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82559
82956
|
commitAuthorName?: string | null | undefined;
|
|
82560
82957
|
commitAuthorEmail?: string | null | undefined;
|
|
82561
82958
|
connectionId?: string | null | undefined;
|
|
@@ -82593,6 +82990,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82593
82990
|
userId?: number | undefined;
|
|
82594
82991
|
credentialId?: string | undefined;
|
|
82595
82992
|
relativePath?: string | undefined;
|
|
82993
|
+
purgeDirectory?: boolean | undefined;
|
|
82596
82994
|
commitAuthorName?: string | undefined;
|
|
82597
82995
|
commitAuthorEmail?: string | undefined;
|
|
82598
82996
|
connectionId?: string | undefined;
|
|
@@ -82605,6 +83003,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82605
83003
|
userId?: number | undefined;
|
|
82606
83004
|
credentialId?: string | undefined;
|
|
82607
83005
|
relativePath?: string | undefined;
|
|
83006
|
+
purgeDirectory?: boolean | undefined;
|
|
82608
83007
|
commitAuthorName?: string | undefined;
|
|
82609
83008
|
commitAuthorEmail?: string | undefined;
|
|
82610
83009
|
connectionId?: string | undefined;
|
|
@@ -82615,6 +83014,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82615
83014
|
userId?: number | undefined;
|
|
82616
83015
|
credentialId?: string | undefined;
|
|
82617
83016
|
relativePath?: string | undefined;
|
|
83017
|
+
purgeDirectory?: boolean | undefined;
|
|
82618
83018
|
commitAuthorName?: string | undefined;
|
|
82619
83019
|
commitAuthorEmail?: string | undefined;
|
|
82620
83020
|
connectionId?: string | undefined;
|
|
@@ -82626,6 +83026,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82626
83026
|
userId?: number | undefined;
|
|
82627
83027
|
credentialId?: string | undefined;
|
|
82628
83028
|
relativePath?: string | undefined;
|
|
83029
|
+
purgeDirectory?: boolean | undefined;
|
|
82629
83030
|
commitAuthorName?: string | undefined;
|
|
82630
83031
|
commitAuthorEmail?: string | undefined;
|
|
82631
83032
|
connectionId?: string | undefined;
|
|
@@ -82667,6 +83068,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82667
83068
|
userId?: number | null | undefined;
|
|
82668
83069
|
credentialId?: string | undefined;
|
|
82669
83070
|
relativePath?: string | null | undefined;
|
|
83071
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82670
83072
|
commitAuthorName?: string | null | undefined;
|
|
82671
83073
|
commitAuthorEmail?: string | null | undefined;
|
|
82672
83074
|
connectionId?: string | null | undefined;
|
|
@@ -82679,6 +83081,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82679
83081
|
userId?: number | null | undefined;
|
|
82680
83082
|
credentialId?: string | undefined;
|
|
82681
83083
|
relativePath?: string | null | undefined;
|
|
83084
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82682
83085
|
commitAuthorName?: string | null | undefined;
|
|
82683
83086
|
commitAuthorEmail?: string | null | undefined;
|
|
82684
83087
|
connectionId?: string | null | undefined;
|
|
@@ -82689,6 +83092,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82689
83092
|
userId?: number | null | undefined;
|
|
82690
83093
|
credentialId?: string | undefined;
|
|
82691
83094
|
relativePath?: string | null | undefined;
|
|
83095
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82692
83096
|
commitAuthorName?: string | null | undefined;
|
|
82693
83097
|
commitAuthorEmail?: string | null | undefined;
|
|
82694
83098
|
connectionId?: string | null | undefined;
|
|
@@ -82700,6 +83104,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
82700
83104
|
userId?: number | null | undefined;
|
|
82701
83105
|
credentialId?: string | undefined;
|
|
82702
83106
|
relativePath?: string | null | undefined;
|
|
83107
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82703
83108
|
commitAuthorName?: string | null | undefined;
|
|
82704
83109
|
commitAuthorEmail?: string | null | undefined;
|
|
82705
83110
|
connectionId?: string | null | undefined;
|
|
@@ -82759,6 +83164,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82759
83164
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82760
83165
|
branch: z.ZodString;
|
|
82761
83166
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
83167
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
82762
83168
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82763
83169
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82764
83170
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -82771,6 +83177,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82771
83177
|
userId?: number | undefined;
|
|
82772
83178
|
credentialId?: string | undefined;
|
|
82773
83179
|
relativePath?: string | undefined;
|
|
83180
|
+
purgeDirectory?: boolean | undefined;
|
|
82774
83181
|
commitAuthorName?: string | undefined;
|
|
82775
83182
|
commitAuthorEmail?: string | undefined;
|
|
82776
83183
|
connectionId?: string | undefined;
|
|
@@ -82783,6 +83190,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82783
83190
|
userId?: number | null | undefined;
|
|
82784
83191
|
credentialId?: string | undefined;
|
|
82785
83192
|
relativePath?: string | null | undefined;
|
|
83193
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82786
83194
|
commitAuthorName?: string | null | undefined;
|
|
82787
83195
|
commitAuthorEmail?: string | null | undefined;
|
|
82788
83196
|
connectionId?: string | null | undefined;
|
|
@@ -82796,6 +83204,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82796
83204
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82797
83205
|
branch: z.ZodString;
|
|
82798
83206
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
83207
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
82799
83208
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82800
83209
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
82801
83210
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -82806,6 +83215,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82806
83215
|
userId?: number | undefined;
|
|
82807
83216
|
credentialId?: string | undefined;
|
|
82808
83217
|
relativePath?: string | undefined;
|
|
83218
|
+
purgeDirectory?: boolean | undefined;
|
|
82809
83219
|
commitAuthorName?: string | undefined;
|
|
82810
83220
|
commitAuthorEmail?: string | undefined;
|
|
82811
83221
|
connectionId?: string | undefined;
|
|
@@ -82817,6 +83227,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82817
83227
|
userId?: number | null | undefined;
|
|
82818
83228
|
credentialId?: string | undefined;
|
|
82819
83229
|
relativePath?: string | null | undefined;
|
|
83230
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82820
83231
|
commitAuthorName?: string | null | undefined;
|
|
82821
83232
|
commitAuthorEmail?: string | null | undefined;
|
|
82822
83233
|
connectionId?: string | null | undefined;
|
|
@@ -82826,6 +83237,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82826
83237
|
url: z.ZodString;
|
|
82827
83238
|
branch: z.ZodString;
|
|
82828
83239
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
83240
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
82829
83241
|
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82830
83242
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82831
83243
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -82836,6 +83248,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82836
83248
|
userId?: number | undefined;
|
|
82837
83249
|
credentialId?: string | undefined;
|
|
82838
83250
|
relativePath?: string | undefined;
|
|
83251
|
+
purgeDirectory?: boolean | undefined;
|
|
82839
83252
|
commitAuthorName?: string | undefined;
|
|
82840
83253
|
commitAuthorEmail?: string | undefined;
|
|
82841
83254
|
connectionId?: string | undefined;
|
|
@@ -82845,6 +83258,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82845
83258
|
userId?: number | null | undefined;
|
|
82846
83259
|
credentialId?: string | undefined;
|
|
82847
83260
|
relativePath?: string | null | undefined;
|
|
83261
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82848
83262
|
commitAuthorName?: string | null | undefined;
|
|
82849
83263
|
commitAuthorEmail?: string | null | undefined;
|
|
82850
83264
|
connectionId?: string | null | undefined;
|
|
@@ -82856,6 +83270,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82856
83270
|
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82857
83271
|
branch: z.ZodString;
|
|
82858
83272
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
83273
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
82859
83274
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82860
83275
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
82861
83276
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
@@ -82866,6 +83281,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82866
83281
|
userId?: number | undefined;
|
|
82867
83282
|
credentialId?: string | undefined;
|
|
82868
83283
|
relativePath?: string | undefined;
|
|
83284
|
+
purgeDirectory?: boolean | undefined;
|
|
82869
83285
|
commitAuthorName?: string | undefined;
|
|
82870
83286
|
commitAuthorEmail?: string | undefined;
|
|
82871
83287
|
connectionId?: string | undefined;
|
|
@@ -82876,6 +83292,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82876
83292
|
userId?: number | null | undefined;
|
|
82877
83293
|
credentialId?: string | undefined;
|
|
82878
83294
|
relativePath?: string | null | undefined;
|
|
83295
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82879
83296
|
commitAuthorName?: string | null | undefined;
|
|
82880
83297
|
commitAuthorEmail?: string | null | undefined;
|
|
82881
83298
|
connectionId?: string | null | undefined;
|
|
@@ -82920,6 +83337,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82920
83337
|
userId?: number | undefined;
|
|
82921
83338
|
credentialId?: string | undefined;
|
|
82922
83339
|
relativePath?: string | undefined;
|
|
83340
|
+
purgeDirectory?: boolean | undefined;
|
|
82923
83341
|
commitAuthorName?: string | undefined;
|
|
82924
83342
|
commitAuthorEmail?: string | undefined;
|
|
82925
83343
|
connectionId?: string | undefined;
|
|
@@ -82932,6 +83350,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82932
83350
|
userId?: number | undefined;
|
|
82933
83351
|
credentialId?: string | undefined;
|
|
82934
83352
|
relativePath?: string | undefined;
|
|
83353
|
+
purgeDirectory?: boolean | undefined;
|
|
82935
83354
|
commitAuthorName?: string | undefined;
|
|
82936
83355
|
commitAuthorEmail?: string | undefined;
|
|
82937
83356
|
connectionId?: string | undefined;
|
|
@@ -82942,6 +83361,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82942
83361
|
userId?: number | undefined;
|
|
82943
83362
|
credentialId?: string | undefined;
|
|
82944
83363
|
relativePath?: string | undefined;
|
|
83364
|
+
purgeDirectory?: boolean | undefined;
|
|
82945
83365
|
commitAuthorName?: string | undefined;
|
|
82946
83366
|
commitAuthorEmail?: string | undefined;
|
|
82947
83367
|
connectionId?: string | undefined;
|
|
@@ -82953,6 +83373,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82953
83373
|
userId?: number | undefined;
|
|
82954
83374
|
credentialId?: string | undefined;
|
|
82955
83375
|
relativePath?: string | undefined;
|
|
83376
|
+
purgeDirectory?: boolean | undefined;
|
|
82956
83377
|
commitAuthorName?: string | undefined;
|
|
82957
83378
|
commitAuthorEmail?: string | undefined;
|
|
82958
83379
|
connectionId?: string | undefined;
|
|
@@ -82976,6 +83397,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82976
83397
|
userId?: number | null | undefined;
|
|
82977
83398
|
credentialId?: string | undefined;
|
|
82978
83399
|
relativePath?: string | null | undefined;
|
|
83400
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82979
83401
|
commitAuthorName?: string | null | undefined;
|
|
82980
83402
|
commitAuthorEmail?: string | null | undefined;
|
|
82981
83403
|
connectionId?: string | null | undefined;
|
|
@@ -82988,6 +83410,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82988
83410
|
userId?: number | null | undefined;
|
|
82989
83411
|
credentialId?: string | undefined;
|
|
82990
83412
|
relativePath?: string | null | undefined;
|
|
83413
|
+
purgeDirectory?: boolean | null | undefined;
|
|
82991
83414
|
commitAuthorName?: string | null | undefined;
|
|
82992
83415
|
commitAuthorEmail?: string | null | undefined;
|
|
82993
83416
|
connectionId?: string | null | undefined;
|
|
@@ -82998,6 +83421,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
82998
83421
|
userId?: number | null | undefined;
|
|
82999
83422
|
credentialId?: string | undefined;
|
|
83000
83423
|
relativePath?: string | null | undefined;
|
|
83424
|
+
purgeDirectory?: boolean | null | undefined;
|
|
83001
83425
|
commitAuthorName?: string | null | undefined;
|
|
83002
83426
|
commitAuthorEmail?: string | null | undefined;
|
|
83003
83427
|
connectionId?: string | null | undefined;
|
|
@@ -83009,6 +83433,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83009
83433
|
userId?: number | null | undefined;
|
|
83010
83434
|
credentialId?: string | undefined;
|
|
83011
83435
|
relativePath?: string | null | undefined;
|
|
83436
|
+
purgeDirectory?: boolean | null | undefined;
|
|
83012
83437
|
commitAuthorName?: string | null | undefined;
|
|
83013
83438
|
commitAuthorEmail?: string | null | undefined;
|
|
83014
83439
|
connectionId?: string | null | undefined;
|
|
@@ -83049,6 +83474,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83049
83474
|
userId?: number | undefined;
|
|
83050
83475
|
credentialId?: string | undefined;
|
|
83051
83476
|
relativePath?: string | undefined;
|
|
83477
|
+
purgeDirectory?: boolean | undefined;
|
|
83052
83478
|
commitAuthorName?: string | undefined;
|
|
83053
83479
|
commitAuthorEmail?: string | undefined;
|
|
83054
83480
|
connectionId?: string | undefined;
|
|
@@ -83061,6 +83487,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83061
83487
|
userId?: number | undefined;
|
|
83062
83488
|
credentialId?: string | undefined;
|
|
83063
83489
|
relativePath?: string | undefined;
|
|
83490
|
+
purgeDirectory?: boolean | undefined;
|
|
83064
83491
|
commitAuthorName?: string | undefined;
|
|
83065
83492
|
commitAuthorEmail?: string | undefined;
|
|
83066
83493
|
connectionId?: string | undefined;
|
|
@@ -83071,6 +83498,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83071
83498
|
userId?: number | undefined;
|
|
83072
83499
|
credentialId?: string | undefined;
|
|
83073
83500
|
relativePath?: string | undefined;
|
|
83501
|
+
purgeDirectory?: boolean | undefined;
|
|
83074
83502
|
commitAuthorName?: string | undefined;
|
|
83075
83503
|
commitAuthorEmail?: string | undefined;
|
|
83076
83504
|
connectionId?: string | undefined;
|
|
@@ -83082,6 +83510,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83082
83510
|
userId?: number | undefined;
|
|
83083
83511
|
credentialId?: string | undefined;
|
|
83084
83512
|
relativePath?: string | undefined;
|
|
83513
|
+
purgeDirectory?: boolean | undefined;
|
|
83085
83514
|
commitAuthorName?: string | undefined;
|
|
83086
83515
|
commitAuthorEmail?: string | undefined;
|
|
83087
83516
|
connectionId?: string | undefined;
|
|
@@ -83124,6 +83553,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83124
83553
|
userId?: number | null | undefined;
|
|
83125
83554
|
credentialId?: string | undefined;
|
|
83126
83555
|
relativePath?: string | null | undefined;
|
|
83556
|
+
purgeDirectory?: boolean | null | undefined;
|
|
83127
83557
|
commitAuthorName?: string | null | undefined;
|
|
83128
83558
|
commitAuthorEmail?: string | null | undefined;
|
|
83129
83559
|
connectionId?: string | null | undefined;
|
|
@@ -83136,6 +83566,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83136
83566
|
userId?: number | null | undefined;
|
|
83137
83567
|
credentialId?: string | undefined;
|
|
83138
83568
|
relativePath?: string | null | undefined;
|
|
83569
|
+
purgeDirectory?: boolean | null | undefined;
|
|
83139
83570
|
commitAuthorName?: string | null | undefined;
|
|
83140
83571
|
commitAuthorEmail?: string | null | undefined;
|
|
83141
83572
|
connectionId?: string | null | undefined;
|
|
@@ -83146,6 +83577,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83146
83577
|
userId?: number | null | undefined;
|
|
83147
83578
|
credentialId?: string | undefined;
|
|
83148
83579
|
relativePath?: string | null | undefined;
|
|
83580
|
+
purgeDirectory?: boolean | null | undefined;
|
|
83149
83581
|
commitAuthorName?: string | null | undefined;
|
|
83150
83582
|
commitAuthorEmail?: string | null | undefined;
|
|
83151
83583
|
connectionId?: string | null | undefined;
|
|
@@ -83157,6 +83589,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83157
83589
|
userId?: number | null | undefined;
|
|
83158
83590
|
credentialId?: string | undefined;
|
|
83159
83591
|
relativePath?: string | null | undefined;
|
|
83592
|
+
purgeDirectory?: boolean | null | undefined;
|
|
83160
83593
|
commitAuthorName?: string | null | undefined;
|
|
83161
83594
|
commitAuthorEmail?: string | null | undefined;
|
|
83162
83595
|
connectionId?: string | null | undefined;
|
|
@@ -83903,6 +84336,7 @@ declare class PipelinesEndpoint {
|
|
|
83903
84336
|
userId?: number | undefined;
|
|
83904
84337
|
credentialId?: string | undefined;
|
|
83905
84338
|
relativePath?: string | undefined;
|
|
84339
|
+
purgeDirectory?: boolean | undefined;
|
|
83906
84340
|
commitAuthorName?: string | undefined;
|
|
83907
84341
|
commitAuthorEmail?: string | undefined;
|
|
83908
84342
|
connectionId?: string | undefined;
|
|
@@ -83915,6 +84349,7 @@ declare class PipelinesEndpoint {
|
|
|
83915
84349
|
userId?: number | undefined;
|
|
83916
84350
|
credentialId?: string | undefined;
|
|
83917
84351
|
relativePath?: string | undefined;
|
|
84352
|
+
purgeDirectory?: boolean | undefined;
|
|
83918
84353
|
commitAuthorName?: string | undefined;
|
|
83919
84354
|
commitAuthorEmail?: string | undefined;
|
|
83920
84355
|
connectionId?: string | undefined;
|
|
@@ -83925,6 +84360,7 @@ declare class PipelinesEndpoint {
|
|
|
83925
84360
|
userId?: number | undefined;
|
|
83926
84361
|
credentialId?: string | undefined;
|
|
83927
84362
|
relativePath?: string | undefined;
|
|
84363
|
+
purgeDirectory?: boolean | undefined;
|
|
83928
84364
|
commitAuthorName?: string | undefined;
|
|
83929
84365
|
commitAuthorEmail?: string | undefined;
|
|
83930
84366
|
connectionId?: string | undefined;
|
|
@@ -83936,6 +84372,7 @@ declare class PipelinesEndpoint {
|
|
|
83936
84372
|
userId?: number | undefined;
|
|
83937
84373
|
credentialId?: string | undefined;
|
|
83938
84374
|
relativePath?: string | undefined;
|
|
84375
|
+
purgeDirectory?: boolean | undefined;
|
|
83939
84376
|
commitAuthorName?: string | undefined;
|
|
83940
84377
|
commitAuthorEmail?: string | undefined;
|
|
83941
84378
|
connectionId?: string | undefined;
|
|
@@ -84020,6 +84457,7 @@ declare class PipelinesEndpoint {
|
|
|
84020
84457
|
userId?: number | undefined;
|
|
84021
84458
|
credentialId?: string | undefined;
|
|
84022
84459
|
relativePath?: string | undefined;
|
|
84460
|
+
purgeDirectory?: boolean | undefined;
|
|
84023
84461
|
commitAuthorName?: string | undefined;
|
|
84024
84462
|
commitAuthorEmail?: string | undefined;
|
|
84025
84463
|
connectionId?: string | undefined;
|
|
@@ -84033,6 +84471,7 @@ declare class PipelinesEndpoint {
|
|
|
84033
84471
|
userId?: number | undefined;
|
|
84034
84472
|
credentialId?: string | undefined;
|
|
84035
84473
|
relativePath?: string | undefined;
|
|
84474
|
+
purgeDirectory?: boolean | undefined;
|
|
84036
84475
|
commitAuthorName?: string | undefined;
|
|
84037
84476
|
commitAuthorEmail?: string | undefined;
|
|
84038
84477
|
connectionId?: string | undefined;
|
|
@@ -84044,6 +84483,7 @@ declare class PipelinesEndpoint {
|
|
|
84044
84483
|
userId?: number | undefined;
|
|
84045
84484
|
credentialId?: string | undefined;
|
|
84046
84485
|
relativePath?: string | undefined;
|
|
84486
|
+
purgeDirectory?: boolean | undefined;
|
|
84047
84487
|
commitAuthorName?: string | undefined;
|
|
84048
84488
|
commitAuthorEmail?: string | undefined;
|
|
84049
84489
|
connectionId?: string | undefined;
|
|
@@ -84056,6 +84496,7 @@ declare class PipelinesEndpoint {
|
|
|
84056
84496
|
userId?: number | undefined;
|
|
84057
84497
|
credentialId?: string | undefined;
|
|
84058
84498
|
relativePath?: string | undefined;
|
|
84499
|
+
purgeDirectory?: boolean | undefined;
|
|
84059
84500
|
commitAuthorName?: string | undefined;
|
|
84060
84501
|
commitAuthorEmail?: string | undefined;
|
|
84061
84502
|
connectionId?: string | undefined;
|
|
@@ -84094,6 +84535,7 @@ declare class PipelinesEndpoint {
|
|
|
84094
84535
|
userId?: number | undefined;
|
|
84095
84536
|
credentialId?: string | undefined;
|
|
84096
84537
|
relativePath?: string | undefined;
|
|
84538
|
+
purgeDirectory?: boolean | undefined;
|
|
84097
84539
|
commitAuthorName?: string | undefined;
|
|
84098
84540
|
commitAuthorEmail?: string | undefined;
|
|
84099
84541
|
connectionId?: string | undefined;
|
|
@@ -84106,6 +84548,7 @@ declare class PipelinesEndpoint {
|
|
|
84106
84548
|
userId?: number | undefined;
|
|
84107
84549
|
credentialId?: string | undefined;
|
|
84108
84550
|
relativePath?: string | undefined;
|
|
84551
|
+
purgeDirectory?: boolean | undefined;
|
|
84109
84552
|
commitAuthorName?: string | undefined;
|
|
84110
84553
|
commitAuthorEmail?: string | undefined;
|
|
84111
84554
|
connectionId?: string | undefined;
|
|
@@ -84116,6 +84559,7 @@ declare class PipelinesEndpoint {
|
|
|
84116
84559
|
userId?: number | undefined;
|
|
84117
84560
|
credentialId?: string | undefined;
|
|
84118
84561
|
relativePath?: string | undefined;
|
|
84562
|
+
purgeDirectory?: boolean | undefined;
|
|
84119
84563
|
commitAuthorName?: string | undefined;
|
|
84120
84564
|
commitAuthorEmail?: string | undefined;
|
|
84121
84565
|
connectionId?: string | undefined;
|
|
@@ -84127,6 +84571,7 @@ declare class PipelinesEndpoint {
|
|
|
84127
84571
|
userId?: number | undefined;
|
|
84128
84572
|
credentialId?: string | undefined;
|
|
84129
84573
|
relativePath?: string | undefined;
|
|
84574
|
+
purgeDirectory?: boolean | undefined;
|
|
84130
84575
|
commitAuthorName?: string | undefined;
|
|
84131
84576
|
commitAuthorEmail?: string | undefined;
|
|
84132
84577
|
connectionId?: string | undefined;
|
|
@@ -84211,6 +84656,7 @@ declare class PipelinesEndpoint {
|
|
|
84211
84656
|
userId?: number | undefined;
|
|
84212
84657
|
credentialId?: string | undefined;
|
|
84213
84658
|
relativePath?: string | undefined;
|
|
84659
|
+
purgeDirectory?: boolean | undefined;
|
|
84214
84660
|
commitAuthorName?: string | undefined;
|
|
84215
84661
|
commitAuthorEmail?: string | undefined;
|
|
84216
84662
|
connectionId?: string | undefined;
|
|
@@ -84224,6 +84670,7 @@ declare class PipelinesEndpoint {
|
|
|
84224
84670
|
userId?: number | undefined;
|
|
84225
84671
|
credentialId?: string | undefined;
|
|
84226
84672
|
relativePath?: string | undefined;
|
|
84673
|
+
purgeDirectory?: boolean | undefined;
|
|
84227
84674
|
commitAuthorName?: string | undefined;
|
|
84228
84675
|
commitAuthorEmail?: string | undefined;
|
|
84229
84676
|
connectionId?: string | undefined;
|
|
@@ -84235,6 +84682,7 @@ declare class PipelinesEndpoint {
|
|
|
84235
84682
|
userId?: number | undefined;
|
|
84236
84683
|
credentialId?: string | undefined;
|
|
84237
84684
|
relativePath?: string | undefined;
|
|
84685
|
+
purgeDirectory?: boolean | undefined;
|
|
84238
84686
|
commitAuthorName?: string | undefined;
|
|
84239
84687
|
commitAuthorEmail?: string | undefined;
|
|
84240
84688
|
connectionId?: string | undefined;
|
|
@@ -84247,6 +84695,7 @@ declare class PipelinesEndpoint {
|
|
|
84247
84695
|
userId?: number | undefined;
|
|
84248
84696
|
credentialId?: string | undefined;
|
|
84249
84697
|
relativePath?: string | undefined;
|
|
84698
|
+
purgeDirectory?: boolean | undefined;
|
|
84250
84699
|
commitAuthorName?: string | undefined;
|
|
84251
84700
|
commitAuthorEmail?: string | undefined;
|
|
84252
84701
|
connectionId?: string | undefined;
|
|
@@ -84277,6 +84726,7 @@ declare class PipelinesEndpoint {
|
|
|
84277
84726
|
userId?: number | undefined;
|
|
84278
84727
|
credentialId?: string | undefined;
|
|
84279
84728
|
relativePath?: string | undefined;
|
|
84729
|
+
purgeDirectory?: boolean | undefined;
|
|
84280
84730
|
commitAuthorName?: string | undefined;
|
|
84281
84731
|
commitAuthorEmail?: string | undefined;
|
|
84282
84732
|
connectionId?: string | undefined;
|
|
@@ -84289,6 +84739,7 @@ declare class PipelinesEndpoint {
|
|
|
84289
84739
|
userId?: number | undefined;
|
|
84290
84740
|
credentialId?: string | undefined;
|
|
84291
84741
|
relativePath?: string | undefined;
|
|
84742
|
+
purgeDirectory?: boolean | undefined;
|
|
84292
84743
|
commitAuthorName?: string | undefined;
|
|
84293
84744
|
commitAuthorEmail?: string | undefined;
|
|
84294
84745
|
connectionId?: string | undefined;
|
|
@@ -84299,6 +84750,7 @@ declare class PipelinesEndpoint {
|
|
|
84299
84750
|
userId?: number | undefined;
|
|
84300
84751
|
credentialId?: string | undefined;
|
|
84301
84752
|
relativePath?: string | undefined;
|
|
84753
|
+
purgeDirectory?: boolean | undefined;
|
|
84302
84754
|
commitAuthorName?: string | undefined;
|
|
84303
84755
|
commitAuthorEmail?: string | undefined;
|
|
84304
84756
|
connectionId?: string | undefined;
|
|
@@ -84310,6 +84762,7 @@ declare class PipelinesEndpoint {
|
|
|
84310
84762
|
userId?: number | undefined;
|
|
84311
84763
|
credentialId?: string | undefined;
|
|
84312
84764
|
relativePath?: string | undefined;
|
|
84765
|
+
purgeDirectory?: boolean | undefined;
|
|
84313
84766
|
commitAuthorName?: string | undefined;
|
|
84314
84767
|
commitAuthorEmail?: string | undefined;
|
|
84315
84768
|
connectionId?: string | undefined;
|
|
@@ -84436,6 +84889,80 @@ declare class OverridesEndpoint {
|
|
|
84436
84889
|
create(dsId: string, versionId: string, themeId: string, body: any): Promise<any>;
|
|
84437
84890
|
}
|
|
84438
84891
|
|
|
84892
|
+
declare class ElementPropertyDefinitionsEndpoint {
|
|
84893
|
+
private readonly requestExecutor;
|
|
84894
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84895
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
84896
|
+
definitions: {
|
|
84897
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
84898
|
+
id: string;
|
|
84899
|
+
persistentId: string;
|
|
84900
|
+
meta: {
|
|
84901
|
+
name: string;
|
|
84902
|
+
description?: string | undefined;
|
|
84903
|
+
};
|
|
84904
|
+
designSystemVersionId: string;
|
|
84905
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
84906
|
+
codeName: string;
|
|
84907
|
+
options?: {
|
|
84908
|
+
id: string;
|
|
84909
|
+
name: string;
|
|
84910
|
+
backgroundColor?: {
|
|
84911
|
+
value: string;
|
|
84912
|
+
} | undefined;
|
|
84913
|
+
}[] | undefined;
|
|
84914
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
84915
|
+
}[];
|
|
84916
|
+
}>;
|
|
84917
|
+
create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
|
|
84918
|
+
definition: {
|
|
84919
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
84920
|
+
id: string;
|
|
84921
|
+
persistentId: string;
|
|
84922
|
+
meta: {
|
|
84923
|
+
name: string;
|
|
84924
|
+
description?: string | undefined;
|
|
84925
|
+
};
|
|
84926
|
+
designSystemVersionId: string;
|
|
84927
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
84928
|
+
codeName: string;
|
|
84929
|
+
options?: {
|
|
84930
|
+
id: string;
|
|
84931
|
+
name: string;
|
|
84932
|
+
backgroundColor?: {
|
|
84933
|
+
value: string;
|
|
84934
|
+
} | undefined;
|
|
84935
|
+
}[] | undefined;
|
|
84936
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
84937
|
+
};
|
|
84938
|
+
}>;
|
|
84939
|
+
}
|
|
84940
|
+
|
|
84941
|
+
declare class ElementPropertyValuesEndpoint {
|
|
84942
|
+
private readonly requestExecutor;
|
|
84943
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84944
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
84945
|
+
values: {
|
|
84946
|
+
id: string;
|
|
84947
|
+
designSystemVersionId: string;
|
|
84948
|
+
definitionId: string;
|
|
84949
|
+
targetElementId: string;
|
|
84950
|
+
value?: string | number | boolean | undefined;
|
|
84951
|
+
valuePreview?: string | undefined;
|
|
84952
|
+
}[];
|
|
84953
|
+
}>;
|
|
84954
|
+
upsert(designSystemId: string, versionId: string, body: DTOElementPropertyValueUpsertPaylod): Promise<{
|
|
84955
|
+
value: {
|
|
84956
|
+
id: string;
|
|
84957
|
+
designSystemVersionId: string;
|
|
84958
|
+
definitionId: string;
|
|
84959
|
+
targetElementId: string;
|
|
84960
|
+
value?: string | number | boolean | undefined;
|
|
84961
|
+
valuePreview?: string | undefined;
|
|
84962
|
+
};
|
|
84963
|
+
}>;
|
|
84964
|
+
}
|
|
84965
|
+
|
|
84439
84966
|
declare class VersionStatsEndpoint {
|
|
84440
84967
|
private readonly requestExecutor;
|
|
84441
84968
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -85594,6 +86121,32 @@ declare class ThemesEndpoint {
|
|
|
85594
86121
|
delete(dsId: string, versionId: string, themeId: string): Promise<any>;
|
|
85595
86122
|
}
|
|
85596
86123
|
|
|
86124
|
+
declare class TokenCollectionsEndpoint {
|
|
86125
|
+
private readonly requestExecutor;
|
|
86126
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86127
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
86128
|
+
collections: {
|
|
86129
|
+
id: string;
|
|
86130
|
+
persistentId: string;
|
|
86131
|
+
meta: {
|
|
86132
|
+
name: string;
|
|
86133
|
+
description?: string | undefined;
|
|
86134
|
+
};
|
|
86135
|
+
designSystemVersionId: string;
|
|
86136
|
+
createdAt: Date;
|
|
86137
|
+
updatedAt: Date;
|
|
86138
|
+
elementPropertyOptionId: string;
|
|
86139
|
+
backgroundColor?: {
|
|
86140
|
+
value: string;
|
|
86141
|
+
} | undefined;
|
|
86142
|
+
origin?: {
|
|
86143
|
+
id: string;
|
|
86144
|
+
sourceId: string;
|
|
86145
|
+
} | undefined;
|
|
86146
|
+
}[];
|
|
86147
|
+
}>;
|
|
86148
|
+
}
|
|
86149
|
+
|
|
85597
86150
|
declare class TokensEndpoint {
|
|
85598
86151
|
private readonly requestExecutor;
|
|
85599
86152
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -85978,6 +86531,33 @@ declare class TokensEndpoint {
|
|
|
85978
86531
|
get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
|
|
85979
86532
|
}
|
|
85980
86533
|
|
|
86534
|
+
declare class DesignSystemVersionsEndpoint {
|
|
86535
|
+
private readonly requestExecutor;
|
|
86536
|
+
readonly themes: ThemesEndpoint;
|
|
86537
|
+
readonly brands: BrandsEndpoint;
|
|
86538
|
+
readonly tokenCollections: TokenCollectionsEndpoint;
|
|
86539
|
+
readonly importJobs: ImportJobsEndpoint;
|
|
86540
|
+
readonly tokens: TokensEndpoint;
|
|
86541
|
+
readonly stats: VersionStatsEndpoint;
|
|
86542
|
+
readonly elementPropertyDefinitions: ElementPropertyDefinitionsEndpoint;
|
|
86543
|
+
readonly elementPropertyValues: ElementPropertyValuesEndpoint;
|
|
86544
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86545
|
+
list(dsId: string): Promise<{
|
|
86546
|
+
designSystemVersions: {
|
|
86547
|
+
id: string;
|
|
86548
|
+
meta: {
|
|
86549
|
+
name: string;
|
|
86550
|
+
description?: string | undefined;
|
|
86551
|
+
};
|
|
86552
|
+
createdAt: Date;
|
|
86553
|
+
designSystemId: string;
|
|
86554
|
+
version: string;
|
|
86555
|
+
changeLog: string;
|
|
86556
|
+
isReadonly: boolean;
|
|
86557
|
+
}[];
|
|
86558
|
+
}>;
|
|
86559
|
+
}
|
|
86560
|
+
|
|
85981
86561
|
declare class DesignSystemBffEndpoint {
|
|
85982
86562
|
private readonly requestExecutor;
|
|
85983
86563
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -86134,107 +86714,6 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
86134
86714
|
}>;
|
|
86135
86715
|
}
|
|
86136
86716
|
|
|
86137
|
-
declare class ElementPropertyDefinitionsEndpoint {
|
|
86138
|
-
private readonly requestExecutor;
|
|
86139
|
-
constructor(requestExecutor: RequestExecutor);
|
|
86140
|
-
list(designSystemId: string, versionId: string): Promise<{
|
|
86141
|
-
definitions: {
|
|
86142
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
86143
|
-
id: string;
|
|
86144
|
-
persistentId: string;
|
|
86145
|
-
meta: {
|
|
86146
|
-
name: string;
|
|
86147
|
-
description?: string | undefined;
|
|
86148
|
-
};
|
|
86149
|
-
designSystemVersionId: string;
|
|
86150
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
86151
|
-
codeName: string;
|
|
86152
|
-
options?: {
|
|
86153
|
-
id: string;
|
|
86154
|
-
name: string;
|
|
86155
|
-
backgroundColor?: {
|
|
86156
|
-
value: string;
|
|
86157
|
-
} | undefined;
|
|
86158
|
-
}[] | undefined;
|
|
86159
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
86160
|
-
}[];
|
|
86161
|
-
}>;
|
|
86162
|
-
create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
|
|
86163
|
-
definition: {
|
|
86164
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
86165
|
-
id: string;
|
|
86166
|
-
persistentId: string;
|
|
86167
|
-
meta: {
|
|
86168
|
-
name: string;
|
|
86169
|
-
description?: string | undefined;
|
|
86170
|
-
};
|
|
86171
|
-
designSystemVersionId: string;
|
|
86172
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
86173
|
-
codeName: string;
|
|
86174
|
-
options?: {
|
|
86175
|
-
id: string;
|
|
86176
|
-
name: string;
|
|
86177
|
-
backgroundColor?: {
|
|
86178
|
-
value: string;
|
|
86179
|
-
} | undefined;
|
|
86180
|
-
}[] | undefined;
|
|
86181
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
86182
|
-
};
|
|
86183
|
-
}>;
|
|
86184
|
-
}
|
|
86185
|
-
|
|
86186
|
-
declare class TokenCollectionsEndpoint {
|
|
86187
|
-
private readonly requestExecutor;
|
|
86188
|
-
constructor(requestExecutor: RequestExecutor);
|
|
86189
|
-
list(designSystemId: string, versionId: string): Promise<{
|
|
86190
|
-
collections: {
|
|
86191
|
-
id: string;
|
|
86192
|
-
persistentId: string;
|
|
86193
|
-
meta: {
|
|
86194
|
-
name: string;
|
|
86195
|
-
description?: string | undefined;
|
|
86196
|
-
};
|
|
86197
|
-
designSystemVersionId: string;
|
|
86198
|
-
createdAt: Date;
|
|
86199
|
-
updatedAt: Date;
|
|
86200
|
-
elementPropertyOptionId: string;
|
|
86201
|
-
backgroundColor?: {
|
|
86202
|
-
value: string;
|
|
86203
|
-
} | undefined;
|
|
86204
|
-
origin?: {
|
|
86205
|
-
id: string;
|
|
86206
|
-
sourceId: string;
|
|
86207
|
-
} | undefined;
|
|
86208
|
-
}[];
|
|
86209
|
-
}>;
|
|
86210
|
-
}
|
|
86211
|
-
|
|
86212
|
-
declare class DesignSystemVersionsEndpoint {
|
|
86213
|
-
private readonly requestExecutor;
|
|
86214
|
-
readonly themes: ThemesEndpoint;
|
|
86215
|
-
readonly brands: BrandsEndpoint;
|
|
86216
|
-
readonly tokenCollections: TokenCollectionsEndpoint;
|
|
86217
|
-
readonly importJobs: ImportJobsEndpoint;
|
|
86218
|
-
readonly tokens: TokensEndpoint;
|
|
86219
|
-
readonly stats: VersionStatsEndpoint;
|
|
86220
|
-
readonly elementPropertyDefinitions: ElementPropertyDefinitionsEndpoint;
|
|
86221
|
-
constructor(requestExecutor: RequestExecutor);
|
|
86222
|
-
list(dsId: string): Promise<{
|
|
86223
|
-
designSystemVersions: {
|
|
86224
|
-
id: string;
|
|
86225
|
-
meta: {
|
|
86226
|
-
name: string;
|
|
86227
|
-
description?: string | undefined;
|
|
86228
|
-
};
|
|
86229
|
-
createdAt: Date;
|
|
86230
|
-
designSystemId: string;
|
|
86231
|
-
version: string;
|
|
86232
|
-
changeLog: string;
|
|
86233
|
-
isReadonly: boolean;
|
|
86234
|
-
}[];
|
|
86235
|
-
}>;
|
|
86236
|
-
}
|
|
86237
|
-
|
|
86238
86717
|
declare class DesignSystemsEndpoint {
|
|
86239
86718
|
private readonly requestExecutor;
|
|
86240
86719
|
readonly members: DesignSystemMembersEndpoint;
|
|
@@ -86405,280 +86884,6 @@ declare class DesignSystemsEndpoint {
|
|
|
86405
86884
|
}>;
|
|
86406
86885
|
}
|
|
86407
86886
|
|
|
86408
|
-
declare class UsersEndpoint {
|
|
86409
|
-
private readonly requestExecutor;
|
|
86410
|
-
constructor(requestExecutor: RequestExecutor);
|
|
86411
|
-
getMe(): Promise<{
|
|
86412
|
-
user: {
|
|
86413
|
-
id: string;
|
|
86414
|
-
createdAt: Date;
|
|
86415
|
-
profile: {
|
|
86416
|
-
name: string;
|
|
86417
|
-
avatar?: string | undefined;
|
|
86418
|
-
nickname?: string | undefined;
|
|
86419
|
-
onboarding?: {
|
|
86420
|
-
companyName?: string | undefined;
|
|
86421
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
86422
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
86423
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
86424
|
-
jobTitle?: string | undefined;
|
|
86425
|
-
phase?: string | undefined;
|
|
86426
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
86427
|
-
designSystemName?: string | undefined;
|
|
86428
|
-
defaultDestination?: string | undefined;
|
|
86429
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
86430
|
-
} | undefined;
|
|
86431
|
-
};
|
|
86432
|
-
email: string;
|
|
86433
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
86434
|
-
loggedOutAt?: Date | undefined;
|
|
86435
|
-
};
|
|
86436
|
-
}>;
|
|
86437
|
-
listWorkspaces(uid: string): Promise<{
|
|
86438
|
-
membership: {
|
|
86439
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
86440
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
86441
|
-
workspace: {
|
|
86442
|
-
id: string;
|
|
86443
|
-
profile: {
|
|
86444
|
-
name: string;
|
|
86445
|
-
color: string;
|
|
86446
|
-
handle: string;
|
|
86447
|
-
avatar?: string | undefined;
|
|
86448
|
-
billingDetails?: {
|
|
86449
|
-
address?: {
|
|
86450
|
-
street1?: string | undefined;
|
|
86451
|
-
street2?: string | undefined;
|
|
86452
|
-
city?: string | undefined;
|
|
86453
|
-
postal?: string | undefined;
|
|
86454
|
-
country?: string | undefined;
|
|
86455
|
-
state?: string | undefined;
|
|
86456
|
-
} | undefined;
|
|
86457
|
-
email?: string | undefined;
|
|
86458
|
-
companyName?: string | undefined;
|
|
86459
|
-
companyId?: string | undefined;
|
|
86460
|
-
notes?: string | undefined;
|
|
86461
|
-
vat?: string | undefined;
|
|
86462
|
-
poNumber?: string | undefined;
|
|
86463
|
-
} | undefined;
|
|
86464
|
-
};
|
|
86465
|
-
subscription: {
|
|
86466
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
86467
|
-
planPriceId: string;
|
|
86468
|
-
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
86469
|
-
seats: number;
|
|
86470
|
-
seatLimit: number;
|
|
86471
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
86472
|
-
card?: {
|
|
86473
|
-
cardId?: string | null | undefined;
|
|
86474
|
-
last4?: string | null | undefined;
|
|
86475
|
-
expiryMonth?: string | null | undefined;
|
|
86476
|
-
expiryYear?: string | null | undefined;
|
|
86477
|
-
brand?: string | null | undefined;
|
|
86478
|
-
name?: string | null | undefined;
|
|
86479
|
-
} | undefined;
|
|
86480
|
-
amount?: number | null | undefined;
|
|
86481
|
-
stripeProductDescription?: string | undefined;
|
|
86482
|
-
isPricePerCreator?: boolean | undefined;
|
|
86483
|
-
isTrial?: boolean | undefined;
|
|
86484
|
-
legacyVersion?: string | undefined;
|
|
86485
|
-
stripeProductFeatures?: string[] | undefined;
|
|
86486
|
-
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
86487
|
-
stripeSubscriptionId?: string | null | undefined;
|
|
86488
|
-
stripeCustomerId?: string | null | undefined;
|
|
86489
|
-
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
86490
|
-
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
86491
|
-
featuresSummary?: {
|
|
86492
|
-
designSystems: {
|
|
86493
|
-
max: number;
|
|
86494
|
-
errorMessage: string;
|
|
86495
|
-
errorReason: string;
|
|
86496
|
-
};
|
|
86497
|
-
designSystemSources: {
|
|
86498
|
-
max: number;
|
|
86499
|
-
errorMessage: string;
|
|
86500
|
-
errorReason: string;
|
|
86501
|
-
noImportJobsErrorMessage: string;
|
|
86502
|
-
noImportJobsErrorReason: string;
|
|
86503
|
-
};
|
|
86504
|
-
designSystemVersions: {
|
|
86505
|
-
max: number;
|
|
86506
|
-
errorMessage: string;
|
|
86507
|
-
errorReason: string;
|
|
86508
|
-
};
|
|
86509
|
-
themes: {
|
|
86510
|
-
max: number;
|
|
86511
|
-
errorMessage: string;
|
|
86512
|
-
errorReason: string;
|
|
86513
|
-
};
|
|
86514
|
-
brands: {
|
|
86515
|
-
max: number;
|
|
86516
|
-
errorMessage: string;
|
|
86517
|
-
errorReason: string;
|
|
86518
|
-
};
|
|
86519
|
-
codegenSchedules: {
|
|
86520
|
-
max: number;
|
|
86521
|
-
errorMessage: string;
|
|
86522
|
-
errorReason: string;
|
|
86523
|
-
};
|
|
86524
|
-
publicDocumentation: {
|
|
86525
|
-
errorMessage: string;
|
|
86526
|
-
errorReason: string;
|
|
86527
|
-
enabled: boolean;
|
|
86528
|
-
};
|
|
86529
|
-
customDocumentationUrl: {
|
|
86530
|
-
errorMessage: string;
|
|
86531
|
-
errorReason: string;
|
|
86532
|
-
enabled: boolean;
|
|
86533
|
-
};
|
|
86534
|
-
customDocumentationViewButton: {
|
|
86535
|
-
errorMessage: string;
|
|
86536
|
-
errorReason: string;
|
|
86537
|
-
enabled: boolean;
|
|
86538
|
-
};
|
|
86539
|
-
designSystemSourceAutoImport: {
|
|
86540
|
-
errorMessage: string;
|
|
86541
|
-
errorReason: string;
|
|
86542
|
-
enabled: boolean;
|
|
86543
|
-
};
|
|
86544
|
-
designSystemSlug: {
|
|
86545
|
-
errorMessage: string;
|
|
86546
|
-
errorReason: string;
|
|
86547
|
-
enabled: boolean;
|
|
86548
|
-
};
|
|
86549
|
-
ipWhitelisting: {
|
|
86550
|
-
errorMessage: string;
|
|
86551
|
-
errorReason: string;
|
|
86552
|
-
enabled: boolean;
|
|
86553
|
-
};
|
|
86554
|
-
npmRegistry: {
|
|
86555
|
-
errorMessage: string;
|
|
86556
|
-
errorReason: string;
|
|
86557
|
-
enabled: boolean;
|
|
86558
|
-
};
|
|
86559
|
-
sso: {
|
|
86560
|
-
errorMessage: string;
|
|
86561
|
-
errorReason: string;
|
|
86562
|
-
enabled: boolean;
|
|
86563
|
-
};
|
|
86564
|
-
workspacePaidSeats: {
|
|
86565
|
-
max: number;
|
|
86566
|
-
errorMessage: string;
|
|
86567
|
-
errorReason: string;
|
|
86568
|
-
};
|
|
86569
|
-
workspaceViewers: {
|
|
86570
|
-
max: number;
|
|
86571
|
-
errorMessage: string;
|
|
86572
|
-
errorReason: string;
|
|
86573
|
-
};
|
|
86574
|
-
customDocumentationExporter: {
|
|
86575
|
-
errorMessage: string;
|
|
86576
|
-
errorReason: string;
|
|
86577
|
-
enabled: boolean;
|
|
86578
|
-
};
|
|
86579
|
-
protectedPages: {
|
|
86580
|
-
errorMessage: string;
|
|
86581
|
-
errorReason: string;
|
|
86582
|
-
enabled: boolean;
|
|
86583
|
-
};
|
|
86584
|
-
approvals: {
|
|
86585
|
-
errorMessage: string;
|
|
86586
|
-
errorReason: string;
|
|
86587
|
-
enabled: boolean;
|
|
86588
|
-
};
|
|
86589
|
-
selectivePublishing: {
|
|
86590
|
-
errorMessage: string;
|
|
86591
|
-
errorReason: string;
|
|
86592
|
-
enabled: boolean;
|
|
86593
|
-
};
|
|
86594
|
-
designSystemAccessModes: {
|
|
86595
|
-
errorMessage: string;
|
|
86596
|
-
errorReason: string;
|
|
86597
|
-
enabled: boolean;
|
|
86598
|
-
};
|
|
86599
|
-
designSystemRoles: {
|
|
86600
|
-
errorMessage: string;
|
|
86601
|
-
errorReason: string;
|
|
86602
|
-
enabled: boolean;
|
|
86603
|
-
};
|
|
86604
|
-
} | undefined;
|
|
86605
|
-
stripeSubscriptionMainItemId?: string | undefined;
|
|
86606
|
-
currentPeriodStart?: string | undefined;
|
|
86607
|
-
currentPeriodEnd?: string | undefined;
|
|
86608
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
86609
|
-
cancelAt?: string | null | undefined;
|
|
86610
|
-
billingType?: "Auto" | "Invoice" | undefined;
|
|
86611
|
-
daysUntilDue?: number | undefined;
|
|
86612
|
-
};
|
|
86613
|
-
npmRegistry?: {
|
|
86614
|
-
enabledScopes: string[];
|
|
86615
|
-
bypassProxy: boolean;
|
|
86616
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
86617
|
-
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
86618
|
-
registryUrl: string;
|
|
86619
|
-
proxyUrl: string;
|
|
86620
|
-
customRegistryUrl?: string | undefined;
|
|
86621
|
-
accessToken?: string | undefined;
|
|
86622
|
-
username?: string | undefined;
|
|
86623
|
-
password?: string | undefined;
|
|
86624
|
-
} | undefined;
|
|
86625
|
-
};
|
|
86626
|
-
}[];
|
|
86627
|
-
}>;
|
|
86628
|
-
delete(uid: string): Promise<{
|
|
86629
|
-
user: {
|
|
86630
|
-
id: string;
|
|
86631
|
-
createdAt: Date;
|
|
86632
|
-
profile: {
|
|
86633
|
-
name: string;
|
|
86634
|
-
avatar?: string | undefined;
|
|
86635
|
-
nickname?: string | undefined;
|
|
86636
|
-
onboarding?: {
|
|
86637
|
-
companyName?: string | undefined;
|
|
86638
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
86639
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
86640
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
86641
|
-
jobTitle?: string | undefined;
|
|
86642
|
-
phase?: string | undefined;
|
|
86643
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
86644
|
-
designSystemName?: string | undefined;
|
|
86645
|
-
defaultDestination?: string | undefined;
|
|
86646
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
86647
|
-
} | undefined;
|
|
86648
|
-
};
|
|
86649
|
-
email: string;
|
|
86650
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
86651
|
-
loggedOutAt?: Date | undefined;
|
|
86652
|
-
};
|
|
86653
|
-
}>;
|
|
86654
|
-
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
86655
|
-
user: {
|
|
86656
|
-
id: string;
|
|
86657
|
-
createdAt: Date;
|
|
86658
|
-
profile: {
|
|
86659
|
-
name: string;
|
|
86660
|
-
avatar?: string | undefined;
|
|
86661
|
-
nickname?: string | undefined;
|
|
86662
|
-
onboarding?: {
|
|
86663
|
-
companyName?: string | undefined;
|
|
86664
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
86665
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
86666
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
86667
|
-
jobTitle?: string | undefined;
|
|
86668
|
-
phase?: string | undefined;
|
|
86669
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
86670
|
-
designSystemName?: string | undefined;
|
|
86671
|
-
defaultDestination?: string | undefined;
|
|
86672
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
86673
|
-
} | undefined;
|
|
86674
|
-
};
|
|
86675
|
-
email: string;
|
|
86676
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
86677
|
-
loggedOutAt?: Date | undefined;
|
|
86678
|
-
};
|
|
86679
|
-
}>;
|
|
86680
|
-
}
|
|
86681
|
-
|
|
86682
86887
|
declare class WorkspaceInvitationsEndpoint {
|
|
86683
86888
|
private readonly requestExecutor;
|
|
86684
86889
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -87733,6 +87938,280 @@ declare class WorkspacesEndpoint {
|
|
|
87733
87938
|
subscription(workspaceId: string): Promise<any>;
|
|
87734
87939
|
}
|
|
87735
87940
|
|
|
87941
|
+
declare class UsersEndpoint {
|
|
87942
|
+
private readonly requestExecutor;
|
|
87943
|
+
constructor(requestExecutor: RequestExecutor);
|
|
87944
|
+
getMe(): Promise<{
|
|
87945
|
+
user: {
|
|
87946
|
+
id: string;
|
|
87947
|
+
createdAt: Date;
|
|
87948
|
+
profile: {
|
|
87949
|
+
name: string;
|
|
87950
|
+
avatar?: string | undefined;
|
|
87951
|
+
nickname?: string | undefined;
|
|
87952
|
+
onboarding?: {
|
|
87953
|
+
companyName?: string | undefined;
|
|
87954
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
87955
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
87956
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
87957
|
+
jobTitle?: string | undefined;
|
|
87958
|
+
phase?: string | undefined;
|
|
87959
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
87960
|
+
designSystemName?: string | undefined;
|
|
87961
|
+
defaultDestination?: string | undefined;
|
|
87962
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
87963
|
+
} | undefined;
|
|
87964
|
+
};
|
|
87965
|
+
email: string;
|
|
87966
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
87967
|
+
loggedOutAt?: Date | undefined;
|
|
87968
|
+
};
|
|
87969
|
+
}>;
|
|
87970
|
+
listWorkspaces(uid: string): Promise<{
|
|
87971
|
+
membership: {
|
|
87972
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
87973
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
87974
|
+
workspace: {
|
|
87975
|
+
id: string;
|
|
87976
|
+
profile: {
|
|
87977
|
+
name: string;
|
|
87978
|
+
color: string;
|
|
87979
|
+
handle: string;
|
|
87980
|
+
avatar?: string | undefined;
|
|
87981
|
+
billingDetails?: {
|
|
87982
|
+
address?: {
|
|
87983
|
+
street1?: string | undefined;
|
|
87984
|
+
street2?: string | undefined;
|
|
87985
|
+
city?: string | undefined;
|
|
87986
|
+
postal?: string | undefined;
|
|
87987
|
+
country?: string | undefined;
|
|
87988
|
+
state?: string | undefined;
|
|
87989
|
+
} | undefined;
|
|
87990
|
+
email?: string | undefined;
|
|
87991
|
+
companyName?: string | undefined;
|
|
87992
|
+
companyId?: string | undefined;
|
|
87993
|
+
notes?: string | undefined;
|
|
87994
|
+
vat?: string | undefined;
|
|
87995
|
+
poNumber?: string | undefined;
|
|
87996
|
+
} | undefined;
|
|
87997
|
+
};
|
|
87998
|
+
subscription: {
|
|
87999
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
88000
|
+
planPriceId: string;
|
|
88001
|
+
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
88002
|
+
seats: number;
|
|
88003
|
+
seatLimit: number;
|
|
88004
|
+
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
88005
|
+
card?: {
|
|
88006
|
+
cardId?: string | null | undefined;
|
|
88007
|
+
last4?: string | null | undefined;
|
|
88008
|
+
expiryMonth?: string | null | undefined;
|
|
88009
|
+
expiryYear?: string | null | undefined;
|
|
88010
|
+
brand?: string | null | undefined;
|
|
88011
|
+
name?: string | null | undefined;
|
|
88012
|
+
} | undefined;
|
|
88013
|
+
amount?: number | null | undefined;
|
|
88014
|
+
stripeProductDescription?: string | undefined;
|
|
88015
|
+
isPricePerCreator?: boolean | undefined;
|
|
88016
|
+
isTrial?: boolean | undefined;
|
|
88017
|
+
legacyVersion?: string | undefined;
|
|
88018
|
+
stripeProductFeatures?: string[] | undefined;
|
|
88019
|
+
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
88020
|
+
stripeSubscriptionId?: string | null | undefined;
|
|
88021
|
+
stripeCustomerId?: string | null | undefined;
|
|
88022
|
+
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
88023
|
+
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
88024
|
+
featuresSummary?: {
|
|
88025
|
+
designSystems: {
|
|
88026
|
+
max: number;
|
|
88027
|
+
errorMessage: string;
|
|
88028
|
+
errorReason: string;
|
|
88029
|
+
};
|
|
88030
|
+
designSystemSources: {
|
|
88031
|
+
max: number;
|
|
88032
|
+
errorMessage: string;
|
|
88033
|
+
errorReason: string;
|
|
88034
|
+
noImportJobsErrorMessage: string;
|
|
88035
|
+
noImportJobsErrorReason: string;
|
|
88036
|
+
};
|
|
88037
|
+
designSystemVersions: {
|
|
88038
|
+
max: number;
|
|
88039
|
+
errorMessage: string;
|
|
88040
|
+
errorReason: string;
|
|
88041
|
+
};
|
|
88042
|
+
themes: {
|
|
88043
|
+
max: number;
|
|
88044
|
+
errorMessage: string;
|
|
88045
|
+
errorReason: string;
|
|
88046
|
+
};
|
|
88047
|
+
brands: {
|
|
88048
|
+
max: number;
|
|
88049
|
+
errorMessage: string;
|
|
88050
|
+
errorReason: string;
|
|
88051
|
+
};
|
|
88052
|
+
codegenSchedules: {
|
|
88053
|
+
max: number;
|
|
88054
|
+
errorMessage: string;
|
|
88055
|
+
errorReason: string;
|
|
88056
|
+
};
|
|
88057
|
+
publicDocumentation: {
|
|
88058
|
+
errorMessage: string;
|
|
88059
|
+
errorReason: string;
|
|
88060
|
+
enabled: boolean;
|
|
88061
|
+
};
|
|
88062
|
+
customDocumentationUrl: {
|
|
88063
|
+
errorMessage: string;
|
|
88064
|
+
errorReason: string;
|
|
88065
|
+
enabled: boolean;
|
|
88066
|
+
};
|
|
88067
|
+
customDocumentationViewButton: {
|
|
88068
|
+
errorMessage: string;
|
|
88069
|
+
errorReason: string;
|
|
88070
|
+
enabled: boolean;
|
|
88071
|
+
};
|
|
88072
|
+
designSystemSourceAutoImport: {
|
|
88073
|
+
errorMessage: string;
|
|
88074
|
+
errorReason: string;
|
|
88075
|
+
enabled: boolean;
|
|
88076
|
+
};
|
|
88077
|
+
designSystemSlug: {
|
|
88078
|
+
errorMessage: string;
|
|
88079
|
+
errorReason: string;
|
|
88080
|
+
enabled: boolean;
|
|
88081
|
+
};
|
|
88082
|
+
ipWhitelisting: {
|
|
88083
|
+
errorMessage: string;
|
|
88084
|
+
errorReason: string;
|
|
88085
|
+
enabled: boolean;
|
|
88086
|
+
};
|
|
88087
|
+
npmRegistry: {
|
|
88088
|
+
errorMessage: string;
|
|
88089
|
+
errorReason: string;
|
|
88090
|
+
enabled: boolean;
|
|
88091
|
+
};
|
|
88092
|
+
sso: {
|
|
88093
|
+
errorMessage: string;
|
|
88094
|
+
errorReason: string;
|
|
88095
|
+
enabled: boolean;
|
|
88096
|
+
};
|
|
88097
|
+
workspacePaidSeats: {
|
|
88098
|
+
max: number;
|
|
88099
|
+
errorMessage: string;
|
|
88100
|
+
errorReason: string;
|
|
88101
|
+
};
|
|
88102
|
+
workspaceViewers: {
|
|
88103
|
+
max: number;
|
|
88104
|
+
errorMessage: string;
|
|
88105
|
+
errorReason: string;
|
|
88106
|
+
};
|
|
88107
|
+
customDocumentationExporter: {
|
|
88108
|
+
errorMessage: string;
|
|
88109
|
+
errorReason: string;
|
|
88110
|
+
enabled: boolean;
|
|
88111
|
+
};
|
|
88112
|
+
protectedPages: {
|
|
88113
|
+
errorMessage: string;
|
|
88114
|
+
errorReason: string;
|
|
88115
|
+
enabled: boolean;
|
|
88116
|
+
};
|
|
88117
|
+
approvals: {
|
|
88118
|
+
errorMessage: string;
|
|
88119
|
+
errorReason: string;
|
|
88120
|
+
enabled: boolean;
|
|
88121
|
+
};
|
|
88122
|
+
selectivePublishing: {
|
|
88123
|
+
errorMessage: string;
|
|
88124
|
+
errorReason: string;
|
|
88125
|
+
enabled: boolean;
|
|
88126
|
+
};
|
|
88127
|
+
designSystemAccessModes: {
|
|
88128
|
+
errorMessage: string;
|
|
88129
|
+
errorReason: string;
|
|
88130
|
+
enabled: boolean;
|
|
88131
|
+
};
|
|
88132
|
+
designSystemRoles: {
|
|
88133
|
+
errorMessage: string;
|
|
88134
|
+
errorReason: string;
|
|
88135
|
+
enabled: boolean;
|
|
88136
|
+
};
|
|
88137
|
+
} | undefined;
|
|
88138
|
+
stripeSubscriptionMainItemId?: string | undefined;
|
|
88139
|
+
currentPeriodStart?: string | undefined;
|
|
88140
|
+
currentPeriodEnd?: string | undefined;
|
|
88141
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
88142
|
+
cancelAt?: string | null | undefined;
|
|
88143
|
+
billingType?: "Auto" | "Invoice" | undefined;
|
|
88144
|
+
daysUntilDue?: number | undefined;
|
|
88145
|
+
};
|
|
88146
|
+
npmRegistry?: {
|
|
88147
|
+
enabledScopes: string[];
|
|
88148
|
+
bypassProxy: boolean;
|
|
88149
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
88150
|
+
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
88151
|
+
registryUrl: string;
|
|
88152
|
+
proxyUrl: string;
|
|
88153
|
+
customRegistryUrl?: string | undefined;
|
|
88154
|
+
accessToken?: string | undefined;
|
|
88155
|
+
username?: string | undefined;
|
|
88156
|
+
password?: string | undefined;
|
|
88157
|
+
} | undefined;
|
|
88158
|
+
};
|
|
88159
|
+
}[];
|
|
88160
|
+
}>;
|
|
88161
|
+
delete(uid: string): Promise<{
|
|
88162
|
+
user: {
|
|
88163
|
+
id: string;
|
|
88164
|
+
createdAt: Date;
|
|
88165
|
+
profile: {
|
|
88166
|
+
name: string;
|
|
88167
|
+
avatar?: string | undefined;
|
|
88168
|
+
nickname?: string | undefined;
|
|
88169
|
+
onboarding?: {
|
|
88170
|
+
companyName?: string | undefined;
|
|
88171
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
88172
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
88173
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
88174
|
+
jobTitle?: string | undefined;
|
|
88175
|
+
phase?: string | undefined;
|
|
88176
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
88177
|
+
designSystemName?: string | undefined;
|
|
88178
|
+
defaultDestination?: string | undefined;
|
|
88179
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
88180
|
+
} | undefined;
|
|
88181
|
+
};
|
|
88182
|
+
email: string;
|
|
88183
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
88184
|
+
loggedOutAt?: Date | undefined;
|
|
88185
|
+
};
|
|
88186
|
+
}>;
|
|
88187
|
+
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
88188
|
+
user: {
|
|
88189
|
+
id: string;
|
|
88190
|
+
createdAt: Date;
|
|
88191
|
+
profile: {
|
|
88192
|
+
name: string;
|
|
88193
|
+
avatar?: string | undefined;
|
|
88194
|
+
nickname?: string | undefined;
|
|
88195
|
+
onboarding?: {
|
|
88196
|
+
companyName?: string | undefined;
|
|
88197
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
88198
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
88199
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
88200
|
+
jobTitle?: string | undefined;
|
|
88201
|
+
phase?: string | undefined;
|
|
88202
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
88203
|
+
designSystemName?: string | undefined;
|
|
88204
|
+
defaultDestination?: string | undefined;
|
|
88205
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
88206
|
+
} | undefined;
|
|
88207
|
+
};
|
|
88208
|
+
email: string;
|
|
88209
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
88210
|
+
loggedOutAt?: Date | undefined;
|
|
88211
|
+
};
|
|
88212
|
+
}>;
|
|
88213
|
+
}
|
|
88214
|
+
|
|
87736
88215
|
type SupernovaApiClientConfig = {
|
|
87737
88216
|
host: string;
|
|
87738
88217
|
accessToken: string;
|
|
@@ -90298,4 +90777,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
90298
90777
|
|
|
90299
90778
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
90300
90779
|
|
|
90301
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, 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, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, 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, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, 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, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
90780
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, 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, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, 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, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, 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, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|