@supernova-studio/client 1.10.17 → 1.10.19
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 +88 -53
- package/dist/index.d.ts +88 -53
- package/dist/index.js +16 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +637 -624
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -28773,6 +28773,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
28773
28773
|
themePersistentId?: string | undefined;
|
|
28774
28774
|
themePersistentIds?: string[] | undefined;
|
|
28775
28775
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
28776
|
+
scheduleId?: string | undefined;
|
|
28776
28777
|
finishedAt?: Date | undefined;
|
|
28777
28778
|
index?: number | undefined;
|
|
28778
28779
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -28780,7 +28781,6 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
28780
28781
|
userId: string;
|
|
28781
28782
|
userName: string;
|
|
28782
28783
|
} | undefined;
|
|
28783
|
-
scheduleId?: string | undefined;
|
|
28784
28784
|
result?: {
|
|
28785
28785
|
s3?: {
|
|
28786
28786
|
path: string;
|
|
@@ -28929,6 +28929,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
28929
28929
|
themePersistentId?: string | undefined;
|
|
28930
28930
|
themePersistentIds?: string[] | undefined;
|
|
28931
28931
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
28932
|
+
scheduleId?: string | undefined;
|
|
28932
28933
|
finishedAt?: Date | undefined;
|
|
28933
28934
|
index?: number | undefined;
|
|
28934
28935
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -28936,7 +28937,6 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
28936
28937
|
userId: string;
|
|
28937
28938
|
userName: string;
|
|
28938
28939
|
} | undefined;
|
|
28939
|
-
scheduleId?: string | undefined;
|
|
28940
28940
|
result?: {
|
|
28941
28941
|
s3?: {
|
|
28942
28942
|
path: string;
|
|
@@ -29087,6 +29087,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
29087
29087
|
themePersistentId?: string | undefined;
|
|
29088
29088
|
themePersistentIds?: string[] | undefined;
|
|
29089
29089
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
29090
|
+
scheduleId?: string | undefined;
|
|
29090
29091
|
finishedAt?: Date | undefined;
|
|
29091
29092
|
index?: number | undefined;
|
|
29092
29093
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -29094,7 +29095,6 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
29094
29095
|
userId: string;
|
|
29095
29096
|
userName: string;
|
|
29096
29097
|
} | undefined;
|
|
29097
|
-
scheduleId?: string | undefined;
|
|
29098
29098
|
result?: {
|
|
29099
29099
|
s3?: {
|
|
29100
29100
|
path: string;
|
|
@@ -29245,6 +29245,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
29245
29245
|
themePersistentId?: string | undefined;
|
|
29246
29246
|
themePersistentIds?: string[] | undefined;
|
|
29247
29247
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
29248
|
+
scheduleId?: string | undefined;
|
|
29248
29249
|
finishedAt?: Date | undefined;
|
|
29249
29250
|
index?: number | undefined;
|
|
29250
29251
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -29252,7 +29253,6 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
29252
29253
|
userId: string;
|
|
29253
29254
|
userName: string;
|
|
29254
29255
|
} | undefined;
|
|
29255
|
-
scheduleId?: string | undefined;
|
|
29256
29256
|
result?: {
|
|
29257
29257
|
s3?: {
|
|
29258
29258
|
path: string;
|
|
@@ -58987,38 +58987,35 @@ declare const DTOExporterDeprecationInput: z.ZodObject<{
|
|
|
58987
58987
|
type DTOExporterDeprecationInput = z.infer<typeof DTOExporterDeprecationInput>;
|
|
58988
58988
|
|
|
58989
58989
|
declare const DTOExportJobsListFilter: z.ZodObject<{
|
|
58990
|
+
exporterId: z.ZodOptional<z.ZodString>;
|
|
58991
|
+
designSystemVersionId: z.ZodOptional<z.ZodString>;
|
|
58992
|
+
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
58990
58993
|
status: z.ZodOptional<z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>>;
|
|
58994
|
+
scheduleId: z.ZodOptional<z.ZodString>;
|
|
58991
58995
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
58992
|
-
|
|
58993
|
-
brandId: z.ZodOptional<z.
|
|
58994
|
-
|
|
58995
|
-
themeId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
58996
|
-
exporterId: z.ZodOptional<z.ZodString>;
|
|
58997
|
-
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
58998
|
-
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab", "bitbucket"]>, "many">>;
|
|
58999
|
-
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
58996
|
+
themeId: z.ZodOptional<z.ZodString>;
|
|
58997
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
58998
|
+
destinations: z.ZodOptional<z.ZodEffects<z.ZodString, ("s3" | "azure" | "bitbucket" | "github" | "gitlab" | "documentation" | "webhookUrl")[], string>>;
|
|
59000
58999
|
}, "strip", z.ZodTypeAny, {
|
|
59001
|
-
status?: "
|
|
59002
|
-
designSystemId?: string | undefined;
|
|
59000
|
+
status?: "InProgress" | "Failed" | "Success" | "Timeout" | undefined;
|
|
59003
59001
|
designSystemVersionId?: string | undefined;
|
|
59002
|
+
designSystemId?: string | undefined;
|
|
59004
59003
|
brandId?: string | undefined;
|
|
59005
|
-
createdByUserId?: string | undefined;
|
|
59006
59004
|
themeId?: string | undefined;
|
|
59007
59005
|
exporterId?: string | undefined;
|
|
59008
|
-
|
|
59009
|
-
|
|
59010
|
-
|
|
59006
|
+
destinations?: ("s3" | "azure" | "bitbucket" | "github" | "gitlab" | "documentation" | "webhookUrl")[] | undefined;
|
|
59007
|
+
createdByUserId?: string | undefined;
|
|
59008
|
+
scheduleId?: string | undefined;
|
|
59011
59009
|
}, {
|
|
59012
|
-
status?: "
|
|
59013
|
-
designSystemId?: string | undefined;
|
|
59010
|
+
status?: "InProgress" | "Failed" | "Success" | "Timeout" | undefined;
|
|
59014
59011
|
designSystemVersionId?: string | undefined;
|
|
59012
|
+
designSystemId?: string | undefined;
|
|
59015
59013
|
brandId?: string | undefined;
|
|
59016
|
-
createdByUserId?: string | undefined;
|
|
59017
59014
|
themeId?: string | undefined;
|
|
59018
59015
|
exporterId?: string | undefined;
|
|
59019
|
-
|
|
59020
|
-
|
|
59021
|
-
|
|
59016
|
+
destinations?: string | undefined;
|
|
59017
|
+
createdByUserId?: string | undefined;
|
|
59018
|
+
scheduleId?: string | undefined;
|
|
59022
59019
|
}>;
|
|
59023
59020
|
type DTOExportJobsListFilter = z.infer<typeof DTOExportJobsListFilter>;
|
|
59024
59021
|
|
|
@@ -60553,6 +60550,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
60553
60550
|
themePersistentId?: string | undefined;
|
|
60554
60551
|
themePersistentIds?: string[] | undefined;
|
|
60555
60552
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
60553
|
+
scheduleId?: string | undefined;
|
|
60556
60554
|
finishedAt?: Date | undefined;
|
|
60557
60555
|
index?: number | undefined;
|
|
60558
60556
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -60560,7 +60558,6 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
60560
60558
|
userId: string;
|
|
60561
60559
|
userName: string;
|
|
60562
60560
|
} | undefined;
|
|
60563
|
-
scheduleId?: string | undefined;
|
|
60564
60561
|
result?: {
|
|
60565
60562
|
s3?: {
|
|
60566
60563
|
path: string;
|
|
@@ -60709,6 +60706,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
60709
60706
|
themePersistentId?: string | undefined;
|
|
60710
60707
|
themePersistentIds?: string[] | undefined;
|
|
60711
60708
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
60709
|
+
scheduleId?: string | undefined;
|
|
60712
60710
|
finishedAt?: Date | undefined;
|
|
60713
60711
|
index?: number | undefined;
|
|
60714
60712
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -60716,7 +60714,6 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
60716
60714
|
userId: string;
|
|
60717
60715
|
userName: string;
|
|
60718
60716
|
} | undefined;
|
|
60719
|
-
scheduleId?: string | undefined;
|
|
60720
60717
|
result?: {
|
|
60721
60718
|
s3?: {
|
|
60722
60719
|
path: string;
|
|
@@ -61570,6 +61567,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
61570
61567
|
themePersistentId?: string | undefined;
|
|
61571
61568
|
themePersistentIds?: string[] | undefined;
|
|
61572
61569
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
61570
|
+
scheduleId?: string | undefined;
|
|
61573
61571
|
finishedAt?: Date | undefined;
|
|
61574
61572
|
index?: number | undefined;
|
|
61575
61573
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -61577,7 +61575,6 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
61577
61575
|
userId: string;
|
|
61578
61576
|
userName: string;
|
|
61579
61577
|
} | undefined;
|
|
61580
|
-
scheduleId?: string | undefined;
|
|
61581
61578
|
result?: {
|
|
61582
61579
|
s3?: {
|
|
61583
61580
|
path: string;
|
|
@@ -61726,6 +61723,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
61726
61723
|
themePersistentId?: string | undefined;
|
|
61727
61724
|
themePersistentIds?: string[] | undefined;
|
|
61728
61725
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
61726
|
+
scheduleId?: string | undefined;
|
|
61729
61727
|
finishedAt?: Date | undefined;
|
|
61730
61728
|
index?: number | undefined;
|
|
61731
61729
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -61733,7 +61731,6 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
61733
61731
|
userId: string;
|
|
61734
61732
|
userName: string;
|
|
61735
61733
|
} | undefined;
|
|
61736
|
-
scheduleId?: string | undefined;
|
|
61737
61734
|
result?: {
|
|
61738
61735
|
s3?: {
|
|
61739
61736
|
path: string;
|
|
@@ -61884,6 +61881,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
61884
61881
|
themePersistentId?: string | undefined;
|
|
61885
61882
|
themePersistentIds?: string[] | undefined;
|
|
61886
61883
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
61884
|
+
scheduleId?: string | undefined;
|
|
61887
61885
|
finishedAt?: Date | undefined;
|
|
61888
61886
|
index?: number | undefined;
|
|
61889
61887
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -61891,7 +61889,6 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
61891
61889
|
userId: string;
|
|
61892
61890
|
userName: string;
|
|
61893
61891
|
} | undefined;
|
|
61894
|
-
scheduleId?: string | undefined;
|
|
61895
61892
|
result?: {
|
|
61896
61893
|
s3?: {
|
|
61897
61894
|
path: string;
|
|
@@ -62042,6 +62039,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
62042
62039
|
themePersistentId?: string | undefined;
|
|
62043
62040
|
themePersistentIds?: string[] | undefined;
|
|
62044
62041
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
62042
|
+
scheduleId?: string | undefined;
|
|
62045
62043
|
finishedAt?: Date | undefined;
|
|
62046
62044
|
index?: number | undefined;
|
|
62047
62045
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -62049,7 +62047,6 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
62049
62047
|
userId: string;
|
|
62050
62048
|
userName: string;
|
|
62051
62049
|
} | undefined;
|
|
62052
|
-
scheduleId?: string | undefined;
|
|
62053
62050
|
result?: {
|
|
62054
62051
|
s3?: {
|
|
62055
62052
|
path: string;
|
|
@@ -63553,6 +63550,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
63553
63550
|
themePersistentId?: string | undefined;
|
|
63554
63551
|
themePersistentIds?: string[] | undefined;
|
|
63555
63552
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
63553
|
+
scheduleId?: string | undefined;
|
|
63556
63554
|
finishedAt?: Date | undefined;
|
|
63557
63555
|
index?: number | undefined;
|
|
63558
63556
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -63560,7 +63558,6 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
63560
63558
|
userId: string;
|
|
63561
63559
|
userName: string;
|
|
63562
63560
|
} | undefined;
|
|
63563
|
-
scheduleId?: string | undefined;
|
|
63564
63561
|
result?: {
|
|
63565
63562
|
s3?: {
|
|
63566
63563
|
path: string;
|
|
@@ -63709,6 +63706,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
63709
63706
|
themePersistentId?: string | undefined;
|
|
63710
63707
|
themePersistentIds?: string[] | undefined;
|
|
63711
63708
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
63709
|
+
scheduleId?: string | undefined;
|
|
63712
63710
|
finishedAt?: Date | undefined;
|
|
63713
63711
|
index?: number | undefined;
|
|
63714
63712
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -63716,7 +63714,6 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
63716
63714
|
userId: string;
|
|
63717
63715
|
userName: string;
|
|
63718
63716
|
} | undefined;
|
|
63719
|
-
scheduleId?: string | undefined;
|
|
63720
63717
|
result?: {
|
|
63721
63718
|
s3?: {
|
|
63722
63719
|
path: string;
|
|
@@ -64143,6 +64140,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
64143
64140
|
themePersistentId?: string | undefined;
|
|
64144
64141
|
themePersistentIds?: string[] | undefined;
|
|
64145
64142
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
64143
|
+
scheduleId?: string | undefined;
|
|
64146
64144
|
finishedAt?: Date | undefined;
|
|
64147
64145
|
index?: number | undefined;
|
|
64148
64146
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -64150,7 +64148,6 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
64150
64148
|
userId: string;
|
|
64151
64149
|
userName: string;
|
|
64152
64150
|
} | undefined;
|
|
64153
|
-
scheduleId?: string | undefined;
|
|
64154
64151
|
result?: {
|
|
64155
64152
|
s3?: {
|
|
64156
64153
|
path: string;
|
|
@@ -64398,6 +64395,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
64398
64395
|
themePersistentId?: string | undefined;
|
|
64399
64396
|
themePersistentIds?: string[] | undefined;
|
|
64400
64397
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
64398
|
+
scheduleId?: string | undefined;
|
|
64401
64399
|
finishedAt?: Date | undefined;
|
|
64402
64400
|
index?: number | undefined;
|
|
64403
64401
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -64405,7 +64403,6 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
64405
64403
|
userId: string;
|
|
64406
64404
|
userName: string;
|
|
64407
64405
|
} | undefined;
|
|
64408
|
-
scheduleId?: string | undefined;
|
|
64409
64406
|
result?: {
|
|
64410
64407
|
s3?: {
|
|
64411
64408
|
path: string;
|
|
@@ -65351,6 +65348,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
65351
65348
|
themePersistentId?: string | undefined;
|
|
65352
65349
|
themePersistentIds?: string[] | undefined;
|
|
65353
65350
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
65351
|
+
scheduleId?: string | undefined;
|
|
65354
65352
|
finishedAt?: Date | undefined;
|
|
65355
65353
|
index?: number | undefined;
|
|
65356
65354
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -65358,7 +65356,6 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
65358
65356
|
userId: string;
|
|
65359
65357
|
userName: string;
|
|
65360
65358
|
} | undefined;
|
|
65361
|
-
scheduleId?: string | undefined;
|
|
65362
65359
|
result?: {
|
|
65363
65360
|
s3?: {
|
|
65364
65361
|
path: string;
|
|
@@ -65507,6 +65504,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
65507
65504
|
themePersistentId?: string | undefined;
|
|
65508
65505
|
themePersistentIds?: string[] | undefined;
|
|
65509
65506
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
65507
|
+
scheduleId?: string | undefined;
|
|
65510
65508
|
finishedAt?: Date | undefined;
|
|
65511
65509
|
index?: number | undefined;
|
|
65512
65510
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -65514,7 +65512,6 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
65514
65512
|
userId: string;
|
|
65515
65513
|
userName: string;
|
|
65516
65514
|
} | undefined;
|
|
65517
|
-
scheduleId?: string | undefined;
|
|
65518
65515
|
result?: {
|
|
65519
65516
|
s3?: {
|
|
65520
65517
|
path: string;
|
|
@@ -65941,6 +65938,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
65941
65938
|
themePersistentId?: string | undefined;
|
|
65942
65939
|
themePersistentIds?: string[] | undefined;
|
|
65943
65940
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
65941
|
+
scheduleId?: string | undefined;
|
|
65944
65942
|
finishedAt?: Date | undefined;
|
|
65945
65943
|
index?: number | undefined;
|
|
65946
65944
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -65948,7 +65946,6 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
65948
65946
|
userId: string;
|
|
65949
65947
|
userName: string;
|
|
65950
65948
|
} | undefined;
|
|
65951
|
-
scheduleId?: string | undefined;
|
|
65952
65949
|
result?: {
|
|
65953
65950
|
s3?: {
|
|
65954
65951
|
path: string;
|
|
@@ -66196,6 +66193,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
66196
66193
|
themePersistentId?: string | undefined;
|
|
66197
66194
|
themePersistentIds?: string[] | undefined;
|
|
66198
66195
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
66196
|
+
scheduleId?: string | undefined;
|
|
66199
66197
|
finishedAt?: Date | undefined;
|
|
66200
66198
|
index?: number | undefined;
|
|
66201
66199
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -66203,7 +66201,6 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
66203
66201
|
userId: string;
|
|
66204
66202
|
userName: string;
|
|
66205
66203
|
} | undefined;
|
|
66206
|
-
scheduleId?: string | undefined;
|
|
66207
66204
|
result?: {
|
|
66208
66205
|
s3?: {
|
|
66209
66206
|
path: string;
|
|
@@ -66453,6 +66450,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
66453
66450
|
themePersistentId?: string | undefined;
|
|
66454
66451
|
themePersistentIds?: string[] | undefined;
|
|
66455
66452
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
66453
|
+
scheduleId?: string | undefined;
|
|
66456
66454
|
finishedAt?: Date | undefined;
|
|
66457
66455
|
index?: number | undefined;
|
|
66458
66456
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -66460,7 +66458,6 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
66460
66458
|
userId: string;
|
|
66461
66459
|
userName: string;
|
|
66462
66460
|
} | undefined;
|
|
66463
|
-
scheduleId?: string | undefined;
|
|
66464
66461
|
result?: {
|
|
66465
66462
|
s3?: {
|
|
66466
66463
|
path: string;
|
|
@@ -66710,6 +66707,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
66710
66707
|
themePersistentId?: string | undefined;
|
|
66711
66708
|
themePersistentIds?: string[] | undefined;
|
|
66712
66709
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
66710
|
+
scheduleId?: string | undefined;
|
|
66713
66711
|
finishedAt?: Date | undefined;
|
|
66714
66712
|
index?: number | undefined;
|
|
66715
66713
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -66717,7 +66715,6 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
66717
66715
|
userId: string;
|
|
66718
66716
|
userName: string;
|
|
66719
66717
|
} | undefined;
|
|
66720
|
-
scheduleId?: string | undefined;
|
|
66721
66718
|
result?: {
|
|
66722
66719
|
s3?: {
|
|
66723
66720
|
path: string;
|
|
@@ -67664,6 +67661,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
67664
67661
|
themePersistentId?: string | undefined;
|
|
67665
67662
|
themePersistentIds?: string[] | undefined;
|
|
67666
67663
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
67664
|
+
scheduleId?: string | undefined;
|
|
67667
67665
|
finishedAt?: Date | undefined;
|
|
67668
67666
|
index?: number | undefined;
|
|
67669
67667
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -67671,7 +67669,6 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
67671
67669
|
userId: string;
|
|
67672
67670
|
userName: string;
|
|
67673
67671
|
} | undefined;
|
|
67674
|
-
scheduleId?: string | undefined;
|
|
67675
67672
|
result?: {
|
|
67676
67673
|
s3?: {
|
|
67677
67674
|
path: string;
|
|
@@ -67820,6 +67817,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
67820
67817
|
themePersistentId?: string | undefined;
|
|
67821
67818
|
themePersistentIds?: string[] | undefined;
|
|
67822
67819
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
67820
|
+
scheduleId?: string | undefined;
|
|
67823
67821
|
finishedAt?: Date | undefined;
|
|
67824
67822
|
index?: number | undefined;
|
|
67825
67823
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -67827,7 +67825,6 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
67827
67825
|
userId: string;
|
|
67828
67826
|
userName: string;
|
|
67829
67827
|
} | undefined;
|
|
67830
|
-
scheduleId?: string | undefined;
|
|
67831
67828
|
result?: {
|
|
67832
67829
|
s3?: {
|
|
67833
67830
|
path: string;
|
|
@@ -68254,6 +68251,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
68254
68251
|
themePersistentId?: string | undefined;
|
|
68255
68252
|
themePersistentIds?: string[] | undefined;
|
|
68256
68253
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
68254
|
+
scheduleId?: string | undefined;
|
|
68257
68255
|
finishedAt?: Date | undefined;
|
|
68258
68256
|
index?: number | undefined;
|
|
68259
68257
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -68261,7 +68259,6 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
68261
68259
|
userId: string;
|
|
68262
68260
|
userName: string;
|
|
68263
68261
|
} | undefined;
|
|
68264
|
-
scheduleId?: string | undefined;
|
|
68265
68262
|
result?: {
|
|
68266
68263
|
s3?: {
|
|
68267
68264
|
path: string;
|
|
@@ -68509,6 +68506,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
68509
68506
|
themePersistentId?: string | undefined;
|
|
68510
68507
|
themePersistentIds?: string[] | undefined;
|
|
68511
68508
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
68509
|
+
scheduleId?: string | undefined;
|
|
68512
68510
|
finishedAt?: Date | undefined;
|
|
68513
68511
|
index?: number | undefined;
|
|
68514
68512
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -68516,7 +68514,6 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
68516
68514
|
userId: string;
|
|
68517
68515
|
userName: string;
|
|
68518
68516
|
} | undefined;
|
|
68519
|
-
scheduleId?: string | undefined;
|
|
68520
68517
|
result?: {
|
|
68521
68518
|
s3?: {
|
|
68522
68519
|
path: string;
|
|
@@ -68766,6 +68763,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
68766
68763
|
themePersistentId?: string | undefined;
|
|
68767
68764
|
themePersistentIds?: string[] | undefined;
|
|
68768
68765
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
68766
|
+
scheduleId?: string | undefined;
|
|
68769
68767
|
finishedAt?: Date | undefined;
|
|
68770
68768
|
index?: number | undefined;
|
|
68771
68769
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -68773,7 +68771,6 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
68773
68771
|
userId: string;
|
|
68774
68772
|
userName: string;
|
|
68775
68773
|
} | undefined;
|
|
68776
|
-
scheduleId?: string | undefined;
|
|
68777
68774
|
result?: {
|
|
68778
68775
|
s3?: {
|
|
68779
68776
|
path: string;
|
|
@@ -69023,6 +69020,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
69023
69020
|
themePersistentId?: string | undefined;
|
|
69024
69021
|
themePersistentIds?: string[] | undefined;
|
|
69025
69022
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
69023
|
+
scheduleId?: string | undefined;
|
|
69026
69024
|
finishedAt?: Date | undefined;
|
|
69027
69025
|
index?: number | undefined;
|
|
69028
69026
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -69030,7 +69028,6 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
69030
69028
|
userId: string;
|
|
69031
69029
|
userName: string;
|
|
69032
69030
|
} | undefined;
|
|
69033
|
-
scheduleId?: string | undefined;
|
|
69034
69031
|
result?: {
|
|
69035
69032
|
s3?: {
|
|
69036
69033
|
path: string;
|
|
@@ -97921,6 +97918,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97921
97918
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
97922
97919
|
workspaceId: z.ZodString;
|
|
97923
97920
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
97921
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
97924
97922
|
}, "fpContextId"> & {
|
|
97925
97923
|
context: z.ZodObject<{
|
|
97926
97924
|
createdAt: z.ZodDate;
|
|
@@ -98265,6 +98263,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
98265
98263
|
instruction: string | null;
|
|
98266
98264
|
updatedAt?: Date | undefined;
|
|
98267
98265
|
createdByUserId?: string | undefined;
|
|
98266
|
+
isArchived?: boolean | undefined;
|
|
98268
98267
|
}, {
|
|
98269
98268
|
id: string;
|
|
98270
98269
|
createdAt: Date;
|
|
@@ -98341,6 +98340,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
98341
98340
|
tags?: string[] | undefined;
|
|
98342
98341
|
updatedAt?: Date | undefined;
|
|
98343
98342
|
createdByUserId?: string | undefined;
|
|
98343
|
+
isArchived?: boolean | undefined;
|
|
98344
98344
|
}>;
|
|
98345
98345
|
type DTOForgeProject = z.infer<typeof DTOForgeProject>;
|
|
98346
98346
|
declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
@@ -98365,6 +98365,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98365
98365
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
98366
98366
|
workspaceId: z.ZodString;
|
|
98367
98367
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
98368
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
98368
98369
|
}, "fpContextId"> & {
|
|
98369
98370
|
context: z.ZodObject<{
|
|
98370
98371
|
createdAt: z.ZodDate;
|
|
@@ -98709,6 +98710,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98709
98710
|
instruction: string | null;
|
|
98710
98711
|
updatedAt?: Date | undefined;
|
|
98711
98712
|
createdByUserId?: string | undefined;
|
|
98713
|
+
isArchived?: boolean | undefined;
|
|
98712
98714
|
}, {
|
|
98713
98715
|
id: string;
|
|
98714
98716
|
createdAt: Date;
|
|
@@ -98785,6 +98787,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98785
98787
|
tags?: string[] | undefined;
|
|
98786
98788
|
updatedAt?: Date | undefined;
|
|
98787
98789
|
createdByUserId?: string | undefined;
|
|
98790
|
+
isArchived?: boolean | undefined;
|
|
98788
98791
|
}>>;
|
|
98789
98792
|
}, "strip", z.ZodTypeAny, {
|
|
98790
98793
|
project: {
|
|
@@ -98863,6 +98866,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98863
98866
|
instruction: string | null;
|
|
98864
98867
|
updatedAt?: Date | undefined;
|
|
98865
98868
|
createdByUserId?: string | undefined;
|
|
98869
|
+
isArchived?: boolean | undefined;
|
|
98866
98870
|
} | null;
|
|
98867
98871
|
}, {
|
|
98868
98872
|
project: {
|
|
@@ -98941,6 +98945,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98941
98945
|
tags?: string[] | undefined;
|
|
98942
98946
|
updatedAt?: Date | undefined;
|
|
98943
98947
|
createdByUserId?: string | undefined;
|
|
98948
|
+
isArchived?: boolean | undefined;
|
|
98944
98949
|
} | null;
|
|
98945
98950
|
}>;
|
|
98946
98951
|
type DTOForgeProjectGetResponse = z.infer<typeof DTOForgeProjectGetResponse>;
|
|
@@ -98966,6 +98971,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98966
98971
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
98967
98972
|
workspaceId: z.ZodString;
|
|
98968
98973
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
98974
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
98969
98975
|
}, "fpContextId"> & {
|
|
98970
98976
|
context: z.ZodObject<{
|
|
98971
98977
|
createdAt: z.ZodDate;
|
|
@@ -99310,6 +99316,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
99310
99316
|
instruction: string | null;
|
|
99311
99317
|
updatedAt?: Date | undefined;
|
|
99312
99318
|
createdByUserId?: string | undefined;
|
|
99319
|
+
isArchived?: boolean | undefined;
|
|
99313
99320
|
}, {
|
|
99314
99321
|
id: string;
|
|
99315
99322
|
createdAt: Date;
|
|
@@ -99386,6 +99393,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
99386
99393
|
tags?: string[] | undefined;
|
|
99387
99394
|
updatedAt?: Date | undefined;
|
|
99388
99395
|
createdByUserId?: string | undefined;
|
|
99396
|
+
isArchived?: boolean | undefined;
|
|
99389
99397
|
}>, "many">;
|
|
99390
99398
|
}, "strip", z.ZodTypeAny, {
|
|
99391
99399
|
projects: {
|
|
@@ -99464,6 +99472,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
99464
99472
|
instruction: string | null;
|
|
99465
99473
|
updatedAt?: Date | undefined;
|
|
99466
99474
|
createdByUserId?: string | undefined;
|
|
99475
|
+
isArchived?: boolean | undefined;
|
|
99467
99476
|
}[];
|
|
99468
99477
|
}, {
|
|
99469
99478
|
projects: {
|
|
@@ -99542,6 +99551,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
99542
99551
|
tags?: string[] | undefined;
|
|
99543
99552
|
updatedAt?: Date | undefined;
|
|
99544
99553
|
createdByUserId?: string | undefined;
|
|
99554
|
+
isArchived?: boolean | undefined;
|
|
99545
99555
|
}[];
|
|
99546
99556
|
}>;
|
|
99547
99557
|
type DTOForgeProjectsListResponse = z.infer<typeof DTOForgeProjectsListResponse>;
|
|
@@ -99567,6 +99577,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99567
99577
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
99568
99578
|
workspaceId: z.ZodString;
|
|
99569
99579
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
99580
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
99570
99581
|
}, "fpContextId"> & {
|
|
99571
99582
|
context: z.ZodObject<{
|
|
99572
99583
|
createdAt: z.ZodDate;
|
|
@@ -99911,6 +99922,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99911
99922
|
instruction: string | null;
|
|
99912
99923
|
updatedAt?: Date | undefined;
|
|
99913
99924
|
createdByUserId?: string | undefined;
|
|
99925
|
+
isArchived?: boolean | undefined;
|
|
99914
99926
|
}, {
|
|
99915
99927
|
id: string;
|
|
99916
99928
|
createdAt: Date;
|
|
@@ -99987,6 +99999,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99987
99999
|
tags?: string[] | undefined;
|
|
99988
100000
|
updatedAt?: Date | undefined;
|
|
99989
100001
|
createdByUserId?: string | undefined;
|
|
100002
|
+
isArchived?: boolean | undefined;
|
|
99990
100003
|
}>;
|
|
99991
100004
|
}, "strip", z.ZodTypeAny, {
|
|
99992
100005
|
project: {
|
|
@@ -100065,6 +100078,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
100065
100078
|
instruction: string | null;
|
|
100066
100079
|
updatedAt?: Date | undefined;
|
|
100067
100080
|
createdByUserId?: string | undefined;
|
|
100081
|
+
isArchived?: boolean | undefined;
|
|
100068
100082
|
};
|
|
100069
100083
|
}, {
|
|
100070
100084
|
project: {
|
|
@@ -100143,6 +100157,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
100143
100157
|
tags?: string[] | undefined;
|
|
100144
100158
|
updatedAt?: Date | undefined;
|
|
100145
100159
|
createdByUserId?: string | undefined;
|
|
100160
|
+
isArchived?: boolean | undefined;
|
|
100146
100161
|
};
|
|
100147
100162
|
}>;
|
|
100148
100163
|
type DTOCreateForgeProjectResponse = z.infer<typeof DTOCreateForgeProjectResponse>;
|
|
@@ -100168,6 +100183,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100168
100183
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
100169
100184
|
workspaceId: z.ZodString;
|
|
100170
100185
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
100186
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
100171
100187
|
}, "fpContextId"> & {
|
|
100172
100188
|
context: z.ZodObject<{
|
|
100173
100189
|
createdAt: z.ZodDate;
|
|
@@ -100512,6 +100528,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100512
100528
|
instruction: string | null;
|
|
100513
100529
|
updatedAt?: Date | undefined;
|
|
100514
100530
|
createdByUserId?: string | undefined;
|
|
100531
|
+
isArchived?: boolean | undefined;
|
|
100515
100532
|
}, {
|
|
100516
100533
|
id: string;
|
|
100517
100534
|
createdAt: Date;
|
|
@@ -100588,6 +100605,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100588
100605
|
tags?: string[] | undefined;
|
|
100589
100606
|
updatedAt?: Date | undefined;
|
|
100590
100607
|
createdByUserId?: string | undefined;
|
|
100608
|
+
isArchived?: boolean | undefined;
|
|
100591
100609
|
}>>;
|
|
100592
100610
|
}, "strip", z.ZodTypeAny, {
|
|
100593
100611
|
project: {
|
|
@@ -100666,6 +100684,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100666
100684
|
instruction: string | null;
|
|
100667
100685
|
updatedAt?: Date | undefined;
|
|
100668
100686
|
createdByUserId?: string | undefined;
|
|
100687
|
+
isArchived?: boolean | undefined;
|
|
100669
100688
|
} | null;
|
|
100670
100689
|
}, {
|
|
100671
100690
|
project: {
|
|
@@ -100744,6 +100763,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100744
100763
|
tags?: string[] | undefined;
|
|
100745
100764
|
updatedAt?: Date | undefined;
|
|
100746
100765
|
createdByUserId?: string | undefined;
|
|
100766
|
+
isArchived?: boolean | undefined;
|
|
100747
100767
|
} | null;
|
|
100748
100768
|
}>;
|
|
100749
100769
|
type DTOUpdateForgeProjectResponse = z.infer<typeof DTOUpdateForgeProjectResponse>;
|
|
@@ -100769,6 +100789,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
|
|
|
100769
100789
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
100770
100790
|
workspaceId: z.ZodString;
|
|
100771
100791
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
100792
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
100772
100793
|
}, "fpContextId"> & {
|
|
100773
100794
|
context: z.ZodObject<{
|
|
100774
100795
|
createdAt: z.ZodDate;
|
|
@@ -101113,6 +101134,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
|
|
|
101113
101134
|
instruction: string | null;
|
|
101114
101135
|
updatedAt?: Date | undefined;
|
|
101115
101136
|
createdByUserId?: string | undefined;
|
|
101137
|
+
isArchived?: boolean | undefined;
|
|
101116
101138
|
}, {
|
|
101117
101139
|
id: string;
|
|
101118
101140
|
createdAt: Date;
|
|
@@ -101189,6 +101211,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
|
|
|
101189
101211
|
tags?: string[] | undefined;
|
|
101190
101212
|
updatedAt?: Date | undefined;
|
|
101191
101213
|
createdByUserId?: string | undefined;
|
|
101214
|
+
isArchived?: boolean | undefined;
|
|
101192
101215
|
}>;
|
|
101193
101216
|
}, "strip", z.ZodTypeAny, {
|
|
101194
101217
|
project: {
|
|
@@ -101267,6 +101290,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
|
|
|
101267
101290
|
instruction: string | null;
|
|
101268
101291
|
updatedAt?: Date | undefined;
|
|
101269
101292
|
createdByUserId?: string | undefined;
|
|
101293
|
+
isArchived?: boolean | undefined;
|
|
101270
101294
|
};
|
|
101271
101295
|
}, {
|
|
101272
101296
|
project: {
|
|
@@ -101345,6 +101369,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
|
|
|
101345
101369
|
tags?: string[] | undefined;
|
|
101346
101370
|
updatedAt?: Date | undefined;
|
|
101347
101371
|
createdByUserId?: string | undefined;
|
|
101372
|
+
isArchived?: boolean | undefined;
|
|
101348
101373
|
};
|
|
101349
101374
|
}>;
|
|
101350
101375
|
type DTOUGetForgeProjectResponse = z.infer<typeof DTOUGetForgeProjectResponse>;
|
|
@@ -101369,7 +101394,8 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
|
|
|
101369
101394
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
101370
101395
|
workspaceId: z.ZodString;
|
|
101371
101396
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
101372
|
-
|
|
101397
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
101398
|
+
}, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction" | "isArchived">, "strip", z.ZodTypeAny, {
|
|
101373
101399
|
name: string;
|
|
101374
101400
|
meta: {
|
|
101375
101401
|
name: string;
|
|
@@ -101379,6 +101405,7 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
|
|
|
101379
101405
|
accessMode: "Open" | "InviteOnly";
|
|
101380
101406
|
fpContextId: string;
|
|
101381
101407
|
instruction: string | null;
|
|
101408
|
+
isArchived?: boolean | undefined;
|
|
101382
101409
|
}, {
|
|
101383
101410
|
name: string;
|
|
101384
101411
|
meta: {
|
|
@@ -101389,6 +101416,7 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
|
|
|
101389
101416
|
fpContextId: string;
|
|
101390
101417
|
instruction: string | null;
|
|
101391
101418
|
tags?: string[] | undefined;
|
|
101419
|
+
isArchived?: boolean | undefined;
|
|
101392
101420
|
}>;
|
|
101393
101421
|
type DTOCreateForgeProject = z.infer<typeof DTOCreateForgeProject>;
|
|
101394
101422
|
declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
|
|
@@ -101412,7 +101440,8 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
|
|
|
101412
101440
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
101413
101441
|
workspaceId: z.ZodString;
|
|
101414
101442
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
101415
|
-
|
|
101443
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
101444
|
+
}, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction" | "isArchived"> & {
|
|
101416
101445
|
id: z.ZodString;
|
|
101417
101446
|
}, "strip", z.ZodTypeAny, {
|
|
101418
101447
|
id: string;
|
|
@@ -101425,6 +101454,7 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
|
|
|
101425
101454
|
accessMode: "Open" | "InviteOnly";
|
|
101426
101455
|
fpContextId: string;
|
|
101427
101456
|
instruction: string | null;
|
|
101457
|
+
isArchived?: boolean | undefined;
|
|
101428
101458
|
}, {
|
|
101429
101459
|
id: string;
|
|
101430
101460
|
name: string;
|
|
@@ -101436,6 +101466,7 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
|
|
|
101436
101466
|
fpContextId: string;
|
|
101437
101467
|
instruction: string | null;
|
|
101438
101468
|
tags?: string[] | undefined;
|
|
101469
|
+
isArchived?: boolean | undefined;
|
|
101439
101470
|
}>;
|
|
101440
101471
|
type DTOUpdateForgeProject = z.infer<typeof DTOUpdateForgeProject>;
|
|
101441
101472
|
declare const DTORemoveForgeProjectResponse: z.ZodObject<{
|
|
@@ -137296,6 +137327,7 @@ declare class PipelinesEndpoint {
|
|
|
137296
137327
|
themePersistentId?: string | undefined;
|
|
137297
137328
|
themePersistentIds?: string[] | undefined;
|
|
137298
137329
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
137330
|
+
scheduleId?: string | undefined;
|
|
137299
137331
|
finishedAt?: Date | undefined;
|
|
137300
137332
|
index?: number | undefined;
|
|
137301
137333
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -137303,7 +137335,6 @@ declare class PipelinesEndpoint {
|
|
|
137303
137335
|
userId: string;
|
|
137304
137336
|
userName: string;
|
|
137305
137337
|
} | undefined;
|
|
137306
|
-
scheduleId?: string | undefined;
|
|
137307
137338
|
result?: {
|
|
137308
137339
|
s3?: {
|
|
137309
137340
|
path: string;
|
|
@@ -137554,6 +137585,7 @@ declare class PipelinesEndpoint {
|
|
|
137554
137585
|
themePersistentId?: string | undefined;
|
|
137555
137586
|
themePersistentIds?: string[] | undefined;
|
|
137556
137587
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
137588
|
+
scheduleId?: string | undefined;
|
|
137557
137589
|
finishedAt?: Date | undefined;
|
|
137558
137590
|
index?: number | undefined;
|
|
137559
137591
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -137561,7 +137593,6 @@ declare class PipelinesEndpoint {
|
|
|
137561
137593
|
userId: string;
|
|
137562
137594
|
userName: string;
|
|
137563
137595
|
} | undefined;
|
|
137564
|
-
scheduleId?: string | undefined;
|
|
137565
137596
|
result?: {
|
|
137566
137597
|
s3?: {
|
|
137567
137598
|
path: string;
|
|
@@ -137812,6 +137843,7 @@ declare class PipelinesEndpoint {
|
|
|
137812
137843
|
themePersistentId?: string | undefined;
|
|
137813
137844
|
themePersistentIds?: string[] | undefined;
|
|
137814
137845
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
137846
|
+
scheduleId?: string | undefined;
|
|
137815
137847
|
finishedAt?: Date | undefined;
|
|
137816
137848
|
index?: number | undefined;
|
|
137817
137849
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -137819,7 +137851,6 @@ declare class PipelinesEndpoint {
|
|
|
137819
137851
|
userId: string;
|
|
137820
137852
|
userName: string;
|
|
137821
137853
|
} | undefined;
|
|
137822
|
-
scheduleId?: string | undefined;
|
|
137823
137854
|
result?: {
|
|
137824
137855
|
s3?: {
|
|
137825
137856
|
path: string;
|
|
@@ -138062,6 +138093,7 @@ declare class PipelinesEndpoint {
|
|
|
138062
138093
|
themePersistentId?: string | undefined;
|
|
138063
138094
|
themePersistentIds?: string[] | undefined;
|
|
138064
138095
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
138096
|
+
scheduleId?: string | undefined;
|
|
138065
138097
|
finishedAt?: Date | undefined;
|
|
138066
138098
|
index?: number | undefined;
|
|
138067
138099
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -138069,7 +138101,6 @@ declare class PipelinesEndpoint {
|
|
|
138069
138101
|
userId: string;
|
|
138070
138102
|
userName: string;
|
|
138071
138103
|
} | undefined;
|
|
138072
|
-
scheduleId?: string | undefined;
|
|
138073
138104
|
result?: {
|
|
138074
138105
|
s3?: {
|
|
138075
138106
|
path: string;
|
|
@@ -138478,6 +138509,7 @@ declare class DocumentationEndpoint {
|
|
|
138478
138509
|
themePersistentId?: string | undefined;
|
|
138479
138510
|
themePersistentIds?: string[] | undefined;
|
|
138480
138511
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
138512
|
+
scheduleId?: string | undefined;
|
|
138481
138513
|
finishedAt?: Date | undefined;
|
|
138482
138514
|
index?: number | undefined;
|
|
138483
138515
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -138485,7 +138517,6 @@ declare class DocumentationEndpoint {
|
|
|
138485
138517
|
userId: string;
|
|
138486
138518
|
userName: string;
|
|
138487
138519
|
} | undefined;
|
|
138488
|
-
scheduleId?: string | undefined;
|
|
138489
138520
|
result?: {
|
|
138490
138521
|
s3?: {
|
|
138491
138522
|
path: string;
|
|
@@ -143708,6 +143739,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
143708
143739
|
instruction: string | null;
|
|
143709
143740
|
updatedAt?: Date | undefined;
|
|
143710
143741
|
createdByUserId?: string | undefined;
|
|
143742
|
+
isArchived?: boolean | undefined;
|
|
143711
143743
|
}[];
|
|
143712
143744
|
}>;
|
|
143713
143745
|
create(workspaceId: string, body: DTOCreateForgeProject): Promise<{
|
|
@@ -143787,6 +143819,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
143787
143819
|
instruction: string | null;
|
|
143788
143820
|
updatedAt?: Date | undefined;
|
|
143789
143821
|
createdByUserId?: string | undefined;
|
|
143822
|
+
isArchived?: boolean | undefined;
|
|
143790
143823
|
};
|
|
143791
143824
|
}>;
|
|
143792
143825
|
get(workspaceId: string, projectId: string): Promise<{
|
|
@@ -143866,6 +143899,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
143866
143899
|
instruction: string | null;
|
|
143867
143900
|
updatedAt?: Date | undefined;
|
|
143868
143901
|
createdByUserId?: string | undefined;
|
|
143902
|
+
isArchived?: boolean | undefined;
|
|
143869
143903
|
} | null;
|
|
143870
143904
|
}>;
|
|
143871
143905
|
update(workspaceId: string, projectId: string, body: DTOUpdateForgeProject): Promise<{
|
|
@@ -143945,6 +143979,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
143945
143979
|
instruction: string | null;
|
|
143946
143980
|
updatedAt?: Date | undefined;
|
|
143947
143981
|
createdByUserId?: string | undefined;
|
|
143982
|
+
isArchived?: boolean | undefined;
|
|
143948
143983
|
} | null;
|
|
143949
143984
|
}>;
|
|
143950
143985
|
delete(workspaceId: string, projectId: string): Promise<{
|