@supernova-studio/client 0.57.12 → 0.57.13
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 +4 -2
- 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/src/api/dto/workspaces/workspace.ts +4 -1
package/dist/index.mjs
CHANGED
|
@@ -5827,9 +5827,10 @@ var DTONpmRegistryConfig = z203.object({
|
|
|
5827
5827
|
});
|
|
5828
5828
|
|
|
5829
5829
|
// src/api/dto/workspaces/workspace.ts
|
|
5830
|
+
var DTOWorkspaceProfile = WorkspaceProfile;
|
|
5830
5831
|
var DTOWorkspace = z204.object({
|
|
5831
5832
|
id: z204.string(),
|
|
5832
|
-
profile:
|
|
5833
|
+
profile: DTOWorkspaceProfile,
|
|
5833
5834
|
subscription: Subscription,
|
|
5834
5835
|
npmRegistry: DTONpmRegistryConfig.optional()
|
|
5835
5836
|
});
|
|
@@ -12613,6 +12614,7 @@ export {
|
|
|
12613
12614
|
DTOWorkspaceInviteUpdate,
|
|
12614
12615
|
DTOWorkspaceMember,
|
|
12615
12616
|
DTOWorkspaceMembersListResponse,
|
|
12617
|
+
DTOWorkspaceProfile,
|
|
12616
12618
|
DTOWorkspaceResponse,
|
|
12617
12619
|
DTOWorkspaceRole,
|
|
12618
12620
|
DesignSystemBffEndpoint,
|