@supernova-studio/client 0.55.10 → 0.55.12
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 +202 -20
- package/dist/index.d.ts +202 -20
- package/dist/index.js +9 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/endpoints/workspace-invites.ts +7 -1
package/dist/index.mjs
CHANGED
|
@@ -4336,6 +4336,7 @@ var DesignSystemInviteEmailRecipient = z155.object({
|
|
|
4336
4336
|
role: WorkspaceRoleSchema
|
|
4337
4337
|
});
|
|
4338
4338
|
var DesignSystemInviteEmailData = z155.object({
|
|
4339
|
+
workspace: Workspace,
|
|
4339
4340
|
designSystem: DesignSystem,
|
|
4340
4341
|
invitedBy: User,
|
|
4341
4342
|
documentationDomain: z155.string().optional()
|
|
@@ -6513,9 +6514,6 @@ var DesignSystemMembersEndpoint = class {
|
|
|
6513
6514
|
}
|
|
6514
6515
|
};
|
|
6515
6516
|
|
|
6516
|
-
// src/api/endpoints/design-systems.ts
|
|
6517
|
-
import { z as z233 } from "zod";
|
|
6518
|
-
|
|
6519
6517
|
// src/api/endpoints/design-system-versions.ts
|
|
6520
6518
|
var DesignSystemVersionsEndpoint = class {
|
|
6521
6519
|
constructor(requestExecutor) {
|
|
@@ -6527,6 +6525,7 @@ var DesignSystemVersionsEndpoint = class {
|
|
|
6527
6525
|
};
|
|
6528
6526
|
|
|
6529
6527
|
// src/api/endpoints/design-systems.ts
|
|
6528
|
+
import { z as z233 } from "zod";
|
|
6530
6529
|
var DesignSystemsEndpoint = class {
|
|
6531
6530
|
constructor(requestExecutor) {
|
|
6532
6531
|
this.requestExecutor = requestExecutor;
|
|
@@ -6593,6 +6592,11 @@ var WorkspaceInvitationsEndpoint = class {
|
|
|
6593
6592
|
method: "GET"
|
|
6594
6593
|
});
|
|
6595
6594
|
}
|
|
6595
|
+
delete(workspaceId, invitationId) {
|
|
6596
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/invitations/${invitationId}`, DTOWorkspaceResponse, {
|
|
6597
|
+
method: "DELETE"
|
|
6598
|
+
});
|
|
6599
|
+
}
|
|
6596
6600
|
};
|
|
6597
6601
|
|
|
6598
6602
|
// src/api/endpoints/workspace-members.ts
|
|
@@ -11868,6 +11872,7 @@ export {
|
|
|
11868
11872
|
DTOWorkspaceResponse,
|
|
11869
11873
|
DTOWorkspaceRole,
|
|
11870
11874
|
DesignSystemMembersEndpoint,
|
|
11875
|
+
DesignSystemVersionsEndpoint,
|
|
11871
11876
|
DesignSystemsEndpoint,
|
|
11872
11877
|
DocumentationHierarchySettings,
|
|
11873
11878
|
DocumentationPageEditorModel,
|