@supernova-studio/client 0.57.12 → 0.57.14
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 +111 -1
- package/dist/index.d.ts +111 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/workspaces/workspace.ts +4 -1
package/dist/index.mjs
CHANGED
|
@@ -3260,6 +3260,7 @@ var Collection = z91.object({
|
|
|
3260
3260
|
elementPropertyOptionId: z91.string(),
|
|
3261
3261
|
createdAt: z91.coerce.date(),
|
|
3262
3262
|
updatedAt: z91.coerce.date(),
|
|
3263
|
+
sortOrder: z91.string(),
|
|
3263
3264
|
origin: CollectionOrigin.optional()
|
|
3264
3265
|
});
|
|
3265
3266
|
var CollectionImportModelInput = z92.object({
|
|
@@ -5827,9 +5828,10 @@ var DTONpmRegistryConfig = z203.object({
|
|
|
5827
5828
|
});
|
|
5828
5829
|
|
|
5829
5830
|
// src/api/dto/workspaces/workspace.ts
|
|
5831
|
+
var DTOWorkspaceProfile = WorkspaceProfile;
|
|
5830
5832
|
var DTOWorkspace = z204.object({
|
|
5831
5833
|
id: z204.string(),
|
|
5832
|
-
profile:
|
|
5834
|
+
profile: DTOWorkspaceProfile,
|
|
5833
5835
|
subscription: Subscription,
|
|
5834
5836
|
npmRegistry: DTONpmRegistryConfig.optional()
|
|
5835
5837
|
});
|
|
@@ -12613,6 +12615,7 @@ export {
|
|
|
12613
12615
|
DTOWorkspaceInviteUpdate,
|
|
12614
12616
|
DTOWorkspaceMember,
|
|
12615
12617
|
DTOWorkspaceMembersListResponse,
|
|
12618
|
+
DTOWorkspaceProfile,
|
|
12616
12619
|
DTOWorkspaceResponse,
|
|
12617
12620
|
DTOWorkspaceRole,
|
|
12618
12621
|
DesignSystemBffEndpoint,
|