@supernova-studio/client 1.69.4 → 1.69.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +42 -19
- package/dist/index.d.ts +42 -19
- package/dist/index.js +6 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -54258,7 +54258,7 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54258
54258
|
url: z$1.ZodString;
|
|
54259
54259
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
54260
54260
|
currentIterationId: z$1.ZodString;
|
|
54261
|
-
featureId: z$1.ZodString
|
|
54261
|
+
featureId: z$1.ZodOptional<z$1.ZodString>;
|
|
54262
54262
|
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
54263
54263
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
54264
54264
|
stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
|
|
@@ -54273,7 +54273,6 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54273
54273
|
}, "strip", z$1.ZodTypeAny, {
|
|
54274
54274
|
id: string;
|
|
54275
54275
|
url: string;
|
|
54276
|
-
featureId: string;
|
|
54277
54276
|
currentIterationId: string;
|
|
54278
54277
|
expiresAt?: string | undefined;
|
|
54279
54278
|
error?: {
|
|
@@ -54281,10 +54280,10 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54281
54280
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54282
54281
|
} | undefined;
|
|
54283
54282
|
parentMessageId?: string | undefined;
|
|
54283
|
+
featureId?: string | undefined;
|
|
54284
54284
|
}, {
|
|
54285
54285
|
id: string;
|
|
54286
54286
|
url: string;
|
|
54287
|
-
featureId: string;
|
|
54288
54287
|
currentIterationId: string;
|
|
54289
54288
|
expiresAt?: string | undefined;
|
|
54290
54289
|
error?: {
|
|
@@ -54292,13 +54291,13 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54292
54291
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54293
54292
|
} | undefined;
|
|
54294
54293
|
parentMessageId?: string | undefined;
|
|
54294
|
+
featureId?: string | undefined;
|
|
54295
54295
|
}>;
|
|
54296
54296
|
}, "strip", z$1.ZodTypeAny, {
|
|
54297
54297
|
type: "ProjectFeatureSandboxUpdated";
|
|
54298
54298
|
data: {
|
|
54299
54299
|
id: string;
|
|
54300
54300
|
url: string;
|
|
54301
|
-
featureId: string;
|
|
54302
54301
|
currentIterationId: string;
|
|
54303
54302
|
expiresAt?: string | undefined;
|
|
54304
54303
|
error?: {
|
|
@@ -54306,13 +54305,13 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54306
54305
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54307
54306
|
} | undefined;
|
|
54308
54307
|
parentMessageId?: string | undefined;
|
|
54308
|
+
featureId?: string | undefined;
|
|
54309
54309
|
};
|
|
54310
54310
|
}, {
|
|
54311
54311
|
type: "ProjectFeatureSandboxUpdated";
|
|
54312
54312
|
data: {
|
|
54313
54313
|
id: string;
|
|
54314
54314
|
url: string;
|
|
54315
|
-
featureId: string;
|
|
54316
54315
|
currentIterationId: string;
|
|
54317
54316
|
expiresAt?: string | undefined;
|
|
54318
54317
|
error?: {
|
|
@@ -54320,6 +54319,7 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54320
54319
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54321
54320
|
} | undefined;
|
|
54322
54321
|
parentMessageId?: string | undefined;
|
|
54322
|
+
featureId?: string | undefined;
|
|
54323
54323
|
};
|
|
54324
54324
|
}>;
|
|
54325
54325
|
type DTOForgeProjectFeatureSandboxUpdated = z$1.infer<typeof DTOForgeProjectFeatureSandboxUpdated>;
|
|
@@ -54414,11 +54414,14 @@ declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
|
54414
54414
|
updated?: string[] | undefined;
|
|
54415
54415
|
deleted?: string[] | undefined;
|
|
54416
54416
|
}>>>;
|
|
54417
|
+
} & {
|
|
54418
|
+
featureId: z$1.ZodString;
|
|
54417
54419
|
}, "strip", z$1.ZodTypeAny, {
|
|
54418
54420
|
id: string;
|
|
54419
54421
|
createdAt: string;
|
|
54420
54422
|
name: string;
|
|
54421
54423
|
startedFromMessageId: string;
|
|
54424
|
+
featureId: string;
|
|
54422
54425
|
updatedAt?: string | undefined;
|
|
54423
54426
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54424
54427
|
error?: {
|
|
@@ -54454,6 +54457,7 @@ declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
|
54454
54457
|
createdAt: string;
|
|
54455
54458
|
name: string;
|
|
54456
54459
|
startedFromMessageId: string;
|
|
54460
|
+
featureId: string;
|
|
54457
54461
|
updatedAt?: string | undefined;
|
|
54458
54462
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54459
54463
|
error?: {
|
|
@@ -54492,6 +54496,7 @@ declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
|
54492
54496
|
createdAt: string;
|
|
54493
54497
|
name: string;
|
|
54494
54498
|
startedFromMessageId: string;
|
|
54499
|
+
featureId: string;
|
|
54495
54500
|
updatedAt?: string | undefined;
|
|
54496
54501
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54497
54502
|
error?: {
|
|
@@ -54530,6 +54535,7 @@ declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
|
54530
54535
|
createdAt: string;
|
|
54531
54536
|
name: string;
|
|
54532
54537
|
startedFromMessageId: string;
|
|
54538
|
+
featureId: string;
|
|
54533
54539
|
updatedAt?: string | undefined;
|
|
54534
54540
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54535
54541
|
error?: {
|
|
@@ -54901,7 +54907,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54901
54907
|
url: z$1.ZodString;
|
|
54902
54908
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
54903
54909
|
currentIterationId: z$1.ZodString;
|
|
54904
|
-
featureId: z$1.ZodString
|
|
54910
|
+
featureId: z$1.ZodOptional<z$1.ZodString>;
|
|
54905
54911
|
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
54906
54912
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
54907
54913
|
stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
|
|
@@ -54916,7 +54922,6 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54916
54922
|
}, "strip", z$1.ZodTypeAny, {
|
|
54917
54923
|
id: string;
|
|
54918
54924
|
url: string;
|
|
54919
|
-
featureId: string;
|
|
54920
54925
|
currentIterationId: string;
|
|
54921
54926
|
expiresAt?: string | undefined;
|
|
54922
54927
|
error?: {
|
|
@@ -54924,10 +54929,10 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54924
54929
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54925
54930
|
} | undefined;
|
|
54926
54931
|
parentMessageId?: string | undefined;
|
|
54932
|
+
featureId?: string | undefined;
|
|
54927
54933
|
}, {
|
|
54928
54934
|
id: string;
|
|
54929
54935
|
url: string;
|
|
54930
|
-
featureId: string;
|
|
54931
54936
|
currentIterationId: string;
|
|
54932
54937
|
expiresAt?: string | undefined;
|
|
54933
54938
|
error?: {
|
|
@@ -54935,13 +54940,13 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54935
54940
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54936
54941
|
} | undefined;
|
|
54937
54942
|
parentMessageId?: string | undefined;
|
|
54943
|
+
featureId?: string | undefined;
|
|
54938
54944
|
}>;
|
|
54939
54945
|
}, "strip", z$1.ZodTypeAny, {
|
|
54940
54946
|
type: "ProjectFeatureSandboxUpdated";
|
|
54941
54947
|
data: {
|
|
54942
54948
|
id: string;
|
|
54943
54949
|
url: string;
|
|
54944
|
-
featureId: string;
|
|
54945
54950
|
currentIterationId: string;
|
|
54946
54951
|
expiresAt?: string | undefined;
|
|
54947
54952
|
error?: {
|
|
@@ -54949,13 +54954,13 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54949
54954
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54950
54955
|
} | undefined;
|
|
54951
54956
|
parentMessageId?: string | undefined;
|
|
54957
|
+
featureId?: string | undefined;
|
|
54952
54958
|
};
|
|
54953
54959
|
}, {
|
|
54954
54960
|
type: "ProjectFeatureSandboxUpdated";
|
|
54955
54961
|
data: {
|
|
54956
54962
|
id: string;
|
|
54957
54963
|
url: string;
|
|
54958
|
-
featureId: string;
|
|
54959
54964
|
currentIterationId: string;
|
|
54960
54965
|
expiresAt?: string | undefined;
|
|
54961
54966
|
error?: {
|
|
@@ -54963,6 +54968,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54963
54968
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54964
54969
|
} | undefined;
|
|
54965
54970
|
parentMessageId?: string | undefined;
|
|
54971
|
+
featureId?: string | undefined;
|
|
54966
54972
|
};
|
|
54967
54973
|
}>, z$1.ZodObject<{
|
|
54968
54974
|
type: z$1.ZodLiteral<"ProjectIterationUpdated">;
|
|
@@ -55055,11 +55061,14 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
55055
55061
|
updated?: string[] | undefined;
|
|
55056
55062
|
deleted?: string[] | undefined;
|
|
55057
55063
|
}>>>;
|
|
55064
|
+
} & {
|
|
55065
|
+
featureId: z$1.ZodString;
|
|
55058
55066
|
}, "strip", z$1.ZodTypeAny, {
|
|
55059
55067
|
id: string;
|
|
55060
55068
|
createdAt: string;
|
|
55061
55069
|
name: string;
|
|
55062
55070
|
startedFromMessageId: string;
|
|
55071
|
+
featureId: string;
|
|
55063
55072
|
updatedAt?: string | undefined;
|
|
55064
55073
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
55065
55074
|
error?: {
|
|
@@ -55095,6 +55104,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
55095
55104
|
createdAt: string;
|
|
55096
55105
|
name: string;
|
|
55097
55106
|
startedFromMessageId: string;
|
|
55107
|
+
featureId: string;
|
|
55098
55108
|
updatedAt?: string | undefined;
|
|
55099
55109
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
55100
55110
|
error?: {
|
|
@@ -55133,6 +55143,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
55133
55143
|
createdAt: string;
|
|
55134
55144
|
name: string;
|
|
55135
55145
|
startedFromMessageId: string;
|
|
55146
|
+
featureId: string;
|
|
55136
55147
|
updatedAt?: string | undefined;
|
|
55137
55148
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
55138
55149
|
error?: {
|
|
@@ -55171,6 +55182,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
55171
55182
|
createdAt: string;
|
|
55172
55183
|
name: string;
|
|
55173
55184
|
startedFromMessageId: string;
|
|
55185
|
+
featureId: string;
|
|
55174
55186
|
updatedAt?: string | undefined;
|
|
55175
55187
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
55176
55188
|
error?: {
|
|
@@ -83283,22 +83295,27 @@ declare const DTOSandboxTemplateVersionCreated: z$1.ZodObject<{
|
|
|
83283
83295
|
data: z$1.ZodObject<{
|
|
83284
83296
|
templateId: z$1.ZodString;
|
|
83285
83297
|
version: z$1.ZodString;
|
|
83298
|
+
designSystemId: z$1.ZodString;
|
|
83286
83299
|
}, "strip", z$1.ZodTypeAny, {
|
|
83300
|
+
designSystemId: string;
|
|
83287
83301
|
version: string;
|
|
83288
83302
|
templateId: string;
|
|
83289
83303
|
}, {
|
|
83304
|
+
designSystemId: string;
|
|
83290
83305
|
version: string;
|
|
83291
83306
|
templateId: string;
|
|
83292
83307
|
}>;
|
|
83293
83308
|
}, "strip", z$1.ZodTypeAny, {
|
|
83294
83309
|
type: "SandboxTemplateVersionCreated";
|
|
83295
83310
|
data: {
|
|
83311
|
+
designSystemId: string;
|
|
83296
83312
|
version: string;
|
|
83297
83313
|
templateId: string;
|
|
83298
83314
|
};
|
|
83299
83315
|
}, {
|
|
83300
83316
|
type: "SandboxTemplateVersionCreated";
|
|
83301
83317
|
data: {
|
|
83318
|
+
designSystemId: string;
|
|
83302
83319
|
version: string;
|
|
83303
83320
|
templateId: string;
|
|
83304
83321
|
};
|
|
@@ -111424,22 +111441,27 @@ declare const DTOWorkspaceRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodO
|
|
|
111424
111441
|
data: z$1.ZodObject<{
|
|
111425
111442
|
templateId: z$1.ZodString;
|
|
111426
111443
|
version: z$1.ZodString;
|
|
111444
|
+
designSystemId: z$1.ZodString;
|
|
111427
111445
|
}, "strip", z$1.ZodTypeAny, {
|
|
111446
|
+
designSystemId: string;
|
|
111428
111447
|
version: string;
|
|
111429
111448
|
templateId: string;
|
|
111430
111449
|
}, {
|
|
111450
|
+
designSystemId: string;
|
|
111431
111451
|
version: string;
|
|
111432
111452
|
templateId: string;
|
|
111433
111453
|
}>;
|
|
111434
111454
|
}, "strip", z$1.ZodTypeAny, {
|
|
111435
111455
|
type: "SandboxTemplateVersionCreated";
|
|
111436
111456
|
data: {
|
|
111457
|
+
designSystemId: string;
|
|
111437
111458
|
version: string;
|
|
111438
111459
|
templateId: string;
|
|
111439
111460
|
};
|
|
111440
111461
|
}, {
|
|
111441
111462
|
type: "SandboxTemplateVersionCreated";
|
|
111442
111463
|
data: {
|
|
111464
|
+
designSystemId: string;
|
|
111443
111465
|
version: string;
|
|
111444
111466
|
templateId: string;
|
|
111445
111467
|
};
|
|
@@ -128726,7 +128748,7 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128726
128748
|
url: z$1.ZodString;
|
|
128727
128749
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
128728
128750
|
currentIterationId: z$1.ZodString;
|
|
128729
|
-
featureId: z$1.ZodString
|
|
128751
|
+
featureId: z$1.ZodOptional<z$1.ZodString>;
|
|
128730
128752
|
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
128731
128753
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
128732
128754
|
/** At what stage the error has occured */
|
|
@@ -128743,7 +128765,6 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128743
128765
|
}, "strip", z$1.ZodTypeAny, {
|
|
128744
128766
|
id: string;
|
|
128745
128767
|
url: string;
|
|
128746
|
-
featureId: string;
|
|
128747
128768
|
currentIterationId: string;
|
|
128748
128769
|
expiresAt?: string | undefined;
|
|
128749
128770
|
error?: {
|
|
@@ -128751,10 +128772,10 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128751
128772
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128752
128773
|
} | undefined;
|
|
128753
128774
|
parentMessageId?: string | undefined;
|
|
128775
|
+
featureId?: string | undefined;
|
|
128754
128776
|
}, {
|
|
128755
128777
|
id: string;
|
|
128756
128778
|
url: string;
|
|
128757
|
-
featureId: string;
|
|
128758
128779
|
currentIterationId: string;
|
|
128759
128780
|
expiresAt?: string | undefined;
|
|
128760
128781
|
error?: {
|
|
@@ -128762,6 +128783,7 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128762
128783
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128763
128784
|
} | undefined;
|
|
128764
128785
|
parentMessageId?: string | undefined;
|
|
128786
|
+
featureId?: string | undefined;
|
|
128765
128787
|
}>;
|
|
128766
128788
|
type DTOFeatureSandbox = z$1.infer<typeof DTOFeatureSandbox>;
|
|
128767
128789
|
declare const DTOCreateFeatureSandbox: z$1.ZodObject<{
|
|
@@ -128769,7 +128791,6 @@ declare const DTOCreateFeatureSandbox: z$1.ZodObject<{
|
|
|
128769
128791
|
url: z$1.ZodString;
|
|
128770
128792
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
128771
128793
|
currentIterationId: z$1.ZodString;
|
|
128772
|
-
featureId: z$1.ZodString;
|
|
128773
128794
|
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
128774
128795
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
128775
128796
|
/** At what stage the error has occured */
|
|
@@ -128783,6 +128804,8 @@ declare const DTOCreateFeatureSandbox: z$1.ZodObject<{
|
|
|
128783
128804
|
errorDescription: string;
|
|
128784
128805
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128785
128806
|
}>>;
|
|
128807
|
+
} & {
|
|
128808
|
+
featureId: z$1.ZodString;
|
|
128786
128809
|
}, "strip", z$1.ZodTypeAny, {
|
|
128787
128810
|
id: string;
|
|
128788
128811
|
url: string;
|
|
@@ -128857,7 +128880,7 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128857
128880
|
url: z$1.ZodString;
|
|
128858
128881
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
128859
128882
|
currentIterationId: z$1.ZodString;
|
|
128860
|
-
featureId: z$1.ZodString
|
|
128883
|
+
featureId: z$1.ZodOptional<z$1.ZodString>;
|
|
128861
128884
|
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
128862
128885
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
128863
128886
|
/** At what stage the error has occured */
|
|
@@ -128874,7 +128897,6 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128874
128897
|
}, "strip", z$1.ZodTypeAny, {
|
|
128875
128898
|
id: string;
|
|
128876
128899
|
url: string;
|
|
128877
|
-
featureId: string;
|
|
128878
128900
|
currentIterationId: string;
|
|
128879
128901
|
expiresAt?: string | undefined;
|
|
128880
128902
|
error?: {
|
|
@@ -128882,10 +128904,10 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128882
128904
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128883
128905
|
} | undefined;
|
|
128884
128906
|
parentMessageId?: string | undefined;
|
|
128907
|
+
featureId?: string | undefined;
|
|
128885
128908
|
}, {
|
|
128886
128909
|
id: string;
|
|
128887
128910
|
url: string;
|
|
128888
|
-
featureId: string;
|
|
128889
128911
|
currentIterationId: string;
|
|
128890
128912
|
expiresAt?: string | undefined;
|
|
128891
128913
|
error?: {
|
|
@@ -128893,12 +128915,12 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128893
128915
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128894
128916
|
} | undefined;
|
|
128895
128917
|
parentMessageId?: string | undefined;
|
|
128918
|
+
featureId?: string | undefined;
|
|
128896
128919
|
}>, "many">;
|
|
128897
128920
|
}, "strip", z$1.ZodTypeAny, {
|
|
128898
128921
|
sandboxes: {
|
|
128899
128922
|
id: string;
|
|
128900
128923
|
url: string;
|
|
128901
|
-
featureId: string;
|
|
128902
128924
|
currentIterationId: string;
|
|
128903
128925
|
expiresAt?: string | undefined;
|
|
128904
128926
|
error?: {
|
|
@@ -128906,12 +128928,12 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128906
128928
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128907
128929
|
} | undefined;
|
|
128908
128930
|
parentMessageId?: string | undefined;
|
|
128931
|
+
featureId?: string | undefined;
|
|
128909
128932
|
}[];
|
|
128910
128933
|
}, {
|
|
128911
128934
|
sandboxes: {
|
|
128912
128935
|
id: string;
|
|
128913
128936
|
url: string;
|
|
128914
|
-
featureId: string;
|
|
128915
128937
|
currentIterationId: string;
|
|
128916
128938
|
expiresAt?: string | undefined;
|
|
128917
128939
|
error?: {
|
|
@@ -128919,6 +128941,7 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128919
128941
|
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128920
128942
|
} | undefined;
|
|
128921
128943
|
parentMessageId?: string | undefined;
|
|
128944
|
+
featureId?: string | undefined;
|
|
128922
128945
|
}[];
|
|
128923
128946
|
}>;
|
|
128924
128947
|
type DTOFeatureSandboxListResponse = z$1.infer<typeof DTOFeatureSandboxListResponse>;
|