@supernova-studio/model 0.57.10 → 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/dist/index.d.mts +180 -0
- package/dist/index.d.ts +180 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/export/export-destinations.ts +4 -0
package/package.json
CHANGED
|
@@ -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()),
|