@supernova-studio/client 0.54.4 → 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 +350 -243
- package/dist/index.d.ts +350 -243
- package/dist/index.js +128 -88
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1360 -1320
- 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
|
@@ -4858,6 +4858,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4858
4858
|
} | null | undefined>;
|
|
4859
4859
|
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
4860
4860
|
approvalRequiredForPublishing: z.ZodBoolean;
|
|
4861
|
+
accessMode: z.ZodEnum<["Open", "InviteOnly"]>;
|
|
4861
4862
|
createdAt: z.ZodDate;
|
|
4862
4863
|
updatedAt: z.ZodDate;
|
|
4863
4864
|
}, "description" | "name" | "docExporterId">, {
|
|
@@ -4891,6 +4892,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4891
4892
|
basePrefixes: string[];
|
|
4892
4893
|
isApprovalFeatureEnabled: boolean;
|
|
4893
4894
|
approvalRequiredForPublishing: boolean;
|
|
4895
|
+
accessMode: "Open" | "InviteOnly";
|
|
4894
4896
|
docUserSlug?: string | undefined;
|
|
4895
4897
|
docViewUrl?: string | undefined;
|
|
4896
4898
|
designSystemSwitcher?: {
|
|
@@ -4915,6 +4917,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4915
4917
|
basePrefixes: string[];
|
|
4916
4918
|
isApprovalFeatureEnabled: boolean;
|
|
4917
4919
|
approvalRequiredForPublishing: boolean;
|
|
4920
|
+
accessMode: "Open" | "InviteOnly";
|
|
4918
4921
|
docUserSlug?: string | null | undefined;
|
|
4919
4922
|
docViewUrl?: string | null | undefined;
|
|
4920
4923
|
designSystemSwitcher?: {
|
|
@@ -5000,6 +5003,52 @@ declare const DTOExporterPropertyListResponse: z.ZodObject<{
|
|
|
5000
5003
|
}>;
|
|
5001
5004
|
type DTOExporterPropertyListResponse = z.infer<typeof DTOExporterPropertyListResponse>;
|
|
5002
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
|
+
|
|
5003
5052
|
declare const VersionSQSPayload: z.ZodObject<{
|
|
5004
5053
|
jobId: z.ZodString;
|
|
5005
5054
|
designSystemId: z.ZodString;
|
|
@@ -8048,24 +8097,24 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8048
8097
|
projectId: string;
|
|
8049
8098
|
repositoryId: string;
|
|
8050
8099
|
url?: string | undefined;
|
|
8100
|
+
userId?: number | undefined;
|
|
8051
8101
|
credentialId?: string | undefined;
|
|
8052
8102
|
relativePath?: string | undefined;
|
|
8053
8103
|
commitAuthorName?: string | undefined;
|
|
8054
8104
|
commitAuthorEmail?: string | undefined;
|
|
8055
8105
|
connectionId?: string | undefined;
|
|
8056
|
-
userId?: number | undefined;
|
|
8057
8106
|
}, {
|
|
8058
8107
|
branch: string;
|
|
8059
8108
|
organizationId: string;
|
|
8060
8109
|
projectId: string;
|
|
8061
8110
|
repositoryId: string;
|
|
8062
8111
|
url?: string | null | undefined;
|
|
8112
|
+
userId?: number | null | undefined;
|
|
8063
8113
|
credentialId?: string | undefined;
|
|
8064
8114
|
relativePath?: string | null | undefined;
|
|
8065
8115
|
commitAuthorName?: string | null | undefined;
|
|
8066
8116
|
commitAuthorEmail?: string | null | undefined;
|
|
8067
8117
|
connectionId?: string | null | undefined;
|
|
8068
|
-
userId?: number | null | undefined;
|
|
8069
8118
|
}>>;
|
|
8070
8119
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
8071
8120
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -8083,23 +8132,23 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8083
8132
|
workspaceSlug: string;
|
|
8084
8133
|
projectKey: string;
|
|
8085
8134
|
repoSlug: string;
|
|
8135
|
+
userId?: number | undefined;
|
|
8086
8136
|
credentialId?: string | undefined;
|
|
8087
8137
|
relativePath?: string | undefined;
|
|
8088
8138
|
commitAuthorName?: string | undefined;
|
|
8089
8139
|
commitAuthorEmail?: string | undefined;
|
|
8090
8140
|
connectionId?: string | undefined;
|
|
8091
|
-
userId?: number | undefined;
|
|
8092
8141
|
}, {
|
|
8093
8142
|
branch: string;
|
|
8094
8143
|
workspaceSlug: string;
|
|
8095
8144
|
projectKey: string;
|
|
8096
8145
|
repoSlug: string;
|
|
8146
|
+
userId?: number | null | undefined;
|
|
8097
8147
|
credentialId?: string | undefined;
|
|
8098
8148
|
relativePath?: string | null | undefined;
|
|
8099
8149
|
commitAuthorName?: string | null | undefined;
|
|
8100
8150
|
commitAuthorEmail?: string | null | undefined;
|
|
8101
8151
|
connectionId?: string | null | undefined;
|
|
8102
|
-
userId?: number | null | undefined;
|
|
8103
8152
|
}>>;
|
|
8104
8153
|
github: z.ZodOptional<z.ZodObject<{
|
|
8105
8154
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -8113,21 +8162,21 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8113
8162
|
}, "strip", z.ZodTypeAny, {
|
|
8114
8163
|
url: string;
|
|
8115
8164
|
branch: string;
|
|
8165
|
+
userId?: number | undefined;
|
|
8116
8166
|
credentialId?: string | undefined;
|
|
8117
8167
|
relativePath?: string | undefined;
|
|
8118
8168
|
commitAuthorName?: string | undefined;
|
|
8119
8169
|
commitAuthorEmail?: string | undefined;
|
|
8120
8170
|
connectionId?: string | undefined;
|
|
8121
|
-
userId?: number | undefined;
|
|
8122
8171
|
}, {
|
|
8123
8172
|
url: string;
|
|
8124
8173
|
branch: string;
|
|
8174
|
+
userId?: number | null | undefined;
|
|
8125
8175
|
credentialId?: string | undefined;
|
|
8126
8176
|
relativePath?: string | null | undefined;
|
|
8127
8177
|
commitAuthorName?: string | null | undefined;
|
|
8128
8178
|
commitAuthorEmail?: string | null | undefined;
|
|
8129
8179
|
connectionId?: string | null | undefined;
|
|
8130
|
-
userId?: number | null | undefined;
|
|
8131
8180
|
}>>;
|
|
8132
8181
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
8133
8182
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -8143,22 +8192,22 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8143
8192
|
branch: string;
|
|
8144
8193
|
projectId: string;
|
|
8145
8194
|
url?: string | undefined;
|
|
8195
|
+
userId?: number | undefined;
|
|
8146
8196
|
credentialId?: string | undefined;
|
|
8147
8197
|
relativePath?: string | undefined;
|
|
8148
8198
|
commitAuthorName?: string | undefined;
|
|
8149
8199
|
commitAuthorEmail?: string | undefined;
|
|
8150
8200
|
connectionId?: string | undefined;
|
|
8151
|
-
userId?: number | undefined;
|
|
8152
8201
|
}, {
|
|
8153
8202
|
branch: string;
|
|
8154
8203
|
projectId: string;
|
|
8155
8204
|
url?: string | null | undefined;
|
|
8205
|
+
userId?: number | null | undefined;
|
|
8156
8206
|
credentialId?: string | undefined;
|
|
8157
8207
|
relativePath?: string | null | undefined;
|
|
8158
8208
|
commitAuthorName?: string | null | undefined;
|
|
8159
8209
|
commitAuthorEmail?: string | null | undefined;
|
|
8160
8210
|
connectionId?: string | null | undefined;
|
|
8161
|
-
userId?: number | null | undefined;
|
|
8162
8211
|
}>>;
|
|
8163
8212
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
8164
8213
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -8197,45 +8246,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8197
8246
|
projectId: string;
|
|
8198
8247
|
repositoryId: string;
|
|
8199
8248
|
url?: string | undefined;
|
|
8249
|
+
userId?: number | undefined;
|
|
8200
8250
|
credentialId?: string | undefined;
|
|
8201
8251
|
relativePath?: string | undefined;
|
|
8202
8252
|
commitAuthorName?: string | undefined;
|
|
8203
8253
|
commitAuthorEmail?: string | undefined;
|
|
8204
8254
|
connectionId?: string | undefined;
|
|
8205
|
-
userId?: number | undefined;
|
|
8206
8255
|
} | undefined;
|
|
8207
8256
|
bitbucket?: {
|
|
8208
8257
|
branch: string;
|
|
8209
8258
|
workspaceSlug: string;
|
|
8210
8259
|
projectKey: string;
|
|
8211
8260
|
repoSlug: string;
|
|
8261
|
+
userId?: number | undefined;
|
|
8212
8262
|
credentialId?: string | undefined;
|
|
8213
8263
|
relativePath?: string | undefined;
|
|
8214
8264
|
commitAuthorName?: string | undefined;
|
|
8215
8265
|
commitAuthorEmail?: string | undefined;
|
|
8216
8266
|
connectionId?: string | undefined;
|
|
8217
|
-
userId?: number | undefined;
|
|
8218
8267
|
} | undefined;
|
|
8219
8268
|
github?: {
|
|
8220
8269
|
url: string;
|
|
8221
8270
|
branch: string;
|
|
8271
|
+
userId?: number | undefined;
|
|
8222
8272
|
credentialId?: string | undefined;
|
|
8223
8273
|
relativePath?: string | undefined;
|
|
8224
8274
|
commitAuthorName?: string | undefined;
|
|
8225
8275
|
commitAuthorEmail?: string | undefined;
|
|
8226
8276
|
connectionId?: string | undefined;
|
|
8227
|
-
userId?: number | undefined;
|
|
8228
8277
|
} | undefined;
|
|
8229
8278
|
gitlab?: {
|
|
8230
8279
|
branch: string;
|
|
8231
8280
|
projectId: string;
|
|
8232
8281
|
url?: string | undefined;
|
|
8282
|
+
userId?: number | undefined;
|
|
8233
8283
|
credentialId?: string | undefined;
|
|
8234
8284
|
relativePath?: string | undefined;
|
|
8235
8285
|
commitAuthorName?: string | undefined;
|
|
8236
8286
|
commitAuthorEmail?: string | undefined;
|
|
8237
8287
|
connectionId?: string | undefined;
|
|
8238
|
-
userId?: number | undefined;
|
|
8239
8288
|
} | undefined;
|
|
8240
8289
|
documentation?: {
|
|
8241
8290
|
environment: "Live" | "Preview";
|
|
@@ -8253,45 +8302,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8253
8302
|
projectId: string;
|
|
8254
8303
|
repositoryId: string;
|
|
8255
8304
|
url?: string | null | undefined;
|
|
8305
|
+
userId?: number | null | undefined;
|
|
8256
8306
|
credentialId?: string | undefined;
|
|
8257
8307
|
relativePath?: string | null | undefined;
|
|
8258
8308
|
commitAuthorName?: string | null | undefined;
|
|
8259
8309
|
commitAuthorEmail?: string | null | undefined;
|
|
8260
8310
|
connectionId?: string | null | undefined;
|
|
8261
|
-
userId?: number | null | undefined;
|
|
8262
8311
|
} | undefined;
|
|
8263
8312
|
bitbucket?: {
|
|
8264
8313
|
branch: string;
|
|
8265
8314
|
workspaceSlug: string;
|
|
8266
8315
|
projectKey: string;
|
|
8267
8316
|
repoSlug: string;
|
|
8317
|
+
userId?: number | null | undefined;
|
|
8268
8318
|
credentialId?: string | undefined;
|
|
8269
8319
|
relativePath?: string | null | undefined;
|
|
8270
8320
|
commitAuthorName?: string | null | undefined;
|
|
8271
8321
|
commitAuthorEmail?: string | null | undefined;
|
|
8272
8322
|
connectionId?: string | null | undefined;
|
|
8273
|
-
userId?: number | null | undefined;
|
|
8274
8323
|
} | undefined;
|
|
8275
8324
|
github?: {
|
|
8276
8325
|
url: string;
|
|
8277
8326
|
branch: string;
|
|
8327
|
+
userId?: number | null | undefined;
|
|
8278
8328
|
credentialId?: string | undefined;
|
|
8279
8329
|
relativePath?: string | null | undefined;
|
|
8280
8330
|
commitAuthorName?: string | null | undefined;
|
|
8281
8331
|
commitAuthorEmail?: string | null | undefined;
|
|
8282
8332
|
connectionId?: string | null | undefined;
|
|
8283
|
-
userId?: number | null | undefined;
|
|
8284
8333
|
} | undefined;
|
|
8285
8334
|
gitlab?: {
|
|
8286
8335
|
branch: string;
|
|
8287
8336
|
projectId: string;
|
|
8288
8337
|
url?: string | null | undefined;
|
|
8338
|
+
userId?: number | null | undefined;
|
|
8289
8339
|
credentialId?: string | undefined;
|
|
8290
8340
|
relativePath?: string | null | undefined;
|
|
8291
8341
|
commitAuthorName?: string | null | undefined;
|
|
8292
8342
|
commitAuthorEmail?: string | null | undefined;
|
|
8293
8343
|
connectionId?: string | null | undefined;
|
|
8294
|
-
userId?: number | null | undefined;
|
|
8295
8344
|
} | undefined;
|
|
8296
8345
|
documentation?: {
|
|
8297
8346
|
environment: "Live" | "Preview";
|
|
@@ -8487,45 +8536,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8487
8536
|
projectId: string;
|
|
8488
8537
|
repositoryId: string;
|
|
8489
8538
|
url?: string | undefined;
|
|
8539
|
+
userId?: number | undefined;
|
|
8490
8540
|
credentialId?: string | undefined;
|
|
8491
8541
|
relativePath?: string | undefined;
|
|
8492
8542
|
commitAuthorName?: string | undefined;
|
|
8493
8543
|
commitAuthorEmail?: string | undefined;
|
|
8494
8544
|
connectionId?: string | undefined;
|
|
8495
|
-
userId?: number | undefined;
|
|
8496
8545
|
} | undefined;
|
|
8497
8546
|
bitbucket?: {
|
|
8498
8547
|
branch: string;
|
|
8499
8548
|
workspaceSlug: string;
|
|
8500
8549
|
projectKey: string;
|
|
8501
8550
|
repoSlug: string;
|
|
8551
|
+
userId?: number | undefined;
|
|
8502
8552
|
credentialId?: string | undefined;
|
|
8503
8553
|
relativePath?: string | undefined;
|
|
8504
8554
|
commitAuthorName?: string | undefined;
|
|
8505
8555
|
commitAuthorEmail?: string | undefined;
|
|
8506
8556
|
connectionId?: string | undefined;
|
|
8507
|
-
userId?: number | undefined;
|
|
8508
8557
|
} | undefined;
|
|
8509
8558
|
github?: {
|
|
8510
8559
|
url: string;
|
|
8511
8560
|
branch: string;
|
|
8561
|
+
userId?: number | undefined;
|
|
8512
8562
|
credentialId?: string | undefined;
|
|
8513
8563
|
relativePath?: string | undefined;
|
|
8514
8564
|
commitAuthorName?: string | undefined;
|
|
8515
8565
|
commitAuthorEmail?: string | undefined;
|
|
8516
8566
|
connectionId?: string | undefined;
|
|
8517
|
-
userId?: number | undefined;
|
|
8518
8567
|
} | undefined;
|
|
8519
8568
|
gitlab?: {
|
|
8520
8569
|
branch: string;
|
|
8521
8570
|
projectId: string;
|
|
8522
8571
|
url?: string | undefined;
|
|
8572
|
+
userId?: number | undefined;
|
|
8523
8573
|
credentialId?: string | undefined;
|
|
8524
8574
|
relativePath?: string | undefined;
|
|
8525
8575
|
commitAuthorName?: string | undefined;
|
|
8526
8576
|
commitAuthorEmail?: string | undefined;
|
|
8527
8577
|
connectionId?: string | undefined;
|
|
8528
|
-
userId?: number | undefined;
|
|
8529
8578
|
} | undefined;
|
|
8530
8579
|
documentation?: {
|
|
8531
8580
|
environment: "Live" | "Preview";
|
|
@@ -8607,45 +8656,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8607
8656
|
projectId: string;
|
|
8608
8657
|
repositoryId: string;
|
|
8609
8658
|
url?: string | null | undefined;
|
|
8659
|
+
userId?: number | null | undefined;
|
|
8610
8660
|
credentialId?: string | undefined;
|
|
8611
8661
|
relativePath?: string | null | undefined;
|
|
8612
8662
|
commitAuthorName?: string | null | undefined;
|
|
8613
8663
|
commitAuthorEmail?: string | null | undefined;
|
|
8614
8664
|
connectionId?: string | null | undefined;
|
|
8615
|
-
userId?: number | null | undefined;
|
|
8616
8665
|
} | undefined;
|
|
8617
8666
|
bitbucket?: {
|
|
8618
8667
|
branch: string;
|
|
8619
8668
|
workspaceSlug: string;
|
|
8620
8669
|
projectKey: string;
|
|
8621
8670
|
repoSlug: string;
|
|
8671
|
+
userId?: number | null | undefined;
|
|
8622
8672
|
credentialId?: string | undefined;
|
|
8623
8673
|
relativePath?: string | null | undefined;
|
|
8624
8674
|
commitAuthorName?: string | null | undefined;
|
|
8625
8675
|
commitAuthorEmail?: string | null | undefined;
|
|
8626
8676
|
connectionId?: string | null | undefined;
|
|
8627
|
-
userId?: number | null | undefined;
|
|
8628
8677
|
} | undefined;
|
|
8629
8678
|
github?: {
|
|
8630
8679
|
url: string;
|
|
8631
8680
|
branch: string;
|
|
8681
|
+
userId?: number | null | undefined;
|
|
8632
8682
|
credentialId?: string | undefined;
|
|
8633
8683
|
relativePath?: string | null | undefined;
|
|
8634
8684
|
commitAuthorName?: string | null | undefined;
|
|
8635
8685
|
commitAuthorEmail?: string | null | undefined;
|
|
8636
8686
|
connectionId?: string | null | undefined;
|
|
8637
|
-
userId?: number | null | undefined;
|
|
8638
8687
|
} | undefined;
|
|
8639
8688
|
gitlab?: {
|
|
8640
8689
|
branch: string;
|
|
8641
8690
|
projectId: string;
|
|
8642
8691
|
url?: string | null | undefined;
|
|
8692
|
+
userId?: number | null | undefined;
|
|
8643
8693
|
credentialId?: string | undefined;
|
|
8644
8694
|
relativePath?: string | null | undefined;
|
|
8645
8695
|
commitAuthorName?: string | null | undefined;
|
|
8646
8696
|
commitAuthorEmail?: string | null | undefined;
|
|
8647
8697
|
connectionId?: string | null | undefined;
|
|
8648
|
-
userId?: number | null | undefined;
|
|
8649
8698
|
} | undefined;
|
|
8650
8699
|
documentation?: {
|
|
8651
8700
|
environment: "Live" | "Preview";
|
|
@@ -8729,45 +8778,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8729
8778
|
projectId: string;
|
|
8730
8779
|
repositoryId: string;
|
|
8731
8780
|
url?: string | undefined;
|
|
8781
|
+
userId?: number | undefined;
|
|
8732
8782
|
credentialId?: string | undefined;
|
|
8733
8783
|
relativePath?: string | undefined;
|
|
8734
8784
|
commitAuthorName?: string | undefined;
|
|
8735
8785
|
commitAuthorEmail?: string | undefined;
|
|
8736
8786
|
connectionId?: string | undefined;
|
|
8737
|
-
userId?: number | undefined;
|
|
8738
8787
|
} | undefined;
|
|
8739
8788
|
bitbucket?: {
|
|
8740
8789
|
branch: string;
|
|
8741
8790
|
workspaceSlug: string;
|
|
8742
8791
|
projectKey: string;
|
|
8743
8792
|
repoSlug: string;
|
|
8793
|
+
userId?: number | undefined;
|
|
8744
8794
|
credentialId?: string | undefined;
|
|
8745
8795
|
relativePath?: string | undefined;
|
|
8746
8796
|
commitAuthorName?: string | undefined;
|
|
8747
8797
|
commitAuthorEmail?: string | undefined;
|
|
8748
8798
|
connectionId?: string | undefined;
|
|
8749
|
-
userId?: number | undefined;
|
|
8750
8799
|
} | undefined;
|
|
8751
8800
|
github?: {
|
|
8752
8801
|
url: string;
|
|
8753
8802
|
branch: string;
|
|
8803
|
+
userId?: number | undefined;
|
|
8754
8804
|
credentialId?: string | undefined;
|
|
8755
8805
|
relativePath?: string | undefined;
|
|
8756
8806
|
commitAuthorName?: string | undefined;
|
|
8757
8807
|
commitAuthorEmail?: string | undefined;
|
|
8758
8808
|
connectionId?: string | undefined;
|
|
8759
|
-
userId?: number | undefined;
|
|
8760
8809
|
} | undefined;
|
|
8761
8810
|
gitlab?: {
|
|
8762
8811
|
branch: string;
|
|
8763
8812
|
projectId: string;
|
|
8764
8813
|
url?: string | undefined;
|
|
8814
|
+
userId?: number | undefined;
|
|
8765
8815
|
credentialId?: string | undefined;
|
|
8766
8816
|
relativePath?: string | undefined;
|
|
8767
8817
|
commitAuthorName?: string | undefined;
|
|
8768
8818
|
commitAuthorEmail?: string | undefined;
|
|
8769
8819
|
connectionId?: string | undefined;
|
|
8770
|
-
userId?: number | undefined;
|
|
8771
8820
|
} | undefined;
|
|
8772
8821
|
documentation?: {
|
|
8773
8822
|
environment: "Live" | "Preview";
|
|
@@ -8851,45 +8900,45 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8851
8900
|
projectId: string;
|
|
8852
8901
|
repositoryId: string;
|
|
8853
8902
|
url?: string | null | undefined;
|
|
8903
|
+
userId?: number | null | undefined;
|
|
8854
8904
|
credentialId?: string | undefined;
|
|
8855
8905
|
relativePath?: string | null | undefined;
|
|
8856
8906
|
commitAuthorName?: string | null | undefined;
|
|
8857
8907
|
commitAuthorEmail?: string | null | undefined;
|
|
8858
8908
|
connectionId?: string | null | undefined;
|
|
8859
|
-
userId?: number | null | undefined;
|
|
8860
8909
|
} | undefined;
|
|
8861
8910
|
bitbucket?: {
|
|
8862
8911
|
branch: string;
|
|
8863
8912
|
workspaceSlug: string;
|
|
8864
8913
|
projectKey: string;
|
|
8865
8914
|
repoSlug: string;
|
|
8915
|
+
userId?: number | null | undefined;
|
|
8866
8916
|
credentialId?: string | undefined;
|
|
8867
8917
|
relativePath?: string | null | undefined;
|
|
8868
8918
|
commitAuthorName?: string | null | undefined;
|
|
8869
8919
|
commitAuthorEmail?: string | null | undefined;
|
|
8870
8920
|
connectionId?: string | null | undefined;
|
|
8871
|
-
userId?: number | null | undefined;
|
|
8872
8921
|
} | undefined;
|
|
8873
8922
|
github?: {
|
|
8874
8923
|
url: string;
|
|
8875
8924
|
branch: string;
|
|
8925
|
+
userId?: number | null | undefined;
|
|
8876
8926
|
credentialId?: string | undefined;
|
|
8877
8927
|
relativePath?: string | null | undefined;
|
|
8878
8928
|
commitAuthorName?: string | null | undefined;
|
|
8879
8929
|
commitAuthorEmail?: string | null | undefined;
|
|
8880
8930
|
connectionId?: string | null | undefined;
|
|
8881
|
-
userId?: number | null | undefined;
|
|
8882
8931
|
} | undefined;
|
|
8883
8932
|
gitlab?: {
|
|
8884
8933
|
branch: string;
|
|
8885
8934
|
projectId: string;
|
|
8886
8935
|
url?: string | null | undefined;
|
|
8936
|
+
userId?: number | null | undefined;
|
|
8887
8937
|
credentialId?: string | undefined;
|
|
8888
8938
|
relativePath?: string | null | undefined;
|
|
8889
8939
|
commitAuthorName?: string | null | undefined;
|
|
8890
8940
|
commitAuthorEmail?: string | null | undefined;
|
|
8891
8941
|
connectionId?: string | null | undefined;
|
|
8892
|
-
userId?: number | null | undefined;
|
|
8893
8942
|
} | undefined;
|
|
8894
8943
|
documentation?: {
|
|
8895
8944
|
environment: "Live" | "Preview";
|
|
@@ -29233,24 +29282,24 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29233
29282
|
projectId: string;
|
|
29234
29283
|
repositoryId: string;
|
|
29235
29284
|
url?: string | undefined;
|
|
29285
|
+
userId?: number | undefined;
|
|
29236
29286
|
credentialId?: string | undefined;
|
|
29237
29287
|
relativePath?: string | undefined;
|
|
29238
29288
|
commitAuthorName?: string | undefined;
|
|
29239
29289
|
commitAuthorEmail?: string | undefined;
|
|
29240
29290
|
connectionId?: string | undefined;
|
|
29241
|
-
userId?: number | undefined;
|
|
29242
29291
|
}, {
|
|
29243
29292
|
branch: string;
|
|
29244
29293
|
organizationId: string;
|
|
29245
29294
|
projectId: string;
|
|
29246
29295
|
repositoryId: string;
|
|
29247
29296
|
url?: string | null | undefined;
|
|
29297
|
+
userId?: number | null | undefined;
|
|
29248
29298
|
credentialId?: string | undefined;
|
|
29249
29299
|
relativePath?: string | null | undefined;
|
|
29250
29300
|
commitAuthorName?: string | null | undefined;
|
|
29251
29301
|
commitAuthorEmail?: string | null | undefined;
|
|
29252
29302
|
connectionId?: string | null | undefined;
|
|
29253
|
-
userId?: number | null | undefined;
|
|
29254
29303
|
}>>;
|
|
29255
29304
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
29256
29305
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29268,23 +29317,23 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29268
29317
|
workspaceSlug: string;
|
|
29269
29318
|
projectKey: string;
|
|
29270
29319
|
repoSlug: string;
|
|
29320
|
+
userId?: number | undefined;
|
|
29271
29321
|
credentialId?: string | undefined;
|
|
29272
29322
|
relativePath?: string | undefined;
|
|
29273
29323
|
commitAuthorName?: string | undefined;
|
|
29274
29324
|
commitAuthorEmail?: string | undefined;
|
|
29275
29325
|
connectionId?: string | undefined;
|
|
29276
|
-
userId?: number | undefined;
|
|
29277
29326
|
}, {
|
|
29278
29327
|
branch: string;
|
|
29279
29328
|
workspaceSlug: string;
|
|
29280
29329
|
projectKey: string;
|
|
29281
29330
|
repoSlug: string;
|
|
29331
|
+
userId?: number | null | undefined;
|
|
29282
29332
|
credentialId?: string | undefined;
|
|
29283
29333
|
relativePath?: string | null | undefined;
|
|
29284
29334
|
commitAuthorName?: string | null | undefined;
|
|
29285
29335
|
commitAuthorEmail?: string | null | undefined;
|
|
29286
29336
|
connectionId?: string | null | undefined;
|
|
29287
|
-
userId?: number | null | undefined;
|
|
29288
29337
|
}>>;
|
|
29289
29338
|
github: z.ZodOptional<z.ZodObject<{
|
|
29290
29339
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29298,21 +29347,21 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29298
29347
|
}, "strip", z.ZodTypeAny, {
|
|
29299
29348
|
url: string;
|
|
29300
29349
|
branch: string;
|
|
29350
|
+
userId?: number | undefined;
|
|
29301
29351
|
credentialId?: string | undefined;
|
|
29302
29352
|
relativePath?: string | undefined;
|
|
29303
29353
|
commitAuthorName?: string | undefined;
|
|
29304
29354
|
commitAuthorEmail?: string | undefined;
|
|
29305
29355
|
connectionId?: string | undefined;
|
|
29306
|
-
userId?: number | undefined;
|
|
29307
29356
|
}, {
|
|
29308
29357
|
url: string;
|
|
29309
29358
|
branch: string;
|
|
29359
|
+
userId?: number | null | undefined;
|
|
29310
29360
|
credentialId?: string | undefined;
|
|
29311
29361
|
relativePath?: string | null | undefined;
|
|
29312
29362
|
commitAuthorName?: string | null | undefined;
|
|
29313
29363
|
commitAuthorEmail?: string | null | undefined;
|
|
29314
29364
|
connectionId?: string | null | undefined;
|
|
29315
|
-
userId?: number | null | undefined;
|
|
29316
29365
|
}>>;
|
|
29317
29366
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
29318
29367
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29328,22 +29377,22 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29328
29377
|
branch: string;
|
|
29329
29378
|
projectId: string;
|
|
29330
29379
|
url?: string | undefined;
|
|
29380
|
+
userId?: number | undefined;
|
|
29331
29381
|
credentialId?: string | undefined;
|
|
29332
29382
|
relativePath?: string | undefined;
|
|
29333
29383
|
commitAuthorName?: string | undefined;
|
|
29334
29384
|
commitAuthorEmail?: string | undefined;
|
|
29335
29385
|
connectionId?: string | undefined;
|
|
29336
|
-
userId?: number | undefined;
|
|
29337
29386
|
}, {
|
|
29338
29387
|
branch: string;
|
|
29339
29388
|
projectId: string;
|
|
29340
29389
|
url?: string | null | undefined;
|
|
29390
|
+
userId?: number | null | undefined;
|
|
29341
29391
|
credentialId?: string | undefined;
|
|
29342
29392
|
relativePath?: string | null | undefined;
|
|
29343
29393
|
commitAuthorName?: string | null | undefined;
|
|
29344
29394
|
commitAuthorEmail?: string | null | undefined;
|
|
29345
29395
|
connectionId?: string | null | undefined;
|
|
29346
|
-
userId?: number | null | undefined;
|
|
29347
29396
|
}>>;
|
|
29348
29397
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
29349
29398
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -29382,45 +29431,45 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29382
29431
|
projectId: string;
|
|
29383
29432
|
repositoryId: string;
|
|
29384
29433
|
url?: string | undefined;
|
|
29434
|
+
userId?: number | undefined;
|
|
29385
29435
|
credentialId?: string | undefined;
|
|
29386
29436
|
relativePath?: string | undefined;
|
|
29387
29437
|
commitAuthorName?: string | undefined;
|
|
29388
29438
|
commitAuthorEmail?: string | undefined;
|
|
29389
29439
|
connectionId?: string | undefined;
|
|
29390
|
-
userId?: number | undefined;
|
|
29391
29440
|
} | undefined;
|
|
29392
29441
|
bitbucket?: {
|
|
29393
29442
|
branch: string;
|
|
29394
29443
|
workspaceSlug: string;
|
|
29395
29444
|
projectKey: string;
|
|
29396
29445
|
repoSlug: string;
|
|
29446
|
+
userId?: number | undefined;
|
|
29397
29447
|
credentialId?: string | undefined;
|
|
29398
29448
|
relativePath?: string | undefined;
|
|
29399
29449
|
commitAuthorName?: string | undefined;
|
|
29400
29450
|
commitAuthorEmail?: string | undefined;
|
|
29401
29451
|
connectionId?: string | undefined;
|
|
29402
|
-
userId?: number | undefined;
|
|
29403
29452
|
} | undefined;
|
|
29404
29453
|
github?: {
|
|
29405
29454
|
url: string;
|
|
29406
29455
|
branch: string;
|
|
29456
|
+
userId?: number | undefined;
|
|
29407
29457
|
credentialId?: string | undefined;
|
|
29408
29458
|
relativePath?: string | undefined;
|
|
29409
29459
|
commitAuthorName?: string | undefined;
|
|
29410
29460
|
commitAuthorEmail?: string | undefined;
|
|
29411
29461
|
connectionId?: string | undefined;
|
|
29412
|
-
userId?: number | undefined;
|
|
29413
29462
|
} | undefined;
|
|
29414
29463
|
gitlab?: {
|
|
29415
29464
|
branch: string;
|
|
29416
29465
|
projectId: string;
|
|
29417
29466
|
url?: string | undefined;
|
|
29467
|
+
userId?: number | undefined;
|
|
29418
29468
|
credentialId?: string | undefined;
|
|
29419
29469
|
relativePath?: string | undefined;
|
|
29420
29470
|
commitAuthorName?: string | undefined;
|
|
29421
29471
|
commitAuthorEmail?: string | undefined;
|
|
29422
29472
|
connectionId?: string | undefined;
|
|
29423
|
-
userId?: number | undefined;
|
|
29424
29473
|
} | undefined;
|
|
29425
29474
|
documentation?: {
|
|
29426
29475
|
environment: "Live" | "Preview";
|
|
@@ -29438,45 +29487,45 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
29438
29487
|
projectId: string;
|
|
29439
29488
|
repositoryId: string;
|
|
29440
29489
|
url?: string | null | undefined;
|
|
29490
|
+
userId?: number | null | undefined;
|
|
29441
29491
|
credentialId?: string | undefined;
|
|
29442
29492
|
relativePath?: string | null | undefined;
|
|
29443
29493
|
commitAuthorName?: string | null | undefined;
|
|
29444
29494
|
commitAuthorEmail?: string | null | undefined;
|
|
29445
29495
|
connectionId?: string | null | undefined;
|
|
29446
|
-
userId?: number | null | undefined;
|
|
29447
29496
|
} | undefined;
|
|
29448
29497
|
bitbucket?: {
|
|
29449
29498
|
branch: string;
|
|
29450
29499
|
workspaceSlug: string;
|
|
29451
29500
|
projectKey: string;
|
|
29452
29501
|
repoSlug: string;
|
|
29502
|
+
userId?: number | null | undefined;
|
|
29453
29503
|
credentialId?: string | undefined;
|
|
29454
29504
|
relativePath?: string | null | undefined;
|
|
29455
29505
|
commitAuthorName?: string | null | undefined;
|
|
29456
29506
|
commitAuthorEmail?: string | null | undefined;
|
|
29457
29507
|
connectionId?: string | null | undefined;
|
|
29458
|
-
userId?: number | null | undefined;
|
|
29459
29508
|
} | undefined;
|
|
29460
29509
|
github?: {
|
|
29461
29510
|
url: string;
|
|
29462
29511
|
branch: string;
|
|
29512
|
+
userId?: number | null | undefined;
|
|
29463
29513
|
credentialId?: string | undefined;
|
|
29464
29514
|
relativePath?: string | null | undefined;
|
|
29465
29515
|
commitAuthorName?: string | null | undefined;
|
|
29466
29516
|
commitAuthorEmail?: string | null | undefined;
|
|
29467
29517
|
connectionId?: string | null | undefined;
|
|
29468
|
-
userId?: number | null | undefined;
|
|
29469
29518
|
} | undefined;
|
|
29470
29519
|
gitlab?: {
|
|
29471
29520
|
branch: string;
|
|
29472
29521
|
projectId: string;
|
|
29473
29522
|
url?: string | null | undefined;
|
|
29523
|
+
userId?: number | null | undefined;
|
|
29474
29524
|
credentialId?: string | undefined;
|
|
29475
29525
|
relativePath?: string | null | undefined;
|
|
29476
29526
|
commitAuthorName?: string | null | undefined;
|
|
29477
29527
|
commitAuthorEmail?: string | null | undefined;
|
|
29478
29528
|
connectionId?: string | null | undefined;
|
|
29479
|
-
userId?: number | null | undefined;
|
|
29480
29529
|
} | undefined;
|
|
29481
29530
|
documentation?: {
|
|
29482
29531
|
environment: "Live" | "Preview";
|
|
@@ -29750,24 +29799,24 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29750
29799
|
projectId: string;
|
|
29751
29800
|
repositoryId: string;
|
|
29752
29801
|
url?: string | undefined;
|
|
29802
|
+
userId?: number | undefined;
|
|
29753
29803
|
credentialId?: string | undefined;
|
|
29754
29804
|
relativePath?: string | undefined;
|
|
29755
29805
|
commitAuthorName?: string | undefined;
|
|
29756
29806
|
commitAuthorEmail?: string | undefined;
|
|
29757
29807
|
connectionId?: string | undefined;
|
|
29758
|
-
userId?: number | undefined;
|
|
29759
29808
|
}, {
|
|
29760
29809
|
branch: string;
|
|
29761
29810
|
organizationId: string;
|
|
29762
29811
|
projectId: string;
|
|
29763
29812
|
repositoryId: string;
|
|
29764
29813
|
url?: string | null | undefined;
|
|
29814
|
+
userId?: number | null | undefined;
|
|
29765
29815
|
credentialId?: string | undefined;
|
|
29766
29816
|
relativePath?: string | null | undefined;
|
|
29767
29817
|
commitAuthorName?: string | null | undefined;
|
|
29768
29818
|
commitAuthorEmail?: string | null | undefined;
|
|
29769
29819
|
connectionId?: string | null | undefined;
|
|
29770
|
-
userId?: number | null | undefined;
|
|
29771
29820
|
}>>;
|
|
29772
29821
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
29773
29822
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29785,23 +29834,23 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29785
29834
|
workspaceSlug: string;
|
|
29786
29835
|
projectKey: string;
|
|
29787
29836
|
repoSlug: string;
|
|
29837
|
+
userId?: number | undefined;
|
|
29788
29838
|
credentialId?: string | undefined;
|
|
29789
29839
|
relativePath?: string | undefined;
|
|
29790
29840
|
commitAuthorName?: string | undefined;
|
|
29791
29841
|
commitAuthorEmail?: string | undefined;
|
|
29792
29842
|
connectionId?: string | undefined;
|
|
29793
|
-
userId?: number | undefined;
|
|
29794
29843
|
}, {
|
|
29795
29844
|
branch: string;
|
|
29796
29845
|
workspaceSlug: string;
|
|
29797
29846
|
projectKey: string;
|
|
29798
29847
|
repoSlug: string;
|
|
29848
|
+
userId?: number | null | undefined;
|
|
29799
29849
|
credentialId?: string | undefined;
|
|
29800
29850
|
relativePath?: string | null | undefined;
|
|
29801
29851
|
commitAuthorName?: string | null | undefined;
|
|
29802
29852
|
commitAuthorEmail?: string | null | undefined;
|
|
29803
29853
|
connectionId?: string | null | undefined;
|
|
29804
|
-
userId?: number | null | undefined;
|
|
29805
29854
|
}>>;
|
|
29806
29855
|
github: z.ZodOptional<z.ZodObject<{
|
|
29807
29856
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29815,21 +29864,21 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29815
29864
|
}, "strip", z.ZodTypeAny, {
|
|
29816
29865
|
url: string;
|
|
29817
29866
|
branch: string;
|
|
29867
|
+
userId?: number | undefined;
|
|
29818
29868
|
credentialId?: string | undefined;
|
|
29819
29869
|
relativePath?: string | undefined;
|
|
29820
29870
|
commitAuthorName?: string | undefined;
|
|
29821
29871
|
commitAuthorEmail?: string | undefined;
|
|
29822
29872
|
connectionId?: string | undefined;
|
|
29823
|
-
userId?: number | undefined;
|
|
29824
29873
|
}, {
|
|
29825
29874
|
url: string;
|
|
29826
29875
|
branch: string;
|
|
29876
|
+
userId?: number | null | undefined;
|
|
29827
29877
|
credentialId?: string | undefined;
|
|
29828
29878
|
relativePath?: string | null | undefined;
|
|
29829
29879
|
commitAuthorName?: string | null | undefined;
|
|
29830
29880
|
commitAuthorEmail?: string | null | undefined;
|
|
29831
29881
|
connectionId?: string | null | undefined;
|
|
29832
|
-
userId?: number | null | undefined;
|
|
29833
29882
|
}>>;
|
|
29834
29883
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
29835
29884
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -29845,22 +29894,22 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29845
29894
|
branch: string;
|
|
29846
29895
|
projectId: string;
|
|
29847
29896
|
url?: string | undefined;
|
|
29897
|
+
userId?: number | undefined;
|
|
29848
29898
|
credentialId?: string | undefined;
|
|
29849
29899
|
relativePath?: string | undefined;
|
|
29850
29900
|
commitAuthorName?: string | undefined;
|
|
29851
29901
|
commitAuthorEmail?: string | undefined;
|
|
29852
29902
|
connectionId?: string | undefined;
|
|
29853
|
-
userId?: number | undefined;
|
|
29854
29903
|
}, {
|
|
29855
29904
|
branch: string;
|
|
29856
29905
|
projectId: string;
|
|
29857
29906
|
url?: string | null | undefined;
|
|
29907
|
+
userId?: number | null | undefined;
|
|
29858
29908
|
credentialId?: string | undefined;
|
|
29859
29909
|
relativePath?: string | null | undefined;
|
|
29860
29910
|
commitAuthorName?: string | null | undefined;
|
|
29861
29911
|
commitAuthorEmail?: string | null | undefined;
|
|
29862
29912
|
connectionId?: string | null | undefined;
|
|
29863
|
-
userId?: number | null | undefined;
|
|
29864
29913
|
}>>;
|
|
29865
29914
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
29866
29915
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -29899,45 +29948,45 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29899
29948
|
projectId: string;
|
|
29900
29949
|
repositoryId: string;
|
|
29901
29950
|
url?: string | undefined;
|
|
29951
|
+
userId?: number | undefined;
|
|
29902
29952
|
credentialId?: string | undefined;
|
|
29903
29953
|
relativePath?: string | undefined;
|
|
29904
29954
|
commitAuthorName?: string | undefined;
|
|
29905
29955
|
commitAuthorEmail?: string | undefined;
|
|
29906
29956
|
connectionId?: string | undefined;
|
|
29907
|
-
userId?: number | undefined;
|
|
29908
29957
|
} | undefined;
|
|
29909
29958
|
bitbucket?: {
|
|
29910
29959
|
branch: string;
|
|
29911
29960
|
workspaceSlug: string;
|
|
29912
29961
|
projectKey: string;
|
|
29913
29962
|
repoSlug: string;
|
|
29963
|
+
userId?: number | undefined;
|
|
29914
29964
|
credentialId?: string | undefined;
|
|
29915
29965
|
relativePath?: string | undefined;
|
|
29916
29966
|
commitAuthorName?: string | undefined;
|
|
29917
29967
|
commitAuthorEmail?: string | undefined;
|
|
29918
29968
|
connectionId?: string | undefined;
|
|
29919
|
-
userId?: number | undefined;
|
|
29920
29969
|
} | undefined;
|
|
29921
29970
|
github?: {
|
|
29922
29971
|
url: string;
|
|
29923
29972
|
branch: string;
|
|
29973
|
+
userId?: number | undefined;
|
|
29924
29974
|
credentialId?: string | undefined;
|
|
29925
29975
|
relativePath?: string | undefined;
|
|
29926
29976
|
commitAuthorName?: string | undefined;
|
|
29927
29977
|
commitAuthorEmail?: string | undefined;
|
|
29928
29978
|
connectionId?: string | undefined;
|
|
29929
|
-
userId?: number | undefined;
|
|
29930
29979
|
} | undefined;
|
|
29931
29980
|
gitlab?: {
|
|
29932
29981
|
branch: string;
|
|
29933
29982
|
projectId: string;
|
|
29934
29983
|
url?: string | undefined;
|
|
29984
|
+
userId?: number | undefined;
|
|
29935
29985
|
credentialId?: string | undefined;
|
|
29936
29986
|
relativePath?: string | undefined;
|
|
29937
29987
|
commitAuthorName?: string | undefined;
|
|
29938
29988
|
commitAuthorEmail?: string | undefined;
|
|
29939
29989
|
connectionId?: string | undefined;
|
|
29940
|
-
userId?: number | undefined;
|
|
29941
29990
|
} | undefined;
|
|
29942
29991
|
documentation?: {
|
|
29943
29992
|
environment: "Live" | "Preview";
|
|
@@ -29955,45 +30004,45 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29955
30004
|
projectId: string;
|
|
29956
30005
|
repositoryId: string;
|
|
29957
30006
|
url?: string | null | undefined;
|
|
30007
|
+
userId?: number | null | undefined;
|
|
29958
30008
|
credentialId?: string | undefined;
|
|
29959
30009
|
relativePath?: string | null | undefined;
|
|
29960
30010
|
commitAuthorName?: string | null | undefined;
|
|
29961
30011
|
commitAuthorEmail?: string | null | undefined;
|
|
29962
30012
|
connectionId?: string | null | undefined;
|
|
29963
|
-
userId?: number | null | undefined;
|
|
29964
30013
|
} | undefined;
|
|
29965
30014
|
bitbucket?: {
|
|
29966
30015
|
branch: string;
|
|
29967
30016
|
workspaceSlug: string;
|
|
29968
30017
|
projectKey: string;
|
|
29969
30018
|
repoSlug: string;
|
|
30019
|
+
userId?: number | null | undefined;
|
|
29970
30020
|
credentialId?: string | undefined;
|
|
29971
30021
|
relativePath?: string | null | undefined;
|
|
29972
30022
|
commitAuthorName?: string | null | undefined;
|
|
29973
30023
|
commitAuthorEmail?: string | null | undefined;
|
|
29974
30024
|
connectionId?: string | null | undefined;
|
|
29975
|
-
userId?: number | null | undefined;
|
|
29976
30025
|
} | undefined;
|
|
29977
30026
|
github?: {
|
|
29978
30027
|
url: string;
|
|
29979
30028
|
branch: string;
|
|
30029
|
+
userId?: number | null | undefined;
|
|
29980
30030
|
credentialId?: string | undefined;
|
|
29981
30031
|
relativePath?: string | null | undefined;
|
|
29982
30032
|
commitAuthorName?: string | null | undefined;
|
|
29983
30033
|
commitAuthorEmail?: string | null | undefined;
|
|
29984
30034
|
connectionId?: string | null | undefined;
|
|
29985
|
-
userId?: number | null | undefined;
|
|
29986
30035
|
} | undefined;
|
|
29987
30036
|
gitlab?: {
|
|
29988
30037
|
branch: string;
|
|
29989
30038
|
projectId: string;
|
|
29990
30039
|
url?: string | null | undefined;
|
|
30040
|
+
userId?: number | null | undefined;
|
|
29991
30041
|
credentialId?: string | undefined;
|
|
29992
30042
|
relativePath?: string | null | undefined;
|
|
29993
30043
|
commitAuthorName?: string | null | undefined;
|
|
29994
30044
|
commitAuthorEmail?: string | null | undefined;
|
|
29995
30045
|
connectionId?: string | null | undefined;
|
|
29996
|
-
userId?: number | null | undefined;
|
|
29997
30046
|
} | undefined;
|
|
29998
30047
|
documentation?: {
|
|
29999
30048
|
environment: "Live" | "Preview";
|
|
@@ -30189,45 +30238,45 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
30189
30238
|
projectId: string;
|
|
30190
30239
|
repositoryId: string;
|
|
30191
30240
|
url?: string | undefined;
|
|
30241
|
+
userId?: number | undefined;
|
|
30192
30242
|
credentialId?: string | undefined;
|
|
30193
30243
|
relativePath?: string | undefined;
|
|
30194
30244
|
commitAuthorName?: string | undefined;
|
|
30195
30245
|
commitAuthorEmail?: string | undefined;
|
|
30196
30246
|
connectionId?: string | undefined;
|
|
30197
|
-
userId?: number | undefined;
|
|
30198
30247
|
} | undefined;
|
|
30199
30248
|
bitbucket?: {
|
|
30200
30249
|
branch: string;
|
|
30201
30250
|
workspaceSlug: string;
|
|
30202
30251
|
projectKey: string;
|
|
30203
30252
|
repoSlug: string;
|
|
30253
|
+
userId?: number | undefined;
|
|
30204
30254
|
credentialId?: string | undefined;
|
|
30205
30255
|
relativePath?: string | undefined;
|
|
30206
30256
|
commitAuthorName?: string | undefined;
|
|
30207
30257
|
commitAuthorEmail?: string | undefined;
|
|
30208
30258
|
connectionId?: string | undefined;
|
|
30209
|
-
userId?: number | undefined;
|
|
30210
30259
|
} | undefined;
|
|
30211
30260
|
github?: {
|
|
30212
30261
|
url: string;
|
|
30213
30262
|
branch: string;
|
|
30263
|
+
userId?: number | undefined;
|
|
30214
30264
|
credentialId?: string | undefined;
|
|
30215
30265
|
relativePath?: string | undefined;
|
|
30216
30266
|
commitAuthorName?: string | undefined;
|
|
30217
30267
|
commitAuthorEmail?: string | undefined;
|
|
30218
30268
|
connectionId?: string | undefined;
|
|
30219
|
-
userId?: number | undefined;
|
|
30220
30269
|
} | undefined;
|
|
30221
30270
|
gitlab?: {
|
|
30222
30271
|
branch: string;
|
|
30223
30272
|
projectId: string;
|
|
30224
30273
|
url?: string | undefined;
|
|
30274
|
+
userId?: number | undefined;
|
|
30225
30275
|
credentialId?: string | undefined;
|
|
30226
30276
|
relativePath?: string | undefined;
|
|
30227
30277
|
commitAuthorName?: string | undefined;
|
|
30228
30278
|
commitAuthorEmail?: string | undefined;
|
|
30229
30279
|
connectionId?: string | undefined;
|
|
30230
|
-
userId?: number | undefined;
|
|
30231
30280
|
} | undefined;
|
|
30232
30281
|
documentation?: {
|
|
30233
30282
|
environment: "Live" | "Preview";
|
|
@@ -30309,45 +30358,45 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
30309
30358
|
projectId: string;
|
|
30310
30359
|
repositoryId: string;
|
|
30311
30360
|
url?: string | null | undefined;
|
|
30361
|
+
userId?: number | null | undefined;
|
|
30312
30362
|
credentialId?: string | undefined;
|
|
30313
30363
|
relativePath?: string | null | undefined;
|
|
30314
30364
|
commitAuthorName?: string | null | undefined;
|
|
30315
30365
|
commitAuthorEmail?: string | null | undefined;
|
|
30316
30366
|
connectionId?: string | null | undefined;
|
|
30317
|
-
userId?: number | null | undefined;
|
|
30318
30367
|
} | undefined;
|
|
30319
30368
|
bitbucket?: {
|
|
30320
30369
|
branch: string;
|
|
30321
30370
|
workspaceSlug: string;
|
|
30322
30371
|
projectKey: string;
|
|
30323
30372
|
repoSlug: string;
|
|
30373
|
+
userId?: number | null | undefined;
|
|
30324
30374
|
credentialId?: string | undefined;
|
|
30325
30375
|
relativePath?: string | null | undefined;
|
|
30326
30376
|
commitAuthorName?: string | null | undefined;
|
|
30327
30377
|
commitAuthorEmail?: string | null | undefined;
|
|
30328
30378
|
connectionId?: string | null | undefined;
|
|
30329
|
-
userId?: number | null | undefined;
|
|
30330
30379
|
} | undefined;
|
|
30331
30380
|
github?: {
|
|
30332
30381
|
url: string;
|
|
30333
30382
|
branch: string;
|
|
30383
|
+
userId?: number | null | undefined;
|
|
30334
30384
|
credentialId?: string | undefined;
|
|
30335
30385
|
relativePath?: string | null | undefined;
|
|
30336
30386
|
commitAuthorName?: string | null | undefined;
|
|
30337
30387
|
commitAuthorEmail?: string | null | undefined;
|
|
30338
30388
|
connectionId?: string | null | undefined;
|
|
30339
|
-
userId?: number | null | undefined;
|
|
30340
30389
|
} | undefined;
|
|
30341
30390
|
gitlab?: {
|
|
30342
30391
|
branch: string;
|
|
30343
30392
|
projectId: string;
|
|
30344
30393
|
url?: string | null | undefined;
|
|
30394
|
+
userId?: number | null | undefined;
|
|
30345
30395
|
credentialId?: string | undefined;
|
|
30346
30396
|
relativePath?: string | null | undefined;
|
|
30347
30397
|
commitAuthorName?: string | null | undefined;
|
|
30348
30398
|
commitAuthorEmail?: string | null | undefined;
|
|
30349
30399
|
connectionId?: string | null | undefined;
|
|
30350
|
-
userId?: number | null | undefined;
|
|
30351
30400
|
} | undefined;
|
|
30352
30401
|
documentation?: {
|
|
30353
30402
|
environment: "Live" | "Preview";
|
|
@@ -30512,24 +30561,24 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30512
30561
|
projectId: string;
|
|
30513
30562
|
repositoryId: string;
|
|
30514
30563
|
url?: string | undefined;
|
|
30564
|
+
userId?: number | undefined;
|
|
30515
30565
|
credentialId?: string | undefined;
|
|
30516
30566
|
relativePath?: string | undefined;
|
|
30517
30567
|
commitAuthorName?: string | undefined;
|
|
30518
30568
|
commitAuthorEmail?: string | undefined;
|
|
30519
30569
|
connectionId?: string | undefined;
|
|
30520
|
-
userId?: number | undefined;
|
|
30521
30570
|
}, {
|
|
30522
30571
|
branch: string;
|
|
30523
30572
|
organizationId: string;
|
|
30524
30573
|
projectId: string;
|
|
30525
30574
|
repositoryId: string;
|
|
30526
30575
|
url?: string | null | undefined;
|
|
30576
|
+
userId?: number | null | undefined;
|
|
30527
30577
|
credentialId?: string | undefined;
|
|
30528
30578
|
relativePath?: string | null | undefined;
|
|
30529
30579
|
commitAuthorName?: string | null | undefined;
|
|
30530
30580
|
commitAuthorEmail?: string | null | undefined;
|
|
30531
30581
|
connectionId?: string | null | undefined;
|
|
30532
|
-
userId?: number | null | undefined;
|
|
30533
30582
|
}>>;
|
|
30534
30583
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
30535
30584
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -30547,23 +30596,23 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30547
30596
|
workspaceSlug: string;
|
|
30548
30597
|
projectKey: string;
|
|
30549
30598
|
repoSlug: string;
|
|
30599
|
+
userId?: number | undefined;
|
|
30550
30600
|
credentialId?: string | undefined;
|
|
30551
30601
|
relativePath?: string | undefined;
|
|
30552
30602
|
commitAuthorName?: string | undefined;
|
|
30553
30603
|
commitAuthorEmail?: string | undefined;
|
|
30554
30604
|
connectionId?: string | undefined;
|
|
30555
|
-
userId?: number | undefined;
|
|
30556
30605
|
}, {
|
|
30557
30606
|
branch: string;
|
|
30558
30607
|
workspaceSlug: string;
|
|
30559
30608
|
projectKey: string;
|
|
30560
30609
|
repoSlug: string;
|
|
30610
|
+
userId?: number | null | undefined;
|
|
30561
30611
|
credentialId?: string | undefined;
|
|
30562
30612
|
relativePath?: string | null | undefined;
|
|
30563
30613
|
commitAuthorName?: string | null | undefined;
|
|
30564
30614
|
commitAuthorEmail?: string | null | undefined;
|
|
30565
30615
|
connectionId?: string | null | undefined;
|
|
30566
|
-
userId?: number | null | undefined;
|
|
30567
30616
|
}>>;
|
|
30568
30617
|
github: z.ZodOptional<z.ZodObject<{
|
|
30569
30618
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -30577,21 +30626,21 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30577
30626
|
}, "strip", z.ZodTypeAny, {
|
|
30578
30627
|
url: string;
|
|
30579
30628
|
branch: string;
|
|
30629
|
+
userId?: number | undefined;
|
|
30580
30630
|
credentialId?: string | undefined;
|
|
30581
30631
|
relativePath?: string | undefined;
|
|
30582
30632
|
commitAuthorName?: string | undefined;
|
|
30583
30633
|
commitAuthorEmail?: string | undefined;
|
|
30584
30634
|
connectionId?: string | undefined;
|
|
30585
|
-
userId?: number | undefined;
|
|
30586
30635
|
}, {
|
|
30587
30636
|
url: string;
|
|
30588
30637
|
branch: string;
|
|
30638
|
+
userId?: number | null | undefined;
|
|
30589
30639
|
credentialId?: string | undefined;
|
|
30590
30640
|
relativePath?: string | null | undefined;
|
|
30591
30641
|
commitAuthorName?: string | null | undefined;
|
|
30592
30642
|
commitAuthorEmail?: string | null | undefined;
|
|
30593
30643
|
connectionId?: string | null | undefined;
|
|
30594
|
-
userId?: number | null | undefined;
|
|
30595
30644
|
}>>;
|
|
30596
30645
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
30597
30646
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -30607,22 +30656,22 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30607
30656
|
branch: string;
|
|
30608
30657
|
projectId: string;
|
|
30609
30658
|
url?: string | undefined;
|
|
30659
|
+
userId?: number | undefined;
|
|
30610
30660
|
credentialId?: string | undefined;
|
|
30611
30661
|
relativePath?: string | undefined;
|
|
30612
30662
|
commitAuthorName?: string | undefined;
|
|
30613
30663
|
commitAuthorEmail?: string | undefined;
|
|
30614
30664
|
connectionId?: string | undefined;
|
|
30615
|
-
userId?: number | undefined;
|
|
30616
30665
|
}, {
|
|
30617
30666
|
branch: string;
|
|
30618
30667
|
projectId: string;
|
|
30619
30668
|
url?: string | null | undefined;
|
|
30669
|
+
userId?: number | null | undefined;
|
|
30620
30670
|
credentialId?: string | undefined;
|
|
30621
30671
|
relativePath?: string | null | undefined;
|
|
30622
30672
|
commitAuthorName?: string | null | undefined;
|
|
30623
30673
|
commitAuthorEmail?: string | null | undefined;
|
|
30624
30674
|
connectionId?: string | null | undefined;
|
|
30625
|
-
userId?: number | null | undefined;
|
|
30626
30675
|
}>>;
|
|
30627
30676
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
30628
30677
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -30661,45 +30710,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30661
30710
|
projectId: string;
|
|
30662
30711
|
repositoryId: string;
|
|
30663
30712
|
url?: string | undefined;
|
|
30713
|
+
userId?: number | undefined;
|
|
30664
30714
|
credentialId?: string | undefined;
|
|
30665
30715
|
relativePath?: string | undefined;
|
|
30666
30716
|
commitAuthorName?: string | undefined;
|
|
30667
30717
|
commitAuthorEmail?: string | undefined;
|
|
30668
30718
|
connectionId?: string | undefined;
|
|
30669
|
-
userId?: number | undefined;
|
|
30670
30719
|
} | undefined;
|
|
30671
30720
|
bitbucket?: {
|
|
30672
30721
|
branch: string;
|
|
30673
30722
|
workspaceSlug: string;
|
|
30674
30723
|
projectKey: string;
|
|
30675
30724
|
repoSlug: string;
|
|
30725
|
+
userId?: number | undefined;
|
|
30676
30726
|
credentialId?: string | undefined;
|
|
30677
30727
|
relativePath?: string | undefined;
|
|
30678
30728
|
commitAuthorName?: string | undefined;
|
|
30679
30729
|
commitAuthorEmail?: string | undefined;
|
|
30680
30730
|
connectionId?: string | undefined;
|
|
30681
|
-
userId?: number | undefined;
|
|
30682
30731
|
} | undefined;
|
|
30683
30732
|
github?: {
|
|
30684
30733
|
url: string;
|
|
30685
30734
|
branch: string;
|
|
30735
|
+
userId?: number | undefined;
|
|
30686
30736
|
credentialId?: string | undefined;
|
|
30687
30737
|
relativePath?: string | undefined;
|
|
30688
30738
|
commitAuthorName?: string | undefined;
|
|
30689
30739
|
commitAuthorEmail?: string | undefined;
|
|
30690
30740
|
connectionId?: string | undefined;
|
|
30691
|
-
userId?: number | undefined;
|
|
30692
30741
|
} | undefined;
|
|
30693
30742
|
gitlab?: {
|
|
30694
30743
|
branch: string;
|
|
30695
30744
|
projectId: string;
|
|
30696
30745
|
url?: string | undefined;
|
|
30746
|
+
userId?: number | undefined;
|
|
30697
30747
|
credentialId?: string | undefined;
|
|
30698
30748
|
relativePath?: string | undefined;
|
|
30699
30749
|
commitAuthorName?: string | undefined;
|
|
30700
30750
|
commitAuthorEmail?: string | undefined;
|
|
30701
30751
|
connectionId?: string | undefined;
|
|
30702
|
-
userId?: number | undefined;
|
|
30703
30752
|
} | undefined;
|
|
30704
30753
|
documentation?: {
|
|
30705
30754
|
environment: "Live" | "Preview";
|
|
@@ -30717,45 +30766,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30717
30766
|
projectId: string;
|
|
30718
30767
|
repositoryId: string;
|
|
30719
30768
|
url?: string | null | undefined;
|
|
30769
|
+
userId?: number | null | undefined;
|
|
30720
30770
|
credentialId?: string | undefined;
|
|
30721
30771
|
relativePath?: string | null | undefined;
|
|
30722
30772
|
commitAuthorName?: string | null | undefined;
|
|
30723
30773
|
commitAuthorEmail?: string | null | undefined;
|
|
30724
30774
|
connectionId?: string | null | undefined;
|
|
30725
|
-
userId?: number | null | undefined;
|
|
30726
30775
|
} | undefined;
|
|
30727
30776
|
bitbucket?: {
|
|
30728
30777
|
branch: string;
|
|
30729
30778
|
workspaceSlug: string;
|
|
30730
30779
|
projectKey: string;
|
|
30731
30780
|
repoSlug: string;
|
|
30781
|
+
userId?: number | null | undefined;
|
|
30732
30782
|
credentialId?: string | undefined;
|
|
30733
30783
|
relativePath?: string | null | undefined;
|
|
30734
30784
|
commitAuthorName?: string | null | undefined;
|
|
30735
30785
|
commitAuthorEmail?: string | null | undefined;
|
|
30736
30786
|
connectionId?: string | null | undefined;
|
|
30737
|
-
userId?: number | null | undefined;
|
|
30738
30787
|
} | undefined;
|
|
30739
30788
|
github?: {
|
|
30740
30789
|
url: string;
|
|
30741
30790
|
branch: string;
|
|
30791
|
+
userId?: number | null | undefined;
|
|
30742
30792
|
credentialId?: string | undefined;
|
|
30743
30793
|
relativePath?: string | null | undefined;
|
|
30744
30794
|
commitAuthorName?: string | null | undefined;
|
|
30745
30795
|
commitAuthorEmail?: string | null | undefined;
|
|
30746
30796
|
connectionId?: string | null | undefined;
|
|
30747
|
-
userId?: number | null | undefined;
|
|
30748
30797
|
} | undefined;
|
|
30749
30798
|
gitlab?: {
|
|
30750
30799
|
branch: string;
|
|
30751
30800
|
projectId: string;
|
|
30752
30801
|
url?: string | null | undefined;
|
|
30802
|
+
userId?: number | null | undefined;
|
|
30753
30803
|
credentialId?: string | undefined;
|
|
30754
30804
|
relativePath?: string | null | undefined;
|
|
30755
30805
|
commitAuthorName?: string | null | undefined;
|
|
30756
30806
|
commitAuthorEmail?: string | null | undefined;
|
|
30757
30807
|
connectionId?: string | null | undefined;
|
|
30758
|
-
userId?: number | null | undefined;
|
|
30759
30808
|
} | undefined;
|
|
30760
30809
|
documentation?: {
|
|
30761
30810
|
environment: "Live" | "Preview";
|
|
@@ -30951,45 +31000,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30951
31000
|
projectId: string;
|
|
30952
31001
|
repositoryId: string;
|
|
30953
31002
|
url?: string | undefined;
|
|
31003
|
+
userId?: number | undefined;
|
|
30954
31004
|
credentialId?: string | undefined;
|
|
30955
31005
|
relativePath?: string | undefined;
|
|
30956
31006
|
commitAuthorName?: string | undefined;
|
|
30957
31007
|
commitAuthorEmail?: string | undefined;
|
|
30958
31008
|
connectionId?: string | undefined;
|
|
30959
|
-
userId?: number | undefined;
|
|
30960
31009
|
} | undefined;
|
|
30961
31010
|
bitbucket?: {
|
|
30962
31011
|
branch: string;
|
|
30963
31012
|
workspaceSlug: string;
|
|
30964
31013
|
projectKey: string;
|
|
30965
31014
|
repoSlug: string;
|
|
31015
|
+
userId?: number | undefined;
|
|
30966
31016
|
credentialId?: string | undefined;
|
|
30967
31017
|
relativePath?: string | undefined;
|
|
30968
31018
|
commitAuthorName?: string | undefined;
|
|
30969
31019
|
commitAuthorEmail?: string | undefined;
|
|
30970
31020
|
connectionId?: string | undefined;
|
|
30971
|
-
userId?: number | undefined;
|
|
30972
31021
|
} | undefined;
|
|
30973
31022
|
github?: {
|
|
30974
31023
|
url: string;
|
|
30975
31024
|
branch: string;
|
|
31025
|
+
userId?: number | undefined;
|
|
30976
31026
|
credentialId?: string | undefined;
|
|
30977
31027
|
relativePath?: string | undefined;
|
|
30978
31028
|
commitAuthorName?: string | undefined;
|
|
30979
31029
|
commitAuthorEmail?: string | undefined;
|
|
30980
31030
|
connectionId?: string | undefined;
|
|
30981
|
-
userId?: number | undefined;
|
|
30982
31031
|
} | undefined;
|
|
30983
31032
|
gitlab?: {
|
|
30984
31033
|
branch: string;
|
|
30985
31034
|
projectId: string;
|
|
30986
31035
|
url?: string | undefined;
|
|
31036
|
+
userId?: number | undefined;
|
|
30987
31037
|
credentialId?: string | undefined;
|
|
30988
31038
|
relativePath?: string | undefined;
|
|
30989
31039
|
commitAuthorName?: string | undefined;
|
|
30990
31040
|
commitAuthorEmail?: string | undefined;
|
|
30991
31041
|
connectionId?: string | undefined;
|
|
30992
|
-
userId?: number | undefined;
|
|
30993
31042
|
} | undefined;
|
|
30994
31043
|
documentation?: {
|
|
30995
31044
|
environment: "Live" | "Preview";
|
|
@@ -31071,45 +31120,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
31071
31120
|
projectId: string;
|
|
31072
31121
|
repositoryId: string;
|
|
31073
31122
|
url?: string | null | undefined;
|
|
31123
|
+
userId?: number | null | undefined;
|
|
31074
31124
|
credentialId?: string | undefined;
|
|
31075
31125
|
relativePath?: string | null | undefined;
|
|
31076
31126
|
commitAuthorName?: string | null | undefined;
|
|
31077
31127
|
commitAuthorEmail?: string | null | undefined;
|
|
31078
31128
|
connectionId?: string | null | undefined;
|
|
31079
|
-
userId?: number | null | undefined;
|
|
31080
31129
|
} | undefined;
|
|
31081
31130
|
bitbucket?: {
|
|
31082
31131
|
branch: string;
|
|
31083
31132
|
workspaceSlug: string;
|
|
31084
31133
|
projectKey: string;
|
|
31085
31134
|
repoSlug: string;
|
|
31135
|
+
userId?: number | null | undefined;
|
|
31086
31136
|
credentialId?: string | undefined;
|
|
31087
31137
|
relativePath?: string | null | undefined;
|
|
31088
31138
|
commitAuthorName?: string | null | undefined;
|
|
31089
31139
|
commitAuthorEmail?: string | null | undefined;
|
|
31090
31140
|
connectionId?: string | null | undefined;
|
|
31091
|
-
userId?: number | null | undefined;
|
|
31092
31141
|
} | undefined;
|
|
31093
31142
|
github?: {
|
|
31094
31143
|
url: string;
|
|
31095
31144
|
branch: string;
|
|
31145
|
+
userId?: number | null | undefined;
|
|
31096
31146
|
credentialId?: string | undefined;
|
|
31097
31147
|
relativePath?: string | null | undefined;
|
|
31098
31148
|
commitAuthorName?: string | null | undefined;
|
|
31099
31149
|
commitAuthorEmail?: string | null | undefined;
|
|
31100
31150
|
connectionId?: string | null | undefined;
|
|
31101
|
-
userId?: number | null | undefined;
|
|
31102
31151
|
} | undefined;
|
|
31103
31152
|
gitlab?: {
|
|
31104
31153
|
branch: string;
|
|
31105
31154
|
projectId: string;
|
|
31106
31155
|
url?: string | null | undefined;
|
|
31156
|
+
userId?: number | null | undefined;
|
|
31107
31157
|
credentialId?: string | undefined;
|
|
31108
31158
|
relativePath?: string | null | undefined;
|
|
31109
31159
|
commitAuthorName?: string | null | undefined;
|
|
31110
31160
|
commitAuthorEmail?: string | null | undefined;
|
|
31111
31161
|
connectionId?: string | null | undefined;
|
|
31112
|
-
userId?: number | null | undefined;
|
|
31113
31162
|
} | undefined;
|
|
31114
31163
|
documentation?: {
|
|
31115
31164
|
environment: "Live" | "Preview";
|
|
@@ -31193,45 +31242,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
31193
31242
|
projectId: string;
|
|
31194
31243
|
repositoryId: string;
|
|
31195
31244
|
url?: string | undefined;
|
|
31245
|
+
userId?: number | undefined;
|
|
31196
31246
|
credentialId?: string | undefined;
|
|
31197
31247
|
relativePath?: string | undefined;
|
|
31198
31248
|
commitAuthorName?: string | undefined;
|
|
31199
31249
|
commitAuthorEmail?: string | undefined;
|
|
31200
31250
|
connectionId?: string | undefined;
|
|
31201
|
-
userId?: number | undefined;
|
|
31202
31251
|
} | undefined;
|
|
31203
31252
|
bitbucket?: {
|
|
31204
31253
|
branch: string;
|
|
31205
31254
|
workspaceSlug: string;
|
|
31206
31255
|
projectKey: string;
|
|
31207
31256
|
repoSlug: string;
|
|
31257
|
+
userId?: number | undefined;
|
|
31208
31258
|
credentialId?: string | undefined;
|
|
31209
31259
|
relativePath?: string | undefined;
|
|
31210
31260
|
commitAuthorName?: string | undefined;
|
|
31211
31261
|
commitAuthorEmail?: string | undefined;
|
|
31212
31262
|
connectionId?: string | undefined;
|
|
31213
|
-
userId?: number | undefined;
|
|
31214
31263
|
} | undefined;
|
|
31215
31264
|
github?: {
|
|
31216
31265
|
url: string;
|
|
31217
31266
|
branch: string;
|
|
31267
|
+
userId?: number | undefined;
|
|
31218
31268
|
credentialId?: string | undefined;
|
|
31219
31269
|
relativePath?: string | undefined;
|
|
31220
31270
|
commitAuthorName?: string | undefined;
|
|
31221
31271
|
commitAuthorEmail?: string | undefined;
|
|
31222
31272
|
connectionId?: string | undefined;
|
|
31223
|
-
userId?: number | undefined;
|
|
31224
31273
|
} | undefined;
|
|
31225
31274
|
gitlab?: {
|
|
31226
31275
|
branch: string;
|
|
31227
31276
|
projectId: string;
|
|
31228
31277
|
url?: string | undefined;
|
|
31278
|
+
userId?: number | undefined;
|
|
31229
31279
|
credentialId?: string | undefined;
|
|
31230
31280
|
relativePath?: string | undefined;
|
|
31231
31281
|
commitAuthorName?: string | undefined;
|
|
31232
31282
|
commitAuthorEmail?: string | undefined;
|
|
31233
31283
|
connectionId?: string | undefined;
|
|
31234
|
-
userId?: number | undefined;
|
|
31235
31284
|
} | undefined;
|
|
31236
31285
|
documentation?: {
|
|
31237
31286
|
environment: "Live" | "Preview";
|
|
@@ -31315,45 +31364,45 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
31315
31364
|
projectId: string;
|
|
31316
31365
|
repositoryId: string;
|
|
31317
31366
|
url?: string | null | undefined;
|
|
31367
|
+
userId?: number | null | undefined;
|
|
31318
31368
|
credentialId?: string | undefined;
|
|
31319
31369
|
relativePath?: string | null | undefined;
|
|
31320
31370
|
commitAuthorName?: string | null | undefined;
|
|
31321
31371
|
commitAuthorEmail?: string | null | undefined;
|
|
31322
31372
|
connectionId?: string | null | undefined;
|
|
31323
|
-
userId?: number | null | undefined;
|
|
31324
31373
|
} | undefined;
|
|
31325
31374
|
bitbucket?: {
|
|
31326
31375
|
branch: string;
|
|
31327
31376
|
workspaceSlug: string;
|
|
31328
31377
|
projectKey: string;
|
|
31329
31378
|
repoSlug: string;
|
|
31379
|
+
userId?: number | null | undefined;
|
|
31330
31380
|
credentialId?: string | undefined;
|
|
31331
31381
|
relativePath?: string | null | undefined;
|
|
31332
31382
|
commitAuthorName?: string | null | undefined;
|
|
31333
31383
|
commitAuthorEmail?: string | null | undefined;
|
|
31334
31384
|
connectionId?: string | null | undefined;
|
|
31335
|
-
userId?: number | null | undefined;
|
|
31336
31385
|
} | undefined;
|
|
31337
31386
|
github?: {
|
|
31338
31387
|
url: string;
|
|
31339
31388
|
branch: string;
|
|
31389
|
+
userId?: number | null | undefined;
|
|
31340
31390
|
credentialId?: string | undefined;
|
|
31341
31391
|
relativePath?: string | null | undefined;
|
|
31342
31392
|
commitAuthorName?: string | null | undefined;
|
|
31343
31393
|
commitAuthorEmail?: string | null | undefined;
|
|
31344
31394
|
connectionId?: string | null | undefined;
|
|
31345
|
-
userId?: number | null | undefined;
|
|
31346
31395
|
} | undefined;
|
|
31347
31396
|
gitlab?: {
|
|
31348
31397
|
branch: string;
|
|
31349
31398
|
projectId: string;
|
|
31350
31399
|
url?: string | null | undefined;
|
|
31400
|
+
userId?: number | null | undefined;
|
|
31351
31401
|
credentialId?: string | undefined;
|
|
31352
31402
|
relativePath?: string | null | undefined;
|
|
31353
31403
|
commitAuthorName?: string | null | undefined;
|
|
31354
31404
|
commitAuthorEmail?: string | null | undefined;
|
|
31355
31405
|
connectionId?: string | null | undefined;
|
|
31356
|
-
userId?: number | null | undefined;
|
|
31357
31406
|
} | undefined;
|
|
31358
31407
|
documentation?: {
|
|
31359
31408
|
environment: "Live" | "Preview";
|
|
@@ -31520,24 +31569,24 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31520
31569
|
projectId: string;
|
|
31521
31570
|
repositoryId: string;
|
|
31522
31571
|
url?: string | undefined;
|
|
31572
|
+
userId?: number | undefined;
|
|
31523
31573
|
credentialId?: string | undefined;
|
|
31524
31574
|
relativePath?: string | undefined;
|
|
31525
31575
|
commitAuthorName?: string | undefined;
|
|
31526
31576
|
commitAuthorEmail?: string | undefined;
|
|
31527
31577
|
connectionId?: string | undefined;
|
|
31528
|
-
userId?: number | undefined;
|
|
31529
31578
|
}, {
|
|
31530
31579
|
branch: string;
|
|
31531
31580
|
organizationId: string;
|
|
31532
31581
|
projectId: string;
|
|
31533
31582
|
repositoryId: string;
|
|
31534
31583
|
url?: string | null | undefined;
|
|
31584
|
+
userId?: number | null | undefined;
|
|
31535
31585
|
credentialId?: string | undefined;
|
|
31536
31586
|
relativePath?: string | null | undefined;
|
|
31537
31587
|
commitAuthorName?: string | null | undefined;
|
|
31538
31588
|
commitAuthorEmail?: string | null | undefined;
|
|
31539
31589
|
connectionId?: string | null | undefined;
|
|
31540
|
-
userId?: number | null | undefined;
|
|
31541
31590
|
}>>;
|
|
31542
31591
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
31543
31592
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -31555,23 +31604,23 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31555
31604
|
workspaceSlug: string;
|
|
31556
31605
|
projectKey: string;
|
|
31557
31606
|
repoSlug: string;
|
|
31607
|
+
userId?: number | undefined;
|
|
31558
31608
|
credentialId?: string | undefined;
|
|
31559
31609
|
relativePath?: string | undefined;
|
|
31560
31610
|
commitAuthorName?: string | undefined;
|
|
31561
31611
|
commitAuthorEmail?: string | undefined;
|
|
31562
31612
|
connectionId?: string | undefined;
|
|
31563
|
-
userId?: number | undefined;
|
|
31564
31613
|
}, {
|
|
31565
31614
|
branch: string;
|
|
31566
31615
|
workspaceSlug: string;
|
|
31567
31616
|
projectKey: string;
|
|
31568
31617
|
repoSlug: string;
|
|
31618
|
+
userId?: number | null | undefined;
|
|
31569
31619
|
credentialId?: string | undefined;
|
|
31570
31620
|
relativePath?: string | null | undefined;
|
|
31571
31621
|
commitAuthorName?: string | null | undefined;
|
|
31572
31622
|
commitAuthorEmail?: string | null | undefined;
|
|
31573
31623
|
connectionId?: string | null | undefined;
|
|
31574
|
-
userId?: number | null | undefined;
|
|
31575
31624
|
}>>;
|
|
31576
31625
|
github: z.ZodOptional<z.ZodObject<{
|
|
31577
31626
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -31585,21 +31634,21 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31585
31634
|
}, "strip", z.ZodTypeAny, {
|
|
31586
31635
|
url: string;
|
|
31587
31636
|
branch: string;
|
|
31637
|
+
userId?: number | undefined;
|
|
31588
31638
|
credentialId?: string | undefined;
|
|
31589
31639
|
relativePath?: string | undefined;
|
|
31590
31640
|
commitAuthorName?: string | undefined;
|
|
31591
31641
|
commitAuthorEmail?: string | undefined;
|
|
31592
31642
|
connectionId?: string | undefined;
|
|
31593
|
-
userId?: number | undefined;
|
|
31594
31643
|
}, {
|
|
31595
31644
|
url: string;
|
|
31596
31645
|
branch: string;
|
|
31646
|
+
userId?: number | null | undefined;
|
|
31597
31647
|
credentialId?: string | undefined;
|
|
31598
31648
|
relativePath?: string | null | undefined;
|
|
31599
31649
|
commitAuthorName?: string | null | undefined;
|
|
31600
31650
|
commitAuthorEmail?: string | null | undefined;
|
|
31601
31651
|
connectionId?: string | null | undefined;
|
|
31602
|
-
userId?: number | null | undefined;
|
|
31603
31652
|
}>>;
|
|
31604
31653
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
31605
31654
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -31615,22 +31664,22 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31615
31664
|
branch: string;
|
|
31616
31665
|
projectId: string;
|
|
31617
31666
|
url?: string | undefined;
|
|
31667
|
+
userId?: number | undefined;
|
|
31618
31668
|
credentialId?: string | undefined;
|
|
31619
31669
|
relativePath?: string | undefined;
|
|
31620
31670
|
commitAuthorName?: string | undefined;
|
|
31621
31671
|
commitAuthorEmail?: string | undefined;
|
|
31622
31672
|
connectionId?: string | undefined;
|
|
31623
|
-
userId?: number | undefined;
|
|
31624
31673
|
}, {
|
|
31625
31674
|
branch: string;
|
|
31626
31675
|
projectId: string;
|
|
31627
31676
|
url?: string | null | undefined;
|
|
31677
|
+
userId?: number | null | undefined;
|
|
31628
31678
|
credentialId?: string | undefined;
|
|
31629
31679
|
relativePath?: string | null | undefined;
|
|
31630
31680
|
commitAuthorName?: string | null | undefined;
|
|
31631
31681
|
commitAuthorEmail?: string | null | undefined;
|
|
31632
31682
|
connectionId?: string | null | undefined;
|
|
31633
|
-
userId?: number | null | undefined;
|
|
31634
31683
|
}>>;
|
|
31635
31684
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
31636
31685
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -31669,45 +31718,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31669
31718
|
projectId: string;
|
|
31670
31719
|
repositoryId: string;
|
|
31671
31720
|
url?: string | undefined;
|
|
31721
|
+
userId?: number | undefined;
|
|
31672
31722
|
credentialId?: string | undefined;
|
|
31673
31723
|
relativePath?: string | undefined;
|
|
31674
31724
|
commitAuthorName?: string | undefined;
|
|
31675
31725
|
commitAuthorEmail?: string | undefined;
|
|
31676
31726
|
connectionId?: string | undefined;
|
|
31677
|
-
userId?: number | undefined;
|
|
31678
31727
|
} | undefined;
|
|
31679
31728
|
bitbucket?: {
|
|
31680
31729
|
branch: string;
|
|
31681
31730
|
workspaceSlug: string;
|
|
31682
31731
|
projectKey: string;
|
|
31683
31732
|
repoSlug: string;
|
|
31733
|
+
userId?: number | undefined;
|
|
31684
31734
|
credentialId?: string | undefined;
|
|
31685
31735
|
relativePath?: string | undefined;
|
|
31686
31736
|
commitAuthorName?: string | undefined;
|
|
31687
31737
|
commitAuthorEmail?: string | undefined;
|
|
31688
31738
|
connectionId?: string | undefined;
|
|
31689
|
-
userId?: number | undefined;
|
|
31690
31739
|
} | undefined;
|
|
31691
31740
|
github?: {
|
|
31692
31741
|
url: string;
|
|
31693
31742
|
branch: string;
|
|
31743
|
+
userId?: number | undefined;
|
|
31694
31744
|
credentialId?: string | undefined;
|
|
31695
31745
|
relativePath?: string | undefined;
|
|
31696
31746
|
commitAuthorName?: string | undefined;
|
|
31697
31747
|
commitAuthorEmail?: string | undefined;
|
|
31698
31748
|
connectionId?: string | undefined;
|
|
31699
|
-
userId?: number | undefined;
|
|
31700
31749
|
} | undefined;
|
|
31701
31750
|
gitlab?: {
|
|
31702
31751
|
branch: string;
|
|
31703
31752
|
projectId: string;
|
|
31704
31753
|
url?: string | undefined;
|
|
31754
|
+
userId?: number | undefined;
|
|
31705
31755
|
credentialId?: string | undefined;
|
|
31706
31756
|
relativePath?: string | undefined;
|
|
31707
31757
|
commitAuthorName?: string | undefined;
|
|
31708
31758
|
commitAuthorEmail?: string | undefined;
|
|
31709
31759
|
connectionId?: string | undefined;
|
|
31710
|
-
userId?: number | undefined;
|
|
31711
31760
|
} | undefined;
|
|
31712
31761
|
documentation?: {
|
|
31713
31762
|
environment: "Live" | "Preview";
|
|
@@ -31725,45 +31774,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31725
31774
|
projectId: string;
|
|
31726
31775
|
repositoryId: string;
|
|
31727
31776
|
url?: string | null | undefined;
|
|
31777
|
+
userId?: number | null | undefined;
|
|
31728
31778
|
credentialId?: string | undefined;
|
|
31729
31779
|
relativePath?: string | null | undefined;
|
|
31730
31780
|
commitAuthorName?: string | null | undefined;
|
|
31731
31781
|
commitAuthorEmail?: string | null | undefined;
|
|
31732
31782
|
connectionId?: string | null | undefined;
|
|
31733
|
-
userId?: number | null | undefined;
|
|
31734
31783
|
} | undefined;
|
|
31735
31784
|
bitbucket?: {
|
|
31736
31785
|
branch: string;
|
|
31737
31786
|
workspaceSlug: string;
|
|
31738
31787
|
projectKey: string;
|
|
31739
31788
|
repoSlug: string;
|
|
31789
|
+
userId?: number | null | undefined;
|
|
31740
31790
|
credentialId?: string | undefined;
|
|
31741
31791
|
relativePath?: string | null | undefined;
|
|
31742
31792
|
commitAuthorName?: string | null | undefined;
|
|
31743
31793
|
commitAuthorEmail?: string | null | undefined;
|
|
31744
31794
|
connectionId?: string | null | undefined;
|
|
31745
|
-
userId?: number | null | undefined;
|
|
31746
31795
|
} | undefined;
|
|
31747
31796
|
github?: {
|
|
31748
31797
|
url: string;
|
|
31749
31798
|
branch: string;
|
|
31799
|
+
userId?: number | null | undefined;
|
|
31750
31800
|
credentialId?: string | undefined;
|
|
31751
31801
|
relativePath?: string | null | undefined;
|
|
31752
31802
|
commitAuthorName?: string | null | undefined;
|
|
31753
31803
|
commitAuthorEmail?: string | null | undefined;
|
|
31754
31804
|
connectionId?: string | null | undefined;
|
|
31755
|
-
userId?: number | null | undefined;
|
|
31756
31805
|
} | undefined;
|
|
31757
31806
|
gitlab?: {
|
|
31758
31807
|
branch: string;
|
|
31759
31808
|
projectId: string;
|
|
31760
31809
|
url?: string | null | undefined;
|
|
31810
|
+
userId?: number | null | undefined;
|
|
31761
31811
|
credentialId?: string | undefined;
|
|
31762
31812
|
relativePath?: string | null | undefined;
|
|
31763
31813
|
commitAuthorName?: string | null | undefined;
|
|
31764
31814
|
commitAuthorEmail?: string | null | undefined;
|
|
31765
31815
|
connectionId?: string | null | undefined;
|
|
31766
|
-
userId?: number | null | undefined;
|
|
31767
31816
|
} | undefined;
|
|
31768
31817
|
documentation?: {
|
|
31769
31818
|
environment: "Live" | "Preview";
|
|
@@ -31959,45 +32008,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31959
32008
|
projectId: string;
|
|
31960
32009
|
repositoryId: string;
|
|
31961
32010
|
url?: string | undefined;
|
|
32011
|
+
userId?: number | undefined;
|
|
31962
32012
|
credentialId?: string | undefined;
|
|
31963
32013
|
relativePath?: string | undefined;
|
|
31964
32014
|
commitAuthorName?: string | undefined;
|
|
31965
32015
|
commitAuthorEmail?: string | undefined;
|
|
31966
32016
|
connectionId?: string | undefined;
|
|
31967
|
-
userId?: number | undefined;
|
|
31968
32017
|
} | undefined;
|
|
31969
32018
|
bitbucket?: {
|
|
31970
32019
|
branch: string;
|
|
31971
32020
|
workspaceSlug: string;
|
|
31972
32021
|
projectKey: string;
|
|
31973
32022
|
repoSlug: string;
|
|
32023
|
+
userId?: number | undefined;
|
|
31974
32024
|
credentialId?: string | undefined;
|
|
31975
32025
|
relativePath?: string | undefined;
|
|
31976
32026
|
commitAuthorName?: string | undefined;
|
|
31977
32027
|
commitAuthorEmail?: string | undefined;
|
|
31978
32028
|
connectionId?: string | undefined;
|
|
31979
|
-
userId?: number | undefined;
|
|
31980
32029
|
} | undefined;
|
|
31981
32030
|
github?: {
|
|
31982
32031
|
url: string;
|
|
31983
32032
|
branch: string;
|
|
32033
|
+
userId?: number | undefined;
|
|
31984
32034
|
credentialId?: string | undefined;
|
|
31985
32035
|
relativePath?: string | undefined;
|
|
31986
32036
|
commitAuthorName?: string | undefined;
|
|
31987
32037
|
commitAuthorEmail?: string | undefined;
|
|
31988
32038
|
connectionId?: string | undefined;
|
|
31989
|
-
userId?: number | undefined;
|
|
31990
32039
|
} | undefined;
|
|
31991
32040
|
gitlab?: {
|
|
31992
32041
|
branch: string;
|
|
31993
32042
|
projectId: string;
|
|
31994
32043
|
url?: string | undefined;
|
|
32044
|
+
userId?: number | undefined;
|
|
31995
32045
|
credentialId?: string | undefined;
|
|
31996
32046
|
relativePath?: string | undefined;
|
|
31997
32047
|
commitAuthorName?: string | undefined;
|
|
31998
32048
|
commitAuthorEmail?: string | undefined;
|
|
31999
32049
|
connectionId?: string | undefined;
|
|
32000
|
-
userId?: number | undefined;
|
|
32001
32050
|
} | undefined;
|
|
32002
32051
|
documentation?: {
|
|
32003
32052
|
environment: "Live" | "Preview";
|
|
@@ -32079,45 +32128,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32079
32128
|
projectId: string;
|
|
32080
32129
|
repositoryId: string;
|
|
32081
32130
|
url?: string | null | undefined;
|
|
32131
|
+
userId?: number | null | undefined;
|
|
32082
32132
|
credentialId?: string | undefined;
|
|
32083
32133
|
relativePath?: string | null | undefined;
|
|
32084
32134
|
commitAuthorName?: string | null | undefined;
|
|
32085
32135
|
commitAuthorEmail?: string | null | undefined;
|
|
32086
32136
|
connectionId?: string | null | undefined;
|
|
32087
|
-
userId?: number | null | undefined;
|
|
32088
32137
|
} | undefined;
|
|
32089
32138
|
bitbucket?: {
|
|
32090
32139
|
branch: string;
|
|
32091
32140
|
workspaceSlug: string;
|
|
32092
32141
|
projectKey: string;
|
|
32093
32142
|
repoSlug: string;
|
|
32143
|
+
userId?: number | null | undefined;
|
|
32094
32144
|
credentialId?: string | undefined;
|
|
32095
32145
|
relativePath?: string | null | undefined;
|
|
32096
32146
|
commitAuthorName?: string | null | undefined;
|
|
32097
32147
|
commitAuthorEmail?: string | null | undefined;
|
|
32098
32148
|
connectionId?: string | null | undefined;
|
|
32099
|
-
userId?: number | null | undefined;
|
|
32100
32149
|
} | undefined;
|
|
32101
32150
|
github?: {
|
|
32102
32151
|
url: string;
|
|
32103
32152
|
branch: string;
|
|
32153
|
+
userId?: number | null | undefined;
|
|
32104
32154
|
credentialId?: string | undefined;
|
|
32105
32155
|
relativePath?: string | null | undefined;
|
|
32106
32156
|
commitAuthorName?: string | null | undefined;
|
|
32107
32157
|
commitAuthorEmail?: string | null | undefined;
|
|
32108
32158
|
connectionId?: string | null | undefined;
|
|
32109
|
-
userId?: number | null | undefined;
|
|
32110
32159
|
} | undefined;
|
|
32111
32160
|
gitlab?: {
|
|
32112
32161
|
branch: string;
|
|
32113
32162
|
projectId: string;
|
|
32114
32163
|
url?: string | null | undefined;
|
|
32164
|
+
userId?: number | null | undefined;
|
|
32115
32165
|
credentialId?: string | undefined;
|
|
32116
32166
|
relativePath?: string | null | undefined;
|
|
32117
32167
|
commitAuthorName?: string | null | undefined;
|
|
32118
32168
|
commitAuthorEmail?: string | null | undefined;
|
|
32119
32169
|
connectionId?: string | null | undefined;
|
|
32120
|
-
userId?: number | null | undefined;
|
|
32121
32170
|
} | undefined;
|
|
32122
32171
|
documentation?: {
|
|
32123
32172
|
environment: "Live" | "Preview";
|
|
@@ -32229,21 +32278,21 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32229
32278
|
}, "strip", z.ZodTypeAny, {
|
|
32230
32279
|
url: string;
|
|
32231
32280
|
branch: string;
|
|
32281
|
+
userId?: number | undefined;
|
|
32232
32282
|
credentialId?: string | undefined;
|
|
32233
32283
|
relativePath?: string | undefined;
|
|
32234
32284
|
commitAuthorName?: string | undefined;
|
|
32235
32285
|
commitAuthorEmail?: string | undefined;
|
|
32236
32286
|
connectionId?: string | undefined;
|
|
32237
|
-
userId?: number | undefined;
|
|
32238
32287
|
}, {
|
|
32239
32288
|
url: string;
|
|
32240
32289
|
branch: string;
|
|
32290
|
+
userId?: number | null | undefined;
|
|
32241
32291
|
credentialId?: string | undefined;
|
|
32242
32292
|
relativePath?: string | null | undefined;
|
|
32243
32293
|
commitAuthorName?: string | null | undefined;
|
|
32244
32294
|
commitAuthorEmail?: string | null | undefined;
|
|
32245
32295
|
connectionId?: string | null | undefined;
|
|
32246
|
-
userId?: number | null | undefined;
|
|
32247
32296
|
}>>;
|
|
32248
32297
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
32249
32298
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32263,24 +32312,24 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32263
32312
|
projectId: string;
|
|
32264
32313
|
repositoryId: string;
|
|
32265
32314
|
url?: string | undefined;
|
|
32315
|
+
userId?: number | undefined;
|
|
32266
32316
|
credentialId?: string | undefined;
|
|
32267
32317
|
relativePath?: string | undefined;
|
|
32268
32318
|
commitAuthorName?: string | undefined;
|
|
32269
32319
|
commitAuthorEmail?: string | undefined;
|
|
32270
32320
|
connectionId?: string | undefined;
|
|
32271
|
-
userId?: number | undefined;
|
|
32272
32321
|
}, {
|
|
32273
32322
|
branch: string;
|
|
32274
32323
|
organizationId: string;
|
|
32275
32324
|
projectId: string;
|
|
32276
32325
|
repositoryId: string;
|
|
32277
32326
|
url?: string | null | undefined;
|
|
32327
|
+
userId?: number | null | undefined;
|
|
32278
32328
|
credentialId?: string | undefined;
|
|
32279
32329
|
relativePath?: string | null | undefined;
|
|
32280
32330
|
commitAuthorName?: string | null | undefined;
|
|
32281
32331
|
commitAuthorEmail?: string | null | undefined;
|
|
32282
32332
|
connectionId?: string | null | undefined;
|
|
32283
|
-
userId?: number | null | undefined;
|
|
32284
32333
|
}>>;
|
|
32285
32334
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
32286
32335
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32296,22 +32345,22 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32296
32345
|
branch: string;
|
|
32297
32346
|
projectId: string;
|
|
32298
32347
|
url?: string | undefined;
|
|
32348
|
+
userId?: number | undefined;
|
|
32299
32349
|
credentialId?: string | undefined;
|
|
32300
32350
|
relativePath?: string | undefined;
|
|
32301
32351
|
commitAuthorName?: string | undefined;
|
|
32302
32352
|
commitAuthorEmail?: string | undefined;
|
|
32303
32353
|
connectionId?: string | undefined;
|
|
32304
|
-
userId?: number | undefined;
|
|
32305
32354
|
}, {
|
|
32306
32355
|
branch: string;
|
|
32307
32356
|
projectId: string;
|
|
32308
32357
|
url?: string | null | undefined;
|
|
32358
|
+
userId?: number | null | undefined;
|
|
32309
32359
|
credentialId?: string | undefined;
|
|
32310
32360
|
relativePath?: string | null | undefined;
|
|
32311
32361
|
commitAuthorName?: string | null | undefined;
|
|
32312
32362
|
commitAuthorEmail?: string | null | undefined;
|
|
32313
32363
|
connectionId?: string | null | undefined;
|
|
32314
|
-
userId?: number | null | undefined;
|
|
32315
32364
|
}>>;
|
|
32316
32365
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
32317
32366
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32329,23 +32378,23 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32329
32378
|
workspaceSlug: string;
|
|
32330
32379
|
projectKey: string;
|
|
32331
32380
|
repoSlug: string;
|
|
32381
|
+
userId?: number | undefined;
|
|
32332
32382
|
credentialId?: string | undefined;
|
|
32333
32383
|
relativePath?: string | undefined;
|
|
32334
32384
|
commitAuthorName?: string | undefined;
|
|
32335
32385
|
commitAuthorEmail?: string | undefined;
|
|
32336
32386
|
connectionId?: string | undefined;
|
|
32337
|
-
userId?: number | undefined;
|
|
32338
32387
|
}, {
|
|
32339
32388
|
branch: string;
|
|
32340
32389
|
workspaceSlug: string;
|
|
32341
32390
|
projectKey: string;
|
|
32342
32391
|
repoSlug: string;
|
|
32392
|
+
userId?: number | null | undefined;
|
|
32343
32393
|
credentialId?: string | undefined;
|
|
32344
32394
|
relativePath?: string | null | undefined;
|
|
32345
32395
|
commitAuthorName?: string | null | undefined;
|
|
32346
32396
|
commitAuthorEmail?: string | null | undefined;
|
|
32347
32397
|
connectionId?: string | null | undefined;
|
|
32348
|
-
userId?: number | null | undefined;
|
|
32349
32398
|
}>>;
|
|
32350
32399
|
id: z.ZodString;
|
|
32351
32400
|
name: z.ZodString;
|
|
@@ -32377,45 +32426,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32377
32426
|
projectId: string;
|
|
32378
32427
|
repositoryId: string;
|
|
32379
32428
|
url?: string | undefined;
|
|
32429
|
+
userId?: number | undefined;
|
|
32380
32430
|
credentialId?: string | undefined;
|
|
32381
32431
|
relativePath?: string | undefined;
|
|
32382
32432
|
commitAuthorName?: string | undefined;
|
|
32383
32433
|
commitAuthorEmail?: string | undefined;
|
|
32384
32434
|
connectionId?: string | undefined;
|
|
32385
|
-
userId?: number | undefined;
|
|
32386
32435
|
} | undefined;
|
|
32387
32436
|
bitbucket?: {
|
|
32388
32437
|
branch: string;
|
|
32389
32438
|
workspaceSlug: string;
|
|
32390
32439
|
projectKey: string;
|
|
32391
32440
|
repoSlug: string;
|
|
32441
|
+
userId?: number | undefined;
|
|
32392
32442
|
credentialId?: string | undefined;
|
|
32393
32443
|
relativePath?: string | undefined;
|
|
32394
32444
|
commitAuthorName?: string | undefined;
|
|
32395
32445
|
commitAuthorEmail?: string | undefined;
|
|
32396
32446
|
connectionId?: string | undefined;
|
|
32397
|
-
userId?: number | undefined;
|
|
32398
32447
|
} | undefined;
|
|
32399
32448
|
github?: {
|
|
32400
32449
|
url: string;
|
|
32401
32450
|
branch: string;
|
|
32451
|
+
userId?: number | undefined;
|
|
32402
32452
|
credentialId?: string | undefined;
|
|
32403
32453
|
relativePath?: string | undefined;
|
|
32404
32454
|
commitAuthorName?: string | undefined;
|
|
32405
32455
|
commitAuthorEmail?: string | undefined;
|
|
32406
32456
|
connectionId?: string | undefined;
|
|
32407
|
-
userId?: number | undefined;
|
|
32408
32457
|
} | undefined;
|
|
32409
32458
|
gitlab?: {
|
|
32410
32459
|
branch: string;
|
|
32411
32460
|
projectId: string;
|
|
32412
32461
|
url?: string | undefined;
|
|
32462
|
+
userId?: number | undefined;
|
|
32413
32463
|
credentialId?: string | undefined;
|
|
32414
32464
|
relativePath?: string | undefined;
|
|
32415
32465
|
commitAuthorName?: string | undefined;
|
|
32416
32466
|
commitAuthorEmail?: string | undefined;
|
|
32417
32467
|
connectionId?: string | undefined;
|
|
32418
|
-
userId?: number | undefined;
|
|
32419
32468
|
} | undefined;
|
|
32420
32469
|
documentation?: {
|
|
32421
32470
|
environment: "Live" | "Preview";
|
|
@@ -32499,12 +32548,12 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32499
32548
|
destinationGithub?: {
|
|
32500
32549
|
url: string;
|
|
32501
32550
|
branch: string;
|
|
32551
|
+
userId?: number | undefined;
|
|
32502
32552
|
credentialId?: string | undefined;
|
|
32503
32553
|
relativePath?: string | undefined;
|
|
32504
32554
|
commitAuthorName?: string | undefined;
|
|
32505
32555
|
commitAuthorEmail?: string | undefined;
|
|
32506
32556
|
connectionId?: string | undefined;
|
|
32507
|
-
userId?: number | undefined;
|
|
32508
32557
|
} | undefined;
|
|
32509
32558
|
destinationAzure?: {
|
|
32510
32559
|
branch: string;
|
|
@@ -32512,35 +32561,35 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32512
32561
|
projectId: string;
|
|
32513
32562
|
repositoryId: string;
|
|
32514
32563
|
url?: string | undefined;
|
|
32564
|
+
userId?: number | undefined;
|
|
32515
32565
|
credentialId?: string | undefined;
|
|
32516
32566
|
relativePath?: string | undefined;
|
|
32517
32567
|
commitAuthorName?: string | undefined;
|
|
32518
32568
|
commitAuthorEmail?: string | undefined;
|
|
32519
32569
|
connectionId?: string | undefined;
|
|
32520
|
-
userId?: number | undefined;
|
|
32521
32570
|
} | undefined;
|
|
32522
32571
|
destinationGitlab?: {
|
|
32523
32572
|
branch: string;
|
|
32524
32573
|
projectId: string;
|
|
32525
32574
|
url?: string | undefined;
|
|
32575
|
+
userId?: number | undefined;
|
|
32526
32576
|
credentialId?: string | undefined;
|
|
32527
32577
|
relativePath?: string | undefined;
|
|
32528
32578
|
commitAuthorName?: string | undefined;
|
|
32529
32579
|
commitAuthorEmail?: string | undefined;
|
|
32530
32580
|
connectionId?: string | undefined;
|
|
32531
|
-
userId?: number | undefined;
|
|
32532
32581
|
} | undefined;
|
|
32533
32582
|
destinationBitbucket?: {
|
|
32534
32583
|
branch: string;
|
|
32535
32584
|
workspaceSlug: string;
|
|
32536
32585
|
projectKey: string;
|
|
32537
32586
|
repoSlug: string;
|
|
32587
|
+
userId?: number | undefined;
|
|
32538
32588
|
credentialId?: string | undefined;
|
|
32539
32589
|
relativePath?: string | undefined;
|
|
32540
32590
|
commitAuthorName?: string | undefined;
|
|
32541
32591
|
commitAuthorEmail?: string | undefined;
|
|
32542
32592
|
connectionId?: string | undefined;
|
|
32543
|
-
userId?: number | undefined;
|
|
32544
32593
|
} | undefined;
|
|
32545
32594
|
}, {
|
|
32546
32595
|
id: string;
|
|
@@ -32563,45 +32612,45 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32563
32612
|
projectId: string;
|
|
32564
32613
|
repositoryId: string;
|
|
32565
32614
|
url?: string | null | undefined;
|
|
32615
|
+
userId?: number | null | undefined;
|
|
32566
32616
|
credentialId?: string | undefined;
|
|
32567
32617
|
relativePath?: string | null | undefined;
|
|
32568
32618
|
commitAuthorName?: string | null | undefined;
|
|
32569
32619
|
commitAuthorEmail?: string | null | undefined;
|
|
32570
32620
|
connectionId?: string | null | undefined;
|
|
32571
|
-
userId?: number | null | undefined;
|
|
32572
32621
|
} | undefined;
|
|
32573
32622
|
bitbucket?: {
|
|
32574
32623
|
branch: string;
|
|
32575
32624
|
workspaceSlug: string;
|
|
32576
32625
|
projectKey: string;
|
|
32577
32626
|
repoSlug: string;
|
|
32627
|
+
userId?: number | null | undefined;
|
|
32578
32628
|
credentialId?: string | undefined;
|
|
32579
32629
|
relativePath?: string | null | undefined;
|
|
32580
32630
|
commitAuthorName?: string | null | undefined;
|
|
32581
32631
|
commitAuthorEmail?: string | null | undefined;
|
|
32582
32632
|
connectionId?: string | null | undefined;
|
|
32583
|
-
userId?: number | null | undefined;
|
|
32584
32633
|
} | undefined;
|
|
32585
32634
|
github?: {
|
|
32586
32635
|
url: string;
|
|
32587
32636
|
branch: string;
|
|
32637
|
+
userId?: number | null | undefined;
|
|
32588
32638
|
credentialId?: string | undefined;
|
|
32589
32639
|
relativePath?: string | null | undefined;
|
|
32590
32640
|
commitAuthorName?: string | null | undefined;
|
|
32591
32641
|
commitAuthorEmail?: string | null | undefined;
|
|
32592
32642
|
connectionId?: string | null | undefined;
|
|
32593
|
-
userId?: number | null | undefined;
|
|
32594
32643
|
} | undefined;
|
|
32595
32644
|
gitlab?: {
|
|
32596
32645
|
branch: string;
|
|
32597
32646
|
projectId: string;
|
|
32598
32647
|
url?: string | null | undefined;
|
|
32648
|
+
userId?: number | null | undefined;
|
|
32599
32649
|
credentialId?: string | undefined;
|
|
32600
32650
|
relativePath?: string | null | undefined;
|
|
32601
32651
|
commitAuthorName?: string | null | undefined;
|
|
32602
32652
|
commitAuthorEmail?: string | null | undefined;
|
|
32603
32653
|
connectionId?: string | null | undefined;
|
|
32604
|
-
userId?: number | null | undefined;
|
|
32605
32654
|
} | undefined;
|
|
32606
32655
|
documentation?: {
|
|
32607
32656
|
environment: "Live" | "Preview";
|
|
@@ -32685,12 +32734,12 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32685
32734
|
destinationGithub?: {
|
|
32686
32735
|
url: string;
|
|
32687
32736
|
branch: string;
|
|
32737
|
+
userId?: number | null | undefined;
|
|
32688
32738
|
credentialId?: string | undefined;
|
|
32689
32739
|
relativePath?: string | null | undefined;
|
|
32690
32740
|
commitAuthorName?: string | null | undefined;
|
|
32691
32741
|
commitAuthorEmail?: string | null | undefined;
|
|
32692
32742
|
connectionId?: string | null | undefined;
|
|
32693
|
-
userId?: number | null | undefined;
|
|
32694
32743
|
} | undefined;
|
|
32695
32744
|
destinationAzure?: {
|
|
32696
32745
|
branch: string;
|
|
@@ -32698,35 +32747,35 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
32698
32747
|
projectId: string;
|
|
32699
32748
|
repositoryId: string;
|
|
32700
32749
|
url?: string | null | undefined;
|
|
32750
|
+
userId?: number | null | undefined;
|
|
32701
32751
|
credentialId?: string | undefined;
|
|
32702
32752
|
relativePath?: string | null | undefined;
|
|
32703
32753
|
commitAuthorName?: string | null | undefined;
|
|
32704
32754
|
commitAuthorEmail?: string | null | undefined;
|
|
32705
32755
|
connectionId?: string | null | undefined;
|
|
32706
|
-
userId?: number | null | undefined;
|
|
32707
32756
|
} | undefined;
|
|
32708
32757
|
destinationGitlab?: {
|
|
32709
32758
|
branch: string;
|
|
32710
32759
|
projectId: string;
|
|
32711
32760
|
url?: string | null | undefined;
|
|
32761
|
+
userId?: number | null | undefined;
|
|
32712
32762
|
credentialId?: string | undefined;
|
|
32713
32763
|
relativePath?: string | null | undefined;
|
|
32714
32764
|
commitAuthorName?: string | null | undefined;
|
|
32715
32765
|
commitAuthorEmail?: string | null | undefined;
|
|
32716
32766
|
connectionId?: string | null | undefined;
|
|
32717
|
-
userId?: number | null | undefined;
|
|
32718
32767
|
} | undefined;
|
|
32719
32768
|
destinationBitbucket?: {
|
|
32720
32769
|
branch: string;
|
|
32721
32770
|
workspaceSlug: string;
|
|
32722
32771
|
projectKey: string;
|
|
32723
32772
|
repoSlug: string;
|
|
32773
|
+
userId?: number | null | undefined;
|
|
32724
32774
|
credentialId?: string | undefined;
|
|
32725
32775
|
relativePath?: string | null | undefined;
|
|
32726
32776
|
commitAuthorName?: string | null | undefined;
|
|
32727
32777
|
commitAuthorEmail?: string | null | undefined;
|
|
32728
32778
|
connectionId?: string | null | undefined;
|
|
32729
|
-
userId?: number | null | undefined;
|
|
32730
32779
|
} | undefined;
|
|
32731
32780
|
}>;
|
|
32732
32781
|
type DTOPipeline = z.infer<typeof DTOPipeline>;
|
|
@@ -33011,16 +33060,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33011
33060
|
}, "strip", z.ZodTypeAny, {
|
|
33012
33061
|
id: string;
|
|
33013
33062
|
email?: string | undefined;
|
|
33014
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33015
33063
|
handle?: string | undefined;
|
|
33016
33064
|
avatarUrl?: string | undefined;
|
|
33065
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33017
33066
|
customUrl?: string | undefined;
|
|
33018
33067
|
}, {
|
|
33019
33068
|
id: string;
|
|
33020
33069
|
email?: string | undefined;
|
|
33021
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33022
33070
|
handle?: string | undefined;
|
|
33023
33071
|
avatarUrl?: string | undefined;
|
|
33072
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33024
33073
|
customUrl?: string | undefined;
|
|
33025
33074
|
}>>;
|
|
33026
33075
|
github: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -33033,16 +33082,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33033
33082
|
}, "strip", z.ZodTypeAny, {
|
|
33034
33083
|
id: string;
|
|
33035
33084
|
email?: string | undefined;
|
|
33036
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33037
33085
|
handle?: string | undefined;
|
|
33038
33086
|
avatarUrl?: string | undefined;
|
|
33087
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33039
33088
|
customUrl?: string | undefined;
|
|
33040
33089
|
}, {
|
|
33041
33090
|
id: string;
|
|
33042
33091
|
email?: string | undefined;
|
|
33043
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33044
33092
|
handle?: string | undefined;
|
|
33045
33093
|
avatarUrl?: string | undefined;
|
|
33094
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33046
33095
|
customUrl?: string | undefined;
|
|
33047
33096
|
}>, "many">>;
|
|
33048
33097
|
azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -33055,16 +33104,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33055
33104
|
}, "strip", z.ZodTypeAny, {
|
|
33056
33105
|
id: string;
|
|
33057
33106
|
email?: string | undefined;
|
|
33058
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33059
33107
|
handle?: string | undefined;
|
|
33060
33108
|
avatarUrl?: string | undefined;
|
|
33109
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33061
33110
|
customUrl?: string | undefined;
|
|
33062
33111
|
}, {
|
|
33063
33112
|
id: string;
|
|
33064
33113
|
email?: string | undefined;
|
|
33065
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33066
33114
|
handle?: string | undefined;
|
|
33067
33115
|
avatarUrl?: string | undefined;
|
|
33116
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33068
33117
|
customUrl?: string | undefined;
|
|
33069
33118
|
}>, "many">>;
|
|
33070
33119
|
gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -33077,16 +33126,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33077
33126
|
}, "strip", z.ZodTypeAny, {
|
|
33078
33127
|
id: string;
|
|
33079
33128
|
email?: string | undefined;
|
|
33080
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33081
33129
|
handle?: string | undefined;
|
|
33082
33130
|
avatarUrl?: string | undefined;
|
|
33131
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33083
33132
|
customUrl?: string | undefined;
|
|
33084
33133
|
}, {
|
|
33085
33134
|
id: string;
|
|
33086
33135
|
email?: string | undefined;
|
|
33087
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33088
33136
|
handle?: string | undefined;
|
|
33089
33137
|
avatarUrl?: string | undefined;
|
|
33138
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33090
33139
|
customUrl?: string | undefined;
|
|
33091
33140
|
}>, "many">>;
|
|
33092
33141
|
bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -33099,98 +33148,98 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33099
33148
|
}, "strip", z.ZodTypeAny, {
|
|
33100
33149
|
id: string;
|
|
33101
33150
|
email?: string | undefined;
|
|
33102
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33103
33151
|
handle?: string | undefined;
|
|
33104
33152
|
avatarUrl?: string | undefined;
|
|
33153
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33105
33154
|
customUrl?: string | undefined;
|
|
33106
33155
|
}, {
|
|
33107
33156
|
id: string;
|
|
33108
33157
|
email?: string | undefined;
|
|
33109
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33110
33158
|
handle?: string | undefined;
|
|
33111
33159
|
avatarUrl?: string | undefined;
|
|
33160
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33112
33161
|
customUrl?: string | undefined;
|
|
33113
33162
|
}>, "many">>;
|
|
33114
33163
|
}, "strip", z.ZodTypeAny, {
|
|
33115
33164
|
azure?: {
|
|
33116
33165
|
id: string;
|
|
33117
33166
|
email?: string | undefined;
|
|
33118
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33119
33167
|
handle?: string | undefined;
|
|
33120
33168
|
avatarUrl?: string | undefined;
|
|
33169
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33121
33170
|
customUrl?: string | undefined;
|
|
33122
33171
|
}[] | undefined;
|
|
33123
33172
|
github?: {
|
|
33124
33173
|
id: string;
|
|
33125
33174
|
email?: string | undefined;
|
|
33126
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33127
33175
|
handle?: string | undefined;
|
|
33128
33176
|
avatarUrl?: string | undefined;
|
|
33177
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33129
33178
|
customUrl?: string | undefined;
|
|
33130
33179
|
}[] | undefined;
|
|
33131
33180
|
gitlab?: {
|
|
33132
33181
|
id: string;
|
|
33133
33182
|
email?: string | undefined;
|
|
33134
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33135
33183
|
handle?: string | undefined;
|
|
33136
33184
|
avatarUrl?: string | undefined;
|
|
33185
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33137
33186
|
customUrl?: string | undefined;
|
|
33138
33187
|
}[] | undefined;
|
|
33139
33188
|
bitbucket?: {
|
|
33140
33189
|
id: string;
|
|
33141
33190
|
email?: string | undefined;
|
|
33142
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33143
33191
|
handle?: string | undefined;
|
|
33144
33192
|
avatarUrl?: string | undefined;
|
|
33193
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33145
33194
|
customUrl?: string | undefined;
|
|
33146
33195
|
}[] | undefined;
|
|
33147
33196
|
figma?: {
|
|
33148
33197
|
id: string;
|
|
33149
33198
|
email?: string | undefined;
|
|
33150
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33151
33199
|
handle?: string | undefined;
|
|
33152
33200
|
avatarUrl?: string | undefined;
|
|
33201
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33153
33202
|
customUrl?: string | undefined;
|
|
33154
33203
|
} | undefined;
|
|
33155
33204
|
}, {
|
|
33156
33205
|
azure?: {
|
|
33157
33206
|
id: string;
|
|
33158
33207
|
email?: string | undefined;
|
|
33159
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33160
33208
|
handle?: string | undefined;
|
|
33161
33209
|
avatarUrl?: string | undefined;
|
|
33210
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33162
33211
|
customUrl?: string | undefined;
|
|
33163
33212
|
}[] | undefined;
|
|
33164
33213
|
github?: {
|
|
33165
33214
|
id: string;
|
|
33166
33215
|
email?: string | undefined;
|
|
33167
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33168
33216
|
handle?: string | undefined;
|
|
33169
33217
|
avatarUrl?: string | undefined;
|
|
33218
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33170
33219
|
customUrl?: string | undefined;
|
|
33171
33220
|
}[] | undefined;
|
|
33172
33221
|
gitlab?: {
|
|
33173
33222
|
id: string;
|
|
33174
33223
|
email?: string | undefined;
|
|
33175
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33176
33224
|
handle?: string | undefined;
|
|
33177
33225
|
avatarUrl?: string | undefined;
|
|
33226
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33178
33227
|
customUrl?: string | undefined;
|
|
33179
33228
|
}[] | undefined;
|
|
33180
33229
|
bitbucket?: {
|
|
33181
33230
|
id: string;
|
|
33182
33231
|
email?: string | undefined;
|
|
33183
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33184
33232
|
handle?: string | undefined;
|
|
33185
33233
|
avatarUrl?: string | undefined;
|
|
33234
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33186
33235
|
customUrl?: string | undefined;
|
|
33187
33236
|
}[] | undefined;
|
|
33188
33237
|
figma?: {
|
|
33189
33238
|
id: string;
|
|
33190
33239
|
email?: string | undefined;
|
|
33191
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33192
33240
|
handle?: string | undefined;
|
|
33193
33241
|
avatarUrl?: string | undefined;
|
|
33242
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33194
33243
|
customUrl?: string | undefined;
|
|
33195
33244
|
} | undefined;
|
|
33196
33245
|
}>>;
|
|
@@ -33226,41 +33275,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33226
33275
|
azure?: {
|
|
33227
33276
|
id: string;
|
|
33228
33277
|
email?: string | undefined;
|
|
33229
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33230
33278
|
handle?: string | undefined;
|
|
33231
33279
|
avatarUrl?: string | undefined;
|
|
33280
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33232
33281
|
customUrl?: string | undefined;
|
|
33233
33282
|
}[] | undefined;
|
|
33234
33283
|
github?: {
|
|
33235
33284
|
id: string;
|
|
33236
33285
|
email?: string | undefined;
|
|
33237
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33238
33286
|
handle?: string | undefined;
|
|
33239
33287
|
avatarUrl?: string | undefined;
|
|
33288
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33240
33289
|
customUrl?: string | undefined;
|
|
33241
33290
|
}[] | undefined;
|
|
33242
33291
|
gitlab?: {
|
|
33243
33292
|
id: string;
|
|
33244
33293
|
email?: string | undefined;
|
|
33245
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33246
33294
|
handle?: string | undefined;
|
|
33247
33295
|
avatarUrl?: string | undefined;
|
|
33296
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33248
33297
|
customUrl?: string | undefined;
|
|
33249
33298
|
}[] | undefined;
|
|
33250
33299
|
bitbucket?: {
|
|
33251
33300
|
id: string;
|
|
33252
33301
|
email?: string | undefined;
|
|
33253
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33254
33302
|
handle?: string | undefined;
|
|
33255
33303
|
avatarUrl?: string | undefined;
|
|
33304
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33256
33305
|
customUrl?: string | undefined;
|
|
33257
33306
|
}[] | undefined;
|
|
33258
33307
|
figma?: {
|
|
33259
33308
|
id: string;
|
|
33260
33309
|
email?: string | undefined;
|
|
33261
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33262
33310
|
handle?: string | undefined;
|
|
33263
33311
|
avatarUrl?: string | undefined;
|
|
33312
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33264
33313
|
customUrl?: string | undefined;
|
|
33265
33314
|
} | undefined;
|
|
33266
33315
|
} | undefined;
|
|
@@ -33295,41 +33344,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33295
33344
|
azure?: {
|
|
33296
33345
|
id: string;
|
|
33297
33346
|
email?: string | undefined;
|
|
33298
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33299
33347
|
handle?: string | undefined;
|
|
33300
33348
|
avatarUrl?: string | undefined;
|
|
33349
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33301
33350
|
customUrl?: string | undefined;
|
|
33302
33351
|
}[] | undefined;
|
|
33303
33352
|
github?: {
|
|
33304
33353
|
id: string;
|
|
33305
33354
|
email?: string | undefined;
|
|
33306
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33307
33355
|
handle?: string | undefined;
|
|
33308
33356
|
avatarUrl?: string | undefined;
|
|
33357
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33309
33358
|
customUrl?: string | undefined;
|
|
33310
33359
|
}[] | undefined;
|
|
33311
33360
|
gitlab?: {
|
|
33312
33361
|
id: string;
|
|
33313
33362
|
email?: string | undefined;
|
|
33314
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33315
33363
|
handle?: string | undefined;
|
|
33316
33364
|
avatarUrl?: string | undefined;
|
|
33365
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33317
33366
|
customUrl?: string | undefined;
|
|
33318
33367
|
}[] | undefined;
|
|
33319
33368
|
bitbucket?: {
|
|
33320
33369
|
id: string;
|
|
33321
33370
|
email?: string | undefined;
|
|
33322
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33323
33371
|
handle?: string | undefined;
|
|
33324
33372
|
avatarUrl?: string | undefined;
|
|
33373
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33325
33374
|
customUrl?: string | undefined;
|
|
33326
33375
|
}[] | undefined;
|
|
33327
33376
|
figma?: {
|
|
33328
33377
|
id: string;
|
|
33329
33378
|
email?: string | undefined;
|
|
33330
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33331
33379
|
handle?: string | undefined;
|
|
33332
33380
|
avatarUrl?: string | undefined;
|
|
33381
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33333
33382
|
customUrl?: string | undefined;
|
|
33334
33383
|
} | undefined;
|
|
33335
33384
|
} | undefined;
|
|
@@ -33366,41 +33415,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33366
33415
|
azure?: {
|
|
33367
33416
|
id: string;
|
|
33368
33417
|
email?: string | undefined;
|
|
33369
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33370
33418
|
handle?: string | undefined;
|
|
33371
33419
|
avatarUrl?: string | undefined;
|
|
33420
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33372
33421
|
customUrl?: string | undefined;
|
|
33373
33422
|
}[] | undefined;
|
|
33374
33423
|
github?: {
|
|
33375
33424
|
id: string;
|
|
33376
33425
|
email?: string | undefined;
|
|
33377
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33378
33426
|
handle?: string | undefined;
|
|
33379
33427
|
avatarUrl?: string | undefined;
|
|
33428
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33380
33429
|
customUrl?: string | undefined;
|
|
33381
33430
|
}[] | undefined;
|
|
33382
33431
|
gitlab?: {
|
|
33383
33432
|
id: string;
|
|
33384
33433
|
email?: string | undefined;
|
|
33385
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33386
33434
|
handle?: string | undefined;
|
|
33387
33435
|
avatarUrl?: string | undefined;
|
|
33436
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33388
33437
|
customUrl?: string | undefined;
|
|
33389
33438
|
}[] | undefined;
|
|
33390
33439
|
bitbucket?: {
|
|
33391
33440
|
id: string;
|
|
33392
33441
|
email?: string | undefined;
|
|
33393
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33394
33442
|
handle?: string | undefined;
|
|
33395
33443
|
avatarUrl?: string | undefined;
|
|
33444
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33396
33445
|
customUrl?: string | undefined;
|
|
33397
33446
|
}[] | undefined;
|
|
33398
33447
|
figma?: {
|
|
33399
33448
|
id: string;
|
|
33400
33449
|
email?: string | undefined;
|
|
33401
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33402
33450
|
handle?: string | undefined;
|
|
33403
33451
|
avatarUrl?: string | undefined;
|
|
33452
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33404
33453
|
customUrl?: string | undefined;
|
|
33405
33454
|
} | undefined;
|
|
33406
33455
|
} | undefined;
|
|
@@ -33437,41 +33486,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33437
33486
|
azure?: {
|
|
33438
33487
|
id: string;
|
|
33439
33488
|
email?: string | undefined;
|
|
33440
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33441
33489
|
handle?: string | undefined;
|
|
33442
33490
|
avatarUrl?: string | undefined;
|
|
33491
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33443
33492
|
customUrl?: string | undefined;
|
|
33444
33493
|
}[] | undefined;
|
|
33445
33494
|
github?: {
|
|
33446
33495
|
id: string;
|
|
33447
33496
|
email?: string | undefined;
|
|
33448
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33449
33497
|
handle?: string | undefined;
|
|
33450
33498
|
avatarUrl?: string | undefined;
|
|
33499
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33451
33500
|
customUrl?: string | undefined;
|
|
33452
33501
|
}[] | undefined;
|
|
33453
33502
|
gitlab?: {
|
|
33454
33503
|
id: string;
|
|
33455
33504
|
email?: string | undefined;
|
|
33456
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33457
33505
|
handle?: string | undefined;
|
|
33458
33506
|
avatarUrl?: string | undefined;
|
|
33507
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33459
33508
|
customUrl?: string | undefined;
|
|
33460
33509
|
}[] | undefined;
|
|
33461
33510
|
bitbucket?: {
|
|
33462
33511
|
id: string;
|
|
33463
33512
|
email?: string | undefined;
|
|
33464
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33465
33513
|
handle?: string | undefined;
|
|
33466
33514
|
avatarUrl?: string | undefined;
|
|
33515
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33467
33516
|
customUrl?: string | undefined;
|
|
33468
33517
|
}[] | undefined;
|
|
33469
33518
|
figma?: {
|
|
33470
33519
|
id: string;
|
|
33471
33520
|
email?: string | undefined;
|
|
33472
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33473
33521
|
handle?: string | undefined;
|
|
33474
33522
|
avatarUrl?: string | undefined;
|
|
33523
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33475
33524
|
customUrl?: string | undefined;
|
|
33476
33525
|
} | undefined;
|
|
33477
33526
|
} | undefined;
|
|
@@ -33480,6 +33529,61 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33480
33529
|
}>;
|
|
33481
33530
|
type DTOUserProfileUpdateResponse = z.infer<typeof DTOUserProfileUpdateResponse>;
|
|
33482
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
|
+
|
|
33483
33587
|
declare const DTOGitOrganization: z.ZodObject<{
|
|
33484
33588
|
id: z.ZodString;
|
|
33485
33589
|
name: z.ZodString;
|
|
@@ -39623,6 +39727,7 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
39623
39727
|
} | null | undefined>>;
|
|
39624
39728
|
isApprovalFeatureEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
39625
39729
|
approvalRequiredForPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
39730
|
+
accessMode: z.ZodOptional<z.ZodEnum<["Open", "InviteOnly"]>>;
|
|
39626
39731
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
39627
39732
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
39628
39733
|
}, "id" | "createdAt" | "updatedAt" | "workspaceId" | "docSlug" | "docViewUrl">, {
|
|
@@ -39655,6 +39760,7 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
39655
39760
|
} | undefined;
|
|
39656
39761
|
isApprovalFeatureEnabled?: boolean | undefined;
|
|
39657
39762
|
approvalRequiredForPublishing?: boolean | undefined;
|
|
39763
|
+
accessMode?: "Open" | "InviteOnly" | undefined;
|
|
39658
39764
|
}, {
|
|
39659
39765
|
name?: string | undefined;
|
|
39660
39766
|
description?: string | undefined;
|
|
@@ -39674,6 +39780,7 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
39674
39780
|
} | null | undefined;
|
|
39675
39781
|
isApprovalFeatureEnabled?: boolean | undefined;
|
|
39676
39782
|
approvalRequiredForPublishing?: boolean | undefined;
|
|
39783
|
+
accessMode?: "Open" | "InviteOnly" | undefined;
|
|
39677
39784
|
}>;
|
|
39678
39785
|
type DTODesignSystemUpdateInput = z.infer<typeof DTODesignSystemUpdateInput>;
|
|
39679
39786
|
|
|
@@ -40412,24 +40519,24 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40412
40519
|
projectId: string;
|
|
40413
40520
|
repositoryId: string;
|
|
40414
40521
|
url?: string | undefined;
|
|
40522
|
+
userId?: number | undefined;
|
|
40415
40523
|
credentialId?: string | undefined;
|
|
40416
40524
|
relativePath?: string | undefined;
|
|
40417
40525
|
commitAuthorName?: string | undefined;
|
|
40418
40526
|
commitAuthorEmail?: string | undefined;
|
|
40419
40527
|
connectionId?: string | undefined;
|
|
40420
|
-
userId?: number | undefined;
|
|
40421
40528
|
}, {
|
|
40422
40529
|
branch: string;
|
|
40423
40530
|
organizationId: string;
|
|
40424
40531
|
projectId: string;
|
|
40425
40532
|
repositoryId: string;
|
|
40426
40533
|
url?: string | null | undefined;
|
|
40534
|
+
userId?: number | null | undefined;
|
|
40427
40535
|
credentialId?: string | undefined;
|
|
40428
40536
|
relativePath?: string | null | undefined;
|
|
40429
40537
|
commitAuthorName?: string | null | undefined;
|
|
40430
40538
|
commitAuthorEmail?: string | null | undefined;
|
|
40431
40539
|
connectionId?: string | null | undefined;
|
|
40432
|
-
userId?: number | null | undefined;
|
|
40433
40540
|
}>>>;
|
|
40434
40541
|
bitbucket: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40435
40542
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40447,23 +40554,23 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40447
40554
|
workspaceSlug: string;
|
|
40448
40555
|
projectKey: string;
|
|
40449
40556
|
repoSlug: string;
|
|
40557
|
+
userId?: number | undefined;
|
|
40450
40558
|
credentialId?: string | undefined;
|
|
40451
40559
|
relativePath?: string | undefined;
|
|
40452
40560
|
commitAuthorName?: string | undefined;
|
|
40453
40561
|
commitAuthorEmail?: string | undefined;
|
|
40454
40562
|
connectionId?: string | undefined;
|
|
40455
|
-
userId?: number | undefined;
|
|
40456
40563
|
}, {
|
|
40457
40564
|
branch: string;
|
|
40458
40565
|
workspaceSlug: string;
|
|
40459
40566
|
projectKey: string;
|
|
40460
40567
|
repoSlug: string;
|
|
40568
|
+
userId?: number | null | undefined;
|
|
40461
40569
|
credentialId?: string | undefined;
|
|
40462
40570
|
relativePath?: string | null | undefined;
|
|
40463
40571
|
commitAuthorName?: string | null | undefined;
|
|
40464
40572
|
commitAuthorEmail?: string | null | undefined;
|
|
40465
40573
|
connectionId?: string | null | undefined;
|
|
40466
|
-
userId?: number | null | undefined;
|
|
40467
40574
|
}>>>;
|
|
40468
40575
|
github: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40469
40576
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40477,21 +40584,21 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40477
40584
|
}, "strip", z.ZodTypeAny, {
|
|
40478
40585
|
url: string;
|
|
40479
40586
|
branch: string;
|
|
40587
|
+
userId?: number | undefined;
|
|
40480
40588
|
credentialId?: string | undefined;
|
|
40481
40589
|
relativePath?: string | undefined;
|
|
40482
40590
|
commitAuthorName?: string | undefined;
|
|
40483
40591
|
commitAuthorEmail?: string | undefined;
|
|
40484
40592
|
connectionId?: string | undefined;
|
|
40485
|
-
userId?: number | undefined;
|
|
40486
40593
|
}, {
|
|
40487
40594
|
url: string;
|
|
40488
40595
|
branch: string;
|
|
40596
|
+
userId?: number | null | undefined;
|
|
40489
40597
|
credentialId?: string | undefined;
|
|
40490
40598
|
relativePath?: string | null | undefined;
|
|
40491
40599
|
commitAuthorName?: string | null | undefined;
|
|
40492
40600
|
commitAuthorEmail?: string | null | undefined;
|
|
40493
40601
|
connectionId?: string | null | undefined;
|
|
40494
|
-
userId?: number | null | undefined;
|
|
40495
40602
|
}>>>;
|
|
40496
40603
|
gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40497
40604
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40507,22 +40614,22 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40507
40614
|
branch: string;
|
|
40508
40615
|
projectId: string;
|
|
40509
40616
|
url?: string | undefined;
|
|
40617
|
+
userId?: number | undefined;
|
|
40510
40618
|
credentialId?: string | undefined;
|
|
40511
40619
|
relativePath?: string | undefined;
|
|
40512
40620
|
commitAuthorName?: string | undefined;
|
|
40513
40621
|
commitAuthorEmail?: string | undefined;
|
|
40514
40622
|
connectionId?: string | undefined;
|
|
40515
|
-
userId?: number | undefined;
|
|
40516
40623
|
}, {
|
|
40517
40624
|
branch: string;
|
|
40518
40625
|
projectId: string;
|
|
40519
40626
|
url?: string | null | undefined;
|
|
40627
|
+
userId?: number | null | undefined;
|
|
40520
40628
|
credentialId?: string | undefined;
|
|
40521
40629
|
relativePath?: string | null | undefined;
|
|
40522
40630
|
commitAuthorName?: string | null | undefined;
|
|
40523
40631
|
commitAuthorEmail?: string | null | undefined;
|
|
40524
40632
|
connectionId?: string | null | undefined;
|
|
40525
|
-
userId?: number | null | undefined;
|
|
40526
40633
|
}>>>;
|
|
40527
40634
|
documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40528
40635
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -40561,45 +40668,45 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40561
40668
|
projectId: string;
|
|
40562
40669
|
repositoryId: string;
|
|
40563
40670
|
url?: string | undefined;
|
|
40671
|
+
userId?: number | undefined;
|
|
40564
40672
|
credentialId?: string | undefined;
|
|
40565
40673
|
relativePath?: string | undefined;
|
|
40566
40674
|
commitAuthorName?: string | undefined;
|
|
40567
40675
|
commitAuthorEmail?: string | undefined;
|
|
40568
40676
|
connectionId?: string | undefined;
|
|
40569
|
-
userId?: number | undefined;
|
|
40570
40677
|
} | null | undefined;
|
|
40571
40678
|
bitbucket?: {
|
|
40572
40679
|
branch: string;
|
|
40573
40680
|
workspaceSlug: string;
|
|
40574
40681
|
projectKey: string;
|
|
40575
40682
|
repoSlug: string;
|
|
40683
|
+
userId?: number | undefined;
|
|
40576
40684
|
credentialId?: string | undefined;
|
|
40577
40685
|
relativePath?: string | undefined;
|
|
40578
40686
|
commitAuthorName?: string | undefined;
|
|
40579
40687
|
commitAuthorEmail?: string | undefined;
|
|
40580
40688
|
connectionId?: string | undefined;
|
|
40581
|
-
userId?: number | undefined;
|
|
40582
40689
|
} | null | undefined;
|
|
40583
40690
|
github?: {
|
|
40584
40691
|
url: string;
|
|
40585
40692
|
branch: string;
|
|
40693
|
+
userId?: number | undefined;
|
|
40586
40694
|
credentialId?: string | undefined;
|
|
40587
40695
|
relativePath?: string | undefined;
|
|
40588
40696
|
commitAuthorName?: string | undefined;
|
|
40589
40697
|
commitAuthorEmail?: string | undefined;
|
|
40590
40698
|
connectionId?: string | undefined;
|
|
40591
|
-
userId?: number | undefined;
|
|
40592
40699
|
} | null | undefined;
|
|
40593
40700
|
gitlab?: {
|
|
40594
40701
|
branch: string;
|
|
40595
40702
|
projectId: string;
|
|
40596
40703
|
url?: string | undefined;
|
|
40704
|
+
userId?: number | undefined;
|
|
40597
40705
|
credentialId?: string | undefined;
|
|
40598
40706
|
relativePath?: string | undefined;
|
|
40599
40707
|
commitAuthorName?: string | undefined;
|
|
40600
40708
|
commitAuthorEmail?: string | undefined;
|
|
40601
40709
|
connectionId?: string | undefined;
|
|
40602
|
-
userId?: number | undefined;
|
|
40603
40710
|
} | null | undefined;
|
|
40604
40711
|
documentation?: {
|
|
40605
40712
|
environment: "Live" | "Preview";
|
|
@@ -40617,45 +40724,45 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40617
40724
|
projectId: string;
|
|
40618
40725
|
repositoryId: string;
|
|
40619
40726
|
url?: string | null | undefined;
|
|
40727
|
+
userId?: number | null | undefined;
|
|
40620
40728
|
credentialId?: string | undefined;
|
|
40621
40729
|
relativePath?: string | null | undefined;
|
|
40622
40730
|
commitAuthorName?: string | null | undefined;
|
|
40623
40731
|
commitAuthorEmail?: string | null | undefined;
|
|
40624
40732
|
connectionId?: string | null | undefined;
|
|
40625
|
-
userId?: number | null | undefined;
|
|
40626
40733
|
} | null | undefined;
|
|
40627
40734
|
bitbucket?: {
|
|
40628
40735
|
branch: string;
|
|
40629
40736
|
workspaceSlug: string;
|
|
40630
40737
|
projectKey: string;
|
|
40631
40738
|
repoSlug: string;
|
|
40739
|
+
userId?: number | null | undefined;
|
|
40632
40740
|
credentialId?: string | undefined;
|
|
40633
40741
|
relativePath?: string | null | undefined;
|
|
40634
40742
|
commitAuthorName?: string | null | undefined;
|
|
40635
40743
|
commitAuthorEmail?: string | null | undefined;
|
|
40636
40744
|
connectionId?: string | null | undefined;
|
|
40637
|
-
userId?: number | null | undefined;
|
|
40638
40745
|
} | null | undefined;
|
|
40639
40746
|
github?: {
|
|
40640
40747
|
url: string;
|
|
40641
40748
|
branch: string;
|
|
40749
|
+
userId?: number | null | undefined;
|
|
40642
40750
|
credentialId?: string | undefined;
|
|
40643
40751
|
relativePath?: string | null | undefined;
|
|
40644
40752
|
commitAuthorName?: string | null | undefined;
|
|
40645
40753
|
commitAuthorEmail?: string | null | undefined;
|
|
40646
40754
|
connectionId?: string | null | undefined;
|
|
40647
|
-
userId?: number | null | undefined;
|
|
40648
40755
|
} | null | undefined;
|
|
40649
40756
|
gitlab?: {
|
|
40650
40757
|
branch: string;
|
|
40651
40758
|
projectId: string;
|
|
40652
40759
|
url?: string | null | undefined;
|
|
40760
|
+
userId?: number | null | undefined;
|
|
40653
40761
|
credentialId?: string | undefined;
|
|
40654
40762
|
relativePath?: string | null | undefined;
|
|
40655
40763
|
commitAuthorName?: string | null | undefined;
|
|
40656
40764
|
commitAuthorEmail?: string | null | undefined;
|
|
40657
40765
|
connectionId?: string | null | undefined;
|
|
40658
|
-
userId?: number | null | undefined;
|
|
40659
40766
|
} | null | undefined;
|
|
40660
40767
|
documentation?: {
|
|
40661
40768
|
environment: "Live" | "Preview";
|
|
@@ -40687,45 +40794,45 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40687
40794
|
projectId: string;
|
|
40688
40795
|
repositoryId: string;
|
|
40689
40796
|
url?: string | undefined;
|
|
40797
|
+
userId?: number | undefined;
|
|
40690
40798
|
credentialId?: string | undefined;
|
|
40691
40799
|
relativePath?: string | undefined;
|
|
40692
40800
|
commitAuthorName?: string | undefined;
|
|
40693
40801
|
commitAuthorEmail?: string | undefined;
|
|
40694
40802
|
connectionId?: string | undefined;
|
|
40695
|
-
userId?: number | undefined;
|
|
40696
40803
|
} | null | undefined;
|
|
40697
40804
|
bitbucket?: {
|
|
40698
40805
|
branch: string;
|
|
40699
40806
|
workspaceSlug: string;
|
|
40700
40807
|
projectKey: string;
|
|
40701
40808
|
repoSlug: string;
|
|
40809
|
+
userId?: number | undefined;
|
|
40702
40810
|
credentialId?: string | undefined;
|
|
40703
40811
|
relativePath?: string | undefined;
|
|
40704
40812
|
commitAuthorName?: string | undefined;
|
|
40705
40813
|
commitAuthorEmail?: string | undefined;
|
|
40706
40814
|
connectionId?: string | undefined;
|
|
40707
|
-
userId?: number | undefined;
|
|
40708
40815
|
} | null | undefined;
|
|
40709
40816
|
github?: {
|
|
40710
40817
|
url: string;
|
|
40711
40818
|
branch: string;
|
|
40819
|
+
userId?: number | undefined;
|
|
40712
40820
|
credentialId?: string | undefined;
|
|
40713
40821
|
relativePath?: string | undefined;
|
|
40714
40822
|
commitAuthorName?: string | undefined;
|
|
40715
40823
|
commitAuthorEmail?: string | undefined;
|
|
40716
40824
|
connectionId?: string | undefined;
|
|
40717
|
-
userId?: number | undefined;
|
|
40718
40825
|
} | null | undefined;
|
|
40719
40826
|
gitlab?: {
|
|
40720
40827
|
branch: string;
|
|
40721
40828
|
projectId: string;
|
|
40722
40829
|
url?: string | undefined;
|
|
40830
|
+
userId?: number | undefined;
|
|
40723
40831
|
credentialId?: string | undefined;
|
|
40724
40832
|
relativePath?: string | undefined;
|
|
40725
40833
|
commitAuthorName?: string | undefined;
|
|
40726
40834
|
commitAuthorEmail?: string | undefined;
|
|
40727
40835
|
connectionId?: string | undefined;
|
|
40728
|
-
userId?: number | undefined;
|
|
40729
40836
|
} | null | undefined;
|
|
40730
40837
|
documentation?: {
|
|
40731
40838
|
environment: "Live" | "Preview";
|
|
@@ -40760,45 +40867,45 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
40760
40867
|
projectId: string;
|
|
40761
40868
|
repositoryId: string;
|
|
40762
40869
|
url?: string | null | undefined;
|
|
40870
|
+
userId?: number | null | undefined;
|
|
40763
40871
|
credentialId?: string | undefined;
|
|
40764
40872
|
relativePath?: string | null | undefined;
|
|
40765
40873
|
commitAuthorName?: string | null | undefined;
|
|
40766
40874
|
commitAuthorEmail?: string | null | undefined;
|
|
40767
40875
|
connectionId?: string | null | undefined;
|
|
40768
|
-
userId?: number | null | undefined;
|
|
40769
40876
|
} | null | undefined;
|
|
40770
40877
|
bitbucket?: {
|
|
40771
40878
|
branch: string;
|
|
40772
40879
|
workspaceSlug: string;
|
|
40773
40880
|
projectKey: string;
|
|
40774
40881
|
repoSlug: string;
|
|
40882
|
+
userId?: number | null | undefined;
|
|
40775
40883
|
credentialId?: string | undefined;
|
|
40776
40884
|
relativePath?: string | null | undefined;
|
|
40777
40885
|
commitAuthorName?: string | null | undefined;
|
|
40778
40886
|
commitAuthorEmail?: string | null | undefined;
|
|
40779
40887
|
connectionId?: string | null | undefined;
|
|
40780
|
-
userId?: number | null | undefined;
|
|
40781
40888
|
} | null | undefined;
|
|
40782
40889
|
github?: {
|
|
40783
40890
|
url: string;
|
|
40784
40891
|
branch: string;
|
|
40892
|
+
userId?: number | null | undefined;
|
|
40785
40893
|
credentialId?: string | undefined;
|
|
40786
40894
|
relativePath?: string | null | undefined;
|
|
40787
40895
|
commitAuthorName?: string | null | undefined;
|
|
40788
40896
|
commitAuthorEmail?: string | null | undefined;
|
|
40789
40897
|
connectionId?: string | null | undefined;
|
|
40790
|
-
userId?: number | null | undefined;
|
|
40791
40898
|
} | null | undefined;
|
|
40792
40899
|
gitlab?: {
|
|
40793
40900
|
branch: string;
|
|
40794
40901
|
projectId: string;
|
|
40795
40902
|
url?: string | null | undefined;
|
|
40903
|
+
userId?: number | null | undefined;
|
|
40796
40904
|
credentialId?: string | undefined;
|
|
40797
40905
|
relativePath?: string | null | undefined;
|
|
40798
40906
|
commitAuthorName?: string | null | undefined;
|
|
40799
40907
|
commitAuthorEmail?: string | null | undefined;
|
|
40800
40908
|
connectionId?: string | null | undefined;
|
|
40801
|
-
userId?: number | null | undefined;
|
|
40802
40909
|
} | null | undefined;
|
|
40803
40910
|
documentation?: {
|
|
40804
40911
|
environment: "Live" | "Preview";
|
|
@@ -40862,24 +40969,24 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40862
40969
|
projectId: string;
|
|
40863
40970
|
repositoryId: string;
|
|
40864
40971
|
url?: string | undefined;
|
|
40972
|
+
userId?: number | undefined;
|
|
40865
40973
|
credentialId?: string | undefined;
|
|
40866
40974
|
relativePath?: string | undefined;
|
|
40867
40975
|
commitAuthorName?: string | undefined;
|
|
40868
40976
|
commitAuthorEmail?: string | undefined;
|
|
40869
40977
|
connectionId?: string | undefined;
|
|
40870
|
-
userId?: number | undefined;
|
|
40871
40978
|
}, {
|
|
40872
40979
|
branch: string;
|
|
40873
40980
|
organizationId: string;
|
|
40874
40981
|
projectId: string;
|
|
40875
40982
|
repositoryId: string;
|
|
40876
40983
|
url?: string | null | undefined;
|
|
40984
|
+
userId?: number | null | undefined;
|
|
40877
40985
|
credentialId?: string | undefined;
|
|
40878
40986
|
relativePath?: string | null | undefined;
|
|
40879
40987
|
commitAuthorName?: string | null | undefined;
|
|
40880
40988
|
commitAuthorEmail?: string | null | undefined;
|
|
40881
40989
|
connectionId?: string | null | undefined;
|
|
40882
|
-
userId?: number | null | undefined;
|
|
40883
40990
|
}>>>;
|
|
40884
40991
|
bitbucket: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40885
40992
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40897,23 +41004,23 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40897
41004
|
workspaceSlug: string;
|
|
40898
41005
|
projectKey: string;
|
|
40899
41006
|
repoSlug: string;
|
|
41007
|
+
userId?: number | undefined;
|
|
40900
41008
|
credentialId?: string | undefined;
|
|
40901
41009
|
relativePath?: string | undefined;
|
|
40902
41010
|
commitAuthorName?: string | undefined;
|
|
40903
41011
|
commitAuthorEmail?: string | undefined;
|
|
40904
41012
|
connectionId?: string | undefined;
|
|
40905
|
-
userId?: number | undefined;
|
|
40906
41013
|
}, {
|
|
40907
41014
|
branch: string;
|
|
40908
41015
|
workspaceSlug: string;
|
|
40909
41016
|
projectKey: string;
|
|
40910
41017
|
repoSlug: string;
|
|
41018
|
+
userId?: number | null | undefined;
|
|
40911
41019
|
credentialId?: string | undefined;
|
|
40912
41020
|
relativePath?: string | null | undefined;
|
|
40913
41021
|
commitAuthorName?: string | null | undefined;
|
|
40914
41022
|
commitAuthorEmail?: string | null | undefined;
|
|
40915
41023
|
connectionId?: string | null | undefined;
|
|
40916
|
-
userId?: number | null | undefined;
|
|
40917
41024
|
}>>>;
|
|
40918
41025
|
github: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40919
41026
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40927,21 +41034,21 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40927
41034
|
}, "strip", z.ZodTypeAny, {
|
|
40928
41035
|
url: string;
|
|
40929
41036
|
branch: string;
|
|
41037
|
+
userId?: number | undefined;
|
|
40930
41038
|
credentialId?: string | undefined;
|
|
40931
41039
|
relativePath?: string | undefined;
|
|
40932
41040
|
commitAuthorName?: string | undefined;
|
|
40933
41041
|
commitAuthorEmail?: string | undefined;
|
|
40934
41042
|
connectionId?: string | undefined;
|
|
40935
|
-
userId?: number | undefined;
|
|
40936
41043
|
}, {
|
|
40937
41044
|
url: string;
|
|
40938
41045
|
branch: string;
|
|
41046
|
+
userId?: number | null | undefined;
|
|
40939
41047
|
credentialId?: string | undefined;
|
|
40940
41048
|
relativePath?: string | null | undefined;
|
|
40941
41049
|
commitAuthorName?: string | null | undefined;
|
|
40942
41050
|
commitAuthorEmail?: string | null | undefined;
|
|
40943
41051
|
connectionId?: string | null | undefined;
|
|
40944
|
-
userId?: number | null | undefined;
|
|
40945
41052
|
}>>>;
|
|
40946
41053
|
gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40947
41054
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -40957,22 +41064,22 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40957
41064
|
branch: string;
|
|
40958
41065
|
projectId: string;
|
|
40959
41066
|
url?: string | undefined;
|
|
41067
|
+
userId?: number | undefined;
|
|
40960
41068
|
credentialId?: string | undefined;
|
|
40961
41069
|
relativePath?: string | undefined;
|
|
40962
41070
|
commitAuthorName?: string | undefined;
|
|
40963
41071
|
commitAuthorEmail?: string | undefined;
|
|
40964
41072
|
connectionId?: string | undefined;
|
|
40965
|
-
userId?: number | undefined;
|
|
40966
41073
|
}, {
|
|
40967
41074
|
branch: string;
|
|
40968
41075
|
projectId: string;
|
|
40969
41076
|
url?: string | null | undefined;
|
|
41077
|
+
userId?: number | null | undefined;
|
|
40970
41078
|
credentialId?: string | undefined;
|
|
40971
41079
|
relativePath?: string | null | undefined;
|
|
40972
41080
|
commitAuthorName?: string | null | undefined;
|
|
40973
41081
|
commitAuthorEmail?: string | null | undefined;
|
|
40974
41082
|
connectionId?: string | null | undefined;
|
|
40975
|
-
userId?: number | null | undefined;
|
|
40976
41083
|
}>>>;
|
|
40977
41084
|
documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
40978
41085
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -41011,45 +41118,45 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41011
41118
|
projectId: string;
|
|
41012
41119
|
repositoryId: string;
|
|
41013
41120
|
url?: string | undefined;
|
|
41121
|
+
userId?: number | undefined;
|
|
41014
41122
|
credentialId?: string | undefined;
|
|
41015
41123
|
relativePath?: string | undefined;
|
|
41016
41124
|
commitAuthorName?: string | undefined;
|
|
41017
41125
|
commitAuthorEmail?: string | undefined;
|
|
41018
41126
|
connectionId?: string | undefined;
|
|
41019
|
-
userId?: number | undefined;
|
|
41020
41127
|
} | null | undefined;
|
|
41021
41128
|
bitbucket?: {
|
|
41022
41129
|
branch: string;
|
|
41023
41130
|
workspaceSlug: string;
|
|
41024
41131
|
projectKey: string;
|
|
41025
41132
|
repoSlug: string;
|
|
41133
|
+
userId?: number | undefined;
|
|
41026
41134
|
credentialId?: string | undefined;
|
|
41027
41135
|
relativePath?: string | undefined;
|
|
41028
41136
|
commitAuthorName?: string | undefined;
|
|
41029
41137
|
commitAuthorEmail?: string | undefined;
|
|
41030
41138
|
connectionId?: string | undefined;
|
|
41031
|
-
userId?: number | undefined;
|
|
41032
41139
|
} | null | undefined;
|
|
41033
41140
|
github?: {
|
|
41034
41141
|
url: string;
|
|
41035
41142
|
branch: string;
|
|
41143
|
+
userId?: number | undefined;
|
|
41036
41144
|
credentialId?: string | undefined;
|
|
41037
41145
|
relativePath?: string | undefined;
|
|
41038
41146
|
commitAuthorName?: string | undefined;
|
|
41039
41147
|
commitAuthorEmail?: string | undefined;
|
|
41040
41148
|
connectionId?: string | undefined;
|
|
41041
|
-
userId?: number | undefined;
|
|
41042
41149
|
} | null | undefined;
|
|
41043
41150
|
gitlab?: {
|
|
41044
41151
|
branch: string;
|
|
41045
41152
|
projectId: string;
|
|
41046
41153
|
url?: string | undefined;
|
|
41154
|
+
userId?: number | undefined;
|
|
41047
41155
|
credentialId?: string | undefined;
|
|
41048
41156
|
relativePath?: string | undefined;
|
|
41049
41157
|
commitAuthorName?: string | undefined;
|
|
41050
41158
|
commitAuthorEmail?: string | undefined;
|
|
41051
41159
|
connectionId?: string | undefined;
|
|
41052
|
-
userId?: number | undefined;
|
|
41053
41160
|
} | null | undefined;
|
|
41054
41161
|
documentation?: {
|
|
41055
41162
|
environment: "Live" | "Preview";
|
|
@@ -41067,45 +41174,45 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41067
41174
|
projectId: string;
|
|
41068
41175
|
repositoryId: string;
|
|
41069
41176
|
url?: string | null | undefined;
|
|
41177
|
+
userId?: number | null | undefined;
|
|
41070
41178
|
credentialId?: string | undefined;
|
|
41071
41179
|
relativePath?: string | null | undefined;
|
|
41072
41180
|
commitAuthorName?: string | null | undefined;
|
|
41073
41181
|
commitAuthorEmail?: string | null | undefined;
|
|
41074
41182
|
connectionId?: string | null | undefined;
|
|
41075
|
-
userId?: number | null | undefined;
|
|
41076
41183
|
} | null | undefined;
|
|
41077
41184
|
bitbucket?: {
|
|
41078
41185
|
branch: string;
|
|
41079
41186
|
workspaceSlug: string;
|
|
41080
41187
|
projectKey: string;
|
|
41081
41188
|
repoSlug: string;
|
|
41189
|
+
userId?: number | null | undefined;
|
|
41082
41190
|
credentialId?: string | undefined;
|
|
41083
41191
|
relativePath?: string | null | undefined;
|
|
41084
41192
|
commitAuthorName?: string | null | undefined;
|
|
41085
41193
|
commitAuthorEmail?: string | null | undefined;
|
|
41086
41194
|
connectionId?: string | null | undefined;
|
|
41087
|
-
userId?: number | null | undefined;
|
|
41088
41195
|
} | null | undefined;
|
|
41089
41196
|
github?: {
|
|
41090
41197
|
url: string;
|
|
41091
41198
|
branch: string;
|
|
41199
|
+
userId?: number | null | undefined;
|
|
41092
41200
|
credentialId?: string | undefined;
|
|
41093
41201
|
relativePath?: string | null | undefined;
|
|
41094
41202
|
commitAuthorName?: string | null | undefined;
|
|
41095
41203
|
commitAuthorEmail?: string | null | undefined;
|
|
41096
41204
|
connectionId?: string | null | undefined;
|
|
41097
|
-
userId?: number | null | undefined;
|
|
41098
41205
|
} | null | undefined;
|
|
41099
41206
|
gitlab?: {
|
|
41100
41207
|
branch: string;
|
|
41101
41208
|
projectId: string;
|
|
41102
41209
|
url?: string | null | undefined;
|
|
41210
|
+
userId?: number | null | undefined;
|
|
41103
41211
|
credentialId?: string | undefined;
|
|
41104
41212
|
relativePath?: string | null | undefined;
|
|
41105
41213
|
commitAuthorName?: string | null | undefined;
|
|
41106
41214
|
commitAuthorEmail?: string | null | undefined;
|
|
41107
41215
|
connectionId?: string | null | undefined;
|
|
41108
|
-
userId?: number | null | undefined;
|
|
41109
41216
|
} | null | undefined;
|
|
41110
41217
|
documentation?: {
|
|
41111
41218
|
environment: "Live" | "Preview";
|
|
@@ -41140,45 +41247,45 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41140
41247
|
projectId: string;
|
|
41141
41248
|
repositoryId: string;
|
|
41142
41249
|
url?: string | undefined;
|
|
41250
|
+
userId?: number | undefined;
|
|
41143
41251
|
credentialId?: string | undefined;
|
|
41144
41252
|
relativePath?: string | undefined;
|
|
41145
41253
|
commitAuthorName?: string | undefined;
|
|
41146
41254
|
commitAuthorEmail?: string | undefined;
|
|
41147
41255
|
connectionId?: string | undefined;
|
|
41148
|
-
userId?: number | undefined;
|
|
41149
41256
|
} | null | undefined;
|
|
41150
41257
|
bitbucket?: {
|
|
41151
41258
|
branch: string;
|
|
41152
41259
|
workspaceSlug: string;
|
|
41153
41260
|
projectKey: string;
|
|
41154
41261
|
repoSlug: string;
|
|
41262
|
+
userId?: number | undefined;
|
|
41155
41263
|
credentialId?: string | undefined;
|
|
41156
41264
|
relativePath?: string | undefined;
|
|
41157
41265
|
commitAuthorName?: string | undefined;
|
|
41158
41266
|
commitAuthorEmail?: string | undefined;
|
|
41159
41267
|
connectionId?: string | undefined;
|
|
41160
|
-
userId?: number | undefined;
|
|
41161
41268
|
} | null | undefined;
|
|
41162
41269
|
github?: {
|
|
41163
41270
|
url: string;
|
|
41164
41271
|
branch: string;
|
|
41272
|
+
userId?: number | undefined;
|
|
41165
41273
|
credentialId?: string | undefined;
|
|
41166
41274
|
relativePath?: string | undefined;
|
|
41167
41275
|
commitAuthorName?: string | undefined;
|
|
41168
41276
|
commitAuthorEmail?: string | undefined;
|
|
41169
41277
|
connectionId?: string | undefined;
|
|
41170
|
-
userId?: number | undefined;
|
|
41171
41278
|
} | null | undefined;
|
|
41172
41279
|
gitlab?: {
|
|
41173
41280
|
branch: string;
|
|
41174
41281
|
projectId: string;
|
|
41175
41282
|
url?: string | undefined;
|
|
41283
|
+
userId?: number | undefined;
|
|
41176
41284
|
credentialId?: string | undefined;
|
|
41177
41285
|
relativePath?: string | undefined;
|
|
41178
41286
|
commitAuthorName?: string | undefined;
|
|
41179
41287
|
commitAuthorEmail?: string | undefined;
|
|
41180
41288
|
connectionId?: string | undefined;
|
|
41181
|
-
userId?: number | undefined;
|
|
41182
41289
|
} | null | undefined;
|
|
41183
41290
|
documentation?: {
|
|
41184
41291
|
environment: "Live" | "Preview";
|
|
@@ -41214,45 +41321,45 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41214
41321
|
projectId: string;
|
|
41215
41322
|
repositoryId: string;
|
|
41216
41323
|
url?: string | null | undefined;
|
|
41324
|
+
userId?: number | null | undefined;
|
|
41217
41325
|
credentialId?: string | undefined;
|
|
41218
41326
|
relativePath?: string | null | undefined;
|
|
41219
41327
|
commitAuthorName?: string | null | undefined;
|
|
41220
41328
|
commitAuthorEmail?: string | null | undefined;
|
|
41221
41329
|
connectionId?: string | null | undefined;
|
|
41222
|
-
userId?: number | null | undefined;
|
|
41223
41330
|
} | null | undefined;
|
|
41224
41331
|
bitbucket?: {
|
|
41225
41332
|
branch: string;
|
|
41226
41333
|
workspaceSlug: string;
|
|
41227
41334
|
projectKey: string;
|
|
41228
41335
|
repoSlug: string;
|
|
41336
|
+
userId?: number | null | undefined;
|
|
41229
41337
|
credentialId?: string | undefined;
|
|
41230
41338
|
relativePath?: string | null | undefined;
|
|
41231
41339
|
commitAuthorName?: string | null | undefined;
|
|
41232
41340
|
commitAuthorEmail?: string | null | undefined;
|
|
41233
41341
|
connectionId?: string | null | undefined;
|
|
41234
|
-
userId?: number | null | undefined;
|
|
41235
41342
|
} | null | undefined;
|
|
41236
41343
|
github?: {
|
|
41237
41344
|
url: string;
|
|
41238
41345
|
branch: string;
|
|
41346
|
+
userId?: number | null | undefined;
|
|
41239
41347
|
credentialId?: string | undefined;
|
|
41240
41348
|
relativePath?: string | null | undefined;
|
|
41241
41349
|
commitAuthorName?: string | null | undefined;
|
|
41242
41350
|
commitAuthorEmail?: string | null | undefined;
|
|
41243
41351
|
connectionId?: string | null | undefined;
|
|
41244
|
-
userId?: number | null | undefined;
|
|
41245
41352
|
} | null | undefined;
|
|
41246
41353
|
gitlab?: {
|
|
41247
41354
|
branch: string;
|
|
41248
41355
|
projectId: string;
|
|
41249
41356
|
url?: string | null | undefined;
|
|
41357
|
+
userId?: number | null | undefined;
|
|
41250
41358
|
credentialId?: string | undefined;
|
|
41251
41359
|
relativePath?: string | null | undefined;
|
|
41252
41360
|
commitAuthorName?: string | null | undefined;
|
|
41253
41361
|
commitAuthorEmail?: string | null | undefined;
|
|
41254
41362
|
connectionId?: string | null | undefined;
|
|
41255
|
-
userId?: number | null | undefined;
|
|
41256
41363
|
} | null | undefined;
|
|
41257
41364
|
documentation?: {
|
|
41258
41365
|
environment: "Live" | "Preview";
|
|
@@ -41340,20 +41447,20 @@ declare const DTOUserNotificationSettingsResponse: z.ZodObject<{
|
|
|
41340
41447
|
}>;
|
|
41341
41448
|
}, "strip", z.ZodTypeAny, {
|
|
41342
41449
|
workspaceId: string;
|
|
41450
|
+
userId: string;
|
|
41343
41451
|
notificationSettings: {
|
|
41344
41452
|
liveblocksNotificationSettings: {
|
|
41345
41453
|
sendCommentNotificationEmails: boolean;
|
|
41346
41454
|
};
|
|
41347
41455
|
};
|
|
41348
|
-
userId: string;
|
|
41349
41456
|
}, {
|
|
41350
41457
|
workspaceId: string;
|
|
41458
|
+
userId: string;
|
|
41351
41459
|
notificationSettings: {
|
|
41352
41460
|
liveblocksNotificationSettings: {
|
|
41353
41461
|
sendCommentNotificationEmails: boolean;
|
|
41354
41462
|
};
|
|
41355
41463
|
};
|
|
41356
|
-
userId: string;
|
|
41357
41464
|
}>;
|
|
41358
41465
|
type DTOUserNotificationSettingsResponse = z.infer<typeof DTOUserNotificationSettingsResponse>;
|
|
41359
41466
|
|
|
@@ -44510,4 +44617,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
44510
44617
|
|
|
44511
44618
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
44512
44619
|
|
|
44513
|
-
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 };
|