@supernova-studio/model 1.8.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -150488,7 +150488,7 @@ declare const ExportJobDebugContext: z.ZodObject<{
150488
150488
  concurrency: z.ZodOptional<z.ZodNumber>;
150489
150489
  preloadData: z.ZodOptional<z.ZodString>;
150490
150490
  concurrencyMode: z.ZodOptional<z.ZodString>;
150491
- cacheSdk: z.ZodOptional<z.ZodBoolean>;
150491
+ cacheSdk: z.ZodOptional<z.ZodString>;
150492
150492
  logSdkNetwork: z.ZodOptional<z.ZodBoolean>;
150493
150493
  profilerMode: z.ZodOptional<z.ZodString>;
150494
150494
  }, "strip", z.ZodTypeAny, {
@@ -150496,7 +150496,7 @@ declare const ExportJobDebugContext: z.ZodObject<{
150496
150496
  concurrency?: number | undefined;
150497
150497
  preloadData?: string | undefined;
150498
150498
  concurrencyMode?: string | undefined;
150499
- cacheSdk?: boolean | undefined;
150499
+ cacheSdk?: string | undefined;
150500
150500
  logSdkNetwork?: boolean | undefined;
150501
150501
  profilerMode?: string | undefined;
150502
150502
  }, {
@@ -150504,7 +150504,7 @@ declare const ExportJobDebugContext: z.ZodObject<{
150504
150504
  concurrency?: number | undefined;
150505
150505
  preloadData?: string | undefined;
150506
150506
  concurrencyMode?: string | undefined;
150507
- cacheSdk?: boolean | undefined;
150507
+ cacheSdk?: string | undefined;
150508
150508
  logSdkNetwork?: boolean | undefined;
150509
150509
  profilerMode?: string | undefined;
150510
150510
  }>;
@@ -151555,7 +151555,7 @@ declare const ExportJobContext: z.ZodObject<{
151555
151555
  concurrency: z.ZodOptional<z.ZodNumber>;
151556
151556
  preloadData: z.ZodOptional<z.ZodString>;
151557
151557
  concurrencyMode: z.ZodOptional<z.ZodString>;
151558
- cacheSdk: z.ZodOptional<z.ZodBoolean>;
151558
+ cacheSdk: z.ZodOptional<z.ZodString>;
151559
151559
  logSdkNetwork: z.ZodOptional<z.ZodBoolean>;
151560
151560
  profilerMode: z.ZodOptional<z.ZodString>;
151561
151561
  }, "strip", z.ZodTypeAny, {
@@ -151563,7 +151563,7 @@ declare const ExportJobContext: z.ZodObject<{
151563
151563
  concurrency?: number | undefined;
151564
151564
  preloadData?: string | undefined;
151565
151565
  concurrencyMode?: string | undefined;
151566
- cacheSdk?: boolean | undefined;
151566
+ cacheSdk?: string | undefined;
151567
151567
  logSdkNetwork?: boolean | undefined;
151568
151568
  profilerMode?: string | undefined;
151569
151569
  }, {
@@ -151571,7 +151571,7 @@ declare const ExportJobContext: z.ZodObject<{
151571
151571
  concurrency?: number | undefined;
151572
151572
  preloadData?: string | undefined;
151573
151573
  concurrencyMode?: string | undefined;
151574
- cacheSdk?: boolean | undefined;
151574
+ cacheSdk?: string | undefined;
151575
151575
  logSdkNetwork?: boolean | undefined;
151576
151576
  profilerMode?: string | undefined;
151577
151577
  }>>;
@@ -151597,7 +151597,7 @@ declare const ExportJobContext: z.ZodObject<{
151597
151597
  concurrency?: number | undefined;
151598
151598
  preloadData?: string | undefined;
151599
151599
  concurrencyMode?: string | undefined;
151600
- cacheSdk?: boolean | undefined;
151600
+ cacheSdk?: string | undefined;
151601
151601
  logSdkNetwork?: boolean | undefined;
151602
151602
  profilerMode?: string | undefined;
151603
151603
  } | undefined;
@@ -151623,7 +151623,7 @@ declare const ExportJobContext: z.ZodObject<{
151623
151623
  concurrency?: number | undefined;
151624
151624
  preloadData?: string | undefined;
151625
151625
  concurrencyMode?: string | undefined;
151626
- cacheSdk?: boolean | undefined;
151626
+ cacheSdk?: string | undefined;
151627
151627
  logSdkNetwork?: boolean | undefined;
151628
151628
  profilerMode?: string | undefined;
151629
151629
  } | undefined;
@@ -151635,14 +151635,17 @@ declare const ExporterFunctionPayload: z.ZodObject<{
151635
151635
  exportContextId: z.ZodString;
151636
151636
  designSystemId: z.ZodString;
151637
151637
  workspaceId: z.ZodString;
151638
+ exporterId: z.ZodString;
151638
151639
  }, "strip", z.ZodTypeAny, {
151639
151640
  designSystemId: string;
151640
151641
  workspaceId: string;
151642
+ exporterId: string;
151641
151643
  exportJobId: string;
151642
151644
  exportContextId: string;
151643
151645
  }, {
151644
151646
  designSystemId: string;
151645
151647
  workspaceId: string;
151648
+ exporterId: string;
151646
151649
  exportJobId: string;
151647
151650
  exportContextId: string;
151648
151651
  }>;
@@ -153744,6 +153747,7 @@ declare const ExportJob: z.ZodObject<{
153744
153747
  createdByUserId: z.ZodOptional<z.ZodString>;
153745
153748
  exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
153746
153749
  previewMode: z.ZodOptional<z.ZodBoolean>;
153750
+ exportContextId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
153747
153751
  }, "strip", z.ZodTypeAny, {
153748
153752
  status: "Timeout" | "InProgress" | "Success" | "Failed";
153749
153753
  id: string;
@@ -153831,6 +153835,7 @@ declare const ExportJob: z.ZodObject<{
153831
153835
  exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
153832
153836
  finishedAt?: Date | undefined;
153833
153837
  previewMode?: boolean | undefined;
153838
+ exportContextId?: string | null | undefined;
153834
153839
  scheduleId?: string | null | undefined;
153835
153840
  estimatedExecutionTime?: number | undefined;
153836
153841
  result?: {
@@ -153952,6 +153957,7 @@ declare const ExportJob: z.ZodObject<{
153952
153957
  exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
153953
153958
  finishedAt?: Date | undefined;
153954
153959
  previewMode?: boolean | undefined;
153960
+ exportContextId?: string | null | undefined;
153955
153961
  scheduleId?: string | null | undefined;
153956
153962
  estimatedExecutionTime?: number | undefined;
153957
153963
  result?: {
package/dist/index.d.ts CHANGED
@@ -150488,7 +150488,7 @@ declare const ExportJobDebugContext: z.ZodObject<{
150488
150488
  concurrency: z.ZodOptional<z.ZodNumber>;
150489
150489
  preloadData: z.ZodOptional<z.ZodString>;
150490
150490
  concurrencyMode: z.ZodOptional<z.ZodString>;
150491
- cacheSdk: z.ZodOptional<z.ZodBoolean>;
150491
+ cacheSdk: z.ZodOptional<z.ZodString>;
150492
150492
  logSdkNetwork: z.ZodOptional<z.ZodBoolean>;
150493
150493
  profilerMode: z.ZodOptional<z.ZodString>;
150494
150494
  }, "strip", z.ZodTypeAny, {
@@ -150496,7 +150496,7 @@ declare const ExportJobDebugContext: z.ZodObject<{
150496
150496
  concurrency?: number | undefined;
150497
150497
  preloadData?: string | undefined;
150498
150498
  concurrencyMode?: string | undefined;
150499
- cacheSdk?: boolean | undefined;
150499
+ cacheSdk?: string | undefined;
150500
150500
  logSdkNetwork?: boolean | undefined;
150501
150501
  profilerMode?: string | undefined;
150502
150502
  }, {
@@ -150504,7 +150504,7 @@ declare const ExportJobDebugContext: z.ZodObject<{
150504
150504
  concurrency?: number | undefined;
150505
150505
  preloadData?: string | undefined;
150506
150506
  concurrencyMode?: string | undefined;
150507
- cacheSdk?: boolean | undefined;
150507
+ cacheSdk?: string | undefined;
150508
150508
  logSdkNetwork?: boolean | undefined;
150509
150509
  profilerMode?: string | undefined;
150510
150510
  }>;
@@ -151555,7 +151555,7 @@ declare const ExportJobContext: z.ZodObject<{
151555
151555
  concurrency: z.ZodOptional<z.ZodNumber>;
151556
151556
  preloadData: z.ZodOptional<z.ZodString>;
151557
151557
  concurrencyMode: z.ZodOptional<z.ZodString>;
151558
- cacheSdk: z.ZodOptional<z.ZodBoolean>;
151558
+ cacheSdk: z.ZodOptional<z.ZodString>;
151559
151559
  logSdkNetwork: z.ZodOptional<z.ZodBoolean>;
151560
151560
  profilerMode: z.ZodOptional<z.ZodString>;
151561
151561
  }, "strip", z.ZodTypeAny, {
@@ -151563,7 +151563,7 @@ declare const ExportJobContext: z.ZodObject<{
151563
151563
  concurrency?: number | undefined;
151564
151564
  preloadData?: string | undefined;
151565
151565
  concurrencyMode?: string | undefined;
151566
- cacheSdk?: boolean | undefined;
151566
+ cacheSdk?: string | undefined;
151567
151567
  logSdkNetwork?: boolean | undefined;
151568
151568
  profilerMode?: string | undefined;
151569
151569
  }, {
@@ -151571,7 +151571,7 @@ declare const ExportJobContext: z.ZodObject<{
151571
151571
  concurrency?: number | undefined;
151572
151572
  preloadData?: string | undefined;
151573
151573
  concurrencyMode?: string | undefined;
151574
- cacheSdk?: boolean | undefined;
151574
+ cacheSdk?: string | undefined;
151575
151575
  logSdkNetwork?: boolean | undefined;
151576
151576
  profilerMode?: string | undefined;
151577
151577
  }>>;
@@ -151597,7 +151597,7 @@ declare const ExportJobContext: z.ZodObject<{
151597
151597
  concurrency?: number | undefined;
151598
151598
  preloadData?: string | undefined;
151599
151599
  concurrencyMode?: string | undefined;
151600
- cacheSdk?: boolean | undefined;
151600
+ cacheSdk?: string | undefined;
151601
151601
  logSdkNetwork?: boolean | undefined;
151602
151602
  profilerMode?: string | undefined;
151603
151603
  } | undefined;
@@ -151623,7 +151623,7 @@ declare const ExportJobContext: z.ZodObject<{
151623
151623
  concurrency?: number | undefined;
151624
151624
  preloadData?: string | undefined;
151625
151625
  concurrencyMode?: string | undefined;
151626
- cacheSdk?: boolean | undefined;
151626
+ cacheSdk?: string | undefined;
151627
151627
  logSdkNetwork?: boolean | undefined;
151628
151628
  profilerMode?: string | undefined;
151629
151629
  } | undefined;
@@ -151635,14 +151635,17 @@ declare const ExporterFunctionPayload: z.ZodObject<{
151635
151635
  exportContextId: z.ZodString;
151636
151636
  designSystemId: z.ZodString;
151637
151637
  workspaceId: z.ZodString;
151638
+ exporterId: z.ZodString;
151638
151639
  }, "strip", z.ZodTypeAny, {
151639
151640
  designSystemId: string;
151640
151641
  workspaceId: string;
151642
+ exporterId: string;
151641
151643
  exportJobId: string;
151642
151644
  exportContextId: string;
151643
151645
  }, {
151644
151646
  designSystemId: string;
151645
151647
  workspaceId: string;
151648
+ exporterId: string;
151646
151649
  exportJobId: string;
151647
151650
  exportContextId: string;
151648
151651
  }>;
@@ -153744,6 +153747,7 @@ declare const ExportJob: z.ZodObject<{
153744
153747
  createdByUserId: z.ZodOptional<z.ZodString>;
153745
153748
  exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
153746
153749
  previewMode: z.ZodOptional<z.ZodBoolean>;
153750
+ exportContextId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
153747
153751
  }, "strip", z.ZodTypeAny, {
153748
153752
  status: "Timeout" | "InProgress" | "Success" | "Failed";
153749
153753
  id: string;
@@ -153831,6 +153835,7 @@ declare const ExportJob: z.ZodObject<{
153831
153835
  exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
153832
153836
  finishedAt?: Date | undefined;
153833
153837
  previewMode?: boolean | undefined;
153838
+ exportContextId?: string | null | undefined;
153834
153839
  scheduleId?: string | null | undefined;
153835
153840
  estimatedExecutionTime?: number | undefined;
153836
153841
  result?: {
@@ -153952,6 +153957,7 @@ declare const ExportJob: z.ZodObject<{
153952
153957
  exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
153953
153958
  finishedAt?: Date | undefined;
153954
153959
  previewMode?: boolean | undefined;
153960
+ exportContextId?: string | null | undefined;
153955
153961
  scheduleId?: string | null | undefined;
153956
153962
  estimatedExecutionTime?: number | undefined;
153957
153963
  result?: {
package/dist/index.js CHANGED
@@ -5650,7 +5650,7 @@ var ExportJobDebugContext = _zod.z.object({
5650
5650
  concurrency: _zod.z.number().optional(),
5651
5651
  preloadData: _zod.z.string().optional(),
5652
5652
  concurrencyMode: _zod.z.string().optional(),
5653
- cacheSdk: _zod.z.boolean().optional(),
5653
+ cacheSdk: _zod.z.string().optional(),
5654
5654
  logSdkNetwork: _zod.z.boolean().optional(),
5655
5655
  profilerMode: _zod.z.string().optional()
5656
5656
  });
@@ -5681,7 +5681,8 @@ var ExporterFunctionPayload = _zod.z.object({
5681
5681
  exportJobId: _zod.z.string(),
5682
5682
  exportContextId: _zod.z.string(),
5683
5683
  designSystemId: _zod.z.string(),
5684
- workspaceId: _zod.z.string()
5684
+ workspaceId: _zod.z.string(),
5685
+ exporterId: _zod.z.string()
5685
5686
  });
5686
5687
 
5687
5688
  // src/export/export-jobs.ts
@@ -5745,6 +5746,7 @@ var ExportJob = _zod.z.object({
5745
5746
  createdByUserId: _zod.z.string().optional(),
5746
5747
  exporterPropertyValues: ExporterPropertyValueMap.optional(),
5747
5748
  previewMode: _zod.z.boolean().optional(),
5749
+ exportContextId: _zod.z.string().optional().nullable(),
5748
5750
  // Destinations
5749
5751
  ...ExportDestinationsMap.shape
5750
5752
  });