@supernova-studio/client 1.8.1 → 1.9.1
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 +65 -65
- package/dist/index.d.ts +65 -65
- package/dist/index.js +10 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4921,7 +4921,7 @@ var ExportJobDebugContext = z177.object({
|
|
|
4921
4921
|
concurrency: z177.number().optional(),
|
|
4922
4922
|
preloadData: z177.string().optional(),
|
|
4923
4923
|
concurrencyMode: z177.string().optional(),
|
|
4924
|
-
cacheSdk: z177.
|
|
4924
|
+
cacheSdk: z177.string().optional(),
|
|
4925
4925
|
logSdkNetwork: z177.boolean().optional(),
|
|
4926
4926
|
profilerMode: z177.string().optional()
|
|
4927
4927
|
});
|
|
@@ -5011,6 +5011,7 @@ var ExportJob = z179.object({
|
|
|
5011
5011
|
createdByUserId: z179.string().optional(),
|
|
5012
5012
|
exporterPropertyValues: ExporterPropertyValueMap.optional(),
|
|
5013
5013
|
previewMode: z179.boolean().optional(),
|
|
5014
|
+
exportContextId: z179.string().optional().nullable(),
|
|
5014
5015
|
// Destinations
|
|
5015
5016
|
...ExportDestinationsMap.shape
|
|
5016
5017
|
});
|
|
@@ -6703,14 +6704,14 @@ var DTOExporterPropertyValueMap = z227.record(DTOExporterPropertyValue);
|
|
|
6703
6704
|
|
|
6704
6705
|
// src/api/payloads/export/pipeline.ts
|
|
6705
6706
|
var GitDestinationOptions = z228.object({
|
|
6706
|
-
branch: z228.string().min(1).
|
|
6707
|
-
commitMessage: z228.string().min(1).
|
|
6708
|
-
commitAuthorName: z228.string().min(1).
|
|
6709
|
-
commitAuthorEmail: z228.string().email().
|
|
6710
|
-
pullRequestTitle: z228.string().min(1).
|
|
6711
|
-
pullRequestDescription: z228.string().min(1).
|
|
6712
|
-
relativePath: z228.string().
|
|
6713
|
-
purgeDirectory: z228.boolean().
|
|
6707
|
+
branch: z228.string().min(1).nullish(),
|
|
6708
|
+
commitMessage: z228.string().min(1).nullish(),
|
|
6709
|
+
commitAuthorName: z228.string().min(1).nullish(),
|
|
6710
|
+
commitAuthorEmail: z228.string().email().nullish(),
|
|
6711
|
+
pullRequestTitle: z228.string().min(1).nullish(),
|
|
6712
|
+
pullRequestDescription: z228.string().min(1).nullish(),
|
|
6713
|
+
relativePath: z228.string().nullish(),
|
|
6714
|
+
purgeDirectory: z228.boolean().nullish()
|
|
6714
6715
|
});
|
|
6715
6716
|
var DTOPipelineCreateBody = z228.object({
|
|
6716
6717
|
name: z228.string(),
|