@supernova-studio/model 0.57.11 → 0.57.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supernova-studio/model",
3
- "version": "0.57.11",
3
+ "version": "0.57.12",
4
4
  "description": "Supernova Data Models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -26,6 +26,7 @@ export const ExporterDestinationGithub = z.object({
26
26
  // Location
27
27
  branch: z.string(),
28
28
  relativePath: nullishToOptional(z.string()),
29
+ purgeDirectory: nullishToOptional(z.boolean()),
29
30
 
30
31
  // Commit metadata
31
32
  commitAuthorName: nullishToOptional(z.string()),
@@ -51,6 +52,7 @@ export const ExporterDestinationAzure = z.object({
51
52
  // Location
52
53
  branch: z.string(),
53
54
  relativePath: nullishToOptional(z.string()),
55
+ purgeDirectory: nullishToOptional(z.boolean()),
54
56
 
55
57
  // Maybe not needed
56
58
  url: nullishToOptional(z.string()),
@@ -73,6 +75,7 @@ export const ExporterDestinationGitlab = z.object({
73
75
  // Location
74
76
  branch: z.string(),
75
77
  relativePath: nullishToOptional(z.string()),
78
+ purgeDirectory: nullishToOptional(z.boolean()),
76
79
 
77
80
  // Maybe not needed
78
81
  url: nullishToOptional(z.string()),
@@ -97,6 +100,7 @@ export const ExporterDestinationBitbucket = z.object({
97
100
  // Location
98
101
  branch: z.string(),
99
102
  relativePath: nullishToOptional(z.string()),
103
+ purgeDirectory: nullishToOptional(z.boolean()),
100
104
 
101
105
  // Legacy deprecated fields. Use `credentialId` instead
102
106
  connectionId: nullishToOptional(z.string()),