@supernova-studio/client 1.10.16 → 1.10.18

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 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
- designSystemVersionId: z.ZodOptional<z.ZodString>;
58993
- brandId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
58994
- createdByUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
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?: "Timeout" | "InProgress" | "Success" | "Failed" | undefined;
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
- scheduleId?: string | null | undefined;
59009
- destinations?: ("documentation" | "github" | "azure" | "gitlab" | "bitbucket" | "webhookUrl" | "s3")[] | undefined;
59010
- docsEnvironment?: "Live" | "Preview" | undefined;
59006
+ destinations?: ("s3" | "azure" | "bitbucket" | "github" | "gitlab" | "documentation" | "webhookUrl")[] | undefined;
59007
+ createdByUserId?: string | undefined;
59008
+ scheduleId?: string | undefined;
59011
59009
  }, {
59012
- status?: "Timeout" | "InProgress" | "Success" | "Failed" | undefined;
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
- scheduleId?: string | null | undefined;
59020
- destinations?: ("documentation" | "github" | "azure" | "gitlab" | "bitbucket" | "webhookUrl" | "s3")[] | undefined;
59021
- docsEnvironment?: "Live" | "Preview" | undefined;
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;
@@ -137296,6 +137293,7 @@ declare class PipelinesEndpoint {
137296
137293
  themePersistentId?: string | undefined;
137297
137294
  themePersistentIds?: string[] | undefined;
137298
137295
  exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
137296
+ scheduleId?: string | undefined;
137299
137297
  finishedAt?: Date | undefined;
137300
137298
  index?: number | undefined;
137301
137299
  estimatedExecutionTime?: number | undefined;
@@ -137303,7 +137301,6 @@ declare class PipelinesEndpoint {
137303
137301
  userId: string;
137304
137302
  userName: string;
137305
137303
  } | undefined;
137306
- scheduleId?: string | undefined;
137307
137304
  result?: {
137308
137305
  s3?: {
137309
137306
  path: string;
@@ -137554,6 +137551,7 @@ declare class PipelinesEndpoint {
137554
137551
  themePersistentId?: string | undefined;
137555
137552
  themePersistentIds?: string[] | undefined;
137556
137553
  exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
137554
+ scheduleId?: string | undefined;
137557
137555
  finishedAt?: Date | undefined;
137558
137556
  index?: number | undefined;
137559
137557
  estimatedExecutionTime?: number | undefined;
@@ -137561,7 +137559,6 @@ declare class PipelinesEndpoint {
137561
137559
  userId: string;
137562
137560
  userName: string;
137563
137561
  } | undefined;
137564
- scheduleId?: string | undefined;
137565
137562
  result?: {
137566
137563
  s3?: {
137567
137564
  path: string;
@@ -137812,6 +137809,7 @@ declare class PipelinesEndpoint {
137812
137809
  themePersistentId?: string | undefined;
137813
137810
  themePersistentIds?: string[] | undefined;
137814
137811
  exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
137812
+ scheduleId?: string | undefined;
137815
137813
  finishedAt?: Date | undefined;
137816
137814
  index?: number | undefined;
137817
137815
  estimatedExecutionTime?: number | undefined;
@@ -137819,7 +137817,6 @@ declare class PipelinesEndpoint {
137819
137817
  userId: string;
137820
137818
  userName: string;
137821
137819
  } | undefined;
137822
- scheduleId?: string | undefined;
137823
137820
  result?: {
137824
137821
  s3?: {
137825
137822
  path: string;
@@ -138062,6 +138059,7 @@ declare class PipelinesEndpoint {
138062
138059
  themePersistentId?: string | undefined;
138063
138060
  themePersistentIds?: string[] | undefined;
138064
138061
  exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
138062
+ scheduleId?: string | undefined;
138065
138063
  finishedAt?: Date | undefined;
138066
138064
  index?: number | undefined;
138067
138065
  estimatedExecutionTime?: number | undefined;
@@ -138069,7 +138067,6 @@ declare class PipelinesEndpoint {
138069
138067
  userId: string;
138070
138068
  userName: string;
138071
138069
  } | undefined;
138072
- scheduleId?: string | undefined;
138073
138070
  result?: {
138074
138071
  s3?: {
138075
138072
  path: string;
@@ -138478,6 +138475,7 @@ declare class DocumentationEndpoint {
138478
138475
  themePersistentId?: string | undefined;
138479
138476
  themePersistentIds?: string[] | undefined;
138480
138477
  exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
138478
+ scheduleId?: string | undefined;
138481
138479
  finishedAt?: Date | undefined;
138482
138480
  index?: number | undefined;
138483
138481
  estimatedExecutionTime?: number | undefined;
@@ -138485,7 +138483,6 @@ declare class DocumentationEndpoint {
138485
138483
  userId: string;
138486
138484
  userName: string;
138487
138485
  } | undefined;
138488
- scheduleId?: string | undefined;
138489
138486
  result?: {
138490
138487
  s3?: {
138491
138488
  path: string;