@supernova-studio/model 1.2.1 → 1.2.3
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 +96 -0
- package/dist/index.d.ts +96 -0
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3055,6 +3055,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3055
3055
|
type: string;
|
|
3056
3056
|
} | undefined;
|
|
3057
3057
|
})[] | null | undefined>;
|
|
3058
|
+
isDeprecated: z.ZodDefault<z.ZodBoolean>;
|
|
3059
|
+
deprecationNote: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3060
|
+
replacementExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3058
3061
|
}, "strip", z.ZodTypeAny, {
|
|
3059
3062
|
id: string;
|
|
3060
3063
|
name: string;
|
|
@@ -3178,6 +3181,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3178
3181
|
};
|
|
3179
3182
|
exporterType: NonNullable<"code" | "documentation">;
|
|
3180
3183
|
storagePath: string;
|
|
3184
|
+
isDeprecated: boolean;
|
|
3181
3185
|
properties?: ({
|
|
3182
3186
|
key: string;
|
|
3183
3187
|
options: Record<string, {
|
|
@@ -3238,6 +3242,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3238
3242
|
type: string;
|
|
3239
3243
|
} | undefined;
|
|
3240
3244
|
})[] | undefined;
|
|
3245
|
+
deprecationNote?: string | undefined;
|
|
3246
|
+
replacementExporterId?: string | undefined;
|
|
3241
3247
|
}, {
|
|
3242
3248
|
id: string;
|
|
3243
3249
|
name: string;
|
|
@@ -3421,6 +3427,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3421
3427
|
})[] | null | undefined;
|
|
3422
3428
|
exporterType?: "code" | "documentation" | null | undefined;
|
|
3423
3429
|
storagePath?: string | null | undefined;
|
|
3430
|
+
isDeprecated?: boolean | undefined;
|
|
3431
|
+
deprecationNote?: string | null | undefined;
|
|
3432
|
+
replacementExporterId?: string | null | undefined;
|
|
3424
3433
|
}>, "many">;
|
|
3425
3434
|
pipelines: z.ZodArray<z.ZodObject<{
|
|
3426
3435
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -3606,6 +3615,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3606
3615
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
3607
3616
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3608
3617
|
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
3618
|
+
isExporterDeprecated: z.ZodBoolean;
|
|
3609
3619
|
}, "strip", z.ZodTypeAny, {
|
|
3610
3620
|
id: string;
|
|
3611
3621
|
name: string;
|
|
@@ -3614,6 +3624,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3614
3624
|
workspaceId: string;
|
|
3615
3625
|
exporterId: string;
|
|
3616
3626
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
3627
|
+
isExporterDeprecated: boolean;
|
|
3617
3628
|
brandPersistentId?: string | undefined;
|
|
3618
3629
|
themePersistentId?: string | undefined;
|
|
3619
3630
|
webhookUrl?: string | undefined;
|
|
@@ -3685,6 +3696,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3685
3696
|
workspaceId: string;
|
|
3686
3697
|
exporterId: string;
|
|
3687
3698
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
3699
|
+
isExporterDeprecated: boolean;
|
|
3688
3700
|
brandPersistentId?: string | undefined;
|
|
3689
3701
|
themePersistentId?: string | undefined;
|
|
3690
3702
|
webhookUrl?: string | undefined;
|
|
@@ -3889,6 +3901,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3889
3901
|
};
|
|
3890
3902
|
exporterType: NonNullable<"code" | "documentation">;
|
|
3891
3903
|
storagePath: string;
|
|
3904
|
+
isDeprecated: boolean;
|
|
3892
3905
|
properties?: ({
|
|
3893
3906
|
key: string;
|
|
3894
3907
|
options: Record<string, {
|
|
@@ -3949,6 +3962,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3949
3962
|
type: string;
|
|
3950
3963
|
} | undefined;
|
|
3951
3964
|
})[] | undefined;
|
|
3965
|
+
deprecationNote?: string | undefined;
|
|
3966
|
+
replacementExporterId?: string | undefined;
|
|
3952
3967
|
}[];
|
|
3953
3968
|
pipelines: {
|
|
3954
3969
|
id: string;
|
|
@@ -3958,6 +3973,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3958
3973
|
workspaceId: string;
|
|
3959
3974
|
exporterId: string;
|
|
3960
3975
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
3976
|
+
isExporterDeprecated: boolean;
|
|
3961
3977
|
brandPersistentId?: string | undefined;
|
|
3962
3978
|
themePersistentId?: string | undefined;
|
|
3963
3979
|
webhookUrl?: string | undefined;
|
|
@@ -4212,6 +4228,9 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4212
4228
|
})[] | null | undefined;
|
|
4213
4229
|
exporterType?: "code" | "documentation" | null | undefined;
|
|
4214
4230
|
storagePath?: string | null | undefined;
|
|
4231
|
+
isDeprecated?: boolean | undefined;
|
|
4232
|
+
deprecationNote?: string | null | undefined;
|
|
4233
|
+
replacementExporterId?: string | null | undefined;
|
|
4215
4234
|
}[];
|
|
4216
4235
|
pipelines: {
|
|
4217
4236
|
id: string;
|
|
@@ -4221,6 +4240,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4221
4240
|
workspaceId: string;
|
|
4222
4241
|
exporterId: string;
|
|
4223
4242
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
4243
|
+
isExporterDeprecated: boolean;
|
|
4224
4244
|
brandPersistentId?: string | undefined;
|
|
4225
4245
|
themePersistentId?: string | undefined;
|
|
4226
4246
|
webhookUrl?: string | undefined;
|
|
@@ -18379,6 +18399,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
18379
18399
|
type: string;
|
|
18380
18400
|
} | undefined;
|
|
18381
18401
|
})[] | null | undefined>;
|
|
18402
|
+
isDeprecated: z.ZodDefault<z.ZodBoolean>;
|
|
18403
|
+
deprecationNote: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
18404
|
+
replacementExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
18382
18405
|
}, "strip", z.ZodTypeAny, {
|
|
18383
18406
|
id: string;
|
|
18384
18407
|
name: string;
|
|
@@ -18502,6 +18525,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
18502
18525
|
};
|
|
18503
18526
|
exporterType: NonNullable<"code" | "documentation">;
|
|
18504
18527
|
storagePath: string;
|
|
18528
|
+
isDeprecated: boolean;
|
|
18505
18529
|
properties?: ({
|
|
18506
18530
|
key: string;
|
|
18507
18531
|
options: Record<string, {
|
|
@@ -18562,6 +18586,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
18562
18586
|
type: string;
|
|
18563
18587
|
} | undefined;
|
|
18564
18588
|
})[] | undefined;
|
|
18589
|
+
deprecationNote?: string | undefined;
|
|
18590
|
+
replacementExporterId?: string | undefined;
|
|
18565
18591
|
}, {
|
|
18566
18592
|
id: string;
|
|
18567
18593
|
name: string;
|
|
@@ -18745,6 +18771,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
18745
18771
|
})[] | null | undefined;
|
|
18746
18772
|
exporterType?: "code" | "documentation" | null | undefined;
|
|
18747
18773
|
storagePath?: string | null | undefined;
|
|
18774
|
+
isDeprecated?: boolean | undefined;
|
|
18775
|
+
deprecationNote?: string | null | undefined;
|
|
18776
|
+
replacementExporterId?: string | null | undefined;
|
|
18748
18777
|
}>, "many">;
|
|
18749
18778
|
pipelines: z.ZodArray<z.ZodObject<{
|
|
18750
18779
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -18930,6 +18959,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
18930
18959
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
18931
18960
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18932
18961
|
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
18962
|
+
isExporterDeprecated: z.ZodBoolean;
|
|
18933
18963
|
}, "strip", z.ZodTypeAny, {
|
|
18934
18964
|
id: string;
|
|
18935
18965
|
name: string;
|
|
@@ -18938,6 +18968,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
18938
18968
|
workspaceId: string;
|
|
18939
18969
|
exporterId: string;
|
|
18940
18970
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
18971
|
+
isExporterDeprecated: boolean;
|
|
18941
18972
|
brandPersistentId?: string | undefined;
|
|
18942
18973
|
themePersistentId?: string | undefined;
|
|
18943
18974
|
webhookUrl?: string | undefined;
|
|
@@ -19009,6 +19040,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19009
19040
|
workspaceId: string;
|
|
19010
19041
|
exporterId: string;
|
|
19011
19042
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
19043
|
+
isExporterDeprecated: boolean;
|
|
19012
19044
|
brandPersistentId?: string | undefined;
|
|
19013
19045
|
themePersistentId?: string | undefined;
|
|
19014
19046
|
webhookUrl?: string | undefined;
|
|
@@ -19213,6 +19245,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19213
19245
|
};
|
|
19214
19246
|
exporterType: NonNullable<"code" | "documentation">;
|
|
19215
19247
|
storagePath: string;
|
|
19248
|
+
isDeprecated: boolean;
|
|
19216
19249
|
properties?: ({
|
|
19217
19250
|
key: string;
|
|
19218
19251
|
options: Record<string, {
|
|
@@ -19273,6 +19306,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
19273
19306
|
type: string;
|
|
19274
19307
|
} | undefined;
|
|
19275
19308
|
})[] | undefined;
|
|
19309
|
+
deprecationNote?: string | undefined;
|
|
19310
|
+
replacementExporterId?: string | undefined;
|
|
19276
19311
|
}[];
|
|
19277
19312
|
pipelines: {
|
|
19278
19313
|
id: string;
|
|
@@ -19282,6 +19317,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19282
19317
|
workspaceId: string;
|
|
19283
19318
|
exporterId: string;
|
|
19284
19319
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
19320
|
+
isExporterDeprecated: boolean;
|
|
19285
19321
|
brandPersistentId?: string | undefined;
|
|
19286
19322
|
themePersistentId?: string | undefined;
|
|
19287
19323
|
webhookUrl?: string | undefined;
|
|
@@ -19536,6 +19572,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
19536
19572
|
})[] | null | undefined;
|
|
19537
19573
|
exporterType?: "code" | "documentation" | null | undefined;
|
|
19538
19574
|
storagePath?: string | null | undefined;
|
|
19575
|
+
isDeprecated?: boolean | undefined;
|
|
19576
|
+
deprecationNote?: string | null | undefined;
|
|
19577
|
+
replacementExporterId?: string | null | undefined;
|
|
19539
19578
|
}[];
|
|
19540
19579
|
pipelines: {
|
|
19541
19580
|
id: string;
|
|
@@ -19545,6 +19584,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19545
19584
|
workspaceId: string;
|
|
19546
19585
|
exporterId: string;
|
|
19547
19586
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
19587
|
+
isExporterDeprecated: boolean;
|
|
19548
19588
|
brandPersistentId?: string | undefined;
|
|
19549
19589
|
themePersistentId?: string | undefined;
|
|
19550
19590
|
webhookUrl?: string | undefined;
|
|
@@ -20574,6 +20614,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
20574
20614
|
};
|
|
20575
20615
|
exporterType: NonNullable<"code" | "documentation">;
|
|
20576
20616
|
storagePath: string;
|
|
20617
|
+
isDeprecated: boolean;
|
|
20577
20618
|
properties?: ({
|
|
20578
20619
|
key: string;
|
|
20579
20620
|
options: Record<string, {
|
|
@@ -20634,6 +20675,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20634
20675
|
type: string;
|
|
20635
20676
|
} | undefined;
|
|
20636
20677
|
})[] | undefined;
|
|
20678
|
+
deprecationNote?: string | undefined;
|
|
20679
|
+
replacementExporterId?: string | undefined;
|
|
20637
20680
|
}[];
|
|
20638
20681
|
pipelines: {
|
|
20639
20682
|
id: string;
|
|
@@ -20643,6 +20686,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
20643
20686
|
workspaceId: string;
|
|
20644
20687
|
exporterId: string;
|
|
20645
20688
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
20689
|
+
isExporterDeprecated: boolean;
|
|
20646
20690
|
brandPersistentId?: string | undefined;
|
|
20647
20691
|
themePersistentId?: string | undefined;
|
|
20648
20692
|
webhookUrl?: string | undefined;
|
|
@@ -21574,6 +21618,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
21574
21618
|
})[] | null | undefined;
|
|
21575
21619
|
exporterType?: "code" | "documentation" | null | undefined;
|
|
21576
21620
|
storagePath?: string | null | undefined;
|
|
21621
|
+
isDeprecated?: boolean | undefined;
|
|
21622
|
+
deprecationNote?: string | null | undefined;
|
|
21623
|
+
replacementExporterId?: string | null | undefined;
|
|
21577
21624
|
}[];
|
|
21578
21625
|
pipelines: {
|
|
21579
21626
|
id: string;
|
|
@@ -21583,6 +21630,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
21583
21630
|
workspaceId: string;
|
|
21584
21631
|
exporterId: string;
|
|
21585
21632
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
21633
|
+
isExporterDeprecated: boolean;
|
|
21586
21634
|
brandPersistentId?: string | undefined;
|
|
21587
21635
|
themePersistentId?: string | undefined;
|
|
21588
21636
|
webhookUrl?: string | undefined;
|
|
@@ -22449,6 +22497,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
22449
22497
|
};
|
|
22450
22498
|
exporterType: NonNullable<"code" | "documentation">;
|
|
22451
22499
|
storagePath: string;
|
|
22500
|
+
isDeprecated: boolean;
|
|
22452
22501
|
properties?: ({
|
|
22453
22502
|
key: string;
|
|
22454
22503
|
options: Record<string, {
|
|
@@ -22509,6 +22558,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
22509
22558
|
type: string;
|
|
22510
22559
|
} | undefined;
|
|
22511
22560
|
})[] | undefined;
|
|
22561
|
+
deprecationNote?: string | undefined;
|
|
22562
|
+
replacementExporterId?: string | undefined;
|
|
22512
22563
|
}[];
|
|
22513
22564
|
pipelines: {
|
|
22514
22565
|
id: string;
|
|
@@ -22518,6 +22569,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
22518
22569
|
workspaceId: string;
|
|
22519
22570
|
exporterId: string;
|
|
22520
22571
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
22572
|
+
isExporterDeprecated: boolean;
|
|
22521
22573
|
brandPersistentId?: string | undefined;
|
|
22522
22574
|
themePersistentId?: string | undefined;
|
|
22523
22575
|
webhookUrl?: string | undefined;
|
|
@@ -23525,6 +23577,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
23525
23577
|
})[] | null | undefined;
|
|
23526
23578
|
exporterType?: "code" | "documentation" | null | undefined;
|
|
23527
23579
|
storagePath?: string | null | undefined;
|
|
23580
|
+
isDeprecated?: boolean | undefined;
|
|
23581
|
+
deprecationNote?: string | null | undefined;
|
|
23582
|
+
replacementExporterId?: string | null | undefined;
|
|
23528
23583
|
}[];
|
|
23529
23584
|
pipelines: {
|
|
23530
23585
|
id: string;
|
|
@@ -23534,6 +23589,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
23534
23589
|
workspaceId: string;
|
|
23535
23590
|
exporterId: string;
|
|
23536
23591
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
23592
|
+
isExporterDeprecated: boolean;
|
|
23537
23593
|
brandPersistentId?: string | undefined;
|
|
23538
23594
|
themePersistentId?: string | undefined;
|
|
23539
23595
|
webhookUrl?: string | undefined;
|
|
@@ -30157,6 +30213,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30157
30213
|
type: string;
|
|
30158
30214
|
} | undefined;
|
|
30159
30215
|
})[] | null | undefined>;
|
|
30216
|
+
isDeprecated: z.ZodDefault<z.ZodBoolean>;
|
|
30217
|
+
deprecationNote: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30218
|
+
replacementExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
30160
30219
|
}, "strip", z.ZodTypeAny, {
|
|
30161
30220
|
id: string;
|
|
30162
30221
|
name: string;
|
|
@@ -30280,6 +30339,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30280
30339
|
};
|
|
30281
30340
|
exporterType: NonNullable<"code" | "documentation">;
|
|
30282
30341
|
storagePath: string;
|
|
30342
|
+
isDeprecated: boolean;
|
|
30283
30343
|
properties?: ({
|
|
30284
30344
|
key: string;
|
|
30285
30345
|
options: Record<string, {
|
|
@@ -30340,6 +30400,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30340
30400
|
type: string;
|
|
30341
30401
|
} | undefined;
|
|
30342
30402
|
})[] | undefined;
|
|
30403
|
+
deprecationNote?: string | undefined;
|
|
30404
|
+
replacementExporterId?: string | undefined;
|
|
30343
30405
|
}, {
|
|
30344
30406
|
id: string;
|
|
30345
30407
|
name: string;
|
|
@@ -30523,6 +30585,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30523
30585
|
})[] | null | undefined;
|
|
30524
30586
|
exporterType?: "code" | "documentation" | null | undefined;
|
|
30525
30587
|
storagePath?: string | null | undefined;
|
|
30588
|
+
isDeprecated?: boolean | undefined;
|
|
30589
|
+
deprecationNote?: string | null | undefined;
|
|
30590
|
+
replacementExporterId?: string | null | undefined;
|
|
30526
30591
|
}>, "many">;
|
|
30527
30592
|
pipelines: z.ZodArray<z.ZodObject<{
|
|
30528
30593
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -30708,6 +30773,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30708
30773
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
30709
30774
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
30710
30775
|
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
30776
|
+
isExporterDeprecated: z.ZodBoolean;
|
|
30711
30777
|
}, "strip", z.ZodTypeAny, {
|
|
30712
30778
|
id: string;
|
|
30713
30779
|
name: string;
|
|
@@ -30716,6 +30782,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30716
30782
|
workspaceId: string;
|
|
30717
30783
|
exporterId: string;
|
|
30718
30784
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
30785
|
+
isExporterDeprecated: boolean;
|
|
30719
30786
|
brandPersistentId?: string | undefined;
|
|
30720
30787
|
themePersistentId?: string | undefined;
|
|
30721
30788
|
webhookUrl?: string | undefined;
|
|
@@ -30787,6 +30854,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30787
30854
|
workspaceId: string;
|
|
30788
30855
|
exporterId: string;
|
|
30789
30856
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
30857
|
+
isExporterDeprecated: boolean;
|
|
30790
30858
|
brandPersistentId?: string | undefined;
|
|
30791
30859
|
themePersistentId?: string | undefined;
|
|
30792
30860
|
webhookUrl?: string | undefined;
|
|
@@ -30991,6 +31059,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30991
31059
|
};
|
|
30992
31060
|
exporterType: NonNullable<"code" | "documentation">;
|
|
30993
31061
|
storagePath: string;
|
|
31062
|
+
isDeprecated: boolean;
|
|
30994
31063
|
properties?: ({
|
|
30995
31064
|
key: string;
|
|
30996
31065
|
options: Record<string, {
|
|
@@ -31051,6 +31120,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31051
31120
|
type: string;
|
|
31052
31121
|
} | undefined;
|
|
31053
31122
|
})[] | undefined;
|
|
31123
|
+
deprecationNote?: string | undefined;
|
|
31124
|
+
replacementExporterId?: string | undefined;
|
|
31054
31125
|
}[];
|
|
31055
31126
|
pipelines: {
|
|
31056
31127
|
id: string;
|
|
@@ -31060,6 +31131,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31060
31131
|
workspaceId: string;
|
|
31061
31132
|
exporterId: string;
|
|
31062
31133
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
31134
|
+
isExporterDeprecated: boolean;
|
|
31063
31135
|
brandPersistentId?: string | undefined;
|
|
31064
31136
|
themePersistentId?: string | undefined;
|
|
31065
31137
|
webhookUrl?: string | undefined;
|
|
@@ -31314,6 +31386,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31314
31386
|
})[] | null | undefined;
|
|
31315
31387
|
exporterType?: "code" | "documentation" | null | undefined;
|
|
31316
31388
|
storagePath?: string | null | undefined;
|
|
31389
|
+
isDeprecated?: boolean | undefined;
|
|
31390
|
+
deprecationNote?: string | null | undefined;
|
|
31391
|
+
replacementExporterId?: string | null | undefined;
|
|
31317
31392
|
}[];
|
|
31318
31393
|
pipelines: {
|
|
31319
31394
|
id: string;
|
|
@@ -31323,6 +31398,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31323
31398
|
workspaceId: string;
|
|
31324
31399
|
exporterId: string;
|
|
31325
31400
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
31401
|
+
isExporterDeprecated: boolean;
|
|
31326
31402
|
brandPersistentId?: string | undefined;
|
|
31327
31403
|
themePersistentId?: string | undefined;
|
|
31328
31404
|
webhookUrl?: string | undefined;
|
|
@@ -32352,6 +32428,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32352
32428
|
};
|
|
32353
32429
|
exporterType: NonNullable<"code" | "documentation">;
|
|
32354
32430
|
storagePath: string;
|
|
32431
|
+
isDeprecated: boolean;
|
|
32355
32432
|
properties?: ({
|
|
32356
32433
|
key: string;
|
|
32357
32434
|
options: Record<string, {
|
|
@@ -32412,6 +32489,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32412
32489
|
type: string;
|
|
32413
32490
|
} | undefined;
|
|
32414
32491
|
})[] | undefined;
|
|
32492
|
+
deprecationNote?: string | undefined;
|
|
32493
|
+
replacementExporterId?: string | undefined;
|
|
32415
32494
|
}[];
|
|
32416
32495
|
pipelines: {
|
|
32417
32496
|
id: string;
|
|
@@ -32421,6 +32500,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32421
32500
|
workspaceId: string;
|
|
32422
32501
|
exporterId: string;
|
|
32423
32502
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
32503
|
+
isExporterDeprecated: boolean;
|
|
32424
32504
|
brandPersistentId?: string | undefined;
|
|
32425
32505
|
themePersistentId?: string | undefined;
|
|
32426
32506
|
webhookUrl?: string | undefined;
|
|
@@ -33352,6 +33432,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33352
33432
|
})[] | null | undefined;
|
|
33353
33433
|
exporterType?: "code" | "documentation" | null | undefined;
|
|
33354
33434
|
storagePath?: string | null | undefined;
|
|
33435
|
+
isDeprecated?: boolean | undefined;
|
|
33436
|
+
deprecationNote?: string | null | undefined;
|
|
33437
|
+
replacementExporterId?: string | null | undefined;
|
|
33355
33438
|
}[];
|
|
33356
33439
|
pipelines: {
|
|
33357
33440
|
id: string;
|
|
@@ -33361,6 +33444,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33361
33444
|
workspaceId: string;
|
|
33362
33445
|
exporterId: string;
|
|
33363
33446
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
33447
|
+
isExporterDeprecated: boolean;
|
|
33364
33448
|
brandPersistentId?: string | undefined;
|
|
33365
33449
|
themePersistentId?: string | undefined;
|
|
33366
33450
|
webhookUrl?: string | undefined;
|
|
@@ -153110,6 +153194,9 @@ declare const Exporter: z.ZodObject<{
|
|
|
153110
153194
|
type: string;
|
|
153111
153195
|
} | undefined;
|
|
153112
153196
|
})[] | null | undefined>;
|
|
153197
|
+
isDeprecated: z.ZodDefault<z.ZodBoolean>;
|
|
153198
|
+
deprecationNote: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
153199
|
+
replacementExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
153113
153200
|
}, "strip", z.ZodTypeAny, {
|
|
153114
153201
|
id: string;
|
|
153115
153202
|
name: string;
|
|
@@ -153233,6 +153320,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
153233
153320
|
};
|
|
153234
153321
|
exporterType: NonNullable<"code" | "documentation">;
|
|
153235
153322
|
storagePath: string;
|
|
153323
|
+
isDeprecated: boolean;
|
|
153236
153324
|
properties?: ({
|
|
153237
153325
|
key: string;
|
|
153238
153326
|
options: Record<string, {
|
|
@@ -153293,6 +153381,8 @@ declare const Exporter: z.ZodObject<{
|
|
|
153293
153381
|
type: string;
|
|
153294
153382
|
} | undefined;
|
|
153295
153383
|
})[] | undefined;
|
|
153384
|
+
deprecationNote?: string | undefined;
|
|
153385
|
+
replacementExporterId?: string | undefined;
|
|
153296
153386
|
}, {
|
|
153297
153387
|
id: string;
|
|
153298
153388
|
name: string;
|
|
@@ -153476,6 +153566,9 @@ declare const Exporter: z.ZodObject<{
|
|
|
153476
153566
|
})[] | null | undefined;
|
|
153477
153567
|
exporterType?: "code" | "documentation" | null | undefined;
|
|
153478
153568
|
storagePath?: string | null | undefined;
|
|
153569
|
+
isDeprecated?: boolean | undefined;
|
|
153570
|
+
deprecationNote?: string | null | undefined;
|
|
153571
|
+
replacementExporterId?: string | null | undefined;
|
|
153479
153572
|
}>;
|
|
153480
153573
|
type Exporter = z.infer<typeof Exporter>;
|
|
153481
153574
|
|
|
@@ -153671,6 +153764,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
153671
153764
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
153672
153765
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
153673
153766
|
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
153767
|
+
isExporterDeprecated: z.ZodBoolean;
|
|
153674
153768
|
}, "strip", z.ZodTypeAny, {
|
|
153675
153769
|
id: string;
|
|
153676
153770
|
name: string;
|
|
@@ -153679,6 +153773,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
153679
153773
|
workspaceId: string;
|
|
153680
153774
|
exporterId: string;
|
|
153681
153775
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
153776
|
+
isExporterDeprecated: boolean;
|
|
153682
153777
|
brandPersistentId?: string | undefined;
|
|
153683
153778
|
themePersistentId?: string | undefined;
|
|
153684
153779
|
webhookUrl?: string | undefined;
|
|
@@ -153750,6 +153845,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
153750
153845
|
workspaceId: string;
|
|
153751
153846
|
exporterId: string;
|
|
153752
153847
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
153848
|
+
isExporterDeprecated: boolean;
|
|
153753
153849
|
brandPersistentId?: string | undefined;
|
|
153754
153850
|
themePersistentId?: string | undefined;
|
|
153755
153851
|
webhookUrl?: string | undefined;
|