@supernova-studio/client 1.4.1 → 1.4.2
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 +16 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -94867,6 +94867,8 @@ declare const GitDestinationOptions: z.ZodObject<{
|
|
|
94867
94867
|
commitAuthorEmail: z.ZodOptional<z.ZodString>;
|
|
94868
94868
|
pullRequestTitle: z.ZodOptional<z.ZodString>;
|
|
94869
94869
|
pullRequestDescription: z.ZodOptional<z.ZodString>;
|
|
94870
|
+
relativePath: z.ZodOptional<z.ZodString>;
|
|
94871
|
+
purgeDirectory: z.ZodOptional<z.ZodBoolean>;
|
|
94870
94872
|
}, "strip", z.ZodTypeAny, {
|
|
94871
94873
|
branch?: string | undefined;
|
|
94872
94874
|
commitMessage?: string | undefined;
|
|
@@ -94874,6 +94876,8 @@ declare const GitDestinationOptions: z.ZodObject<{
|
|
|
94874
94876
|
commitAuthorEmail?: string | undefined;
|
|
94875
94877
|
pullRequestTitle?: string | undefined;
|
|
94876
94878
|
pullRequestDescription?: string | undefined;
|
|
94879
|
+
relativePath?: string | undefined;
|
|
94880
|
+
purgeDirectory?: boolean | undefined;
|
|
94877
94881
|
}, {
|
|
94878
94882
|
branch?: string | undefined;
|
|
94879
94883
|
commitMessage?: string | undefined;
|
|
@@ -94881,6 +94885,8 @@ declare const GitDestinationOptions: z.ZodObject<{
|
|
|
94881
94885
|
commitAuthorEmail?: string | undefined;
|
|
94882
94886
|
pullRequestTitle?: string | undefined;
|
|
94883
94887
|
pullRequestDescription?: string | undefined;
|
|
94888
|
+
relativePath?: string | undefined;
|
|
94889
|
+
purgeDirectory?: boolean | undefined;
|
|
94884
94890
|
}>;
|
|
94885
94891
|
type GitDestinationOptions = z.infer<typeof GitDestinationOptions>;
|
|
94886
94892
|
declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
@@ -95849,6 +95855,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
95849
95855
|
commitAuthorEmail: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
95850
95856
|
pullRequestTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
95851
95857
|
pullRequestDescription: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
95858
|
+
relativePath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
95859
|
+
purgeDirectory: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
95852
95860
|
}, "strip", z.ZodTypeAny, {
|
|
95853
95861
|
branch?: string | undefined;
|
|
95854
95862
|
commitMessage?: string | undefined;
|
|
@@ -95856,6 +95864,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
95856
95864
|
commitAuthorEmail?: string | undefined;
|
|
95857
95865
|
pullRequestTitle?: string | undefined;
|
|
95858
95866
|
pullRequestDescription?: string | undefined;
|
|
95867
|
+
relativePath?: string | undefined;
|
|
95868
|
+
purgeDirectory?: boolean | undefined;
|
|
95859
95869
|
}, {
|
|
95860
95870
|
branch?: string | undefined;
|
|
95861
95871
|
commitMessage?: string | undefined;
|
|
@@ -95863,6 +95873,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
95863
95873
|
commitAuthorEmail?: string | undefined;
|
|
95864
95874
|
pullRequestTitle?: string | undefined;
|
|
95865
95875
|
pullRequestDescription?: string | undefined;
|
|
95876
|
+
relativePath?: string | undefined;
|
|
95877
|
+
purgeDirectory?: boolean | undefined;
|
|
95866
95878
|
}>>;
|
|
95867
95879
|
}, "strip", z.ZodTypeAny, {
|
|
95868
95880
|
brandPersistentId?: string | undefined;
|
|
@@ -95961,6 +95973,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
95961
95973
|
commitAuthorEmail?: string | undefined;
|
|
95962
95974
|
pullRequestTitle?: string | undefined;
|
|
95963
95975
|
pullRequestDescription?: string | undefined;
|
|
95976
|
+
relativePath?: string | undefined;
|
|
95977
|
+
purgeDirectory?: boolean | undefined;
|
|
95964
95978
|
} | undefined;
|
|
95965
95979
|
}, {
|
|
95966
95980
|
brandPersistentId?: string | undefined;
|
|
@@ -96059,6 +96073,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
96059
96073
|
commitAuthorEmail?: string | undefined;
|
|
96060
96074
|
pullRequestTitle?: string | undefined;
|
|
96061
96075
|
pullRequestDescription?: string | undefined;
|
|
96076
|
+
relativePath?: string | undefined;
|
|
96077
|
+
purgeDirectory?: boolean | undefined;
|
|
96062
96078
|
} | undefined;
|
|
96063
96079
|
}>;
|
|
96064
96080
|
type DTOPipelineUpdateBody = z.infer<typeof DTOPipelineUpdateBody>;
|
package/dist/index.d.ts
CHANGED
|
@@ -94867,6 +94867,8 @@ declare const GitDestinationOptions: z.ZodObject<{
|
|
|
94867
94867
|
commitAuthorEmail: z.ZodOptional<z.ZodString>;
|
|
94868
94868
|
pullRequestTitle: z.ZodOptional<z.ZodString>;
|
|
94869
94869
|
pullRequestDescription: z.ZodOptional<z.ZodString>;
|
|
94870
|
+
relativePath: z.ZodOptional<z.ZodString>;
|
|
94871
|
+
purgeDirectory: z.ZodOptional<z.ZodBoolean>;
|
|
94870
94872
|
}, "strip", z.ZodTypeAny, {
|
|
94871
94873
|
branch?: string | undefined;
|
|
94872
94874
|
commitMessage?: string | undefined;
|
|
@@ -94874,6 +94876,8 @@ declare const GitDestinationOptions: z.ZodObject<{
|
|
|
94874
94876
|
commitAuthorEmail?: string | undefined;
|
|
94875
94877
|
pullRequestTitle?: string | undefined;
|
|
94876
94878
|
pullRequestDescription?: string | undefined;
|
|
94879
|
+
relativePath?: string | undefined;
|
|
94880
|
+
purgeDirectory?: boolean | undefined;
|
|
94877
94881
|
}, {
|
|
94878
94882
|
branch?: string | undefined;
|
|
94879
94883
|
commitMessage?: string | undefined;
|
|
@@ -94881,6 +94885,8 @@ declare const GitDestinationOptions: z.ZodObject<{
|
|
|
94881
94885
|
commitAuthorEmail?: string | undefined;
|
|
94882
94886
|
pullRequestTitle?: string | undefined;
|
|
94883
94887
|
pullRequestDescription?: string | undefined;
|
|
94888
|
+
relativePath?: string | undefined;
|
|
94889
|
+
purgeDirectory?: boolean | undefined;
|
|
94884
94890
|
}>;
|
|
94885
94891
|
type GitDestinationOptions = z.infer<typeof GitDestinationOptions>;
|
|
94886
94892
|
declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
@@ -95849,6 +95855,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
95849
95855
|
commitAuthorEmail: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
95850
95856
|
pullRequestTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
95851
95857
|
pullRequestDescription: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
95858
|
+
relativePath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
95859
|
+
purgeDirectory: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
95852
95860
|
}, "strip", z.ZodTypeAny, {
|
|
95853
95861
|
branch?: string | undefined;
|
|
95854
95862
|
commitMessage?: string | undefined;
|
|
@@ -95856,6 +95864,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
95856
95864
|
commitAuthorEmail?: string | undefined;
|
|
95857
95865
|
pullRequestTitle?: string | undefined;
|
|
95858
95866
|
pullRequestDescription?: string | undefined;
|
|
95867
|
+
relativePath?: string | undefined;
|
|
95868
|
+
purgeDirectory?: boolean | undefined;
|
|
95859
95869
|
}, {
|
|
95860
95870
|
branch?: string | undefined;
|
|
95861
95871
|
commitMessage?: string | undefined;
|
|
@@ -95863,6 +95873,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
95863
95873
|
commitAuthorEmail?: string | undefined;
|
|
95864
95874
|
pullRequestTitle?: string | undefined;
|
|
95865
95875
|
pullRequestDescription?: string | undefined;
|
|
95876
|
+
relativePath?: string | undefined;
|
|
95877
|
+
purgeDirectory?: boolean | undefined;
|
|
95866
95878
|
}>>;
|
|
95867
95879
|
}, "strip", z.ZodTypeAny, {
|
|
95868
95880
|
brandPersistentId?: string | undefined;
|
|
@@ -95961,6 +95973,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
95961
95973
|
commitAuthorEmail?: string | undefined;
|
|
95962
95974
|
pullRequestTitle?: string | undefined;
|
|
95963
95975
|
pullRequestDescription?: string | undefined;
|
|
95976
|
+
relativePath?: string | undefined;
|
|
95977
|
+
purgeDirectory?: boolean | undefined;
|
|
95964
95978
|
} | undefined;
|
|
95965
95979
|
}, {
|
|
95966
95980
|
brandPersistentId?: string | undefined;
|
|
@@ -96059,6 +96073,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
96059
96073
|
commitAuthorEmail?: string | undefined;
|
|
96060
96074
|
pullRequestTitle?: string | undefined;
|
|
96061
96075
|
pullRequestDescription?: string | undefined;
|
|
96076
|
+
relativePath?: string | undefined;
|
|
96077
|
+
purgeDirectory?: boolean | undefined;
|
|
96062
96078
|
} | undefined;
|
|
96063
96079
|
}>;
|
|
96064
96080
|
type DTOPipelineUpdateBody = z.infer<typeof DTOPipelineUpdateBody>;
|
package/dist/index.js
CHANGED
|
@@ -5964,7 +5964,9 @@ var GitDestinationOptions = _zod.z.object({
|
|
|
5964
5964
|
commitAuthorName: _zod.z.string().min(1).optional(),
|
|
5965
5965
|
commitAuthorEmail: _zod.z.string().email().optional(),
|
|
5966
5966
|
pullRequestTitle: _zod.z.string().min(1).optional(),
|
|
5967
|
-
pullRequestDescription: _zod.z.string().min(1).optional()
|
|
5967
|
+
pullRequestDescription: _zod.z.string().min(1).optional(),
|
|
5968
|
+
relativePath: _zod.z.string().optional(),
|
|
5969
|
+
purgeDirectory: _zod.z.boolean().optional()
|
|
5968
5970
|
});
|
|
5969
5971
|
var DTOPipelineCreateBody = _zod.z.object({
|
|
5970
5972
|
name: _zod.z.string(),
|