@supernova-studio/client 0.52.4 → 0.52.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 +708 -345
- package/dist/index.d.ts +708 -345
- package/dist/index.js +32 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +31 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/figma-nodes/figma-node.ts +23 -6
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
2
1
|
import { DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, DocumentationPageApproval, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, ElementGroup, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, DocumentationPageSnapshot, ElementGroupSnapshot } from '@supernova-studio/model';
|
|
3
2
|
import * as zod from 'zod';
|
|
4
3
|
import { z, ZodTypeDef } from 'zod';
|
|
@@ -8036,6 +8035,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8036
8035
|
organizationId: z.ZodString;
|
|
8037
8036
|
projectId: z.ZodString;
|
|
8038
8037
|
repositoryId: z.ZodString;
|
|
8038
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8039
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8039
8040
|
branch: z.ZodString;
|
|
8040
8041
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8041
8042
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -8049,6 +8050,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8049
8050
|
url?: string | undefined;
|
|
8050
8051
|
credentialId?: string | undefined;
|
|
8051
8052
|
relativePath?: string | undefined;
|
|
8053
|
+
commitAuthorName?: string | undefined;
|
|
8054
|
+
commitAuthorEmail?: string | undefined;
|
|
8052
8055
|
connectionId?: string | undefined;
|
|
8053
8056
|
userId?: number | undefined;
|
|
8054
8057
|
}, {
|
|
@@ -8059,6 +8062,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8059
8062
|
url?: string | null | undefined;
|
|
8060
8063
|
credentialId?: string | undefined;
|
|
8061
8064
|
relativePath?: string | null | undefined;
|
|
8065
|
+
commitAuthorName?: string | null | undefined;
|
|
8066
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8062
8067
|
connectionId?: string | null | undefined;
|
|
8063
8068
|
userId?: number | null | undefined;
|
|
8064
8069
|
}>>;
|
|
@@ -8067,6 +8072,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8067
8072
|
workspaceSlug: z.ZodString;
|
|
8068
8073
|
projectKey: z.ZodString;
|
|
8069
8074
|
repoSlug: z.ZodString;
|
|
8075
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8076
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8070
8077
|
branch: z.ZodString;
|
|
8071
8078
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8072
8079
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -8078,6 +8085,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8078
8085
|
repoSlug: string;
|
|
8079
8086
|
credentialId?: string | undefined;
|
|
8080
8087
|
relativePath?: string | undefined;
|
|
8088
|
+
commitAuthorName?: string | undefined;
|
|
8089
|
+
commitAuthorEmail?: string | undefined;
|
|
8081
8090
|
connectionId?: string | undefined;
|
|
8082
8091
|
userId?: number | undefined;
|
|
8083
8092
|
}, {
|
|
@@ -8087,6 +8096,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8087
8096
|
repoSlug: string;
|
|
8088
8097
|
credentialId?: string | undefined;
|
|
8089
8098
|
relativePath?: string | null | undefined;
|
|
8099
|
+
commitAuthorName?: string | null | undefined;
|
|
8100
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8090
8101
|
connectionId?: string | null | undefined;
|
|
8091
8102
|
userId?: number | null | undefined;
|
|
8092
8103
|
}>>;
|
|
@@ -8095,6 +8106,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8095
8106
|
url: z.ZodString;
|
|
8096
8107
|
branch: z.ZodString;
|
|
8097
8108
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8109
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8110
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8098
8111
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8099
8112
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
8100
8113
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8102,6 +8115,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8102
8115
|
branch: string;
|
|
8103
8116
|
credentialId?: string | undefined;
|
|
8104
8117
|
relativePath?: string | undefined;
|
|
8118
|
+
commitAuthorName?: string | undefined;
|
|
8119
|
+
commitAuthorEmail?: string | undefined;
|
|
8105
8120
|
connectionId?: string | undefined;
|
|
8106
8121
|
userId?: number | undefined;
|
|
8107
8122
|
}, {
|
|
@@ -8109,12 +8124,16 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8109
8124
|
branch: string;
|
|
8110
8125
|
credentialId?: string | undefined;
|
|
8111
8126
|
relativePath?: string | null | undefined;
|
|
8127
|
+
commitAuthorName?: string | null | undefined;
|
|
8128
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8112
8129
|
connectionId?: string | null | undefined;
|
|
8113
8130
|
userId?: number | null | undefined;
|
|
8114
8131
|
}>>;
|
|
8115
8132
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
8116
8133
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
8117
8134
|
projectId: z.ZodString;
|
|
8135
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8136
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8118
8137
|
branch: z.ZodString;
|
|
8119
8138
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8120
8139
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -8126,6 +8145,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8126
8145
|
url?: string | undefined;
|
|
8127
8146
|
credentialId?: string | undefined;
|
|
8128
8147
|
relativePath?: string | undefined;
|
|
8148
|
+
commitAuthorName?: string | undefined;
|
|
8149
|
+
commitAuthorEmail?: string | undefined;
|
|
8129
8150
|
connectionId?: string | undefined;
|
|
8130
8151
|
userId?: number | undefined;
|
|
8131
8152
|
}, {
|
|
@@ -8134,6 +8155,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8134
8155
|
url?: string | null | undefined;
|
|
8135
8156
|
credentialId?: string | undefined;
|
|
8136
8157
|
relativePath?: string | null | undefined;
|
|
8158
|
+
commitAuthorName?: string | null | undefined;
|
|
8159
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8137
8160
|
connectionId?: string | null | undefined;
|
|
8138
8161
|
userId?: number | null | undefined;
|
|
8139
8162
|
}>>;
|
|
@@ -8176,6 +8199,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8176
8199
|
url?: string | undefined;
|
|
8177
8200
|
credentialId?: string | undefined;
|
|
8178
8201
|
relativePath?: string | undefined;
|
|
8202
|
+
commitAuthorName?: string | undefined;
|
|
8203
|
+
commitAuthorEmail?: string | undefined;
|
|
8179
8204
|
connectionId?: string | undefined;
|
|
8180
8205
|
userId?: number | undefined;
|
|
8181
8206
|
} | undefined;
|
|
@@ -8186,6 +8211,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8186
8211
|
repoSlug: string;
|
|
8187
8212
|
credentialId?: string | undefined;
|
|
8188
8213
|
relativePath?: string | undefined;
|
|
8214
|
+
commitAuthorName?: string | undefined;
|
|
8215
|
+
commitAuthorEmail?: string | undefined;
|
|
8189
8216
|
connectionId?: string | undefined;
|
|
8190
8217
|
userId?: number | undefined;
|
|
8191
8218
|
} | undefined;
|
|
@@ -8194,6 +8221,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8194
8221
|
branch: string;
|
|
8195
8222
|
credentialId?: string | undefined;
|
|
8196
8223
|
relativePath?: string | undefined;
|
|
8224
|
+
commitAuthorName?: string | undefined;
|
|
8225
|
+
commitAuthorEmail?: string | undefined;
|
|
8197
8226
|
connectionId?: string | undefined;
|
|
8198
8227
|
userId?: number | undefined;
|
|
8199
8228
|
} | undefined;
|
|
@@ -8203,6 +8232,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8203
8232
|
url?: string | undefined;
|
|
8204
8233
|
credentialId?: string | undefined;
|
|
8205
8234
|
relativePath?: string | undefined;
|
|
8235
|
+
commitAuthorName?: string | undefined;
|
|
8236
|
+
commitAuthorEmail?: string | undefined;
|
|
8206
8237
|
connectionId?: string | undefined;
|
|
8207
8238
|
userId?: number | undefined;
|
|
8208
8239
|
} | undefined;
|
|
@@ -8224,6 +8255,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8224
8255
|
url?: string | null | undefined;
|
|
8225
8256
|
credentialId?: string | undefined;
|
|
8226
8257
|
relativePath?: string | null | undefined;
|
|
8258
|
+
commitAuthorName?: string | null | undefined;
|
|
8259
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8227
8260
|
connectionId?: string | null | undefined;
|
|
8228
8261
|
userId?: number | null | undefined;
|
|
8229
8262
|
} | undefined;
|
|
@@ -8234,6 +8267,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8234
8267
|
repoSlug: string;
|
|
8235
8268
|
credentialId?: string | undefined;
|
|
8236
8269
|
relativePath?: string | null | undefined;
|
|
8270
|
+
commitAuthorName?: string | null | undefined;
|
|
8271
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8237
8272
|
connectionId?: string | null | undefined;
|
|
8238
8273
|
userId?: number | null | undefined;
|
|
8239
8274
|
} | undefined;
|
|
@@ -8242,6 +8277,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8242
8277
|
branch: string;
|
|
8243
8278
|
credentialId?: string | undefined;
|
|
8244
8279
|
relativePath?: string | null | undefined;
|
|
8280
|
+
commitAuthorName?: string | null | undefined;
|
|
8281
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8245
8282
|
connectionId?: string | null | undefined;
|
|
8246
8283
|
userId?: number | null | undefined;
|
|
8247
8284
|
} | undefined;
|
|
@@ -8251,6 +8288,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8251
8288
|
url?: string | null | undefined;
|
|
8252
8289
|
credentialId?: string | undefined;
|
|
8253
8290
|
relativePath?: string | null | undefined;
|
|
8291
|
+
commitAuthorName?: string | null | undefined;
|
|
8292
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8254
8293
|
connectionId?: string | null | undefined;
|
|
8255
8294
|
userId?: number | null | undefined;
|
|
8256
8295
|
} | undefined;
|
|
@@ -8450,6 +8489,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8450
8489
|
url?: string | undefined;
|
|
8451
8490
|
credentialId?: string | undefined;
|
|
8452
8491
|
relativePath?: string | undefined;
|
|
8492
|
+
commitAuthorName?: string | undefined;
|
|
8493
|
+
commitAuthorEmail?: string | undefined;
|
|
8453
8494
|
connectionId?: string | undefined;
|
|
8454
8495
|
userId?: number | undefined;
|
|
8455
8496
|
} | undefined;
|
|
@@ -8460,6 +8501,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8460
8501
|
repoSlug: string;
|
|
8461
8502
|
credentialId?: string | undefined;
|
|
8462
8503
|
relativePath?: string | undefined;
|
|
8504
|
+
commitAuthorName?: string | undefined;
|
|
8505
|
+
commitAuthorEmail?: string | undefined;
|
|
8463
8506
|
connectionId?: string | undefined;
|
|
8464
8507
|
userId?: number | undefined;
|
|
8465
8508
|
} | undefined;
|
|
@@ -8468,6 +8511,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8468
8511
|
branch: string;
|
|
8469
8512
|
credentialId?: string | undefined;
|
|
8470
8513
|
relativePath?: string | undefined;
|
|
8514
|
+
commitAuthorName?: string | undefined;
|
|
8515
|
+
commitAuthorEmail?: string | undefined;
|
|
8471
8516
|
connectionId?: string | undefined;
|
|
8472
8517
|
userId?: number | undefined;
|
|
8473
8518
|
} | undefined;
|
|
@@ -8477,6 +8522,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8477
8522
|
url?: string | undefined;
|
|
8478
8523
|
credentialId?: string | undefined;
|
|
8479
8524
|
relativePath?: string | undefined;
|
|
8525
|
+
commitAuthorName?: string | undefined;
|
|
8526
|
+
commitAuthorEmail?: string | undefined;
|
|
8480
8527
|
connectionId?: string | undefined;
|
|
8481
8528
|
userId?: number | undefined;
|
|
8482
8529
|
} | undefined;
|
|
@@ -8562,6 +8609,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8562
8609
|
url?: string | null | undefined;
|
|
8563
8610
|
credentialId?: string | undefined;
|
|
8564
8611
|
relativePath?: string | null | undefined;
|
|
8612
|
+
commitAuthorName?: string | null | undefined;
|
|
8613
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8565
8614
|
connectionId?: string | null | undefined;
|
|
8566
8615
|
userId?: number | null | undefined;
|
|
8567
8616
|
} | undefined;
|
|
@@ -8572,6 +8621,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8572
8621
|
repoSlug: string;
|
|
8573
8622
|
credentialId?: string | undefined;
|
|
8574
8623
|
relativePath?: string | null | undefined;
|
|
8624
|
+
commitAuthorName?: string | null | undefined;
|
|
8625
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8575
8626
|
connectionId?: string | null | undefined;
|
|
8576
8627
|
userId?: number | null | undefined;
|
|
8577
8628
|
} | undefined;
|
|
@@ -8580,6 +8631,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8580
8631
|
branch: string;
|
|
8581
8632
|
credentialId?: string | undefined;
|
|
8582
8633
|
relativePath?: string | null | undefined;
|
|
8634
|
+
commitAuthorName?: string | null | undefined;
|
|
8635
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8583
8636
|
connectionId?: string | null | undefined;
|
|
8584
8637
|
userId?: number | null | undefined;
|
|
8585
8638
|
} | undefined;
|
|
@@ -8589,6 +8642,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8589
8642
|
url?: string | null | undefined;
|
|
8590
8643
|
credentialId?: string | undefined;
|
|
8591
8644
|
relativePath?: string | null | undefined;
|
|
8645
|
+
commitAuthorName?: string | null | undefined;
|
|
8646
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8592
8647
|
connectionId?: string | null | undefined;
|
|
8593
8648
|
userId?: number | null | undefined;
|
|
8594
8649
|
} | undefined;
|
|
@@ -8676,6 +8731,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8676
8731
|
url?: string | undefined;
|
|
8677
8732
|
credentialId?: string | undefined;
|
|
8678
8733
|
relativePath?: string | undefined;
|
|
8734
|
+
commitAuthorName?: string | undefined;
|
|
8735
|
+
commitAuthorEmail?: string | undefined;
|
|
8679
8736
|
connectionId?: string | undefined;
|
|
8680
8737
|
userId?: number | undefined;
|
|
8681
8738
|
} | undefined;
|
|
@@ -8686,6 +8743,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8686
8743
|
repoSlug: string;
|
|
8687
8744
|
credentialId?: string | undefined;
|
|
8688
8745
|
relativePath?: string | undefined;
|
|
8746
|
+
commitAuthorName?: string | undefined;
|
|
8747
|
+
commitAuthorEmail?: string | undefined;
|
|
8689
8748
|
connectionId?: string | undefined;
|
|
8690
8749
|
userId?: number | undefined;
|
|
8691
8750
|
} | undefined;
|
|
@@ -8694,6 +8753,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8694
8753
|
branch: string;
|
|
8695
8754
|
credentialId?: string | undefined;
|
|
8696
8755
|
relativePath?: string | undefined;
|
|
8756
|
+
commitAuthorName?: string | undefined;
|
|
8757
|
+
commitAuthorEmail?: string | undefined;
|
|
8697
8758
|
connectionId?: string | undefined;
|
|
8698
8759
|
userId?: number | undefined;
|
|
8699
8760
|
} | undefined;
|
|
@@ -8703,6 +8764,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8703
8764
|
url?: string | undefined;
|
|
8704
8765
|
credentialId?: string | undefined;
|
|
8705
8766
|
relativePath?: string | undefined;
|
|
8767
|
+
commitAuthorName?: string | undefined;
|
|
8768
|
+
commitAuthorEmail?: string | undefined;
|
|
8706
8769
|
connectionId?: string | undefined;
|
|
8707
8770
|
userId?: number | undefined;
|
|
8708
8771
|
} | undefined;
|
|
@@ -8790,6 +8853,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8790
8853
|
url?: string | null | undefined;
|
|
8791
8854
|
credentialId?: string | undefined;
|
|
8792
8855
|
relativePath?: string | null | undefined;
|
|
8856
|
+
commitAuthorName?: string | null | undefined;
|
|
8857
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8793
8858
|
connectionId?: string | null | undefined;
|
|
8794
8859
|
userId?: number | null | undefined;
|
|
8795
8860
|
} | undefined;
|
|
@@ -8800,6 +8865,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8800
8865
|
repoSlug: string;
|
|
8801
8866
|
credentialId?: string | undefined;
|
|
8802
8867
|
relativePath?: string | null | undefined;
|
|
8868
|
+
commitAuthorName?: string | null | undefined;
|
|
8869
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8803
8870
|
connectionId?: string | null | undefined;
|
|
8804
8871
|
userId?: number | null | undefined;
|
|
8805
8872
|
} | undefined;
|
|
@@ -8808,6 +8875,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8808
8875
|
branch: string;
|
|
8809
8876
|
credentialId?: string | undefined;
|
|
8810
8877
|
relativePath?: string | null | undefined;
|
|
8878
|
+
commitAuthorName?: string | null | undefined;
|
|
8879
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8811
8880
|
connectionId?: string | null | undefined;
|
|
8812
8881
|
userId?: number | null | undefined;
|
|
8813
8882
|
} | undefined;
|
|
@@ -8817,6 +8886,8 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8817
8886
|
url?: string | null | undefined;
|
|
8818
8887
|
credentialId?: string | undefined;
|
|
8819
8888
|
relativePath?: string | null | undefined;
|
|
8889
|
+
commitAuthorName?: string | null | undefined;
|
|
8890
|
+
commitAuthorEmail?: string | null | undefined;
|
|
8820
8891
|
connectionId?: string | null | undefined;
|
|
8821
8892
|
userId?: number | null | undefined;
|
|
8822
8893
|
} | undefined;
|
|
@@ -23254,6 +23325,8 @@ declare const DTODocumentationPageApprovalStateChangeInput: z.ZodObject<{
|
|
|
23254
23325
|
}>;
|
|
23255
23326
|
type DTODocumentationPageApprovalStateChangeInput = z.infer<typeof DTODocumentationPageApprovalStateChangeInput>;
|
|
23256
23327
|
|
|
23328
|
+
declare const DTOFigmaNodeRenderFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
23329
|
+
type DTOFigmaNodeRenderFormat = z.infer<typeof DTOFigmaNodeRenderFormat>;
|
|
23257
23330
|
declare const DTOFigmaNodeOrigin: z.ZodObject<{
|
|
23258
23331
|
sourceId: z.ZodString;
|
|
23259
23332
|
fileId: z.ZodOptional<z.ZodString>;
|
|
@@ -23273,6 +23346,7 @@ declare const DTOFigmaNodeData: z.ZodObject<{
|
|
|
23273
23346
|
isValid: z.ZodBoolean;
|
|
23274
23347
|
assetId: z.ZodString;
|
|
23275
23348
|
assetUrl: z.ZodString;
|
|
23349
|
+
assetFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
23276
23350
|
assetScale: z.ZodNumber;
|
|
23277
23351
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
23278
23352
|
assetHeight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23281,6 +23355,7 @@ declare const DTOFigmaNodeData: z.ZodObject<{
|
|
|
23281
23355
|
isValid: boolean;
|
|
23282
23356
|
assetId: string;
|
|
23283
23357
|
assetUrl: string;
|
|
23358
|
+
assetFormat: "Png" | "Svg";
|
|
23284
23359
|
assetScale: number;
|
|
23285
23360
|
assetWidth?: number | undefined;
|
|
23286
23361
|
assetHeight?: number | undefined;
|
|
@@ -23289,6 +23364,7 @@ declare const DTOFigmaNodeData: z.ZodObject<{
|
|
|
23289
23364
|
isValid: boolean;
|
|
23290
23365
|
assetId: string;
|
|
23291
23366
|
assetUrl: string;
|
|
23367
|
+
assetFormat: "Png" | "Svg";
|
|
23292
23368
|
assetScale: number;
|
|
23293
23369
|
assetWidth?: number | undefined;
|
|
23294
23370
|
assetHeight?: number | undefined;
|
|
@@ -23311,78 +23387,52 @@ declare const DTOFigmaNode: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUt
|
|
|
23311
23387
|
createdAt: z.ZodDate;
|
|
23312
23388
|
updatedAt: z.ZodDate;
|
|
23313
23389
|
}, {
|
|
23314
|
-
|
|
23315
|
-
|
|
23390
|
+
data: z.ZodObject<{
|
|
23391
|
+
structureElementId: z.ZodString;
|
|
23392
|
+
nodeId: z.ZodString;
|
|
23316
23393
|
fileId: z.ZodOptional<z.ZodString>;
|
|
23394
|
+
valid: z.ZodBoolean;
|
|
23395
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
23396
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
23397
|
+
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
23398
|
+
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
23399
|
+
assetHeight: z.ZodOptional<z.ZodNumber>;
|
|
23400
|
+
assetUrl: z.ZodOptional<z.ZodString>;
|
|
23401
|
+
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
23317
23402
|
}, "strip", z.ZodTypeAny, {
|
|
23318
|
-
|
|
23403
|
+
valid: boolean;
|
|
23404
|
+
format: "Png" | "Svg";
|
|
23405
|
+
structureElementId: string;
|
|
23406
|
+
nodeId: string;
|
|
23407
|
+
assetId?: string | undefined;
|
|
23408
|
+
assetScale?: number | undefined;
|
|
23409
|
+
assetUrl?: string | undefined;
|
|
23319
23410
|
fileId?: string | undefined;
|
|
23320
|
-
|
|
23321
|
-
|
|
23411
|
+
assetWidth?: number | undefined;
|
|
23412
|
+
assetHeight?: number | undefined;
|
|
23413
|
+
assetOriginKey?: string | undefined;
|
|
23414
|
+
}, {
|
|
23415
|
+
valid: boolean;
|
|
23416
|
+
structureElementId: string;
|
|
23417
|
+
nodeId: string;
|
|
23418
|
+
assetId?: string | undefined;
|
|
23419
|
+
assetScale?: number | undefined;
|
|
23420
|
+
assetUrl?: string | undefined;
|
|
23421
|
+
format?: "Png" | "Svg" | undefined;
|
|
23322
23422
|
fileId?: string | undefined;
|
|
23423
|
+
assetWidth?: number | undefined;
|
|
23424
|
+
assetHeight?: number | undefined;
|
|
23425
|
+
assetOriginKey?: string | undefined;
|
|
23323
23426
|
}>;
|
|
23324
|
-
|
|
23325
|
-
|
|
23326
|
-
|
|
23327
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
23328
|
-
name: string;
|
|
23329
|
-
size?: {
|
|
23330
|
-
width?: number | null | undefined;
|
|
23331
|
-
height?: number | null | undefined;
|
|
23332
|
-
} | undefined;
|
|
23333
|
-
parentComponentSetId?: string | undefined;
|
|
23334
|
-
} & {
|
|
23335
|
-
children: any[];
|
|
23336
|
-
}>;
|
|
23337
|
-
assetsInFile: z.ZodObject<{
|
|
23338
|
-
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23339
|
-
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23340
|
-
componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23341
|
-
}, "strip", z.ZodTypeAny, {
|
|
23342
|
-
components: number;
|
|
23343
|
-
frames: number;
|
|
23344
|
-
componentSets: number;
|
|
23345
|
-
}, {
|
|
23346
|
-
components?: number | null | undefined;
|
|
23347
|
-
frames?: number | null | undefined;
|
|
23348
|
-
componentSets?: number | null | undefined;
|
|
23349
|
-
}>;
|
|
23427
|
+
origin: z.ZodObject<{
|
|
23428
|
+
sourceId: z.ZodString;
|
|
23429
|
+
parentName: z.ZodOptional<z.ZodString>;
|
|
23350
23430
|
}, "strip", z.ZodTypeAny, {
|
|
23351
|
-
|
|
23352
|
-
|
|
23353
|
-
frames: number;
|
|
23354
|
-
componentSets: number;
|
|
23355
|
-
};
|
|
23356
|
-
rootNode: {
|
|
23357
|
-
id: string;
|
|
23358
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
23359
|
-
name: string;
|
|
23360
|
-
size?: {
|
|
23361
|
-
width: number;
|
|
23362
|
-
height: number;
|
|
23363
|
-
} | undefined;
|
|
23364
|
-
parentComponentSetId?: string | undefined;
|
|
23365
|
-
} & {
|
|
23366
|
-
children: _supernova_studio_model.FigmaFileStructureNode[];
|
|
23367
|
-
};
|
|
23431
|
+
sourceId: string;
|
|
23432
|
+
parentName?: string | undefined;
|
|
23368
23433
|
}, {
|
|
23369
|
-
|
|
23370
|
-
|
|
23371
|
-
frames?: number | null | undefined;
|
|
23372
|
-
componentSets?: number | null | undefined;
|
|
23373
|
-
};
|
|
23374
|
-
rootNode: {
|
|
23375
|
-
id: string;
|
|
23376
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
23377
|
-
name: string;
|
|
23378
|
-
size?: {
|
|
23379
|
-
width?: number | null | undefined;
|
|
23380
|
-
height?: number | null | undefined;
|
|
23381
|
-
} | undefined;
|
|
23382
|
-
parentComponentSetId?: string | undefined;
|
|
23383
|
-
} & {
|
|
23384
|
-
children: any[];
|
|
23385
|
-
};
|
|
23434
|
+
sourceId: string;
|
|
23435
|
+
parentName?: string | undefined;
|
|
23386
23436
|
}>;
|
|
23387
23437
|
}>, "data" | "origin">, {
|
|
23388
23438
|
data: z.ZodObject<{
|
|
@@ -23390,6 +23440,7 @@ declare const DTOFigmaNode: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUt
|
|
|
23390
23440
|
isValid: z.ZodBoolean;
|
|
23391
23441
|
assetId: z.ZodString;
|
|
23392
23442
|
assetUrl: z.ZodString;
|
|
23443
|
+
assetFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
23393
23444
|
assetScale: z.ZodNumber;
|
|
23394
23445
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
23395
23446
|
assetHeight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23398,6 +23449,7 @@ declare const DTOFigmaNode: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUt
|
|
|
23398
23449
|
isValid: boolean;
|
|
23399
23450
|
assetId: string;
|
|
23400
23451
|
assetUrl: string;
|
|
23452
|
+
assetFormat: "Png" | "Svg";
|
|
23401
23453
|
assetScale: number;
|
|
23402
23454
|
assetWidth?: number | undefined;
|
|
23403
23455
|
assetHeight?: number | undefined;
|
|
@@ -23406,6 +23458,7 @@ declare const DTOFigmaNode: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUt
|
|
|
23406
23458
|
isValid: boolean;
|
|
23407
23459
|
assetId: string;
|
|
23408
23460
|
assetUrl: string;
|
|
23461
|
+
assetFormat: "Png" | "Svg";
|
|
23409
23462
|
assetScale: number;
|
|
23410
23463
|
assetWidth?: number | undefined;
|
|
23411
23464
|
assetHeight?: number | undefined;
|
|
@@ -23438,6 +23491,7 @@ declare const DTOFigmaNode: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUt
|
|
|
23438
23491
|
isValid: boolean;
|
|
23439
23492
|
assetId: string;
|
|
23440
23493
|
assetUrl: string;
|
|
23494
|
+
assetFormat: "Png" | "Svg";
|
|
23441
23495
|
assetScale: number;
|
|
23442
23496
|
assetWidth?: number | undefined;
|
|
23443
23497
|
assetHeight?: number | undefined;
|
|
@@ -23462,6 +23516,7 @@ declare const DTOFigmaNode: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUt
|
|
|
23462
23516
|
isValid: boolean;
|
|
23463
23517
|
assetId: string;
|
|
23464
23518
|
assetUrl: string;
|
|
23519
|
+
assetFormat: "Png" | "Svg";
|
|
23465
23520
|
assetScale: number;
|
|
23466
23521
|
assetWidth?: number | undefined;
|
|
23467
23522
|
assetHeight?: number | undefined;
|
|
@@ -23474,87 +23529,29 @@ declare const DTOFigmaNode: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUt
|
|
|
23474
23529
|
}>;
|
|
23475
23530
|
type DTOFigmaNode = z.infer<typeof DTOFigmaNode>;
|
|
23476
23531
|
declare const DTOFigmaNodeRenderInput: z.ZodObject<{
|
|
23532
|
+
/**
|
|
23533
|
+
* Id of a design system's data source representing a linked Figma file
|
|
23534
|
+
*/
|
|
23477
23535
|
sourceId: z.ZodString;
|
|
23536
|
+
/**
|
|
23537
|
+
* Id of a node within the Figma file
|
|
23538
|
+
*/
|
|
23478
23539
|
figmaFileNodeId: z.ZodString;
|
|
23540
|
+
/**
|
|
23541
|
+
* Format in which the node must be rendered, png by default.
|
|
23542
|
+
*/
|
|
23543
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
23479
23544
|
}, "strip", z.ZodTypeAny, {
|
|
23480
23545
|
sourceId: string;
|
|
23481
23546
|
figmaFileNodeId: string;
|
|
23547
|
+
format: "Png" | "Svg";
|
|
23482
23548
|
}, {
|
|
23483
23549
|
sourceId: string;
|
|
23484
23550
|
figmaFileNodeId: string;
|
|
23551
|
+
format?: "Png" | "Svg" | undefined;
|
|
23485
23552
|
}>;
|
|
23486
23553
|
type DTOFigmaNodeRenderInput = z.infer<typeof DTOFigmaNodeRenderInput>;
|
|
23487
23554
|
|
|
23488
|
-
declare const PageBlockDefinitionLayoutBase: z.ZodObject<{
|
|
23489
|
-
type: z.ZodEnum<["Column", "Row"]>;
|
|
23490
|
-
gap: z.ZodOptional<z.ZodEnum<["Small", "Medium", "Large", "None"]>>;
|
|
23491
|
-
columnAlign: z.ZodOptional<z.ZodEnum<["Start", "Center", "End"]>>;
|
|
23492
|
-
columnResizing: z.ZodOptional<z.ZodEnum<["Fill", "Hug"]>>;
|
|
23493
|
-
}, "strip", z.ZodTypeAny, {
|
|
23494
|
-
type: "Column" | "Row";
|
|
23495
|
-
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
23496
|
-
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
23497
|
-
columnResizing?: "Fill" | "Hug" | undefined;
|
|
23498
|
-
}, {
|
|
23499
|
-
type: "Column" | "Row";
|
|
23500
|
-
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
23501
|
-
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
23502
|
-
columnResizing?: "Fill" | "Hug" | undefined;
|
|
23503
|
-
}>;
|
|
23504
|
-
declare const PageBlockDefinitionLayout: z.ZodType<PageBlockDefinitionLayout, ZodTypeDef, PageBlockDefinitionLayout>;
|
|
23505
|
-
type PageBlockDefinitionLayout = z.infer<typeof PageBlockDefinitionLayoutBase> & {
|
|
23506
|
-
children: (PageBlockDefinitionLayout | string)[];
|
|
23507
|
-
};
|
|
23508
|
-
|
|
23509
|
-
type FigmaFileStructureNodeBaseInput = z.input<typeof FigmaFileStructureNodeBase> & {
|
|
23510
|
-
children: FigmaFileStructureNodeBaseInput[];
|
|
23511
|
-
};
|
|
23512
|
-
declare const FigmaFileStructureNodeBase: z.ZodObject<{
|
|
23513
|
-
id: z.ZodString;
|
|
23514
|
-
name: z.ZodString;
|
|
23515
|
-
type: z.ZodEnum<["DOCUMENT", "CANVAS", "FRAME", "COMPONENT", "COMPONENT_SET"]>;
|
|
23516
|
-
size: z.ZodEffects<z.ZodOptional<z.ZodObject<{
|
|
23517
|
-
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23518
|
-
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23519
|
-
}, "strip", z.ZodTypeAny, {
|
|
23520
|
-
width: number;
|
|
23521
|
-
height: number;
|
|
23522
|
-
}, {
|
|
23523
|
-
width?: number | null | undefined;
|
|
23524
|
-
height?: number | null | undefined;
|
|
23525
|
-
}>>, {
|
|
23526
|
-
width: number;
|
|
23527
|
-
height: number;
|
|
23528
|
-
} | undefined, {
|
|
23529
|
-
width?: number | null | undefined;
|
|
23530
|
-
height?: number | null | undefined;
|
|
23531
|
-
} | undefined>;
|
|
23532
|
-
parentComponentSetId: z.ZodOptional<z.ZodString>;
|
|
23533
|
-
}, "strip", z.ZodTypeAny, {
|
|
23534
|
-
id: string;
|
|
23535
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
23536
|
-
name: string;
|
|
23537
|
-
size?: {
|
|
23538
|
-
width: number;
|
|
23539
|
-
height: number;
|
|
23540
|
-
} | undefined;
|
|
23541
|
-
parentComponentSetId?: string | undefined;
|
|
23542
|
-
}, {
|
|
23543
|
-
id: string;
|
|
23544
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
23545
|
-
name: string;
|
|
23546
|
-
size?: {
|
|
23547
|
-
width?: number | null | undefined;
|
|
23548
|
-
height?: number | null | undefined;
|
|
23549
|
-
} | undefined;
|
|
23550
|
-
parentComponentSetId?: string | undefined;
|
|
23551
|
-
}>;
|
|
23552
|
-
type FigmaFileStructureNodeBase = z.infer<typeof FigmaFileStructureNodeBase>;
|
|
23553
|
-
declare const FigmaFileStructureNode: z.ZodType<FigmaFileStructureNode, ZodTypeDef, FigmaFileStructureNodeBaseInput>;
|
|
23554
|
-
type FigmaFileStructureNode = z.infer<typeof FigmaFileStructureNodeBase> & {
|
|
23555
|
-
children: FigmaFileStructureNode[];
|
|
23556
|
-
};
|
|
23557
|
-
|
|
23558
23555
|
declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
23559
23556
|
type: z.ZodLiteral<"FigmaNodeRender">;
|
|
23560
23557
|
figmaNodes: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<{
|
|
@@ -23574,78 +23571,52 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
23574
23571
|
createdAt: z.ZodDate;
|
|
23575
23572
|
updatedAt: z.ZodDate;
|
|
23576
23573
|
}, {
|
|
23577
|
-
|
|
23578
|
-
|
|
23574
|
+
data: z.ZodObject<{
|
|
23575
|
+
structureElementId: z.ZodString;
|
|
23576
|
+
nodeId: z.ZodString;
|
|
23579
23577
|
fileId: z.ZodOptional<z.ZodString>;
|
|
23578
|
+
valid: z.ZodBoolean;
|
|
23579
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
23580
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
23581
|
+
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
23582
|
+
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
23583
|
+
assetHeight: z.ZodOptional<z.ZodNumber>;
|
|
23584
|
+
assetUrl: z.ZodOptional<z.ZodString>;
|
|
23585
|
+
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
23580
23586
|
}, "strip", z.ZodTypeAny, {
|
|
23581
|
-
|
|
23587
|
+
valid: boolean;
|
|
23588
|
+
format: "Png" | "Svg";
|
|
23589
|
+
structureElementId: string;
|
|
23590
|
+
nodeId: string;
|
|
23591
|
+
assetId?: string | undefined;
|
|
23592
|
+
assetScale?: number | undefined;
|
|
23593
|
+
assetUrl?: string | undefined;
|
|
23582
23594
|
fileId?: string | undefined;
|
|
23595
|
+
assetWidth?: number | undefined;
|
|
23596
|
+
assetHeight?: number | undefined;
|
|
23597
|
+
assetOriginKey?: string | undefined;
|
|
23583
23598
|
}, {
|
|
23584
|
-
|
|
23599
|
+
valid: boolean;
|
|
23600
|
+
structureElementId: string;
|
|
23601
|
+
nodeId: string;
|
|
23602
|
+
assetId?: string | undefined;
|
|
23603
|
+
assetScale?: number | undefined;
|
|
23604
|
+
assetUrl?: string | undefined;
|
|
23605
|
+
format?: "Png" | "Svg" | undefined;
|
|
23585
23606
|
fileId?: string | undefined;
|
|
23607
|
+
assetWidth?: number | undefined;
|
|
23608
|
+
assetHeight?: number | undefined;
|
|
23609
|
+
assetOriginKey?: string | undefined;
|
|
23586
23610
|
}>;
|
|
23587
|
-
|
|
23588
|
-
|
|
23589
|
-
|
|
23590
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
23591
|
-
name: string;
|
|
23592
|
-
size?: {
|
|
23593
|
-
width?: number | null | undefined;
|
|
23594
|
-
height?: number | null | undefined;
|
|
23595
|
-
} | undefined;
|
|
23596
|
-
parentComponentSetId?: string | undefined;
|
|
23597
|
-
} & {
|
|
23598
|
-
children: any[];
|
|
23599
|
-
}>;
|
|
23600
|
-
assetsInFile: z.ZodObject<{
|
|
23601
|
-
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23602
|
-
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23603
|
-
componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23604
|
-
}, "strip", z.ZodTypeAny, {
|
|
23605
|
-
components: number;
|
|
23606
|
-
frames: number;
|
|
23607
|
-
componentSets: number;
|
|
23608
|
-
}, {
|
|
23609
|
-
components?: number | null | undefined;
|
|
23610
|
-
frames?: number | null | undefined;
|
|
23611
|
-
componentSets?: number | null | undefined;
|
|
23612
|
-
}>;
|
|
23611
|
+
origin: z.ZodObject<{
|
|
23612
|
+
sourceId: z.ZodString;
|
|
23613
|
+
parentName: z.ZodOptional<z.ZodString>;
|
|
23613
23614
|
}, "strip", z.ZodTypeAny, {
|
|
23614
|
-
|
|
23615
|
-
|
|
23616
|
-
frames: number;
|
|
23617
|
-
componentSets: number;
|
|
23618
|
-
};
|
|
23619
|
-
rootNode: {
|
|
23620
|
-
id: string;
|
|
23621
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
23622
|
-
name: string;
|
|
23623
|
-
size?: {
|
|
23624
|
-
width: number;
|
|
23625
|
-
height: number;
|
|
23626
|
-
} | undefined;
|
|
23627
|
-
parentComponentSetId?: string | undefined;
|
|
23628
|
-
} & {
|
|
23629
|
-
children: FigmaFileStructureNode[];
|
|
23630
|
-
};
|
|
23615
|
+
sourceId: string;
|
|
23616
|
+
parentName?: string | undefined;
|
|
23631
23617
|
}, {
|
|
23632
|
-
|
|
23633
|
-
|
|
23634
|
-
frames?: number | null | undefined;
|
|
23635
|
-
componentSets?: number | null | undefined;
|
|
23636
|
-
};
|
|
23637
|
-
rootNode: {
|
|
23638
|
-
id: string;
|
|
23639
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
23640
|
-
name: string;
|
|
23641
|
-
size?: {
|
|
23642
|
-
width?: number | null | undefined;
|
|
23643
|
-
height?: number | null | undefined;
|
|
23644
|
-
} | undefined;
|
|
23645
|
-
parentComponentSetId?: string | undefined;
|
|
23646
|
-
} & {
|
|
23647
|
-
children: any[];
|
|
23648
|
-
};
|
|
23618
|
+
sourceId: string;
|
|
23619
|
+
parentName?: string | undefined;
|
|
23649
23620
|
}>;
|
|
23650
23621
|
}>, "data" | "origin">, {
|
|
23651
23622
|
data: z.ZodObject<{
|
|
@@ -23653,6 +23624,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
23653
23624
|
isValid: z.ZodBoolean;
|
|
23654
23625
|
assetId: z.ZodString;
|
|
23655
23626
|
assetUrl: z.ZodString;
|
|
23627
|
+
assetFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
23656
23628
|
assetScale: z.ZodNumber;
|
|
23657
23629
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
23658
23630
|
assetHeight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23661,6 +23633,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
23661
23633
|
isValid: boolean;
|
|
23662
23634
|
assetId: string;
|
|
23663
23635
|
assetUrl: string;
|
|
23636
|
+
assetFormat: "Png" | "Svg";
|
|
23664
23637
|
assetScale: number;
|
|
23665
23638
|
assetWidth?: number | undefined;
|
|
23666
23639
|
assetHeight?: number | undefined;
|
|
@@ -23669,6 +23642,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
23669
23642
|
isValid: boolean;
|
|
23670
23643
|
assetId: string;
|
|
23671
23644
|
assetUrl: string;
|
|
23645
|
+
assetFormat: "Png" | "Svg";
|
|
23672
23646
|
assetScale: number;
|
|
23673
23647
|
assetWidth?: number | undefined;
|
|
23674
23648
|
assetHeight?: number | undefined;
|
|
@@ -23701,6 +23675,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
23701
23675
|
isValid: boolean;
|
|
23702
23676
|
assetId: string;
|
|
23703
23677
|
assetUrl: string;
|
|
23678
|
+
assetFormat: "Png" | "Svg";
|
|
23704
23679
|
assetScale: number;
|
|
23705
23680
|
assetWidth?: number | undefined;
|
|
23706
23681
|
assetHeight?: number | undefined;
|
|
@@ -23725,6 +23700,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
23725
23700
|
isValid: boolean;
|
|
23726
23701
|
assetId: string;
|
|
23727
23702
|
assetUrl: string;
|
|
23703
|
+
assetFormat: "Png" | "Svg";
|
|
23728
23704
|
assetScale: number;
|
|
23729
23705
|
assetWidth?: number | undefined;
|
|
23730
23706
|
assetHeight?: number | undefined;
|
|
@@ -23752,6 +23728,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
23752
23728
|
isValid: boolean;
|
|
23753
23729
|
assetId: string;
|
|
23754
23730
|
assetUrl: string;
|
|
23731
|
+
assetFormat: "Png" | "Svg";
|
|
23755
23732
|
assetScale: number;
|
|
23756
23733
|
assetWidth?: number | undefined;
|
|
23757
23734
|
assetHeight?: number | undefined;
|
|
@@ -23779,6 +23756,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
23779
23756
|
isValid: boolean;
|
|
23780
23757
|
assetId: string;
|
|
23781
23758
|
assetUrl: string;
|
|
23759
|
+
assetFormat: "Png" | "Svg";
|
|
23782
23760
|
assetScale: number;
|
|
23783
23761
|
assetWidth?: number | undefined;
|
|
23784
23762
|
assetHeight?: number | undefined;
|
|
@@ -23796,24 +23774,29 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
|
23796
23774
|
input: z.ZodArray<z.ZodObject<{
|
|
23797
23775
|
sourceId: z.ZodString;
|
|
23798
23776
|
figmaFileNodeId: z.ZodString;
|
|
23777
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
23799
23778
|
}, "strip", z.ZodTypeAny, {
|
|
23800
23779
|
sourceId: string;
|
|
23801
23780
|
figmaFileNodeId: string;
|
|
23781
|
+
format: "Png" | "Svg";
|
|
23802
23782
|
}, {
|
|
23803
23783
|
sourceId: string;
|
|
23804
23784
|
figmaFileNodeId: string;
|
|
23785
|
+
format?: "Png" | "Svg" | undefined;
|
|
23805
23786
|
}>, "many">;
|
|
23806
23787
|
}, "strip", z.ZodTypeAny, {
|
|
23807
23788
|
type: "FigmaNodeRender";
|
|
23808
23789
|
input: {
|
|
23809
23790
|
sourceId: string;
|
|
23810
23791
|
figmaFileNodeId: string;
|
|
23792
|
+
format: "Png" | "Svg";
|
|
23811
23793
|
}[];
|
|
23812
23794
|
}, {
|
|
23813
23795
|
type: "FigmaNodeRender";
|
|
23814
23796
|
input: {
|
|
23815
23797
|
sourceId: string;
|
|
23816
23798
|
figmaFileNodeId: string;
|
|
23799
|
+
format?: "Png" | "Svg" | undefined;
|
|
23817
23800
|
}[];
|
|
23818
23801
|
}>;
|
|
23819
23802
|
type DTOFigmaNodeRenderActionInput = z.infer<typeof DTOFigmaNodeRenderActionInput>;
|
|
@@ -24984,78 +24967,52 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
24984
24967
|
createdAt: z.ZodDate;
|
|
24985
24968
|
updatedAt: z.ZodDate;
|
|
24986
24969
|
}, {
|
|
24987
|
-
|
|
24988
|
-
|
|
24970
|
+
data: z.ZodObject<{
|
|
24971
|
+
structureElementId: z.ZodString;
|
|
24972
|
+
nodeId: z.ZodString;
|
|
24989
24973
|
fileId: z.ZodOptional<z.ZodString>;
|
|
24974
|
+
valid: z.ZodBoolean;
|
|
24975
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
24976
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
24977
|
+
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
24978
|
+
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
24979
|
+
assetHeight: z.ZodOptional<z.ZodNumber>;
|
|
24980
|
+
assetUrl: z.ZodOptional<z.ZodString>;
|
|
24981
|
+
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
24990
24982
|
}, "strip", z.ZodTypeAny, {
|
|
24991
|
-
|
|
24983
|
+
valid: boolean;
|
|
24984
|
+
format: "Png" | "Svg";
|
|
24985
|
+
structureElementId: string;
|
|
24986
|
+
nodeId: string;
|
|
24987
|
+
assetId?: string | undefined;
|
|
24988
|
+
assetScale?: number | undefined;
|
|
24989
|
+
assetUrl?: string | undefined;
|
|
24992
24990
|
fileId?: string | undefined;
|
|
24991
|
+
assetWidth?: number | undefined;
|
|
24992
|
+
assetHeight?: number | undefined;
|
|
24993
|
+
assetOriginKey?: string | undefined;
|
|
24993
24994
|
}, {
|
|
24994
|
-
|
|
24995
|
+
valid: boolean;
|
|
24996
|
+
structureElementId: string;
|
|
24997
|
+
nodeId: string;
|
|
24998
|
+
assetId?: string | undefined;
|
|
24999
|
+
assetScale?: number | undefined;
|
|
25000
|
+
assetUrl?: string | undefined;
|
|
25001
|
+
format?: "Png" | "Svg" | undefined;
|
|
24995
25002
|
fileId?: string | undefined;
|
|
25003
|
+
assetWidth?: number | undefined;
|
|
25004
|
+
assetHeight?: number | undefined;
|
|
25005
|
+
assetOriginKey?: string | undefined;
|
|
24996
25006
|
}>;
|
|
24997
|
-
|
|
24998
|
-
|
|
24999
|
-
|
|
25000
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
25001
|
-
name: string;
|
|
25002
|
-
size?: {
|
|
25003
|
-
width?: number | null | undefined;
|
|
25004
|
-
height?: number | null | undefined;
|
|
25005
|
-
} | undefined;
|
|
25006
|
-
parentComponentSetId?: string | undefined;
|
|
25007
|
-
} & {
|
|
25008
|
-
children: any[];
|
|
25009
|
-
}>;
|
|
25010
|
-
assetsInFile: z.ZodObject<{
|
|
25011
|
-
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
25012
|
-
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
25013
|
-
componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
25014
|
-
}, "strip", z.ZodTypeAny, {
|
|
25015
|
-
components: number;
|
|
25016
|
-
frames: number;
|
|
25017
|
-
componentSets: number;
|
|
25018
|
-
}, {
|
|
25019
|
-
components?: number | null | undefined;
|
|
25020
|
-
frames?: number | null | undefined;
|
|
25021
|
-
componentSets?: number | null | undefined;
|
|
25022
|
-
}>;
|
|
25007
|
+
origin: z.ZodObject<{
|
|
25008
|
+
sourceId: z.ZodString;
|
|
25009
|
+
parentName: z.ZodOptional<z.ZodString>;
|
|
25023
25010
|
}, "strip", z.ZodTypeAny, {
|
|
25024
|
-
|
|
25025
|
-
|
|
25026
|
-
frames: number;
|
|
25027
|
-
componentSets: number;
|
|
25028
|
-
};
|
|
25029
|
-
rootNode: {
|
|
25030
|
-
id: string;
|
|
25031
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
25032
|
-
name: string;
|
|
25033
|
-
size?: {
|
|
25034
|
-
width: number;
|
|
25035
|
-
height: number;
|
|
25036
|
-
} | undefined;
|
|
25037
|
-
parentComponentSetId?: string | undefined;
|
|
25038
|
-
} & {
|
|
25039
|
-
children: FigmaFileStructureNode[];
|
|
25040
|
-
};
|
|
25011
|
+
sourceId: string;
|
|
25012
|
+
parentName?: string | undefined;
|
|
25041
25013
|
}, {
|
|
25042
|
-
|
|
25043
|
-
|
|
25044
|
-
frames?: number | null | undefined;
|
|
25045
|
-
componentSets?: number | null | undefined;
|
|
25046
|
-
};
|
|
25047
|
-
rootNode: {
|
|
25048
|
-
id: string;
|
|
25049
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
25050
|
-
name: string;
|
|
25051
|
-
size?: {
|
|
25052
|
-
width?: number | null | undefined;
|
|
25053
|
-
height?: number | null | undefined;
|
|
25054
|
-
} | undefined;
|
|
25055
|
-
parentComponentSetId?: string | undefined;
|
|
25056
|
-
} & {
|
|
25057
|
-
children: any[];
|
|
25058
|
-
};
|
|
25014
|
+
sourceId: string;
|
|
25015
|
+
parentName?: string | undefined;
|
|
25059
25016
|
}>;
|
|
25060
25017
|
}>, "data" | "origin">, {
|
|
25061
25018
|
data: z.ZodObject<{
|
|
@@ -25063,6 +25020,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
25063
25020
|
isValid: z.ZodBoolean;
|
|
25064
25021
|
assetId: z.ZodString;
|
|
25065
25022
|
assetUrl: z.ZodString;
|
|
25023
|
+
assetFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
25066
25024
|
assetScale: z.ZodNumber;
|
|
25067
25025
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
25068
25026
|
assetHeight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -25071,6 +25029,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
25071
25029
|
isValid: boolean;
|
|
25072
25030
|
assetId: string;
|
|
25073
25031
|
assetUrl: string;
|
|
25032
|
+
assetFormat: "Png" | "Svg";
|
|
25074
25033
|
assetScale: number;
|
|
25075
25034
|
assetWidth?: number | undefined;
|
|
25076
25035
|
assetHeight?: number | undefined;
|
|
@@ -25079,6 +25038,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
25079
25038
|
isValid: boolean;
|
|
25080
25039
|
assetId: string;
|
|
25081
25040
|
assetUrl: string;
|
|
25041
|
+
assetFormat: "Png" | "Svg";
|
|
25082
25042
|
assetScale: number;
|
|
25083
25043
|
assetWidth?: number | undefined;
|
|
25084
25044
|
assetHeight?: number | undefined;
|
|
@@ -25111,6 +25071,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
25111
25071
|
isValid: boolean;
|
|
25112
25072
|
assetId: string;
|
|
25113
25073
|
assetUrl: string;
|
|
25074
|
+
assetFormat: "Png" | "Svg";
|
|
25114
25075
|
assetScale: number;
|
|
25115
25076
|
assetWidth?: number | undefined;
|
|
25116
25077
|
assetHeight?: number | undefined;
|
|
@@ -25135,6 +25096,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
25135
25096
|
isValid: boolean;
|
|
25136
25097
|
assetId: string;
|
|
25137
25098
|
assetUrl: string;
|
|
25099
|
+
assetFormat: "Png" | "Svg";
|
|
25138
25100
|
assetScale: number;
|
|
25139
25101
|
assetWidth?: number | undefined;
|
|
25140
25102
|
assetHeight?: number | undefined;
|
|
@@ -25162,6 +25124,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
25162
25124
|
isValid: boolean;
|
|
25163
25125
|
assetId: string;
|
|
25164
25126
|
assetUrl: string;
|
|
25127
|
+
assetFormat: "Png" | "Svg";
|
|
25165
25128
|
assetScale: number;
|
|
25166
25129
|
assetWidth?: number | undefined;
|
|
25167
25130
|
assetHeight?: number | undefined;
|
|
@@ -25189,6 +25152,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
25189
25152
|
isValid: boolean;
|
|
25190
25153
|
assetId: string;
|
|
25191
25154
|
assetUrl: string;
|
|
25155
|
+
assetFormat: "Png" | "Svg";
|
|
25192
25156
|
assetScale: number;
|
|
25193
25157
|
assetWidth?: number | undefined;
|
|
25194
25158
|
assetHeight?: number | undefined;
|
|
@@ -27139,24 +27103,29 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
27139
27103
|
input: z.ZodArray<z.ZodObject<{
|
|
27140
27104
|
sourceId: z.ZodString;
|
|
27141
27105
|
figmaFileNodeId: z.ZodString;
|
|
27106
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
27142
27107
|
}, "strip", z.ZodTypeAny, {
|
|
27143
27108
|
sourceId: string;
|
|
27144
27109
|
figmaFileNodeId: string;
|
|
27110
|
+
format: "Png" | "Svg";
|
|
27145
27111
|
}, {
|
|
27146
27112
|
sourceId: string;
|
|
27147
27113
|
figmaFileNodeId: string;
|
|
27114
|
+
format?: "Png" | "Svg" | undefined;
|
|
27148
27115
|
}>, "many">;
|
|
27149
27116
|
}, "strip", z.ZodTypeAny, {
|
|
27150
27117
|
type: "FigmaNodeRender";
|
|
27151
27118
|
input: {
|
|
27152
27119
|
sourceId: string;
|
|
27153
27120
|
figmaFileNodeId: string;
|
|
27121
|
+
format: "Png" | "Svg";
|
|
27154
27122
|
}[];
|
|
27155
27123
|
}, {
|
|
27156
27124
|
type: "FigmaNodeRender";
|
|
27157
27125
|
input: {
|
|
27158
27126
|
sourceId: string;
|
|
27159
27127
|
figmaFileNodeId: string;
|
|
27128
|
+
format?: "Png" | "Svg" | undefined;
|
|
27160
27129
|
}[];
|
|
27161
27130
|
}>, z.ZodObject<{
|
|
27162
27131
|
type: z.ZodLiteral<"PropertyDefinitionCreate">;
|
|
@@ -27480,78 +27449,52 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
27480
27449
|
createdAt: z.ZodDate;
|
|
27481
27450
|
updatedAt: z.ZodDate;
|
|
27482
27451
|
}, {
|
|
27483
|
-
|
|
27484
|
-
|
|
27452
|
+
data: z.ZodObject<{
|
|
27453
|
+
structureElementId: z.ZodString;
|
|
27454
|
+
nodeId: z.ZodString;
|
|
27485
27455
|
fileId: z.ZodOptional<z.ZodString>;
|
|
27456
|
+
valid: z.ZodBoolean;
|
|
27457
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
27458
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
27459
|
+
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
27460
|
+
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
27461
|
+
assetHeight: z.ZodOptional<z.ZodNumber>;
|
|
27462
|
+
assetUrl: z.ZodOptional<z.ZodString>;
|
|
27463
|
+
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
27486
27464
|
}, "strip", z.ZodTypeAny, {
|
|
27487
|
-
|
|
27465
|
+
valid: boolean;
|
|
27466
|
+
format: "Png" | "Svg";
|
|
27467
|
+
structureElementId: string;
|
|
27468
|
+
nodeId: string;
|
|
27469
|
+
assetId?: string | undefined;
|
|
27470
|
+
assetScale?: number | undefined;
|
|
27471
|
+
assetUrl?: string | undefined;
|
|
27488
27472
|
fileId?: string | undefined;
|
|
27473
|
+
assetWidth?: number | undefined;
|
|
27474
|
+
assetHeight?: number | undefined;
|
|
27475
|
+
assetOriginKey?: string | undefined;
|
|
27489
27476
|
}, {
|
|
27490
|
-
|
|
27477
|
+
valid: boolean;
|
|
27478
|
+
structureElementId: string;
|
|
27479
|
+
nodeId: string;
|
|
27480
|
+
assetId?: string | undefined;
|
|
27481
|
+
assetScale?: number | undefined;
|
|
27482
|
+
assetUrl?: string | undefined;
|
|
27483
|
+
format?: "Png" | "Svg" | undefined;
|
|
27491
27484
|
fileId?: string | undefined;
|
|
27485
|
+
assetWidth?: number | undefined;
|
|
27486
|
+
assetHeight?: number | undefined;
|
|
27487
|
+
assetOriginKey?: string | undefined;
|
|
27492
27488
|
}>;
|
|
27493
|
-
|
|
27494
|
-
|
|
27495
|
-
|
|
27496
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
27497
|
-
name: string;
|
|
27498
|
-
size?: {
|
|
27499
|
-
width?: number | null | undefined;
|
|
27500
|
-
height?: number | null | undefined;
|
|
27501
|
-
} | undefined;
|
|
27502
|
-
parentComponentSetId?: string | undefined;
|
|
27503
|
-
} & {
|
|
27504
|
-
children: any[];
|
|
27505
|
-
}>;
|
|
27506
|
-
assetsInFile: z.ZodObject<{
|
|
27507
|
-
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
27508
|
-
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
27509
|
-
componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
27510
|
-
}, "strip", z.ZodTypeAny, {
|
|
27511
|
-
components: number;
|
|
27512
|
-
frames: number;
|
|
27513
|
-
componentSets: number;
|
|
27514
|
-
}, {
|
|
27515
|
-
components?: number | null | undefined;
|
|
27516
|
-
frames?: number | null | undefined;
|
|
27517
|
-
componentSets?: number | null | undefined;
|
|
27518
|
-
}>;
|
|
27489
|
+
origin: z.ZodObject<{
|
|
27490
|
+
sourceId: z.ZodString;
|
|
27491
|
+
parentName: z.ZodOptional<z.ZodString>;
|
|
27519
27492
|
}, "strip", z.ZodTypeAny, {
|
|
27520
|
-
|
|
27521
|
-
|
|
27522
|
-
frames: number;
|
|
27523
|
-
componentSets: number;
|
|
27524
|
-
};
|
|
27525
|
-
rootNode: {
|
|
27526
|
-
id: string;
|
|
27527
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
27528
|
-
name: string;
|
|
27529
|
-
size?: {
|
|
27530
|
-
width: number;
|
|
27531
|
-
height: number;
|
|
27532
|
-
} | undefined;
|
|
27533
|
-
parentComponentSetId?: string | undefined;
|
|
27534
|
-
} & {
|
|
27535
|
-
children: FigmaFileStructureNode[];
|
|
27536
|
-
};
|
|
27493
|
+
sourceId: string;
|
|
27494
|
+
parentName?: string | undefined;
|
|
27537
27495
|
}, {
|
|
27538
|
-
|
|
27539
|
-
|
|
27540
|
-
frames?: number | null | undefined;
|
|
27541
|
-
componentSets?: number | null | undefined;
|
|
27542
|
-
};
|
|
27543
|
-
rootNode: {
|
|
27544
|
-
id: string;
|
|
27545
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
27546
|
-
name: string;
|
|
27547
|
-
size?: {
|
|
27548
|
-
width?: number | null | undefined;
|
|
27549
|
-
height?: number | null | undefined;
|
|
27550
|
-
} | undefined;
|
|
27551
|
-
parentComponentSetId?: string | undefined;
|
|
27552
|
-
} & {
|
|
27553
|
-
children: any[];
|
|
27554
|
-
};
|
|
27496
|
+
sourceId: string;
|
|
27497
|
+
parentName?: string | undefined;
|
|
27555
27498
|
}>;
|
|
27556
27499
|
}>, "data" | "origin">, {
|
|
27557
27500
|
data: z.ZodObject<{
|
|
@@ -27559,6 +27502,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
27559
27502
|
isValid: z.ZodBoolean;
|
|
27560
27503
|
assetId: z.ZodString;
|
|
27561
27504
|
assetUrl: z.ZodString;
|
|
27505
|
+
assetFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
27562
27506
|
assetScale: z.ZodNumber;
|
|
27563
27507
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
27564
27508
|
assetHeight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -27567,6 +27511,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
27567
27511
|
isValid: boolean;
|
|
27568
27512
|
assetId: string;
|
|
27569
27513
|
assetUrl: string;
|
|
27514
|
+
assetFormat: "Png" | "Svg";
|
|
27570
27515
|
assetScale: number;
|
|
27571
27516
|
assetWidth?: number | undefined;
|
|
27572
27517
|
assetHeight?: number | undefined;
|
|
@@ -27575,6 +27520,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
27575
27520
|
isValid: boolean;
|
|
27576
27521
|
assetId: string;
|
|
27577
27522
|
assetUrl: string;
|
|
27523
|
+
assetFormat: "Png" | "Svg";
|
|
27578
27524
|
assetScale: number;
|
|
27579
27525
|
assetWidth?: number | undefined;
|
|
27580
27526
|
assetHeight?: number | undefined;
|
|
@@ -27607,6 +27553,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
27607
27553
|
isValid: boolean;
|
|
27608
27554
|
assetId: string;
|
|
27609
27555
|
assetUrl: string;
|
|
27556
|
+
assetFormat: "Png" | "Svg";
|
|
27610
27557
|
assetScale: number;
|
|
27611
27558
|
assetWidth?: number | undefined;
|
|
27612
27559
|
assetHeight?: number | undefined;
|
|
@@ -27631,6 +27578,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
27631
27578
|
isValid: boolean;
|
|
27632
27579
|
assetId: string;
|
|
27633
27580
|
assetUrl: string;
|
|
27581
|
+
assetFormat: "Png" | "Svg";
|
|
27634
27582
|
assetScale: number;
|
|
27635
27583
|
assetWidth?: number | undefined;
|
|
27636
27584
|
assetHeight?: number | undefined;
|
|
@@ -27657,6 +27605,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
27657
27605
|
isValid: boolean;
|
|
27658
27606
|
assetId: string;
|
|
27659
27607
|
assetUrl: string;
|
|
27608
|
+
assetFormat: "Png" | "Svg";
|
|
27660
27609
|
assetScale: number;
|
|
27661
27610
|
assetWidth?: number | undefined;
|
|
27662
27611
|
assetHeight?: number | undefined;
|
|
@@ -27683,6 +27632,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
27683
27632
|
isValid: boolean;
|
|
27684
27633
|
assetId: string;
|
|
27685
27634
|
assetUrl: string;
|
|
27635
|
+
assetFormat: "Png" | "Svg";
|
|
27686
27636
|
assetScale: number;
|
|
27687
27637
|
assetWidth?: number | undefined;
|
|
27688
27638
|
assetHeight?: number | undefined;
|
|
@@ -28503,6 +28453,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28503
28453
|
organizationId: z.ZodString;
|
|
28504
28454
|
projectId: z.ZodString;
|
|
28505
28455
|
repositoryId: z.ZodString;
|
|
28456
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28457
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28506
28458
|
branch: z.ZodString;
|
|
28507
28459
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28508
28460
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -28516,6 +28468,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28516
28468
|
url?: string | undefined;
|
|
28517
28469
|
credentialId?: string | undefined;
|
|
28518
28470
|
relativePath?: string | undefined;
|
|
28471
|
+
commitAuthorName?: string | undefined;
|
|
28472
|
+
commitAuthorEmail?: string | undefined;
|
|
28519
28473
|
connectionId?: string | undefined;
|
|
28520
28474
|
userId?: number | undefined;
|
|
28521
28475
|
}, {
|
|
@@ -28526,6 +28480,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28526
28480
|
url?: string | null | undefined;
|
|
28527
28481
|
credentialId?: string | undefined;
|
|
28528
28482
|
relativePath?: string | null | undefined;
|
|
28483
|
+
commitAuthorName?: string | null | undefined;
|
|
28484
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28529
28485
|
connectionId?: string | null | undefined;
|
|
28530
28486
|
userId?: number | null | undefined;
|
|
28531
28487
|
}>>;
|
|
@@ -28534,6 +28490,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28534
28490
|
workspaceSlug: z.ZodString;
|
|
28535
28491
|
projectKey: z.ZodString;
|
|
28536
28492
|
repoSlug: z.ZodString;
|
|
28493
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28494
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28537
28495
|
branch: z.ZodString;
|
|
28538
28496
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28539
28497
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -28545,6 +28503,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28545
28503
|
repoSlug: string;
|
|
28546
28504
|
credentialId?: string | undefined;
|
|
28547
28505
|
relativePath?: string | undefined;
|
|
28506
|
+
commitAuthorName?: string | undefined;
|
|
28507
|
+
commitAuthorEmail?: string | undefined;
|
|
28548
28508
|
connectionId?: string | undefined;
|
|
28549
28509
|
userId?: number | undefined;
|
|
28550
28510
|
}, {
|
|
@@ -28554,6 +28514,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28554
28514
|
repoSlug: string;
|
|
28555
28515
|
credentialId?: string | undefined;
|
|
28556
28516
|
relativePath?: string | null | undefined;
|
|
28517
|
+
commitAuthorName?: string | null | undefined;
|
|
28518
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28557
28519
|
connectionId?: string | null | undefined;
|
|
28558
28520
|
userId?: number | null | undefined;
|
|
28559
28521
|
}>>;
|
|
@@ -28562,6 +28524,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28562
28524
|
url: z.ZodString;
|
|
28563
28525
|
branch: z.ZodString;
|
|
28564
28526
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28527
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28528
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28565
28529
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28566
28530
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
28567
28531
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -28569,6 +28533,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28569
28533
|
branch: string;
|
|
28570
28534
|
credentialId?: string | undefined;
|
|
28571
28535
|
relativePath?: string | undefined;
|
|
28536
|
+
commitAuthorName?: string | undefined;
|
|
28537
|
+
commitAuthorEmail?: string | undefined;
|
|
28572
28538
|
connectionId?: string | undefined;
|
|
28573
28539
|
userId?: number | undefined;
|
|
28574
28540
|
}, {
|
|
@@ -28576,12 +28542,16 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28576
28542
|
branch: string;
|
|
28577
28543
|
credentialId?: string | undefined;
|
|
28578
28544
|
relativePath?: string | null | undefined;
|
|
28545
|
+
commitAuthorName?: string | null | undefined;
|
|
28546
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28579
28547
|
connectionId?: string | null | undefined;
|
|
28580
28548
|
userId?: number | null | undefined;
|
|
28581
28549
|
}>>;
|
|
28582
28550
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
28583
28551
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
28584
28552
|
projectId: z.ZodString;
|
|
28553
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28554
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28585
28555
|
branch: z.ZodString;
|
|
28586
28556
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28587
28557
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -28593,6 +28563,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28593
28563
|
url?: string | undefined;
|
|
28594
28564
|
credentialId?: string | undefined;
|
|
28595
28565
|
relativePath?: string | undefined;
|
|
28566
|
+
commitAuthorName?: string | undefined;
|
|
28567
|
+
commitAuthorEmail?: string | undefined;
|
|
28596
28568
|
connectionId?: string | undefined;
|
|
28597
28569
|
userId?: number | undefined;
|
|
28598
28570
|
}, {
|
|
@@ -28601,6 +28573,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28601
28573
|
url?: string | null | undefined;
|
|
28602
28574
|
credentialId?: string | undefined;
|
|
28603
28575
|
relativePath?: string | null | undefined;
|
|
28576
|
+
commitAuthorName?: string | null | undefined;
|
|
28577
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28604
28578
|
connectionId?: string | null | undefined;
|
|
28605
28579
|
userId?: number | null | undefined;
|
|
28606
28580
|
}>>;
|
|
@@ -28643,6 +28617,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28643
28617
|
url?: string | undefined;
|
|
28644
28618
|
credentialId?: string | undefined;
|
|
28645
28619
|
relativePath?: string | undefined;
|
|
28620
|
+
commitAuthorName?: string | undefined;
|
|
28621
|
+
commitAuthorEmail?: string | undefined;
|
|
28646
28622
|
connectionId?: string | undefined;
|
|
28647
28623
|
userId?: number | undefined;
|
|
28648
28624
|
} | undefined;
|
|
@@ -28653,6 +28629,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28653
28629
|
repoSlug: string;
|
|
28654
28630
|
credentialId?: string | undefined;
|
|
28655
28631
|
relativePath?: string | undefined;
|
|
28632
|
+
commitAuthorName?: string | undefined;
|
|
28633
|
+
commitAuthorEmail?: string | undefined;
|
|
28656
28634
|
connectionId?: string | undefined;
|
|
28657
28635
|
userId?: number | undefined;
|
|
28658
28636
|
} | undefined;
|
|
@@ -28661,6 +28639,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28661
28639
|
branch: string;
|
|
28662
28640
|
credentialId?: string | undefined;
|
|
28663
28641
|
relativePath?: string | undefined;
|
|
28642
|
+
commitAuthorName?: string | undefined;
|
|
28643
|
+
commitAuthorEmail?: string | undefined;
|
|
28664
28644
|
connectionId?: string | undefined;
|
|
28665
28645
|
userId?: number | undefined;
|
|
28666
28646
|
} | undefined;
|
|
@@ -28670,6 +28650,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28670
28650
|
url?: string | undefined;
|
|
28671
28651
|
credentialId?: string | undefined;
|
|
28672
28652
|
relativePath?: string | undefined;
|
|
28653
|
+
commitAuthorName?: string | undefined;
|
|
28654
|
+
commitAuthorEmail?: string | undefined;
|
|
28673
28655
|
connectionId?: string | undefined;
|
|
28674
28656
|
userId?: number | undefined;
|
|
28675
28657
|
} | undefined;
|
|
@@ -28691,6 +28673,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28691
28673
|
url?: string | null | undefined;
|
|
28692
28674
|
credentialId?: string | undefined;
|
|
28693
28675
|
relativePath?: string | null | undefined;
|
|
28676
|
+
commitAuthorName?: string | null | undefined;
|
|
28677
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28694
28678
|
connectionId?: string | null | undefined;
|
|
28695
28679
|
userId?: number | null | undefined;
|
|
28696
28680
|
} | undefined;
|
|
@@ -28701,6 +28685,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28701
28685
|
repoSlug: string;
|
|
28702
28686
|
credentialId?: string | undefined;
|
|
28703
28687
|
relativePath?: string | null | undefined;
|
|
28688
|
+
commitAuthorName?: string | null | undefined;
|
|
28689
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28704
28690
|
connectionId?: string | null | undefined;
|
|
28705
28691
|
userId?: number | null | undefined;
|
|
28706
28692
|
} | undefined;
|
|
@@ -28709,6 +28695,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28709
28695
|
branch: string;
|
|
28710
28696
|
credentialId?: string | undefined;
|
|
28711
28697
|
relativePath?: string | null | undefined;
|
|
28698
|
+
commitAuthorName?: string | null | undefined;
|
|
28699
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28712
28700
|
connectionId?: string | null | undefined;
|
|
28713
28701
|
userId?: number | null | undefined;
|
|
28714
28702
|
} | undefined;
|
|
@@ -28718,6 +28706,8 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
28718
28706
|
url?: string | null | undefined;
|
|
28719
28707
|
credentialId?: string | undefined;
|
|
28720
28708
|
relativePath?: string | null | undefined;
|
|
28709
|
+
commitAuthorName?: string | null | undefined;
|
|
28710
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28721
28711
|
connectionId?: string | null | undefined;
|
|
28722
28712
|
userId?: number | null | undefined;
|
|
28723
28713
|
} | undefined;
|
|
@@ -28980,6 +28970,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
28980
28970
|
organizationId: z.ZodString;
|
|
28981
28971
|
projectId: z.ZodString;
|
|
28982
28972
|
repositoryId: z.ZodString;
|
|
28973
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28974
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28983
28975
|
branch: z.ZodString;
|
|
28984
28976
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
28985
28977
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -28993,6 +28985,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
28993
28985
|
url?: string | undefined;
|
|
28994
28986
|
credentialId?: string | undefined;
|
|
28995
28987
|
relativePath?: string | undefined;
|
|
28988
|
+
commitAuthorName?: string | undefined;
|
|
28989
|
+
commitAuthorEmail?: string | undefined;
|
|
28996
28990
|
connectionId?: string | undefined;
|
|
28997
28991
|
userId?: number | undefined;
|
|
28998
28992
|
}, {
|
|
@@ -29003,6 +28997,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29003
28997
|
url?: string | null | undefined;
|
|
29004
28998
|
credentialId?: string | undefined;
|
|
29005
28999
|
relativePath?: string | null | undefined;
|
|
29000
|
+
commitAuthorName?: string | null | undefined;
|
|
29001
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29006
29002
|
connectionId?: string | null | undefined;
|
|
29007
29003
|
userId?: number | null | undefined;
|
|
29008
29004
|
}>>;
|
|
@@ -29011,6 +29007,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29011
29007
|
workspaceSlug: z.ZodString;
|
|
29012
29008
|
projectKey: z.ZodString;
|
|
29013
29009
|
repoSlug: z.ZodString;
|
|
29010
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29011
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29014
29012
|
branch: z.ZodString;
|
|
29015
29013
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29016
29014
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -29022,6 +29020,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29022
29020
|
repoSlug: string;
|
|
29023
29021
|
credentialId?: string | undefined;
|
|
29024
29022
|
relativePath?: string | undefined;
|
|
29023
|
+
commitAuthorName?: string | undefined;
|
|
29024
|
+
commitAuthorEmail?: string | undefined;
|
|
29025
29025
|
connectionId?: string | undefined;
|
|
29026
29026
|
userId?: number | undefined;
|
|
29027
29027
|
}, {
|
|
@@ -29031,6 +29031,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29031
29031
|
repoSlug: string;
|
|
29032
29032
|
credentialId?: string | undefined;
|
|
29033
29033
|
relativePath?: string | null | undefined;
|
|
29034
|
+
commitAuthorName?: string | null | undefined;
|
|
29035
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29034
29036
|
connectionId?: string | null | undefined;
|
|
29035
29037
|
userId?: number | null | undefined;
|
|
29036
29038
|
}>>;
|
|
@@ -29039,6 +29041,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29039
29041
|
url: z.ZodString;
|
|
29040
29042
|
branch: z.ZodString;
|
|
29041
29043
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29044
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29045
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29042
29046
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29043
29047
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
29044
29048
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -29046,6 +29050,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29046
29050
|
branch: string;
|
|
29047
29051
|
credentialId?: string | undefined;
|
|
29048
29052
|
relativePath?: string | undefined;
|
|
29053
|
+
commitAuthorName?: string | undefined;
|
|
29054
|
+
commitAuthorEmail?: string | undefined;
|
|
29049
29055
|
connectionId?: string | undefined;
|
|
29050
29056
|
userId?: number | undefined;
|
|
29051
29057
|
}, {
|
|
@@ -29053,12 +29059,16 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29053
29059
|
branch: string;
|
|
29054
29060
|
credentialId?: string | undefined;
|
|
29055
29061
|
relativePath?: string | null | undefined;
|
|
29062
|
+
commitAuthorName?: string | null | undefined;
|
|
29063
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29056
29064
|
connectionId?: string | null | undefined;
|
|
29057
29065
|
userId?: number | null | undefined;
|
|
29058
29066
|
}>>;
|
|
29059
29067
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
29060
29068
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
29061
29069
|
projectId: z.ZodString;
|
|
29070
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29071
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29062
29072
|
branch: z.ZodString;
|
|
29063
29073
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29064
29074
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -29070,6 +29080,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29070
29080
|
url?: string | undefined;
|
|
29071
29081
|
credentialId?: string | undefined;
|
|
29072
29082
|
relativePath?: string | undefined;
|
|
29083
|
+
commitAuthorName?: string | undefined;
|
|
29084
|
+
commitAuthorEmail?: string | undefined;
|
|
29073
29085
|
connectionId?: string | undefined;
|
|
29074
29086
|
userId?: number | undefined;
|
|
29075
29087
|
}, {
|
|
@@ -29078,6 +29090,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29078
29090
|
url?: string | null | undefined;
|
|
29079
29091
|
credentialId?: string | undefined;
|
|
29080
29092
|
relativePath?: string | null | undefined;
|
|
29093
|
+
commitAuthorName?: string | null | undefined;
|
|
29094
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29081
29095
|
connectionId?: string | null | undefined;
|
|
29082
29096
|
userId?: number | null | undefined;
|
|
29083
29097
|
}>>;
|
|
@@ -29120,6 +29134,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29120
29134
|
url?: string | undefined;
|
|
29121
29135
|
credentialId?: string | undefined;
|
|
29122
29136
|
relativePath?: string | undefined;
|
|
29137
|
+
commitAuthorName?: string | undefined;
|
|
29138
|
+
commitAuthorEmail?: string | undefined;
|
|
29123
29139
|
connectionId?: string | undefined;
|
|
29124
29140
|
userId?: number | undefined;
|
|
29125
29141
|
} | undefined;
|
|
@@ -29130,6 +29146,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29130
29146
|
repoSlug: string;
|
|
29131
29147
|
credentialId?: string | undefined;
|
|
29132
29148
|
relativePath?: string | undefined;
|
|
29149
|
+
commitAuthorName?: string | undefined;
|
|
29150
|
+
commitAuthorEmail?: string | undefined;
|
|
29133
29151
|
connectionId?: string | undefined;
|
|
29134
29152
|
userId?: number | undefined;
|
|
29135
29153
|
} | undefined;
|
|
@@ -29138,6 +29156,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29138
29156
|
branch: string;
|
|
29139
29157
|
credentialId?: string | undefined;
|
|
29140
29158
|
relativePath?: string | undefined;
|
|
29159
|
+
commitAuthorName?: string | undefined;
|
|
29160
|
+
commitAuthorEmail?: string | undefined;
|
|
29141
29161
|
connectionId?: string | undefined;
|
|
29142
29162
|
userId?: number | undefined;
|
|
29143
29163
|
} | undefined;
|
|
@@ -29147,6 +29167,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29147
29167
|
url?: string | undefined;
|
|
29148
29168
|
credentialId?: string | undefined;
|
|
29149
29169
|
relativePath?: string | undefined;
|
|
29170
|
+
commitAuthorName?: string | undefined;
|
|
29171
|
+
commitAuthorEmail?: string | undefined;
|
|
29150
29172
|
connectionId?: string | undefined;
|
|
29151
29173
|
userId?: number | undefined;
|
|
29152
29174
|
} | undefined;
|
|
@@ -29168,6 +29190,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29168
29190
|
url?: string | null | undefined;
|
|
29169
29191
|
credentialId?: string | undefined;
|
|
29170
29192
|
relativePath?: string | null | undefined;
|
|
29193
|
+
commitAuthorName?: string | null | undefined;
|
|
29194
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29171
29195
|
connectionId?: string | null | undefined;
|
|
29172
29196
|
userId?: number | null | undefined;
|
|
29173
29197
|
} | undefined;
|
|
@@ -29178,6 +29202,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29178
29202
|
repoSlug: string;
|
|
29179
29203
|
credentialId?: string | undefined;
|
|
29180
29204
|
relativePath?: string | null | undefined;
|
|
29205
|
+
commitAuthorName?: string | null | undefined;
|
|
29206
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29181
29207
|
connectionId?: string | null | undefined;
|
|
29182
29208
|
userId?: number | null | undefined;
|
|
29183
29209
|
} | undefined;
|
|
@@ -29186,6 +29212,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29186
29212
|
branch: string;
|
|
29187
29213
|
credentialId?: string | undefined;
|
|
29188
29214
|
relativePath?: string | null | undefined;
|
|
29215
|
+
commitAuthorName?: string | null | undefined;
|
|
29216
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29189
29217
|
connectionId?: string | null | undefined;
|
|
29190
29218
|
userId?: number | null | undefined;
|
|
29191
29219
|
} | undefined;
|
|
@@ -29195,6 +29223,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29195
29223
|
url?: string | null | undefined;
|
|
29196
29224
|
credentialId?: string | undefined;
|
|
29197
29225
|
relativePath?: string | null | undefined;
|
|
29226
|
+
commitAuthorName?: string | null | undefined;
|
|
29227
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29198
29228
|
connectionId?: string | null | undefined;
|
|
29199
29229
|
userId?: number | null | undefined;
|
|
29200
29230
|
} | undefined;
|
|
@@ -29394,6 +29424,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29394
29424
|
url?: string | undefined;
|
|
29395
29425
|
credentialId?: string | undefined;
|
|
29396
29426
|
relativePath?: string | undefined;
|
|
29427
|
+
commitAuthorName?: string | undefined;
|
|
29428
|
+
commitAuthorEmail?: string | undefined;
|
|
29397
29429
|
connectionId?: string | undefined;
|
|
29398
29430
|
userId?: number | undefined;
|
|
29399
29431
|
} | undefined;
|
|
@@ -29404,6 +29436,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29404
29436
|
repoSlug: string;
|
|
29405
29437
|
credentialId?: string | undefined;
|
|
29406
29438
|
relativePath?: string | undefined;
|
|
29439
|
+
commitAuthorName?: string | undefined;
|
|
29440
|
+
commitAuthorEmail?: string | undefined;
|
|
29407
29441
|
connectionId?: string | undefined;
|
|
29408
29442
|
userId?: number | undefined;
|
|
29409
29443
|
} | undefined;
|
|
@@ -29412,6 +29446,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29412
29446
|
branch: string;
|
|
29413
29447
|
credentialId?: string | undefined;
|
|
29414
29448
|
relativePath?: string | undefined;
|
|
29449
|
+
commitAuthorName?: string | undefined;
|
|
29450
|
+
commitAuthorEmail?: string | undefined;
|
|
29415
29451
|
connectionId?: string | undefined;
|
|
29416
29452
|
userId?: number | undefined;
|
|
29417
29453
|
} | undefined;
|
|
@@ -29421,6 +29457,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29421
29457
|
url?: string | undefined;
|
|
29422
29458
|
credentialId?: string | undefined;
|
|
29423
29459
|
relativePath?: string | undefined;
|
|
29460
|
+
commitAuthorName?: string | undefined;
|
|
29461
|
+
commitAuthorEmail?: string | undefined;
|
|
29424
29462
|
connectionId?: string | undefined;
|
|
29425
29463
|
userId?: number | undefined;
|
|
29426
29464
|
} | undefined;
|
|
@@ -29506,6 +29544,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29506
29544
|
url?: string | null | undefined;
|
|
29507
29545
|
credentialId?: string | undefined;
|
|
29508
29546
|
relativePath?: string | null | undefined;
|
|
29547
|
+
commitAuthorName?: string | null | undefined;
|
|
29548
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29509
29549
|
connectionId?: string | null | undefined;
|
|
29510
29550
|
userId?: number | null | undefined;
|
|
29511
29551
|
} | undefined;
|
|
@@ -29516,6 +29556,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29516
29556
|
repoSlug: string;
|
|
29517
29557
|
credentialId?: string | undefined;
|
|
29518
29558
|
relativePath?: string | null | undefined;
|
|
29559
|
+
commitAuthorName?: string | null | undefined;
|
|
29560
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29519
29561
|
connectionId?: string | null | undefined;
|
|
29520
29562
|
userId?: number | null | undefined;
|
|
29521
29563
|
} | undefined;
|
|
@@ -29524,6 +29566,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29524
29566
|
branch: string;
|
|
29525
29567
|
credentialId?: string | undefined;
|
|
29526
29568
|
relativePath?: string | null | undefined;
|
|
29569
|
+
commitAuthorName?: string | null | undefined;
|
|
29570
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29527
29571
|
connectionId?: string | null | undefined;
|
|
29528
29572
|
userId?: number | null | undefined;
|
|
29529
29573
|
} | undefined;
|
|
@@ -29533,6 +29577,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
29533
29577
|
url?: string | null | undefined;
|
|
29534
29578
|
credentialId?: string | undefined;
|
|
29535
29579
|
relativePath?: string | null | undefined;
|
|
29580
|
+
commitAuthorName?: string | null | undefined;
|
|
29581
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29536
29582
|
connectionId?: string | null | undefined;
|
|
29537
29583
|
userId?: number | null | undefined;
|
|
29538
29584
|
} | undefined;
|
|
@@ -29686,6 +29732,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29686
29732
|
organizationId: z.ZodString;
|
|
29687
29733
|
projectId: z.ZodString;
|
|
29688
29734
|
repositoryId: z.ZodString;
|
|
29735
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29736
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29689
29737
|
branch: z.ZodString;
|
|
29690
29738
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29691
29739
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -29699,6 +29747,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29699
29747
|
url?: string | undefined;
|
|
29700
29748
|
credentialId?: string | undefined;
|
|
29701
29749
|
relativePath?: string | undefined;
|
|
29750
|
+
commitAuthorName?: string | undefined;
|
|
29751
|
+
commitAuthorEmail?: string | undefined;
|
|
29702
29752
|
connectionId?: string | undefined;
|
|
29703
29753
|
userId?: number | undefined;
|
|
29704
29754
|
}, {
|
|
@@ -29709,6 +29759,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29709
29759
|
url?: string | null | undefined;
|
|
29710
29760
|
credentialId?: string | undefined;
|
|
29711
29761
|
relativePath?: string | null | undefined;
|
|
29762
|
+
commitAuthorName?: string | null | undefined;
|
|
29763
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29712
29764
|
connectionId?: string | null | undefined;
|
|
29713
29765
|
userId?: number | null | undefined;
|
|
29714
29766
|
}>>;
|
|
@@ -29717,6 +29769,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29717
29769
|
workspaceSlug: z.ZodString;
|
|
29718
29770
|
projectKey: z.ZodString;
|
|
29719
29771
|
repoSlug: z.ZodString;
|
|
29772
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29773
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29720
29774
|
branch: z.ZodString;
|
|
29721
29775
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29722
29776
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -29728,6 +29782,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29728
29782
|
repoSlug: string;
|
|
29729
29783
|
credentialId?: string | undefined;
|
|
29730
29784
|
relativePath?: string | undefined;
|
|
29785
|
+
commitAuthorName?: string | undefined;
|
|
29786
|
+
commitAuthorEmail?: string | undefined;
|
|
29731
29787
|
connectionId?: string | undefined;
|
|
29732
29788
|
userId?: number | undefined;
|
|
29733
29789
|
}, {
|
|
@@ -29737,6 +29793,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29737
29793
|
repoSlug: string;
|
|
29738
29794
|
credentialId?: string | undefined;
|
|
29739
29795
|
relativePath?: string | null | undefined;
|
|
29796
|
+
commitAuthorName?: string | null | undefined;
|
|
29797
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29740
29798
|
connectionId?: string | null | undefined;
|
|
29741
29799
|
userId?: number | null | undefined;
|
|
29742
29800
|
}>>;
|
|
@@ -29745,6 +29803,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29745
29803
|
url: z.ZodString;
|
|
29746
29804
|
branch: z.ZodString;
|
|
29747
29805
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29806
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29807
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29748
29808
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29749
29809
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
29750
29810
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -29752,6 +29812,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29752
29812
|
branch: string;
|
|
29753
29813
|
credentialId?: string | undefined;
|
|
29754
29814
|
relativePath?: string | undefined;
|
|
29815
|
+
commitAuthorName?: string | undefined;
|
|
29816
|
+
commitAuthorEmail?: string | undefined;
|
|
29755
29817
|
connectionId?: string | undefined;
|
|
29756
29818
|
userId?: number | undefined;
|
|
29757
29819
|
}, {
|
|
@@ -29759,12 +29821,16 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29759
29821
|
branch: string;
|
|
29760
29822
|
credentialId?: string | undefined;
|
|
29761
29823
|
relativePath?: string | null | undefined;
|
|
29824
|
+
commitAuthorName?: string | null | undefined;
|
|
29825
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29762
29826
|
connectionId?: string | null | undefined;
|
|
29763
29827
|
userId?: number | null | undefined;
|
|
29764
29828
|
}>>;
|
|
29765
29829
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
29766
29830
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
29767
29831
|
projectId: z.ZodString;
|
|
29832
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29833
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29768
29834
|
branch: z.ZodString;
|
|
29769
29835
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
29770
29836
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -29776,6 +29842,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29776
29842
|
url?: string | undefined;
|
|
29777
29843
|
credentialId?: string | undefined;
|
|
29778
29844
|
relativePath?: string | undefined;
|
|
29845
|
+
commitAuthorName?: string | undefined;
|
|
29846
|
+
commitAuthorEmail?: string | undefined;
|
|
29779
29847
|
connectionId?: string | undefined;
|
|
29780
29848
|
userId?: number | undefined;
|
|
29781
29849
|
}, {
|
|
@@ -29784,6 +29852,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29784
29852
|
url?: string | null | undefined;
|
|
29785
29853
|
credentialId?: string | undefined;
|
|
29786
29854
|
relativePath?: string | null | undefined;
|
|
29855
|
+
commitAuthorName?: string | null | undefined;
|
|
29856
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29787
29857
|
connectionId?: string | null | undefined;
|
|
29788
29858
|
userId?: number | null | undefined;
|
|
29789
29859
|
}>>;
|
|
@@ -29826,6 +29896,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29826
29896
|
url?: string | undefined;
|
|
29827
29897
|
credentialId?: string | undefined;
|
|
29828
29898
|
relativePath?: string | undefined;
|
|
29899
|
+
commitAuthorName?: string | undefined;
|
|
29900
|
+
commitAuthorEmail?: string | undefined;
|
|
29829
29901
|
connectionId?: string | undefined;
|
|
29830
29902
|
userId?: number | undefined;
|
|
29831
29903
|
} | undefined;
|
|
@@ -29836,6 +29908,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29836
29908
|
repoSlug: string;
|
|
29837
29909
|
credentialId?: string | undefined;
|
|
29838
29910
|
relativePath?: string | undefined;
|
|
29911
|
+
commitAuthorName?: string | undefined;
|
|
29912
|
+
commitAuthorEmail?: string | undefined;
|
|
29839
29913
|
connectionId?: string | undefined;
|
|
29840
29914
|
userId?: number | undefined;
|
|
29841
29915
|
} | undefined;
|
|
@@ -29844,6 +29918,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29844
29918
|
branch: string;
|
|
29845
29919
|
credentialId?: string | undefined;
|
|
29846
29920
|
relativePath?: string | undefined;
|
|
29921
|
+
commitAuthorName?: string | undefined;
|
|
29922
|
+
commitAuthorEmail?: string | undefined;
|
|
29847
29923
|
connectionId?: string | undefined;
|
|
29848
29924
|
userId?: number | undefined;
|
|
29849
29925
|
} | undefined;
|
|
@@ -29853,6 +29929,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29853
29929
|
url?: string | undefined;
|
|
29854
29930
|
credentialId?: string | undefined;
|
|
29855
29931
|
relativePath?: string | undefined;
|
|
29932
|
+
commitAuthorName?: string | undefined;
|
|
29933
|
+
commitAuthorEmail?: string | undefined;
|
|
29856
29934
|
connectionId?: string | undefined;
|
|
29857
29935
|
userId?: number | undefined;
|
|
29858
29936
|
} | undefined;
|
|
@@ -29874,6 +29952,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29874
29952
|
url?: string | null | undefined;
|
|
29875
29953
|
credentialId?: string | undefined;
|
|
29876
29954
|
relativePath?: string | null | undefined;
|
|
29955
|
+
commitAuthorName?: string | null | undefined;
|
|
29956
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29877
29957
|
connectionId?: string | null | undefined;
|
|
29878
29958
|
userId?: number | null | undefined;
|
|
29879
29959
|
} | undefined;
|
|
@@ -29884,6 +29964,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29884
29964
|
repoSlug: string;
|
|
29885
29965
|
credentialId?: string | undefined;
|
|
29886
29966
|
relativePath?: string | null | undefined;
|
|
29967
|
+
commitAuthorName?: string | null | undefined;
|
|
29968
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29887
29969
|
connectionId?: string | null | undefined;
|
|
29888
29970
|
userId?: number | null | undefined;
|
|
29889
29971
|
} | undefined;
|
|
@@ -29892,6 +29974,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29892
29974
|
branch: string;
|
|
29893
29975
|
credentialId?: string | undefined;
|
|
29894
29976
|
relativePath?: string | null | undefined;
|
|
29977
|
+
commitAuthorName?: string | null | undefined;
|
|
29978
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29895
29979
|
connectionId?: string | null | undefined;
|
|
29896
29980
|
userId?: number | null | undefined;
|
|
29897
29981
|
} | undefined;
|
|
@@ -29901,6 +29985,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
29901
29985
|
url?: string | null | undefined;
|
|
29902
29986
|
credentialId?: string | undefined;
|
|
29903
29987
|
relativePath?: string | null | undefined;
|
|
29988
|
+
commitAuthorName?: string | null | undefined;
|
|
29989
|
+
commitAuthorEmail?: string | null | undefined;
|
|
29904
29990
|
connectionId?: string | null | undefined;
|
|
29905
29991
|
userId?: number | null | undefined;
|
|
29906
29992
|
} | undefined;
|
|
@@ -30100,6 +30186,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30100
30186
|
url?: string | undefined;
|
|
30101
30187
|
credentialId?: string | undefined;
|
|
30102
30188
|
relativePath?: string | undefined;
|
|
30189
|
+
commitAuthorName?: string | undefined;
|
|
30190
|
+
commitAuthorEmail?: string | undefined;
|
|
30103
30191
|
connectionId?: string | undefined;
|
|
30104
30192
|
userId?: number | undefined;
|
|
30105
30193
|
} | undefined;
|
|
@@ -30110,6 +30198,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30110
30198
|
repoSlug: string;
|
|
30111
30199
|
credentialId?: string | undefined;
|
|
30112
30200
|
relativePath?: string | undefined;
|
|
30201
|
+
commitAuthorName?: string | undefined;
|
|
30202
|
+
commitAuthorEmail?: string | undefined;
|
|
30113
30203
|
connectionId?: string | undefined;
|
|
30114
30204
|
userId?: number | undefined;
|
|
30115
30205
|
} | undefined;
|
|
@@ -30118,6 +30208,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30118
30208
|
branch: string;
|
|
30119
30209
|
credentialId?: string | undefined;
|
|
30120
30210
|
relativePath?: string | undefined;
|
|
30211
|
+
commitAuthorName?: string | undefined;
|
|
30212
|
+
commitAuthorEmail?: string | undefined;
|
|
30121
30213
|
connectionId?: string | undefined;
|
|
30122
30214
|
userId?: number | undefined;
|
|
30123
30215
|
} | undefined;
|
|
@@ -30127,6 +30219,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30127
30219
|
url?: string | undefined;
|
|
30128
30220
|
credentialId?: string | undefined;
|
|
30129
30221
|
relativePath?: string | undefined;
|
|
30222
|
+
commitAuthorName?: string | undefined;
|
|
30223
|
+
commitAuthorEmail?: string | undefined;
|
|
30130
30224
|
connectionId?: string | undefined;
|
|
30131
30225
|
userId?: number | undefined;
|
|
30132
30226
|
} | undefined;
|
|
@@ -30212,6 +30306,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30212
30306
|
url?: string | null | undefined;
|
|
30213
30307
|
credentialId?: string | undefined;
|
|
30214
30308
|
relativePath?: string | null | undefined;
|
|
30309
|
+
commitAuthorName?: string | null | undefined;
|
|
30310
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30215
30311
|
connectionId?: string | null | undefined;
|
|
30216
30312
|
userId?: number | null | undefined;
|
|
30217
30313
|
} | undefined;
|
|
@@ -30222,6 +30318,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30222
30318
|
repoSlug: string;
|
|
30223
30319
|
credentialId?: string | undefined;
|
|
30224
30320
|
relativePath?: string | null | undefined;
|
|
30321
|
+
commitAuthorName?: string | null | undefined;
|
|
30322
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30225
30323
|
connectionId?: string | null | undefined;
|
|
30226
30324
|
userId?: number | null | undefined;
|
|
30227
30325
|
} | undefined;
|
|
@@ -30230,6 +30328,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30230
30328
|
branch: string;
|
|
30231
30329
|
credentialId?: string | undefined;
|
|
30232
30330
|
relativePath?: string | null | undefined;
|
|
30331
|
+
commitAuthorName?: string | null | undefined;
|
|
30332
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30233
30333
|
connectionId?: string | null | undefined;
|
|
30234
30334
|
userId?: number | null | undefined;
|
|
30235
30335
|
} | undefined;
|
|
@@ -30239,6 +30339,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30239
30339
|
url?: string | null | undefined;
|
|
30240
30340
|
credentialId?: string | undefined;
|
|
30241
30341
|
relativePath?: string | null | undefined;
|
|
30342
|
+
commitAuthorName?: string | null | undefined;
|
|
30343
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30242
30344
|
connectionId?: string | null | undefined;
|
|
30243
30345
|
userId?: number | null | undefined;
|
|
30244
30346
|
} | undefined;
|
|
@@ -30326,6 +30428,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30326
30428
|
url?: string | undefined;
|
|
30327
30429
|
credentialId?: string | undefined;
|
|
30328
30430
|
relativePath?: string | undefined;
|
|
30431
|
+
commitAuthorName?: string | undefined;
|
|
30432
|
+
commitAuthorEmail?: string | undefined;
|
|
30329
30433
|
connectionId?: string | undefined;
|
|
30330
30434
|
userId?: number | undefined;
|
|
30331
30435
|
} | undefined;
|
|
@@ -30336,6 +30440,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30336
30440
|
repoSlug: string;
|
|
30337
30441
|
credentialId?: string | undefined;
|
|
30338
30442
|
relativePath?: string | undefined;
|
|
30443
|
+
commitAuthorName?: string | undefined;
|
|
30444
|
+
commitAuthorEmail?: string | undefined;
|
|
30339
30445
|
connectionId?: string | undefined;
|
|
30340
30446
|
userId?: number | undefined;
|
|
30341
30447
|
} | undefined;
|
|
@@ -30344,6 +30450,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30344
30450
|
branch: string;
|
|
30345
30451
|
credentialId?: string | undefined;
|
|
30346
30452
|
relativePath?: string | undefined;
|
|
30453
|
+
commitAuthorName?: string | undefined;
|
|
30454
|
+
commitAuthorEmail?: string | undefined;
|
|
30347
30455
|
connectionId?: string | undefined;
|
|
30348
30456
|
userId?: number | undefined;
|
|
30349
30457
|
} | undefined;
|
|
@@ -30353,6 +30461,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30353
30461
|
url?: string | undefined;
|
|
30354
30462
|
credentialId?: string | undefined;
|
|
30355
30463
|
relativePath?: string | undefined;
|
|
30464
|
+
commitAuthorName?: string | undefined;
|
|
30465
|
+
commitAuthorEmail?: string | undefined;
|
|
30356
30466
|
connectionId?: string | undefined;
|
|
30357
30467
|
userId?: number | undefined;
|
|
30358
30468
|
} | undefined;
|
|
@@ -30440,6 +30550,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30440
30550
|
url?: string | null | undefined;
|
|
30441
30551
|
credentialId?: string | undefined;
|
|
30442
30552
|
relativePath?: string | null | undefined;
|
|
30553
|
+
commitAuthorName?: string | null | undefined;
|
|
30554
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30443
30555
|
connectionId?: string | null | undefined;
|
|
30444
30556
|
userId?: number | null | undefined;
|
|
30445
30557
|
} | undefined;
|
|
@@ -30450,6 +30562,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30450
30562
|
repoSlug: string;
|
|
30451
30563
|
credentialId?: string | undefined;
|
|
30452
30564
|
relativePath?: string | null | undefined;
|
|
30565
|
+
commitAuthorName?: string | null | undefined;
|
|
30566
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30453
30567
|
connectionId?: string | null | undefined;
|
|
30454
30568
|
userId?: number | null | undefined;
|
|
30455
30569
|
} | undefined;
|
|
@@ -30458,6 +30572,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30458
30572
|
branch: string;
|
|
30459
30573
|
credentialId?: string | undefined;
|
|
30460
30574
|
relativePath?: string | null | undefined;
|
|
30575
|
+
commitAuthorName?: string | null | undefined;
|
|
30576
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30461
30577
|
connectionId?: string | null | undefined;
|
|
30462
30578
|
userId?: number | null | undefined;
|
|
30463
30579
|
} | undefined;
|
|
@@ -30467,6 +30583,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
30467
30583
|
url?: string | null | undefined;
|
|
30468
30584
|
credentialId?: string | undefined;
|
|
30469
30585
|
relativePath?: string | null | undefined;
|
|
30586
|
+
commitAuthorName?: string | null | undefined;
|
|
30587
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30470
30588
|
connectionId?: string | null | undefined;
|
|
30471
30589
|
userId?: number | null | undefined;
|
|
30472
30590
|
} | undefined;
|
|
@@ -30622,6 +30740,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30622
30740
|
organizationId: z.ZodString;
|
|
30623
30741
|
projectId: z.ZodString;
|
|
30624
30742
|
repositoryId: z.ZodString;
|
|
30743
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30744
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30625
30745
|
branch: z.ZodString;
|
|
30626
30746
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30627
30747
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -30635,6 +30755,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30635
30755
|
url?: string | undefined;
|
|
30636
30756
|
credentialId?: string | undefined;
|
|
30637
30757
|
relativePath?: string | undefined;
|
|
30758
|
+
commitAuthorName?: string | undefined;
|
|
30759
|
+
commitAuthorEmail?: string | undefined;
|
|
30638
30760
|
connectionId?: string | undefined;
|
|
30639
30761
|
userId?: number | undefined;
|
|
30640
30762
|
}, {
|
|
@@ -30645,6 +30767,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30645
30767
|
url?: string | null | undefined;
|
|
30646
30768
|
credentialId?: string | undefined;
|
|
30647
30769
|
relativePath?: string | null | undefined;
|
|
30770
|
+
commitAuthorName?: string | null | undefined;
|
|
30771
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30648
30772
|
connectionId?: string | null | undefined;
|
|
30649
30773
|
userId?: number | null | undefined;
|
|
30650
30774
|
}>>;
|
|
@@ -30653,6 +30777,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30653
30777
|
workspaceSlug: z.ZodString;
|
|
30654
30778
|
projectKey: z.ZodString;
|
|
30655
30779
|
repoSlug: z.ZodString;
|
|
30780
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30781
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30656
30782
|
branch: z.ZodString;
|
|
30657
30783
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30658
30784
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -30664,6 +30790,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30664
30790
|
repoSlug: string;
|
|
30665
30791
|
credentialId?: string | undefined;
|
|
30666
30792
|
relativePath?: string | undefined;
|
|
30793
|
+
commitAuthorName?: string | undefined;
|
|
30794
|
+
commitAuthorEmail?: string | undefined;
|
|
30667
30795
|
connectionId?: string | undefined;
|
|
30668
30796
|
userId?: number | undefined;
|
|
30669
30797
|
}, {
|
|
@@ -30673,6 +30801,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30673
30801
|
repoSlug: string;
|
|
30674
30802
|
credentialId?: string | undefined;
|
|
30675
30803
|
relativePath?: string | null | undefined;
|
|
30804
|
+
commitAuthorName?: string | null | undefined;
|
|
30805
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30676
30806
|
connectionId?: string | null | undefined;
|
|
30677
30807
|
userId?: number | null | undefined;
|
|
30678
30808
|
}>>;
|
|
@@ -30681,6 +30811,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30681
30811
|
url: z.ZodString;
|
|
30682
30812
|
branch: z.ZodString;
|
|
30683
30813
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30814
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30815
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30684
30816
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30685
30817
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
30686
30818
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30688,6 +30820,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30688
30820
|
branch: string;
|
|
30689
30821
|
credentialId?: string | undefined;
|
|
30690
30822
|
relativePath?: string | undefined;
|
|
30823
|
+
commitAuthorName?: string | undefined;
|
|
30824
|
+
commitAuthorEmail?: string | undefined;
|
|
30691
30825
|
connectionId?: string | undefined;
|
|
30692
30826
|
userId?: number | undefined;
|
|
30693
30827
|
}, {
|
|
@@ -30695,12 +30829,16 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30695
30829
|
branch: string;
|
|
30696
30830
|
credentialId?: string | undefined;
|
|
30697
30831
|
relativePath?: string | null | undefined;
|
|
30832
|
+
commitAuthorName?: string | null | undefined;
|
|
30833
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30698
30834
|
connectionId?: string | null | undefined;
|
|
30699
30835
|
userId?: number | null | undefined;
|
|
30700
30836
|
}>>;
|
|
30701
30837
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
30702
30838
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
30703
30839
|
projectId: z.ZodString;
|
|
30840
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30841
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30704
30842
|
branch: z.ZodString;
|
|
30705
30843
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30706
30844
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -30712,6 +30850,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30712
30850
|
url?: string | undefined;
|
|
30713
30851
|
credentialId?: string | undefined;
|
|
30714
30852
|
relativePath?: string | undefined;
|
|
30853
|
+
commitAuthorName?: string | undefined;
|
|
30854
|
+
commitAuthorEmail?: string | undefined;
|
|
30715
30855
|
connectionId?: string | undefined;
|
|
30716
30856
|
userId?: number | undefined;
|
|
30717
30857
|
}, {
|
|
@@ -30720,6 +30860,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30720
30860
|
url?: string | null | undefined;
|
|
30721
30861
|
credentialId?: string | undefined;
|
|
30722
30862
|
relativePath?: string | null | undefined;
|
|
30863
|
+
commitAuthorName?: string | null | undefined;
|
|
30864
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30723
30865
|
connectionId?: string | null | undefined;
|
|
30724
30866
|
userId?: number | null | undefined;
|
|
30725
30867
|
}>>;
|
|
@@ -30762,6 +30904,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30762
30904
|
url?: string | undefined;
|
|
30763
30905
|
credentialId?: string | undefined;
|
|
30764
30906
|
relativePath?: string | undefined;
|
|
30907
|
+
commitAuthorName?: string | undefined;
|
|
30908
|
+
commitAuthorEmail?: string | undefined;
|
|
30765
30909
|
connectionId?: string | undefined;
|
|
30766
30910
|
userId?: number | undefined;
|
|
30767
30911
|
} | undefined;
|
|
@@ -30772,6 +30916,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30772
30916
|
repoSlug: string;
|
|
30773
30917
|
credentialId?: string | undefined;
|
|
30774
30918
|
relativePath?: string | undefined;
|
|
30919
|
+
commitAuthorName?: string | undefined;
|
|
30920
|
+
commitAuthorEmail?: string | undefined;
|
|
30775
30921
|
connectionId?: string | undefined;
|
|
30776
30922
|
userId?: number | undefined;
|
|
30777
30923
|
} | undefined;
|
|
@@ -30780,6 +30926,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30780
30926
|
branch: string;
|
|
30781
30927
|
credentialId?: string | undefined;
|
|
30782
30928
|
relativePath?: string | undefined;
|
|
30929
|
+
commitAuthorName?: string | undefined;
|
|
30930
|
+
commitAuthorEmail?: string | undefined;
|
|
30783
30931
|
connectionId?: string | undefined;
|
|
30784
30932
|
userId?: number | undefined;
|
|
30785
30933
|
} | undefined;
|
|
@@ -30789,6 +30937,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30789
30937
|
url?: string | undefined;
|
|
30790
30938
|
credentialId?: string | undefined;
|
|
30791
30939
|
relativePath?: string | undefined;
|
|
30940
|
+
commitAuthorName?: string | undefined;
|
|
30941
|
+
commitAuthorEmail?: string | undefined;
|
|
30792
30942
|
connectionId?: string | undefined;
|
|
30793
30943
|
userId?: number | undefined;
|
|
30794
30944
|
} | undefined;
|
|
@@ -30810,6 +30960,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30810
30960
|
url?: string | null | undefined;
|
|
30811
30961
|
credentialId?: string | undefined;
|
|
30812
30962
|
relativePath?: string | null | undefined;
|
|
30963
|
+
commitAuthorName?: string | null | undefined;
|
|
30964
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30813
30965
|
connectionId?: string | null | undefined;
|
|
30814
30966
|
userId?: number | null | undefined;
|
|
30815
30967
|
} | undefined;
|
|
@@ -30820,6 +30972,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30820
30972
|
repoSlug: string;
|
|
30821
30973
|
credentialId?: string | undefined;
|
|
30822
30974
|
relativePath?: string | null | undefined;
|
|
30975
|
+
commitAuthorName?: string | null | undefined;
|
|
30976
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30823
30977
|
connectionId?: string | null | undefined;
|
|
30824
30978
|
userId?: number | null | undefined;
|
|
30825
30979
|
} | undefined;
|
|
@@ -30828,6 +30982,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30828
30982
|
branch: string;
|
|
30829
30983
|
credentialId?: string | undefined;
|
|
30830
30984
|
relativePath?: string | null | undefined;
|
|
30985
|
+
commitAuthorName?: string | null | undefined;
|
|
30986
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30831
30987
|
connectionId?: string | null | undefined;
|
|
30832
30988
|
userId?: number | null | undefined;
|
|
30833
30989
|
} | undefined;
|
|
@@ -30837,6 +30993,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
30837
30993
|
url?: string | null | undefined;
|
|
30838
30994
|
credentialId?: string | undefined;
|
|
30839
30995
|
relativePath?: string | null | undefined;
|
|
30996
|
+
commitAuthorName?: string | null | undefined;
|
|
30997
|
+
commitAuthorEmail?: string | null | undefined;
|
|
30840
30998
|
connectionId?: string | null | undefined;
|
|
30841
30999
|
userId?: number | null | undefined;
|
|
30842
31000
|
} | undefined;
|
|
@@ -31036,6 +31194,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31036
31194
|
url?: string | undefined;
|
|
31037
31195
|
credentialId?: string | undefined;
|
|
31038
31196
|
relativePath?: string | undefined;
|
|
31197
|
+
commitAuthorName?: string | undefined;
|
|
31198
|
+
commitAuthorEmail?: string | undefined;
|
|
31039
31199
|
connectionId?: string | undefined;
|
|
31040
31200
|
userId?: number | undefined;
|
|
31041
31201
|
} | undefined;
|
|
@@ -31046,6 +31206,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31046
31206
|
repoSlug: string;
|
|
31047
31207
|
credentialId?: string | undefined;
|
|
31048
31208
|
relativePath?: string | undefined;
|
|
31209
|
+
commitAuthorName?: string | undefined;
|
|
31210
|
+
commitAuthorEmail?: string | undefined;
|
|
31049
31211
|
connectionId?: string | undefined;
|
|
31050
31212
|
userId?: number | undefined;
|
|
31051
31213
|
} | undefined;
|
|
@@ -31054,6 +31216,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31054
31216
|
branch: string;
|
|
31055
31217
|
credentialId?: string | undefined;
|
|
31056
31218
|
relativePath?: string | undefined;
|
|
31219
|
+
commitAuthorName?: string | undefined;
|
|
31220
|
+
commitAuthorEmail?: string | undefined;
|
|
31057
31221
|
connectionId?: string | undefined;
|
|
31058
31222
|
userId?: number | undefined;
|
|
31059
31223
|
} | undefined;
|
|
@@ -31063,6 +31227,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31063
31227
|
url?: string | undefined;
|
|
31064
31228
|
credentialId?: string | undefined;
|
|
31065
31229
|
relativePath?: string | undefined;
|
|
31230
|
+
commitAuthorName?: string | undefined;
|
|
31231
|
+
commitAuthorEmail?: string | undefined;
|
|
31066
31232
|
connectionId?: string | undefined;
|
|
31067
31233
|
userId?: number | undefined;
|
|
31068
31234
|
} | undefined;
|
|
@@ -31148,6 +31314,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31148
31314
|
url?: string | null | undefined;
|
|
31149
31315
|
credentialId?: string | undefined;
|
|
31150
31316
|
relativePath?: string | null | undefined;
|
|
31317
|
+
commitAuthorName?: string | null | undefined;
|
|
31318
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31151
31319
|
connectionId?: string | null | undefined;
|
|
31152
31320
|
userId?: number | null | undefined;
|
|
31153
31321
|
} | undefined;
|
|
@@ -31158,6 +31326,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31158
31326
|
repoSlug: string;
|
|
31159
31327
|
credentialId?: string | undefined;
|
|
31160
31328
|
relativePath?: string | null | undefined;
|
|
31329
|
+
commitAuthorName?: string | null | undefined;
|
|
31330
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31161
31331
|
connectionId?: string | null | undefined;
|
|
31162
31332
|
userId?: number | null | undefined;
|
|
31163
31333
|
} | undefined;
|
|
@@ -31166,6 +31336,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31166
31336
|
branch: string;
|
|
31167
31337
|
credentialId?: string | undefined;
|
|
31168
31338
|
relativePath?: string | null | undefined;
|
|
31339
|
+
commitAuthorName?: string | null | undefined;
|
|
31340
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31169
31341
|
connectionId?: string | null | undefined;
|
|
31170
31342
|
userId?: number | null | undefined;
|
|
31171
31343
|
} | undefined;
|
|
@@ -31175,6 +31347,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31175
31347
|
url?: string | null | undefined;
|
|
31176
31348
|
credentialId?: string | undefined;
|
|
31177
31349
|
relativePath?: string | null | undefined;
|
|
31350
|
+
commitAuthorName?: string | null | undefined;
|
|
31351
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31178
31352
|
connectionId?: string | null | undefined;
|
|
31179
31353
|
userId?: number | null | undefined;
|
|
31180
31354
|
} | undefined;
|
|
@@ -31281,6 +31455,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31281
31455
|
url: z.ZodString;
|
|
31282
31456
|
branch: z.ZodString;
|
|
31283
31457
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31458
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31459
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31284
31460
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31285
31461
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
31286
31462
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -31288,6 +31464,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31288
31464
|
branch: string;
|
|
31289
31465
|
credentialId?: string | undefined;
|
|
31290
31466
|
relativePath?: string | undefined;
|
|
31467
|
+
commitAuthorName?: string | undefined;
|
|
31468
|
+
commitAuthorEmail?: string | undefined;
|
|
31291
31469
|
connectionId?: string | undefined;
|
|
31292
31470
|
userId?: number | undefined;
|
|
31293
31471
|
}, {
|
|
@@ -31295,6 +31473,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31295
31473
|
branch: string;
|
|
31296
31474
|
credentialId?: string | undefined;
|
|
31297
31475
|
relativePath?: string | null | undefined;
|
|
31476
|
+
commitAuthorName?: string | null | undefined;
|
|
31477
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31298
31478
|
connectionId?: string | null | undefined;
|
|
31299
31479
|
userId?: number | null | undefined;
|
|
31300
31480
|
}>>;
|
|
@@ -31303,6 +31483,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31303
31483
|
organizationId: z.ZodString;
|
|
31304
31484
|
projectId: z.ZodString;
|
|
31305
31485
|
repositoryId: z.ZodString;
|
|
31486
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31487
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31306
31488
|
branch: z.ZodString;
|
|
31307
31489
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31308
31490
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -31316,6 +31498,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31316
31498
|
url?: string | undefined;
|
|
31317
31499
|
credentialId?: string | undefined;
|
|
31318
31500
|
relativePath?: string | undefined;
|
|
31501
|
+
commitAuthorName?: string | undefined;
|
|
31502
|
+
commitAuthorEmail?: string | undefined;
|
|
31319
31503
|
connectionId?: string | undefined;
|
|
31320
31504
|
userId?: number | undefined;
|
|
31321
31505
|
}, {
|
|
@@ -31326,12 +31510,16 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31326
31510
|
url?: string | null | undefined;
|
|
31327
31511
|
credentialId?: string | undefined;
|
|
31328
31512
|
relativePath?: string | null | undefined;
|
|
31513
|
+
commitAuthorName?: string | null | undefined;
|
|
31514
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31329
31515
|
connectionId?: string | null | undefined;
|
|
31330
31516
|
userId?: number | null | undefined;
|
|
31331
31517
|
}>>;
|
|
31332
31518
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
31333
31519
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
31334
31520
|
projectId: z.ZodString;
|
|
31521
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31522
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31335
31523
|
branch: z.ZodString;
|
|
31336
31524
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31337
31525
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -31343,6 +31531,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31343
31531
|
url?: string | undefined;
|
|
31344
31532
|
credentialId?: string | undefined;
|
|
31345
31533
|
relativePath?: string | undefined;
|
|
31534
|
+
commitAuthorName?: string | undefined;
|
|
31535
|
+
commitAuthorEmail?: string | undefined;
|
|
31346
31536
|
connectionId?: string | undefined;
|
|
31347
31537
|
userId?: number | undefined;
|
|
31348
31538
|
}, {
|
|
@@ -31351,6 +31541,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31351
31541
|
url?: string | null | undefined;
|
|
31352
31542
|
credentialId?: string | undefined;
|
|
31353
31543
|
relativePath?: string | null | undefined;
|
|
31544
|
+
commitAuthorName?: string | null | undefined;
|
|
31545
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31354
31546
|
connectionId?: string | null | undefined;
|
|
31355
31547
|
userId?: number | null | undefined;
|
|
31356
31548
|
}>>;
|
|
@@ -31359,6 +31551,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31359
31551
|
workspaceSlug: z.ZodString;
|
|
31360
31552
|
projectKey: z.ZodString;
|
|
31361
31553
|
repoSlug: z.ZodString;
|
|
31554
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31555
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31362
31556
|
branch: z.ZodString;
|
|
31363
31557
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31364
31558
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -31370,6 +31564,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31370
31564
|
repoSlug: string;
|
|
31371
31565
|
credentialId?: string | undefined;
|
|
31372
31566
|
relativePath?: string | undefined;
|
|
31567
|
+
commitAuthorName?: string | undefined;
|
|
31568
|
+
commitAuthorEmail?: string | undefined;
|
|
31373
31569
|
connectionId?: string | undefined;
|
|
31374
31570
|
userId?: number | undefined;
|
|
31375
31571
|
}, {
|
|
@@ -31379,6 +31575,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31379
31575
|
repoSlug: string;
|
|
31380
31576
|
credentialId?: string | undefined;
|
|
31381
31577
|
relativePath?: string | null | undefined;
|
|
31578
|
+
commitAuthorName?: string | null | undefined;
|
|
31579
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31382
31580
|
connectionId?: string | null | undefined;
|
|
31383
31581
|
userId?: number | null | undefined;
|
|
31384
31582
|
}>>;
|
|
@@ -31414,6 +31612,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31414
31612
|
url?: string | undefined;
|
|
31415
31613
|
credentialId?: string | undefined;
|
|
31416
31614
|
relativePath?: string | undefined;
|
|
31615
|
+
commitAuthorName?: string | undefined;
|
|
31616
|
+
commitAuthorEmail?: string | undefined;
|
|
31417
31617
|
connectionId?: string | undefined;
|
|
31418
31618
|
userId?: number | undefined;
|
|
31419
31619
|
} | undefined;
|
|
@@ -31424,6 +31624,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31424
31624
|
repoSlug: string;
|
|
31425
31625
|
credentialId?: string | undefined;
|
|
31426
31626
|
relativePath?: string | undefined;
|
|
31627
|
+
commitAuthorName?: string | undefined;
|
|
31628
|
+
commitAuthorEmail?: string | undefined;
|
|
31427
31629
|
connectionId?: string | undefined;
|
|
31428
31630
|
userId?: number | undefined;
|
|
31429
31631
|
} | undefined;
|
|
@@ -31432,6 +31634,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31432
31634
|
branch: string;
|
|
31433
31635
|
credentialId?: string | undefined;
|
|
31434
31636
|
relativePath?: string | undefined;
|
|
31637
|
+
commitAuthorName?: string | undefined;
|
|
31638
|
+
commitAuthorEmail?: string | undefined;
|
|
31435
31639
|
connectionId?: string | undefined;
|
|
31436
31640
|
userId?: number | undefined;
|
|
31437
31641
|
} | undefined;
|
|
@@ -31441,6 +31645,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31441
31645
|
url?: string | undefined;
|
|
31442
31646
|
credentialId?: string | undefined;
|
|
31443
31647
|
relativePath?: string | undefined;
|
|
31648
|
+
commitAuthorName?: string | undefined;
|
|
31649
|
+
commitAuthorEmail?: string | undefined;
|
|
31444
31650
|
connectionId?: string | undefined;
|
|
31445
31651
|
userId?: number | undefined;
|
|
31446
31652
|
} | undefined;
|
|
@@ -31528,6 +31734,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31528
31734
|
branch: string;
|
|
31529
31735
|
credentialId?: string | undefined;
|
|
31530
31736
|
relativePath?: string | undefined;
|
|
31737
|
+
commitAuthorName?: string | undefined;
|
|
31738
|
+
commitAuthorEmail?: string | undefined;
|
|
31531
31739
|
connectionId?: string | undefined;
|
|
31532
31740
|
userId?: number | undefined;
|
|
31533
31741
|
} | undefined;
|
|
@@ -31539,6 +31747,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31539
31747
|
url?: string | undefined;
|
|
31540
31748
|
credentialId?: string | undefined;
|
|
31541
31749
|
relativePath?: string | undefined;
|
|
31750
|
+
commitAuthorName?: string | undefined;
|
|
31751
|
+
commitAuthorEmail?: string | undefined;
|
|
31542
31752
|
connectionId?: string | undefined;
|
|
31543
31753
|
userId?: number | undefined;
|
|
31544
31754
|
} | undefined;
|
|
@@ -31548,6 +31758,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31548
31758
|
url?: string | undefined;
|
|
31549
31759
|
credentialId?: string | undefined;
|
|
31550
31760
|
relativePath?: string | undefined;
|
|
31761
|
+
commitAuthorName?: string | undefined;
|
|
31762
|
+
commitAuthorEmail?: string | undefined;
|
|
31551
31763
|
connectionId?: string | undefined;
|
|
31552
31764
|
userId?: number | undefined;
|
|
31553
31765
|
} | undefined;
|
|
@@ -31558,6 +31770,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31558
31770
|
repoSlug: string;
|
|
31559
31771
|
credentialId?: string | undefined;
|
|
31560
31772
|
relativePath?: string | undefined;
|
|
31773
|
+
commitAuthorName?: string | undefined;
|
|
31774
|
+
commitAuthorEmail?: string | undefined;
|
|
31561
31775
|
connectionId?: string | undefined;
|
|
31562
31776
|
userId?: number | undefined;
|
|
31563
31777
|
} | undefined;
|
|
@@ -31584,6 +31798,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31584
31798
|
url?: string | null | undefined;
|
|
31585
31799
|
credentialId?: string | undefined;
|
|
31586
31800
|
relativePath?: string | null | undefined;
|
|
31801
|
+
commitAuthorName?: string | null | undefined;
|
|
31802
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31587
31803
|
connectionId?: string | null | undefined;
|
|
31588
31804
|
userId?: number | null | undefined;
|
|
31589
31805
|
} | undefined;
|
|
@@ -31594,6 +31810,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31594
31810
|
repoSlug: string;
|
|
31595
31811
|
credentialId?: string | undefined;
|
|
31596
31812
|
relativePath?: string | null | undefined;
|
|
31813
|
+
commitAuthorName?: string | null | undefined;
|
|
31814
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31597
31815
|
connectionId?: string | null | undefined;
|
|
31598
31816
|
userId?: number | null | undefined;
|
|
31599
31817
|
} | undefined;
|
|
@@ -31602,6 +31820,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31602
31820
|
branch: string;
|
|
31603
31821
|
credentialId?: string | undefined;
|
|
31604
31822
|
relativePath?: string | null | undefined;
|
|
31823
|
+
commitAuthorName?: string | null | undefined;
|
|
31824
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31605
31825
|
connectionId?: string | null | undefined;
|
|
31606
31826
|
userId?: number | null | undefined;
|
|
31607
31827
|
} | undefined;
|
|
@@ -31611,6 +31831,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31611
31831
|
url?: string | null | undefined;
|
|
31612
31832
|
credentialId?: string | undefined;
|
|
31613
31833
|
relativePath?: string | null | undefined;
|
|
31834
|
+
commitAuthorName?: string | null | undefined;
|
|
31835
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31614
31836
|
connectionId?: string | null | undefined;
|
|
31615
31837
|
userId?: number | null | undefined;
|
|
31616
31838
|
} | undefined;
|
|
@@ -31698,6 +31920,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31698
31920
|
branch: string;
|
|
31699
31921
|
credentialId?: string | undefined;
|
|
31700
31922
|
relativePath?: string | null | undefined;
|
|
31923
|
+
commitAuthorName?: string | null | undefined;
|
|
31924
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31701
31925
|
connectionId?: string | null | undefined;
|
|
31702
31926
|
userId?: number | null | undefined;
|
|
31703
31927
|
} | undefined;
|
|
@@ -31709,6 +31933,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31709
31933
|
url?: string | null | undefined;
|
|
31710
31934
|
credentialId?: string | undefined;
|
|
31711
31935
|
relativePath?: string | null | undefined;
|
|
31936
|
+
commitAuthorName?: string | null | undefined;
|
|
31937
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31712
31938
|
connectionId?: string | null | undefined;
|
|
31713
31939
|
userId?: number | null | undefined;
|
|
31714
31940
|
} | undefined;
|
|
@@ -31718,6 +31944,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31718
31944
|
url?: string | null | undefined;
|
|
31719
31945
|
credentialId?: string | undefined;
|
|
31720
31946
|
relativePath?: string | null | undefined;
|
|
31947
|
+
commitAuthorName?: string | null | undefined;
|
|
31948
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31721
31949
|
connectionId?: string | null | undefined;
|
|
31722
31950
|
userId?: number | null | undefined;
|
|
31723
31951
|
} | undefined;
|
|
@@ -31728,6 +31956,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31728
31956
|
repoSlug: string;
|
|
31729
31957
|
credentialId?: string | undefined;
|
|
31730
31958
|
relativePath?: string | null | undefined;
|
|
31959
|
+
commitAuthorName?: string | null | undefined;
|
|
31960
|
+
commitAuthorEmail?: string | null | undefined;
|
|
31731
31961
|
connectionId?: string | null | undefined;
|
|
31732
31962
|
userId?: number | null | undefined;
|
|
31733
31963
|
} | undefined;
|
|
@@ -31740,13 +31970,13 @@ declare const DTOAssetRenderConfiguration: z.ZodObject<{
|
|
|
31740
31970
|
scale: z.ZodEnum<["x1", "x2", "x3", "x4"]>;
|
|
31741
31971
|
format: z.ZodEnum<["png", "pdf", "svg"]>;
|
|
31742
31972
|
}, "strip", z.ZodTypeAny, {
|
|
31743
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31744
31973
|
format: "png" | "pdf" | "svg";
|
|
31974
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31745
31975
|
prefix?: string | undefined;
|
|
31746
31976
|
suffix?: string | undefined;
|
|
31747
31977
|
}, {
|
|
31748
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31749
31978
|
format: "png" | "pdf" | "svg";
|
|
31979
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31750
31980
|
prefix?: string | undefined;
|
|
31751
31981
|
suffix?: string | undefined;
|
|
31752
31982
|
}>;
|
|
@@ -31761,13 +31991,13 @@ declare const DTORenderedAssetFile: z.ZodObject<{
|
|
|
31761
31991
|
scale: z.ZodEnum<["x1", "x2", "x3", "x4"]>;
|
|
31762
31992
|
format: z.ZodEnum<["png", "pdf", "svg"]>;
|
|
31763
31993
|
}, "strip", z.ZodTypeAny, {
|
|
31764
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31765
31994
|
format: "png" | "pdf" | "svg";
|
|
31995
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31766
31996
|
prefix?: string | undefined;
|
|
31767
31997
|
suffix?: string | undefined;
|
|
31768
31998
|
}, {
|
|
31769
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31770
31999
|
format: "png" | "pdf" | "svg";
|
|
32000
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31771
32001
|
prefix?: string | undefined;
|
|
31772
32002
|
suffix?: string | undefined;
|
|
31773
32003
|
}>;
|
|
@@ -31775,8 +32005,8 @@ declare const DTORenderedAssetFile: z.ZodObject<{
|
|
|
31775
32005
|
}, "strip", z.ZodTypeAny, {
|
|
31776
32006
|
fileName: string;
|
|
31777
32007
|
settings: {
|
|
31778
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31779
32008
|
format: "png" | "pdf" | "svg";
|
|
32009
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31780
32010
|
prefix?: string | undefined;
|
|
31781
32011
|
suffix?: string | undefined;
|
|
31782
32012
|
};
|
|
@@ -31786,8 +32016,8 @@ declare const DTORenderedAssetFile: z.ZodObject<{
|
|
|
31786
32016
|
}, {
|
|
31787
32017
|
fileName: string;
|
|
31788
32018
|
settings: {
|
|
31789
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31790
32019
|
format: "png" | "pdf" | "svg";
|
|
32020
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31791
32021
|
prefix?: string | undefined;
|
|
31792
32022
|
suffix?: string | undefined;
|
|
31793
32023
|
};
|
|
@@ -31804,28 +32034,28 @@ declare const DTODownloadAssetsRequest: z.ZodObject<{
|
|
|
31804
32034
|
scale: z.ZodEnum<["x1", "x2", "x3", "x4"]>;
|
|
31805
32035
|
format: z.ZodEnum<["png", "pdf", "svg"]>;
|
|
31806
32036
|
}, "strip", z.ZodTypeAny, {
|
|
31807
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31808
32037
|
format: "png" | "pdf" | "svg";
|
|
32038
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31809
32039
|
prefix?: string | undefined;
|
|
31810
32040
|
suffix?: string | undefined;
|
|
31811
32041
|
}, {
|
|
31812
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31813
32042
|
format: "png" | "pdf" | "svg";
|
|
32043
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31814
32044
|
prefix?: string | undefined;
|
|
31815
32045
|
suffix?: string | undefined;
|
|
31816
32046
|
}>, "many">;
|
|
31817
32047
|
}, "strip", z.ZodTypeAny, {
|
|
31818
32048
|
settings: {
|
|
31819
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31820
32049
|
format: "png" | "pdf" | "svg";
|
|
32050
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31821
32051
|
prefix?: string | undefined;
|
|
31822
32052
|
suffix?: string | undefined;
|
|
31823
32053
|
}[];
|
|
31824
32054
|
persistentIds?: string[] | undefined;
|
|
31825
32055
|
}, {
|
|
31826
32056
|
settings: {
|
|
31827
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31828
32057
|
format: "png" | "pdf" | "svg";
|
|
32058
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31829
32059
|
prefix?: string | undefined;
|
|
31830
32060
|
suffix?: string | undefined;
|
|
31831
32061
|
}[];
|
|
@@ -31843,13 +32073,13 @@ declare const DTODownloadAssetsResponse: z.ZodObject<{
|
|
|
31843
32073
|
scale: z.ZodEnum<["x1", "x2", "x3", "x4"]>;
|
|
31844
32074
|
format: z.ZodEnum<["png", "pdf", "svg"]>;
|
|
31845
32075
|
}, "strip", z.ZodTypeAny, {
|
|
31846
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31847
32076
|
format: "png" | "pdf" | "svg";
|
|
32077
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31848
32078
|
prefix?: string | undefined;
|
|
31849
32079
|
suffix?: string | undefined;
|
|
31850
32080
|
}, {
|
|
31851
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31852
32081
|
format: "png" | "pdf" | "svg";
|
|
32082
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31853
32083
|
prefix?: string | undefined;
|
|
31854
32084
|
suffix?: string | undefined;
|
|
31855
32085
|
}>;
|
|
@@ -31857,8 +32087,8 @@ declare const DTODownloadAssetsResponse: z.ZodObject<{
|
|
|
31857
32087
|
}, "strip", z.ZodTypeAny, {
|
|
31858
32088
|
fileName: string;
|
|
31859
32089
|
settings: {
|
|
31860
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31861
32090
|
format: "png" | "pdf" | "svg";
|
|
32091
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31862
32092
|
prefix?: string | undefined;
|
|
31863
32093
|
suffix?: string | undefined;
|
|
31864
32094
|
};
|
|
@@ -31868,8 +32098,8 @@ declare const DTODownloadAssetsResponse: z.ZodObject<{
|
|
|
31868
32098
|
}, {
|
|
31869
32099
|
fileName: string;
|
|
31870
32100
|
settings: {
|
|
31871
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31872
32101
|
format: "png" | "pdf" | "svg";
|
|
32102
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31873
32103
|
prefix?: string | undefined;
|
|
31874
32104
|
suffix?: string | undefined;
|
|
31875
32105
|
};
|
|
@@ -31881,8 +32111,8 @@ declare const DTODownloadAssetsResponse: z.ZodObject<{
|
|
|
31881
32111
|
items: {
|
|
31882
32112
|
fileName: string;
|
|
31883
32113
|
settings: {
|
|
31884
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31885
32114
|
format: "png" | "pdf" | "svg";
|
|
32115
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31886
32116
|
prefix?: string | undefined;
|
|
31887
32117
|
suffix?: string | undefined;
|
|
31888
32118
|
};
|
|
@@ -31894,8 +32124,8 @@ declare const DTODownloadAssetsResponse: z.ZodObject<{
|
|
|
31894
32124
|
items: {
|
|
31895
32125
|
fileName: string;
|
|
31896
32126
|
settings: {
|
|
31897
|
-
scale: "x1" | "x2" | "x3" | "x4";
|
|
31898
32127
|
format: "png" | "pdf" | "svg";
|
|
32128
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31899
32129
|
prefix?: string | undefined;
|
|
31900
32130
|
suffix?: string | undefined;
|
|
31901
32131
|
};
|
|
@@ -38750,6 +38980,27 @@ declare const DTOUpdateVersionInput: z.ZodObject<{
|
|
|
38750
38980
|
}>;
|
|
38751
38981
|
type DTOUpdateVersionInput = z.infer<typeof DTOUpdateVersionInput>;
|
|
38752
38982
|
|
|
38983
|
+
declare const PageBlockDefinitionLayoutBase: z.ZodObject<{
|
|
38984
|
+
type: z.ZodEnum<["Column", "Row"]>;
|
|
38985
|
+
gap: z.ZodOptional<z.ZodEnum<["Small", "Medium", "Large", "None"]>>;
|
|
38986
|
+
columnAlign: z.ZodOptional<z.ZodEnum<["Start", "Center", "End"]>>;
|
|
38987
|
+
columnResizing: z.ZodOptional<z.ZodEnum<["Fill", "Hug"]>>;
|
|
38988
|
+
}, "strip", z.ZodTypeAny, {
|
|
38989
|
+
type: "Column" | "Row";
|
|
38990
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
38991
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
38992
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
38993
|
+
}, {
|
|
38994
|
+
type: "Column" | "Row";
|
|
38995
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
38996
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
38997
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
38998
|
+
}>;
|
|
38999
|
+
declare const PageBlockDefinitionLayout: z.ZodType<PageBlockDefinitionLayout, ZodTypeDef, PageBlockDefinitionLayout>;
|
|
39000
|
+
type PageBlockDefinitionLayout = z.infer<typeof PageBlockDefinitionLayoutBase> & {
|
|
39001
|
+
children: (PageBlockDefinitionLayout | string)[];
|
|
39002
|
+
};
|
|
39003
|
+
|
|
38753
39004
|
declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
38754
39005
|
definitions: z.ZodArray<z.ZodObject<{
|
|
38755
39006
|
id: z.ZodString;
|
|
@@ -39381,6 +39632,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39381
39632
|
organizationId: z.ZodString;
|
|
39382
39633
|
projectId: z.ZodString;
|
|
39383
39634
|
repositoryId: z.ZodString;
|
|
39635
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39636
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39384
39637
|
branch: z.ZodString;
|
|
39385
39638
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39386
39639
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -39394,6 +39647,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39394
39647
|
url?: string | undefined;
|
|
39395
39648
|
credentialId?: string | undefined;
|
|
39396
39649
|
relativePath?: string | undefined;
|
|
39650
|
+
commitAuthorName?: string | undefined;
|
|
39651
|
+
commitAuthorEmail?: string | undefined;
|
|
39397
39652
|
connectionId?: string | undefined;
|
|
39398
39653
|
userId?: number | undefined;
|
|
39399
39654
|
}, {
|
|
@@ -39404,6 +39659,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39404
39659
|
url?: string | null | undefined;
|
|
39405
39660
|
credentialId?: string | undefined;
|
|
39406
39661
|
relativePath?: string | null | undefined;
|
|
39662
|
+
commitAuthorName?: string | null | undefined;
|
|
39663
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39407
39664
|
connectionId?: string | null | undefined;
|
|
39408
39665
|
userId?: number | null | undefined;
|
|
39409
39666
|
}>>>;
|
|
@@ -39412,6 +39669,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39412
39669
|
workspaceSlug: z.ZodString;
|
|
39413
39670
|
projectKey: z.ZodString;
|
|
39414
39671
|
repoSlug: z.ZodString;
|
|
39672
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39673
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39415
39674
|
branch: z.ZodString;
|
|
39416
39675
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39417
39676
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -39423,6 +39682,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39423
39682
|
repoSlug: string;
|
|
39424
39683
|
credentialId?: string | undefined;
|
|
39425
39684
|
relativePath?: string | undefined;
|
|
39685
|
+
commitAuthorName?: string | undefined;
|
|
39686
|
+
commitAuthorEmail?: string | undefined;
|
|
39426
39687
|
connectionId?: string | undefined;
|
|
39427
39688
|
userId?: number | undefined;
|
|
39428
39689
|
}, {
|
|
@@ -39432,6 +39693,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39432
39693
|
repoSlug: string;
|
|
39433
39694
|
credentialId?: string | undefined;
|
|
39434
39695
|
relativePath?: string | null | undefined;
|
|
39696
|
+
commitAuthorName?: string | null | undefined;
|
|
39697
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39435
39698
|
connectionId?: string | null | undefined;
|
|
39436
39699
|
userId?: number | null | undefined;
|
|
39437
39700
|
}>>>;
|
|
@@ -39440,6 +39703,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39440
39703
|
url: z.ZodString;
|
|
39441
39704
|
branch: z.ZodString;
|
|
39442
39705
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39706
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39707
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39443
39708
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39444
39709
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
39445
39710
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39447,6 +39712,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39447
39712
|
branch: string;
|
|
39448
39713
|
credentialId?: string | undefined;
|
|
39449
39714
|
relativePath?: string | undefined;
|
|
39715
|
+
commitAuthorName?: string | undefined;
|
|
39716
|
+
commitAuthorEmail?: string | undefined;
|
|
39450
39717
|
connectionId?: string | undefined;
|
|
39451
39718
|
userId?: number | undefined;
|
|
39452
39719
|
}, {
|
|
@@ -39454,12 +39721,16 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39454
39721
|
branch: string;
|
|
39455
39722
|
credentialId?: string | undefined;
|
|
39456
39723
|
relativePath?: string | null | undefined;
|
|
39724
|
+
commitAuthorName?: string | null | undefined;
|
|
39725
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39457
39726
|
connectionId?: string | null | undefined;
|
|
39458
39727
|
userId?: number | null | undefined;
|
|
39459
39728
|
}>>>;
|
|
39460
39729
|
gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
39461
39730
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
39462
39731
|
projectId: z.ZodString;
|
|
39732
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39733
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39463
39734
|
branch: z.ZodString;
|
|
39464
39735
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39465
39736
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -39471,6 +39742,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39471
39742
|
url?: string | undefined;
|
|
39472
39743
|
credentialId?: string | undefined;
|
|
39473
39744
|
relativePath?: string | undefined;
|
|
39745
|
+
commitAuthorName?: string | undefined;
|
|
39746
|
+
commitAuthorEmail?: string | undefined;
|
|
39474
39747
|
connectionId?: string | undefined;
|
|
39475
39748
|
userId?: number | undefined;
|
|
39476
39749
|
}, {
|
|
@@ -39479,6 +39752,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39479
39752
|
url?: string | null | undefined;
|
|
39480
39753
|
credentialId?: string | undefined;
|
|
39481
39754
|
relativePath?: string | null | undefined;
|
|
39755
|
+
commitAuthorName?: string | null | undefined;
|
|
39756
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39482
39757
|
connectionId?: string | null | undefined;
|
|
39483
39758
|
userId?: number | null | undefined;
|
|
39484
39759
|
}>>>;
|
|
@@ -39521,6 +39796,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39521
39796
|
url?: string | undefined;
|
|
39522
39797
|
credentialId?: string | undefined;
|
|
39523
39798
|
relativePath?: string | undefined;
|
|
39799
|
+
commitAuthorName?: string | undefined;
|
|
39800
|
+
commitAuthorEmail?: string | undefined;
|
|
39524
39801
|
connectionId?: string | undefined;
|
|
39525
39802
|
userId?: number | undefined;
|
|
39526
39803
|
} | null | undefined;
|
|
@@ -39531,6 +39808,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39531
39808
|
repoSlug: string;
|
|
39532
39809
|
credentialId?: string | undefined;
|
|
39533
39810
|
relativePath?: string | undefined;
|
|
39811
|
+
commitAuthorName?: string | undefined;
|
|
39812
|
+
commitAuthorEmail?: string | undefined;
|
|
39534
39813
|
connectionId?: string | undefined;
|
|
39535
39814
|
userId?: number | undefined;
|
|
39536
39815
|
} | null | undefined;
|
|
@@ -39539,6 +39818,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39539
39818
|
branch: string;
|
|
39540
39819
|
credentialId?: string | undefined;
|
|
39541
39820
|
relativePath?: string | undefined;
|
|
39821
|
+
commitAuthorName?: string | undefined;
|
|
39822
|
+
commitAuthorEmail?: string | undefined;
|
|
39542
39823
|
connectionId?: string | undefined;
|
|
39543
39824
|
userId?: number | undefined;
|
|
39544
39825
|
} | null | undefined;
|
|
@@ -39548,6 +39829,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39548
39829
|
url?: string | undefined;
|
|
39549
39830
|
credentialId?: string | undefined;
|
|
39550
39831
|
relativePath?: string | undefined;
|
|
39832
|
+
commitAuthorName?: string | undefined;
|
|
39833
|
+
commitAuthorEmail?: string | undefined;
|
|
39551
39834
|
connectionId?: string | undefined;
|
|
39552
39835
|
userId?: number | undefined;
|
|
39553
39836
|
} | null | undefined;
|
|
@@ -39569,6 +39852,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39569
39852
|
url?: string | null | undefined;
|
|
39570
39853
|
credentialId?: string | undefined;
|
|
39571
39854
|
relativePath?: string | null | undefined;
|
|
39855
|
+
commitAuthorName?: string | null | undefined;
|
|
39856
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39572
39857
|
connectionId?: string | null | undefined;
|
|
39573
39858
|
userId?: number | null | undefined;
|
|
39574
39859
|
} | null | undefined;
|
|
@@ -39579,6 +39864,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39579
39864
|
repoSlug: string;
|
|
39580
39865
|
credentialId?: string | undefined;
|
|
39581
39866
|
relativePath?: string | null | undefined;
|
|
39867
|
+
commitAuthorName?: string | null | undefined;
|
|
39868
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39582
39869
|
connectionId?: string | null | undefined;
|
|
39583
39870
|
userId?: number | null | undefined;
|
|
39584
39871
|
} | null | undefined;
|
|
@@ -39587,6 +39874,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39587
39874
|
branch: string;
|
|
39588
39875
|
credentialId?: string | undefined;
|
|
39589
39876
|
relativePath?: string | null | undefined;
|
|
39877
|
+
commitAuthorName?: string | null | undefined;
|
|
39878
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39590
39879
|
connectionId?: string | null | undefined;
|
|
39591
39880
|
userId?: number | null | undefined;
|
|
39592
39881
|
} | null | undefined;
|
|
@@ -39596,6 +39885,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39596
39885
|
url?: string | null | undefined;
|
|
39597
39886
|
credentialId?: string | undefined;
|
|
39598
39887
|
relativePath?: string | null | undefined;
|
|
39888
|
+
commitAuthorName?: string | null | undefined;
|
|
39889
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39599
39890
|
connectionId?: string | null | undefined;
|
|
39600
39891
|
userId?: number | null | undefined;
|
|
39601
39892
|
} | null | undefined;
|
|
@@ -39631,6 +39922,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39631
39922
|
url?: string | undefined;
|
|
39632
39923
|
credentialId?: string | undefined;
|
|
39633
39924
|
relativePath?: string | undefined;
|
|
39925
|
+
commitAuthorName?: string | undefined;
|
|
39926
|
+
commitAuthorEmail?: string | undefined;
|
|
39634
39927
|
connectionId?: string | undefined;
|
|
39635
39928
|
userId?: number | undefined;
|
|
39636
39929
|
} | null | undefined;
|
|
@@ -39641,6 +39934,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39641
39934
|
repoSlug: string;
|
|
39642
39935
|
credentialId?: string | undefined;
|
|
39643
39936
|
relativePath?: string | undefined;
|
|
39937
|
+
commitAuthorName?: string | undefined;
|
|
39938
|
+
commitAuthorEmail?: string | undefined;
|
|
39644
39939
|
connectionId?: string | undefined;
|
|
39645
39940
|
userId?: number | undefined;
|
|
39646
39941
|
} | null | undefined;
|
|
@@ -39649,6 +39944,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39649
39944
|
branch: string;
|
|
39650
39945
|
credentialId?: string | undefined;
|
|
39651
39946
|
relativePath?: string | undefined;
|
|
39947
|
+
commitAuthorName?: string | undefined;
|
|
39948
|
+
commitAuthorEmail?: string | undefined;
|
|
39652
39949
|
connectionId?: string | undefined;
|
|
39653
39950
|
userId?: number | undefined;
|
|
39654
39951
|
} | null | undefined;
|
|
@@ -39658,6 +39955,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39658
39955
|
url?: string | undefined;
|
|
39659
39956
|
credentialId?: string | undefined;
|
|
39660
39957
|
relativePath?: string | undefined;
|
|
39958
|
+
commitAuthorName?: string | undefined;
|
|
39959
|
+
commitAuthorEmail?: string | undefined;
|
|
39661
39960
|
connectionId?: string | undefined;
|
|
39662
39961
|
userId?: number | undefined;
|
|
39663
39962
|
} | null | undefined;
|
|
@@ -39696,6 +39995,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39696
39995
|
url?: string | null | undefined;
|
|
39697
39996
|
credentialId?: string | undefined;
|
|
39698
39997
|
relativePath?: string | null | undefined;
|
|
39998
|
+
commitAuthorName?: string | null | undefined;
|
|
39999
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39699
40000
|
connectionId?: string | null | undefined;
|
|
39700
40001
|
userId?: number | null | undefined;
|
|
39701
40002
|
} | null | undefined;
|
|
@@ -39706,6 +40007,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39706
40007
|
repoSlug: string;
|
|
39707
40008
|
credentialId?: string | undefined;
|
|
39708
40009
|
relativePath?: string | null | undefined;
|
|
40010
|
+
commitAuthorName?: string | null | undefined;
|
|
40011
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39709
40012
|
connectionId?: string | null | undefined;
|
|
39710
40013
|
userId?: number | null | undefined;
|
|
39711
40014
|
} | null | undefined;
|
|
@@ -39714,6 +40017,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39714
40017
|
branch: string;
|
|
39715
40018
|
credentialId?: string | undefined;
|
|
39716
40019
|
relativePath?: string | null | undefined;
|
|
40020
|
+
commitAuthorName?: string | null | undefined;
|
|
40021
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39717
40022
|
connectionId?: string | null | undefined;
|
|
39718
40023
|
userId?: number | null | undefined;
|
|
39719
40024
|
} | null | undefined;
|
|
@@ -39723,6 +40028,8 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
39723
40028
|
url?: string | null | undefined;
|
|
39724
40029
|
credentialId?: string | undefined;
|
|
39725
40030
|
relativePath?: string | null | undefined;
|
|
40031
|
+
commitAuthorName?: string | null | undefined;
|
|
40032
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39726
40033
|
connectionId?: string | null | undefined;
|
|
39727
40034
|
userId?: number | null | undefined;
|
|
39728
40035
|
} | null | undefined;
|
|
@@ -39775,6 +40082,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39775
40082
|
organizationId: z.ZodString;
|
|
39776
40083
|
projectId: z.ZodString;
|
|
39777
40084
|
repositoryId: z.ZodString;
|
|
40085
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40086
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39778
40087
|
branch: z.ZodString;
|
|
39779
40088
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39780
40089
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -39788,6 +40097,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39788
40097
|
url?: string | undefined;
|
|
39789
40098
|
credentialId?: string | undefined;
|
|
39790
40099
|
relativePath?: string | undefined;
|
|
40100
|
+
commitAuthorName?: string | undefined;
|
|
40101
|
+
commitAuthorEmail?: string | undefined;
|
|
39791
40102
|
connectionId?: string | undefined;
|
|
39792
40103
|
userId?: number | undefined;
|
|
39793
40104
|
}, {
|
|
@@ -39798,6 +40109,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39798
40109
|
url?: string | null | undefined;
|
|
39799
40110
|
credentialId?: string | undefined;
|
|
39800
40111
|
relativePath?: string | null | undefined;
|
|
40112
|
+
commitAuthorName?: string | null | undefined;
|
|
40113
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39801
40114
|
connectionId?: string | null | undefined;
|
|
39802
40115
|
userId?: number | null | undefined;
|
|
39803
40116
|
}>>>;
|
|
@@ -39806,6 +40119,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39806
40119
|
workspaceSlug: z.ZodString;
|
|
39807
40120
|
projectKey: z.ZodString;
|
|
39808
40121
|
repoSlug: z.ZodString;
|
|
40122
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40123
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39809
40124
|
branch: z.ZodString;
|
|
39810
40125
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39811
40126
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -39817,6 +40132,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39817
40132
|
repoSlug: string;
|
|
39818
40133
|
credentialId?: string | undefined;
|
|
39819
40134
|
relativePath?: string | undefined;
|
|
40135
|
+
commitAuthorName?: string | undefined;
|
|
40136
|
+
commitAuthorEmail?: string | undefined;
|
|
39820
40137
|
connectionId?: string | undefined;
|
|
39821
40138
|
userId?: number | undefined;
|
|
39822
40139
|
}, {
|
|
@@ -39826,6 +40143,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39826
40143
|
repoSlug: string;
|
|
39827
40144
|
credentialId?: string | undefined;
|
|
39828
40145
|
relativePath?: string | null | undefined;
|
|
40146
|
+
commitAuthorName?: string | null | undefined;
|
|
40147
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39829
40148
|
connectionId?: string | null | undefined;
|
|
39830
40149
|
userId?: number | null | undefined;
|
|
39831
40150
|
}>>>;
|
|
@@ -39834,6 +40153,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39834
40153
|
url: z.ZodString;
|
|
39835
40154
|
branch: z.ZodString;
|
|
39836
40155
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40156
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40157
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39837
40158
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39838
40159
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
39839
40160
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39841,6 +40162,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39841
40162
|
branch: string;
|
|
39842
40163
|
credentialId?: string | undefined;
|
|
39843
40164
|
relativePath?: string | undefined;
|
|
40165
|
+
commitAuthorName?: string | undefined;
|
|
40166
|
+
commitAuthorEmail?: string | undefined;
|
|
39844
40167
|
connectionId?: string | undefined;
|
|
39845
40168
|
userId?: number | undefined;
|
|
39846
40169
|
}, {
|
|
@@ -39848,12 +40171,16 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39848
40171
|
branch: string;
|
|
39849
40172
|
credentialId?: string | undefined;
|
|
39850
40173
|
relativePath?: string | null | undefined;
|
|
40174
|
+
commitAuthorName?: string | null | undefined;
|
|
40175
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39851
40176
|
connectionId?: string | null | undefined;
|
|
39852
40177
|
userId?: number | null | undefined;
|
|
39853
40178
|
}>>>;
|
|
39854
40179
|
gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
39855
40180
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
39856
40181
|
projectId: z.ZodString;
|
|
40182
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40183
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39857
40184
|
branch: z.ZodString;
|
|
39858
40185
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39859
40186
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -39865,6 +40192,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39865
40192
|
url?: string | undefined;
|
|
39866
40193
|
credentialId?: string | undefined;
|
|
39867
40194
|
relativePath?: string | undefined;
|
|
40195
|
+
commitAuthorName?: string | undefined;
|
|
40196
|
+
commitAuthorEmail?: string | undefined;
|
|
39868
40197
|
connectionId?: string | undefined;
|
|
39869
40198
|
userId?: number | undefined;
|
|
39870
40199
|
}, {
|
|
@@ -39873,6 +40202,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39873
40202
|
url?: string | null | undefined;
|
|
39874
40203
|
credentialId?: string | undefined;
|
|
39875
40204
|
relativePath?: string | null | undefined;
|
|
40205
|
+
commitAuthorName?: string | null | undefined;
|
|
40206
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39876
40207
|
connectionId?: string | null | undefined;
|
|
39877
40208
|
userId?: number | null | undefined;
|
|
39878
40209
|
}>>>;
|
|
@@ -39915,6 +40246,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39915
40246
|
url?: string | undefined;
|
|
39916
40247
|
credentialId?: string | undefined;
|
|
39917
40248
|
relativePath?: string | undefined;
|
|
40249
|
+
commitAuthorName?: string | undefined;
|
|
40250
|
+
commitAuthorEmail?: string | undefined;
|
|
39918
40251
|
connectionId?: string | undefined;
|
|
39919
40252
|
userId?: number | undefined;
|
|
39920
40253
|
} | null | undefined;
|
|
@@ -39925,6 +40258,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39925
40258
|
repoSlug: string;
|
|
39926
40259
|
credentialId?: string | undefined;
|
|
39927
40260
|
relativePath?: string | undefined;
|
|
40261
|
+
commitAuthorName?: string | undefined;
|
|
40262
|
+
commitAuthorEmail?: string | undefined;
|
|
39928
40263
|
connectionId?: string | undefined;
|
|
39929
40264
|
userId?: number | undefined;
|
|
39930
40265
|
} | null | undefined;
|
|
@@ -39933,6 +40268,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39933
40268
|
branch: string;
|
|
39934
40269
|
credentialId?: string | undefined;
|
|
39935
40270
|
relativePath?: string | undefined;
|
|
40271
|
+
commitAuthorName?: string | undefined;
|
|
40272
|
+
commitAuthorEmail?: string | undefined;
|
|
39936
40273
|
connectionId?: string | undefined;
|
|
39937
40274
|
userId?: number | undefined;
|
|
39938
40275
|
} | null | undefined;
|
|
@@ -39942,6 +40279,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39942
40279
|
url?: string | undefined;
|
|
39943
40280
|
credentialId?: string | undefined;
|
|
39944
40281
|
relativePath?: string | undefined;
|
|
40282
|
+
commitAuthorName?: string | undefined;
|
|
40283
|
+
commitAuthorEmail?: string | undefined;
|
|
39945
40284
|
connectionId?: string | undefined;
|
|
39946
40285
|
userId?: number | undefined;
|
|
39947
40286
|
} | null | undefined;
|
|
@@ -39963,6 +40302,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39963
40302
|
url?: string | null | undefined;
|
|
39964
40303
|
credentialId?: string | undefined;
|
|
39965
40304
|
relativePath?: string | null | undefined;
|
|
40305
|
+
commitAuthorName?: string | null | undefined;
|
|
40306
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39966
40307
|
connectionId?: string | null | undefined;
|
|
39967
40308
|
userId?: number | null | undefined;
|
|
39968
40309
|
} | null | undefined;
|
|
@@ -39973,6 +40314,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39973
40314
|
repoSlug: string;
|
|
39974
40315
|
credentialId?: string | undefined;
|
|
39975
40316
|
relativePath?: string | null | undefined;
|
|
40317
|
+
commitAuthorName?: string | null | undefined;
|
|
40318
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39976
40319
|
connectionId?: string | null | undefined;
|
|
39977
40320
|
userId?: number | null | undefined;
|
|
39978
40321
|
} | null | undefined;
|
|
@@ -39981,6 +40324,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39981
40324
|
branch: string;
|
|
39982
40325
|
credentialId?: string | undefined;
|
|
39983
40326
|
relativePath?: string | null | undefined;
|
|
40327
|
+
commitAuthorName?: string | null | undefined;
|
|
40328
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39984
40329
|
connectionId?: string | null | undefined;
|
|
39985
40330
|
userId?: number | null | undefined;
|
|
39986
40331
|
} | null | undefined;
|
|
@@ -39990,6 +40335,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39990
40335
|
url?: string | null | undefined;
|
|
39991
40336
|
credentialId?: string | undefined;
|
|
39992
40337
|
relativePath?: string | null | undefined;
|
|
40338
|
+
commitAuthorName?: string | null | undefined;
|
|
40339
|
+
commitAuthorEmail?: string | null | undefined;
|
|
39993
40340
|
connectionId?: string | null | undefined;
|
|
39994
40341
|
userId?: number | null | undefined;
|
|
39995
40342
|
} | null | undefined;
|
|
@@ -40028,6 +40375,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40028
40375
|
url?: string | undefined;
|
|
40029
40376
|
credentialId?: string | undefined;
|
|
40030
40377
|
relativePath?: string | undefined;
|
|
40378
|
+
commitAuthorName?: string | undefined;
|
|
40379
|
+
commitAuthorEmail?: string | undefined;
|
|
40031
40380
|
connectionId?: string | undefined;
|
|
40032
40381
|
userId?: number | undefined;
|
|
40033
40382
|
} | null | undefined;
|
|
@@ -40038,6 +40387,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40038
40387
|
repoSlug: string;
|
|
40039
40388
|
credentialId?: string | undefined;
|
|
40040
40389
|
relativePath?: string | undefined;
|
|
40390
|
+
commitAuthorName?: string | undefined;
|
|
40391
|
+
commitAuthorEmail?: string | undefined;
|
|
40041
40392
|
connectionId?: string | undefined;
|
|
40042
40393
|
userId?: number | undefined;
|
|
40043
40394
|
} | null | undefined;
|
|
@@ -40046,6 +40397,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40046
40397
|
branch: string;
|
|
40047
40398
|
credentialId?: string | undefined;
|
|
40048
40399
|
relativePath?: string | undefined;
|
|
40400
|
+
commitAuthorName?: string | undefined;
|
|
40401
|
+
commitAuthorEmail?: string | undefined;
|
|
40049
40402
|
connectionId?: string | undefined;
|
|
40050
40403
|
userId?: number | undefined;
|
|
40051
40404
|
} | null | undefined;
|
|
@@ -40055,6 +40408,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40055
40408
|
url?: string | undefined;
|
|
40056
40409
|
credentialId?: string | undefined;
|
|
40057
40410
|
relativePath?: string | undefined;
|
|
40411
|
+
commitAuthorName?: string | undefined;
|
|
40412
|
+
commitAuthorEmail?: string | undefined;
|
|
40058
40413
|
connectionId?: string | undefined;
|
|
40059
40414
|
userId?: number | undefined;
|
|
40060
40415
|
} | null | undefined;
|
|
@@ -40094,6 +40449,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40094
40449
|
url?: string | null | undefined;
|
|
40095
40450
|
credentialId?: string | undefined;
|
|
40096
40451
|
relativePath?: string | null | undefined;
|
|
40452
|
+
commitAuthorName?: string | null | undefined;
|
|
40453
|
+
commitAuthorEmail?: string | null | undefined;
|
|
40097
40454
|
connectionId?: string | null | undefined;
|
|
40098
40455
|
userId?: number | null | undefined;
|
|
40099
40456
|
} | null | undefined;
|
|
@@ -40104,6 +40461,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40104
40461
|
repoSlug: string;
|
|
40105
40462
|
credentialId?: string | undefined;
|
|
40106
40463
|
relativePath?: string | null | undefined;
|
|
40464
|
+
commitAuthorName?: string | null | undefined;
|
|
40465
|
+
commitAuthorEmail?: string | null | undefined;
|
|
40107
40466
|
connectionId?: string | null | undefined;
|
|
40108
40467
|
userId?: number | null | undefined;
|
|
40109
40468
|
} | null | undefined;
|
|
@@ -40112,6 +40471,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40112
40471
|
branch: string;
|
|
40113
40472
|
credentialId?: string | undefined;
|
|
40114
40473
|
relativePath?: string | null | undefined;
|
|
40474
|
+
commitAuthorName?: string | null | undefined;
|
|
40475
|
+
commitAuthorEmail?: string | null | undefined;
|
|
40115
40476
|
connectionId?: string | null | undefined;
|
|
40116
40477
|
userId?: number | null | undefined;
|
|
40117
40478
|
} | null | undefined;
|
|
@@ -40121,6 +40482,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
40121
40482
|
url?: string | null | undefined;
|
|
40122
40483
|
credentialId?: string | undefined;
|
|
40123
40484
|
relativePath?: string | null | undefined;
|
|
40485
|
+
commitAuthorName?: string | null | undefined;
|
|
40486
|
+
commitAuthorEmail?: string | null | undefined;
|
|
40124
40487
|
connectionId?: string | null | undefined;
|
|
40125
40488
|
userId?: number | null | undefined;
|
|
40126
40489
|
} | null | undefined;
|
|
@@ -43376,4 +43739,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
43376
43739
|
|
|
43377
43740
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
43378
43741
|
|
|
43379
|
-
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, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, 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, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
43742
|
+
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, 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, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|