@supernova-studio/client 1.62.0 → 1.63.0
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 +24 -8
- package/dist/index.d.ts +24 -8
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -249901,66 +249901,82 @@ type DTOForgeProjectFeatureGetResponse = z$1.infer<typeof DTOForgeProjectFeature
|
|
|
249901
249901
|
declare const DTOForgeProjectPublishedFeature: z$1.ZodObject<{
|
|
249902
249902
|
featureName: z$1.ZodString;
|
|
249903
249903
|
iterationName: z$1.ZodString;
|
|
249904
|
-
projectId: z$1.ZodString;
|
|
249905
249904
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249906
249905
|
thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
249907
249906
|
staticPreviewUrl: z$1.ZodString;
|
|
249907
|
+
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
249908
|
+
projectName: z$1.ZodOptional<z$1.ZodString>;
|
|
249909
|
+
workspaceId: z$1.ZodOptional<z$1.ZodString>;
|
|
249908
249910
|
}, "strip", z$1.ZodTypeAny, {
|
|
249909
|
-
projectId: string;
|
|
249910
249911
|
staticPreviewUrl: string;
|
|
249911
249912
|
hideSupernovaUI: boolean;
|
|
249912
249913
|
featureName: string;
|
|
249913
249914
|
iterationName: string;
|
|
249915
|
+
workspaceId?: string | undefined;
|
|
249914
249916
|
thumbnailUrl?: string | undefined;
|
|
249917
|
+
projectId?: string | undefined;
|
|
249918
|
+
projectName?: string | undefined;
|
|
249915
249919
|
}, {
|
|
249916
|
-
projectId: string;
|
|
249917
249920
|
staticPreviewUrl: string;
|
|
249918
249921
|
hideSupernovaUI: boolean;
|
|
249919
249922
|
featureName: string;
|
|
249920
249923
|
iterationName: string;
|
|
249924
|
+
workspaceId?: string | undefined;
|
|
249921
249925
|
thumbnailUrl?: string | undefined;
|
|
249926
|
+
projectId?: string | undefined;
|
|
249927
|
+
projectName?: string | undefined;
|
|
249922
249928
|
}>;
|
|
249923
249929
|
type DTOForgeProjectPublishedFeature = z$1.infer<typeof DTOForgeProjectPublishedFeature>;
|
|
249924
249930
|
declare const DTOForgeProjectPublishedFeatureGetResponse: z$1.ZodObject<{
|
|
249925
249931
|
publishedFeature: z$1.ZodObject<{
|
|
249926
249932
|
featureName: z$1.ZodString;
|
|
249927
249933
|
iterationName: z$1.ZodString;
|
|
249928
|
-
projectId: z$1.ZodString;
|
|
249929
249934
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249930
249935
|
thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
249931
249936
|
staticPreviewUrl: z$1.ZodString;
|
|
249937
|
+
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
249938
|
+
projectName: z$1.ZodOptional<z$1.ZodString>;
|
|
249939
|
+
workspaceId: z$1.ZodOptional<z$1.ZodString>;
|
|
249932
249940
|
}, "strip", z$1.ZodTypeAny, {
|
|
249933
|
-
projectId: string;
|
|
249934
249941
|
staticPreviewUrl: string;
|
|
249935
249942
|
hideSupernovaUI: boolean;
|
|
249936
249943
|
featureName: string;
|
|
249937
249944
|
iterationName: string;
|
|
249945
|
+
workspaceId?: string | undefined;
|
|
249938
249946
|
thumbnailUrl?: string | undefined;
|
|
249947
|
+
projectId?: string | undefined;
|
|
249948
|
+
projectName?: string | undefined;
|
|
249939
249949
|
}, {
|
|
249940
|
-
projectId: string;
|
|
249941
249950
|
staticPreviewUrl: string;
|
|
249942
249951
|
hideSupernovaUI: boolean;
|
|
249943
249952
|
featureName: string;
|
|
249944
249953
|
iterationName: string;
|
|
249954
|
+
workspaceId?: string | undefined;
|
|
249945
249955
|
thumbnailUrl?: string | undefined;
|
|
249956
|
+
projectId?: string | undefined;
|
|
249957
|
+
projectName?: string | undefined;
|
|
249946
249958
|
}>;
|
|
249947
249959
|
}, "strip", z$1.ZodTypeAny, {
|
|
249948
249960
|
publishedFeature: {
|
|
249949
|
-
projectId: string;
|
|
249950
249961
|
staticPreviewUrl: string;
|
|
249951
249962
|
hideSupernovaUI: boolean;
|
|
249952
249963
|
featureName: string;
|
|
249953
249964
|
iterationName: string;
|
|
249965
|
+
workspaceId?: string | undefined;
|
|
249954
249966
|
thumbnailUrl?: string | undefined;
|
|
249967
|
+
projectId?: string | undefined;
|
|
249968
|
+
projectName?: string | undefined;
|
|
249955
249969
|
};
|
|
249956
249970
|
}, {
|
|
249957
249971
|
publishedFeature: {
|
|
249958
|
-
projectId: string;
|
|
249959
249972
|
staticPreviewUrl: string;
|
|
249960
249973
|
hideSupernovaUI: boolean;
|
|
249961
249974
|
featureName: string;
|
|
249962
249975
|
iterationName: string;
|
|
249976
|
+
workspaceId?: string | undefined;
|
|
249963
249977
|
thumbnailUrl?: string | undefined;
|
|
249978
|
+
projectId?: string | undefined;
|
|
249979
|
+
projectName?: string | undefined;
|
|
249964
249980
|
};
|
|
249965
249981
|
}>;
|
|
249966
249982
|
type DTOForgeProjectPublishedFeatureGetResponse = z$1.infer<typeof DTOForgeProjectPublishedFeatureGetResponse>;
|
package/dist/index.d.ts
CHANGED
|
@@ -249901,66 +249901,82 @@ type DTOForgeProjectFeatureGetResponse = z$1.infer<typeof DTOForgeProjectFeature
|
|
|
249901
249901
|
declare const DTOForgeProjectPublishedFeature: z$1.ZodObject<{
|
|
249902
249902
|
featureName: z$1.ZodString;
|
|
249903
249903
|
iterationName: z$1.ZodString;
|
|
249904
|
-
projectId: z$1.ZodString;
|
|
249905
249904
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249906
249905
|
thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
249907
249906
|
staticPreviewUrl: z$1.ZodString;
|
|
249907
|
+
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
249908
|
+
projectName: z$1.ZodOptional<z$1.ZodString>;
|
|
249909
|
+
workspaceId: z$1.ZodOptional<z$1.ZodString>;
|
|
249908
249910
|
}, "strip", z$1.ZodTypeAny, {
|
|
249909
|
-
projectId: string;
|
|
249910
249911
|
staticPreviewUrl: string;
|
|
249911
249912
|
hideSupernovaUI: boolean;
|
|
249912
249913
|
featureName: string;
|
|
249913
249914
|
iterationName: string;
|
|
249915
|
+
workspaceId?: string | undefined;
|
|
249914
249916
|
thumbnailUrl?: string | undefined;
|
|
249917
|
+
projectId?: string | undefined;
|
|
249918
|
+
projectName?: string | undefined;
|
|
249915
249919
|
}, {
|
|
249916
|
-
projectId: string;
|
|
249917
249920
|
staticPreviewUrl: string;
|
|
249918
249921
|
hideSupernovaUI: boolean;
|
|
249919
249922
|
featureName: string;
|
|
249920
249923
|
iterationName: string;
|
|
249924
|
+
workspaceId?: string | undefined;
|
|
249921
249925
|
thumbnailUrl?: string | undefined;
|
|
249926
|
+
projectId?: string | undefined;
|
|
249927
|
+
projectName?: string | undefined;
|
|
249922
249928
|
}>;
|
|
249923
249929
|
type DTOForgeProjectPublishedFeature = z$1.infer<typeof DTOForgeProjectPublishedFeature>;
|
|
249924
249930
|
declare const DTOForgeProjectPublishedFeatureGetResponse: z$1.ZodObject<{
|
|
249925
249931
|
publishedFeature: z$1.ZodObject<{
|
|
249926
249932
|
featureName: z$1.ZodString;
|
|
249927
249933
|
iterationName: z$1.ZodString;
|
|
249928
|
-
projectId: z$1.ZodString;
|
|
249929
249934
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249930
249935
|
thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
249931
249936
|
staticPreviewUrl: z$1.ZodString;
|
|
249937
|
+
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
249938
|
+
projectName: z$1.ZodOptional<z$1.ZodString>;
|
|
249939
|
+
workspaceId: z$1.ZodOptional<z$1.ZodString>;
|
|
249932
249940
|
}, "strip", z$1.ZodTypeAny, {
|
|
249933
|
-
projectId: string;
|
|
249934
249941
|
staticPreviewUrl: string;
|
|
249935
249942
|
hideSupernovaUI: boolean;
|
|
249936
249943
|
featureName: string;
|
|
249937
249944
|
iterationName: string;
|
|
249945
|
+
workspaceId?: string | undefined;
|
|
249938
249946
|
thumbnailUrl?: string | undefined;
|
|
249947
|
+
projectId?: string | undefined;
|
|
249948
|
+
projectName?: string | undefined;
|
|
249939
249949
|
}, {
|
|
249940
|
-
projectId: string;
|
|
249941
249950
|
staticPreviewUrl: string;
|
|
249942
249951
|
hideSupernovaUI: boolean;
|
|
249943
249952
|
featureName: string;
|
|
249944
249953
|
iterationName: string;
|
|
249954
|
+
workspaceId?: string | undefined;
|
|
249945
249955
|
thumbnailUrl?: string | undefined;
|
|
249956
|
+
projectId?: string | undefined;
|
|
249957
|
+
projectName?: string | undefined;
|
|
249946
249958
|
}>;
|
|
249947
249959
|
}, "strip", z$1.ZodTypeAny, {
|
|
249948
249960
|
publishedFeature: {
|
|
249949
|
-
projectId: string;
|
|
249950
249961
|
staticPreviewUrl: string;
|
|
249951
249962
|
hideSupernovaUI: boolean;
|
|
249952
249963
|
featureName: string;
|
|
249953
249964
|
iterationName: string;
|
|
249965
|
+
workspaceId?: string | undefined;
|
|
249954
249966
|
thumbnailUrl?: string | undefined;
|
|
249967
|
+
projectId?: string | undefined;
|
|
249968
|
+
projectName?: string | undefined;
|
|
249955
249969
|
};
|
|
249956
249970
|
}, {
|
|
249957
249971
|
publishedFeature: {
|
|
249958
|
-
projectId: string;
|
|
249959
249972
|
staticPreviewUrl: string;
|
|
249960
249973
|
hideSupernovaUI: boolean;
|
|
249961
249974
|
featureName: string;
|
|
249962
249975
|
iterationName: string;
|
|
249976
|
+
workspaceId?: string | undefined;
|
|
249963
249977
|
thumbnailUrl?: string | undefined;
|
|
249978
|
+
projectId?: string | undefined;
|
|
249979
|
+
projectName?: string | undefined;
|
|
249964
249980
|
};
|
|
249965
249981
|
}>;
|
|
249966
249982
|
type DTOForgeProjectPublishedFeatureGetResponse = z$1.infer<typeof DTOForgeProjectPublishedFeatureGetResponse>;
|
package/dist/index.js
CHANGED
|
@@ -10720,10 +10720,13 @@ var DTOForgeProjectFeature = ProjectFeature;
|
|
|
10720
10720
|
var DTOForgeProjectPublishedFeature = _zod2.default.object({
|
|
10721
10721
|
featureName: _zod2.default.string(),
|
|
10722
10722
|
iterationName: _zod2.default.string(),
|
|
10723
|
-
projectId: _zod2.default.string(),
|
|
10724
10723
|
hideSupernovaUI: _zod2.default.boolean(),
|
|
10725
10724
|
thumbnailUrl: _zod2.default.string().optional(),
|
|
10726
|
-
staticPreviewUrl: _zod2.default.string()
|
|
10725
|
+
staticPreviewUrl: _zod2.default.string(),
|
|
10726
|
+
// These are only included when authenticated user has access to the project (for both public & private published features)
|
|
10727
|
+
projectId: _zod2.default.string().optional(),
|
|
10728
|
+
projectName: _zod2.default.string().optional(),
|
|
10729
|
+
workspaceId: _zod2.default.string().optional()
|
|
10727
10730
|
});
|
|
10728
10731
|
var DTOForgeProjectPublishedFeatureGetResponse = _zod2.default.object({
|
|
10729
10732
|
publishedFeature: DTOForgeProjectPublishedFeature
|