@supernova-studio/client 1.9.0 → 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.mjs CHANGED
@@ -6704,14 +6704,14 @@ var DTOExporterPropertyValueMap = z227.record(DTOExporterPropertyValue);
6704
6704
 
6705
6705
  // src/api/payloads/export/pipeline.ts
6706
6706
  var GitDestinationOptions = z228.object({
6707
- branch: z228.string().min(1).optional(),
6708
- commitMessage: z228.string().min(1).optional(),
6709
- commitAuthorName: z228.string().min(1).optional(),
6710
- commitAuthorEmail: z228.string().email().optional(),
6711
- pullRequestTitle: z228.string().min(1).optional(),
6712
- pullRequestDescription: z228.string().min(1).optional(),
6713
- relativePath: z228.string().optional(),
6714
- purgeDirectory: z228.boolean().optional()
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()
6715
6715
  });
6716
6716
  var DTOPipelineCreateBody = z228.object({
6717
6717
  name: z228.string(),