@supernova-studio/model 1.9.19 → 1.10.0
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 +716 -15
- package/dist/index.d.ts +716 -15
- package/dist/index.js +14 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2349,10 +2349,13 @@ declare const ForgeChatMessageSenderType: z.ZodEnum<["User", "Agent"]>;
|
|
|
2349
2349
|
type ForgeChatMessageSenderType = z.infer<typeof ForgeChatMessageSenderType>;
|
|
2350
2350
|
declare const ForgeChatMessageSender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2351
2351
|
type: z.ZodLiteral<"User">;
|
|
2352
|
+
userId: z.ZodString;
|
|
2352
2353
|
}, "strip", z.ZodTypeAny, {
|
|
2353
2354
|
type: "User";
|
|
2355
|
+
userId: string;
|
|
2354
2356
|
}, {
|
|
2355
2357
|
type: "User";
|
|
2358
|
+
userId: string;
|
|
2356
2359
|
}>, z.ZodObject<{
|
|
2357
2360
|
type: z.ZodLiteral<"Agent">;
|
|
2358
2361
|
persona: z.ZodLiteral<"Amy">;
|
|
@@ -2365,17 +2368,20 @@ declare const ForgeChatMessageSender: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
2365
2368
|
}>]>;
|
|
2366
2369
|
type ForgeChatMessageSender = z.infer<typeof ForgeChatMessageSender>;
|
|
2367
2370
|
declare const ForgeChatMessage: z.ZodObject<{
|
|
2368
|
-
id: z.
|
|
2369
|
-
threadId: z.
|
|
2371
|
+
id: z.ZodString;
|
|
2372
|
+
threadId: z.ZodString;
|
|
2370
2373
|
payload: z.ZodString;
|
|
2371
2374
|
createdAt: z.ZodDate;
|
|
2372
2375
|
updatedAt: z.ZodDate;
|
|
2373
2376
|
sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2374
2377
|
type: z.ZodLiteral<"User">;
|
|
2378
|
+
userId: z.ZodString;
|
|
2375
2379
|
}, "strip", z.ZodTypeAny, {
|
|
2376
2380
|
type: "User";
|
|
2381
|
+
userId: string;
|
|
2377
2382
|
}, {
|
|
2378
2383
|
type: "User";
|
|
2384
|
+
userId: string;
|
|
2379
2385
|
}>, z.ZodObject<{
|
|
2380
2386
|
type: z.ZodLiteral<"Agent">;
|
|
2381
2387
|
persona: z.ZodLiteral<"Amy">;
|
|
@@ -2387,25 +2393,27 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
2387
2393
|
persona: "Amy";
|
|
2388
2394
|
}>]>;
|
|
2389
2395
|
}, "strip", z.ZodTypeAny, {
|
|
2390
|
-
id:
|
|
2396
|
+
id: string;
|
|
2391
2397
|
createdAt: Date;
|
|
2392
2398
|
updatedAt: Date;
|
|
2393
|
-
threadId:
|
|
2399
|
+
threadId: string;
|
|
2394
2400
|
payload: string;
|
|
2395
2401
|
sender: {
|
|
2396
2402
|
type: "User";
|
|
2403
|
+
userId: string;
|
|
2397
2404
|
} | {
|
|
2398
2405
|
type: "Agent";
|
|
2399
2406
|
persona: "Amy";
|
|
2400
2407
|
};
|
|
2401
2408
|
}, {
|
|
2402
|
-
id:
|
|
2409
|
+
id: string;
|
|
2403
2410
|
createdAt: Date;
|
|
2404
2411
|
updatedAt: Date;
|
|
2405
|
-
threadId:
|
|
2412
|
+
threadId: string;
|
|
2406
2413
|
payload: string;
|
|
2407
2414
|
sender: {
|
|
2408
2415
|
type: "User";
|
|
2416
|
+
userId: string;
|
|
2409
2417
|
} | {
|
|
2410
2418
|
type: "Agent";
|
|
2411
2419
|
persona: "Amy";
|
|
@@ -2429,16 +2437,16 @@ declare const ForgeChatThread: z.ZodObject<{
|
|
|
2429
2437
|
id: string;
|
|
2430
2438
|
createdAt: Date;
|
|
2431
2439
|
updatedAt: Date;
|
|
2440
|
+
userId: string;
|
|
2432
2441
|
title: string;
|
|
2433
2442
|
workspaceId: string;
|
|
2434
|
-
userId: string;
|
|
2435
2443
|
}, {
|
|
2436
2444
|
id: string;
|
|
2437
2445
|
createdAt: Date;
|
|
2438
2446
|
updatedAt: Date;
|
|
2447
|
+
userId: string;
|
|
2439
2448
|
title: string;
|
|
2440
2449
|
workspaceId: string;
|
|
2441
|
-
userId: string;
|
|
2442
2450
|
}>;
|
|
2443
2451
|
type ForgeChatThread = z.infer<typeof ForgeChatThread>;
|
|
2444
2452
|
|
|
@@ -3905,27 +3913,33 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3905
3913
|
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3906
3914
|
groupPersistentIds: string[];
|
|
3907
3915
|
pagePersistentIds: string[];
|
|
3916
|
+
selectivePublishing?: boolean | undefined;
|
|
3908
3917
|
}, z.ZodTypeDef, {
|
|
3909
3918
|
groupPersistentIds: string[];
|
|
3910
3919
|
pagePersistentIds: string[];
|
|
3920
|
+
selectivePublishing?: boolean | undefined;
|
|
3911
3921
|
}>>>, {
|
|
3912
3922
|
groupPersistentIds: string[];
|
|
3913
3923
|
pagePersistentIds: string[];
|
|
3924
|
+
selectivePublishing?: boolean | undefined;
|
|
3914
3925
|
} | undefined, {
|
|
3915
3926
|
groupPersistentIds: string[];
|
|
3916
3927
|
pagePersistentIds: string[];
|
|
3928
|
+
selectivePublishing?: boolean | undefined;
|
|
3917
3929
|
} | null | undefined>;
|
|
3918
3930
|
}, "strip", z.ZodTypeAny, {
|
|
3919
3931
|
environment: "Live" | "Preview";
|
|
3920
3932
|
changes?: {
|
|
3921
3933
|
groupPersistentIds: string[];
|
|
3922
3934
|
pagePersistentIds: string[];
|
|
3935
|
+
selectivePublishing?: boolean | undefined;
|
|
3923
3936
|
} | undefined;
|
|
3924
3937
|
}, {
|
|
3925
3938
|
environment: "Live" | "Preview";
|
|
3926
3939
|
changes?: {
|
|
3927
3940
|
groupPersistentIds: string[];
|
|
3928
3941
|
pagePersistentIds: string[];
|
|
3942
|
+
selectivePublishing?: boolean | undefined;
|
|
3929
3943
|
} | null | undefined;
|
|
3930
3944
|
}>>;
|
|
3931
3945
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
@@ -3943,6 +3957,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3943
3957
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3944
3958
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3945
3959
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3960
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
3961
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
3962
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
3946
3963
|
}>, "strip", z.ZodTypeAny, {
|
|
3947
3964
|
url: string;
|
|
3948
3965
|
branch: string;
|
|
@@ -3954,6 +3971,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3954
3971
|
commitMessage?: string | undefined;
|
|
3955
3972
|
pullRequestTitle?: string | undefined;
|
|
3956
3973
|
pullRequestDescription?: string | undefined;
|
|
3974
|
+
checkoutNoTags?: boolean | undefined;
|
|
3975
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
3976
|
+
checkoutSparse?: boolean | undefined;
|
|
3957
3977
|
credentialId?: string | undefined;
|
|
3958
3978
|
connectionId?: string | undefined;
|
|
3959
3979
|
}, {
|
|
@@ -3967,6 +3987,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3967
3987
|
commitMessage?: string | null | undefined;
|
|
3968
3988
|
pullRequestTitle?: string | null | undefined;
|
|
3969
3989
|
pullRequestDescription?: string | null | undefined;
|
|
3990
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
3991
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
3992
|
+
checkoutSparse?: boolean | null | undefined;
|
|
3970
3993
|
credentialId?: string | undefined;
|
|
3971
3994
|
connectionId?: string | null | undefined;
|
|
3972
3995
|
}>>;
|
|
@@ -3987,6 +4010,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3987
4010
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3988
4011
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3989
4012
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
4013
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
4014
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
4015
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
3990
4016
|
}>, "strip", z.ZodTypeAny, {
|
|
3991
4017
|
branch: string;
|
|
3992
4018
|
organizationId: string;
|
|
@@ -4001,6 +4027,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4001
4027
|
commitMessage?: string | undefined;
|
|
4002
4028
|
pullRequestTitle?: string | undefined;
|
|
4003
4029
|
pullRequestDescription?: string | undefined;
|
|
4030
|
+
checkoutNoTags?: boolean | undefined;
|
|
4031
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4032
|
+
checkoutSparse?: boolean | undefined;
|
|
4004
4033
|
credentialId?: string | undefined;
|
|
4005
4034
|
connectionId?: string | undefined;
|
|
4006
4035
|
}, {
|
|
@@ -4017,6 +4046,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4017
4046
|
commitMessage?: string | null | undefined;
|
|
4018
4047
|
pullRequestTitle?: string | null | undefined;
|
|
4019
4048
|
pullRequestDescription?: string | null | undefined;
|
|
4049
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
4050
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
4051
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4020
4052
|
credentialId?: string | undefined;
|
|
4021
4053
|
connectionId?: string | null | undefined;
|
|
4022
4054
|
}>>;
|
|
@@ -4035,6 +4067,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4035
4067
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
4036
4068
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
4037
4069
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
4070
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
4071
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
4072
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
4038
4073
|
}>, "strip", z.ZodTypeAny, {
|
|
4039
4074
|
branch: string;
|
|
4040
4075
|
projectId: string;
|
|
@@ -4047,6 +4082,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4047
4082
|
commitMessage?: string | undefined;
|
|
4048
4083
|
pullRequestTitle?: string | undefined;
|
|
4049
4084
|
pullRequestDescription?: string | undefined;
|
|
4085
|
+
checkoutNoTags?: boolean | undefined;
|
|
4086
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4087
|
+
checkoutSparse?: boolean | undefined;
|
|
4050
4088
|
credentialId?: string | undefined;
|
|
4051
4089
|
connectionId?: string | undefined;
|
|
4052
4090
|
}, {
|
|
@@ -4061,6 +4099,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4061
4099
|
commitMessage?: string | null | undefined;
|
|
4062
4100
|
pullRequestTitle?: string | null | undefined;
|
|
4063
4101
|
pullRequestDescription?: string | null | undefined;
|
|
4102
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
4103
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
4104
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4064
4105
|
credentialId?: string | undefined;
|
|
4065
4106
|
connectionId?: string | null | undefined;
|
|
4066
4107
|
}>>;
|
|
@@ -4081,6 +4122,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4081
4122
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
4082
4123
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
4083
4124
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
4125
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
4126
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
4127
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
4084
4128
|
}>, "strip", z.ZodTypeAny, {
|
|
4085
4129
|
branch: string;
|
|
4086
4130
|
workspaceSlug: string;
|
|
@@ -4095,6 +4139,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4095
4139
|
commitMessage?: string | undefined;
|
|
4096
4140
|
pullRequestTitle?: string | undefined;
|
|
4097
4141
|
pullRequestDescription?: string | undefined;
|
|
4142
|
+
checkoutNoTags?: boolean | undefined;
|
|
4143
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4144
|
+
checkoutSparse?: boolean | undefined;
|
|
4098
4145
|
credentialId?: string | undefined;
|
|
4099
4146
|
connectionId?: string | undefined;
|
|
4100
4147
|
}, {
|
|
@@ -4111,6 +4158,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4111
4158
|
commitMessage?: string | null | undefined;
|
|
4112
4159
|
pullRequestTitle?: string | null | undefined;
|
|
4113
4160
|
pullRequestDescription?: string | null | undefined;
|
|
4161
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
4162
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
4163
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4114
4164
|
credentialId?: string | undefined;
|
|
4115
4165
|
connectionId?: string | null | undefined;
|
|
4116
4166
|
}>>;
|
|
@@ -4144,6 +4194,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4144
4194
|
changes?: {
|
|
4145
4195
|
groupPersistentIds: string[];
|
|
4146
4196
|
pagePersistentIds: string[];
|
|
4197
|
+
selectivePublishing?: boolean | undefined;
|
|
4147
4198
|
} | undefined;
|
|
4148
4199
|
} | undefined;
|
|
4149
4200
|
destinationS3?: {} | undefined;
|
|
@@ -4158,6 +4209,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4158
4209
|
commitMessage?: string | undefined;
|
|
4159
4210
|
pullRequestTitle?: string | undefined;
|
|
4160
4211
|
pullRequestDescription?: string | undefined;
|
|
4212
|
+
checkoutNoTags?: boolean | undefined;
|
|
4213
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4214
|
+
checkoutSparse?: boolean | undefined;
|
|
4161
4215
|
credentialId?: string | undefined;
|
|
4162
4216
|
connectionId?: string | undefined;
|
|
4163
4217
|
} | undefined;
|
|
@@ -4175,6 +4229,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4175
4229
|
commitMessage?: string | undefined;
|
|
4176
4230
|
pullRequestTitle?: string | undefined;
|
|
4177
4231
|
pullRequestDescription?: string | undefined;
|
|
4232
|
+
checkoutNoTags?: boolean | undefined;
|
|
4233
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4234
|
+
checkoutSparse?: boolean | undefined;
|
|
4178
4235
|
credentialId?: string | undefined;
|
|
4179
4236
|
connectionId?: string | undefined;
|
|
4180
4237
|
} | undefined;
|
|
@@ -4190,6 +4247,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4190
4247
|
commitMessage?: string | undefined;
|
|
4191
4248
|
pullRequestTitle?: string | undefined;
|
|
4192
4249
|
pullRequestDescription?: string | undefined;
|
|
4250
|
+
checkoutNoTags?: boolean | undefined;
|
|
4251
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4252
|
+
checkoutSparse?: boolean | undefined;
|
|
4193
4253
|
credentialId?: string | undefined;
|
|
4194
4254
|
connectionId?: string | undefined;
|
|
4195
4255
|
} | undefined;
|
|
@@ -4207,6 +4267,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4207
4267
|
commitMessage?: string | undefined;
|
|
4208
4268
|
pullRequestTitle?: string | undefined;
|
|
4209
4269
|
pullRequestDescription?: string | undefined;
|
|
4270
|
+
checkoutNoTags?: boolean | undefined;
|
|
4271
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4272
|
+
checkoutSparse?: boolean | undefined;
|
|
4210
4273
|
credentialId?: string | undefined;
|
|
4211
4274
|
connectionId?: string | undefined;
|
|
4212
4275
|
} | undefined;
|
|
@@ -4229,6 +4292,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4229
4292
|
changes?: {
|
|
4230
4293
|
groupPersistentIds: string[];
|
|
4231
4294
|
pagePersistentIds: string[];
|
|
4295
|
+
selectivePublishing?: boolean | undefined;
|
|
4232
4296
|
} | null | undefined;
|
|
4233
4297
|
} | undefined;
|
|
4234
4298
|
destinationS3?: {} | undefined;
|
|
@@ -4243,6 +4307,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4243
4307
|
commitMessage?: string | null | undefined;
|
|
4244
4308
|
pullRequestTitle?: string | null | undefined;
|
|
4245
4309
|
pullRequestDescription?: string | null | undefined;
|
|
4310
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
4311
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
4312
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4246
4313
|
credentialId?: string | undefined;
|
|
4247
4314
|
connectionId?: string | null | undefined;
|
|
4248
4315
|
} | undefined;
|
|
@@ -4260,6 +4327,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4260
4327
|
commitMessage?: string | null | undefined;
|
|
4261
4328
|
pullRequestTitle?: string | null | undefined;
|
|
4262
4329
|
pullRequestDescription?: string | null | undefined;
|
|
4330
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
4331
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
4332
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4263
4333
|
credentialId?: string | undefined;
|
|
4264
4334
|
connectionId?: string | null | undefined;
|
|
4265
4335
|
} | undefined;
|
|
@@ -4275,6 +4345,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4275
4345
|
commitMessage?: string | null | undefined;
|
|
4276
4346
|
pullRequestTitle?: string | null | undefined;
|
|
4277
4347
|
pullRequestDescription?: string | null | undefined;
|
|
4348
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
4349
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
4350
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4278
4351
|
credentialId?: string | undefined;
|
|
4279
4352
|
connectionId?: string | null | undefined;
|
|
4280
4353
|
} | undefined;
|
|
@@ -4292,6 +4365,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4292
4365
|
commitMessage?: string | null | undefined;
|
|
4293
4366
|
pullRequestTitle?: string | null | undefined;
|
|
4294
4367
|
pullRequestDescription?: string | null | undefined;
|
|
4368
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
4369
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
4370
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4295
4371
|
credentialId?: string | undefined;
|
|
4296
4372
|
connectionId?: string | null | undefined;
|
|
4297
4373
|
} | undefined;
|
|
@@ -4539,6 +4615,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4539
4615
|
changes?: {
|
|
4540
4616
|
groupPersistentIds: string[];
|
|
4541
4617
|
pagePersistentIds: string[];
|
|
4618
|
+
selectivePublishing?: boolean | undefined;
|
|
4542
4619
|
} | undefined;
|
|
4543
4620
|
} | undefined;
|
|
4544
4621
|
destinationS3?: {} | undefined;
|
|
@@ -4553,6 +4630,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4553
4630
|
commitMessage?: string | undefined;
|
|
4554
4631
|
pullRequestTitle?: string | undefined;
|
|
4555
4632
|
pullRequestDescription?: string | undefined;
|
|
4633
|
+
checkoutNoTags?: boolean | undefined;
|
|
4634
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4635
|
+
checkoutSparse?: boolean | undefined;
|
|
4556
4636
|
credentialId?: string | undefined;
|
|
4557
4637
|
connectionId?: string | undefined;
|
|
4558
4638
|
} | undefined;
|
|
@@ -4570,6 +4650,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4570
4650
|
commitMessage?: string | undefined;
|
|
4571
4651
|
pullRequestTitle?: string | undefined;
|
|
4572
4652
|
pullRequestDescription?: string | undefined;
|
|
4653
|
+
checkoutNoTags?: boolean | undefined;
|
|
4654
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4655
|
+
checkoutSparse?: boolean | undefined;
|
|
4573
4656
|
credentialId?: string | undefined;
|
|
4574
4657
|
connectionId?: string | undefined;
|
|
4575
4658
|
} | undefined;
|
|
@@ -4585,6 +4668,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4585
4668
|
commitMessage?: string | undefined;
|
|
4586
4669
|
pullRequestTitle?: string | undefined;
|
|
4587
4670
|
pullRequestDescription?: string | undefined;
|
|
4671
|
+
checkoutNoTags?: boolean | undefined;
|
|
4672
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4673
|
+
checkoutSparse?: boolean | undefined;
|
|
4588
4674
|
credentialId?: string | undefined;
|
|
4589
4675
|
connectionId?: string | undefined;
|
|
4590
4676
|
} | undefined;
|
|
@@ -4602,6 +4688,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4602
4688
|
commitMessage?: string | undefined;
|
|
4603
4689
|
pullRequestTitle?: string | undefined;
|
|
4604
4690
|
pullRequestDescription?: string | undefined;
|
|
4691
|
+
checkoutNoTags?: boolean | undefined;
|
|
4692
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
4693
|
+
checkoutSparse?: boolean | undefined;
|
|
4605
4694
|
credentialId?: string | undefined;
|
|
4606
4695
|
connectionId?: string | undefined;
|
|
4607
4696
|
} | undefined;
|
|
@@ -4839,6 +4928,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4839
4928
|
changes?: {
|
|
4840
4929
|
groupPersistentIds: string[];
|
|
4841
4930
|
pagePersistentIds: string[];
|
|
4931
|
+
selectivePublishing?: boolean | undefined;
|
|
4842
4932
|
} | null | undefined;
|
|
4843
4933
|
} | undefined;
|
|
4844
4934
|
destinationS3?: {} | undefined;
|
|
@@ -4853,6 +4943,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4853
4943
|
commitMessage?: string | null | undefined;
|
|
4854
4944
|
pullRequestTitle?: string | null | undefined;
|
|
4855
4945
|
pullRequestDescription?: string | null | undefined;
|
|
4946
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
4947
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
4948
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4856
4949
|
credentialId?: string | undefined;
|
|
4857
4950
|
connectionId?: string | null | undefined;
|
|
4858
4951
|
} | undefined;
|
|
@@ -4870,6 +4963,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4870
4963
|
commitMessage?: string | null | undefined;
|
|
4871
4964
|
pullRequestTitle?: string | null | undefined;
|
|
4872
4965
|
pullRequestDescription?: string | null | undefined;
|
|
4966
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
4967
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
4968
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4873
4969
|
credentialId?: string | undefined;
|
|
4874
4970
|
connectionId?: string | null | undefined;
|
|
4875
4971
|
} | undefined;
|
|
@@ -4885,6 +4981,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4885
4981
|
commitMessage?: string | null | undefined;
|
|
4886
4982
|
pullRequestTitle?: string | null | undefined;
|
|
4887
4983
|
pullRequestDescription?: string | null | undefined;
|
|
4984
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
4985
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
4986
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4888
4987
|
credentialId?: string | undefined;
|
|
4889
4988
|
connectionId?: string | null | undefined;
|
|
4890
4989
|
} | undefined;
|
|
@@ -4902,6 +5001,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4902
5001
|
commitMessage?: string | null | undefined;
|
|
4903
5002
|
pullRequestTitle?: string | null | undefined;
|
|
4904
5003
|
pullRequestDescription?: string | null | undefined;
|
|
5004
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
5005
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
5006
|
+
checkoutSparse?: boolean | null | undefined;
|
|
4905
5007
|
credentialId?: string | undefined;
|
|
4906
5008
|
connectionId?: string | null | undefined;
|
|
4907
5009
|
} | undefined;
|
|
@@ -19605,27 +19707,33 @@ declare const UserDump: z.ZodObject<{
|
|
|
19605
19707
|
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
19606
19708
|
groupPersistentIds: string[];
|
|
19607
19709
|
pagePersistentIds: string[];
|
|
19710
|
+
selectivePublishing?: boolean | undefined;
|
|
19608
19711
|
}, z.ZodTypeDef, {
|
|
19609
19712
|
groupPersistentIds: string[];
|
|
19610
19713
|
pagePersistentIds: string[];
|
|
19714
|
+
selectivePublishing?: boolean | undefined;
|
|
19611
19715
|
}>>>, {
|
|
19612
19716
|
groupPersistentIds: string[];
|
|
19613
19717
|
pagePersistentIds: string[];
|
|
19718
|
+
selectivePublishing?: boolean | undefined;
|
|
19614
19719
|
} | undefined, {
|
|
19615
19720
|
groupPersistentIds: string[];
|
|
19616
19721
|
pagePersistentIds: string[];
|
|
19722
|
+
selectivePublishing?: boolean | undefined;
|
|
19617
19723
|
} | null | undefined>;
|
|
19618
19724
|
}, "strip", z.ZodTypeAny, {
|
|
19619
19725
|
environment: "Live" | "Preview";
|
|
19620
19726
|
changes?: {
|
|
19621
19727
|
groupPersistentIds: string[];
|
|
19622
19728
|
pagePersistentIds: string[];
|
|
19729
|
+
selectivePublishing?: boolean | undefined;
|
|
19623
19730
|
} | undefined;
|
|
19624
19731
|
}, {
|
|
19625
19732
|
environment: "Live" | "Preview";
|
|
19626
19733
|
changes?: {
|
|
19627
19734
|
groupPersistentIds: string[];
|
|
19628
19735
|
pagePersistentIds: string[];
|
|
19736
|
+
selectivePublishing?: boolean | undefined;
|
|
19629
19737
|
} | null | undefined;
|
|
19630
19738
|
}>>;
|
|
19631
19739
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
@@ -19643,6 +19751,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19643
19751
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19644
19752
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19645
19753
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19754
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19755
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19756
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19646
19757
|
}>, "strip", z.ZodTypeAny, {
|
|
19647
19758
|
url: string;
|
|
19648
19759
|
branch: string;
|
|
@@ -19654,6 +19765,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19654
19765
|
commitMessage?: string | undefined;
|
|
19655
19766
|
pullRequestTitle?: string | undefined;
|
|
19656
19767
|
pullRequestDescription?: string | undefined;
|
|
19768
|
+
checkoutNoTags?: boolean | undefined;
|
|
19769
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
19770
|
+
checkoutSparse?: boolean | undefined;
|
|
19657
19771
|
credentialId?: string | undefined;
|
|
19658
19772
|
connectionId?: string | undefined;
|
|
19659
19773
|
}, {
|
|
@@ -19667,6 +19781,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19667
19781
|
commitMessage?: string | null | undefined;
|
|
19668
19782
|
pullRequestTitle?: string | null | undefined;
|
|
19669
19783
|
pullRequestDescription?: string | null | undefined;
|
|
19784
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
19785
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
19786
|
+
checkoutSparse?: boolean | null | undefined;
|
|
19670
19787
|
credentialId?: string | undefined;
|
|
19671
19788
|
connectionId?: string | null | undefined;
|
|
19672
19789
|
}>>;
|
|
@@ -19687,6 +19804,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19687
19804
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19688
19805
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19689
19806
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19807
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19808
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19809
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19690
19810
|
}>, "strip", z.ZodTypeAny, {
|
|
19691
19811
|
branch: string;
|
|
19692
19812
|
organizationId: string;
|
|
@@ -19701,6 +19821,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19701
19821
|
commitMessage?: string | undefined;
|
|
19702
19822
|
pullRequestTitle?: string | undefined;
|
|
19703
19823
|
pullRequestDescription?: string | undefined;
|
|
19824
|
+
checkoutNoTags?: boolean | undefined;
|
|
19825
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
19826
|
+
checkoutSparse?: boolean | undefined;
|
|
19704
19827
|
credentialId?: string | undefined;
|
|
19705
19828
|
connectionId?: string | undefined;
|
|
19706
19829
|
}, {
|
|
@@ -19717,6 +19840,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19717
19840
|
commitMessage?: string | null | undefined;
|
|
19718
19841
|
pullRequestTitle?: string | null | undefined;
|
|
19719
19842
|
pullRequestDescription?: string | null | undefined;
|
|
19843
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
19844
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
19845
|
+
checkoutSparse?: boolean | null | undefined;
|
|
19720
19846
|
credentialId?: string | undefined;
|
|
19721
19847
|
connectionId?: string | null | undefined;
|
|
19722
19848
|
}>>;
|
|
@@ -19735,6 +19861,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19735
19861
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19736
19862
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19737
19863
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19864
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19865
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19866
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19738
19867
|
}>, "strip", z.ZodTypeAny, {
|
|
19739
19868
|
branch: string;
|
|
19740
19869
|
projectId: string;
|
|
@@ -19747,6 +19876,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19747
19876
|
commitMessage?: string | undefined;
|
|
19748
19877
|
pullRequestTitle?: string | undefined;
|
|
19749
19878
|
pullRequestDescription?: string | undefined;
|
|
19879
|
+
checkoutNoTags?: boolean | undefined;
|
|
19880
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
19881
|
+
checkoutSparse?: boolean | undefined;
|
|
19750
19882
|
credentialId?: string | undefined;
|
|
19751
19883
|
connectionId?: string | undefined;
|
|
19752
19884
|
}, {
|
|
@@ -19761,6 +19893,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19761
19893
|
commitMessage?: string | null | undefined;
|
|
19762
19894
|
pullRequestTitle?: string | null | undefined;
|
|
19763
19895
|
pullRequestDescription?: string | null | undefined;
|
|
19896
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
19897
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
19898
|
+
checkoutSparse?: boolean | null | undefined;
|
|
19764
19899
|
credentialId?: string | undefined;
|
|
19765
19900
|
connectionId?: string | null | undefined;
|
|
19766
19901
|
}>>;
|
|
@@ -19781,6 +19916,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19781
19916
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19782
19917
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19783
19918
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19919
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19920
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19921
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
19784
19922
|
}>, "strip", z.ZodTypeAny, {
|
|
19785
19923
|
branch: string;
|
|
19786
19924
|
workspaceSlug: string;
|
|
@@ -19795,6 +19933,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19795
19933
|
commitMessage?: string | undefined;
|
|
19796
19934
|
pullRequestTitle?: string | undefined;
|
|
19797
19935
|
pullRequestDescription?: string | undefined;
|
|
19936
|
+
checkoutNoTags?: boolean | undefined;
|
|
19937
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
19938
|
+
checkoutSparse?: boolean | undefined;
|
|
19798
19939
|
credentialId?: string | undefined;
|
|
19799
19940
|
connectionId?: string | undefined;
|
|
19800
19941
|
}, {
|
|
@@ -19811,6 +19952,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19811
19952
|
commitMessage?: string | null | undefined;
|
|
19812
19953
|
pullRequestTitle?: string | null | undefined;
|
|
19813
19954
|
pullRequestDescription?: string | null | undefined;
|
|
19955
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
19956
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
19957
|
+
checkoutSparse?: boolean | null | undefined;
|
|
19814
19958
|
credentialId?: string | undefined;
|
|
19815
19959
|
connectionId?: string | null | undefined;
|
|
19816
19960
|
}>>;
|
|
@@ -19844,6 +19988,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19844
19988
|
changes?: {
|
|
19845
19989
|
groupPersistentIds: string[];
|
|
19846
19990
|
pagePersistentIds: string[];
|
|
19991
|
+
selectivePublishing?: boolean | undefined;
|
|
19847
19992
|
} | undefined;
|
|
19848
19993
|
} | undefined;
|
|
19849
19994
|
destinationS3?: {} | undefined;
|
|
@@ -19858,6 +20003,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19858
20003
|
commitMessage?: string | undefined;
|
|
19859
20004
|
pullRequestTitle?: string | undefined;
|
|
19860
20005
|
pullRequestDescription?: string | undefined;
|
|
20006
|
+
checkoutNoTags?: boolean | undefined;
|
|
20007
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
20008
|
+
checkoutSparse?: boolean | undefined;
|
|
19861
20009
|
credentialId?: string | undefined;
|
|
19862
20010
|
connectionId?: string | undefined;
|
|
19863
20011
|
} | undefined;
|
|
@@ -19875,6 +20023,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19875
20023
|
commitMessage?: string | undefined;
|
|
19876
20024
|
pullRequestTitle?: string | undefined;
|
|
19877
20025
|
pullRequestDescription?: string | undefined;
|
|
20026
|
+
checkoutNoTags?: boolean | undefined;
|
|
20027
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
20028
|
+
checkoutSparse?: boolean | undefined;
|
|
19878
20029
|
credentialId?: string | undefined;
|
|
19879
20030
|
connectionId?: string | undefined;
|
|
19880
20031
|
} | undefined;
|
|
@@ -19890,6 +20041,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19890
20041
|
commitMessage?: string | undefined;
|
|
19891
20042
|
pullRequestTitle?: string | undefined;
|
|
19892
20043
|
pullRequestDescription?: string | undefined;
|
|
20044
|
+
checkoutNoTags?: boolean | undefined;
|
|
20045
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
20046
|
+
checkoutSparse?: boolean | undefined;
|
|
19893
20047
|
credentialId?: string | undefined;
|
|
19894
20048
|
connectionId?: string | undefined;
|
|
19895
20049
|
} | undefined;
|
|
@@ -19907,6 +20061,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19907
20061
|
commitMessage?: string | undefined;
|
|
19908
20062
|
pullRequestTitle?: string | undefined;
|
|
19909
20063
|
pullRequestDescription?: string | undefined;
|
|
20064
|
+
checkoutNoTags?: boolean | undefined;
|
|
20065
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
20066
|
+
checkoutSparse?: boolean | undefined;
|
|
19910
20067
|
credentialId?: string | undefined;
|
|
19911
20068
|
connectionId?: string | undefined;
|
|
19912
20069
|
} | undefined;
|
|
@@ -19929,6 +20086,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19929
20086
|
changes?: {
|
|
19930
20087
|
groupPersistentIds: string[];
|
|
19931
20088
|
pagePersistentIds: string[];
|
|
20089
|
+
selectivePublishing?: boolean | undefined;
|
|
19932
20090
|
} | null | undefined;
|
|
19933
20091
|
} | undefined;
|
|
19934
20092
|
destinationS3?: {} | undefined;
|
|
@@ -19943,6 +20101,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19943
20101
|
commitMessage?: string | null | undefined;
|
|
19944
20102
|
pullRequestTitle?: string | null | undefined;
|
|
19945
20103
|
pullRequestDescription?: string | null | undefined;
|
|
20104
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
20105
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
20106
|
+
checkoutSparse?: boolean | null | undefined;
|
|
19946
20107
|
credentialId?: string | undefined;
|
|
19947
20108
|
connectionId?: string | null | undefined;
|
|
19948
20109
|
} | undefined;
|
|
@@ -19960,6 +20121,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19960
20121
|
commitMessage?: string | null | undefined;
|
|
19961
20122
|
pullRequestTitle?: string | null | undefined;
|
|
19962
20123
|
pullRequestDescription?: string | null | undefined;
|
|
20124
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
20125
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
20126
|
+
checkoutSparse?: boolean | null | undefined;
|
|
19963
20127
|
credentialId?: string | undefined;
|
|
19964
20128
|
connectionId?: string | null | undefined;
|
|
19965
20129
|
} | undefined;
|
|
@@ -19975,6 +20139,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19975
20139
|
commitMessage?: string | null | undefined;
|
|
19976
20140
|
pullRequestTitle?: string | null | undefined;
|
|
19977
20141
|
pullRequestDescription?: string | null | undefined;
|
|
20142
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
20143
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
20144
|
+
checkoutSparse?: boolean | null | undefined;
|
|
19978
20145
|
credentialId?: string | undefined;
|
|
19979
20146
|
connectionId?: string | null | undefined;
|
|
19980
20147
|
} | undefined;
|
|
@@ -19992,6 +20159,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19992
20159
|
commitMessage?: string | null | undefined;
|
|
19993
20160
|
pullRequestTitle?: string | null | undefined;
|
|
19994
20161
|
pullRequestDescription?: string | null | undefined;
|
|
20162
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
20163
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
20164
|
+
checkoutSparse?: boolean | null | undefined;
|
|
19995
20165
|
credentialId?: string | undefined;
|
|
19996
20166
|
connectionId?: string | null | undefined;
|
|
19997
20167
|
} | undefined;
|
|
@@ -20239,6 +20409,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
20239
20409
|
changes?: {
|
|
20240
20410
|
groupPersistentIds: string[];
|
|
20241
20411
|
pagePersistentIds: string[];
|
|
20412
|
+
selectivePublishing?: boolean | undefined;
|
|
20242
20413
|
} | undefined;
|
|
20243
20414
|
} | undefined;
|
|
20244
20415
|
destinationS3?: {} | undefined;
|
|
@@ -20253,6 +20424,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20253
20424
|
commitMessage?: string | undefined;
|
|
20254
20425
|
pullRequestTitle?: string | undefined;
|
|
20255
20426
|
pullRequestDescription?: string | undefined;
|
|
20427
|
+
checkoutNoTags?: boolean | undefined;
|
|
20428
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
20429
|
+
checkoutSparse?: boolean | undefined;
|
|
20256
20430
|
credentialId?: string | undefined;
|
|
20257
20431
|
connectionId?: string | undefined;
|
|
20258
20432
|
} | undefined;
|
|
@@ -20270,6 +20444,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20270
20444
|
commitMessage?: string | undefined;
|
|
20271
20445
|
pullRequestTitle?: string | undefined;
|
|
20272
20446
|
pullRequestDescription?: string | undefined;
|
|
20447
|
+
checkoutNoTags?: boolean | undefined;
|
|
20448
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
20449
|
+
checkoutSparse?: boolean | undefined;
|
|
20273
20450
|
credentialId?: string | undefined;
|
|
20274
20451
|
connectionId?: string | undefined;
|
|
20275
20452
|
} | undefined;
|
|
@@ -20285,6 +20462,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20285
20462
|
commitMessage?: string | undefined;
|
|
20286
20463
|
pullRequestTitle?: string | undefined;
|
|
20287
20464
|
pullRequestDescription?: string | undefined;
|
|
20465
|
+
checkoutNoTags?: boolean | undefined;
|
|
20466
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
20467
|
+
checkoutSparse?: boolean | undefined;
|
|
20288
20468
|
credentialId?: string | undefined;
|
|
20289
20469
|
connectionId?: string | undefined;
|
|
20290
20470
|
} | undefined;
|
|
@@ -20302,6 +20482,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20302
20482
|
commitMessage?: string | undefined;
|
|
20303
20483
|
pullRequestTitle?: string | undefined;
|
|
20304
20484
|
pullRequestDescription?: string | undefined;
|
|
20485
|
+
checkoutNoTags?: boolean | undefined;
|
|
20486
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
20487
|
+
checkoutSparse?: boolean | undefined;
|
|
20305
20488
|
credentialId?: string | undefined;
|
|
20306
20489
|
connectionId?: string | undefined;
|
|
20307
20490
|
} | undefined;
|
|
@@ -20539,6 +20722,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
20539
20722
|
changes?: {
|
|
20540
20723
|
groupPersistentIds: string[];
|
|
20541
20724
|
pagePersistentIds: string[];
|
|
20725
|
+
selectivePublishing?: boolean | undefined;
|
|
20542
20726
|
} | null | undefined;
|
|
20543
20727
|
} | undefined;
|
|
20544
20728
|
destinationS3?: {} | undefined;
|
|
@@ -20553,6 +20737,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20553
20737
|
commitMessage?: string | null | undefined;
|
|
20554
20738
|
pullRequestTitle?: string | null | undefined;
|
|
20555
20739
|
pullRequestDescription?: string | null | undefined;
|
|
20740
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
20741
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
20742
|
+
checkoutSparse?: boolean | null | undefined;
|
|
20556
20743
|
credentialId?: string | undefined;
|
|
20557
20744
|
connectionId?: string | null | undefined;
|
|
20558
20745
|
} | undefined;
|
|
@@ -20570,6 +20757,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20570
20757
|
commitMessage?: string | null | undefined;
|
|
20571
20758
|
pullRequestTitle?: string | null | undefined;
|
|
20572
20759
|
pullRequestDescription?: string | null | undefined;
|
|
20760
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
20761
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
20762
|
+
checkoutSparse?: boolean | null | undefined;
|
|
20573
20763
|
credentialId?: string | undefined;
|
|
20574
20764
|
connectionId?: string | null | undefined;
|
|
20575
20765
|
} | undefined;
|
|
@@ -20585,6 +20775,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20585
20775
|
commitMessage?: string | null | undefined;
|
|
20586
20776
|
pullRequestTitle?: string | null | undefined;
|
|
20587
20777
|
pullRequestDescription?: string | null | undefined;
|
|
20778
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
20779
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
20780
|
+
checkoutSparse?: boolean | null | undefined;
|
|
20588
20781
|
credentialId?: string | undefined;
|
|
20589
20782
|
connectionId?: string | null | undefined;
|
|
20590
20783
|
} | undefined;
|
|
@@ -20602,6 +20795,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20602
20795
|
commitMessage?: string | null | undefined;
|
|
20603
20796
|
pullRequestTitle?: string | null | undefined;
|
|
20604
20797
|
pullRequestDescription?: string | null | undefined;
|
|
20798
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
20799
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
20800
|
+
checkoutSparse?: boolean | null | undefined;
|
|
20605
20801
|
credentialId?: string | undefined;
|
|
20606
20802
|
connectionId?: string | null | undefined;
|
|
20607
20803
|
} | undefined;
|
|
@@ -21705,6 +21901,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
21705
21901
|
changes?: {
|
|
21706
21902
|
groupPersistentIds: string[];
|
|
21707
21903
|
pagePersistentIds: string[];
|
|
21904
|
+
selectivePublishing?: boolean | undefined;
|
|
21708
21905
|
} | undefined;
|
|
21709
21906
|
} | undefined;
|
|
21710
21907
|
destinationS3?: {} | undefined;
|
|
@@ -21719,6 +21916,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
21719
21916
|
commitMessage?: string | undefined;
|
|
21720
21917
|
pullRequestTitle?: string | undefined;
|
|
21721
21918
|
pullRequestDescription?: string | undefined;
|
|
21919
|
+
checkoutNoTags?: boolean | undefined;
|
|
21920
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
21921
|
+
checkoutSparse?: boolean | undefined;
|
|
21722
21922
|
credentialId?: string | undefined;
|
|
21723
21923
|
connectionId?: string | undefined;
|
|
21724
21924
|
} | undefined;
|
|
@@ -21736,6 +21936,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
21736
21936
|
commitMessage?: string | undefined;
|
|
21737
21937
|
pullRequestTitle?: string | undefined;
|
|
21738
21938
|
pullRequestDescription?: string | undefined;
|
|
21939
|
+
checkoutNoTags?: boolean | undefined;
|
|
21940
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
21941
|
+
checkoutSparse?: boolean | undefined;
|
|
21739
21942
|
credentialId?: string | undefined;
|
|
21740
21943
|
connectionId?: string | undefined;
|
|
21741
21944
|
} | undefined;
|
|
@@ -21751,6 +21954,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
21751
21954
|
commitMessage?: string | undefined;
|
|
21752
21955
|
pullRequestTitle?: string | undefined;
|
|
21753
21956
|
pullRequestDescription?: string | undefined;
|
|
21957
|
+
checkoutNoTags?: boolean | undefined;
|
|
21958
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
21959
|
+
checkoutSparse?: boolean | undefined;
|
|
21754
21960
|
credentialId?: string | undefined;
|
|
21755
21961
|
connectionId?: string | undefined;
|
|
21756
21962
|
} | undefined;
|
|
@@ -21768,6 +21974,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
21768
21974
|
commitMessage?: string | undefined;
|
|
21769
21975
|
pullRequestTitle?: string | undefined;
|
|
21770
21976
|
pullRequestDescription?: string | undefined;
|
|
21977
|
+
checkoutNoTags?: boolean | undefined;
|
|
21978
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
21979
|
+
checkoutSparse?: boolean | undefined;
|
|
21771
21980
|
credentialId?: string | undefined;
|
|
21772
21981
|
connectionId?: string | undefined;
|
|
21773
21982
|
} | undefined;
|
|
@@ -22713,6 +22922,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
22713
22922
|
changes?: {
|
|
22714
22923
|
groupPersistentIds: string[];
|
|
22715
22924
|
pagePersistentIds: string[];
|
|
22925
|
+
selectivePublishing?: boolean | undefined;
|
|
22716
22926
|
} | null | undefined;
|
|
22717
22927
|
} | undefined;
|
|
22718
22928
|
destinationS3?: {} | undefined;
|
|
@@ -22727,6 +22937,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
22727
22937
|
commitMessage?: string | null | undefined;
|
|
22728
22938
|
pullRequestTitle?: string | null | undefined;
|
|
22729
22939
|
pullRequestDescription?: string | null | undefined;
|
|
22940
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
22941
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
22942
|
+
checkoutSparse?: boolean | null | undefined;
|
|
22730
22943
|
credentialId?: string | undefined;
|
|
22731
22944
|
connectionId?: string | null | undefined;
|
|
22732
22945
|
} | undefined;
|
|
@@ -22744,6 +22957,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
22744
22957
|
commitMessage?: string | null | undefined;
|
|
22745
22958
|
pullRequestTitle?: string | null | undefined;
|
|
22746
22959
|
pullRequestDescription?: string | null | undefined;
|
|
22960
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
22961
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
22962
|
+
checkoutSparse?: boolean | null | undefined;
|
|
22747
22963
|
credentialId?: string | undefined;
|
|
22748
22964
|
connectionId?: string | null | undefined;
|
|
22749
22965
|
} | undefined;
|
|
@@ -22759,6 +22975,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
22759
22975
|
commitMessage?: string | null | undefined;
|
|
22760
22976
|
pullRequestTitle?: string | null | undefined;
|
|
22761
22977
|
pullRequestDescription?: string | null | undefined;
|
|
22978
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
22979
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
22980
|
+
checkoutSparse?: boolean | null | undefined;
|
|
22762
22981
|
credentialId?: string | undefined;
|
|
22763
22982
|
connectionId?: string | null | undefined;
|
|
22764
22983
|
} | undefined;
|
|
@@ -22776,6 +22995,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
22776
22995
|
commitMessage?: string | null | undefined;
|
|
22777
22996
|
pullRequestTitle?: string | null | undefined;
|
|
22778
22997
|
pullRequestDescription?: string | null | undefined;
|
|
22998
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
22999
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
23000
|
+
checkoutSparse?: boolean | null | undefined;
|
|
22779
23001
|
credentialId?: string | undefined;
|
|
22780
23002
|
connectionId?: string | null | undefined;
|
|
22781
23003
|
} | undefined;
|
|
@@ -23716,6 +23938,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
23716
23938
|
changes?: {
|
|
23717
23939
|
groupPersistentIds: string[];
|
|
23718
23940
|
pagePersistentIds: string[];
|
|
23941
|
+
selectivePublishing?: boolean | undefined;
|
|
23719
23942
|
} | undefined;
|
|
23720
23943
|
} | undefined;
|
|
23721
23944
|
destinationS3?: {} | undefined;
|
|
@@ -23730,6 +23953,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
23730
23953
|
commitMessage?: string | undefined;
|
|
23731
23954
|
pullRequestTitle?: string | undefined;
|
|
23732
23955
|
pullRequestDescription?: string | undefined;
|
|
23956
|
+
checkoutNoTags?: boolean | undefined;
|
|
23957
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
23958
|
+
checkoutSparse?: boolean | undefined;
|
|
23733
23959
|
credentialId?: string | undefined;
|
|
23734
23960
|
connectionId?: string | undefined;
|
|
23735
23961
|
} | undefined;
|
|
@@ -23747,6 +23973,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
23747
23973
|
commitMessage?: string | undefined;
|
|
23748
23974
|
pullRequestTitle?: string | undefined;
|
|
23749
23975
|
pullRequestDescription?: string | undefined;
|
|
23976
|
+
checkoutNoTags?: boolean | undefined;
|
|
23977
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
23978
|
+
checkoutSparse?: boolean | undefined;
|
|
23750
23979
|
credentialId?: string | undefined;
|
|
23751
23980
|
connectionId?: string | undefined;
|
|
23752
23981
|
} | undefined;
|
|
@@ -23762,6 +23991,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
23762
23991
|
commitMessage?: string | undefined;
|
|
23763
23992
|
pullRequestTitle?: string | undefined;
|
|
23764
23993
|
pullRequestDescription?: string | undefined;
|
|
23994
|
+
checkoutNoTags?: boolean | undefined;
|
|
23995
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
23996
|
+
checkoutSparse?: boolean | undefined;
|
|
23765
23997
|
credentialId?: string | undefined;
|
|
23766
23998
|
connectionId?: string | undefined;
|
|
23767
23999
|
} | undefined;
|
|
@@ -23779,6 +24011,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
23779
24011
|
commitMessage?: string | undefined;
|
|
23780
24012
|
pullRequestTitle?: string | undefined;
|
|
23781
24013
|
pullRequestDescription?: string | undefined;
|
|
24014
|
+
checkoutNoTags?: boolean | undefined;
|
|
24015
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
24016
|
+
checkoutSparse?: boolean | undefined;
|
|
23782
24017
|
credentialId?: string | undefined;
|
|
23783
24018
|
connectionId?: string | undefined;
|
|
23784
24019
|
} | undefined;
|
|
@@ -24756,6 +24991,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
24756
24991
|
changes?: {
|
|
24757
24992
|
groupPersistentIds: string[];
|
|
24758
24993
|
pagePersistentIds: string[];
|
|
24994
|
+
selectivePublishing?: boolean | undefined;
|
|
24759
24995
|
} | null | undefined;
|
|
24760
24996
|
} | undefined;
|
|
24761
24997
|
destinationS3?: {} | undefined;
|
|
@@ -24770,6 +25006,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
24770
25006
|
commitMessage?: string | null | undefined;
|
|
24771
25007
|
pullRequestTitle?: string | null | undefined;
|
|
24772
25008
|
pullRequestDescription?: string | null | undefined;
|
|
25009
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
25010
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
25011
|
+
checkoutSparse?: boolean | null | undefined;
|
|
24773
25012
|
credentialId?: string | undefined;
|
|
24774
25013
|
connectionId?: string | null | undefined;
|
|
24775
25014
|
} | undefined;
|
|
@@ -24787,6 +25026,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
24787
25026
|
commitMessage?: string | null | undefined;
|
|
24788
25027
|
pullRequestTitle?: string | null | undefined;
|
|
24789
25028
|
pullRequestDescription?: string | null | undefined;
|
|
25029
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
25030
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
25031
|
+
checkoutSparse?: boolean | null | undefined;
|
|
24790
25032
|
credentialId?: string | undefined;
|
|
24791
25033
|
connectionId?: string | null | undefined;
|
|
24792
25034
|
} | undefined;
|
|
@@ -24802,6 +25044,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
24802
25044
|
commitMessage?: string | null | undefined;
|
|
24803
25045
|
pullRequestTitle?: string | null | undefined;
|
|
24804
25046
|
pullRequestDescription?: string | null | undefined;
|
|
25047
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
25048
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
25049
|
+
checkoutSparse?: boolean | null | undefined;
|
|
24805
25050
|
credentialId?: string | undefined;
|
|
24806
25051
|
connectionId?: string | null | undefined;
|
|
24807
25052
|
} | undefined;
|
|
@@ -24819,6 +25064,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
24819
25064
|
commitMessage?: string | null | undefined;
|
|
24820
25065
|
pullRequestTitle?: string | null | undefined;
|
|
24821
25066
|
pullRequestDescription?: string | null | undefined;
|
|
25067
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
25068
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
25069
|
+
checkoutSparse?: boolean | null | undefined;
|
|
24822
25070
|
credentialId?: string | undefined;
|
|
24823
25071
|
connectionId?: string | null | undefined;
|
|
24824
25072
|
} | undefined;
|
|
@@ -32109,27 +32357,33 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32109
32357
|
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
32110
32358
|
groupPersistentIds: string[];
|
|
32111
32359
|
pagePersistentIds: string[];
|
|
32360
|
+
selectivePublishing?: boolean | undefined;
|
|
32112
32361
|
}, z.ZodTypeDef, {
|
|
32113
32362
|
groupPersistentIds: string[];
|
|
32114
32363
|
pagePersistentIds: string[];
|
|
32364
|
+
selectivePublishing?: boolean | undefined;
|
|
32115
32365
|
}>>>, {
|
|
32116
32366
|
groupPersistentIds: string[];
|
|
32117
32367
|
pagePersistentIds: string[];
|
|
32368
|
+
selectivePublishing?: boolean | undefined;
|
|
32118
32369
|
} | undefined, {
|
|
32119
32370
|
groupPersistentIds: string[];
|
|
32120
32371
|
pagePersistentIds: string[];
|
|
32372
|
+
selectivePublishing?: boolean | undefined;
|
|
32121
32373
|
} | null | undefined>;
|
|
32122
32374
|
}, "strip", z.ZodTypeAny, {
|
|
32123
32375
|
environment: "Live" | "Preview";
|
|
32124
32376
|
changes?: {
|
|
32125
32377
|
groupPersistentIds: string[];
|
|
32126
32378
|
pagePersistentIds: string[];
|
|
32379
|
+
selectivePublishing?: boolean | undefined;
|
|
32127
32380
|
} | undefined;
|
|
32128
32381
|
}, {
|
|
32129
32382
|
environment: "Live" | "Preview";
|
|
32130
32383
|
changes?: {
|
|
32131
32384
|
groupPersistentIds: string[];
|
|
32132
32385
|
pagePersistentIds: string[];
|
|
32386
|
+
selectivePublishing?: boolean | undefined;
|
|
32133
32387
|
} | null | undefined;
|
|
32134
32388
|
}>>;
|
|
32135
32389
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
@@ -32147,6 +32401,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32147
32401
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32148
32402
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32149
32403
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32404
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32405
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32406
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32150
32407
|
}>, "strip", z.ZodTypeAny, {
|
|
32151
32408
|
url: string;
|
|
32152
32409
|
branch: string;
|
|
@@ -32158,6 +32415,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32158
32415
|
commitMessage?: string | undefined;
|
|
32159
32416
|
pullRequestTitle?: string | undefined;
|
|
32160
32417
|
pullRequestDescription?: string | undefined;
|
|
32418
|
+
checkoutNoTags?: boolean | undefined;
|
|
32419
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
32420
|
+
checkoutSparse?: boolean | undefined;
|
|
32161
32421
|
credentialId?: string | undefined;
|
|
32162
32422
|
connectionId?: string | undefined;
|
|
32163
32423
|
}, {
|
|
@@ -32171,6 +32431,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32171
32431
|
commitMessage?: string | null | undefined;
|
|
32172
32432
|
pullRequestTitle?: string | null | undefined;
|
|
32173
32433
|
pullRequestDescription?: string | null | undefined;
|
|
32434
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
32435
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
32436
|
+
checkoutSparse?: boolean | null | undefined;
|
|
32174
32437
|
credentialId?: string | undefined;
|
|
32175
32438
|
connectionId?: string | null | undefined;
|
|
32176
32439
|
}>>;
|
|
@@ -32191,6 +32454,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32191
32454
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32192
32455
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32193
32456
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32457
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32458
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32459
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32194
32460
|
}>, "strip", z.ZodTypeAny, {
|
|
32195
32461
|
branch: string;
|
|
32196
32462
|
organizationId: string;
|
|
@@ -32205,6 +32471,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32205
32471
|
commitMessage?: string | undefined;
|
|
32206
32472
|
pullRequestTitle?: string | undefined;
|
|
32207
32473
|
pullRequestDescription?: string | undefined;
|
|
32474
|
+
checkoutNoTags?: boolean | undefined;
|
|
32475
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
32476
|
+
checkoutSparse?: boolean | undefined;
|
|
32208
32477
|
credentialId?: string | undefined;
|
|
32209
32478
|
connectionId?: string | undefined;
|
|
32210
32479
|
}, {
|
|
@@ -32221,6 +32490,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32221
32490
|
commitMessage?: string | null | undefined;
|
|
32222
32491
|
pullRequestTitle?: string | null | undefined;
|
|
32223
32492
|
pullRequestDescription?: string | null | undefined;
|
|
32493
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
32494
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
32495
|
+
checkoutSparse?: boolean | null | undefined;
|
|
32224
32496
|
credentialId?: string | undefined;
|
|
32225
32497
|
connectionId?: string | null | undefined;
|
|
32226
32498
|
}>>;
|
|
@@ -32239,6 +32511,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32239
32511
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32240
32512
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32241
32513
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32514
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32515
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32516
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32242
32517
|
}>, "strip", z.ZodTypeAny, {
|
|
32243
32518
|
branch: string;
|
|
32244
32519
|
projectId: string;
|
|
@@ -32251,6 +32526,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32251
32526
|
commitMessage?: string | undefined;
|
|
32252
32527
|
pullRequestTitle?: string | undefined;
|
|
32253
32528
|
pullRequestDescription?: string | undefined;
|
|
32529
|
+
checkoutNoTags?: boolean | undefined;
|
|
32530
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
32531
|
+
checkoutSparse?: boolean | undefined;
|
|
32254
32532
|
credentialId?: string | undefined;
|
|
32255
32533
|
connectionId?: string | undefined;
|
|
32256
32534
|
}, {
|
|
@@ -32265,6 +32543,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32265
32543
|
commitMessage?: string | null | undefined;
|
|
32266
32544
|
pullRequestTitle?: string | null | undefined;
|
|
32267
32545
|
pullRequestDescription?: string | null | undefined;
|
|
32546
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
32547
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
32548
|
+
checkoutSparse?: boolean | null | undefined;
|
|
32268
32549
|
credentialId?: string | undefined;
|
|
32269
32550
|
connectionId?: string | null | undefined;
|
|
32270
32551
|
}>>;
|
|
@@ -32285,6 +32566,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32285
32566
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32286
32567
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32287
32568
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32569
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32570
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32571
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
32288
32572
|
}>, "strip", z.ZodTypeAny, {
|
|
32289
32573
|
branch: string;
|
|
32290
32574
|
workspaceSlug: string;
|
|
@@ -32299,6 +32583,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32299
32583
|
commitMessage?: string | undefined;
|
|
32300
32584
|
pullRequestTitle?: string | undefined;
|
|
32301
32585
|
pullRequestDescription?: string | undefined;
|
|
32586
|
+
checkoutNoTags?: boolean | undefined;
|
|
32587
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
32588
|
+
checkoutSparse?: boolean | undefined;
|
|
32302
32589
|
credentialId?: string | undefined;
|
|
32303
32590
|
connectionId?: string | undefined;
|
|
32304
32591
|
}, {
|
|
@@ -32315,6 +32602,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32315
32602
|
commitMessage?: string | null | undefined;
|
|
32316
32603
|
pullRequestTitle?: string | null | undefined;
|
|
32317
32604
|
pullRequestDescription?: string | null | undefined;
|
|
32605
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
32606
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
32607
|
+
checkoutSparse?: boolean | null | undefined;
|
|
32318
32608
|
credentialId?: string | undefined;
|
|
32319
32609
|
connectionId?: string | null | undefined;
|
|
32320
32610
|
}>>;
|
|
@@ -32348,6 +32638,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32348
32638
|
changes?: {
|
|
32349
32639
|
groupPersistentIds: string[];
|
|
32350
32640
|
pagePersistentIds: string[];
|
|
32641
|
+
selectivePublishing?: boolean | undefined;
|
|
32351
32642
|
} | undefined;
|
|
32352
32643
|
} | undefined;
|
|
32353
32644
|
destinationS3?: {} | undefined;
|
|
@@ -32362,6 +32653,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32362
32653
|
commitMessage?: string | undefined;
|
|
32363
32654
|
pullRequestTitle?: string | undefined;
|
|
32364
32655
|
pullRequestDescription?: string | undefined;
|
|
32656
|
+
checkoutNoTags?: boolean | undefined;
|
|
32657
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
32658
|
+
checkoutSparse?: boolean | undefined;
|
|
32365
32659
|
credentialId?: string | undefined;
|
|
32366
32660
|
connectionId?: string | undefined;
|
|
32367
32661
|
} | undefined;
|
|
@@ -32379,6 +32673,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32379
32673
|
commitMessage?: string | undefined;
|
|
32380
32674
|
pullRequestTitle?: string | undefined;
|
|
32381
32675
|
pullRequestDescription?: string | undefined;
|
|
32676
|
+
checkoutNoTags?: boolean | undefined;
|
|
32677
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
32678
|
+
checkoutSparse?: boolean | undefined;
|
|
32382
32679
|
credentialId?: string | undefined;
|
|
32383
32680
|
connectionId?: string | undefined;
|
|
32384
32681
|
} | undefined;
|
|
@@ -32394,6 +32691,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32394
32691
|
commitMessage?: string | undefined;
|
|
32395
32692
|
pullRequestTitle?: string | undefined;
|
|
32396
32693
|
pullRequestDescription?: string | undefined;
|
|
32694
|
+
checkoutNoTags?: boolean | undefined;
|
|
32695
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
32696
|
+
checkoutSparse?: boolean | undefined;
|
|
32397
32697
|
credentialId?: string | undefined;
|
|
32398
32698
|
connectionId?: string | undefined;
|
|
32399
32699
|
} | undefined;
|
|
@@ -32411,6 +32711,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32411
32711
|
commitMessage?: string | undefined;
|
|
32412
32712
|
pullRequestTitle?: string | undefined;
|
|
32413
32713
|
pullRequestDescription?: string | undefined;
|
|
32714
|
+
checkoutNoTags?: boolean | undefined;
|
|
32715
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
32716
|
+
checkoutSparse?: boolean | undefined;
|
|
32414
32717
|
credentialId?: string | undefined;
|
|
32415
32718
|
connectionId?: string | undefined;
|
|
32416
32719
|
} | undefined;
|
|
@@ -32433,6 +32736,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32433
32736
|
changes?: {
|
|
32434
32737
|
groupPersistentIds: string[];
|
|
32435
32738
|
pagePersistentIds: string[];
|
|
32739
|
+
selectivePublishing?: boolean | undefined;
|
|
32436
32740
|
} | null | undefined;
|
|
32437
32741
|
} | undefined;
|
|
32438
32742
|
destinationS3?: {} | undefined;
|
|
@@ -32447,6 +32751,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32447
32751
|
commitMessage?: string | null | undefined;
|
|
32448
32752
|
pullRequestTitle?: string | null | undefined;
|
|
32449
32753
|
pullRequestDescription?: string | null | undefined;
|
|
32754
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
32755
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
32756
|
+
checkoutSparse?: boolean | null | undefined;
|
|
32450
32757
|
credentialId?: string | undefined;
|
|
32451
32758
|
connectionId?: string | null | undefined;
|
|
32452
32759
|
} | undefined;
|
|
@@ -32464,6 +32771,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32464
32771
|
commitMessage?: string | null | undefined;
|
|
32465
32772
|
pullRequestTitle?: string | null | undefined;
|
|
32466
32773
|
pullRequestDescription?: string | null | undefined;
|
|
32774
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
32775
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
32776
|
+
checkoutSparse?: boolean | null | undefined;
|
|
32467
32777
|
credentialId?: string | undefined;
|
|
32468
32778
|
connectionId?: string | null | undefined;
|
|
32469
32779
|
} | undefined;
|
|
@@ -32479,6 +32789,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32479
32789
|
commitMessage?: string | null | undefined;
|
|
32480
32790
|
pullRequestTitle?: string | null | undefined;
|
|
32481
32791
|
pullRequestDescription?: string | null | undefined;
|
|
32792
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
32793
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
32794
|
+
checkoutSparse?: boolean | null | undefined;
|
|
32482
32795
|
credentialId?: string | undefined;
|
|
32483
32796
|
connectionId?: string | null | undefined;
|
|
32484
32797
|
} | undefined;
|
|
@@ -32496,6 +32809,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32496
32809
|
commitMessage?: string | null | undefined;
|
|
32497
32810
|
pullRequestTitle?: string | null | undefined;
|
|
32498
32811
|
pullRequestDescription?: string | null | undefined;
|
|
32812
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
32813
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
32814
|
+
checkoutSparse?: boolean | null | undefined;
|
|
32499
32815
|
credentialId?: string | undefined;
|
|
32500
32816
|
connectionId?: string | null | undefined;
|
|
32501
32817
|
} | undefined;
|
|
@@ -32743,6 +33059,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32743
33059
|
changes?: {
|
|
32744
33060
|
groupPersistentIds: string[];
|
|
32745
33061
|
pagePersistentIds: string[];
|
|
33062
|
+
selectivePublishing?: boolean | undefined;
|
|
32746
33063
|
} | undefined;
|
|
32747
33064
|
} | undefined;
|
|
32748
33065
|
destinationS3?: {} | undefined;
|
|
@@ -32757,6 +33074,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32757
33074
|
commitMessage?: string | undefined;
|
|
32758
33075
|
pullRequestTitle?: string | undefined;
|
|
32759
33076
|
pullRequestDescription?: string | undefined;
|
|
33077
|
+
checkoutNoTags?: boolean | undefined;
|
|
33078
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
33079
|
+
checkoutSparse?: boolean | undefined;
|
|
32760
33080
|
credentialId?: string | undefined;
|
|
32761
33081
|
connectionId?: string | undefined;
|
|
32762
33082
|
} | undefined;
|
|
@@ -32774,6 +33094,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32774
33094
|
commitMessage?: string | undefined;
|
|
32775
33095
|
pullRequestTitle?: string | undefined;
|
|
32776
33096
|
pullRequestDescription?: string | undefined;
|
|
33097
|
+
checkoutNoTags?: boolean | undefined;
|
|
33098
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
33099
|
+
checkoutSparse?: boolean | undefined;
|
|
32777
33100
|
credentialId?: string | undefined;
|
|
32778
33101
|
connectionId?: string | undefined;
|
|
32779
33102
|
} | undefined;
|
|
@@ -32789,6 +33112,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32789
33112
|
commitMessage?: string | undefined;
|
|
32790
33113
|
pullRequestTitle?: string | undefined;
|
|
32791
33114
|
pullRequestDescription?: string | undefined;
|
|
33115
|
+
checkoutNoTags?: boolean | undefined;
|
|
33116
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
33117
|
+
checkoutSparse?: boolean | undefined;
|
|
32792
33118
|
credentialId?: string | undefined;
|
|
32793
33119
|
connectionId?: string | undefined;
|
|
32794
33120
|
} | undefined;
|
|
@@ -32806,6 +33132,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32806
33132
|
commitMessage?: string | undefined;
|
|
32807
33133
|
pullRequestTitle?: string | undefined;
|
|
32808
33134
|
pullRequestDescription?: string | undefined;
|
|
33135
|
+
checkoutNoTags?: boolean | undefined;
|
|
33136
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
33137
|
+
checkoutSparse?: boolean | undefined;
|
|
32809
33138
|
credentialId?: string | undefined;
|
|
32810
33139
|
connectionId?: string | undefined;
|
|
32811
33140
|
} | undefined;
|
|
@@ -33043,6 +33372,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33043
33372
|
changes?: {
|
|
33044
33373
|
groupPersistentIds: string[];
|
|
33045
33374
|
pagePersistentIds: string[];
|
|
33375
|
+
selectivePublishing?: boolean | undefined;
|
|
33046
33376
|
} | null | undefined;
|
|
33047
33377
|
} | undefined;
|
|
33048
33378
|
destinationS3?: {} | undefined;
|
|
@@ -33057,6 +33387,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33057
33387
|
commitMessage?: string | null | undefined;
|
|
33058
33388
|
pullRequestTitle?: string | null | undefined;
|
|
33059
33389
|
pullRequestDescription?: string | null | undefined;
|
|
33390
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
33391
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
33392
|
+
checkoutSparse?: boolean | null | undefined;
|
|
33060
33393
|
credentialId?: string | undefined;
|
|
33061
33394
|
connectionId?: string | null | undefined;
|
|
33062
33395
|
} | undefined;
|
|
@@ -33074,6 +33407,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33074
33407
|
commitMessage?: string | null | undefined;
|
|
33075
33408
|
pullRequestTitle?: string | null | undefined;
|
|
33076
33409
|
pullRequestDescription?: string | null | undefined;
|
|
33410
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
33411
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
33412
|
+
checkoutSparse?: boolean | null | undefined;
|
|
33077
33413
|
credentialId?: string | undefined;
|
|
33078
33414
|
connectionId?: string | null | undefined;
|
|
33079
33415
|
} | undefined;
|
|
@@ -33089,6 +33425,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33089
33425
|
commitMessage?: string | null | undefined;
|
|
33090
33426
|
pullRequestTitle?: string | null | undefined;
|
|
33091
33427
|
pullRequestDescription?: string | null | undefined;
|
|
33428
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
33429
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
33430
|
+
checkoutSparse?: boolean | null | undefined;
|
|
33092
33431
|
credentialId?: string | undefined;
|
|
33093
33432
|
connectionId?: string | null | undefined;
|
|
33094
33433
|
} | undefined;
|
|
@@ -33106,6 +33445,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33106
33445
|
commitMessage?: string | null | undefined;
|
|
33107
33446
|
pullRequestTitle?: string | null | undefined;
|
|
33108
33447
|
pullRequestDescription?: string | null | undefined;
|
|
33448
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
33449
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
33450
|
+
checkoutSparse?: boolean | null | undefined;
|
|
33109
33451
|
credentialId?: string | undefined;
|
|
33110
33452
|
connectionId?: string | null | undefined;
|
|
33111
33453
|
} | undefined;
|
|
@@ -34209,6 +34551,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
34209
34551
|
changes?: {
|
|
34210
34552
|
groupPersistentIds: string[];
|
|
34211
34553
|
pagePersistentIds: string[];
|
|
34554
|
+
selectivePublishing?: boolean | undefined;
|
|
34212
34555
|
} | undefined;
|
|
34213
34556
|
} | undefined;
|
|
34214
34557
|
destinationS3?: {} | undefined;
|
|
@@ -34223,6 +34566,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
34223
34566
|
commitMessage?: string | undefined;
|
|
34224
34567
|
pullRequestTitle?: string | undefined;
|
|
34225
34568
|
pullRequestDescription?: string | undefined;
|
|
34569
|
+
checkoutNoTags?: boolean | undefined;
|
|
34570
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
34571
|
+
checkoutSparse?: boolean | undefined;
|
|
34226
34572
|
credentialId?: string | undefined;
|
|
34227
34573
|
connectionId?: string | undefined;
|
|
34228
34574
|
} | undefined;
|
|
@@ -34240,6 +34586,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
34240
34586
|
commitMessage?: string | undefined;
|
|
34241
34587
|
pullRequestTitle?: string | undefined;
|
|
34242
34588
|
pullRequestDescription?: string | undefined;
|
|
34589
|
+
checkoutNoTags?: boolean | undefined;
|
|
34590
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
34591
|
+
checkoutSparse?: boolean | undefined;
|
|
34243
34592
|
credentialId?: string | undefined;
|
|
34244
34593
|
connectionId?: string | undefined;
|
|
34245
34594
|
} | undefined;
|
|
@@ -34255,6 +34604,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
34255
34604
|
commitMessage?: string | undefined;
|
|
34256
34605
|
pullRequestTitle?: string | undefined;
|
|
34257
34606
|
pullRequestDescription?: string | undefined;
|
|
34607
|
+
checkoutNoTags?: boolean | undefined;
|
|
34608
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
34609
|
+
checkoutSparse?: boolean | undefined;
|
|
34258
34610
|
credentialId?: string | undefined;
|
|
34259
34611
|
connectionId?: string | undefined;
|
|
34260
34612
|
} | undefined;
|
|
@@ -34272,6 +34624,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
34272
34624
|
commitMessage?: string | undefined;
|
|
34273
34625
|
pullRequestTitle?: string | undefined;
|
|
34274
34626
|
pullRequestDescription?: string | undefined;
|
|
34627
|
+
checkoutNoTags?: boolean | undefined;
|
|
34628
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
34629
|
+
checkoutSparse?: boolean | undefined;
|
|
34275
34630
|
credentialId?: string | undefined;
|
|
34276
34631
|
connectionId?: string | undefined;
|
|
34277
34632
|
} | undefined;
|
|
@@ -35217,6 +35572,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
35217
35572
|
changes?: {
|
|
35218
35573
|
groupPersistentIds: string[];
|
|
35219
35574
|
pagePersistentIds: string[];
|
|
35575
|
+
selectivePublishing?: boolean | undefined;
|
|
35220
35576
|
} | null | undefined;
|
|
35221
35577
|
} | undefined;
|
|
35222
35578
|
destinationS3?: {} | undefined;
|
|
@@ -35231,6 +35587,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
35231
35587
|
commitMessage?: string | null | undefined;
|
|
35232
35588
|
pullRequestTitle?: string | null | undefined;
|
|
35233
35589
|
pullRequestDescription?: string | null | undefined;
|
|
35590
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
35591
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
35592
|
+
checkoutSparse?: boolean | null | undefined;
|
|
35234
35593
|
credentialId?: string | undefined;
|
|
35235
35594
|
connectionId?: string | null | undefined;
|
|
35236
35595
|
} | undefined;
|
|
@@ -35248,6 +35607,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
35248
35607
|
commitMessage?: string | null | undefined;
|
|
35249
35608
|
pullRequestTitle?: string | null | undefined;
|
|
35250
35609
|
pullRequestDescription?: string | null | undefined;
|
|
35610
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
35611
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
35612
|
+
checkoutSparse?: boolean | null | undefined;
|
|
35251
35613
|
credentialId?: string | undefined;
|
|
35252
35614
|
connectionId?: string | null | undefined;
|
|
35253
35615
|
} | undefined;
|
|
@@ -35263,6 +35625,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
35263
35625
|
commitMessage?: string | null | undefined;
|
|
35264
35626
|
pullRequestTitle?: string | null | undefined;
|
|
35265
35627
|
pullRequestDescription?: string | null | undefined;
|
|
35628
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
35629
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
35630
|
+
checkoutSparse?: boolean | null | undefined;
|
|
35266
35631
|
credentialId?: string | undefined;
|
|
35267
35632
|
connectionId?: string | null | undefined;
|
|
35268
35633
|
} | undefined;
|
|
@@ -35280,6 +35645,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
35280
35645
|
commitMessage?: string | null | undefined;
|
|
35281
35646
|
pullRequestTitle?: string | null | undefined;
|
|
35282
35647
|
pullRequestDescription?: string | null | undefined;
|
|
35648
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
35649
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
35650
|
+
checkoutSparse?: boolean | null | undefined;
|
|
35283
35651
|
credentialId?: string | undefined;
|
|
35284
35652
|
connectionId?: string | null | undefined;
|
|
35285
35653
|
} | undefined;
|
|
@@ -142084,8 +142452,8 @@ declare const WorkspaceMembership: z.ZodObject<{
|
|
|
142084
142452
|
isPrimaryOwner: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
142085
142453
|
}, "strip", z.ZodTypeAny, {
|
|
142086
142454
|
id: string;
|
|
142087
|
-
workspaceId: string;
|
|
142088
142455
|
userId: string;
|
|
142456
|
+
workspaceId: string;
|
|
142089
142457
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142090
142458
|
notificationSettings: {
|
|
142091
142459
|
liveblocksNotificationSettings: {
|
|
@@ -142095,8 +142463,8 @@ declare const WorkspaceMembership: z.ZodObject<{
|
|
|
142095
142463
|
isPrimaryOwner?: boolean | null | undefined;
|
|
142096
142464
|
}, {
|
|
142097
142465
|
id: string;
|
|
142098
|
-
workspaceId: string;
|
|
142099
142466
|
userId: string;
|
|
142467
|
+
workspaceId: string;
|
|
142100
142468
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142101
142469
|
notificationSettings: {
|
|
142102
142470
|
liveblocksNotificationSettings: {
|
|
@@ -156413,6 +156781,9 @@ declare const GitCommonDestinationOptions: z.ZodObject<{
|
|
|
156413
156781
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156414
156782
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156415
156783
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156784
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156785
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156786
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156416
156787
|
}, "strip", z.ZodTypeAny, {
|
|
156417
156788
|
branch: string;
|
|
156418
156789
|
relativePath?: string | undefined;
|
|
@@ -156422,6 +156793,9 @@ declare const GitCommonDestinationOptions: z.ZodObject<{
|
|
|
156422
156793
|
commitMessage?: string | undefined;
|
|
156423
156794
|
pullRequestTitle?: string | undefined;
|
|
156424
156795
|
pullRequestDescription?: string | undefined;
|
|
156796
|
+
checkoutNoTags?: boolean | undefined;
|
|
156797
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
156798
|
+
checkoutSparse?: boolean | undefined;
|
|
156425
156799
|
}, {
|
|
156426
156800
|
branch: string;
|
|
156427
156801
|
relativePath?: string | null | undefined;
|
|
@@ -156431,16 +156805,22 @@ declare const GitCommonDestinationOptions: z.ZodObject<{
|
|
|
156431
156805
|
commitMessage?: string | null | undefined;
|
|
156432
156806
|
pullRequestTitle?: string | null | undefined;
|
|
156433
156807
|
pullRequestDescription?: string | null | undefined;
|
|
156808
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
156809
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
156810
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156434
156811
|
}>;
|
|
156435
156812
|
declare const ExportJobDocumentationChanges: z.ZodObject<{
|
|
156436
156813
|
pagePersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
156437
156814
|
groupPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
156815
|
+
selectivePublishing: z.ZodOptional<z.ZodBoolean>;
|
|
156438
156816
|
}, "strip", z.ZodTypeAny, {
|
|
156439
156817
|
groupPersistentIds: string[];
|
|
156440
156818
|
pagePersistentIds: string[];
|
|
156819
|
+
selectivePublishing?: boolean | undefined;
|
|
156441
156820
|
}, {
|
|
156442
156821
|
groupPersistentIds: string[];
|
|
156443
156822
|
pagePersistentIds: string[];
|
|
156823
|
+
selectivePublishing?: boolean | undefined;
|
|
156444
156824
|
}>;
|
|
156445
156825
|
type ExportJobDocumentationChanges = z.infer<typeof ExportJobDocumentationChanges>;
|
|
156446
156826
|
declare const ExporterDestinationDocs: z.ZodObject<{
|
|
@@ -156448,27 +156828,33 @@ declare const ExporterDestinationDocs: z.ZodObject<{
|
|
|
156448
156828
|
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
156449
156829
|
groupPersistentIds: string[];
|
|
156450
156830
|
pagePersistentIds: string[];
|
|
156831
|
+
selectivePublishing?: boolean | undefined;
|
|
156451
156832
|
}, z.ZodTypeDef, {
|
|
156452
156833
|
groupPersistentIds: string[];
|
|
156453
156834
|
pagePersistentIds: string[];
|
|
156835
|
+
selectivePublishing?: boolean | undefined;
|
|
156454
156836
|
}>>>, {
|
|
156455
156837
|
groupPersistentIds: string[];
|
|
156456
156838
|
pagePersistentIds: string[];
|
|
156839
|
+
selectivePublishing?: boolean | undefined;
|
|
156457
156840
|
} | undefined, {
|
|
156458
156841
|
groupPersistentIds: string[];
|
|
156459
156842
|
pagePersistentIds: string[];
|
|
156843
|
+
selectivePublishing?: boolean | undefined;
|
|
156460
156844
|
} | null | undefined>;
|
|
156461
156845
|
}, "strip", z.ZodTypeAny, {
|
|
156462
156846
|
environment: "Live" | "Preview";
|
|
156463
156847
|
changes?: {
|
|
156464
156848
|
groupPersistentIds: string[];
|
|
156465
156849
|
pagePersistentIds: string[];
|
|
156850
|
+
selectivePublishing?: boolean | undefined;
|
|
156466
156851
|
} | undefined;
|
|
156467
156852
|
}, {
|
|
156468
156853
|
environment: "Live" | "Preview";
|
|
156469
156854
|
changes?: {
|
|
156470
156855
|
groupPersistentIds: string[];
|
|
156471
156856
|
pagePersistentIds: string[];
|
|
156857
|
+
selectivePublishing?: boolean | undefined;
|
|
156472
156858
|
} | null | undefined;
|
|
156473
156859
|
}>;
|
|
156474
156860
|
type ExporterDestinationDocs = z.infer<typeof ExporterDestinationDocs>;
|
|
@@ -156488,6 +156874,9 @@ declare const ExporterDestinationGithub: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
156488
156874
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156489
156875
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156490
156876
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156877
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156878
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156879
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156491
156880
|
}>, "strip", z.ZodTypeAny, {
|
|
156492
156881
|
url: string;
|
|
156493
156882
|
branch: string;
|
|
@@ -156499,6 +156888,9 @@ declare const ExporterDestinationGithub: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
156499
156888
|
commitMessage?: string | undefined;
|
|
156500
156889
|
pullRequestTitle?: string | undefined;
|
|
156501
156890
|
pullRequestDescription?: string | undefined;
|
|
156891
|
+
checkoutNoTags?: boolean | undefined;
|
|
156892
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
156893
|
+
checkoutSparse?: boolean | undefined;
|
|
156502
156894
|
credentialId?: string | undefined;
|
|
156503
156895
|
connectionId?: string | undefined;
|
|
156504
156896
|
}, {
|
|
@@ -156512,6 +156904,9 @@ declare const ExporterDestinationGithub: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
156512
156904
|
commitMessage?: string | null | undefined;
|
|
156513
156905
|
pullRequestTitle?: string | null | undefined;
|
|
156514
156906
|
pullRequestDescription?: string | null | undefined;
|
|
156907
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
156908
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
156909
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156515
156910
|
credentialId?: string | undefined;
|
|
156516
156911
|
connectionId?: string | null | undefined;
|
|
156517
156912
|
}>;
|
|
@@ -156533,6 +156928,9 @@ declare const ExporterDestinationAzure: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
156533
156928
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156534
156929
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156535
156930
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156931
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156932
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156933
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156536
156934
|
}>, "strip", z.ZodTypeAny, {
|
|
156537
156935
|
branch: string;
|
|
156538
156936
|
organizationId: string;
|
|
@@ -156547,6 +156945,9 @@ declare const ExporterDestinationAzure: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
156547
156945
|
commitMessage?: string | undefined;
|
|
156548
156946
|
pullRequestTitle?: string | undefined;
|
|
156549
156947
|
pullRequestDescription?: string | undefined;
|
|
156948
|
+
checkoutNoTags?: boolean | undefined;
|
|
156949
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
156950
|
+
checkoutSparse?: boolean | undefined;
|
|
156550
156951
|
credentialId?: string | undefined;
|
|
156551
156952
|
connectionId?: string | undefined;
|
|
156552
156953
|
}, {
|
|
@@ -156563,6 +156964,9 @@ declare const ExporterDestinationAzure: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
156563
156964
|
commitMessage?: string | null | undefined;
|
|
156564
156965
|
pullRequestTitle?: string | null | undefined;
|
|
156565
156966
|
pullRequestDescription?: string | null | undefined;
|
|
156967
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
156968
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
156969
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156566
156970
|
credentialId?: string | undefined;
|
|
156567
156971
|
connectionId?: string | null | undefined;
|
|
156568
156972
|
}>;
|
|
@@ -156582,6 +156986,9 @@ declare const ExporterDestinationGitlab: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
156582
156986
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156583
156987
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156584
156988
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156989
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156990
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156991
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156585
156992
|
}>, "strip", z.ZodTypeAny, {
|
|
156586
156993
|
branch: string;
|
|
156587
156994
|
projectId: string;
|
|
@@ -156594,6 +157001,9 @@ declare const ExporterDestinationGitlab: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
156594
157001
|
commitMessage?: string | undefined;
|
|
156595
157002
|
pullRequestTitle?: string | undefined;
|
|
156596
157003
|
pullRequestDescription?: string | undefined;
|
|
157004
|
+
checkoutNoTags?: boolean | undefined;
|
|
157005
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157006
|
+
checkoutSparse?: boolean | undefined;
|
|
156597
157007
|
credentialId?: string | undefined;
|
|
156598
157008
|
connectionId?: string | undefined;
|
|
156599
157009
|
}, {
|
|
@@ -156608,6 +157018,9 @@ declare const ExporterDestinationGitlab: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
156608
157018
|
commitMessage?: string | null | undefined;
|
|
156609
157019
|
pullRequestTitle?: string | null | undefined;
|
|
156610
157020
|
pullRequestDescription?: string | null | undefined;
|
|
157021
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157022
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157023
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156611
157024
|
credentialId?: string | undefined;
|
|
156612
157025
|
connectionId?: string | null | undefined;
|
|
156613
157026
|
}>;
|
|
@@ -156629,6 +157042,9 @@ declare const ExporterDestinationBitbucket: z.ZodObject<z.objectUtil.extendShape
|
|
|
156629
157042
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156630
157043
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156631
157044
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157045
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157046
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157047
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156632
157048
|
}>, "strip", z.ZodTypeAny, {
|
|
156633
157049
|
branch: string;
|
|
156634
157050
|
workspaceSlug: string;
|
|
@@ -156643,6 +157059,9 @@ declare const ExporterDestinationBitbucket: z.ZodObject<z.objectUtil.extendShape
|
|
|
156643
157059
|
commitMessage?: string | undefined;
|
|
156644
157060
|
pullRequestTitle?: string | undefined;
|
|
156645
157061
|
pullRequestDescription?: string | undefined;
|
|
157062
|
+
checkoutNoTags?: boolean | undefined;
|
|
157063
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157064
|
+
checkoutSparse?: boolean | undefined;
|
|
156646
157065
|
credentialId?: string | undefined;
|
|
156647
157066
|
connectionId?: string | undefined;
|
|
156648
157067
|
}, {
|
|
@@ -156659,6 +157078,9 @@ declare const ExporterDestinationBitbucket: z.ZodObject<z.objectUtil.extendShape
|
|
|
156659
157078
|
commitMessage?: string | null | undefined;
|
|
156660
157079
|
pullRequestTitle?: string | null | undefined;
|
|
156661
157080
|
pullRequestDescription?: string | null | undefined;
|
|
157081
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157082
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157083
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156662
157084
|
credentialId?: string | undefined;
|
|
156663
157085
|
connectionId?: string | null | undefined;
|
|
156664
157086
|
}>;
|
|
@@ -156670,27 +157092,33 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156670
157092
|
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
156671
157093
|
groupPersistentIds: string[];
|
|
156672
157094
|
pagePersistentIds: string[];
|
|
157095
|
+
selectivePublishing?: boolean | undefined;
|
|
156673
157096
|
}, z.ZodTypeDef, {
|
|
156674
157097
|
groupPersistentIds: string[];
|
|
156675
157098
|
pagePersistentIds: string[];
|
|
157099
|
+
selectivePublishing?: boolean | undefined;
|
|
156676
157100
|
}>>>, {
|
|
156677
157101
|
groupPersistentIds: string[];
|
|
156678
157102
|
pagePersistentIds: string[];
|
|
157103
|
+
selectivePublishing?: boolean | undefined;
|
|
156679
157104
|
} | undefined, {
|
|
156680
157105
|
groupPersistentIds: string[];
|
|
156681
157106
|
pagePersistentIds: string[];
|
|
157107
|
+
selectivePublishing?: boolean | undefined;
|
|
156682
157108
|
} | null | undefined>;
|
|
156683
157109
|
}, "strip", z.ZodTypeAny, {
|
|
156684
157110
|
environment: "Live" | "Preview";
|
|
156685
157111
|
changes?: {
|
|
156686
157112
|
groupPersistentIds: string[];
|
|
156687
157113
|
pagePersistentIds: string[];
|
|
157114
|
+
selectivePublishing?: boolean | undefined;
|
|
156688
157115
|
} | undefined;
|
|
156689
157116
|
}, {
|
|
156690
157117
|
environment: "Live" | "Preview";
|
|
156691
157118
|
changes?: {
|
|
156692
157119
|
groupPersistentIds: string[];
|
|
156693
157120
|
pagePersistentIds: string[];
|
|
157121
|
+
selectivePublishing?: boolean | undefined;
|
|
156694
157122
|
} | null | undefined;
|
|
156695
157123
|
}>>;
|
|
156696
157124
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
@@ -156708,6 +157136,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156708
157136
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156709
157137
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156710
157138
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157139
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157140
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157141
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156711
157142
|
}>, "strip", z.ZodTypeAny, {
|
|
156712
157143
|
url: string;
|
|
156713
157144
|
branch: string;
|
|
@@ -156719,6 +157150,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156719
157150
|
commitMessage?: string | undefined;
|
|
156720
157151
|
pullRequestTitle?: string | undefined;
|
|
156721
157152
|
pullRequestDescription?: string | undefined;
|
|
157153
|
+
checkoutNoTags?: boolean | undefined;
|
|
157154
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157155
|
+
checkoutSparse?: boolean | undefined;
|
|
156722
157156
|
credentialId?: string | undefined;
|
|
156723
157157
|
connectionId?: string | undefined;
|
|
156724
157158
|
}, {
|
|
@@ -156732,6 +157166,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156732
157166
|
commitMessage?: string | null | undefined;
|
|
156733
157167
|
pullRequestTitle?: string | null | undefined;
|
|
156734
157168
|
pullRequestDescription?: string | null | undefined;
|
|
157169
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157170
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157171
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156735
157172
|
credentialId?: string | undefined;
|
|
156736
157173
|
connectionId?: string | null | undefined;
|
|
156737
157174
|
}>>;
|
|
@@ -156752,6 +157189,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156752
157189
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156753
157190
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156754
157191
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157192
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157193
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157194
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156755
157195
|
}>, "strip", z.ZodTypeAny, {
|
|
156756
157196
|
branch: string;
|
|
156757
157197
|
organizationId: string;
|
|
@@ -156766,6 +157206,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156766
157206
|
commitMessage?: string | undefined;
|
|
156767
157207
|
pullRequestTitle?: string | undefined;
|
|
156768
157208
|
pullRequestDescription?: string | undefined;
|
|
157209
|
+
checkoutNoTags?: boolean | undefined;
|
|
157210
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157211
|
+
checkoutSparse?: boolean | undefined;
|
|
156769
157212
|
credentialId?: string | undefined;
|
|
156770
157213
|
connectionId?: string | undefined;
|
|
156771
157214
|
}, {
|
|
@@ -156782,6 +157225,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156782
157225
|
commitMessage?: string | null | undefined;
|
|
156783
157226
|
pullRequestTitle?: string | null | undefined;
|
|
156784
157227
|
pullRequestDescription?: string | null | undefined;
|
|
157228
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157229
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157230
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156785
157231
|
credentialId?: string | undefined;
|
|
156786
157232
|
connectionId?: string | null | undefined;
|
|
156787
157233
|
}>>;
|
|
@@ -156800,6 +157246,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156800
157246
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156801
157247
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156802
157248
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157249
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157250
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157251
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156803
157252
|
}>, "strip", z.ZodTypeAny, {
|
|
156804
157253
|
branch: string;
|
|
156805
157254
|
projectId: string;
|
|
@@ -156812,6 +157261,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156812
157261
|
commitMessage?: string | undefined;
|
|
156813
157262
|
pullRequestTitle?: string | undefined;
|
|
156814
157263
|
pullRequestDescription?: string | undefined;
|
|
157264
|
+
checkoutNoTags?: boolean | undefined;
|
|
157265
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157266
|
+
checkoutSparse?: boolean | undefined;
|
|
156815
157267
|
credentialId?: string | undefined;
|
|
156816
157268
|
connectionId?: string | undefined;
|
|
156817
157269
|
}, {
|
|
@@ -156826,6 +157278,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156826
157278
|
commitMessage?: string | null | undefined;
|
|
156827
157279
|
pullRequestTitle?: string | null | undefined;
|
|
156828
157280
|
pullRequestDescription?: string | null | undefined;
|
|
157281
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157282
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157283
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156829
157284
|
credentialId?: string | undefined;
|
|
156830
157285
|
connectionId?: string | null | undefined;
|
|
156831
157286
|
}>>;
|
|
@@ -156846,6 +157301,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156846
157301
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156847
157302
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
156848
157303
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157304
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157305
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157306
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
156849
157307
|
}>, "strip", z.ZodTypeAny, {
|
|
156850
157308
|
branch: string;
|
|
156851
157309
|
workspaceSlug: string;
|
|
@@ -156860,6 +157318,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156860
157318
|
commitMessage?: string | undefined;
|
|
156861
157319
|
pullRequestTitle?: string | undefined;
|
|
156862
157320
|
pullRequestDescription?: string | undefined;
|
|
157321
|
+
checkoutNoTags?: boolean | undefined;
|
|
157322
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157323
|
+
checkoutSparse?: boolean | undefined;
|
|
156863
157324
|
credentialId?: string | undefined;
|
|
156864
157325
|
connectionId?: string | undefined;
|
|
156865
157326
|
}, {
|
|
@@ -156876,6 +157337,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156876
157337
|
commitMessage?: string | null | undefined;
|
|
156877
157338
|
pullRequestTitle?: string | null | undefined;
|
|
156878
157339
|
pullRequestDescription?: string | null | undefined;
|
|
157340
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157341
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157342
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156879
157343
|
credentialId?: string | undefined;
|
|
156880
157344
|
connectionId?: string | null | undefined;
|
|
156881
157345
|
}>>;
|
|
@@ -156886,6 +157350,7 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156886
157350
|
changes?: {
|
|
156887
157351
|
groupPersistentIds: string[];
|
|
156888
157352
|
pagePersistentIds: string[];
|
|
157353
|
+
selectivePublishing?: boolean | undefined;
|
|
156889
157354
|
} | undefined;
|
|
156890
157355
|
} | undefined;
|
|
156891
157356
|
destinationS3?: {} | undefined;
|
|
@@ -156900,6 +157365,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156900
157365
|
commitMessage?: string | undefined;
|
|
156901
157366
|
pullRequestTitle?: string | undefined;
|
|
156902
157367
|
pullRequestDescription?: string | undefined;
|
|
157368
|
+
checkoutNoTags?: boolean | undefined;
|
|
157369
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157370
|
+
checkoutSparse?: boolean | undefined;
|
|
156903
157371
|
credentialId?: string | undefined;
|
|
156904
157372
|
connectionId?: string | undefined;
|
|
156905
157373
|
} | undefined;
|
|
@@ -156917,6 +157385,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156917
157385
|
commitMessage?: string | undefined;
|
|
156918
157386
|
pullRequestTitle?: string | undefined;
|
|
156919
157387
|
pullRequestDescription?: string | undefined;
|
|
157388
|
+
checkoutNoTags?: boolean | undefined;
|
|
157389
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157390
|
+
checkoutSparse?: boolean | undefined;
|
|
156920
157391
|
credentialId?: string | undefined;
|
|
156921
157392
|
connectionId?: string | undefined;
|
|
156922
157393
|
} | undefined;
|
|
@@ -156932,6 +157403,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156932
157403
|
commitMessage?: string | undefined;
|
|
156933
157404
|
pullRequestTitle?: string | undefined;
|
|
156934
157405
|
pullRequestDescription?: string | undefined;
|
|
157406
|
+
checkoutNoTags?: boolean | undefined;
|
|
157407
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157408
|
+
checkoutSparse?: boolean | undefined;
|
|
156935
157409
|
credentialId?: string | undefined;
|
|
156936
157410
|
connectionId?: string | undefined;
|
|
156937
157411
|
} | undefined;
|
|
@@ -156949,6 +157423,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156949
157423
|
commitMessage?: string | undefined;
|
|
156950
157424
|
pullRequestTitle?: string | undefined;
|
|
156951
157425
|
pullRequestDescription?: string | undefined;
|
|
157426
|
+
checkoutNoTags?: boolean | undefined;
|
|
157427
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157428
|
+
checkoutSparse?: boolean | undefined;
|
|
156952
157429
|
credentialId?: string | undefined;
|
|
156953
157430
|
connectionId?: string | undefined;
|
|
156954
157431
|
} | undefined;
|
|
@@ -156959,6 +157436,7 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156959
157436
|
changes?: {
|
|
156960
157437
|
groupPersistentIds: string[];
|
|
156961
157438
|
pagePersistentIds: string[];
|
|
157439
|
+
selectivePublishing?: boolean | undefined;
|
|
156962
157440
|
} | null | undefined;
|
|
156963
157441
|
} | undefined;
|
|
156964
157442
|
destinationS3?: {} | undefined;
|
|
@@ -156973,6 +157451,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156973
157451
|
commitMessage?: string | null | undefined;
|
|
156974
157452
|
pullRequestTitle?: string | null | undefined;
|
|
156975
157453
|
pullRequestDescription?: string | null | undefined;
|
|
157454
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157455
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157456
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156976
157457
|
credentialId?: string | undefined;
|
|
156977
157458
|
connectionId?: string | null | undefined;
|
|
156978
157459
|
} | undefined;
|
|
@@ -156990,6 +157471,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
156990
157471
|
commitMessage?: string | null | undefined;
|
|
156991
157472
|
pullRequestTitle?: string | null | undefined;
|
|
156992
157473
|
pullRequestDescription?: string | null | undefined;
|
|
157474
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157475
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157476
|
+
checkoutSparse?: boolean | null | undefined;
|
|
156993
157477
|
credentialId?: string | undefined;
|
|
156994
157478
|
connectionId?: string | null | undefined;
|
|
156995
157479
|
} | undefined;
|
|
@@ -157005,6 +157489,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
157005
157489
|
commitMessage?: string | null | undefined;
|
|
157006
157490
|
pullRequestTitle?: string | null | undefined;
|
|
157007
157491
|
pullRequestDescription?: string | null | undefined;
|
|
157492
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157493
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157494
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157008
157495
|
credentialId?: string | undefined;
|
|
157009
157496
|
connectionId?: string | null | undefined;
|
|
157010
157497
|
} | undefined;
|
|
@@ -157022,6 +157509,9 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
157022
157509
|
commitMessage?: string | null | undefined;
|
|
157023
157510
|
pullRequestTitle?: string | null | undefined;
|
|
157024
157511
|
pullRequestDescription?: string | null | undefined;
|
|
157512
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157513
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157514
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157025
157515
|
credentialId?: string | undefined;
|
|
157026
157516
|
connectionId?: string | null | undefined;
|
|
157027
157517
|
} | undefined;
|
|
@@ -157034,27 +157524,33 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157034
157524
|
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
157035
157525
|
groupPersistentIds: string[];
|
|
157036
157526
|
pagePersistentIds: string[];
|
|
157527
|
+
selectivePublishing?: boolean | undefined;
|
|
157037
157528
|
}, z.ZodTypeDef, {
|
|
157038
157529
|
groupPersistentIds: string[];
|
|
157039
157530
|
pagePersistentIds: string[];
|
|
157531
|
+
selectivePublishing?: boolean | undefined;
|
|
157040
157532
|
}>>>, {
|
|
157041
157533
|
groupPersistentIds: string[];
|
|
157042
157534
|
pagePersistentIds: string[];
|
|
157535
|
+
selectivePublishing?: boolean | undefined;
|
|
157043
157536
|
} | undefined, {
|
|
157044
157537
|
groupPersistentIds: string[];
|
|
157045
157538
|
pagePersistentIds: string[];
|
|
157539
|
+
selectivePublishing?: boolean | undefined;
|
|
157046
157540
|
} | null | undefined>;
|
|
157047
157541
|
}, "strip", z.ZodTypeAny, {
|
|
157048
157542
|
environment: "Live" | "Preview";
|
|
157049
157543
|
changes?: {
|
|
157050
157544
|
groupPersistentIds: string[];
|
|
157051
157545
|
pagePersistentIds: string[];
|
|
157546
|
+
selectivePublishing?: boolean | undefined;
|
|
157052
157547
|
} | undefined;
|
|
157053
157548
|
}, {
|
|
157054
157549
|
environment: "Live" | "Preview";
|
|
157055
157550
|
changes?: {
|
|
157056
157551
|
groupPersistentIds: string[];
|
|
157057
157552
|
pagePersistentIds: string[];
|
|
157553
|
+
selectivePublishing?: boolean | undefined;
|
|
157058
157554
|
} | null | undefined;
|
|
157059
157555
|
}>>>;
|
|
157060
157556
|
destinationS3: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>>;
|
|
@@ -157072,6 +157568,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157072
157568
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157073
157569
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157074
157570
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157571
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157572
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157573
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157075
157574
|
}>, "strip", z.ZodTypeAny, {
|
|
157076
157575
|
url: string;
|
|
157077
157576
|
branch: string;
|
|
@@ -157083,6 +157582,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157083
157582
|
commitMessage?: string | undefined;
|
|
157084
157583
|
pullRequestTitle?: string | undefined;
|
|
157085
157584
|
pullRequestDescription?: string | undefined;
|
|
157585
|
+
checkoutNoTags?: boolean | undefined;
|
|
157586
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157587
|
+
checkoutSparse?: boolean | undefined;
|
|
157086
157588
|
credentialId?: string | undefined;
|
|
157087
157589
|
connectionId?: string | undefined;
|
|
157088
157590
|
}, {
|
|
@@ -157096,6 +157598,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157096
157598
|
commitMessage?: string | null | undefined;
|
|
157097
157599
|
pullRequestTitle?: string | null | undefined;
|
|
157098
157600
|
pullRequestDescription?: string | null | undefined;
|
|
157601
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157602
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157603
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157099
157604
|
credentialId?: string | undefined;
|
|
157100
157605
|
connectionId?: string | null | undefined;
|
|
157101
157606
|
}>>>;
|
|
@@ -157116,6 +157621,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157116
157621
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157117
157622
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157118
157623
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157624
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157625
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157626
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157119
157627
|
}>, "strip", z.ZodTypeAny, {
|
|
157120
157628
|
branch: string;
|
|
157121
157629
|
organizationId: string;
|
|
@@ -157130,6 +157638,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157130
157638
|
commitMessage?: string | undefined;
|
|
157131
157639
|
pullRequestTitle?: string | undefined;
|
|
157132
157640
|
pullRequestDescription?: string | undefined;
|
|
157641
|
+
checkoutNoTags?: boolean | undefined;
|
|
157642
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157643
|
+
checkoutSparse?: boolean | undefined;
|
|
157133
157644
|
credentialId?: string | undefined;
|
|
157134
157645
|
connectionId?: string | undefined;
|
|
157135
157646
|
}, {
|
|
@@ -157146,6 +157657,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157146
157657
|
commitMessage?: string | null | undefined;
|
|
157147
157658
|
pullRequestTitle?: string | null | undefined;
|
|
157148
157659
|
pullRequestDescription?: string | null | undefined;
|
|
157660
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157661
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157662
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157149
157663
|
credentialId?: string | undefined;
|
|
157150
157664
|
connectionId?: string | null | undefined;
|
|
157151
157665
|
}>>>;
|
|
@@ -157164,6 +157678,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157164
157678
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157165
157679
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157166
157680
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157681
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157682
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157683
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157167
157684
|
}>, "strip", z.ZodTypeAny, {
|
|
157168
157685
|
branch: string;
|
|
157169
157686
|
projectId: string;
|
|
@@ -157176,6 +157693,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157176
157693
|
commitMessage?: string | undefined;
|
|
157177
157694
|
pullRequestTitle?: string | undefined;
|
|
157178
157695
|
pullRequestDescription?: string | undefined;
|
|
157696
|
+
checkoutNoTags?: boolean | undefined;
|
|
157697
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157698
|
+
checkoutSparse?: boolean | undefined;
|
|
157179
157699
|
credentialId?: string | undefined;
|
|
157180
157700
|
connectionId?: string | undefined;
|
|
157181
157701
|
}, {
|
|
@@ -157190,6 +157710,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157190
157710
|
commitMessage?: string | null | undefined;
|
|
157191
157711
|
pullRequestTitle?: string | null | undefined;
|
|
157192
157712
|
pullRequestDescription?: string | null | undefined;
|
|
157713
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157714
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157715
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157193
157716
|
credentialId?: string | undefined;
|
|
157194
157717
|
connectionId?: string | null | undefined;
|
|
157195
157718
|
}>>>;
|
|
@@ -157210,6 +157733,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157210
157733
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157211
157734
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157212
157735
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157736
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157737
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157738
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157213
157739
|
}>, "strip", z.ZodTypeAny, {
|
|
157214
157740
|
branch: string;
|
|
157215
157741
|
workspaceSlug: string;
|
|
@@ -157224,6 +157750,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157224
157750
|
commitMessage?: string | undefined;
|
|
157225
157751
|
pullRequestTitle?: string | undefined;
|
|
157226
157752
|
pullRequestDescription?: string | undefined;
|
|
157753
|
+
checkoutNoTags?: boolean | undefined;
|
|
157754
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157755
|
+
checkoutSparse?: boolean | undefined;
|
|
157227
157756
|
credentialId?: string | undefined;
|
|
157228
157757
|
connectionId?: string | undefined;
|
|
157229
157758
|
}, {
|
|
@@ -157240,6 +157769,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157240
157769
|
commitMessage?: string | null | undefined;
|
|
157241
157770
|
pullRequestTitle?: string | null | undefined;
|
|
157242
157771
|
pullRequestDescription?: string | null | undefined;
|
|
157772
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157773
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157774
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157243
157775
|
credentialId?: string | undefined;
|
|
157244
157776
|
connectionId?: string | null | undefined;
|
|
157245
157777
|
}>>>;
|
|
@@ -157250,6 +157782,7 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157250
157782
|
changes?: {
|
|
157251
157783
|
groupPersistentIds: string[];
|
|
157252
157784
|
pagePersistentIds: string[];
|
|
157785
|
+
selectivePublishing?: boolean | undefined;
|
|
157253
157786
|
} | undefined;
|
|
157254
157787
|
} | null | undefined;
|
|
157255
157788
|
destinationS3?: {} | null | undefined;
|
|
@@ -157264,6 +157797,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157264
157797
|
commitMessage?: string | undefined;
|
|
157265
157798
|
pullRequestTitle?: string | undefined;
|
|
157266
157799
|
pullRequestDescription?: string | undefined;
|
|
157800
|
+
checkoutNoTags?: boolean | undefined;
|
|
157801
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157802
|
+
checkoutSparse?: boolean | undefined;
|
|
157267
157803
|
credentialId?: string | undefined;
|
|
157268
157804
|
connectionId?: string | undefined;
|
|
157269
157805
|
} | null | undefined;
|
|
@@ -157281,6 +157817,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157281
157817
|
commitMessage?: string | undefined;
|
|
157282
157818
|
pullRequestTitle?: string | undefined;
|
|
157283
157819
|
pullRequestDescription?: string | undefined;
|
|
157820
|
+
checkoutNoTags?: boolean | undefined;
|
|
157821
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157822
|
+
checkoutSparse?: boolean | undefined;
|
|
157284
157823
|
credentialId?: string | undefined;
|
|
157285
157824
|
connectionId?: string | undefined;
|
|
157286
157825
|
} | null | undefined;
|
|
@@ -157296,6 +157835,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157296
157835
|
commitMessage?: string | undefined;
|
|
157297
157836
|
pullRequestTitle?: string | undefined;
|
|
157298
157837
|
pullRequestDescription?: string | undefined;
|
|
157838
|
+
checkoutNoTags?: boolean | undefined;
|
|
157839
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157840
|
+
checkoutSparse?: boolean | undefined;
|
|
157299
157841
|
credentialId?: string | undefined;
|
|
157300
157842
|
connectionId?: string | undefined;
|
|
157301
157843
|
} | null | undefined;
|
|
@@ -157313,6 +157855,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157313
157855
|
commitMessage?: string | undefined;
|
|
157314
157856
|
pullRequestTitle?: string | undefined;
|
|
157315
157857
|
pullRequestDescription?: string | undefined;
|
|
157858
|
+
checkoutNoTags?: boolean | undefined;
|
|
157859
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
157860
|
+
checkoutSparse?: boolean | undefined;
|
|
157316
157861
|
credentialId?: string | undefined;
|
|
157317
157862
|
connectionId?: string | undefined;
|
|
157318
157863
|
} | null | undefined;
|
|
@@ -157323,6 +157868,7 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157323
157868
|
changes?: {
|
|
157324
157869
|
groupPersistentIds: string[];
|
|
157325
157870
|
pagePersistentIds: string[];
|
|
157871
|
+
selectivePublishing?: boolean | undefined;
|
|
157326
157872
|
} | null | undefined;
|
|
157327
157873
|
} | null | undefined;
|
|
157328
157874
|
destinationS3?: {} | null | undefined;
|
|
@@ -157337,6 +157883,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157337
157883
|
commitMessage?: string | null | undefined;
|
|
157338
157884
|
pullRequestTitle?: string | null | undefined;
|
|
157339
157885
|
pullRequestDescription?: string | null | undefined;
|
|
157886
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157887
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157888
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157340
157889
|
credentialId?: string | undefined;
|
|
157341
157890
|
connectionId?: string | null | undefined;
|
|
157342
157891
|
} | null | undefined;
|
|
@@ -157354,6 +157903,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157354
157903
|
commitMessage?: string | null | undefined;
|
|
157355
157904
|
pullRequestTitle?: string | null | undefined;
|
|
157356
157905
|
pullRequestDescription?: string | null | undefined;
|
|
157906
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157907
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157908
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157357
157909
|
credentialId?: string | undefined;
|
|
157358
157910
|
connectionId?: string | null | undefined;
|
|
157359
157911
|
} | null | undefined;
|
|
@@ -157369,6 +157921,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157369
157921
|
commitMessage?: string | null | undefined;
|
|
157370
157922
|
pullRequestTitle?: string | null | undefined;
|
|
157371
157923
|
pullRequestDescription?: string | null | undefined;
|
|
157924
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157925
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157926
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157372
157927
|
credentialId?: string | undefined;
|
|
157373
157928
|
connectionId?: string | null | undefined;
|
|
157374
157929
|
} | null | undefined;
|
|
@@ -157386,6 +157941,9 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
157386
157941
|
commitMessage?: string | null | undefined;
|
|
157387
157942
|
pullRequestTitle?: string | null | undefined;
|
|
157388
157943
|
pullRequestDescription?: string | null | undefined;
|
|
157944
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
157945
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
157946
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157389
157947
|
credentialId?: string | undefined;
|
|
157390
157948
|
connectionId?: string | null | undefined;
|
|
157391
157949
|
} | null | undefined;
|
|
@@ -157622,27 +158180,33 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157622
158180
|
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
157623
158181
|
groupPersistentIds: string[];
|
|
157624
158182
|
pagePersistentIds: string[];
|
|
158183
|
+
selectivePublishing?: boolean | undefined;
|
|
157625
158184
|
}, z.ZodTypeDef, {
|
|
157626
158185
|
groupPersistentIds: string[];
|
|
157627
158186
|
pagePersistentIds: string[];
|
|
158187
|
+
selectivePublishing?: boolean | undefined;
|
|
157628
158188
|
}>>>, {
|
|
157629
158189
|
groupPersistentIds: string[];
|
|
157630
158190
|
pagePersistentIds: string[];
|
|
158191
|
+
selectivePublishing?: boolean | undefined;
|
|
157631
158192
|
} | undefined, {
|
|
157632
158193
|
groupPersistentIds: string[];
|
|
157633
158194
|
pagePersistentIds: string[];
|
|
158195
|
+
selectivePublishing?: boolean | undefined;
|
|
157634
158196
|
} | null | undefined>;
|
|
157635
158197
|
}, "strip", z.ZodTypeAny, {
|
|
157636
158198
|
environment: "Live" | "Preview";
|
|
157637
158199
|
changes?: {
|
|
157638
158200
|
groupPersistentIds: string[];
|
|
157639
158201
|
pagePersistentIds: string[];
|
|
158202
|
+
selectivePublishing?: boolean | undefined;
|
|
157640
158203
|
} | undefined;
|
|
157641
158204
|
}, {
|
|
157642
158205
|
environment: "Live" | "Preview";
|
|
157643
158206
|
changes?: {
|
|
157644
158207
|
groupPersistentIds: string[];
|
|
157645
158208
|
pagePersistentIds: string[];
|
|
158209
|
+
selectivePublishing?: boolean | undefined;
|
|
157646
158210
|
} | null | undefined;
|
|
157647
158211
|
}>>;
|
|
157648
158212
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
@@ -157660,6 +158224,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157660
158224
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157661
158225
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157662
158226
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
158227
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
158228
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
158229
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157663
158230
|
}>, "strip", z.ZodTypeAny, {
|
|
157664
158231
|
url: string;
|
|
157665
158232
|
branch: string;
|
|
@@ -157671,6 +158238,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157671
158238
|
commitMessage?: string | undefined;
|
|
157672
158239
|
pullRequestTitle?: string | undefined;
|
|
157673
158240
|
pullRequestDescription?: string | undefined;
|
|
158241
|
+
checkoutNoTags?: boolean | undefined;
|
|
158242
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
158243
|
+
checkoutSparse?: boolean | undefined;
|
|
157674
158244
|
credentialId?: string | undefined;
|
|
157675
158245
|
connectionId?: string | undefined;
|
|
157676
158246
|
}, {
|
|
@@ -157684,6 +158254,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157684
158254
|
commitMessage?: string | null | undefined;
|
|
157685
158255
|
pullRequestTitle?: string | null | undefined;
|
|
157686
158256
|
pullRequestDescription?: string | null | undefined;
|
|
158257
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
158258
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
158259
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157687
158260
|
credentialId?: string | undefined;
|
|
157688
158261
|
connectionId?: string | null | undefined;
|
|
157689
158262
|
}>>;
|
|
@@ -157704,6 +158277,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157704
158277
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157705
158278
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157706
158279
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
158280
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
158281
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
158282
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157707
158283
|
}>, "strip", z.ZodTypeAny, {
|
|
157708
158284
|
branch: string;
|
|
157709
158285
|
organizationId: string;
|
|
@@ -157718,6 +158294,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157718
158294
|
commitMessage?: string | undefined;
|
|
157719
158295
|
pullRequestTitle?: string | undefined;
|
|
157720
158296
|
pullRequestDescription?: string | undefined;
|
|
158297
|
+
checkoutNoTags?: boolean | undefined;
|
|
158298
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
158299
|
+
checkoutSparse?: boolean | undefined;
|
|
157721
158300
|
credentialId?: string | undefined;
|
|
157722
158301
|
connectionId?: string | undefined;
|
|
157723
158302
|
}, {
|
|
@@ -157734,6 +158313,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157734
158313
|
commitMessage?: string | null | undefined;
|
|
157735
158314
|
pullRequestTitle?: string | null | undefined;
|
|
157736
158315
|
pullRequestDescription?: string | null | undefined;
|
|
158316
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
158317
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
158318
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157737
158319
|
credentialId?: string | undefined;
|
|
157738
158320
|
connectionId?: string | null | undefined;
|
|
157739
158321
|
}>>;
|
|
@@ -157752,6 +158334,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157752
158334
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157753
158335
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157754
158336
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
158337
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
158338
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
158339
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157755
158340
|
}>, "strip", z.ZodTypeAny, {
|
|
157756
158341
|
branch: string;
|
|
157757
158342
|
projectId: string;
|
|
@@ -157764,6 +158349,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157764
158349
|
commitMessage?: string | undefined;
|
|
157765
158350
|
pullRequestTitle?: string | undefined;
|
|
157766
158351
|
pullRequestDescription?: string | undefined;
|
|
158352
|
+
checkoutNoTags?: boolean | undefined;
|
|
158353
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
158354
|
+
checkoutSparse?: boolean | undefined;
|
|
157767
158355
|
credentialId?: string | undefined;
|
|
157768
158356
|
connectionId?: string | undefined;
|
|
157769
158357
|
}, {
|
|
@@ -157778,6 +158366,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157778
158366
|
commitMessage?: string | null | undefined;
|
|
157779
158367
|
pullRequestTitle?: string | null | undefined;
|
|
157780
158368
|
pullRequestDescription?: string | null | undefined;
|
|
158369
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
158370
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
158371
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157781
158372
|
credentialId?: string | undefined;
|
|
157782
158373
|
connectionId?: string | null | undefined;
|
|
157783
158374
|
}>>;
|
|
@@ -157798,6 +158389,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157798
158389
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157799
158390
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157800
158391
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
158392
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
158393
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
158394
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
157801
158395
|
}>, "strip", z.ZodTypeAny, {
|
|
157802
158396
|
branch: string;
|
|
157803
158397
|
workspaceSlug: string;
|
|
@@ -157812,6 +158406,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157812
158406
|
commitMessage?: string | undefined;
|
|
157813
158407
|
pullRequestTitle?: string | undefined;
|
|
157814
158408
|
pullRequestDescription?: string | undefined;
|
|
158409
|
+
checkoutNoTags?: boolean | undefined;
|
|
158410
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
158411
|
+
checkoutSparse?: boolean | undefined;
|
|
157815
158412
|
credentialId?: string | undefined;
|
|
157816
158413
|
connectionId?: string | undefined;
|
|
157817
158414
|
}, {
|
|
@@ -157828,6 +158425,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157828
158425
|
commitMessage?: string | null | undefined;
|
|
157829
158426
|
pullRequestTitle?: string | null | undefined;
|
|
157830
158427
|
pullRequestDescription?: string | null | undefined;
|
|
158428
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
158429
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
158430
|
+
checkoutSparse?: boolean | null | undefined;
|
|
157831
158431
|
credentialId?: string | undefined;
|
|
157832
158432
|
connectionId?: string | null | undefined;
|
|
157833
158433
|
}>>;
|
|
@@ -158026,6 +158626,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158026
158626
|
changes?: {
|
|
158027
158627
|
groupPersistentIds: string[];
|
|
158028
158628
|
pagePersistentIds: string[];
|
|
158629
|
+
selectivePublishing?: boolean | undefined;
|
|
158029
158630
|
} | undefined;
|
|
158030
158631
|
} | undefined;
|
|
158031
158632
|
destinationS3?: {} | undefined;
|
|
@@ -158040,6 +158641,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158040
158641
|
commitMessage?: string | undefined;
|
|
158041
158642
|
pullRequestTitle?: string | undefined;
|
|
158042
158643
|
pullRequestDescription?: string | undefined;
|
|
158644
|
+
checkoutNoTags?: boolean | undefined;
|
|
158645
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
158646
|
+
checkoutSparse?: boolean | undefined;
|
|
158043
158647
|
credentialId?: string | undefined;
|
|
158044
158648
|
connectionId?: string | undefined;
|
|
158045
158649
|
} | undefined;
|
|
@@ -158057,6 +158661,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158057
158661
|
commitMessage?: string | undefined;
|
|
158058
158662
|
pullRequestTitle?: string | undefined;
|
|
158059
158663
|
pullRequestDescription?: string | undefined;
|
|
158664
|
+
checkoutNoTags?: boolean | undefined;
|
|
158665
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
158666
|
+
checkoutSparse?: boolean | undefined;
|
|
158060
158667
|
credentialId?: string | undefined;
|
|
158061
158668
|
connectionId?: string | undefined;
|
|
158062
158669
|
} | undefined;
|
|
@@ -158072,6 +158679,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158072
158679
|
commitMessage?: string | undefined;
|
|
158073
158680
|
pullRequestTitle?: string | undefined;
|
|
158074
158681
|
pullRequestDescription?: string | undefined;
|
|
158682
|
+
checkoutNoTags?: boolean | undefined;
|
|
158683
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
158684
|
+
checkoutSparse?: boolean | undefined;
|
|
158075
158685
|
credentialId?: string | undefined;
|
|
158076
158686
|
connectionId?: string | undefined;
|
|
158077
158687
|
} | undefined;
|
|
@@ -158089,6 +158699,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158089
158699
|
commitMessage?: string | undefined;
|
|
158090
158700
|
pullRequestTitle?: string | undefined;
|
|
158091
158701
|
pullRequestDescription?: string | undefined;
|
|
158702
|
+
checkoutNoTags?: boolean | undefined;
|
|
158703
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
158704
|
+
checkoutSparse?: boolean | undefined;
|
|
158092
158705
|
credentialId?: string | undefined;
|
|
158093
158706
|
connectionId?: string | undefined;
|
|
158094
158707
|
} | undefined;
|
|
@@ -158148,6 +158761,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158148
158761
|
changes?: {
|
|
158149
158762
|
groupPersistentIds: string[];
|
|
158150
158763
|
pagePersistentIds: string[];
|
|
158764
|
+
selectivePublishing?: boolean | undefined;
|
|
158151
158765
|
} | null | undefined;
|
|
158152
158766
|
} | undefined;
|
|
158153
158767
|
destinationS3?: {} | undefined;
|
|
@@ -158162,6 +158776,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158162
158776
|
commitMessage?: string | null | undefined;
|
|
158163
158777
|
pullRequestTitle?: string | null | undefined;
|
|
158164
158778
|
pullRequestDescription?: string | null | undefined;
|
|
158779
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
158780
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
158781
|
+
checkoutSparse?: boolean | null | undefined;
|
|
158165
158782
|
credentialId?: string | undefined;
|
|
158166
158783
|
connectionId?: string | null | undefined;
|
|
158167
158784
|
} | undefined;
|
|
@@ -158179,6 +158796,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158179
158796
|
commitMessage?: string | null | undefined;
|
|
158180
158797
|
pullRequestTitle?: string | null | undefined;
|
|
158181
158798
|
pullRequestDescription?: string | null | undefined;
|
|
158799
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
158800
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
158801
|
+
checkoutSparse?: boolean | null | undefined;
|
|
158182
158802
|
credentialId?: string | undefined;
|
|
158183
158803
|
connectionId?: string | null | undefined;
|
|
158184
158804
|
} | undefined;
|
|
@@ -158194,6 +158814,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158194
158814
|
commitMessage?: string | null | undefined;
|
|
158195
158815
|
pullRequestTitle?: string | null | undefined;
|
|
158196
158816
|
pullRequestDescription?: string | null | undefined;
|
|
158817
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
158818
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
158819
|
+
checkoutSparse?: boolean | null | undefined;
|
|
158197
158820
|
credentialId?: string | undefined;
|
|
158198
158821
|
connectionId?: string | null | undefined;
|
|
158199
158822
|
} | undefined;
|
|
@@ -158211,6 +158834,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158211
158834
|
commitMessage?: string | null | undefined;
|
|
158212
158835
|
pullRequestTitle?: string | null | undefined;
|
|
158213
158836
|
pullRequestDescription?: string | null | undefined;
|
|
158837
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
158838
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
158839
|
+
checkoutSparse?: boolean | null | undefined;
|
|
158214
158840
|
credentialId?: string | undefined;
|
|
158215
158841
|
connectionId?: string | null | undefined;
|
|
158216
158842
|
} | undefined;
|
|
@@ -161099,27 +161725,33 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161099
161725
|
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
161100
161726
|
groupPersistentIds: string[];
|
|
161101
161727
|
pagePersistentIds: string[];
|
|
161728
|
+
selectivePublishing?: boolean | undefined;
|
|
161102
161729
|
}, z.ZodTypeDef, {
|
|
161103
161730
|
groupPersistentIds: string[];
|
|
161104
161731
|
pagePersistentIds: string[];
|
|
161732
|
+
selectivePublishing?: boolean | undefined;
|
|
161105
161733
|
}>>>, {
|
|
161106
161734
|
groupPersistentIds: string[];
|
|
161107
161735
|
pagePersistentIds: string[];
|
|
161736
|
+
selectivePublishing?: boolean | undefined;
|
|
161108
161737
|
} | undefined, {
|
|
161109
161738
|
groupPersistentIds: string[];
|
|
161110
161739
|
pagePersistentIds: string[];
|
|
161740
|
+
selectivePublishing?: boolean | undefined;
|
|
161111
161741
|
} | null | undefined>;
|
|
161112
161742
|
}, "strip", z.ZodTypeAny, {
|
|
161113
161743
|
environment: "Live" | "Preview";
|
|
161114
161744
|
changes?: {
|
|
161115
161745
|
groupPersistentIds: string[];
|
|
161116
161746
|
pagePersistentIds: string[];
|
|
161747
|
+
selectivePublishing?: boolean | undefined;
|
|
161117
161748
|
} | undefined;
|
|
161118
161749
|
}, {
|
|
161119
161750
|
environment: "Live" | "Preview";
|
|
161120
161751
|
changes?: {
|
|
161121
161752
|
groupPersistentIds: string[];
|
|
161122
161753
|
pagePersistentIds: string[];
|
|
161754
|
+
selectivePublishing?: boolean | undefined;
|
|
161123
161755
|
} | null | undefined;
|
|
161124
161756
|
}>>;
|
|
161125
161757
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
@@ -161137,6 +161769,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161137
161769
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161138
161770
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161139
161771
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161772
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161773
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161774
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161140
161775
|
}>, "strip", z.ZodTypeAny, {
|
|
161141
161776
|
url: string;
|
|
161142
161777
|
branch: string;
|
|
@@ -161148,6 +161783,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161148
161783
|
commitMessage?: string | undefined;
|
|
161149
161784
|
pullRequestTitle?: string | undefined;
|
|
161150
161785
|
pullRequestDescription?: string | undefined;
|
|
161786
|
+
checkoutNoTags?: boolean | undefined;
|
|
161787
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
161788
|
+
checkoutSparse?: boolean | undefined;
|
|
161151
161789
|
credentialId?: string | undefined;
|
|
161152
161790
|
connectionId?: string | undefined;
|
|
161153
161791
|
}, {
|
|
@@ -161161,6 +161799,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161161
161799
|
commitMessage?: string | null | undefined;
|
|
161162
161800
|
pullRequestTitle?: string | null | undefined;
|
|
161163
161801
|
pullRequestDescription?: string | null | undefined;
|
|
161802
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
161803
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
161804
|
+
checkoutSparse?: boolean | null | undefined;
|
|
161164
161805
|
credentialId?: string | undefined;
|
|
161165
161806
|
connectionId?: string | null | undefined;
|
|
161166
161807
|
}>>;
|
|
@@ -161181,6 +161822,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161181
161822
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161182
161823
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161183
161824
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161825
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161826
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161827
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161184
161828
|
}>, "strip", z.ZodTypeAny, {
|
|
161185
161829
|
branch: string;
|
|
161186
161830
|
organizationId: string;
|
|
@@ -161195,6 +161839,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161195
161839
|
commitMessage?: string | undefined;
|
|
161196
161840
|
pullRequestTitle?: string | undefined;
|
|
161197
161841
|
pullRequestDescription?: string | undefined;
|
|
161842
|
+
checkoutNoTags?: boolean | undefined;
|
|
161843
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
161844
|
+
checkoutSparse?: boolean | undefined;
|
|
161198
161845
|
credentialId?: string | undefined;
|
|
161199
161846
|
connectionId?: string | undefined;
|
|
161200
161847
|
}, {
|
|
@@ -161211,6 +161858,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161211
161858
|
commitMessage?: string | null | undefined;
|
|
161212
161859
|
pullRequestTitle?: string | null | undefined;
|
|
161213
161860
|
pullRequestDescription?: string | null | undefined;
|
|
161861
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
161862
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
161863
|
+
checkoutSparse?: boolean | null | undefined;
|
|
161214
161864
|
credentialId?: string | undefined;
|
|
161215
161865
|
connectionId?: string | null | undefined;
|
|
161216
161866
|
}>>;
|
|
@@ -161229,6 +161879,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161229
161879
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161230
161880
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161231
161881
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161882
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161883
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161884
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161232
161885
|
}>, "strip", z.ZodTypeAny, {
|
|
161233
161886
|
branch: string;
|
|
161234
161887
|
projectId: string;
|
|
@@ -161241,6 +161894,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161241
161894
|
commitMessage?: string | undefined;
|
|
161242
161895
|
pullRequestTitle?: string | undefined;
|
|
161243
161896
|
pullRequestDescription?: string | undefined;
|
|
161897
|
+
checkoutNoTags?: boolean | undefined;
|
|
161898
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
161899
|
+
checkoutSparse?: boolean | undefined;
|
|
161244
161900
|
credentialId?: string | undefined;
|
|
161245
161901
|
connectionId?: string | undefined;
|
|
161246
161902
|
}, {
|
|
@@ -161255,6 +161911,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161255
161911
|
commitMessage?: string | null | undefined;
|
|
161256
161912
|
pullRequestTitle?: string | null | undefined;
|
|
161257
161913
|
pullRequestDescription?: string | null | undefined;
|
|
161914
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
161915
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
161916
|
+
checkoutSparse?: boolean | null | undefined;
|
|
161258
161917
|
credentialId?: string | undefined;
|
|
161259
161918
|
connectionId?: string | null | undefined;
|
|
161260
161919
|
}>>;
|
|
@@ -161275,6 +161934,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161275
161934
|
commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161276
161935
|
pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161277
161936
|
pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
161937
|
+
checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161938
|
+
checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161939
|
+
checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
161278
161940
|
}>, "strip", z.ZodTypeAny, {
|
|
161279
161941
|
branch: string;
|
|
161280
161942
|
workspaceSlug: string;
|
|
@@ -161289,6 +161951,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161289
161951
|
commitMessage?: string | undefined;
|
|
161290
161952
|
pullRequestTitle?: string | undefined;
|
|
161291
161953
|
pullRequestDescription?: string | undefined;
|
|
161954
|
+
checkoutNoTags?: boolean | undefined;
|
|
161955
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
161956
|
+
checkoutSparse?: boolean | undefined;
|
|
161292
161957
|
credentialId?: string | undefined;
|
|
161293
161958
|
connectionId?: string | undefined;
|
|
161294
161959
|
}, {
|
|
@@ -161305,6 +161970,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161305
161970
|
commitMessage?: string | null | undefined;
|
|
161306
161971
|
pullRequestTitle?: string | null | undefined;
|
|
161307
161972
|
pullRequestDescription?: string | null | undefined;
|
|
161973
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
161974
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
161975
|
+
checkoutSparse?: boolean | null | undefined;
|
|
161308
161976
|
credentialId?: string | undefined;
|
|
161309
161977
|
connectionId?: string | null | undefined;
|
|
161310
161978
|
}>>;
|
|
@@ -161338,6 +162006,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161338
162006
|
changes?: {
|
|
161339
162007
|
groupPersistentIds: string[];
|
|
161340
162008
|
pagePersistentIds: string[];
|
|
162009
|
+
selectivePublishing?: boolean | undefined;
|
|
161341
162010
|
} | undefined;
|
|
161342
162011
|
} | undefined;
|
|
161343
162012
|
destinationS3?: {} | undefined;
|
|
@@ -161352,6 +162021,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161352
162021
|
commitMessage?: string | undefined;
|
|
161353
162022
|
pullRequestTitle?: string | undefined;
|
|
161354
162023
|
pullRequestDescription?: string | undefined;
|
|
162024
|
+
checkoutNoTags?: boolean | undefined;
|
|
162025
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
162026
|
+
checkoutSparse?: boolean | undefined;
|
|
161355
162027
|
credentialId?: string | undefined;
|
|
161356
162028
|
connectionId?: string | undefined;
|
|
161357
162029
|
} | undefined;
|
|
@@ -161369,6 +162041,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161369
162041
|
commitMessage?: string | undefined;
|
|
161370
162042
|
pullRequestTitle?: string | undefined;
|
|
161371
162043
|
pullRequestDescription?: string | undefined;
|
|
162044
|
+
checkoutNoTags?: boolean | undefined;
|
|
162045
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
162046
|
+
checkoutSparse?: boolean | undefined;
|
|
161372
162047
|
credentialId?: string | undefined;
|
|
161373
162048
|
connectionId?: string | undefined;
|
|
161374
162049
|
} | undefined;
|
|
@@ -161384,6 +162059,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161384
162059
|
commitMessage?: string | undefined;
|
|
161385
162060
|
pullRequestTitle?: string | undefined;
|
|
161386
162061
|
pullRequestDescription?: string | undefined;
|
|
162062
|
+
checkoutNoTags?: boolean | undefined;
|
|
162063
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
162064
|
+
checkoutSparse?: boolean | undefined;
|
|
161387
162065
|
credentialId?: string | undefined;
|
|
161388
162066
|
connectionId?: string | undefined;
|
|
161389
162067
|
} | undefined;
|
|
@@ -161401,6 +162079,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161401
162079
|
commitMessage?: string | undefined;
|
|
161402
162080
|
pullRequestTitle?: string | undefined;
|
|
161403
162081
|
pullRequestDescription?: string | undefined;
|
|
162082
|
+
checkoutNoTags?: boolean | undefined;
|
|
162083
|
+
checkoutNoBlobs?: boolean | undefined;
|
|
162084
|
+
checkoutSparse?: boolean | undefined;
|
|
161404
162085
|
credentialId?: string | undefined;
|
|
161405
162086
|
connectionId?: string | undefined;
|
|
161406
162087
|
} | undefined;
|
|
@@ -161423,6 +162104,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161423
162104
|
changes?: {
|
|
161424
162105
|
groupPersistentIds: string[];
|
|
161425
162106
|
pagePersistentIds: string[];
|
|
162107
|
+
selectivePublishing?: boolean | undefined;
|
|
161426
162108
|
} | null | undefined;
|
|
161427
162109
|
} | undefined;
|
|
161428
162110
|
destinationS3?: {} | undefined;
|
|
@@ -161437,6 +162119,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161437
162119
|
commitMessage?: string | null | undefined;
|
|
161438
162120
|
pullRequestTitle?: string | null | undefined;
|
|
161439
162121
|
pullRequestDescription?: string | null | undefined;
|
|
162122
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
162123
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
162124
|
+
checkoutSparse?: boolean | null | undefined;
|
|
161440
162125
|
credentialId?: string | undefined;
|
|
161441
162126
|
connectionId?: string | null | undefined;
|
|
161442
162127
|
} | undefined;
|
|
@@ -161454,6 +162139,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161454
162139
|
commitMessage?: string | null | undefined;
|
|
161455
162140
|
pullRequestTitle?: string | null | undefined;
|
|
161456
162141
|
pullRequestDescription?: string | null | undefined;
|
|
162142
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
162143
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
162144
|
+
checkoutSparse?: boolean | null | undefined;
|
|
161457
162145
|
credentialId?: string | undefined;
|
|
161458
162146
|
connectionId?: string | null | undefined;
|
|
161459
162147
|
} | undefined;
|
|
@@ -161469,6 +162157,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161469
162157
|
commitMessage?: string | null | undefined;
|
|
161470
162158
|
pullRequestTitle?: string | null | undefined;
|
|
161471
162159
|
pullRequestDescription?: string | null | undefined;
|
|
162160
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
162161
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
162162
|
+
checkoutSparse?: boolean | null | undefined;
|
|
161472
162163
|
credentialId?: string | undefined;
|
|
161473
162164
|
connectionId?: string | null | undefined;
|
|
161474
162165
|
} | undefined;
|
|
@@ -161486,6 +162177,9 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161486
162177
|
commitMessage?: string | null | undefined;
|
|
161487
162178
|
pullRequestTitle?: string | null | undefined;
|
|
161488
162179
|
pullRequestDescription?: string | null | undefined;
|
|
162180
|
+
checkoutNoTags?: boolean | null | undefined;
|
|
162181
|
+
checkoutNoBlobs?: boolean | null | undefined;
|
|
162182
|
+
checkoutSparse?: boolean | null | undefined;
|
|
161489
162183
|
credentialId?: string | undefined;
|
|
161490
162184
|
connectionId?: string | null | undefined;
|
|
161491
162185
|
} | undefined;
|
|
@@ -161676,6 +162370,13 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<z.objectUtil.
|
|
|
161676
162370
|
}>;
|
|
161677
162371
|
type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
|
|
161678
162372
|
|
|
162373
|
+
declare const FeatureFlagDefaults: {
|
|
162374
|
+
readonly DocumentationIgnoreSnapshotsOnPublish: string;
|
|
162375
|
+
};
|
|
162376
|
+
type FeatureFlagWithDefaults = keyof typeof FeatureFlagDefaults;
|
|
162377
|
+
type FeatureFlagDefaultsTypes = {
|
|
162378
|
+
[K in FeatureFlagWithDefaults]: (typeof FeatureFlagDefaults)[K];
|
|
162379
|
+
};
|
|
161679
162380
|
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
|
|
161680
162381
|
type FlaggedFeature = z.infer<typeof FlaggedFeature>;
|
|
161681
162382
|
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>, z.ZodBoolean>;
|
|
@@ -161837,14 +162538,14 @@ declare const IntegrationDesignSystem: z.ZodObject<{
|
|
|
161837
162538
|
designSystemId: string;
|
|
161838
162539
|
brandId: string;
|
|
161839
162540
|
date?: Date | undefined;
|
|
161840
|
-
title?: string | undefined;
|
|
161841
162541
|
userId?: string | undefined;
|
|
162542
|
+
title?: string | undefined;
|
|
161842
162543
|
}, {
|
|
161843
162544
|
designSystemId: string;
|
|
161844
162545
|
brandId: string;
|
|
161845
162546
|
date?: Date | undefined;
|
|
161846
|
-
title?: string | undefined;
|
|
161847
162547
|
userId?: string | undefined;
|
|
162548
|
+
title?: string | undefined;
|
|
161848
162549
|
}>;
|
|
161849
162550
|
type IntegrationDesignSystem = z.infer<typeof IntegrationDesignSystem>;
|
|
161850
162551
|
declare const IntegrationCredentialsType: z.ZodEnum<["OAuth2", "PAT"]>;
|
|
@@ -162334,14 +163035,14 @@ declare const WorkspaceOAuthRequestSchema: z.ZodObject<{
|
|
|
162334
163035
|
}, "strip", z.ZodTypeAny, {
|
|
162335
163036
|
id: string;
|
|
162336
163037
|
createdAt: Date;
|
|
162337
|
-
workspaceId: string;
|
|
162338
163038
|
userId: string;
|
|
163039
|
+
workspaceId: string;
|
|
162339
163040
|
provider: OAuthProviderNames;
|
|
162340
163041
|
}, {
|
|
162341
163042
|
id: string;
|
|
162342
163043
|
createdAt: Date;
|
|
162343
|
-
workspaceId: string;
|
|
162344
163044
|
userId: string;
|
|
163045
|
+
workspaceId: string;
|
|
162345
163046
|
provider: OAuthProviderNames;
|
|
162346
163047
|
}>;
|
|
162347
163048
|
type WorkspaceOAuthRequest = z.infer<typeof WorkspaceOAuthRequestSchema>;
|
|
@@ -191997,4 +192698,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
191997
192698
|
token: PersonalAccessToken;
|
|
191998
192699
|
};
|
|
191999
192700
|
|
|
192000
|
-
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsTheme, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
192701
|
+
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsTheme, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|