@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/package.json
CHANGED
|
@@ -6,13 +6,16 @@ import { DTONpmRegistryConfig } from "./npm-registry";
|
|
|
6
6
|
// Read
|
|
7
7
|
//
|
|
8
8
|
|
|
9
|
+
export const DTOWorkspaceProfile = WorkspaceProfile;
|
|
10
|
+
|
|
9
11
|
export const DTOWorkspace = z.object({
|
|
10
12
|
id: z.string(),
|
|
11
|
-
profile:
|
|
13
|
+
profile: DTOWorkspaceProfile,
|
|
12
14
|
subscription: Subscription,
|
|
13
15
|
npmRegistry: DTONpmRegistryConfig.optional(),
|
|
14
16
|
});
|
|
15
17
|
|
|
18
|
+
export type DTOWorkspaceProfile = z.infer<typeof DTOWorkspaceProfile>;
|
|
16
19
|
export type DTOWorkspace = z.infer<typeof DTOWorkspace>;
|
|
17
20
|
|
|
18
21
|
//
|