@supernova-studio/client 1.10.17 → 1.10.19
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 +88 -53
- package/dist/index.d.ts +88 -53
- package/dist/index.js +16 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +637 -624
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5588,7 +5588,8 @@ var ForgeProject = _zod.z.object({
|
|
|
5588
5588
|
tags: ForgeProjectTag,
|
|
5589
5589
|
updatedAt: _zod.z.coerce.date().optional(),
|
|
5590
5590
|
workspaceId: _zod.z.string(),
|
|
5591
|
-
accessMode: ForgeProjectAccessMode
|
|
5591
|
+
accessMode: ForgeProjectAccessMode,
|
|
5592
|
+
isArchived: _zod.z.boolean().optional()
|
|
5592
5593
|
});
|
|
5593
5594
|
var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
|
|
5594
5595
|
OAuthProviderNames2["Figma"] = "figma";
|
|
@@ -7926,7 +7927,18 @@ var DTOExporterDeprecationInput = _zod.z.object({
|
|
|
7926
7927
|
});
|
|
7927
7928
|
|
|
7928
7929
|
// src/api/dto/export/filter.ts
|
|
7929
|
-
|
|
7930
|
+
|
|
7931
|
+
var DTOExportJobsListFilter = _zod.z.object({
|
|
7932
|
+
exporterId: _zod.z.string().optional(),
|
|
7933
|
+
designSystemVersionId: _zod.z.string().optional(),
|
|
7934
|
+
createdByUserId: _zod.z.string().optional(),
|
|
7935
|
+
status: ExportJobStatus.optional(),
|
|
7936
|
+
scheduleId: _zod.z.string().optional(),
|
|
7937
|
+
designSystemId: _zod.z.string().optional(),
|
|
7938
|
+
themeId: _zod.z.string().optional(),
|
|
7939
|
+
brandId: _zod.z.string().optional(),
|
|
7940
|
+
destinations: _zod.z.string().transform((s) => s.split(",").map((p) => ExportJobDestinationType.parse(p))).optional()
|
|
7941
|
+
});
|
|
7930
7942
|
|
|
7931
7943
|
// src/api/dto/export/job.ts
|
|
7932
7944
|
|
|
@@ -9048,7 +9060,8 @@ var DTOCreateForgeProject = ForgeProject.pick({
|
|
|
9048
9060
|
meta: true,
|
|
9049
9061
|
tags: true,
|
|
9050
9062
|
accessMode: true,
|
|
9051
|
-
fpContextId: true
|
|
9063
|
+
fpContextId: true,
|
|
9064
|
+
isArchived: true
|
|
9052
9065
|
});
|
|
9053
9066
|
var DTOUpdateForgeProject = DTOCreateForgeProject.extend({ id: _zod.z.string() });
|
|
9054
9067
|
var DTOForgeProjectGetResponse = _zod.z.object({ project: DTOForgeProject.nullable() });
|