@supernova-studio/client 0.54.5 → 0.54.6
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 +304 -203
- package/dist/index.d.ts +304 -203
- package/dist/index.js +44 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1316 -1274
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/index.ts +1 -0
- package/src/api/dto/design-systems/members.ts +32 -0
- package/src/api/dto/users/index.ts +2 -1
- package/src/api/dto/users/{profile/update.ts → update.ts} +2 -1
- package/src/api/dto/users/user.ts +22 -0
- package/src/api/dto/users/profile/index.ts +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -5003,6 +5003,52 @@ declare const DTOExporterPropertyListResponse: z.ZodObject<{
|
|
|
5003
5003
|
}>;
|
|
5004
5004
|
type DTOExporterPropertyListResponse = z.infer<typeof DTOExporterPropertyListResponse>;
|
|
5005
5005
|
|
|
5006
|
+
declare const DTODesignSystemMember: z.ZodObject<{
|
|
5007
|
+
userId: z.ZodString;
|
|
5008
|
+
}, "strip", z.ZodTypeAny, {
|
|
5009
|
+
userId: string;
|
|
5010
|
+
}, {
|
|
5011
|
+
userId: string;
|
|
5012
|
+
}>;
|
|
5013
|
+
type DTODesignSystemMember = z.infer<typeof DTODesignSystemMember>;
|
|
5014
|
+
declare const DTODesignSystemMemberListResponse: z.ZodObject<{
|
|
5015
|
+
members: z.ZodArray<z.ZodObject<{
|
|
5016
|
+
userId: z.ZodString;
|
|
5017
|
+
}, "strip", z.ZodTypeAny, {
|
|
5018
|
+
userId: string;
|
|
5019
|
+
}, {
|
|
5020
|
+
userId: string;
|
|
5021
|
+
}>, "many">;
|
|
5022
|
+
}, "strip", z.ZodTypeAny, {
|
|
5023
|
+
members: {
|
|
5024
|
+
userId: string;
|
|
5025
|
+
}[];
|
|
5026
|
+
}, {
|
|
5027
|
+
members: {
|
|
5028
|
+
userId: string;
|
|
5029
|
+
}[];
|
|
5030
|
+
}>;
|
|
5031
|
+
type DTODesignSystemMemberListResponse = z.infer<typeof DTODesignSystemMemberListResponse>;
|
|
5032
|
+
declare const DTODesignSystemMembersUpdateResponse: z.ZodObject<{
|
|
5033
|
+
ok: z.ZodLiteral<true>;
|
|
5034
|
+
}, "strip", z.ZodTypeAny, {
|
|
5035
|
+
ok: true;
|
|
5036
|
+
}, {
|
|
5037
|
+
ok: true;
|
|
5038
|
+
}>;
|
|
5039
|
+
type DTODesignSystemMembersUpdateResponse = z.infer<typeof DTODesignSystemMembersUpdateResponse>;
|
|
5040
|
+
declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
|
|
5041
|
+
inviteUserIds: z.ZodArray<z.ZodString, "many">;
|
|
5042
|
+
removeUserIds: z.ZodArray<z.ZodString, "many">;
|
|
5043
|
+
}, "strip", z.ZodTypeAny, {
|
|
5044
|
+
inviteUserIds: string[];
|
|
5045
|
+
removeUserIds: string[];
|
|
5046
|
+
}, {
|
|
5047
|
+
inviteUserIds: string[];
|
|
5048
|
+
removeUserIds: string[];
|
|
5049
|
+
}>;
|
|
5050
|
+
type DTODesignSystemMembersUpdatePayload = z.infer<typeof DTODesignSystemMembersUpdatePayload>;
|
|
5051
|
+
|
|
5006
5052
|
declare const VersionSQSPayload: z.ZodObject<{
|
|
5007
5053
|
jobId: z.ZodString;
|
|
5008
5054
|
designSystemId: z.ZodString;
|
|
@@ -8051,24 +8097,24 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8051
8097
|
projectId: string;
|
|
8052
8098
|
repositoryId: string;
|
|
8053
8099
|
url?: string | undefined;
|
|
8100
|
+
userId?: number | undefined;
|
|
8054
8101
|
credentialId?: string | undefined;
|
|
8055
8102
|
relativePath?: string | undefined;
|
|
8056
8103
|
commitAuthorName?: string | undefined;
|
|
8057
8104
|
commitAuthorEmail?: string | undefined;
|
|
8058
8105
|
connectionId?: string | undefined;
|
|
8059
|
-
userId?: number | undefined;
|
|
8060
8106
|
}, {
|
|
8061
8107
|
branch: string;
|
|
8062
8108
|
organizationId: string;
|
|
8063
8109
|
projectId: string;
|
|
8064
8110
|
repositoryId: string;
|
|
8065
8111
|
url?: string | null | undefined;
|
|
8112
|
+
userId?: number | null | undefined;
|
|
8066
8113
|
credentialId?: string | undefined;
|
|
8067
8114
|
relativePath?: string | null | undefined;
|
|
8068
8115
|
commitAuthorName?: string | null | undefined;
|
|
8069
8116
|
commitAuthorEmail?: string | null | undefined;
|
|
8070
8117
|
connectionId?: string | null | undefined;
|
|
8071
|
-
userId?: number | null | undefined;
|
|
8072
8118
|
}>>;
|
|
8073
8119
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
8074
8120
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -8086,23 +8132,23 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8086
8132
|
workspaceSlug: string;
|
|
8087
8133
|
projectKey: string;
|
|
8088
8134
|
repoSlug: string;
|
|
8135
|
+
userId?: number | undefined;
|
|
8089
8136
|
credentialId?: string | undefined;
|
|
8090
8137
|
relativePath?: string | undefined;
|
|
8091
8138
|
commitAuthorName?: string | undefined;
|
|
8092
8139
|
commitAuthorEmail?: string | undefined;
|
|
8093
8140
|
connectionId?: string | undefined;
|
|
8094
|
-
userId?: number | undefined;
|
|
8095
8141
|
}, {
|
|
8096
8142
|
branch: string;
|
|
8097
8143
|
workspaceSlug: string;
|
|
8098
8144
|
projectKey: string;
|
|
8099
8145
|
repoSlug: string;
|
|
8146
|
+
userId?: number | null | undefined;
|
|
8100
8147
|
credentialId?: string | undefined;
|
|
8101
8148
|
relativePath?: string | null | undefined;
|
|
8102
8149
|
commitAuthorName?: string | null | undefined;
|
|
8103
8150
|
commitAuthorEmail?: string | null | undefined;
|
|
8104
8151
|
connectionId?: string | null | undefined;
|
|
8105
|
-
userId?: number | null | undefined;
|
|
8106
8152
|
}>>;
|
|
8107
8153
|
github: z.ZodOptional<z.ZodObject<{
|
|
8108
8154
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -8116,21 +8162,21 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8116
8162
|
}, "strip", z.ZodTypeAny, {
|
|
8117
8163
|
url: string;
|
|
8118
8164
|
branch: string;
|
|
8165
|
+
userId?: number | undefined;
|
|
8119
8166
|
credentialId?: string | undefined;
|
|
8120
8167
|
relativePath?: string | undefined;
|
|
8121
8168
|
commitAuthorName?: string | undefined;
|
|
8122
8169
|
commitAuthorEmail?: string | undefined;
|
|
8123
8170
|
connectionId?: string | undefined;
|
|
8124
|
-
userId?: number | undefined;
|
|
8125
8171
|
}, {
|
|
8126
8172
|
url: string;
|
|
8127
8173
|
branch: string;
|
|
8174
|
+
userId?: number | null | undefined;
|
|
8128
8175
|
credentialId?: string | undefined;
|
|
8129
8176
|
relativePath?: string | null | undefined;
|
|
8130
8177
|
commitAuthorName?: string | null | undefined;
|
|
8131
8178
|
commitAuthorEmail?: string | null | undefined;
|
|
8132
8179
|
connectionId?: string | null | undefined;
|
|
8133
|
-
userId?: number | null | undefined;
|
|
8134
8180
|
}>>;
|
|
8135
8181
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
8136
8182
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -8146,22 +8192,22 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8146
8192
|
branch: string;
|
|
8147
8193
|
projectId: string;
|
|
8148
8194
|
url?: string | undefined;
|
|
8195
|
+
userId?: number | undefined;
|
|
8149
8196
|
credentialId?: string | undefined;
|
|
8150
8197
|
relativePath?: string | undefined;
|
|
8151
8198
|
commitAuthorName?: string | undefined;
|
|
8152
8199
|
commitAuthorEmail?: string | undefined;
|
|
8153
8200
|
connectionId?: string | undefined;
|
|
8154
|
-
userId?: number | undefined;
|
|
8155
8201
|
}, {
|
|
8156
8202
|
branch: string;
|
|
8157
8203
|
projectId: string;
|
|
8158
8204
|
url?: string | null | undefined;
|
|
8205
|
+
userId?: number | null | undefined;
|
|
8159
8206
|
credentialId?: string | undefined;
|
|
8160
8207
|
relativePath?: string | null | undefined;
|
|
8161
8208
|
commitAuthorName?: string | null | undefined;
|
|
8162
8209
|
commitAuthorEmail?: string | null | undefined;
|
|
8163
8210
|
connectionId?: string | null | undefined;
|
|
8164
|
-
userId?: number | null | undefined;
|
|
8165
8211
|
}>>;
|
|
8166
8212
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
8167
8213
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -8200,45 +8246,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8200
8246
|
projectId: string;
|
|
8201
8247
|
repositoryId: string;
|
|
8202
8248
|
url?: string | undefined;
|
|
8249
|
+
userId?: number | undefined;
|
|
8203
8250
|
credentialId?: string | undefined;
|
|
8204
8251
|
relativePath?: string | undefined;
|
|
8205
8252
|
commitAuthorName?: string | undefined;
|
|
8206
8253
|
commitAuthorEmail?: string | undefined;
|
|
8207
8254
|
connectionId?: string | undefined;
|
|
8208
|
-
userId?: number | undefined;
|
|
8209
8255
|
} | undefined;
|
|
8210
8256
|
bitbucket?: {
|
|
8211
8257
|
branch: string;
|
|
8212
8258
|
workspaceSlug: string;
|
|
8213
8259
|
projectKey: string;
|
|
8214
8260
|
repoSlug: string;
|
|
8261
|
+
userId?: number | undefined;
|
|
8215
8262
|
credentialId?: string | undefined;
|
|
8216
8263
|
relativePath?: string | undefined;
|
|
8217
8264
|
commitAuthorName?: string | undefined;
|
|
8218
8265
|
commitAuthorEmail?: string | undefined;
|
|
8219
8266
|
connectionId?: string | undefined;
|
|
8220
|
-
userId?: number | undefined;
|
|
8221
8267
|
} | undefined;
|
|
8222
8268
|
github?: {
|
|
8223
8269
|
url: string;
|
|
8224
8270
|
branch: string;
|
|
8271
|
+
userId?: number | undefined;
|
|
8225
8272
|
credentialId?: string | undefined;
|
|
8226
8273
|
relativePath?: string | undefined;
|
|
8227
8274
|
commitAuthorName?: string | undefined;
|
|
8228
8275
|
commitAuthorEmail?: string | undefined;
|
|
8229
8276
|
connectionId?: string | undefined;
|
|
8230
|
-
userId?: number | undefined;
|
|
8231
8277
|
} | undefined;
|
|
8232
8278
|
gitlab?: {
|
|
8233
8279
|
branch: string;
|
|
8234
8280
|
projectId: string;
|
|
8235
8281
|
url?: string | undefined;
|
|
8282
|
+
userId?: number | undefined;
|
|
8236
8283
|
credentialId?: string | undefined;
|
|
8237
8284
|
relativePath?: string | undefined;
|
|
8238
8285
|
commitAuthorName?: string | undefined;
|
|
8239
8286
|
commitAuthorEmail?: string | undefined;
|
|
8240
8287
|
connectionId?: string | undefined;
|
|
8241
|
-
userId?: number | undefined;
|
|
8242
8288
|
} | undefined;
|
|
8243
8289
|
documentation?: {
|
|
8244
8290
|
environment: "Live" | "Preview";
|
|
@@ -8256,45 +8302,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8256
8302
|
projectId: string;
|
|
8257
8303
|
repositoryId: string;
|
|
8258
8304
|
url?: string | null | undefined;
|
|
8305
|
+
userId?: number | null | undefined;
|
|
8259
8306
|
credentialId?: string | undefined;
|
|
8260
8307
|
relativePath?: string | null | undefined;
|
|
8261
8308
|
commitAuthorName?: string | null | undefined;
|
|
8262
8309
|
commitAuthorEmail?: string | null | undefined;
|
|
8263
8310
|
connectionId?: string | null | undefined;
|
|
8264
|
-
userId?: number | null | undefined;
|
|
8265
8311
|
} | undefined;
|
|
8266
8312
|
bitbucket?: {
|
|
8267
8313
|
branch: string;
|
|
8268
8314
|
workspaceSlug: string;
|
|
8269
8315
|
projectKey: string;
|
|
8270
8316
|
repoSlug: string;
|
|
8317
|
+
userId?: number | null | undefined;
|
|
8271
8318
|
credentialId?: string | undefined;
|
|
8272
8319
|
relativePath?: string | null | undefined;
|
|
8273
8320
|
commitAuthorName?: string | null | undefined;
|
|
8274
8321
|
commitAuthorEmail?: string | null | undefined;
|
|
8275
8322
|
connectionId?: string | null | undefined;
|
|
8276
|
-
userId?: number | null | undefined;
|
|
8277
8323
|
} | undefined;
|
|
8278
8324
|
github?: {
|
|
8279
8325
|
url: string;
|
|
8280
8326
|
branch: string;
|
|
8327
|
+
userId?: number | null | undefined;
|
|
8281
8328
|
credentialId?: string | undefined;
|
|
8282
8329
|
relativePath?: string | null | undefined;
|
|
8283
8330
|
commitAuthorName?: string | null | undefined;
|
|
8284
8331
|
commitAuthorEmail?: string | null | undefined;
|
|
8285
8332
|
connectionId?: string | null | undefined;
|
|
8286
|
-
userId?: number | null | undefined;
|
|
8287
8333
|
} | undefined;
|
|
8288
8334
|
gitlab?: {
|
|
8289
8335
|
branch: string;
|
|
8290
8336
|
projectId: string;
|
|
8291
8337
|
url?: string | null | undefined;
|
|
8338
|
+
userId?: number | null | undefined;
|
|
8292
8339
|
credentialId?: string | undefined;
|
|
8293
8340
|
relativePath?: string | null | undefined;
|
|
8294
8341
|
commitAuthorName?: string | null | undefined;
|
|
8295
8342
|
commitAuthorEmail?: string | null | undefined;
|
|
8296
8343
|
connectionId?: string | null | undefined;
|
|
8297
|
-
userId?: number | null | undefined;
|
|
8298
8344
|
} | undefined;
|
|
8299
8345
|
documentation?: {
|
|
8300
8346
|
environment: "Live" | "Preview";
|
|
@@ -8490,45 +8536,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8490
8536
|
projectId: string;
|
|
8491
8537
|
repositoryId: string;
|
|
8492
8538
|
url?: string | undefined;
|
|
8539
|
+
userId?: number | undefined;
|
|
8493
8540
|
credentialId?: string | undefined;
|
|
8494
8541
|
relativePath?: string | undefined;
|
|
8495
8542
|
commitAuthorName?: string | undefined;
|
|
8496
8543
|
commitAuthorEmail?: string | undefined;
|
|
8497
8544
|
connectionId?: string | undefined;
|
|
8498
|
-
userId?: number | undefined;
|
|
8499
8545
|
} | undefined;
|
|
8500
8546
|
bitbucket?: {
|
|
8501
8547
|
branch: string;
|
|
8502
8548
|
workspaceSlug: string;
|
|
8503
8549
|
projectKey: string;
|
|
8504
8550
|
repoSlug: string;
|
|
8551
|
+
userId?: number | undefined;
|
|
8505
8552
|
credentialId?: string | undefined;
|
|
8506
8553
|
relativePath?: string | undefined;
|
|
8507
8554
|
commitAuthorName?: string | undefined;
|
|
8508
8555
|
commitAuthorEmail?: string | undefined;
|
|
8509
8556
|
connectionId?: string | undefined;
|
|
8510
|
-
userId?: number | undefined;
|
|
8511
8557
|
} | undefined;
|
|
8512
8558
|
github?: {
|
|
8513
8559
|
url: string;
|
|
8514
8560
|
branch: string;
|
|
8561
|
+
userId?: number | undefined;
|
|
8515
8562
|
credentialId?: string | undefined;
|
|
8516
8563
|
relativePath?: string | undefined;
|
|
8517
8564
|
commitAuthorName?: string | undefined;
|
|
8518
8565
|
commitAuthorEmail?: string | undefined;
|
|
8519
8566
|
connectionId?: string | undefined;
|
|
8520
|
-
userId?: number | undefined;
|
|
8521
8567
|
} | undefined;
|
|
8522
8568
|
gitlab?: {
|
|
8523
8569
|
branch: string;
|
|
8524
8570
|
projectId: string;
|
|
8525
8571
|
url?: string | undefined;
|
|
8572
|
+
userId?: number | undefined;
|
|
8526
8573
|
credentialId?: string | undefined;
|
|
8527
8574
|
relativePath?: string | undefined;
|
|
8528
8575
|
commitAuthorName?: string | undefined;
|
|
8529
8576
|
commitAuthorEmail?: string | undefined;
|
|
8530
8577
|
connectionId?: string | undefined;
|
|
8531
|
-
userId?: number | undefined;
|
|
8532
8578
|
} | undefined;
|
|
8533
8579
|
documentation?: {
|
|
8534
8580
|
environment: "Live" | "Preview";
|
|
@@ -8610,45 +8656,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8610
8656
|
projectId: string;
|
|
8611
8657
|
repositoryId: string;
|
|
8612
8658
|
url?: string | null | undefined;
|
|
8659
|
+
userId?: number | null | undefined;
|
|
8613
8660
|
credentialId?: string | undefined;
|
|
8614
8661
|
relativePath?: string | null | undefined;
|
|
8615
8662
|
commitAuthorName?: string | null | undefined;
|
|
8616
8663
|
commitAuthorEmail?: string | null | undefined;
|
|
8617
8664
|
connectionId?: string | null | undefined;
|
|
8618
|
-
userId?: number | null | undefined;
|
|
8619
8665
|
} | undefined;
|
|
8620
8666
|
bitbucket?: {
|
|
8621
8667
|
branch: string;
|
|
8622
8668
|
workspaceSlug: string;
|
|
8623
8669
|
projectKey: string;
|
|
8624
8670
|
repoSlug: string;
|
|
8671
|
+
userId?: number | null | undefined;
|
|
8625
8672
|
credentialId?: string | undefined;
|
|
8626
8673
|
relativePath?: string | null | undefined;
|
|
8627
8674
|
commitAuthorName?: string | null | undefined;
|
|
8628
8675
|
commitAuthorEmail?: string | null | undefined;
|
|
8629
8676
|
connectionId?: string | null | undefined;
|
|
8630
|
-
userId?: number | null | undefined;
|
|
8631
8677
|
} | undefined;
|
|
8632
8678
|
github?: {
|
|
8633
8679
|
url: string;
|
|
8634
8680
|
branch: string;
|
|
8681
|
+
userId?: number | null | undefined;
|
|
8635
8682
|
credentialId?: string | undefined;
|
|
8636
8683
|
relativePath?: string | null | undefined;
|
|
8637
8684
|
commitAuthorName?: string | null | undefined;
|
|
8638
8685
|
commitAuthorEmail?: string | null | undefined;
|
|
8639
8686
|
connectionId?: string | null | undefined;
|
|
8640
|
-
userId?: number | null | undefined;
|
|
8641
8687
|
} | undefined;
|
|
8642
8688
|
gitlab?: {
|
|
8643
8689
|
branch: string;
|
|
8644
8690
|
projectId: string;
|
|
8645
8691
|
url?: string | null | undefined;
|
|
8692
|
+
userId?: number | null | undefined;
|
|
8646
8693
|
credentialId?: string | undefined;
|
|
8647
8694
|
relativePath?: string | null | undefined;
|
|
8648
8695
|
commitAuthorName?: string | null | undefined;
|
|
8649
8696
|
commitAuthorEmail?: string | null | undefined;
|
|
8650
8697
|
connectionId?: string | null | undefined;
|
|
8651
|
-
userId?: number | null | undefined;
|
|
8652
8698
|
} | undefined;
|
|
8653
8699
|
documentation?: {
|
|
8654
8700
|
environment: "Live" | "Preview";
|
|
@@ -8732,45 +8778,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8732
8778
|
projectId: string;
|
|
8733
8779
|
repositoryId: string;
|
|
8734
8780
|
url?: string | undefined;
|
|
8781
|
+
userId?: number | undefined;
|
|
8735
8782
|
credentialId?: string | undefined;
|
|
8736
8783
|
relativePath?: string | undefined;
|
|
8737
8784
|
commitAuthorName?: string | undefined;
|
|
8738
8785
|
commitAuthorEmail?: string | undefined;
|
|
8739
8786
|
connectionId?: string | undefined;
|
|
8740
|
-
userId?: number | undefined;
|
|
8741
8787
|
} | undefined;
|
|
8742
8788
|
bitbucket?: {
|
|
8743
8789
|
branch: string;
|
|
8744
8790
|
workspaceSlug: string;
|
|
8745
8791
|
projectKey: string;
|
|
8746
8792
|
repoSlug: string;
|
|
8793
|
+
userId?: number | undefined;
|
|
8747
8794
|
credentialId?: string | undefined;
|
|
8748
8795
|
relativePath?: string | undefined;
|
|
8749
8796
|
commitAuthorName?: string | undefined;
|
|
8750
8797
|
commitAuthorEmail?: string | undefined;
|
|
8751
8798
|
connectionId?: string | undefined;
|
|
8752
|
-
userId?: number | undefined;
|
|
8753
8799
|
} | undefined;
|
|
8754
8800
|
github?: {
|
|
8755
8801
|
url: string;
|
|
8756
8802
|
branch: string;
|
|
8803
|
+
userId?: number | undefined;
|
|
8757
8804
|
credentialId?: string | undefined;
|
|
8758
8805
|
relativePath?: string | undefined;
|
|
8759
8806
|
commitAuthorName?: string | undefined;
|
|
8760
8807
|
commitAuthorEmail?: string | undefined;
|
|
8761
8808
|
connectionId?: string | undefined;
|
|
8762
|
-
userId?: number | undefined;
|
|
8763
8809
|
} | undefined;
|
|
8764
8810
|
gitlab?: {
|
|
8765
8811
|
branch: string;
|
|
8766
8812
|
projectId: string;
|
|
8767
8813
|
url?: string | undefined;
|
|
8814
|
+
userId?: number | undefined;
|
|
8768
8815
|
credentialId?: string | undefined;
|
|
8769
8816
|
relativePath?: string | undefined;
|
|
8770
8817
|
commitAuthorName?: string | undefined;
|
|
8771
8818
|
commitAuthorEmail?: string | undefined;
|
|
8772
8819
|
connectionId?: string | undefined;
|
|
8773
|
-
userId?: number | undefined;
|
|
8774
8820
|
} | undefined;
|
|
8775
8821
|
documentation?: {
|
|
8776
8822
|
environment: "Live" | "Preview";
|
|
@@ -8854,45 +8900,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8854
8900
|
projectId: string;
|
|
8855
8901
|
repositoryId: string;
|
|
8856
8902
|
url?: string | null | undefined;
|
|
8903
|
+
userId?: number | null | undefined;
|
|
8857
8904
|
credentialId?: string | undefined;
|
|
8858
8905
|
relativePath?: string | null | undefined;
|
|
8859
8906
|
commitAuthorName?: string | null | undefined;
|
|
8860
8907
|
commitAuthorEmail?: string | null | undefined;
|
|
8861
8908
|
connectionId?: string | null | undefined;
|
|
8862
|
-
userId?: number | null | undefined;
|
|
8863
8909
|
} | undefined;
|
|
8864
8910
|
bitbucket?: {
|
|
8865
8911
|
branch: string;
|
|
8866
8912
|
workspaceSlug: string;
|
|
8867
8913
|
projectKey: string;
|
|
8868
8914
|
repoSlug: string;
|
|
8915
|
+
userId?: number | null | undefined;
|
|
8869
8916
|
credentialId?: string | undefined;
|
|
8870
8917
|
relativePath?: string | null | undefined;
|
|
8871
8918
|
commitAuthorName?: string | null | undefined;
|
|
8872
8919
|
commitAuthorEmail?: string | null | undefined;
|
|
8873
8920
|
connectionId?: string | null | undefined;
|
|
8874
|
-
userId?: number | null | undefined;
|
|
8875
8921
|
} | undefined;
|
|
8876
8922
|
github?: {
|
|
8877
8923
|
url: string;
|
|
8878
8924
|
branch: string;
|
|
8925
|
+
userId?: number | null | undefined;
|
|
8879
8926
|
credentialId?: string | undefined;
|
|
8880
8927
|
relativePath?: string | null | undefined;
|
|
8881
8928
|
commitAuthorName?: string | null | undefined;
|
|
8882
8929
|
commitAuthorEmail?: string | null | undefined;
|
|
8883
8930
|
connectionId?: string | null | undefined;
|
|
8884
|
-
userId?: number | null | undefined;
|
|
8885
8931
|
} | undefined;
|
|
8886
8932
|
gitlab?: {
|
|
8887
8933
|
branch: string;
|
|
8888
8934
|
projectId: string;
|
|
8889
8935
|
url?: string | null | undefined;
|
|
8936
|
+
userId?: number | null | undefined;
|
|
8890
8937
|
credentialId?: string | undefined;
|
|
8891
8938
|
relativePath?: string | null | undefined;
|
|
8892
8939
|
commitAuthorName?: string | null | undefined;
|
|
8893
8940
|
commitAuthorEmail?: string | null | undefined;
|
|
8894
8941
|
connectionId?: string | null | undefined;
|
|
8895
|
-
userId?: number | null | undefined;
|
|
8896
8942
|
} | undefined;
|
|
8897
8943
|
documentation?: {
|
|
8898
8944
|
environment: "Live" | "Preview";
|
|
@@ -29236,24 +29282,24 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29236
29282
|
projectId: string;
|
|
29237
29283
|
repositoryId: string;
|
|
29238
29284
|
url?: string | undefined;
|
|
29285
|
+
userId?: number | undefined;
|
|
29239
29286
|
credentialId?: string | undefined;
|
|
29240
29287
|
relativePath?: string | undefined;
|
|
29241
29288
|
commitAuthorName?: string | undefined;
|
|
29242
29289
|
commitAuthorEmail?: string | undefined;
|
|
29243
29290
|
connectionId?: string | undefined;
|
|
29244
|
-
userId?: number | undefined;
|
|
29245
29291
|
}, {
|
|
29246
29292
|
branch: string;
|
|
29247
29293
|
organizationId: string;
|
|
29248
29294
|
projectId: string;
|
|
29249
29295
|
repositoryId: string;
|
|
29250
29296
|
url?: string | null | undefined;
|
|
29297
|
+
userId?: number | null | undefined;
|
|
29251
29298
|
credentialId?: string | undefined;
|
|
29252
29299
|
relativePath?: string | null | undefined;
|
|
29253
29300
|
commitAuthorName?: string | null | undefined;
|
|
29254
29301
|
commitAuthorEmail?: string | null | undefined;
|
|
29255
29302
|
connectionId?: string | null | undefined;
|
|
29256
|
-
userId?: number | null | undefined;
|
|
29257
29303
|
}>>;
|
|
29258
29304
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
29259
29305
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29271,23 +29317,23 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29271
29317
|
workspaceSlug: string;
|
|
29272
29318
|
projectKey: string;
|
|
29273
29319
|
repoSlug: string;
|
|
29320
|
+
userId?: number | undefined;
|
|
29274
29321
|
credentialId?: string | undefined;
|
|
29275
29322
|
relativePath?: string | undefined;
|
|
29276
29323
|
commitAuthorName?: string | undefined;
|
|
29277
29324
|
commitAuthorEmail?: string | undefined;
|
|
29278
29325
|
connectionId?: string | undefined;
|
|
29279
|
-
userId?: number | undefined;
|
|
29280
29326
|
}, {
|
|
29281
29327
|
branch: string;
|
|
29282
29328
|
workspaceSlug: string;
|
|
29283
29329
|
projectKey: string;
|
|
29284
29330
|
repoSlug: string;
|
|
29331
|
+
userId?: number | null | undefined;
|
|
29285
29332
|
credentialId?: string | undefined;
|
|
29286
29333
|
relativePath?: string | null | undefined;
|
|
29287
29334
|
commitAuthorName?: string | null | undefined;
|
|
29288
29335
|
commitAuthorEmail?: string | null | undefined;
|
|
29289
29336
|
connectionId?: string | null | undefined;
|
|
29290
|
-
userId?: number | null | undefined;
|
|
29291
29337
|
}>>;
|
|
29292
29338
|
github: z.ZodOptional<z.ZodObject<{
|
|
29293
29339
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29301,21 +29347,21 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29301
29347
|
}, "strip", z.ZodTypeAny, {
|
|
29302
29348
|
url: string;
|
|
29303
29349
|
branch: string;
|
|
29350
|
+
userId?: number | undefined;
|
|
29304
29351
|
credentialId?: string | undefined;
|
|
29305
29352
|
relativePath?: string | undefined;
|
|
29306
29353
|
commitAuthorName?: string | undefined;
|
|
29307
29354
|
commitAuthorEmail?: string | undefined;
|
|
29308
29355
|
connectionId?: string | undefined;
|
|
29309
|
-
userId?: number | undefined;
|
|
29310
29356
|
}, {
|
|
29311
29357
|
url: string;
|
|
29312
29358
|
branch: string;
|
|
29359
|
+
userId?: number | null | undefined;
|
|
29313
29360
|
credentialId?: string | undefined;
|
|
29314
29361
|
relativePath?: string | null | undefined;
|
|
29315
29362
|
commitAuthorName?: string | null | undefined;
|
|
29316
29363
|
commitAuthorEmail?: string | null | undefined;
|
|
29317
29364
|
connectionId?: string | null | undefined;
|
|
29318
|
-
userId?: number | null | undefined;
|
|
29319
29365
|
}>>;
|
|
29320
29366
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
29321
29367
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29331,22 +29377,22 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29331
29377
|
branch: string;
|
|
29332
29378
|
projectId: string;
|
|
29333
29379
|
url?: string | undefined;
|
|
29380
|
+
userId?: number | undefined;
|
|
29334
29381
|
credentialId?: string | undefined;
|
|
29335
29382
|
relativePath?: string | undefined;
|
|
29336
29383
|
commitAuthorName?: string | undefined;
|
|
29337
29384
|
commitAuthorEmail?: string | undefined;
|
|
29338
29385
|
connectionId?: string | undefined;
|
|
29339
|
-
userId?: number | undefined;
|
|
29340
29386
|
}, {
|
|
29341
29387
|
branch: string;
|
|
29342
29388
|
projectId: string;
|
|
29343
29389
|
url?: string | null | undefined;
|
|
29390
|
+
userId?: number | null | undefined;
|
|
29344
29391
|
credentialId?: string | undefined;
|
|
29345
29392
|
relativePath?: string | null | undefined;
|
|
29346
29393
|
commitAuthorName?: string | null | undefined;
|
|
29347
29394
|
commitAuthorEmail?: string | null | undefined;
|
|
29348
29395
|
connectionId?: string | null | undefined;
|
|
29349
|
-
userId?: number | null | undefined;
|
|
29350
29396
|
}>>;
|
|
29351
29397
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
29352
29398
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -29385,45 +29431,45 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29385
29431
|
projectId: string;
|
|
29386
29432
|
repositoryId: string;
|
|
29387
29433
|
url?: string | undefined;
|
|
29434
|
+
userId?: number | undefined;
|
|
29388
29435
|
credentialId?: string | undefined;
|
|
29389
29436
|
relativePath?: string | undefined;
|
|
29390
29437
|
commitAuthorName?: string | undefined;
|
|
29391
29438
|
commitAuthorEmail?: string | undefined;
|
|
29392
29439
|
connectionId?: string | undefined;
|
|
29393
|
-
userId?: number | undefined;
|
|
29394
29440
|
} | undefined;
|
|
29395
29441
|
bitbucket?: {
|
|
29396
29442
|
branch: string;
|
|
29397
29443
|
workspaceSlug: string;
|
|
29398
29444
|
projectKey: string;
|
|
29399
29445
|
repoSlug: string;
|
|
29446
|
+
userId?: number | undefined;
|
|
29400
29447
|
credentialId?: string | undefined;
|
|
29401
29448
|
relativePath?: string | undefined;
|
|
29402
29449
|
commitAuthorName?: string | undefined;
|
|
29403
29450
|
commitAuthorEmail?: string | undefined;
|
|
29404
29451
|
connectionId?: string | undefined;
|
|
29405
|
-
userId?: number | undefined;
|
|
29406
29452
|
} | undefined;
|
|
29407
29453
|
github?: {
|
|
29408
29454
|
url: string;
|
|
29409
29455
|
branch: string;
|
|
29456
|
+
userId?: number | undefined;
|
|
29410
29457
|
credentialId?: string | undefined;
|
|
29411
29458
|
relativePath?: string | undefined;
|
|
29412
29459
|
commitAuthorName?: string | undefined;
|
|
29413
29460
|
commitAuthorEmail?: string | undefined;
|
|
29414
29461
|
connectionId?: string | undefined;
|
|
29415
|
-
userId?: number | undefined;
|
|
29416
29462
|
} | undefined;
|
|
29417
29463
|
gitlab?: {
|
|
29418
29464
|
branch: string;
|
|
29419
29465
|
projectId: string;
|
|
29420
29466
|
url?: string | undefined;
|
|
29467
|
+
userId?: number | undefined;
|
|
29421
29468
|
credentialId?: string | undefined;
|
|
29422
29469
|
relativePath?: string | undefined;
|
|
29423
29470
|
commitAuthorName?: string | undefined;
|
|
29424
29471
|
commitAuthorEmail?: string | undefined;
|
|
29425
29472
|
connectionId?: string | undefined;
|
|
29426
|
-
userId?: number | undefined;
|
|
29427
29473
|
} | undefined;
|
|
29428
29474
|
documentation?: {
|
|
29429
29475
|
environment: "Live" | "Preview";
|
|
@@ -29441,45 +29487,45 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29441
29487
|
projectId: string;
|
|
29442
29488
|
repositoryId: string;
|
|
29443
29489
|
url?: string | null | undefined;
|
|
29490
|
+
userId?: number | null | undefined;
|
|
29444
29491
|
credentialId?: string | undefined;
|
|
29445
29492
|
relativePath?: string | null | undefined;
|
|
29446
29493
|
commitAuthorName?: string | null | undefined;
|
|
29447
29494
|
commitAuthorEmail?: string | null | undefined;
|
|
29448
29495
|
connectionId?: string | null | undefined;
|
|
29449
|
-
userId?: number | null | undefined;
|
|
29450
29496
|
} | undefined;
|
|
29451
29497
|
bitbucket?: {
|
|
29452
29498
|
branch: string;
|
|
29453
29499
|
workspaceSlug: string;
|
|
29454
29500
|
projectKey: string;
|
|
29455
29501
|
repoSlug: string;
|
|
29502
|
+
userId?: number | null | undefined;
|
|
29456
29503
|
credentialId?: string | undefined;
|
|
29457
29504
|
relativePath?: string | null | undefined;
|
|
29458
29505
|
commitAuthorName?: string | null | undefined;
|
|
29459
29506
|
commitAuthorEmail?: string | null | undefined;
|
|
29460
29507
|
connectionId?: string | null | undefined;
|
|
29461
|
-
userId?: number | null | undefined;
|
|
29462
29508
|
} | undefined;
|
|
29463
29509
|
github?: {
|
|
29464
29510
|
url: string;
|
|
29465
29511
|
branch: string;
|
|
29512
|
+
userId?: number | null | undefined;
|
|
29466
29513
|
credentialId?: string | undefined;
|
|
29467
29514
|
relativePath?: string | null | undefined;
|
|
29468
29515
|
commitAuthorName?: string | null | undefined;
|
|
29469
29516
|
commitAuthorEmail?: string | null | undefined;
|
|
29470
29517
|
connectionId?: string | null | undefined;
|
|
29471
|
-
userId?: number | null | undefined;
|
|
29472
29518
|
} | undefined;
|
|
29473
29519
|
gitlab?: {
|
|
29474
29520
|
branch: string;
|
|
29475
29521
|
projectId: string;
|
|
29476
29522
|
url?: string | null | undefined;
|
|
29523
|
+
userId?: number | null | undefined;
|
|
29477
29524
|
credentialId?: string | undefined;
|
|
29478
29525
|
relativePath?: string | null | undefined;
|
|
29479
29526
|
commitAuthorName?: string | null | undefined;
|
|
29480
29527
|
commitAuthorEmail?: string | null | undefined;
|
|
29481
29528
|
connectionId?: string | null | undefined;
|
|
29482
|
-
userId?: number | null | undefined;
|
|
29483
29529
|
} | undefined;
|
|
29484
29530
|
documentation?: {
|
|
29485
29531
|
environment: "Live" | "Preview";
|
|
@@ -29753,24 +29799,24 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29753
29799
|
projectId: string;
|
|
29754
29800
|
repositoryId: string;
|
|
29755
29801
|
url?: string | undefined;
|
|
29802
|
+
userId?: number | undefined;
|
|
29756
29803
|
credentialId?: string | undefined;
|
|
29757
29804
|
relativePath?: string | undefined;
|
|
29758
29805
|
commitAuthorName?: string | undefined;
|
|
29759
29806
|
commitAuthorEmail?: string | undefined;
|
|
29760
29807
|
connectionId?: string | undefined;
|
|
29761
|
-
userId?: number | undefined;
|
|
29762
29808
|
}, {
|
|
29763
29809
|
branch: string;
|
|
29764
29810
|
organizationId: string;
|
|
29765
29811
|
projectId: string;
|
|
29766
29812
|
repositoryId: string;
|
|
29767
29813
|
url?: string | null | undefined;
|
|
29814
|
+
userId?: number | null | undefined;
|
|
29768
29815
|
credentialId?: string | undefined;
|
|
29769
29816
|
relativePath?: string | null | undefined;
|
|
29770
29817
|
commitAuthorName?: string | null | undefined;
|
|
29771
29818
|
commitAuthorEmail?: string | null | undefined;
|
|
29772
29819
|
connectionId?: string | null | undefined;
|
|
29773
|
-
userId?: number | null | undefined;
|
|
29774
29820
|
}>>;
|
|
29775
29821
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
29776
29822
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29788,23 +29834,23 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29788
29834
|
workspaceSlug: string;
|
|
29789
29835
|
projectKey: string;
|
|
29790
29836
|
repoSlug: string;
|
|
29837
|
+
userId?: number | undefined;
|
|
29791
29838
|
credentialId?: string | undefined;
|
|
29792
29839
|
relativePath?: string | undefined;
|
|
29793
29840
|
commitAuthorName?: string | undefined;
|
|
29794
29841
|
commitAuthorEmail?: string | undefined;
|
|
29795
29842
|
connectionId?: string | undefined;
|
|
29796
|
-
userId?: number | undefined;
|
|
29797
29843
|
}, {
|
|
29798
29844
|
branch: string;
|
|
29799
29845
|
workspaceSlug: string;
|
|
29800
29846
|
projectKey: string;
|
|
29801
29847
|
repoSlug: string;
|
|
29848
|
+
userId?: number | null | undefined;
|
|
29802
29849
|
credentialId?: string | undefined;
|
|
29803
29850
|
relativePath?: string | null | undefined;
|
|
29804
29851
|
commitAuthorName?: string | null | undefined;
|
|
29805
29852
|
commitAuthorEmail?: string | null | undefined;
|
|
29806
29853
|
connectionId?: string | null | undefined;
|
|
29807
|
-
userId?: number | null | undefined;
|
|
29808
29854
|
}>>;
|
|
29809
29855
|
github: z.ZodOptional<z.ZodObject<{
|
|
29810
29856
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29818,21 +29864,21 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29818
29864
|
}, "strip", z.ZodTypeAny, {
|
|
29819
29865
|
url: string;
|
|
29820
29866
|
branch: string;
|
|
29867
|
+
userId?: number | undefined;
|
|
29821
29868
|
credentialId?: string | undefined;
|
|
29822
29869
|
relativePath?: string | undefined;
|
|
29823
29870
|
commitAuthorName?: string | undefined;
|
|
29824
29871
|
commitAuthorEmail?: string | undefined;
|
|
29825
29872
|
connectionId?: string | undefined;
|
|
29826
|
-
userId?: number | undefined;
|
|
29827
29873
|
}, {
|
|
29828
29874
|
url: string;
|
|
29829
29875
|
branch: string;
|
|
29876
|
+
userId?: number | null | undefined;
|
|
29830
29877
|
credentialId?: string | undefined;
|
|
29831
29878
|
relativePath?: string | null | undefined;
|
|
29832
29879
|
commitAuthorName?: string | null | undefined;
|
|
29833
29880
|
commitAuthorEmail?: string | null | undefined;
|
|
29834
29881
|
connectionId?: string | null | undefined;
|
|
29835
|
-
userId?: number | null | undefined;
|
|
29836
29882
|
}>>;
|
|
29837
29883
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
29838
29884
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29848,22 +29894,22 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29848
29894
|
branch: string;
|
|
29849
29895
|
projectId: string;
|
|
29850
29896
|
url?: string | undefined;
|
|
29897
|
+
userId?: number | undefined;
|
|
29851
29898
|
credentialId?: string | undefined;
|
|
29852
29899
|
relativePath?: string | undefined;
|
|
29853
29900
|
commitAuthorName?: string | undefined;
|
|
29854
29901
|
commitAuthorEmail?: string | undefined;
|
|
29855
29902
|
connectionId?: string | undefined;
|
|
29856
|
-
userId?: number | undefined;
|
|
29857
29903
|
}, {
|
|
29858
29904
|
branch: string;
|
|
29859
29905
|
projectId: string;
|
|
29860
29906
|
url?: string | null | undefined;
|
|
29907
|
+
userId?: number | null | undefined;
|
|
29861
29908
|
credentialId?: string | undefined;
|
|
29862
29909
|
relativePath?: string | null | undefined;
|
|
29863
29910
|
commitAuthorName?: string | null | undefined;
|
|
29864
29911
|
commitAuthorEmail?: string | null | undefined;
|
|
29865
29912
|
connectionId?: string | null | undefined;
|
|
29866
|
-
userId?: number | null | undefined;
|
|
29867
29913
|
}>>;
|
|
29868
29914
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
29869
29915
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -29902,45 +29948,45 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29902
29948
|
projectId: string;
|
|
29903
29949
|
repositoryId: string;
|
|
29904
29950
|
url?: string | undefined;
|
|
29951
|
+
userId?: number | undefined;
|
|
29905
29952
|
credentialId?: string | undefined;
|
|
29906
29953
|
relativePath?: string | undefined;
|
|
29907
29954
|
commitAuthorName?: string | undefined;
|
|
29908
29955
|
commitAuthorEmail?: string | undefined;
|
|
29909
29956
|
connectionId?: string | undefined;
|
|
29910
|
-
userId?: number | undefined;
|
|
29911
29957
|
} | undefined;
|
|
29912
29958
|
bitbucket?: {
|
|
29913
29959
|
branch: string;
|
|
29914
29960
|
workspaceSlug: string;
|
|
29915
29961
|
projectKey: string;
|
|
29916
29962
|
repoSlug: string;
|
|
29963
|
+
userId?: number | undefined;
|
|
29917
29964
|
credentialId?: string | undefined;
|
|
29918
29965
|
relativePath?: string | undefined;
|
|
29919
29966
|
commitAuthorName?: string | undefined;
|
|
29920
29967
|
commitAuthorEmail?: string | undefined;
|
|
29921
29968
|
connectionId?: string | undefined;
|
|
29922
|
-
userId?: number | undefined;
|
|
29923
29969
|
} | undefined;
|
|
29924
29970
|
github?: {
|
|
29925
29971
|
url: string;
|
|
29926
29972
|
branch: string;
|
|
29973
|
+
userId?: number | undefined;
|
|
29927
29974
|
credentialId?: string | undefined;
|
|
29928
29975
|
relativePath?: string | undefined;
|
|
29929
29976
|
commitAuthorName?: string | undefined;
|
|
29930
29977
|
commitAuthorEmail?: string | undefined;
|
|
29931
29978
|
connectionId?: string | undefined;
|
|
29932
|
-
userId?: number | undefined;
|
|
29933
29979
|
} | undefined;
|
|
29934
29980
|
gitlab?: {
|
|
29935
29981
|
branch: string;
|
|
29936
29982
|
projectId: string;
|
|
29937
29983
|
url?: string | undefined;
|
|
29984
|
+
userId?: number | undefined;
|
|
29938
29985
|
credentialId?: string | undefined;
|
|
29939
29986
|
relativePath?: string | undefined;
|
|
29940
29987
|
commitAuthorName?: string | undefined;
|
|
29941
29988
|
commitAuthorEmail?: string | undefined;
|
|
29942
29989
|
connectionId?: string | undefined;
|
|
29943
|
-
userId?: number | undefined;
|
|
29944
29990
|
} | undefined;
|
|
29945
29991
|
documentation?: {
|
|
29946
29992
|
environment: "Live" | "Preview";
|
|
@@ -29958,45 +30004,45 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29958
30004
|
projectId: string;
|
|
29959
30005
|
repositoryId: string;
|
|
29960
30006
|
url?: string | null | undefined;
|
|
30007
|
+
userId?: number | null | undefined;
|
|
29961
30008
|
credentialId?: string | undefined;
|
|
29962
30009
|
relativePath?: string | null | undefined;
|
|
29963
30010
|
commitAuthorName?: string | null | undefined;
|
|
29964
30011
|
commitAuthorEmail?: string | null | undefined;
|
|
29965
30012
|
connectionId?: string | null | undefined;
|
|
29966
|
-
userId?: number | null | undefined;
|
|
29967
30013
|
} | undefined;
|
|
29968
30014
|
bitbucket?: {
|
|
29969
30015
|
branch: string;
|
|
29970
30016
|
workspaceSlug: string;
|
|
29971
30017
|
projectKey: string;
|
|
29972
30018
|
repoSlug: string;
|
|
30019
|
+
userId?: number | null | undefined;
|
|
29973
30020
|
credentialId?: string | undefined;
|
|
29974
30021
|
relativePath?: string | null | undefined;
|
|
29975
30022
|
commitAuthorName?: string | null | undefined;
|
|
29976
30023
|
commitAuthorEmail?: string | null | undefined;
|
|
29977
30024
|
connectionId?: string | null | undefined;
|
|
29978
|
-
userId?: number | null | undefined;
|
|
29979
30025
|
} | undefined;
|
|
29980
30026
|
github?: {
|
|
29981
30027
|
url: string;
|
|
29982
30028
|
branch: string;
|
|
30029
|
+
userId?: number | null | undefined;
|
|
29983
30030
|
credentialId?: string | undefined;
|
|
29984
30031
|
relativePath?: string | null | undefined;
|
|
29985
30032
|
commitAuthorName?: string | null | undefined;
|
|
29986
30033
|
commitAuthorEmail?: string | null | undefined;
|
|
29987
30034
|
connectionId?: string | null | undefined;
|
|
29988
|
-
userId?: number | null | undefined;
|
|
29989
30035
|
} | undefined;
|
|
29990
30036
|
gitlab?: {
|
|
29991
30037
|
branch: string;
|
|
29992
30038
|
projectId: string;
|
|
29993
30039
|
url?: string | null | undefined;
|
|
30040
|
+
userId?: number | null | undefined;
|
|
29994
30041
|
credentialId?: string | undefined;
|
|
29995
30042
|
relativePath?: string | null | undefined;
|
|
29996
30043
|
commitAuthorName?: string | null | undefined;
|
|
29997
30044
|
commitAuthorEmail?: string | null | undefined;
|
|
29998
30045
|
connectionId?: string | null | undefined;
|
|
29999
|
-
userId?: number | null | undefined;
|
|
30000
30046
|
} | undefined;
|
|
30001
30047
|
documentation?: {
|
|
30002
30048
|
environment: "Live" | "Preview";
|
|
@@ -30192,45 +30238,45 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
30192
30238
|
projectId: string;
|
|
30193
30239
|
repositoryId: string;
|
|
30194
30240
|
url?: string | undefined;
|
|
30241
|
+
userId?: number | undefined;
|
|
30195
30242
|
credentialId?: string | undefined;
|
|
30196
30243
|
relativePath?: string | undefined;
|
|
30197
30244
|
commitAuthorName?: string | undefined;
|
|
30198
30245
|
commitAuthorEmail?: string | undefined;
|
|
30199
30246
|
connectionId?: string | undefined;
|
|
30200
|
-
userId?: number | undefined;
|
|
30201
30247
|
} | undefined;
|
|
30202
30248
|
bitbucket?: {
|
|
30203
30249
|
branch: string;
|
|
30204
30250
|
workspaceSlug: string;
|
|
30205
30251
|
projectKey: string;
|
|
30206
30252
|
repoSlug: string;
|
|
30253
|
+
userId?: number | undefined;
|
|
30207
30254
|
credentialId?: string | undefined;
|
|
30208
30255
|
relativePath?: string | undefined;
|
|
30209
30256
|
commitAuthorName?: string | undefined;
|
|
30210
30257
|
commitAuthorEmail?: string | undefined;
|
|
30211
30258
|
connectionId?: string | undefined;
|
|
30212
|
-
userId?: number | undefined;
|
|
30213
30259
|
} | undefined;
|
|
30214
30260
|
github?: {
|
|
30215
30261
|
url: string;
|
|
30216
30262
|
branch: string;
|
|
30263
|
+
userId?: number | undefined;
|
|
30217
30264
|
credentialId?: string | undefined;
|
|
30218
30265
|
relativePath?: string | undefined;
|
|
30219
30266
|
commitAuthorName?: string | undefined;
|
|
30220
30267
|
commitAuthorEmail?: string | undefined;
|
|
30221
30268
|
connectionId?: string | undefined;
|
|
30222
|
-
userId?: number | undefined;
|
|
30223
30269
|
} | undefined;
|
|
30224
30270
|
gitlab?: {
|
|
30225
30271
|
branch: string;
|
|
30226
30272
|
projectId: string;
|
|
30227
30273
|
url?: string | undefined;
|
|
30274
|
+
userId?: number | undefined;
|
|
30228
30275
|
credentialId?: string | undefined;
|
|
30229
30276
|
relativePath?: string | undefined;
|
|
30230
30277
|
commitAuthorName?: string | undefined;
|
|
30231
30278
|
commitAuthorEmail?: string | undefined;
|
|
30232
30279
|
connectionId?: string | undefined;
|
|
30233
|
-
userId?: number | undefined;
|
|
30234
30280
|
} | undefined;
|
|
30235
30281
|
documentation?: {
|
|
30236
30282
|
environment: "Live" | "Preview";
|
|
@@ -30312,45 +30358,45 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
30312
30358
|
projectId: string;
|
|
30313
30359
|
repositoryId: string;
|
|
30314
30360
|
url?: string | null | undefined;
|
|
30361
|
+
userId?: number | null | undefined;
|
|
30315
30362
|
credentialId?: string | undefined;
|
|
30316
30363
|
relativePath?: string | null | undefined;
|
|
30317
30364
|
commitAuthorName?: string | null | undefined;
|
|
30318
30365
|
commitAuthorEmail?: string | null | undefined;
|
|
30319
30366
|
connectionId?: string | null | undefined;
|
|
30320
|
-
userId?: number | null | undefined;
|
|
30321
30367
|
} | undefined;
|
|
30322
30368
|
bitbucket?: {
|
|
30323
30369
|
branch: string;
|
|
30324
30370
|
workspaceSlug: string;
|
|
30325
30371
|
projectKey: string;
|
|
30326
30372
|
repoSlug: string;
|
|
30373
|
+
userId?: number | null | undefined;
|
|
30327
30374
|
credentialId?: string | undefined;
|
|
30328
30375
|
relativePath?: string | null | undefined;
|
|
30329
30376
|
commitAuthorName?: string | null | undefined;
|
|
30330
30377
|
commitAuthorEmail?: string | null | undefined;
|
|
30331
30378
|
connectionId?: string | null | undefined;
|
|
30332
|
-
userId?: number | null | undefined;
|
|
30333
30379
|
} | undefined;
|
|
30334
30380
|
github?: {
|
|
30335
30381
|
url: string;
|
|
30336
30382
|
branch: string;
|
|
30383
|
+
userId?: number | null | undefined;
|
|
30337
30384
|
credentialId?: string | undefined;
|
|
30338
30385
|
relativePath?: string | null | undefined;
|
|
30339
30386
|
commitAuthorName?: string | null | undefined;
|
|
30340
30387
|
commitAuthorEmail?: string | null | undefined;
|
|
30341
30388
|
connectionId?: string | null | undefined;
|
|
30342
|
-
userId?: number | null | undefined;
|
|
30343
30389
|
} | undefined;
|
|
30344
30390
|
gitlab?: {
|
|
30345
30391
|
branch: string;
|
|
30346
30392
|
projectId: string;
|
|
30347
30393
|
url?: string | null | undefined;
|
|
30394
|
+
userId?: number | null | undefined;
|
|
30348
30395
|
credentialId?: string | undefined;
|
|
30349
30396
|
relativePath?: string | null | undefined;
|
|
30350
30397
|
commitAuthorName?: string | null | undefined;
|
|
30351
30398
|
commitAuthorEmail?: string | null | undefined;
|
|
30352
30399
|
connectionId?: string | null | undefined;
|
|
30353
|
-
userId?: number | null | undefined;
|
|
30354
30400
|
} | undefined;
|
|
30355
30401
|
documentation?: {
|
|
30356
30402
|
environment: "Live" | "Preview";
|
|
@@ -30515,24 +30561,24 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30515
30561
|
projectId: string;
|
|
30516
30562
|
repositoryId: string;
|
|
30517
30563
|
url?: string | undefined;
|
|
30564
|
+
userId?: number | undefined;
|
|
30518
30565
|
credentialId?: string | undefined;
|
|
30519
30566
|
relativePath?: string | undefined;
|
|
30520
30567
|
commitAuthorName?: string | undefined;
|
|
30521
30568
|
commitAuthorEmail?: string | undefined;
|
|
30522
30569
|
connectionId?: string | undefined;
|
|
30523
|
-
userId?: number | undefined;
|
|
30524
30570
|
}, {
|
|
30525
30571
|
branch: string;
|
|
30526
30572
|
organizationId: string;
|
|
30527
30573
|
projectId: string;
|
|
30528
30574
|
repositoryId: string;
|
|
30529
30575
|
url?: string | null | undefined;
|
|
30576
|
+
userId?: number | null | undefined;
|
|
30530
30577
|
credentialId?: string | undefined;
|
|
30531
30578
|
relativePath?: string | null | undefined;
|
|
30532
30579
|
commitAuthorName?: string | null | undefined;
|
|
30533
30580
|
commitAuthorEmail?: string | null | undefined;
|
|
30534
30581
|
connectionId?: string | null | undefined;
|
|
30535
|
-
userId?: number | null | undefined;
|
|
30536
30582
|
}>>;
|
|
30537
30583
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
30538
30584
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -30550,23 +30596,23 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30550
30596
|
workspaceSlug: string;
|
|
30551
30597
|
projectKey: string;
|
|
30552
30598
|
repoSlug: string;
|
|
30599
|
+
userId?: number | undefined;
|
|
30553
30600
|
credentialId?: string | undefined;
|
|
30554
30601
|
relativePath?: string | undefined;
|
|
30555
30602
|
commitAuthorName?: string | undefined;
|
|
30556
30603
|
commitAuthorEmail?: string | undefined;
|
|
30557
30604
|
connectionId?: string | undefined;
|
|
30558
|
-
userId?: number | undefined;
|
|
30559
30605
|
}, {
|
|
30560
30606
|
branch: string;
|
|
30561
30607
|
workspaceSlug: string;
|
|
30562
30608
|
projectKey: string;
|
|
30563
30609
|
repoSlug: string;
|
|
30610
|
+
userId?: number | null | undefined;
|
|
30564
30611
|
credentialId?: string | undefined;
|
|
30565
30612
|
relativePath?: string | null | undefined;
|
|
30566
30613
|
commitAuthorName?: string | null | undefined;
|
|
30567
30614
|
commitAuthorEmail?: string | null | undefined;
|
|
30568
30615
|
connectionId?: string | null | undefined;
|
|
30569
|
-
userId?: number | null | undefined;
|
|
30570
30616
|
}>>;
|
|
30571
30617
|
github: z.ZodOptional<z.ZodObject<{
|
|
30572
30618
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -30580,21 +30626,21 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30580
30626
|
}, "strip", z.ZodTypeAny, {
|
|
30581
30627
|
url: string;
|
|
30582
30628
|
branch: string;
|
|
30629
|
+
userId?: number | undefined;
|
|
30583
30630
|
credentialId?: string | undefined;
|
|
30584
30631
|
relativePath?: string | undefined;
|
|
30585
30632
|
commitAuthorName?: string | undefined;
|
|
30586
30633
|
commitAuthorEmail?: string | undefined;
|
|
30587
30634
|
connectionId?: string | undefined;
|
|
30588
|
-
userId?: number | undefined;
|
|
30589
30635
|
}, {
|
|
30590
30636
|
url: string;
|
|
30591
30637
|
branch: string;
|
|
30638
|
+
userId?: number | null | undefined;
|
|
30592
30639
|
credentialId?: string | undefined;
|
|
30593
30640
|
relativePath?: string | null | undefined;
|
|
30594
30641
|
commitAuthorName?: string | null | undefined;
|
|
30595
30642
|
commitAuthorEmail?: string | null | undefined;
|
|
30596
30643
|
connectionId?: string | null | undefined;
|
|
30597
|
-
userId?: number | null | undefined;
|
|
30598
30644
|
}>>;
|
|
30599
30645
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
30600
30646
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -30610,22 +30656,22 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30610
30656
|
branch: string;
|
|
30611
30657
|
projectId: string;
|
|
30612
30658
|
url?: string | undefined;
|
|
30659
|
+
userId?: number | undefined;
|
|
30613
30660
|
credentialId?: string | undefined;
|
|
30614
30661
|
relativePath?: string | undefined;
|
|
30615
30662
|
commitAuthorName?: string | undefined;
|
|
30616
30663
|
commitAuthorEmail?: string | undefined;
|
|
30617
30664
|
connectionId?: string | undefined;
|
|
30618
|
-
userId?: number | undefined;
|
|
30619
30665
|
}, {
|
|
30620
30666
|
branch: string;
|
|
30621
30667
|
projectId: string;
|
|
30622
30668
|
url?: string | null | undefined;
|
|
30669
|
+
userId?: number | null | undefined;
|
|
30623
30670
|
credentialId?: string | undefined;
|
|
30624
30671
|
relativePath?: string | null | undefined;
|
|
30625
30672
|
commitAuthorName?: string | null | undefined;
|
|
30626
30673
|
commitAuthorEmail?: string | null | undefined;
|
|
30627
30674
|
connectionId?: string | null | undefined;
|
|
30628
|
-
userId?: number | null | undefined;
|
|
30629
30675
|
}>>;
|
|
30630
30676
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
30631
30677
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -30664,45 +30710,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30664
30710
|
projectId: string;
|
|
30665
30711
|
repositoryId: string;
|
|
30666
30712
|
url?: string | undefined;
|
|
30713
|
+
userId?: number | undefined;
|
|
30667
30714
|
credentialId?: string | undefined;
|
|
30668
30715
|
relativePath?: string | undefined;
|
|
30669
30716
|
commitAuthorName?: string | undefined;
|
|
30670
30717
|
commitAuthorEmail?: string | undefined;
|
|
30671
30718
|
connectionId?: string | undefined;
|
|
30672
|
-
userId?: number | undefined;
|
|
30673
30719
|
} | undefined;
|
|
30674
30720
|
bitbucket?: {
|
|
30675
30721
|
branch: string;
|
|
30676
30722
|
workspaceSlug: string;
|
|
30677
30723
|
projectKey: string;
|
|
30678
30724
|
repoSlug: string;
|
|
30725
|
+
userId?: number | undefined;
|
|
30679
30726
|
credentialId?: string | undefined;
|
|
30680
30727
|
relativePath?: string | undefined;
|
|
30681
30728
|
commitAuthorName?: string | undefined;
|
|
30682
30729
|
commitAuthorEmail?: string | undefined;
|
|
30683
30730
|
connectionId?: string | undefined;
|
|
30684
|
-
userId?: number | undefined;
|
|
30685
30731
|
} | undefined;
|
|
30686
30732
|
github?: {
|
|
30687
30733
|
url: string;
|
|
30688
30734
|
branch: string;
|
|
30735
|
+
userId?: number | undefined;
|
|
30689
30736
|
credentialId?: string | undefined;
|
|
30690
30737
|
relativePath?: string | undefined;
|
|
30691
30738
|
commitAuthorName?: string | undefined;
|
|
30692
30739
|
commitAuthorEmail?: string | undefined;
|
|
30693
30740
|
connectionId?: string | undefined;
|
|
30694
|
-
userId?: number | undefined;
|
|
30695
30741
|
} | undefined;
|
|
30696
30742
|
gitlab?: {
|
|
30697
30743
|
branch: string;
|
|
30698
30744
|
projectId: string;
|
|
30699
30745
|
url?: string | undefined;
|
|
30746
|
+
userId?: number | undefined;
|
|
30700
30747
|
credentialId?: string | undefined;
|
|
30701
30748
|
relativePath?: string | undefined;
|
|
30702
30749
|
commitAuthorName?: string | undefined;
|
|
30703
30750
|
commitAuthorEmail?: string | undefined;
|
|
30704
30751
|
connectionId?: string | undefined;
|
|
30705
|
-
userId?: number | undefined;
|
|
30706
30752
|
} | undefined;
|
|
30707
30753
|
documentation?: {
|
|
30708
30754
|
environment: "Live" | "Preview";
|
|
@@ -30720,45 +30766,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30720
30766
|
projectId: string;
|
|
30721
30767
|
repositoryId: string;
|
|
30722
30768
|
url?: string | null | undefined;
|
|
30769
|
+
userId?: number | null | undefined;
|
|
30723
30770
|
credentialId?: string | undefined;
|
|
30724
30771
|
relativePath?: string | null | undefined;
|
|
30725
30772
|
commitAuthorName?: string | null | undefined;
|
|
30726
30773
|
commitAuthorEmail?: string | null | undefined;
|
|
30727
30774
|
connectionId?: string | null | undefined;
|
|
30728
|
-
userId?: number | null | undefined;
|
|
30729
30775
|
} | undefined;
|
|
30730
30776
|
bitbucket?: {
|
|
30731
30777
|
branch: string;
|
|
30732
30778
|
workspaceSlug: string;
|
|
30733
30779
|
projectKey: string;
|
|
30734
30780
|
repoSlug: string;
|
|
30781
|
+
userId?: number | null | undefined;
|
|
30735
30782
|
credentialId?: string | undefined;
|
|
30736
30783
|
relativePath?: string | null | undefined;
|
|
30737
30784
|
commitAuthorName?: string | null | undefined;
|
|
30738
30785
|
commitAuthorEmail?: string | null | undefined;
|
|
30739
30786
|
connectionId?: string | null | undefined;
|
|
30740
|
-
userId?: number | null | undefined;
|
|
30741
30787
|
} | undefined;
|
|
30742
30788
|
github?: {
|
|
30743
30789
|
url: string;
|
|
30744
30790
|
branch: string;
|
|
30791
|
+
userId?: number | null | undefined;
|
|
30745
30792
|
credentialId?: string | undefined;
|
|
30746
30793
|
relativePath?: string | null | undefined;
|
|
30747
30794
|
commitAuthorName?: string | null | undefined;
|
|
30748
30795
|
commitAuthorEmail?: string | null | undefined;
|
|
30749
30796
|
connectionId?: string | null | undefined;
|
|
30750
|
-
userId?: number | null | undefined;
|
|
30751
30797
|
} | undefined;
|
|
30752
30798
|
gitlab?: {
|
|
30753
30799
|
branch: string;
|
|
30754
30800
|
projectId: string;
|
|
30755
30801
|
url?: string | null | undefined;
|
|
30802
|
+
userId?: number | null | undefined;
|
|
30756
30803
|
credentialId?: string | undefined;
|
|
30757
30804
|
relativePath?: string | null | undefined;
|
|
30758
30805
|
commitAuthorName?: string | null | undefined;
|
|
30759
30806
|
commitAuthorEmail?: string | null | undefined;
|
|
30760
30807
|
connectionId?: string | null | undefined;
|
|
30761
|
-
userId?: number | null | undefined;
|
|
30762
30808
|
} | undefined;
|
|
30763
30809
|
documentation?: {
|
|
30764
30810
|
environment: "Live" | "Preview";
|
|
@@ -30954,45 +31000,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30954
31000
|
projectId: string;
|
|
30955
31001
|
repositoryId: string;
|
|
30956
31002
|
url?: string | undefined;
|
|
31003
|
+
userId?: number | undefined;
|
|
30957
31004
|
credentialId?: string | undefined;
|
|
30958
31005
|
relativePath?: string | undefined;
|
|
30959
31006
|
commitAuthorName?: string | undefined;
|
|
30960
31007
|
commitAuthorEmail?: string | undefined;
|
|
30961
31008
|
connectionId?: string | undefined;
|
|
30962
|
-
userId?: number | undefined;
|
|
30963
31009
|
} | undefined;
|
|
30964
31010
|
bitbucket?: {
|
|
30965
31011
|
branch: string;
|
|
30966
31012
|
workspaceSlug: string;
|
|
30967
31013
|
projectKey: string;
|
|
30968
31014
|
repoSlug: string;
|
|
31015
|
+
userId?: number | undefined;
|
|
30969
31016
|
credentialId?: string | undefined;
|
|
30970
31017
|
relativePath?: string | undefined;
|
|
30971
31018
|
commitAuthorName?: string | undefined;
|
|
30972
31019
|
commitAuthorEmail?: string | undefined;
|
|
30973
31020
|
connectionId?: string | undefined;
|
|
30974
|
-
userId?: number | undefined;
|
|
30975
31021
|
} | undefined;
|
|
30976
31022
|
github?: {
|
|
30977
31023
|
url: string;
|
|
30978
31024
|
branch: string;
|
|
31025
|
+
userId?: number | undefined;
|
|
30979
31026
|
credentialId?: string | undefined;
|
|
30980
31027
|
relativePath?: string | undefined;
|
|
30981
31028
|
commitAuthorName?: string | undefined;
|
|
30982
31029
|
commitAuthorEmail?: string | undefined;
|
|
30983
31030
|
connectionId?: string | undefined;
|
|
30984
|
-
userId?: number | undefined;
|
|
30985
31031
|
} | undefined;
|
|
30986
31032
|
gitlab?: {
|
|
30987
31033
|
branch: string;
|
|
30988
31034
|
projectId: string;
|
|
30989
31035
|
url?: string | undefined;
|
|
31036
|
+
userId?: number | undefined;
|
|
30990
31037
|
credentialId?: string | undefined;
|
|
30991
31038
|
relativePath?: string | undefined;
|
|
30992
31039
|
commitAuthorName?: string | undefined;
|
|
30993
31040
|
commitAuthorEmail?: string | undefined;
|
|
30994
31041
|
connectionId?: string | undefined;
|
|
30995
|
-
userId?: number | undefined;
|
|
30996
31042
|
} | undefined;
|
|
30997
31043
|
documentation?: {
|
|
30998
31044
|
environment: "Live" | "Preview";
|
|
@@ -31074,45 +31120,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
31074
31120
|
projectId: string;
|
|
31075
31121
|
repositoryId: string;
|
|
31076
31122
|
url?: string | null | undefined;
|
|
31123
|
+
userId?: number | null | undefined;
|
|
31077
31124
|
credentialId?: string | undefined;
|
|
31078
31125
|
relativePath?: string | null | undefined;
|
|
31079
31126
|
commitAuthorName?: string | null | undefined;
|
|
31080
31127
|
commitAuthorEmail?: string | null | undefined;
|
|
31081
31128
|
connectionId?: string | null | undefined;
|
|
31082
|
-
userId?: number | null | undefined;
|
|
31083
31129
|
} | undefined;
|
|
31084
31130
|
bitbucket?: {
|
|
31085
31131
|
branch: string;
|
|
31086
31132
|
workspaceSlug: string;
|
|
31087
31133
|
projectKey: string;
|
|
31088
31134
|
repoSlug: string;
|
|
31135
|
+
userId?: number | null | undefined;
|
|
31089
31136
|
credentialId?: string | undefined;
|
|
31090
31137
|
relativePath?: string | null | undefined;
|
|
31091
31138
|
commitAuthorName?: string | null | undefined;
|
|
31092
31139
|
commitAuthorEmail?: string | null | undefined;
|
|
31093
31140
|
connectionId?: string | null | undefined;
|
|
31094
|
-
userId?: number | null | undefined;
|
|
31095
31141
|
} | undefined;
|
|
31096
31142
|
github?: {
|
|
31097
31143
|
url: string;
|
|
31098
31144
|
branch: string;
|
|
31145
|
+
userId?: number | null | undefined;
|
|
31099
31146
|
credentialId?: string | undefined;
|
|
31100
31147
|
relativePath?: string | null | undefined;
|
|
31101
31148
|
commitAuthorName?: string | null | undefined;
|
|
31102
31149
|
commitAuthorEmail?: string | null | undefined;
|
|
31103
31150
|
connectionId?: string | null | undefined;
|
|
31104
|
-
userId?: number | null | undefined;
|
|
31105
31151
|
} | undefined;
|
|
31106
31152
|
gitlab?: {
|
|
31107
31153
|
branch: string;
|
|
31108
31154
|
projectId: string;
|
|
31109
31155
|
url?: string | null | undefined;
|
|
31156
|
+
userId?: number | null | undefined;
|
|
31110
31157
|
credentialId?: string | undefined;
|
|
31111
31158
|
relativePath?: string | null | undefined;
|
|
31112
31159
|
commitAuthorName?: string | null | undefined;
|
|
31113
31160
|
commitAuthorEmail?: string | null | undefined;
|
|
31114
31161
|
connectionId?: string | null | undefined;
|
|
31115
|
-
userId?: number | null | undefined;
|
|
31116
31162
|
} | undefined;
|
|
31117
31163
|
documentation?: {
|
|
31118
31164
|
environment: "Live" | "Preview";
|
|
@@ -31196,45 +31242,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
31196
31242
|
projectId: string;
|
|
31197
31243
|
repositoryId: string;
|
|
31198
31244
|
url?: string | undefined;
|
|
31245
|
+
userId?: number | undefined;
|
|
31199
31246
|
credentialId?: string | undefined;
|
|
31200
31247
|
relativePath?: string | undefined;
|
|
31201
31248
|
commitAuthorName?: string | undefined;
|
|
31202
31249
|
commitAuthorEmail?: string | undefined;
|
|
31203
31250
|
connectionId?: string | undefined;
|
|
31204
|
-
userId?: number | undefined;
|
|
31205
31251
|
} | undefined;
|
|
31206
31252
|
bitbucket?: {
|
|
31207
31253
|
branch: string;
|
|
31208
31254
|
workspaceSlug: string;
|
|
31209
31255
|
projectKey: string;
|
|
31210
31256
|
repoSlug: string;
|
|
31257
|
+
userId?: number | undefined;
|
|
31211
31258
|
credentialId?: string | undefined;
|
|
31212
31259
|
relativePath?: string | undefined;
|
|
31213
31260
|
commitAuthorName?: string | undefined;
|
|
31214
31261
|
commitAuthorEmail?: string | undefined;
|
|
31215
31262
|
connectionId?: string | undefined;
|
|
31216
|
-
userId?: number | undefined;
|
|
31217
31263
|
} | undefined;
|
|
31218
31264
|
github?: {
|
|
31219
31265
|
url: string;
|
|
31220
31266
|
branch: string;
|
|
31267
|
+
userId?: number | undefined;
|
|
31221
31268
|
credentialId?: string | undefined;
|
|
31222
31269
|
relativePath?: string | undefined;
|
|
31223
31270
|
commitAuthorName?: string | undefined;
|
|
31224
31271
|
commitAuthorEmail?: string | undefined;
|
|
31225
31272
|
connectionId?: string | undefined;
|
|
31226
|
-
userId?: number | undefined;
|
|
31227
31273
|
} | undefined;
|
|
31228
31274
|
gitlab?: {
|
|
31229
31275
|
branch: string;
|
|
31230
31276
|
projectId: string;
|
|
31231
31277
|
url?: string | undefined;
|
|
31278
|
+
userId?: number | undefined;
|
|
31232
31279
|
credentialId?: string | undefined;
|
|
31233
31280
|
relativePath?: string | undefined;
|
|
31234
31281
|
commitAuthorName?: string | undefined;
|
|
31235
31282
|
commitAuthorEmail?: string | undefined;
|
|
31236
31283
|
connectionId?: string | undefined;
|
|
31237
|
-
userId?: number | undefined;
|
|
31238
31284
|
} | undefined;
|
|
31239
31285
|
documentation?: {
|
|
31240
31286
|
environment: "Live" | "Preview";
|
|
@@ -31318,45 +31364,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
31318
31364
|
projectId: string;
|
|
31319
31365
|
repositoryId: string;
|
|
31320
31366
|
url?: string | null | undefined;
|
|
31367
|
+
userId?: number | null | undefined;
|
|
31321
31368
|
credentialId?: string | undefined;
|
|
31322
31369
|
relativePath?: string | null | undefined;
|
|
31323
31370
|
commitAuthorName?: string | null | undefined;
|
|
31324
31371
|
commitAuthorEmail?: string | null | undefined;
|
|
31325
31372
|
connectionId?: string | null | undefined;
|
|
31326
|
-
userId?: number | null | undefined;
|
|
31327
31373
|
} | undefined;
|
|
31328
31374
|
bitbucket?: {
|
|
31329
31375
|
branch: string;
|
|
31330
31376
|
workspaceSlug: string;
|
|
31331
31377
|
projectKey: string;
|
|
31332
31378
|
repoSlug: string;
|
|
31379
|
+
userId?: number | null | undefined;
|
|
31333
31380
|
credentialId?: string | undefined;
|
|
31334
31381
|
relativePath?: string | null | undefined;
|
|
31335
31382
|
commitAuthorName?: string | null | undefined;
|
|
31336
31383
|
commitAuthorEmail?: string | null | undefined;
|
|
31337
31384
|
connectionId?: string | null | undefined;
|
|
31338
|
-
userId?: number | null | undefined;
|
|
31339
31385
|
} | undefined;
|
|
31340
31386
|
github?: {
|
|
31341
31387
|
url: string;
|
|
31342
31388
|
branch: string;
|
|
31389
|
+
userId?: number | null | undefined;
|
|
31343
31390
|
credentialId?: string | undefined;
|
|
31344
31391
|
relativePath?: string | null | undefined;
|
|
31345
31392
|
commitAuthorName?: string | null | undefined;
|
|
31346
31393
|
commitAuthorEmail?: string | null | undefined;
|
|
31347
31394
|
connectionId?: string | null | undefined;
|
|
31348
|
-
userId?: number | null | undefined;
|
|
31349
31395
|
} | undefined;
|
|
31350
31396
|
gitlab?: {
|
|
31351
31397
|
branch: string;
|
|
31352
31398
|
projectId: string;
|
|
31353
31399
|
url?: string | null | undefined;
|
|
31400
|
+
userId?: number | null | undefined;
|
|
31354
31401
|
credentialId?: string | undefined;
|
|
31355
31402
|
relativePath?: string | null | undefined;
|
|
31356
31403
|
commitAuthorName?: string | null | undefined;
|
|
31357
31404
|
commitAuthorEmail?: string | null | undefined;
|
|
31358
31405
|
connectionId?: string | null | undefined;
|
|
31359
|
-
userId?: number | null | undefined;
|
|
31360
31406
|
} | undefined;
|
|
31361
31407
|
documentation?: {
|
|
31362
31408
|
environment: "Live" | "Preview";
|
|
@@ -31523,24 +31569,24 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31523
31569
|
projectId: string;
|
|
31524
31570
|
repositoryId: string;
|
|
31525
31571
|
url?: string | undefined;
|
|
31572
|
+
userId?: number | undefined;
|
|
31526
31573
|
credentialId?: string | undefined;
|
|
31527
31574
|
relativePath?: string | undefined;
|
|
31528
31575
|
commitAuthorName?: string | undefined;
|
|
31529
31576
|
commitAuthorEmail?: string | undefined;
|
|
31530
31577
|
connectionId?: string | undefined;
|
|
31531
|
-
userId?: number | undefined;
|
|
31532
31578
|
}, {
|
|
31533
31579
|
branch: string;
|
|
31534
31580
|
organizationId: string;
|
|
31535
31581
|
projectId: string;
|
|
31536
31582
|
repositoryId: string;
|
|
31537
31583
|
url?: string | null | undefined;
|
|
31584
|
+
userId?: number | null | undefined;
|
|
31538
31585
|
credentialId?: string | undefined;
|
|
31539
31586
|
relativePath?: string | null | undefined;
|
|
31540
31587
|
commitAuthorName?: string | null | undefined;
|
|
31541
31588
|
commitAuthorEmail?: string | null | undefined;
|
|
31542
31589
|
connectionId?: string | null | undefined;
|
|
31543
|
-
userId?: number | null | undefined;
|
|
31544
31590
|
}>>;
|
|
31545
31591
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
31546
31592
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -31558,23 +31604,23 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31558
31604
|
workspaceSlug: string;
|
|
31559
31605
|
projectKey: string;
|
|
31560
31606
|
repoSlug: string;
|
|
31607
|
+
userId?: number | undefined;
|
|
31561
31608
|
credentialId?: string | undefined;
|
|
31562
31609
|
relativePath?: string | undefined;
|
|
31563
31610
|
commitAuthorName?: string | undefined;
|
|
31564
31611
|
commitAuthorEmail?: string | undefined;
|
|
31565
31612
|
connectionId?: string | undefined;
|
|
31566
|
-
userId?: number | undefined;
|
|
31567
31613
|
}, {
|
|
31568
31614
|
branch: string;
|
|
31569
31615
|
workspaceSlug: string;
|
|
31570
31616
|
projectKey: string;
|
|
31571
31617
|
repoSlug: string;
|
|
31618
|
+
userId?: number | null | undefined;
|
|
31572
31619
|
credentialId?: string | undefined;
|
|
31573
31620
|
relativePath?: string | null | undefined;
|
|
31574
31621
|
commitAuthorName?: string | null | undefined;
|
|
31575
31622
|
commitAuthorEmail?: string | null | undefined;
|
|
31576
31623
|
connectionId?: string | null | undefined;
|
|
31577
|
-
userId?: number | null | undefined;
|
|
31578
31624
|
}>>;
|
|
31579
31625
|
github: z.ZodOptional<z.ZodObject<{
|
|
31580
31626
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -31588,21 +31634,21 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31588
31634
|
}, "strip", z.ZodTypeAny, {
|
|
31589
31635
|
url: string;
|
|
31590
31636
|
branch: string;
|
|
31637
|
+
userId?: number | undefined;
|
|
31591
31638
|
credentialId?: string | undefined;
|
|
31592
31639
|
relativePath?: string | undefined;
|
|
31593
31640
|
commitAuthorName?: string | undefined;
|
|
31594
31641
|
commitAuthorEmail?: string | undefined;
|
|
31595
31642
|
connectionId?: string | undefined;
|
|
31596
|
-
userId?: number | undefined;
|
|
31597
31643
|
}, {
|
|
31598
31644
|
url: string;
|
|
31599
31645
|
branch: string;
|
|
31646
|
+
userId?: number | null | undefined;
|
|
31600
31647
|
credentialId?: string | undefined;
|
|
31601
31648
|
relativePath?: string | null | undefined;
|
|
31602
31649
|
commitAuthorName?: string | null | undefined;
|
|
31603
31650
|
commitAuthorEmail?: string | null | undefined;
|
|
31604
31651
|
connectionId?: string | null | undefined;
|
|
31605
|
-
userId?: number | null | undefined;
|
|
31606
31652
|
}>>;
|
|
31607
31653
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
31608
31654
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -31618,22 +31664,22 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31618
31664
|
branch: string;
|
|
31619
31665
|
projectId: string;
|
|
31620
31666
|
url?: string | undefined;
|
|
31667
|
+
userId?: number | undefined;
|
|
31621
31668
|
credentialId?: string | undefined;
|
|
31622
31669
|
relativePath?: string | undefined;
|
|
31623
31670
|
commitAuthorName?: string | undefined;
|
|
31624
31671
|
commitAuthorEmail?: string | undefined;
|
|
31625
31672
|
connectionId?: string | undefined;
|
|
31626
|
-
userId?: number | undefined;
|
|
31627
31673
|
}, {
|
|
31628
31674
|
branch: string;
|
|
31629
31675
|
projectId: string;
|
|
31630
31676
|
url?: string | null | undefined;
|
|
31677
|
+
userId?: number | null | undefined;
|
|
31631
31678
|
credentialId?: string | undefined;
|
|
31632
31679
|
relativePath?: string | null | undefined;
|
|
31633
31680
|
commitAuthorName?: string | null | undefined;
|
|
31634
31681
|
commitAuthorEmail?: string | null | undefined;
|
|
31635
31682
|
connectionId?: string | null | undefined;
|
|
31636
|
-
userId?: number | null | undefined;
|
|
31637
31683
|
}>>;
|
|
31638
31684
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
31639
31685
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -31672,45 +31718,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31672
31718
|
projectId: string;
|
|
31673
31719
|
repositoryId: string;
|
|
31674
31720
|
url?: string | undefined;
|
|
31721
|
+
userId?: number | undefined;
|
|
31675
31722
|
credentialId?: string | undefined;
|
|
31676
31723
|
relativePath?: string | undefined;
|
|
31677
31724
|
commitAuthorName?: string | undefined;
|
|
31678
31725
|
commitAuthorEmail?: string | undefined;
|
|
31679
31726
|
connectionId?: string | undefined;
|
|
31680
|
-
userId?: number | undefined;
|
|
31681
31727
|
} | undefined;
|
|
31682
31728
|
bitbucket?: {
|
|
31683
31729
|
branch: string;
|
|
31684
31730
|
workspaceSlug: string;
|
|
31685
31731
|
projectKey: string;
|
|
31686
31732
|
repoSlug: string;
|
|
31733
|
+
userId?: number | undefined;
|
|
31687
31734
|
credentialId?: string | undefined;
|
|
31688
31735
|
relativePath?: string | undefined;
|
|
31689
31736
|
commitAuthorName?: string | undefined;
|
|
31690
31737
|
commitAuthorEmail?: string | undefined;
|
|
31691
31738
|
connectionId?: string | undefined;
|
|
31692
|
-
userId?: number | undefined;
|
|
31693
31739
|
} | undefined;
|
|
31694
31740
|
github?: {
|
|
31695
31741
|
url: string;
|
|
31696
31742
|
branch: string;
|
|
31743
|
+
userId?: number | undefined;
|
|
31697
31744
|
credentialId?: string | undefined;
|
|
31698
31745
|
relativePath?: string | undefined;
|
|
31699
31746
|
commitAuthorName?: string | undefined;
|
|
31700
31747
|
commitAuthorEmail?: string | undefined;
|
|
31701
31748
|
connectionId?: string | undefined;
|
|
31702
|
-
userId?: number | undefined;
|
|
31703
31749
|
} | undefined;
|
|
31704
31750
|
gitlab?: {
|
|
31705
31751
|
branch: string;
|
|
31706
31752
|
projectId: string;
|
|
31707
31753
|
url?: string | undefined;
|
|
31754
|
+
userId?: number | undefined;
|
|
31708
31755
|
credentialId?: string | undefined;
|
|
31709
31756
|
relativePath?: string | undefined;
|
|
31710
31757
|
commitAuthorName?: string | undefined;
|
|
31711
31758
|
commitAuthorEmail?: string | undefined;
|
|
31712
31759
|
connectionId?: string | undefined;
|
|
31713
|
-
userId?: number | undefined;
|
|
31714
31760
|
} | undefined;
|
|
31715
31761
|
documentation?: {
|
|
31716
31762
|
environment: "Live" | "Preview";
|
|
@@ -31728,45 +31774,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31728
31774
|
projectId: string;
|
|
31729
31775
|
repositoryId: string;
|
|
31730
31776
|
url?: string | null | undefined;
|
|
31777
|
+
userId?: number | null | undefined;
|
|
31731
31778
|
credentialId?: string | undefined;
|
|
31732
31779
|
relativePath?: string | null | undefined;
|
|
31733
31780
|
commitAuthorName?: string | null | undefined;
|
|
31734
31781
|
commitAuthorEmail?: string | null | undefined;
|
|
31735
31782
|
connectionId?: string | null | undefined;
|
|
31736
|
-
userId?: number | null | undefined;
|
|
31737
31783
|
} | undefined;
|
|
31738
31784
|
bitbucket?: {
|
|
31739
31785
|
branch: string;
|
|
31740
31786
|
workspaceSlug: string;
|
|
31741
31787
|
projectKey: string;
|
|
31742
31788
|
repoSlug: string;
|
|
31789
|
+
userId?: number | null | undefined;
|
|
31743
31790
|
credentialId?: string | undefined;
|
|
31744
31791
|
relativePath?: string | null | undefined;
|
|
31745
31792
|
commitAuthorName?: string | null | undefined;
|
|
31746
31793
|
commitAuthorEmail?: string | null | undefined;
|
|
31747
31794
|
connectionId?: string | null | undefined;
|
|
31748
|
-
userId?: number | null | undefined;
|
|
31749
31795
|
} | undefined;
|
|
31750
31796
|
github?: {
|
|
31751
31797
|
url: string;
|
|
31752
31798
|
branch: string;
|
|
31799
|
+
userId?: number | null | undefined;
|
|
31753
31800
|
credentialId?: string | undefined;
|
|
31754
31801
|
relativePath?: string | null | undefined;
|
|
31755
31802
|
commitAuthorName?: string | null | undefined;
|
|
31756
31803
|
commitAuthorEmail?: string | null | undefined;
|
|
31757
31804
|
connectionId?: string | null | undefined;
|
|
31758
|
-
userId?: number | null | undefined;
|
|
31759
31805
|
} | undefined;
|
|
31760
31806
|
gitlab?: {
|
|
31761
31807
|
branch: string;
|
|
31762
31808
|
projectId: string;
|
|
31763
31809
|
url?: string | null | undefined;
|
|
31810
|
+
userId?: number | null | undefined;
|
|
31764
31811
|
credentialId?: string | undefined;
|
|
31765
31812
|
relativePath?: string | null | undefined;
|
|
31766
31813
|
commitAuthorName?: string | null | undefined;
|
|
31767
31814
|
commitAuthorEmail?: string | null | undefined;
|
|
31768
31815
|
connectionId?: string | null | undefined;
|
|
31769
|
-
userId?: number | null | undefined;
|
|
31770
31816
|
} | undefined;
|
|
31771
31817
|
documentation?: {
|
|
31772
31818
|
environment: "Live" | "Preview";
|
|
@@ -31962,45 +32008,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31962
32008
|
projectId: string;
|
|
31963
32009
|
repositoryId: string;
|
|
31964
32010
|
url?: string | undefined;
|
|
32011
|
+
userId?: number | undefined;
|
|
31965
32012
|
credentialId?: string | undefined;
|
|
31966
32013
|
relativePath?: string | undefined;
|
|
31967
32014
|
commitAuthorName?: string | undefined;
|
|
31968
32015
|
commitAuthorEmail?: string | undefined;
|
|
31969
32016
|
connectionId?: string | undefined;
|
|
31970
|
-
userId?: number | undefined;
|
|
31971
32017
|
} | undefined;
|
|
31972
32018
|
bitbucket?: {
|
|
31973
32019
|
branch: string;
|
|
31974
32020
|
workspaceSlug: string;
|
|
31975
32021
|
projectKey: string;
|
|
31976
32022
|
repoSlug: string;
|
|
32023
|
+
userId?: number | undefined;
|
|
31977
32024
|
credentialId?: string | undefined;
|
|
31978
32025
|
relativePath?: string | undefined;
|
|
31979
32026
|
commitAuthorName?: string | undefined;
|
|
31980
32027
|
commitAuthorEmail?: string | undefined;
|
|
31981
32028
|
connectionId?: string | undefined;
|
|
31982
|
-
userId?: number | undefined;
|
|
31983
32029
|
} | undefined;
|
|
31984
32030
|
github?: {
|
|
31985
32031
|
url: string;
|
|
31986
32032
|
branch: string;
|
|
32033
|
+
userId?: number | undefined;
|
|
31987
32034
|
credentialId?: string | undefined;
|
|
31988
32035
|
relativePath?: string | undefined;
|
|
31989
32036
|
commitAuthorName?: string | undefined;
|
|
31990
32037
|
commitAuthorEmail?: string | undefined;
|
|
31991
32038
|
connectionId?: string | undefined;
|
|
31992
|
-
userId?: number | undefined;
|
|
31993
32039
|
} | undefined;
|
|
31994
32040
|
gitlab?: {
|
|
31995
32041
|
branch: string;
|
|
31996
32042
|
projectId: string;
|
|
31997
32043
|
url?: string | undefined;
|
|
32044
|
+
userId?: number | undefined;
|
|
31998
32045
|
credentialId?: string | undefined;
|
|
31999
32046
|
relativePath?: string | undefined;
|
|
32000
32047
|
commitAuthorName?: string | undefined;
|
|
32001
32048
|
commitAuthorEmail?: string | undefined;
|
|
32002
32049
|
connectionId?: string | undefined;
|
|
32003
|
-
userId?: number | undefined;
|
|
32004
32050
|
} | undefined;
|
|
32005
32051
|
documentation?: {
|
|
32006
32052
|
environment: "Live" | "Preview";
|
|
@@ -32082,45 +32128,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32082
32128
|
projectId: string;
|
|
32083
32129
|
repositoryId: string;
|
|
32084
32130
|
url?: string | null | undefined;
|
|
32131
|
+
userId?: number | null | undefined;
|
|
32085
32132
|
credentialId?: string | undefined;
|
|
32086
32133
|
relativePath?: string | null | undefined;
|
|
32087
32134
|
commitAuthorName?: string | null | undefined;
|
|
32088
32135
|
commitAuthorEmail?: string | null | undefined;
|
|
32089
32136
|
connectionId?: string | null | undefined;
|
|
32090
|
-
userId?: number | null | undefined;
|
|
32091
32137
|
} | undefined;
|
|
32092
32138
|
bitbucket?: {
|
|
32093
32139
|
branch: string;
|
|
32094
32140
|
workspaceSlug: string;
|
|
32095
32141
|
projectKey: string;
|
|
32096
32142
|
repoSlug: string;
|
|
32143
|
+
userId?: number | null | undefined;
|
|
32097
32144
|
credentialId?: string | undefined;
|
|
32098
32145
|
relativePath?: string | null | undefined;
|
|
32099
32146
|
commitAuthorName?: string | null | undefined;
|
|
32100
32147
|
commitAuthorEmail?: string | null | undefined;
|
|
32101
32148
|
connectionId?: string | null | undefined;
|
|
32102
|
-
userId?: number | null | undefined;
|
|
32103
32149
|
} | undefined;
|
|
32104
32150
|
github?: {
|
|
32105
32151
|
url: string;
|
|
32106
32152
|
branch: string;
|
|
32153
|
+
userId?: number | null | undefined;
|
|
32107
32154
|
credentialId?: string | undefined;
|
|
32108
32155
|
relativePath?: string | null | undefined;
|
|
32109
32156
|
commitAuthorName?: string | null | undefined;
|
|
32110
32157
|
commitAuthorEmail?: string | null | undefined;
|
|
32111
32158
|
connectionId?: string | null | undefined;
|
|
32112
|
-
userId?: number | null | undefined;
|
|
32113
32159
|
} | undefined;
|
|
32114
32160
|
gitlab?: {
|
|
32115
32161
|
branch: string;
|
|
32116
32162
|
projectId: string;
|
|
32117
32163
|
url?: string | null | undefined;
|
|
32164
|
+
userId?: number | null | undefined;
|
|
32118
32165
|
credentialId?: string | undefined;
|
|
32119
32166
|
relativePath?: string | null | undefined;
|
|
32120
32167
|
commitAuthorName?: string | null | undefined;
|
|
32121
32168
|
commitAuthorEmail?: string | null | undefined;
|
|
32122
32169
|
connectionId?: string | null | undefined;
|
|
32123
|
-
userId?: number | null | undefined;
|
|
32124
32170
|
} | undefined;
|
|
32125
32171
|
documentation?: {
|
|
32126
32172
|
environment: "Live" | "Preview";
|
|
@@ -32232,21 +32278,21 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32232
32278
|
}, "strip", z.ZodTypeAny, {
|
|
32233
32279
|
url: string;
|
|
32234
32280
|
branch: string;
|
|
32281
|
+
userId?: number | undefined;
|
|
32235
32282
|
credentialId?: string | undefined;
|
|
32236
32283
|
relativePath?: string | undefined;
|
|
32237
32284
|
commitAuthorName?: string | undefined;
|
|
32238
32285
|
commitAuthorEmail?: string | undefined;
|
|
32239
32286
|
connectionId?: string | undefined;
|
|
32240
|
-
userId?: number | undefined;
|
|
32241
32287
|
}, {
|
|
32242
32288
|
url: string;
|
|
32243
32289
|
branch: string;
|
|
32290
|
+
userId?: number | null | undefined;
|
|
32244
32291
|
credentialId?: string | undefined;
|
|
32245
32292
|
relativePath?: string | null | undefined;
|
|
32246
32293
|
commitAuthorName?: string | null | undefined;
|
|
32247
32294
|
commitAuthorEmail?: string | null | undefined;
|
|
32248
32295
|
connectionId?: string | null | undefined;
|
|
32249
|
-
userId?: number | null | undefined;
|
|
32250
32296
|
}>>;
|
|
32251
32297
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
32252
32298
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32266,24 +32312,24 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32266
32312
|
projectId: string;
|
|
32267
32313
|
repositoryId: string;
|
|
32268
32314
|
url?: string | undefined;
|
|
32315
|
+
userId?: number | undefined;
|
|
32269
32316
|
credentialId?: string | undefined;
|
|
32270
32317
|
relativePath?: string | undefined;
|
|
32271
32318
|
commitAuthorName?: string | undefined;
|
|
32272
32319
|
commitAuthorEmail?: string | undefined;
|
|
32273
32320
|
connectionId?: string | undefined;
|
|
32274
|
-
userId?: number | undefined;
|
|
32275
32321
|
}, {
|
|
32276
32322
|
branch: string;
|
|
32277
32323
|
organizationId: string;
|
|
32278
32324
|
projectId: string;
|
|
32279
32325
|
repositoryId: string;
|
|
32280
32326
|
url?: string | null | undefined;
|
|
32327
|
+
userId?: number | null | undefined;
|
|
32281
32328
|
credentialId?: string | undefined;
|
|
32282
32329
|
relativePath?: string | null | undefined;
|
|
32283
32330
|
commitAuthorName?: string | null | undefined;
|
|
32284
32331
|
commitAuthorEmail?: string | null | undefined;
|
|
32285
32332
|
connectionId?: string | null | undefined;
|
|
32286
|
-
userId?: number | null | undefined;
|
|
32287
32333
|
}>>;
|
|
32288
32334
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
32289
32335
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32299,22 +32345,22 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32299
32345
|
branch: string;
|
|
32300
32346
|
projectId: string;
|
|
32301
32347
|
url?: string | undefined;
|
|
32348
|
+
userId?: number | undefined;
|
|
32302
32349
|
credentialId?: string | undefined;
|
|
32303
32350
|
relativePath?: string | undefined;
|
|
32304
32351
|
commitAuthorName?: string | undefined;
|
|
32305
32352
|
commitAuthorEmail?: string | undefined;
|
|
32306
32353
|
connectionId?: string | undefined;
|
|
32307
|
-
userId?: number | undefined;
|
|
32308
32354
|
}, {
|
|
32309
32355
|
branch: string;
|
|
32310
32356
|
projectId: string;
|
|
32311
32357
|
url?: string | null | undefined;
|
|
32358
|
+
userId?: number | null | undefined;
|
|
32312
32359
|
credentialId?: string | undefined;
|
|
32313
32360
|
relativePath?: string | null | undefined;
|
|
32314
32361
|
commitAuthorName?: string | null | undefined;
|
|
32315
32362
|
commitAuthorEmail?: string | null | undefined;
|
|
32316
32363
|
connectionId?: string | null | undefined;
|
|
32317
|
-
userId?: number | null | undefined;
|
|
32318
32364
|
}>>;
|
|
32319
32365
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
32320
32366
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32332,23 +32378,23 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32332
32378
|
workspaceSlug: string;
|
|
32333
32379
|
projectKey: string;
|
|
32334
32380
|
repoSlug: string;
|
|
32381
|
+
userId?: number | undefined;
|
|
32335
32382
|
credentialId?: string | undefined;
|
|
32336
32383
|
relativePath?: string | undefined;
|
|
32337
32384
|
commitAuthorName?: string | undefined;
|
|
32338
32385
|
commitAuthorEmail?: string | undefined;
|
|
32339
32386
|
connectionId?: string | undefined;
|
|
32340
|
-
userId?: number | undefined;
|
|
32341
32387
|
}, {
|
|
32342
32388
|
branch: string;
|
|
32343
32389
|
workspaceSlug: string;
|
|
32344
32390
|
projectKey: string;
|
|
32345
32391
|
repoSlug: string;
|
|
32392
|
+
userId?: number | null | undefined;
|
|
32346
32393
|
credentialId?: string | undefined;
|
|
32347
32394
|
relativePath?: string | null | undefined;
|
|
32348
32395
|
commitAuthorName?: string | null | undefined;
|
|
32349
32396
|
commitAuthorEmail?: string | null | undefined;
|
|
32350
32397
|
connectionId?: string | null | undefined;
|
|
32351
|
-
userId?: number | null | undefined;
|
|
32352
32398
|
}>>;
|
|
32353
32399
|
id: z.ZodString;
|
|
32354
32400
|
name: z.ZodString;
|
|
@@ -32380,45 +32426,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32380
32426
|
projectId: string;
|
|
32381
32427
|
repositoryId: string;
|
|
32382
32428
|
url?: string | undefined;
|
|
32429
|
+
userId?: number | undefined;
|
|
32383
32430
|
credentialId?: string | undefined;
|
|
32384
32431
|
relativePath?: string | undefined;
|
|
32385
32432
|
commitAuthorName?: string | undefined;
|
|
32386
32433
|
commitAuthorEmail?: string | undefined;
|
|
32387
32434
|
connectionId?: string | undefined;
|
|
32388
|
-
userId?: number | undefined;
|
|
32389
32435
|
} | undefined;
|
|
32390
32436
|
bitbucket?: {
|
|
32391
32437
|
branch: string;
|
|
32392
32438
|
workspaceSlug: string;
|
|
32393
32439
|
projectKey: string;
|
|
32394
32440
|
repoSlug: string;
|
|
32441
|
+
userId?: number | undefined;
|
|
32395
32442
|
credentialId?: string | undefined;
|
|
32396
32443
|
relativePath?: string | undefined;
|
|
32397
32444
|
commitAuthorName?: string | undefined;
|
|
32398
32445
|
commitAuthorEmail?: string | undefined;
|
|
32399
32446
|
connectionId?: string | undefined;
|
|
32400
|
-
userId?: number | undefined;
|
|
32401
32447
|
} | undefined;
|
|
32402
32448
|
github?: {
|
|
32403
32449
|
url: string;
|
|
32404
32450
|
branch: string;
|
|
32451
|
+
userId?: number | undefined;
|
|
32405
32452
|
credentialId?: string | undefined;
|
|
32406
32453
|
relativePath?: string | undefined;
|
|
32407
32454
|
commitAuthorName?: string | undefined;
|
|
32408
32455
|
commitAuthorEmail?: string | undefined;
|
|
32409
32456
|
connectionId?: string | undefined;
|
|
32410
|
-
userId?: number | undefined;
|
|
32411
32457
|
} | undefined;
|
|
32412
32458
|
gitlab?: {
|
|
32413
32459
|
branch: string;
|
|
32414
32460
|
projectId: string;
|
|
32415
32461
|
url?: string | undefined;
|
|
32462
|
+
userId?: number | undefined;
|
|
32416
32463
|
credentialId?: string | undefined;
|
|
32417
32464
|
relativePath?: string | undefined;
|
|
32418
32465
|
commitAuthorName?: string | undefined;
|
|
32419
32466
|
commitAuthorEmail?: string | undefined;
|
|
32420
32467
|
connectionId?: string | undefined;
|
|
32421
|
-
userId?: number | undefined;
|
|
32422
32468
|
} | undefined;
|
|
32423
32469
|
documentation?: {
|
|
32424
32470
|
environment: "Live" | "Preview";
|
|
@@ -32502,12 +32548,12 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32502
32548
|
destinationGithub?: {
|
|
32503
32549
|
url: string;
|
|
32504
32550
|
branch: string;
|
|
32551
|
+
userId?: number | undefined;
|
|
32505
32552
|
credentialId?: string | undefined;
|
|
32506
32553
|
relativePath?: string | undefined;
|
|
32507
32554
|
commitAuthorName?: string | undefined;
|
|
32508
32555
|
commitAuthorEmail?: string | undefined;
|
|
32509
32556
|
connectionId?: string | undefined;
|
|
32510
|
-
userId?: number | undefined;
|
|
32511
32557
|
} | undefined;
|
|
32512
32558
|
destinationAzure?: {
|
|
32513
32559
|
branch: string;
|
|
@@ -32515,35 +32561,35 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32515
32561
|
projectId: string;
|
|
32516
32562
|
repositoryId: string;
|
|
32517
32563
|
url?: string | undefined;
|
|
32564
|
+
userId?: number | undefined;
|
|
32518
32565
|
credentialId?: string | undefined;
|
|
32519
32566
|
relativePath?: string | undefined;
|
|
32520
32567
|
commitAuthorName?: string | undefined;
|
|
32521
32568
|
commitAuthorEmail?: string | undefined;
|
|
32522
32569
|
connectionId?: string | undefined;
|
|
32523
|
-
userId?: number | undefined;
|
|
32524
32570
|
} | undefined;
|
|
32525
32571
|
destinationGitlab?: {
|
|
32526
32572
|
branch: string;
|
|
32527
32573
|
projectId: string;
|
|
32528
32574
|
url?: string | undefined;
|
|
32575
|
+
userId?: number | undefined;
|
|
32529
32576
|
credentialId?: string | undefined;
|
|
32530
32577
|
relativePath?: string | undefined;
|
|
32531
32578
|
commitAuthorName?: string | undefined;
|
|
32532
32579
|
commitAuthorEmail?: string | undefined;
|
|
32533
32580
|
connectionId?: string | undefined;
|
|
32534
|
-
userId?: number | undefined;
|
|
32535
32581
|
} | undefined;
|
|
32536
32582
|
destinationBitbucket?: {
|
|
32537
32583
|
branch: string;
|
|
32538
32584
|
workspaceSlug: string;
|
|
32539
32585
|
projectKey: string;
|
|
32540
32586
|
repoSlug: string;
|
|
32587
|
+
userId?: number | undefined;
|
|
32541
32588
|
credentialId?: string | undefined;
|
|
32542
32589
|
relativePath?: string | undefined;
|
|
32543
32590
|
commitAuthorName?: string | undefined;
|
|
32544
32591
|
commitAuthorEmail?: string | undefined;
|
|
32545
32592
|
connectionId?: string | undefined;
|
|
32546
|
-
userId?: number | undefined;
|
|
32547
32593
|
} | undefined;
|
|
32548
32594
|
}, {
|
|
32549
32595
|
id: string;
|
|
@@ -32566,45 +32612,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32566
32612
|
projectId: string;
|
|
32567
32613
|
repositoryId: string;
|
|
32568
32614
|
url?: string | null | undefined;
|
|
32615
|
+
userId?: number | null | undefined;
|
|
32569
32616
|
credentialId?: string | undefined;
|
|
32570
32617
|
relativePath?: string | null | undefined;
|
|
32571
32618
|
commitAuthorName?: string | null | undefined;
|
|
32572
32619
|
commitAuthorEmail?: string | null | undefined;
|
|
32573
32620
|
connectionId?: string | null | undefined;
|
|
32574
|
-
userId?: number | null | undefined;
|
|
32575
32621
|
} | undefined;
|
|
32576
32622
|
bitbucket?: {
|
|
32577
32623
|
branch: string;
|
|
32578
32624
|
workspaceSlug: string;
|
|
32579
32625
|
projectKey: string;
|
|
32580
32626
|
repoSlug: string;
|
|
32627
|
+
userId?: number | null | undefined;
|
|
32581
32628
|
credentialId?: string | undefined;
|
|
32582
32629
|
relativePath?: string | null | undefined;
|
|
32583
32630
|
commitAuthorName?: string | null | undefined;
|
|
32584
32631
|
commitAuthorEmail?: string | null | undefined;
|
|
32585
32632
|
connectionId?: string | null | undefined;
|
|
32586
|
-
userId?: number | null | undefined;
|
|
32587
32633
|
} | undefined;
|
|
32588
32634
|
github?: {
|
|
32589
32635
|
url: string;
|
|
32590
32636
|
branch: string;
|
|
32637
|
+
userId?: number | null | undefined;
|
|
32591
32638
|
credentialId?: string | undefined;
|
|
32592
32639
|
relativePath?: string | null | undefined;
|
|
32593
32640
|
commitAuthorName?: string | null | undefined;
|
|
32594
32641
|
commitAuthorEmail?: string | null | undefined;
|
|
32595
32642
|
connectionId?: string | null | undefined;
|
|
32596
|
-
userId?: number | null | undefined;
|
|
32597
32643
|
} | undefined;
|
|
32598
32644
|
gitlab?: {
|
|
32599
32645
|
branch: string;
|
|
32600
32646
|
projectId: string;
|
|
32601
32647
|
url?: string | null | undefined;
|
|
32648
|
+
userId?: number | null | undefined;
|
|
32602
32649
|
credentialId?: string | undefined;
|
|
32603
32650
|
relativePath?: string | null | undefined;
|
|
32604
32651
|
commitAuthorName?: string | null | undefined;
|
|
32605
32652
|
commitAuthorEmail?: string | null | undefined;
|
|
32606
32653
|
connectionId?: string | null | undefined;
|
|
32607
|
-
userId?: number | null | undefined;
|
|
32608
32654
|
} | undefined;
|
|
32609
32655
|
documentation?: {
|
|
32610
32656
|
environment: "Live" | "Preview";
|
|
@@ -32688,12 +32734,12 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32688
32734
|
destinationGithub?: {
|
|
32689
32735
|
url: string;
|
|
32690
32736
|
branch: string;
|
|
32737
|
+
userId?: number | null | undefined;
|
|
32691
32738
|
credentialId?: string | undefined;
|
|
32692
32739
|
relativePath?: string | null | undefined;
|
|
32693
32740
|
commitAuthorName?: string | null | undefined;
|
|
32694
32741
|
commitAuthorEmail?: string | null | undefined;
|
|
32695
32742
|
connectionId?: string | null | undefined;
|
|
32696
|
-
userId?: number | null | undefined;
|
|
32697
32743
|
} | undefined;
|
|
32698
32744
|
destinationAzure?: {
|
|
32699
32745
|
branch: string;
|
|
@@ -32701,35 +32747,35 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32701
32747
|
projectId: string;
|
|
32702
32748
|
repositoryId: string;
|
|
32703
32749
|
url?: string | null | undefined;
|
|
32750
|
+
userId?: number | null | undefined;
|
|
32704
32751
|
credentialId?: string | undefined;
|
|
32705
32752
|
relativePath?: string | null | undefined;
|
|
32706
32753
|
commitAuthorName?: string | null | undefined;
|
|
32707
32754
|
commitAuthorEmail?: string | null | undefined;
|
|
32708
32755
|
connectionId?: string | null | undefined;
|
|
32709
|
-
userId?: number | null | undefined;
|
|
32710
32756
|
} | undefined;
|
|
32711
32757
|
destinationGitlab?: {
|
|
32712
32758
|
branch: string;
|
|
32713
32759
|
projectId: string;
|
|
32714
32760
|
url?: string | null | undefined;
|
|
32761
|
+
userId?: number | null | undefined;
|
|
32715
32762
|
credentialId?: string | undefined;
|
|
32716
32763
|
relativePath?: string | null | undefined;
|
|
32717
32764
|
commitAuthorName?: string | null | undefined;
|
|
32718
32765
|
commitAuthorEmail?: string | null | undefined;
|
|
32719
32766
|
connectionId?: string | null | undefined;
|
|
32720
|
-
userId?: number | null | undefined;
|
|
32721
32767
|
} | undefined;
|
|
32722
32768
|
destinationBitbucket?: {
|
|
32723
32769
|
branch: string;
|
|
32724
32770
|
workspaceSlug: string;
|
|
32725
32771
|
projectKey: string;
|
|
32726
32772
|
repoSlug: string;
|
|
32773
|
+
userId?: number | null | undefined;
|
|
32727
32774
|
credentialId?: string | undefined;
|
|
32728
32775
|
relativePath?: string | null | undefined;
|
|
32729
32776
|
commitAuthorName?: string | null | undefined;
|
|
32730
32777
|
commitAuthorEmail?: string | null | undefined;
|
|
32731
32778
|
connectionId?: string | null | undefined;
|
|
32732
|
-
userId?: number | null | undefined;
|
|
32733
32779
|
} | undefined;
|
|
32734
32780
|
}>;
|
|
32735
32781
|
type DTOPipeline = z.infer<typeof DTOPipeline>;
|
|
@@ -33483,6 +33529,61 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33483
33529
|
}>;
|
|
33484
33530
|
type DTOUserProfileUpdateResponse = z.infer<typeof DTOUserProfileUpdateResponse>;
|
|
33485
33531
|
|
|
33532
|
+
/**
|
|
33533
|
+
* Definition of a user profile as inspectable by other users (i.e. reduced version)
|
|
33534
|
+
*/
|
|
33535
|
+
declare const DTOUserProfile: z.ZodObject<{
|
|
33536
|
+
name: z.ZodString;
|
|
33537
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
33538
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
33539
|
+
}, "strip", z.ZodTypeAny, {
|
|
33540
|
+
name: string;
|
|
33541
|
+
avatar?: string | undefined;
|
|
33542
|
+
nickname?: string | undefined;
|
|
33543
|
+
}, {
|
|
33544
|
+
name: string;
|
|
33545
|
+
avatar?: string | undefined;
|
|
33546
|
+
nickname?: string | undefined;
|
|
33547
|
+
}>;
|
|
33548
|
+
type DTOUserProfile = z.infer<typeof DTOUserProfile>;
|
|
33549
|
+
/**
|
|
33550
|
+
* Definition of a user as inspectable by other users (i.e. reduced version)
|
|
33551
|
+
*/
|
|
33552
|
+
declare const DTOUser: z.ZodObject<{
|
|
33553
|
+
id: z.ZodString;
|
|
33554
|
+
email: z.ZodString;
|
|
33555
|
+
profile: z.ZodObject<{
|
|
33556
|
+
name: z.ZodString;
|
|
33557
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
33558
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
33559
|
+
}, "strip", z.ZodTypeAny, {
|
|
33560
|
+
name: string;
|
|
33561
|
+
avatar?: string | undefined;
|
|
33562
|
+
nickname?: string | undefined;
|
|
33563
|
+
}, {
|
|
33564
|
+
name: string;
|
|
33565
|
+
avatar?: string | undefined;
|
|
33566
|
+
nickname?: string | undefined;
|
|
33567
|
+
}>;
|
|
33568
|
+
}, "strip", z.ZodTypeAny, {
|
|
33569
|
+
id: string;
|
|
33570
|
+
profile: {
|
|
33571
|
+
name: string;
|
|
33572
|
+
avatar?: string | undefined;
|
|
33573
|
+
nickname?: string | undefined;
|
|
33574
|
+
};
|
|
33575
|
+
email: string;
|
|
33576
|
+
}, {
|
|
33577
|
+
id: string;
|
|
33578
|
+
profile: {
|
|
33579
|
+
name: string;
|
|
33580
|
+
avatar?: string | undefined;
|
|
33581
|
+
nickname?: string | undefined;
|
|
33582
|
+
};
|
|
33583
|
+
email: string;
|
|
33584
|
+
}>;
|
|
33585
|
+
type DTOUser = z.infer<typeof DTOUser>;
|
|
33586
|
+
|
|
33486
33587
|
declare const DTOGitOrganization: z.ZodObject<{
|
|
33487
33588
|
id: z.ZodString;
|
|
33488
33589
|
name: z.ZodString;
|
|
@@ -40418,24 +40519,24 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40418
40519
|
projectId: string;
|
|
40419
40520
|
repositoryId: string;
|
|
40420
40521
|
url?: string | undefined;
|
|
40522
|
+
userId?: number | undefined;
|
|
40421
40523
|
credentialId?: string | undefined;
|
|
40422
40524
|
relativePath?: string | undefined;
|
|
40423
40525
|
commitAuthorName?: string | undefined;
|
|
40424
40526
|
commitAuthorEmail?: string | undefined;
|
|
40425
40527
|
connectionId?: string | undefined;
|
|
40426
|
-
userId?: number | undefined;
|
|
40427
40528
|
}, {
|
|
40428
40529
|
branch: string;
|
|
40429
40530
|
organizationId: string;
|
|
40430
40531
|
projectId: string;
|
|
40431
40532
|
repositoryId: string;
|
|
40432
40533
|
url?: string | null | undefined;
|
|
40534
|
+
userId?: number | null | undefined;
|
|
40433
40535
|
credentialId?: string | undefined;
|
|
40434
40536
|
relativePath?: string | null | undefined;
|
|
40435
40537
|
commitAuthorName?: string | null | undefined;
|
|
40436
40538
|
commitAuthorEmail?: string | null | undefined;
|
|
40437
40539
|
connectionId?: string | null | undefined;
|
|
40438
|
-
userId?: number | null | undefined;
|
|
40439
40540
|
}>>>;
|
|
40440
40541
|
bitbucket: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40441
40542
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40453,23 +40554,23 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40453
40554
|
workspaceSlug: string;
|
|
40454
40555
|
projectKey: string;
|
|
40455
40556
|
repoSlug: string;
|
|
40557
|
+
userId?: number | undefined;
|
|
40456
40558
|
credentialId?: string | undefined;
|
|
40457
40559
|
relativePath?: string | undefined;
|
|
40458
40560
|
commitAuthorName?: string | undefined;
|
|
40459
40561
|
commitAuthorEmail?: string | undefined;
|
|
40460
40562
|
connectionId?: string | undefined;
|
|
40461
|
-
userId?: number | undefined;
|
|
40462
40563
|
}, {
|
|
40463
40564
|
branch: string;
|
|
40464
40565
|
workspaceSlug: string;
|
|
40465
40566
|
projectKey: string;
|
|
40466
40567
|
repoSlug: string;
|
|
40568
|
+
userId?: number | null | undefined;
|
|
40467
40569
|
credentialId?: string | undefined;
|
|
40468
40570
|
relativePath?: string | null | undefined;
|
|
40469
40571
|
commitAuthorName?: string | null | undefined;
|
|
40470
40572
|
commitAuthorEmail?: string | null | undefined;
|
|
40471
40573
|
connectionId?: string | null | undefined;
|
|
40472
|
-
userId?: number | null | undefined;
|
|
40473
40574
|
}>>>;
|
|
40474
40575
|
github: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40475
40576
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40483,21 +40584,21 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40483
40584
|
}, "strip", z.ZodTypeAny, {
|
|
40484
40585
|
url: string;
|
|
40485
40586
|
branch: string;
|
|
40587
|
+
userId?: number | undefined;
|
|
40486
40588
|
credentialId?: string | undefined;
|
|
40487
40589
|
relativePath?: string | undefined;
|
|
40488
40590
|
commitAuthorName?: string | undefined;
|
|
40489
40591
|
commitAuthorEmail?: string | undefined;
|
|
40490
40592
|
connectionId?: string | undefined;
|
|
40491
|
-
userId?: number | undefined;
|
|
40492
40593
|
}, {
|
|
40493
40594
|
url: string;
|
|
40494
40595
|
branch: string;
|
|
40596
|
+
userId?: number | null | undefined;
|
|
40495
40597
|
credentialId?: string | undefined;
|
|
40496
40598
|
relativePath?: string | null | undefined;
|
|
40497
40599
|
commitAuthorName?: string | null | undefined;
|
|
40498
40600
|
commitAuthorEmail?: string | null | undefined;
|
|
40499
40601
|
connectionId?: string | null | undefined;
|
|
40500
|
-
userId?: number | null | undefined;
|
|
40501
40602
|
}>>>;
|
|
40502
40603
|
gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40503
40604
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40513,22 +40614,22 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40513
40614
|
branch: string;
|
|
40514
40615
|
projectId: string;
|
|
40515
40616
|
url?: string | undefined;
|
|
40617
|
+
userId?: number | undefined;
|
|
40516
40618
|
credentialId?: string | undefined;
|
|
40517
40619
|
relativePath?: string | undefined;
|
|
40518
40620
|
commitAuthorName?: string | undefined;
|
|
40519
40621
|
commitAuthorEmail?: string | undefined;
|
|
40520
40622
|
connectionId?: string | undefined;
|
|
40521
|
-
userId?: number | undefined;
|
|
40522
40623
|
}, {
|
|
40523
40624
|
branch: string;
|
|
40524
40625
|
projectId: string;
|
|
40525
40626
|
url?: string | null | undefined;
|
|
40627
|
+
userId?: number | null | undefined;
|
|
40526
40628
|
credentialId?: string | undefined;
|
|
40527
40629
|
relativePath?: string | null | undefined;
|
|
40528
40630
|
commitAuthorName?: string | null | undefined;
|
|
40529
40631
|
commitAuthorEmail?: string | null | undefined;
|
|
40530
40632
|
connectionId?: string | null | undefined;
|
|
40531
|
-
userId?: number | null | undefined;
|
|
40532
40633
|
}>>>;
|
|
40533
40634
|
documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40534
40635
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -40567,45 +40668,45 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40567
40668
|
projectId: string;
|
|
40568
40669
|
repositoryId: string;
|
|
40569
40670
|
url?: string | undefined;
|
|
40671
|
+
userId?: number | undefined;
|
|
40570
40672
|
credentialId?: string | undefined;
|
|
40571
40673
|
relativePath?: string | undefined;
|
|
40572
40674
|
commitAuthorName?: string | undefined;
|
|
40573
40675
|
commitAuthorEmail?: string | undefined;
|
|
40574
40676
|
connectionId?: string | undefined;
|
|
40575
|
-
userId?: number | undefined;
|
|
40576
40677
|
} | null | undefined;
|
|
40577
40678
|
bitbucket?: {
|
|
40578
40679
|
branch: string;
|
|
40579
40680
|
workspaceSlug: string;
|
|
40580
40681
|
projectKey: string;
|
|
40581
40682
|
repoSlug: string;
|
|
40683
|
+
userId?: number | undefined;
|
|
40582
40684
|
credentialId?: string | undefined;
|
|
40583
40685
|
relativePath?: string | undefined;
|
|
40584
40686
|
commitAuthorName?: string | undefined;
|
|
40585
40687
|
commitAuthorEmail?: string | undefined;
|
|
40586
40688
|
connectionId?: string | undefined;
|
|
40587
|
-
userId?: number | undefined;
|
|
40588
40689
|
} | null | undefined;
|
|
40589
40690
|
github?: {
|
|
40590
40691
|
url: string;
|
|
40591
40692
|
branch: string;
|
|
40693
|
+
userId?: number | undefined;
|
|
40592
40694
|
credentialId?: string | undefined;
|
|
40593
40695
|
relativePath?: string | undefined;
|
|
40594
40696
|
commitAuthorName?: string | undefined;
|
|
40595
40697
|
commitAuthorEmail?: string | undefined;
|
|
40596
40698
|
connectionId?: string | undefined;
|
|
40597
|
-
userId?: number | undefined;
|
|
40598
40699
|
} | null | undefined;
|
|
40599
40700
|
gitlab?: {
|
|
40600
40701
|
branch: string;
|
|
40601
40702
|
projectId: string;
|
|
40602
40703
|
url?: string | undefined;
|
|
40704
|
+
userId?: number | undefined;
|
|
40603
40705
|
credentialId?: string | undefined;
|
|
40604
40706
|
relativePath?: string | undefined;
|
|
40605
40707
|
commitAuthorName?: string | undefined;
|
|
40606
40708
|
commitAuthorEmail?: string | undefined;
|
|
40607
40709
|
connectionId?: string | undefined;
|
|
40608
|
-
userId?: number | undefined;
|
|
40609
40710
|
} | null | undefined;
|
|
40610
40711
|
documentation?: {
|
|
40611
40712
|
environment: "Live" | "Preview";
|
|
@@ -40623,45 +40724,45 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40623
40724
|
projectId: string;
|
|
40624
40725
|
repositoryId: string;
|
|
40625
40726
|
url?: string | null | undefined;
|
|
40727
|
+
userId?: number | null | undefined;
|
|
40626
40728
|
credentialId?: string | undefined;
|
|
40627
40729
|
relativePath?: string | null | undefined;
|
|
40628
40730
|
commitAuthorName?: string | null | undefined;
|
|
40629
40731
|
commitAuthorEmail?: string | null | undefined;
|
|
40630
40732
|
connectionId?: string | null | undefined;
|
|
40631
|
-
userId?: number | null | undefined;
|
|
40632
40733
|
} | null | undefined;
|
|
40633
40734
|
bitbucket?: {
|
|
40634
40735
|
branch: string;
|
|
40635
40736
|
workspaceSlug: string;
|
|
40636
40737
|
projectKey: string;
|
|
40637
40738
|
repoSlug: string;
|
|
40739
|
+
userId?: number | null | undefined;
|
|
40638
40740
|
credentialId?: string | undefined;
|
|
40639
40741
|
relativePath?: string | null | undefined;
|
|
40640
40742
|
commitAuthorName?: string | null | undefined;
|
|
40641
40743
|
commitAuthorEmail?: string | null | undefined;
|
|
40642
40744
|
connectionId?: string | null | undefined;
|
|
40643
|
-
userId?: number | null | undefined;
|
|
40644
40745
|
} | null | undefined;
|
|
40645
40746
|
github?: {
|
|
40646
40747
|
url: string;
|
|
40647
40748
|
branch: string;
|
|
40749
|
+
userId?: number | null | undefined;
|
|
40648
40750
|
credentialId?: string | undefined;
|
|
40649
40751
|
relativePath?: string | null | undefined;
|
|
40650
40752
|
commitAuthorName?: string | null | undefined;
|
|
40651
40753
|
commitAuthorEmail?: string | null | undefined;
|
|
40652
40754
|
connectionId?: string | null | undefined;
|
|
40653
|
-
userId?: number | null | undefined;
|
|
40654
40755
|
} | null | undefined;
|
|
40655
40756
|
gitlab?: {
|
|
40656
40757
|
branch: string;
|
|
40657
40758
|
projectId: string;
|
|
40658
40759
|
url?: string | null | undefined;
|
|
40760
|
+
userId?: number | null | undefined;
|
|
40659
40761
|
credentialId?: string | undefined;
|
|
40660
40762
|
relativePath?: string | null | undefined;
|
|
40661
40763
|
commitAuthorName?: string | null | undefined;
|
|
40662
40764
|
commitAuthorEmail?: string | null | undefined;
|
|
40663
40765
|
connectionId?: string | null | undefined;
|
|
40664
|
-
userId?: number | null | undefined;
|
|
40665
40766
|
} | null | undefined;
|
|
40666
40767
|
documentation?: {
|
|
40667
40768
|
environment: "Live" | "Preview";
|
|
@@ -40693,45 +40794,45 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40693
40794
|
projectId: string;
|
|
40694
40795
|
repositoryId: string;
|
|
40695
40796
|
url?: string | undefined;
|
|
40797
|
+
userId?: number | undefined;
|
|
40696
40798
|
credentialId?: string | undefined;
|
|
40697
40799
|
relativePath?: string | undefined;
|
|
40698
40800
|
commitAuthorName?: string | undefined;
|
|
40699
40801
|
commitAuthorEmail?: string | undefined;
|
|
40700
40802
|
connectionId?: string | undefined;
|
|
40701
|
-
userId?: number | undefined;
|
|
40702
40803
|
} | null | undefined;
|
|
40703
40804
|
bitbucket?: {
|
|
40704
40805
|
branch: string;
|
|
40705
40806
|
workspaceSlug: string;
|
|
40706
40807
|
projectKey: string;
|
|
40707
40808
|
repoSlug: string;
|
|
40809
|
+
userId?: number | undefined;
|
|
40708
40810
|
credentialId?: string | undefined;
|
|
40709
40811
|
relativePath?: string | undefined;
|
|
40710
40812
|
commitAuthorName?: string | undefined;
|
|
40711
40813
|
commitAuthorEmail?: string | undefined;
|
|
40712
40814
|
connectionId?: string | undefined;
|
|
40713
|
-
userId?: number | undefined;
|
|
40714
40815
|
} | null | undefined;
|
|
40715
40816
|
github?: {
|
|
40716
40817
|
url: string;
|
|
40717
40818
|
branch: string;
|
|
40819
|
+
userId?: number | undefined;
|
|
40718
40820
|
credentialId?: string | undefined;
|
|
40719
40821
|
relativePath?: string | undefined;
|
|
40720
40822
|
commitAuthorName?: string | undefined;
|
|
40721
40823
|
commitAuthorEmail?: string | undefined;
|
|
40722
40824
|
connectionId?: string | undefined;
|
|
40723
|
-
userId?: number | undefined;
|
|
40724
40825
|
} | null | undefined;
|
|
40725
40826
|
gitlab?: {
|
|
40726
40827
|
branch: string;
|
|
40727
40828
|
projectId: string;
|
|
40728
40829
|
url?: string | undefined;
|
|
40830
|
+
userId?: number | undefined;
|
|
40729
40831
|
credentialId?: string | undefined;
|
|
40730
40832
|
relativePath?: string | undefined;
|
|
40731
40833
|
commitAuthorName?: string | undefined;
|
|
40732
40834
|
commitAuthorEmail?: string | undefined;
|
|
40733
40835
|
connectionId?: string | undefined;
|
|
40734
|
-
userId?: number | undefined;
|
|
40735
40836
|
} | null | undefined;
|
|
40736
40837
|
documentation?: {
|
|
40737
40838
|
environment: "Live" | "Preview";
|
|
@@ -40766,45 +40867,45 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40766
40867
|
projectId: string;
|
|
40767
40868
|
repositoryId: string;
|
|
40768
40869
|
url?: string | null | undefined;
|
|
40870
|
+
userId?: number | null | undefined;
|
|
40769
40871
|
credentialId?: string | undefined;
|
|
40770
40872
|
relativePath?: string | null | undefined;
|
|
40771
40873
|
commitAuthorName?: string | null | undefined;
|
|
40772
40874
|
commitAuthorEmail?: string | null | undefined;
|
|
40773
40875
|
connectionId?: string | null | undefined;
|
|
40774
|
-
userId?: number | null | undefined;
|
|
40775
40876
|
} | null | undefined;
|
|
40776
40877
|
bitbucket?: {
|
|
40777
40878
|
branch: string;
|
|
40778
40879
|
workspaceSlug: string;
|
|
40779
40880
|
projectKey: string;
|
|
40780
40881
|
repoSlug: string;
|
|
40882
|
+
userId?: number | null | undefined;
|
|
40781
40883
|
credentialId?: string | undefined;
|
|
40782
40884
|
relativePath?: string | null | undefined;
|
|
40783
40885
|
commitAuthorName?: string | null | undefined;
|
|
40784
40886
|
commitAuthorEmail?: string | null | undefined;
|
|
40785
40887
|
connectionId?: string | null | undefined;
|
|
40786
|
-
userId?: number | null | undefined;
|
|
40787
40888
|
} | null | undefined;
|
|
40788
40889
|
github?: {
|
|
40789
40890
|
url: string;
|
|
40790
40891
|
branch: string;
|
|
40892
|
+
userId?: number | null | undefined;
|
|
40791
40893
|
credentialId?: string | undefined;
|
|
40792
40894
|
relativePath?: string | null | undefined;
|
|
40793
40895
|
commitAuthorName?: string | null | undefined;
|
|
40794
40896
|
commitAuthorEmail?: string | null | undefined;
|
|
40795
40897
|
connectionId?: string | null | undefined;
|
|
40796
|
-
userId?: number | null | undefined;
|
|
40797
40898
|
} | null | undefined;
|
|
40798
40899
|
gitlab?: {
|
|
40799
40900
|
branch: string;
|
|
40800
40901
|
projectId: string;
|
|
40801
40902
|
url?: string | null | undefined;
|
|
40903
|
+
userId?: number | null | undefined;
|
|
40802
40904
|
credentialId?: string | undefined;
|
|
40803
40905
|
relativePath?: string | null | undefined;
|
|
40804
40906
|
commitAuthorName?: string | null | undefined;
|
|
40805
40907
|
commitAuthorEmail?: string | null | undefined;
|
|
40806
40908
|
connectionId?: string | null | undefined;
|
|
40807
|
-
userId?: number | null | undefined;
|
|
40808
40909
|
} | null | undefined;
|
|
40809
40910
|
documentation?: {
|
|
40810
40911
|
environment: "Live" | "Preview";
|
|
@@ -40868,24 +40969,24 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40868
40969
|
projectId: string;
|
|
40869
40970
|
repositoryId: string;
|
|
40870
40971
|
url?: string | undefined;
|
|
40972
|
+
userId?: number | undefined;
|
|
40871
40973
|
credentialId?: string | undefined;
|
|
40872
40974
|
relativePath?: string | undefined;
|
|
40873
40975
|
commitAuthorName?: string | undefined;
|
|
40874
40976
|
commitAuthorEmail?: string | undefined;
|
|
40875
40977
|
connectionId?: string | undefined;
|
|
40876
|
-
userId?: number | undefined;
|
|
40877
40978
|
}, {
|
|
40878
40979
|
branch: string;
|
|
40879
40980
|
organizationId: string;
|
|
40880
40981
|
projectId: string;
|
|
40881
40982
|
repositoryId: string;
|
|
40882
40983
|
url?: string | null | undefined;
|
|
40984
|
+
userId?: number | null | undefined;
|
|
40883
40985
|
credentialId?: string | undefined;
|
|
40884
40986
|
relativePath?: string | null | undefined;
|
|
40885
40987
|
commitAuthorName?: string | null | undefined;
|
|
40886
40988
|
commitAuthorEmail?: string | null | undefined;
|
|
40887
40989
|
connectionId?: string | null | undefined;
|
|
40888
|
-
userId?: number | null | undefined;
|
|
40889
40990
|
}>>>;
|
|
40890
40991
|
bitbucket: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40891
40992
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40903,23 +41004,23 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40903
41004
|
workspaceSlug: string;
|
|
40904
41005
|
projectKey: string;
|
|
40905
41006
|
repoSlug: string;
|
|
41007
|
+
userId?: number | undefined;
|
|
40906
41008
|
credentialId?: string | undefined;
|
|
40907
41009
|
relativePath?: string | undefined;
|
|
40908
41010
|
commitAuthorName?: string | undefined;
|
|
40909
41011
|
commitAuthorEmail?: string | undefined;
|
|
40910
41012
|
connectionId?: string | undefined;
|
|
40911
|
-
userId?: number | undefined;
|
|
40912
41013
|
}, {
|
|
40913
41014
|
branch: string;
|
|
40914
41015
|
workspaceSlug: string;
|
|
40915
41016
|
projectKey: string;
|
|
40916
41017
|
repoSlug: string;
|
|
41018
|
+
userId?: number | null | undefined;
|
|
40917
41019
|
credentialId?: string | undefined;
|
|
40918
41020
|
relativePath?: string | null | undefined;
|
|
40919
41021
|
commitAuthorName?: string | null | undefined;
|
|
40920
41022
|
commitAuthorEmail?: string | null | undefined;
|
|
40921
41023
|
connectionId?: string | null | undefined;
|
|
40922
|
-
userId?: number | null | undefined;
|
|
40923
41024
|
}>>>;
|
|
40924
41025
|
github: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40925
41026
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40933,21 +41034,21 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40933
41034
|
}, "strip", z.ZodTypeAny, {
|
|
40934
41035
|
url: string;
|
|
40935
41036
|
branch: string;
|
|
41037
|
+
userId?: number | undefined;
|
|
40936
41038
|
credentialId?: string | undefined;
|
|
40937
41039
|
relativePath?: string | undefined;
|
|
40938
41040
|
commitAuthorName?: string | undefined;
|
|
40939
41041
|
commitAuthorEmail?: string | undefined;
|
|
40940
41042
|
connectionId?: string | undefined;
|
|
40941
|
-
userId?: number | undefined;
|
|
40942
41043
|
}, {
|
|
40943
41044
|
url: string;
|
|
40944
41045
|
branch: string;
|
|
41046
|
+
userId?: number | null | undefined;
|
|
40945
41047
|
credentialId?: string | undefined;
|
|
40946
41048
|
relativePath?: string | null | undefined;
|
|
40947
41049
|
commitAuthorName?: string | null | undefined;
|
|
40948
41050
|
commitAuthorEmail?: string | null | undefined;
|
|
40949
41051
|
connectionId?: string | null | undefined;
|
|
40950
|
-
userId?: number | null | undefined;
|
|
40951
41052
|
}>>>;
|
|
40952
41053
|
gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40953
41054
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40963,22 +41064,22 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40963
41064
|
branch: string;
|
|
40964
41065
|
projectId: string;
|
|
40965
41066
|
url?: string | undefined;
|
|
41067
|
+
userId?: number | undefined;
|
|
40966
41068
|
credentialId?: string | undefined;
|
|
40967
41069
|
relativePath?: string | undefined;
|
|
40968
41070
|
commitAuthorName?: string | undefined;
|
|
40969
41071
|
commitAuthorEmail?: string | undefined;
|
|
40970
41072
|
connectionId?: string | undefined;
|
|
40971
|
-
userId?: number | undefined;
|
|
40972
41073
|
}, {
|
|
40973
41074
|
branch: string;
|
|
40974
41075
|
projectId: string;
|
|
40975
41076
|
url?: string | null | undefined;
|
|
41077
|
+
userId?: number | null | undefined;
|
|
40976
41078
|
credentialId?: string | undefined;
|
|
40977
41079
|
relativePath?: string | null | undefined;
|
|
40978
41080
|
commitAuthorName?: string | null | undefined;
|
|
40979
41081
|
commitAuthorEmail?: string | null | undefined;
|
|
40980
41082
|
connectionId?: string | null | undefined;
|
|
40981
|
-
userId?: number | null | undefined;
|
|
40982
41083
|
}>>>;
|
|
40983
41084
|
documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40984
41085
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -41017,45 +41118,45 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41017
41118
|
projectId: string;
|
|
41018
41119
|
repositoryId: string;
|
|
41019
41120
|
url?: string | undefined;
|
|
41121
|
+
userId?: number | undefined;
|
|
41020
41122
|
credentialId?: string | undefined;
|
|
41021
41123
|
relativePath?: string | undefined;
|
|
41022
41124
|
commitAuthorName?: string | undefined;
|
|
41023
41125
|
commitAuthorEmail?: string | undefined;
|
|
41024
41126
|
connectionId?: string | undefined;
|
|
41025
|
-
userId?: number | undefined;
|
|
41026
41127
|
} | null | undefined;
|
|
41027
41128
|
bitbucket?: {
|
|
41028
41129
|
branch: string;
|
|
41029
41130
|
workspaceSlug: string;
|
|
41030
41131
|
projectKey: string;
|
|
41031
41132
|
repoSlug: string;
|
|
41133
|
+
userId?: number | undefined;
|
|
41032
41134
|
credentialId?: string | undefined;
|
|
41033
41135
|
relativePath?: string | undefined;
|
|
41034
41136
|
commitAuthorName?: string | undefined;
|
|
41035
41137
|
commitAuthorEmail?: string | undefined;
|
|
41036
41138
|
connectionId?: string | undefined;
|
|
41037
|
-
userId?: number | undefined;
|
|
41038
41139
|
} | null | undefined;
|
|
41039
41140
|
github?: {
|
|
41040
41141
|
url: string;
|
|
41041
41142
|
branch: string;
|
|
41143
|
+
userId?: number | undefined;
|
|
41042
41144
|
credentialId?: string | undefined;
|
|
41043
41145
|
relativePath?: string | undefined;
|
|
41044
41146
|
commitAuthorName?: string | undefined;
|
|
41045
41147
|
commitAuthorEmail?: string | undefined;
|
|
41046
41148
|
connectionId?: string | undefined;
|
|
41047
|
-
userId?: number | undefined;
|
|
41048
41149
|
} | null | undefined;
|
|
41049
41150
|
gitlab?: {
|
|
41050
41151
|
branch: string;
|
|
41051
41152
|
projectId: string;
|
|
41052
41153
|
url?: string | undefined;
|
|
41154
|
+
userId?: number | undefined;
|
|
41053
41155
|
credentialId?: string | undefined;
|
|
41054
41156
|
relativePath?: string | undefined;
|
|
41055
41157
|
commitAuthorName?: string | undefined;
|
|
41056
41158
|
commitAuthorEmail?: string | undefined;
|
|
41057
41159
|
connectionId?: string | undefined;
|
|
41058
|
-
userId?: number | undefined;
|
|
41059
41160
|
} | null | undefined;
|
|
41060
41161
|
documentation?: {
|
|
41061
41162
|
environment: "Live" | "Preview";
|
|
@@ -41073,45 +41174,45 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41073
41174
|
projectId: string;
|
|
41074
41175
|
repositoryId: string;
|
|
41075
41176
|
url?: string | null | undefined;
|
|
41177
|
+
userId?: number | null | undefined;
|
|
41076
41178
|
credentialId?: string | undefined;
|
|
41077
41179
|
relativePath?: string | null | undefined;
|
|
41078
41180
|
commitAuthorName?: string | null | undefined;
|
|
41079
41181
|
commitAuthorEmail?: string | null | undefined;
|
|
41080
41182
|
connectionId?: string | null | undefined;
|
|
41081
|
-
userId?: number | null | undefined;
|
|
41082
41183
|
} | null | undefined;
|
|
41083
41184
|
bitbucket?: {
|
|
41084
41185
|
branch: string;
|
|
41085
41186
|
workspaceSlug: string;
|
|
41086
41187
|
projectKey: string;
|
|
41087
41188
|
repoSlug: string;
|
|
41189
|
+
userId?: number | null | undefined;
|
|
41088
41190
|
credentialId?: string | undefined;
|
|
41089
41191
|
relativePath?: string | null | undefined;
|
|
41090
41192
|
commitAuthorName?: string | null | undefined;
|
|
41091
41193
|
commitAuthorEmail?: string | null | undefined;
|
|
41092
41194
|
connectionId?: string | null | undefined;
|
|
41093
|
-
userId?: number | null | undefined;
|
|
41094
41195
|
} | null | undefined;
|
|
41095
41196
|
github?: {
|
|
41096
41197
|
url: string;
|
|
41097
41198
|
branch: string;
|
|
41199
|
+
userId?: number | null | undefined;
|
|
41098
41200
|
credentialId?: string | undefined;
|
|
41099
41201
|
relativePath?: string | null | undefined;
|
|
41100
41202
|
commitAuthorName?: string | null | undefined;
|
|
41101
41203
|
commitAuthorEmail?: string | null | undefined;
|
|
41102
41204
|
connectionId?: string | null | undefined;
|
|
41103
|
-
userId?: number | null | undefined;
|
|
41104
41205
|
} | null | undefined;
|
|
41105
41206
|
gitlab?: {
|
|
41106
41207
|
branch: string;
|
|
41107
41208
|
projectId: string;
|
|
41108
41209
|
url?: string | null | undefined;
|
|
41210
|
+
userId?: number | null | undefined;
|
|
41109
41211
|
credentialId?: string | undefined;
|
|
41110
41212
|
relativePath?: string | null | undefined;
|
|
41111
41213
|
commitAuthorName?: string | null | undefined;
|
|
41112
41214
|
commitAuthorEmail?: string | null | undefined;
|
|
41113
41215
|
connectionId?: string | null | undefined;
|
|
41114
|
-
userId?: number | null | undefined;
|
|
41115
41216
|
} | null | undefined;
|
|
41116
41217
|
documentation?: {
|
|
41117
41218
|
environment: "Live" | "Preview";
|
|
@@ -41146,45 +41247,45 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41146
41247
|
projectId: string;
|
|
41147
41248
|
repositoryId: string;
|
|
41148
41249
|
url?: string | undefined;
|
|
41250
|
+
userId?: number | undefined;
|
|
41149
41251
|
credentialId?: string | undefined;
|
|
41150
41252
|
relativePath?: string | undefined;
|
|
41151
41253
|
commitAuthorName?: string | undefined;
|
|
41152
41254
|
commitAuthorEmail?: string | undefined;
|
|
41153
41255
|
connectionId?: string | undefined;
|
|
41154
|
-
userId?: number | undefined;
|
|
41155
41256
|
} | null | undefined;
|
|
41156
41257
|
bitbucket?: {
|
|
41157
41258
|
branch: string;
|
|
41158
41259
|
workspaceSlug: string;
|
|
41159
41260
|
projectKey: string;
|
|
41160
41261
|
repoSlug: string;
|
|
41262
|
+
userId?: number | undefined;
|
|
41161
41263
|
credentialId?: string | undefined;
|
|
41162
41264
|
relativePath?: string | undefined;
|
|
41163
41265
|
commitAuthorName?: string | undefined;
|
|
41164
41266
|
commitAuthorEmail?: string | undefined;
|
|
41165
41267
|
connectionId?: string | undefined;
|
|
41166
|
-
userId?: number | undefined;
|
|
41167
41268
|
} | null | undefined;
|
|
41168
41269
|
github?: {
|
|
41169
41270
|
url: string;
|
|
41170
41271
|
branch: string;
|
|
41272
|
+
userId?: number | undefined;
|
|
41171
41273
|
credentialId?: string | undefined;
|
|
41172
41274
|
relativePath?: string | undefined;
|
|
41173
41275
|
commitAuthorName?: string | undefined;
|
|
41174
41276
|
commitAuthorEmail?: string | undefined;
|
|
41175
41277
|
connectionId?: string | undefined;
|
|
41176
|
-
userId?: number | undefined;
|
|
41177
41278
|
} | null | undefined;
|
|
41178
41279
|
gitlab?: {
|
|
41179
41280
|
branch: string;
|
|
41180
41281
|
projectId: string;
|
|
41181
41282
|
url?: string | undefined;
|
|
41283
|
+
userId?: number | undefined;
|
|
41182
41284
|
credentialId?: string | undefined;
|
|
41183
41285
|
relativePath?: string | undefined;
|
|
41184
41286
|
commitAuthorName?: string | undefined;
|
|
41185
41287
|
commitAuthorEmail?: string | undefined;
|
|
41186
41288
|
connectionId?: string | undefined;
|
|
41187
|
-
userId?: number | undefined;
|
|
41188
41289
|
} | null | undefined;
|
|
41189
41290
|
documentation?: {
|
|
41190
41291
|
environment: "Live" | "Preview";
|
|
@@ -41220,45 +41321,45 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41220
41321
|
projectId: string;
|
|
41221
41322
|
repositoryId: string;
|
|
41222
41323
|
url?: string | null | undefined;
|
|
41324
|
+
userId?: number | null | undefined;
|
|
41223
41325
|
credentialId?: string | undefined;
|
|
41224
41326
|
relativePath?: string | null | undefined;
|
|
41225
41327
|
commitAuthorName?: string | null | undefined;
|
|
41226
41328
|
commitAuthorEmail?: string | null | undefined;
|
|
41227
41329
|
connectionId?: string | null | undefined;
|
|
41228
|
-
userId?: number | null | undefined;
|
|
41229
41330
|
} | null | undefined;
|
|
41230
41331
|
bitbucket?: {
|
|
41231
41332
|
branch: string;
|
|
41232
41333
|
workspaceSlug: string;
|
|
41233
41334
|
projectKey: string;
|
|
41234
41335
|
repoSlug: string;
|
|
41336
|
+
userId?: number | null | undefined;
|
|
41235
41337
|
credentialId?: string | undefined;
|
|
41236
41338
|
relativePath?: string | null | undefined;
|
|
41237
41339
|
commitAuthorName?: string | null | undefined;
|
|
41238
41340
|
commitAuthorEmail?: string | null | undefined;
|
|
41239
41341
|
connectionId?: string | null | undefined;
|
|
41240
|
-
userId?: number | null | undefined;
|
|
41241
41342
|
} | null | undefined;
|
|
41242
41343
|
github?: {
|
|
41243
41344
|
url: string;
|
|
41244
41345
|
branch: string;
|
|
41346
|
+
userId?: number | null | undefined;
|
|
41245
41347
|
credentialId?: string | undefined;
|
|
41246
41348
|
relativePath?: string | null | undefined;
|
|
41247
41349
|
commitAuthorName?: string | null | undefined;
|
|
41248
41350
|
commitAuthorEmail?: string | null | undefined;
|
|
41249
41351
|
connectionId?: string | null | undefined;
|
|
41250
|
-
userId?: number | null | undefined;
|
|
41251
41352
|
} | null | undefined;
|
|
41252
41353
|
gitlab?: {
|
|
41253
41354
|
branch: string;
|
|
41254
41355
|
projectId: string;
|
|
41255
41356
|
url?: string | null | undefined;
|
|
41357
|
+
userId?: number | null | undefined;
|
|
41256
41358
|
credentialId?: string | undefined;
|
|
41257
41359
|
relativePath?: string | null | undefined;
|
|
41258
41360
|
commitAuthorName?: string | null | undefined;
|
|
41259
41361
|
commitAuthorEmail?: string | null | undefined;
|
|
41260
41362
|
connectionId?: string | null | undefined;
|
|
41261
|
-
userId?: number | null | undefined;
|
|
41262
41363
|
} | null | undefined;
|
|
41263
41364
|
documentation?: {
|
|
41264
41365
|
environment: "Live" | "Preview";
|
|
@@ -41346,20 +41447,20 @@ declare const DTOUserNotificationSettingsResponse: z.ZodObject<{
|
|
|
41346
41447
|
}>;
|
|
41347
41448
|
}, "strip", z.ZodTypeAny, {
|
|
41348
41449
|
workspaceId: string;
|
|
41450
|
+
userId: string;
|
|
41349
41451
|
notificationSettings: {
|
|
41350
41452
|
liveblocksNotificationSettings: {
|
|
41351
41453
|
sendCommentNotificationEmails: boolean;
|
|
41352
41454
|
};
|
|
41353
41455
|
};
|
|
41354
|
-
userId: string;
|
|
41355
41456
|
}, {
|
|
41356
41457
|
workspaceId: string;
|
|
41458
|
+
userId: string;
|
|
41357
41459
|
notificationSettings: {
|
|
41358
41460
|
liveblocksNotificationSettings: {
|
|
41359
41461
|
sendCommentNotificationEmails: boolean;
|
|
41360
41462
|
};
|
|
41361
41463
|
};
|
|
41362
|
-
userId: string;
|
|
41363
41464
|
}>;
|
|
41364
41465
|
type DTOUserNotificationSettingsResponse = z.infer<typeof DTOUserNotificationSettingsResponse>;
|
|
41365
41466
|
|
|
@@ -44516,4 +44617,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
44516
44617
|
|
|
44517
44618
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
44518
44619
|
|
|
44519
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, 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, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
44620
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, 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, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserNotificationSettingsResponse, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|