@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.d.mts +65 -65
- package/dist/index.d.ts +65 -65
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -100075,32 +100075,32 @@ declare const DTODocumentationPublishTypeQueryParams: z.ZodObject<{
|
|
|
100075
100075
|
type DTODocumentationPublishTypeQueryParams = z.infer<typeof DTODocumentationPublishTypeQueryParams>;
|
|
100076
100076
|
|
|
100077
100077
|
declare const GitDestinationOptions: z.ZodObject<{
|
|
100078
|
-
branch: z.ZodOptional<z.ZodString
|
|
100079
|
-
commitMessage: z.ZodOptional<z.ZodString
|
|
100080
|
-
commitAuthorName: z.ZodOptional<z.ZodString
|
|
100081
|
-
commitAuthorEmail: z.ZodOptional<z.ZodString
|
|
100082
|
-
pullRequestTitle: z.ZodOptional<z.ZodString
|
|
100083
|
-
pullRequestDescription: z.ZodOptional<z.ZodString
|
|
100084
|
-
relativePath: z.ZodOptional<z.ZodString
|
|
100085
|
-
purgeDirectory: z.ZodOptional<z.ZodBoolean
|
|
100078
|
+
branch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100079
|
+
commitMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100080
|
+
commitAuthorName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100081
|
+
commitAuthorEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100082
|
+
pullRequestTitle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100083
|
+
pullRequestDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100084
|
+
relativePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100085
|
+
purgeDirectory: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
100086
100086
|
}, "strip", z.ZodTypeAny, {
|
|
100087
|
-
branch?: string | undefined;
|
|
100088
|
-
commitMessage?: string | undefined;
|
|
100089
|
-
commitAuthorName?: string | undefined;
|
|
100090
|
-
commitAuthorEmail?: string | undefined;
|
|
100091
|
-
pullRequestTitle?: string | undefined;
|
|
100092
|
-
pullRequestDescription?: string | undefined;
|
|
100093
|
-
relativePath?: string | undefined;
|
|
100094
|
-
purgeDirectory?: boolean | undefined;
|
|
100095
|
-
}, {
|
|
100096
|
-
branch?: string | undefined;
|
|
100097
|
-
commitMessage?: string | undefined;
|
|
100098
|
-
commitAuthorName?: string | undefined;
|
|
100099
|
-
commitAuthorEmail?: string | undefined;
|
|
100100
|
-
pullRequestTitle?: string | undefined;
|
|
100101
|
-
pullRequestDescription?: string | undefined;
|
|
100102
|
-
relativePath?: string | undefined;
|
|
100103
|
-
purgeDirectory?: boolean | undefined;
|
|
100087
|
+
branch?: string | null | undefined;
|
|
100088
|
+
commitMessage?: string | null | undefined;
|
|
100089
|
+
commitAuthorName?: string | null | undefined;
|
|
100090
|
+
commitAuthorEmail?: string | null | undefined;
|
|
100091
|
+
pullRequestTitle?: string | null | undefined;
|
|
100092
|
+
pullRequestDescription?: string | null | undefined;
|
|
100093
|
+
relativePath?: string | null | undefined;
|
|
100094
|
+
purgeDirectory?: boolean | null | undefined;
|
|
100095
|
+
}, {
|
|
100096
|
+
branch?: string | null | undefined;
|
|
100097
|
+
commitMessage?: string | null | undefined;
|
|
100098
|
+
commitAuthorName?: string | null | undefined;
|
|
100099
|
+
commitAuthorEmail?: string | null | undefined;
|
|
100100
|
+
pullRequestTitle?: string | null | undefined;
|
|
100101
|
+
pullRequestDescription?: string | null | undefined;
|
|
100102
|
+
relativePath?: string | null | undefined;
|
|
100103
|
+
purgeDirectory?: boolean | null | undefined;
|
|
100104
100104
|
}>;
|
|
100105
100105
|
type GitDestinationOptions = z.infer<typeof GitDestinationOptions>;
|
|
100106
100106
|
declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
@@ -101075,32 +101075,32 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
101075
101075
|
webhookUrl?: string | null | undefined;
|
|
101076
101076
|
}>>;
|
|
101077
101077
|
gitDestinationOptions: z.ZodOptional<z.ZodObject<{
|
|
101078
|
-
branch: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101079
|
-
commitMessage: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101080
|
-
commitAuthorName: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101081
|
-
commitAuthorEmail: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101082
|
-
pullRequestTitle: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101083
|
-
pullRequestDescription: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101084
|
-
relativePath: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101085
|
-
purgeDirectory: z.ZodOptional<z.ZodOptional<z.ZodBoolean
|
|
101078
|
+
branch: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101079
|
+
commitMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101080
|
+
commitAuthorName: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101081
|
+
commitAuthorEmail: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101082
|
+
pullRequestTitle: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101083
|
+
pullRequestDescription: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101084
|
+
relativePath: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101085
|
+
purgeDirectory: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
101086
101086
|
}, "strip", z.ZodTypeAny, {
|
|
101087
|
-
branch?: string | undefined;
|
|
101088
|
-
commitMessage?: string | undefined;
|
|
101089
|
-
commitAuthorName?: string | undefined;
|
|
101090
|
-
commitAuthorEmail?: string | undefined;
|
|
101091
|
-
pullRequestTitle?: string | undefined;
|
|
101092
|
-
pullRequestDescription?: string | undefined;
|
|
101093
|
-
relativePath?: string | undefined;
|
|
101094
|
-
purgeDirectory?: boolean | undefined;
|
|
101087
|
+
branch?: string | null | undefined;
|
|
101088
|
+
commitMessage?: string | null | undefined;
|
|
101089
|
+
commitAuthorName?: string | null | undefined;
|
|
101090
|
+
commitAuthorEmail?: string | null | undefined;
|
|
101091
|
+
pullRequestTitle?: string | null | undefined;
|
|
101092
|
+
pullRequestDescription?: string | null | undefined;
|
|
101093
|
+
relativePath?: string | null | undefined;
|
|
101094
|
+
purgeDirectory?: boolean | null | undefined;
|
|
101095
101095
|
}, {
|
|
101096
|
-
branch?: string | undefined;
|
|
101097
|
-
commitMessage?: string | undefined;
|
|
101098
|
-
commitAuthorName?: string | undefined;
|
|
101099
|
-
commitAuthorEmail?: string | undefined;
|
|
101100
|
-
pullRequestTitle?: string | undefined;
|
|
101101
|
-
pullRequestDescription?: string | undefined;
|
|
101102
|
-
relativePath?: string | undefined;
|
|
101103
|
-
purgeDirectory?: boolean | undefined;
|
|
101096
|
+
branch?: string | null | undefined;
|
|
101097
|
+
commitMessage?: string | null | undefined;
|
|
101098
|
+
commitAuthorName?: string | null | undefined;
|
|
101099
|
+
commitAuthorEmail?: string | null | undefined;
|
|
101100
|
+
pullRequestTitle?: string | null | undefined;
|
|
101101
|
+
pullRequestDescription?: string | null | undefined;
|
|
101102
|
+
relativePath?: string | null | undefined;
|
|
101103
|
+
purgeDirectory?: boolean | null | undefined;
|
|
101104
101104
|
}>>;
|
|
101105
101105
|
}, "strip", z.ZodTypeAny, {
|
|
101106
101106
|
name?: string | undefined;
|
|
@@ -101194,14 +101194,14 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
101194
101194
|
webhookUrl?: string | null | undefined;
|
|
101195
101195
|
} | undefined;
|
|
101196
101196
|
gitDestinationOptions?: {
|
|
101197
|
-
branch?: string | undefined;
|
|
101198
|
-
commitMessage?: string | undefined;
|
|
101199
|
-
commitAuthorName?: string | undefined;
|
|
101200
|
-
commitAuthorEmail?: string | undefined;
|
|
101201
|
-
pullRequestTitle?: string | undefined;
|
|
101202
|
-
pullRequestDescription?: string | undefined;
|
|
101203
|
-
relativePath?: string | undefined;
|
|
101204
|
-
purgeDirectory?: boolean | undefined;
|
|
101197
|
+
branch?: string | null | undefined;
|
|
101198
|
+
commitMessage?: string | null | undefined;
|
|
101199
|
+
commitAuthorName?: string | null | undefined;
|
|
101200
|
+
commitAuthorEmail?: string | null | undefined;
|
|
101201
|
+
pullRequestTitle?: string | null | undefined;
|
|
101202
|
+
pullRequestDescription?: string | null | undefined;
|
|
101203
|
+
relativePath?: string | null | undefined;
|
|
101204
|
+
purgeDirectory?: boolean | null | undefined;
|
|
101205
101205
|
} | undefined;
|
|
101206
101206
|
}, {
|
|
101207
101207
|
name?: string | undefined;
|
|
@@ -101295,14 +101295,14 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
101295
101295
|
webhookUrl?: string | null | undefined;
|
|
101296
101296
|
} | undefined;
|
|
101297
101297
|
gitDestinationOptions?: {
|
|
101298
|
-
branch?: string | undefined;
|
|
101299
|
-
commitMessage?: string | undefined;
|
|
101300
|
-
commitAuthorName?: string | undefined;
|
|
101301
|
-
commitAuthorEmail?: string | undefined;
|
|
101302
|
-
pullRequestTitle?: string | undefined;
|
|
101303
|
-
pullRequestDescription?: string | undefined;
|
|
101304
|
-
relativePath?: string | undefined;
|
|
101305
|
-
purgeDirectory?: boolean | undefined;
|
|
101298
|
+
branch?: string | null | undefined;
|
|
101299
|
+
commitMessage?: string | null | undefined;
|
|
101300
|
+
commitAuthorName?: string | null | undefined;
|
|
101301
|
+
commitAuthorEmail?: string | null | undefined;
|
|
101302
|
+
pullRequestTitle?: string | null | undefined;
|
|
101303
|
+
pullRequestDescription?: string | null | undefined;
|
|
101304
|
+
relativePath?: string | null | undefined;
|
|
101305
|
+
purgeDirectory?: boolean | null | undefined;
|
|
101306
101306
|
} | undefined;
|
|
101307
101307
|
}>;
|
|
101308
101308
|
type DTOPipelineUpdateBody = z.infer<typeof DTOPipelineUpdateBody>;
|
package/dist/index.d.ts
CHANGED
|
@@ -100075,32 +100075,32 @@ declare const DTODocumentationPublishTypeQueryParams: z.ZodObject<{
|
|
|
100075
100075
|
type DTODocumentationPublishTypeQueryParams = z.infer<typeof DTODocumentationPublishTypeQueryParams>;
|
|
100076
100076
|
|
|
100077
100077
|
declare const GitDestinationOptions: z.ZodObject<{
|
|
100078
|
-
branch: z.ZodOptional<z.ZodString
|
|
100079
|
-
commitMessage: z.ZodOptional<z.ZodString
|
|
100080
|
-
commitAuthorName: z.ZodOptional<z.ZodString
|
|
100081
|
-
commitAuthorEmail: z.ZodOptional<z.ZodString
|
|
100082
|
-
pullRequestTitle: z.ZodOptional<z.ZodString
|
|
100083
|
-
pullRequestDescription: z.ZodOptional<z.ZodString
|
|
100084
|
-
relativePath: z.ZodOptional<z.ZodString
|
|
100085
|
-
purgeDirectory: z.ZodOptional<z.ZodBoolean
|
|
100078
|
+
branch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100079
|
+
commitMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100080
|
+
commitAuthorName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100081
|
+
commitAuthorEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100082
|
+
pullRequestTitle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100083
|
+
pullRequestDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100084
|
+
relativePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100085
|
+
purgeDirectory: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
100086
100086
|
}, "strip", z.ZodTypeAny, {
|
|
100087
|
-
branch?: string | undefined;
|
|
100088
|
-
commitMessage?: string | undefined;
|
|
100089
|
-
commitAuthorName?: string | undefined;
|
|
100090
|
-
commitAuthorEmail?: string | undefined;
|
|
100091
|
-
pullRequestTitle?: string | undefined;
|
|
100092
|
-
pullRequestDescription?: string | undefined;
|
|
100093
|
-
relativePath?: string | undefined;
|
|
100094
|
-
purgeDirectory?: boolean | undefined;
|
|
100095
|
-
}, {
|
|
100096
|
-
branch?: string | undefined;
|
|
100097
|
-
commitMessage?: string | undefined;
|
|
100098
|
-
commitAuthorName?: string | undefined;
|
|
100099
|
-
commitAuthorEmail?: string | undefined;
|
|
100100
|
-
pullRequestTitle?: string | undefined;
|
|
100101
|
-
pullRequestDescription?: string | undefined;
|
|
100102
|
-
relativePath?: string | undefined;
|
|
100103
|
-
purgeDirectory?: boolean | undefined;
|
|
100087
|
+
branch?: string | null | undefined;
|
|
100088
|
+
commitMessage?: string | null | undefined;
|
|
100089
|
+
commitAuthorName?: string | null | undefined;
|
|
100090
|
+
commitAuthorEmail?: string | null | undefined;
|
|
100091
|
+
pullRequestTitle?: string | null | undefined;
|
|
100092
|
+
pullRequestDescription?: string | null | undefined;
|
|
100093
|
+
relativePath?: string | null | undefined;
|
|
100094
|
+
purgeDirectory?: boolean | null | undefined;
|
|
100095
|
+
}, {
|
|
100096
|
+
branch?: string | null | undefined;
|
|
100097
|
+
commitMessage?: string | null | undefined;
|
|
100098
|
+
commitAuthorName?: string | null | undefined;
|
|
100099
|
+
commitAuthorEmail?: string | null | undefined;
|
|
100100
|
+
pullRequestTitle?: string | null | undefined;
|
|
100101
|
+
pullRequestDescription?: string | null | undefined;
|
|
100102
|
+
relativePath?: string | null | undefined;
|
|
100103
|
+
purgeDirectory?: boolean | null | undefined;
|
|
100104
100104
|
}>;
|
|
100105
100105
|
type GitDestinationOptions = z.infer<typeof GitDestinationOptions>;
|
|
100106
100106
|
declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
@@ -101075,32 +101075,32 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
101075
101075
|
webhookUrl?: string | null | undefined;
|
|
101076
101076
|
}>>;
|
|
101077
101077
|
gitDestinationOptions: z.ZodOptional<z.ZodObject<{
|
|
101078
|
-
branch: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101079
|
-
commitMessage: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101080
|
-
commitAuthorName: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101081
|
-
commitAuthorEmail: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101082
|
-
pullRequestTitle: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101083
|
-
pullRequestDescription: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101084
|
-
relativePath: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
101085
|
-
purgeDirectory: z.ZodOptional<z.ZodOptional<z.ZodBoolean
|
|
101078
|
+
branch: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101079
|
+
commitMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101080
|
+
commitAuthorName: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101081
|
+
commitAuthorEmail: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101082
|
+
pullRequestTitle: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101083
|
+
pullRequestDescription: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101084
|
+
relativePath: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
101085
|
+
purgeDirectory: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
101086
101086
|
}, "strip", z.ZodTypeAny, {
|
|
101087
|
-
branch?: string | undefined;
|
|
101088
|
-
commitMessage?: string | undefined;
|
|
101089
|
-
commitAuthorName?: string | undefined;
|
|
101090
|
-
commitAuthorEmail?: string | undefined;
|
|
101091
|
-
pullRequestTitle?: string | undefined;
|
|
101092
|
-
pullRequestDescription?: string | undefined;
|
|
101093
|
-
relativePath?: string | undefined;
|
|
101094
|
-
purgeDirectory?: boolean | undefined;
|
|
101087
|
+
branch?: string | null | undefined;
|
|
101088
|
+
commitMessage?: string | null | undefined;
|
|
101089
|
+
commitAuthorName?: string | null | undefined;
|
|
101090
|
+
commitAuthorEmail?: string | null | undefined;
|
|
101091
|
+
pullRequestTitle?: string | null | undefined;
|
|
101092
|
+
pullRequestDescription?: string | null | undefined;
|
|
101093
|
+
relativePath?: string | null | undefined;
|
|
101094
|
+
purgeDirectory?: boolean | null | undefined;
|
|
101095
101095
|
}, {
|
|
101096
|
-
branch?: string | undefined;
|
|
101097
|
-
commitMessage?: string | undefined;
|
|
101098
|
-
commitAuthorName?: string | undefined;
|
|
101099
|
-
commitAuthorEmail?: string | undefined;
|
|
101100
|
-
pullRequestTitle?: string | undefined;
|
|
101101
|
-
pullRequestDescription?: string | undefined;
|
|
101102
|
-
relativePath?: string | undefined;
|
|
101103
|
-
purgeDirectory?: boolean | undefined;
|
|
101096
|
+
branch?: string | null | undefined;
|
|
101097
|
+
commitMessage?: string | null | undefined;
|
|
101098
|
+
commitAuthorName?: string | null | undefined;
|
|
101099
|
+
commitAuthorEmail?: string | null | undefined;
|
|
101100
|
+
pullRequestTitle?: string | null | undefined;
|
|
101101
|
+
pullRequestDescription?: string | null | undefined;
|
|
101102
|
+
relativePath?: string | null | undefined;
|
|
101103
|
+
purgeDirectory?: boolean | null | undefined;
|
|
101104
101104
|
}>>;
|
|
101105
101105
|
}, "strip", z.ZodTypeAny, {
|
|
101106
101106
|
name?: string | undefined;
|
|
@@ -101194,14 +101194,14 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
101194
101194
|
webhookUrl?: string | null | undefined;
|
|
101195
101195
|
} | undefined;
|
|
101196
101196
|
gitDestinationOptions?: {
|
|
101197
|
-
branch?: string | undefined;
|
|
101198
|
-
commitMessage?: string | undefined;
|
|
101199
|
-
commitAuthorName?: string | undefined;
|
|
101200
|
-
commitAuthorEmail?: string | undefined;
|
|
101201
|
-
pullRequestTitle?: string | undefined;
|
|
101202
|
-
pullRequestDescription?: string | undefined;
|
|
101203
|
-
relativePath?: string | undefined;
|
|
101204
|
-
purgeDirectory?: boolean | undefined;
|
|
101197
|
+
branch?: string | null | undefined;
|
|
101198
|
+
commitMessage?: string | null | undefined;
|
|
101199
|
+
commitAuthorName?: string | null | undefined;
|
|
101200
|
+
commitAuthorEmail?: string | null | undefined;
|
|
101201
|
+
pullRequestTitle?: string | null | undefined;
|
|
101202
|
+
pullRequestDescription?: string | null | undefined;
|
|
101203
|
+
relativePath?: string | null | undefined;
|
|
101204
|
+
purgeDirectory?: boolean | null | undefined;
|
|
101205
101205
|
} | undefined;
|
|
101206
101206
|
}, {
|
|
101207
101207
|
name?: string | undefined;
|
|
@@ -101295,14 +101295,14 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
101295
101295
|
webhookUrl?: string | null | undefined;
|
|
101296
101296
|
} | undefined;
|
|
101297
101297
|
gitDestinationOptions?: {
|
|
101298
|
-
branch?: string | undefined;
|
|
101299
|
-
commitMessage?: string | undefined;
|
|
101300
|
-
commitAuthorName?: string | undefined;
|
|
101301
|
-
commitAuthorEmail?: string | undefined;
|
|
101302
|
-
pullRequestTitle?: string | undefined;
|
|
101303
|
-
pullRequestDescription?: string | undefined;
|
|
101304
|
-
relativePath?: string | undefined;
|
|
101305
|
-
purgeDirectory?: boolean | undefined;
|
|
101298
|
+
branch?: string | null | undefined;
|
|
101299
|
+
commitMessage?: string | null | undefined;
|
|
101300
|
+
commitAuthorName?: string | null | undefined;
|
|
101301
|
+
commitAuthorEmail?: string | null | undefined;
|
|
101302
|
+
pullRequestTitle?: string | null | undefined;
|
|
101303
|
+
pullRequestDescription?: string | null | undefined;
|
|
101304
|
+
relativePath?: string | null | undefined;
|
|
101305
|
+
purgeDirectory?: boolean | null | undefined;
|
|
101306
101306
|
} | undefined;
|
|
101307
101307
|
}>;
|
|
101308
101308
|
type DTOPipelineUpdateBody = z.infer<typeof DTOPipelineUpdateBody>;
|
package/dist/index.js
CHANGED
|
@@ -6704,14 +6704,14 @@ var DTOExporterPropertyValueMap = _zod.z.record(DTOExporterPropertyValue);
|
|
|
6704
6704
|
|
|
6705
6705
|
// src/api/payloads/export/pipeline.ts
|
|
6706
6706
|
var GitDestinationOptions = _zod.z.object({
|
|
6707
|
-
branch: _zod.z.string().min(1).
|
|
6708
|
-
commitMessage: _zod.z.string().min(1).
|
|
6709
|
-
commitAuthorName: _zod.z.string().min(1).
|
|
6710
|
-
commitAuthorEmail: _zod.z.string().email().
|
|
6711
|
-
pullRequestTitle: _zod.z.string().min(1).
|
|
6712
|
-
pullRequestDescription: _zod.z.string().min(1).
|
|
6713
|
-
relativePath: _zod.z.string().
|
|
6714
|
-
purgeDirectory: _zod.z.boolean().
|
|
6707
|
+
branch: _zod.z.string().min(1).nullish(),
|
|
6708
|
+
commitMessage: _zod.z.string().min(1).nullish(),
|
|
6709
|
+
commitAuthorName: _zod.z.string().min(1).nullish(),
|
|
6710
|
+
commitAuthorEmail: _zod.z.string().email().nullish(),
|
|
6711
|
+
pullRequestTitle: _zod.z.string().min(1).nullish(),
|
|
6712
|
+
pullRequestDescription: _zod.z.string().min(1).nullish(),
|
|
6713
|
+
relativePath: _zod.z.string().nullish(),
|
|
6714
|
+
purgeDirectory: _zod.z.boolean().nullish()
|
|
6715
6715
|
});
|
|
6716
6716
|
var DTOPipelineCreateBody = _zod.z.object({
|
|
6717
6717
|
name: _zod.z.string(),
|