@supernova-studio/client 0.47.66 → 0.47.68
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/design-system.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -4859,6 +4859,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4859
4859
|
description?: string | undefined;
|
|
4860
4860
|
}>;
|
|
4861
4861
|
docExporterId: z.ZodString;
|
|
4862
|
+
sources: z.ZodArray<z.ZodAny, "many">;
|
|
4862
4863
|
}>, "strip", z.ZodTypeAny, {
|
|
4863
4864
|
id: string;
|
|
4864
4865
|
meta: {
|
|
@@ -4867,6 +4868,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4867
4868
|
};
|
|
4868
4869
|
createdAt: Date;
|
|
4869
4870
|
updatedAt: Date;
|
|
4871
|
+
sources: any[];
|
|
4870
4872
|
workspaceId: string;
|
|
4871
4873
|
docExporterId: string;
|
|
4872
4874
|
docSlug: string;
|
|
@@ -4888,6 +4890,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4888
4890
|
};
|
|
4889
4891
|
createdAt: Date;
|
|
4890
4892
|
updatedAt: Date;
|
|
4893
|
+
sources: any[];
|
|
4891
4894
|
workspaceId: string;
|
|
4892
4895
|
docExporterId: string;
|
|
4893
4896
|
docSlug: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -4859,6 +4859,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4859
4859
|
description?: string | undefined;
|
|
4860
4860
|
}>;
|
|
4861
4861
|
docExporterId: z.ZodString;
|
|
4862
|
+
sources: z.ZodArray<z.ZodAny, "many">;
|
|
4862
4863
|
}>, "strip", z.ZodTypeAny, {
|
|
4863
4864
|
id: string;
|
|
4864
4865
|
meta: {
|
|
@@ -4867,6 +4868,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4867
4868
|
};
|
|
4868
4869
|
createdAt: Date;
|
|
4869
4870
|
updatedAt: Date;
|
|
4871
|
+
sources: any[];
|
|
4870
4872
|
workspaceId: string;
|
|
4871
4873
|
docExporterId: string;
|
|
4872
4874
|
docSlug: string;
|
|
@@ -4888,6 +4890,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4888
4890
|
};
|
|
4889
4891
|
createdAt: Date;
|
|
4890
4892
|
updatedAt: Date;
|
|
4893
|
+
sources: any[];
|
|
4891
4894
|
workspaceId: string;
|
|
4892
4895
|
docExporterId: string;
|
|
4893
4896
|
docSlug: string;
|
package/dist/index.js
CHANGED
|
@@ -4730,7 +4730,8 @@ var DTODesignSystem = DesignSystem.omit({
|
|
|
4730
4730
|
docExporterId: true
|
|
4731
4731
|
}).extend({
|
|
4732
4732
|
meta: ObjectMeta,
|
|
4733
|
-
docExporterId: _zod.z.string()
|
|
4733
|
+
docExporterId: _zod.z.string(),
|
|
4734
|
+
sources: _zod.z.array(_zod.z.any())
|
|
4734
4735
|
});
|
|
4735
4736
|
|
|
4736
4737
|
// src/api/dto/design-systems/elements-diff.ts
|