@supernova-studio/client 0.54.26 → 0.54.27
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 +894 -296
- package/dist/index.d.ts +894 -296
- package/dist/index.js +62 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +101 -49
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/design-system.ts +2 -2
- package/src/api/dto/workspaces/membership.ts +1 -1
- package/src/api/dto/workspaces/workspace.ts +2 -2
- package/src/api/endpoints/design-system-members.ts +24 -0
- package/src/api/endpoints/design-systems.ts +11 -12
- package/src/api/endpoints/index.ts +2 -0
- package/src/api/endpoints/workspace-members.ts +31 -0
- package/src/api/endpoints/workspaces.ts +11 -5
package/dist/index.mjs
CHANGED
|
@@ -5093,7 +5093,7 @@ var DTODesignSystem = DesignSystem.omit({
|
|
|
5093
5093
|
sources: z175.array(z175.any()),
|
|
5094
5094
|
role: WorkspaceRoleSchema.optional()
|
|
5095
5095
|
});
|
|
5096
|
-
var
|
|
5096
|
+
var DTODesignSystemResponse = z175.object({
|
|
5097
5097
|
designSystem: DTODesignSystem
|
|
5098
5098
|
});
|
|
5099
5099
|
var DTODesignSystemsListResponse = z175.object({
|
|
@@ -5504,7 +5504,7 @@ var DTOWorkspace = z194.object({
|
|
|
5504
5504
|
var DTOWorkspaceCreateInput = z194.object({
|
|
5505
5505
|
name: z194.string()
|
|
5506
5506
|
});
|
|
5507
|
-
var
|
|
5507
|
+
var DTOWorkspaceResponse = z194.object({
|
|
5508
5508
|
workspace: DTOWorkspace
|
|
5509
5509
|
});
|
|
5510
5510
|
|
|
@@ -6403,12 +6403,34 @@ var DTOUserGetResponse = z228.object({
|
|
|
6403
6403
|
|
|
6404
6404
|
// src/api/endpoints/design-systems.ts
|
|
6405
6405
|
import { z as z229 } from "zod";
|
|
6406
|
+
|
|
6407
|
+
// src/api/endpoints/design-system-members.ts
|
|
6408
|
+
var DesignSystemMembersEndpoint = class {
|
|
6409
|
+
constructor(requestExecutor) {
|
|
6410
|
+
this.requestExecutor = requestExecutor;
|
|
6411
|
+
}
|
|
6412
|
+
list(dsId) {
|
|
6413
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/members`, DTODesignSystemMemberListResponse, {
|
|
6414
|
+
method: "GET"
|
|
6415
|
+
});
|
|
6416
|
+
}
|
|
6417
|
+
update(dsId, body) {
|
|
6418
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/members`, DTODesignSystemMembersUpdateResponse, {
|
|
6419
|
+
method: "POST",
|
|
6420
|
+
body
|
|
6421
|
+
});
|
|
6422
|
+
}
|
|
6423
|
+
};
|
|
6424
|
+
|
|
6425
|
+
// src/api/endpoints/design-systems.ts
|
|
6406
6426
|
var DesignSystemsEndpoint = class {
|
|
6407
6427
|
constructor(requestExecutor) {
|
|
6408
6428
|
this.requestExecutor = requestExecutor;
|
|
6429
|
+
__publicField(this, "members");
|
|
6430
|
+
this.members = new DesignSystemMembersEndpoint(requestExecutor);
|
|
6409
6431
|
}
|
|
6410
6432
|
create(body) {
|
|
6411
|
-
return this.requestExecutor.json("/design-systems",
|
|
6433
|
+
return this.requestExecutor.json("/design-systems", DTODesignSystemResponse, { method: "POST", body });
|
|
6412
6434
|
}
|
|
6413
6435
|
list(wsId) {
|
|
6414
6436
|
return this.requestExecutor.json(`/workspaces/${wsId}/design-systems`, DTODesignSystemsListResponse);
|
|
@@ -6419,9 +6441,9 @@ var DesignSystemsEndpoint = class {
|
|
|
6419
6441
|
delete(dsId) {
|
|
6420
6442
|
return this.requestExecutor.json(`/design-systems/${dsId}`, z229.any(), { method: "DELETE" });
|
|
6421
6443
|
}
|
|
6422
|
-
|
|
6423
|
-
return this.requestExecutor.json(`/design-systems/${dsId}
|
|
6424
|
-
method: "
|
|
6444
|
+
update(dsId, body) {
|
|
6445
|
+
return this.requestExecutor.json(`/design-systems/${dsId}`, DTODesignSystemResponse, {
|
|
6446
|
+
method: "PUT",
|
|
6425
6447
|
body
|
|
6426
6448
|
});
|
|
6427
6449
|
}
|
|
@@ -6437,14 +6459,43 @@ var UsersEndpoint = class {
|
|
|
6437
6459
|
}
|
|
6438
6460
|
};
|
|
6439
6461
|
|
|
6440
|
-
// src/api/endpoints/
|
|
6462
|
+
// src/api/endpoints/workspace-members.ts
|
|
6441
6463
|
import { z as z230 } from "zod";
|
|
6464
|
+
var WorkspaceMembersEndpoint = class {
|
|
6465
|
+
constructor(requestExecutor) {
|
|
6466
|
+
this.requestExecutor = requestExecutor;
|
|
6467
|
+
}
|
|
6468
|
+
list(workspaceId) {
|
|
6469
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/members`, DTOUserWorkspaceMembershipsResponse, {
|
|
6470
|
+
method: "GET"
|
|
6471
|
+
});
|
|
6472
|
+
}
|
|
6473
|
+
update(workspaceId, body) {
|
|
6474
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/members/role`, DTOWorkspaceResponse, {
|
|
6475
|
+
method: "PUT",
|
|
6476
|
+
body
|
|
6477
|
+
});
|
|
6478
|
+
}
|
|
6479
|
+
invite(workspaceId, body) {
|
|
6480
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/members`, z230.any(), { method: "POST", body });
|
|
6481
|
+
}
|
|
6482
|
+
delete(workspaceId, userId) {
|
|
6483
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/members/${userId}`, DTOWorkspaceResponse, {
|
|
6484
|
+
method: "DELETE"
|
|
6485
|
+
});
|
|
6486
|
+
}
|
|
6487
|
+
};
|
|
6488
|
+
|
|
6489
|
+
// src/api/endpoints/workspaces.ts
|
|
6490
|
+
import { z as z231 } from "zod";
|
|
6442
6491
|
var WorkspacesEndpoint = class {
|
|
6443
6492
|
constructor(requestExecutor) {
|
|
6444
6493
|
this.requestExecutor = requestExecutor;
|
|
6494
|
+
__publicField(this, "members");
|
|
6495
|
+
this.members = new WorkspaceMembersEndpoint(requestExecutor);
|
|
6445
6496
|
}
|
|
6446
6497
|
create(body) {
|
|
6447
|
-
return this.requestExecutor.json("/workspaces",
|
|
6498
|
+
return this.requestExecutor.json("/workspaces", DTOWorkspaceResponse, {
|
|
6448
6499
|
method: "POST",
|
|
6449
6500
|
body: {
|
|
6450
6501
|
...body,
|
|
@@ -6454,10 +6505,10 @@ var WorkspacesEndpoint = class {
|
|
|
6454
6505
|
});
|
|
6455
6506
|
}
|
|
6456
6507
|
delete(workspaceId) {
|
|
6457
|
-
return this.requestExecutor.json(`/workspaces/${workspaceId}`,
|
|
6508
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}`, z231.any(), { method: "DELETE" });
|
|
6458
6509
|
}
|
|
6459
|
-
|
|
6460
|
-
return this.requestExecutor.json(`/workspaces/${workspaceId}/
|
|
6510
|
+
subscription(workspaceId) {
|
|
6511
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/subscription`, z231.any(), { method: "GET" });
|
|
6461
6512
|
}
|
|
6462
6513
|
};
|
|
6463
6514
|
|
|
@@ -6479,9 +6530,9 @@ ${bodyText}`);
|
|
|
6479
6530
|
|
|
6480
6531
|
// src/api/transport/request-executor.ts
|
|
6481
6532
|
import fetch from "node-fetch";
|
|
6482
|
-
import { z as
|
|
6483
|
-
var ResponseWrapper =
|
|
6484
|
-
result:
|
|
6533
|
+
import { z as z232 } from "zod";
|
|
6534
|
+
var ResponseWrapper = z232.object({
|
|
6535
|
+
result: z232.record(z232.any())
|
|
6485
6536
|
});
|
|
6486
6537
|
var RequestExecutor = class {
|
|
6487
6538
|
constructor(testServerConfig) {
|
|
@@ -6603,7 +6654,7 @@ function generateHash(input, debug = false) {
|
|
|
6603
6654
|
}
|
|
6604
6655
|
|
|
6605
6656
|
// src/yjs/design-system-content/documentation-hierarchy.ts
|
|
6606
|
-
import { z as
|
|
6657
|
+
import { z as z233 } from "zod";
|
|
6607
6658
|
|
|
6608
6659
|
// src/yjs/version-room/base.ts
|
|
6609
6660
|
var VersionRoomBaseYDoc = class {
|
|
@@ -7132,24 +7183,24 @@ var FrontendVersionRoomYDoc = class {
|
|
|
7132
7183
|
};
|
|
7133
7184
|
|
|
7134
7185
|
// src/yjs/design-system-content/documentation-hierarchy.ts
|
|
7135
|
-
var DocumentationHierarchySettings =
|
|
7136
|
-
routingVersion:
|
|
7137
|
-
isDraftFeatureAdopted:
|
|
7138
|
-
isApprovalFeatureEnabled:
|
|
7139
|
-
approvalRequiredForPublishing:
|
|
7186
|
+
var DocumentationHierarchySettings = z233.object({
|
|
7187
|
+
routingVersion: z233.string(),
|
|
7188
|
+
isDraftFeatureAdopted: z233.boolean(),
|
|
7189
|
+
isApprovalFeatureEnabled: z233.boolean(),
|
|
7190
|
+
approvalRequiredForPublishing: z233.boolean()
|
|
7140
7191
|
});
|
|
7141
7192
|
function yjsToDocumentationHierarchy(doc) {
|
|
7142
7193
|
return new FrontendVersionRoomYDoc(doc).getDocumentationHierarchy();
|
|
7143
7194
|
}
|
|
7144
7195
|
|
|
7145
7196
|
// src/yjs/design-system-content/item-configuration.ts
|
|
7146
|
-
import { z as
|
|
7147
|
-
var DTODocumentationPageRoomHeaderData =
|
|
7148
|
-
title:
|
|
7197
|
+
import { z as z234 } from "zod";
|
|
7198
|
+
var DTODocumentationPageRoomHeaderData = z234.object({
|
|
7199
|
+
title: z234.string(),
|
|
7149
7200
|
configuration: DTODocumentationItemConfigurationV2
|
|
7150
7201
|
});
|
|
7151
|
-
var DTODocumentationPageRoomHeaderDataUpdate =
|
|
7152
|
-
title:
|
|
7202
|
+
var DTODocumentationPageRoomHeaderDataUpdate = z234.object({
|
|
7203
|
+
title: z234.string().optional(),
|
|
7153
7204
|
configuration: DTODocumentationItemConfigurationV2.omit({ header: true }).extend({ header: DocumentationItemHeaderV2.partial() }).optional()
|
|
7154
7205
|
});
|
|
7155
7206
|
function itemConfigurationToYjs(yDoc, item) {
|
|
@@ -7200,7 +7251,7 @@ function yjsToItemConfiguration(yDoc) {
|
|
|
7200
7251
|
header: rawHeader
|
|
7201
7252
|
};
|
|
7202
7253
|
return {
|
|
7203
|
-
title:
|
|
7254
|
+
title: z234.string().parse(title),
|
|
7204
7255
|
configuration: DTODocumentationItemConfigurationV2.parse(rawConfig)
|
|
7205
7256
|
};
|
|
7206
7257
|
}
|
|
@@ -7210,9 +7261,9 @@ var PageBlockEditorModel = PageBlockEditorModelV2;
|
|
|
7210
7261
|
var PageSectionEditorModel = PageSectionEditorModelV2;
|
|
7211
7262
|
|
|
7212
7263
|
// src/yjs/docs-editor/model/page.ts
|
|
7213
|
-
import { z as
|
|
7214
|
-
var DocumentationPageEditorModel =
|
|
7215
|
-
blocks:
|
|
7264
|
+
import { z as z235 } from "zod";
|
|
7265
|
+
var DocumentationPageEditorModel = z235.object({
|
|
7266
|
+
blocks: z235.array(DocumentationPageContentItem)
|
|
7216
7267
|
});
|
|
7217
7268
|
|
|
7218
7269
|
// src/yjs/docs-editor/prosemirror/inner-editor-schema.ts
|
|
@@ -10563,7 +10614,7 @@ var blocks = [
|
|
|
10563
10614
|
|
|
10564
10615
|
// src/yjs/docs-editor/prosemirror-to-blocks.ts
|
|
10565
10616
|
import { yXmlFragmentToProsemirrorJSON } from "y-prosemirror";
|
|
10566
|
-
import { z as
|
|
10617
|
+
import { z as z236 } from "zod";
|
|
10567
10618
|
function yDocToPage(yDoc, definitions) {
|
|
10568
10619
|
return yXmlFragmentToPage(yDoc.getXmlFragment("default"), definitions);
|
|
10569
10620
|
}
|
|
@@ -10643,7 +10694,7 @@ function prosemirrorNodeToSectionItem(prosemirrorNode, definitionsMap) {
|
|
|
10643
10694
|
return null;
|
|
10644
10695
|
return {
|
|
10645
10696
|
id,
|
|
10646
|
-
title: getProsemirrorAttribute(prosemirrorNode, "title",
|
|
10697
|
+
title: getProsemirrorAttribute(prosemirrorNode, "title", z236.string()) ?? "",
|
|
10647
10698
|
columns: (prosemirrorNode.content ?? []).filter((c) => c.type === "sectionItemColumn").map((c) => prosemirrorNodeToSectionColumns(c, definitionsMap)).filter(nonNullFilter)
|
|
10648
10699
|
};
|
|
10649
10700
|
}
|
|
@@ -10678,7 +10729,7 @@ function internalProsemirrorNodesToBlocks(prosemirrorNodes, definitionsMap, dept
|
|
|
10678
10729
|
});
|
|
10679
10730
|
}
|
|
10680
10731
|
function internalProsemirrorNodeToBlock(prosemirrorNode, definitionsMap, depth) {
|
|
10681
|
-
const definitionId = getProsemirrorAttribute(prosemirrorNode, "definitionId",
|
|
10732
|
+
const definitionId = getProsemirrorAttribute(prosemirrorNode, "definitionId", z236.string());
|
|
10682
10733
|
if (!definitionId) {
|
|
10683
10734
|
console.warn(`definitionId on ${prosemirrorNode.type} is required to be interpreted as a block, skipping node`);
|
|
10684
10735
|
return [];
|
|
@@ -10720,7 +10771,7 @@ function parseAsRichText(prosemirrorNode, definition, property) {
|
|
|
10720
10771
|
if (!id)
|
|
10721
10772
|
return null;
|
|
10722
10773
|
const variantId = getProsemirrorBlockVariantId(prosemirrorNode);
|
|
10723
|
-
const calloutType = parseCalloutType(getProsemirrorAttribute(prosemirrorNode, "type",
|
|
10774
|
+
const calloutType = parseCalloutType(getProsemirrorAttribute(prosemirrorNode, "type", z236.string().optional()));
|
|
10724
10775
|
return {
|
|
10725
10776
|
id,
|
|
10726
10777
|
type: "Block",
|
|
@@ -10848,10 +10899,10 @@ function parseRichTextAttribute(mark) {
|
|
|
10848
10899
|
return null;
|
|
10849
10900
|
}
|
|
10850
10901
|
function parseProsemirrorLink(mark) {
|
|
10851
|
-
const href = getProsemirrorAttribute(mark, "href",
|
|
10902
|
+
const href = getProsemirrorAttribute(mark, "href", z236.string().optional());
|
|
10852
10903
|
if (!href)
|
|
10853
10904
|
return null;
|
|
10854
|
-
const target = getProsemirrorAttribute(mark, "target",
|
|
10905
|
+
const target = getProsemirrorAttribute(mark, "target", z236.string().optional());
|
|
10855
10906
|
const openInNewTab = target === "_blank";
|
|
10856
10907
|
if (href.startsWith("@")) {
|
|
10857
10908
|
return {
|
|
@@ -10870,10 +10921,10 @@ function parseProsemirrorLink(mark) {
|
|
|
10870
10921
|
}
|
|
10871
10922
|
}
|
|
10872
10923
|
function parseProsemirrorCommentHighlight(mark) {
|
|
10873
|
-
const highlightId = getProsemirrorAttribute(mark, "highlightId",
|
|
10924
|
+
const highlightId = getProsemirrorAttribute(mark, "highlightId", z236.string().optional());
|
|
10874
10925
|
if (!highlightId)
|
|
10875
10926
|
return null;
|
|
10876
|
-
const isResolved = getProsemirrorAttribute(mark, "resolved",
|
|
10927
|
+
const isResolved = getProsemirrorAttribute(mark, "resolved", z236.boolean().optional()) ?? false;
|
|
10877
10928
|
return {
|
|
10878
10929
|
type: "Comment",
|
|
10879
10930
|
commentHighlightId: highlightId,
|
|
@@ -10885,7 +10936,7 @@ function parseAsTable(prosemirrorNode, definition, property) {
|
|
|
10885
10936
|
if (!id)
|
|
10886
10937
|
return null;
|
|
10887
10938
|
const variantId = getProsemirrorBlockVariantId(prosemirrorNode);
|
|
10888
|
-
const hasBorder = getProsemirrorAttribute(prosemirrorNode, "hasBorder",
|
|
10939
|
+
const hasBorder = getProsemirrorAttribute(prosemirrorNode, "hasBorder", z236.boolean().optional()) !== false;
|
|
10889
10940
|
const tableChild = prosemirrorNode.content?.find((c) => c.type === "table");
|
|
10890
10941
|
if (!tableChild) {
|
|
10891
10942
|
return emptyTable(id, variantId, 0);
|
|
@@ -10932,9 +10983,9 @@ function parseAsTableCell(prosemirrorNode) {
|
|
|
10932
10983
|
const id = getProsemirrorBlockId(prosemirrorNode);
|
|
10933
10984
|
if (!id)
|
|
10934
10985
|
return null;
|
|
10935
|
-
const textAlign = getProsemirrorAttribute(prosemirrorNode, "textAlign",
|
|
10986
|
+
const textAlign = getProsemirrorAttribute(prosemirrorNode, "textAlign", z236.string().optional());
|
|
10936
10987
|
let columnWidth;
|
|
10937
|
-
const columnWidthArray = getProsemirrorAttribute(prosemirrorNode, "colwidth",
|
|
10988
|
+
const columnWidthArray = getProsemirrorAttribute(prosemirrorNode, "colwidth", z236.array(z236.number()).nullish());
|
|
10938
10989
|
if (columnWidthArray) {
|
|
10939
10990
|
columnWidth = roundDimension(columnWidthArray[0]);
|
|
10940
10991
|
}
|
|
@@ -10972,7 +11023,7 @@ function parseAsTableNode(prosemirrorNode) {
|
|
|
10972
11023
|
value: parseRichText(prosemirrorNode.content ?? [])
|
|
10973
11024
|
};
|
|
10974
11025
|
case "image":
|
|
10975
|
-
const items = getProsemirrorAttribute(prosemirrorNode, "items",
|
|
11026
|
+
const items = getProsemirrorAttribute(prosemirrorNode, "items", z236.string());
|
|
10976
11027
|
if (!items)
|
|
10977
11028
|
return null;
|
|
10978
11029
|
const parsedItems = PageBlockItemV2.array().safeParse(JSON.parse(items));
|
|
@@ -11092,7 +11143,7 @@ function definitionExpectsPlaceholderItem(definition) {
|
|
|
11092
11143
|
);
|
|
11093
11144
|
}
|
|
11094
11145
|
function parseBlockItems(prosemirrorNode, definition) {
|
|
11095
|
-
const itemsString = getProsemirrorAttribute(prosemirrorNode, "items",
|
|
11146
|
+
const itemsString = getProsemirrorAttribute(prosemirrorNode, "items", z236.string());
|
|
11096
11147
|
if (!itemsString)
|
|
11097
11148
|
return null;
|
|
11098
11149
|
const itemsJson = JSON.parse(itemsString);
|
|
@@ -11104,18 +11155,18 @@ function parseBlockItems(prosemirrorNode, definition) {
|
|
|
11104
11155
|
}
|
|
11105
11156
|
function parseAppearance(prosemirrorNode) {
|
|
11106
11157
|
let appearance = {};
|
|
11107
|
-
const rawAppearanceString = getProsemirrorAttribute(prosemirrorNode, "appearance",
|
|
11158
|
+
const rawAppearanceString = getProsemirrorAttribute(prosemirrorNode, "appearance", z236.string().optional());
|
|
11108
11159
|
if (rawAppearanceString) {
|
|
11109
11160
|
const parsedAppearance = PageBlockAppearanceV2.safeParse(JSON.parse(rawAppearanceString));
|
|
11110
11161
|
if (parsedAppearance.success) {
|
|
11111
11162
|
appearance = parsedAppearance.data;
|
|
11112
11163
|
}
|
|
11113
11164
|
}
|
|
11114
|
-
const columns = getProsemirrorAttribute(prosemirrorNode, "columns",
|
|
11165
|
+
const columns = getProsemirrorAttribute(prosemirrorNode, "columns", z236.number().optional());
|
|
11115
11166
|
if (columns) {
|
|
11116
11167
|
appearance.numberOfColumns = columns;
|
|
11117
11168
|
}
|
|
11118
|
-
const backgroundColor = getProsemirrorAttribute(prosemirrorNode, "backgroundColor",
|
|
11169
|
+
const backgroundColor = getProsemirrorAttribute(prosemirrorNode, "backgroundColor", z236.string().optional());
|
|
11119
11170
|
if (backgroundColor) {
|
|
11120
11171
|
const parsedColor = PageBlockColorV2.safeParse(JSON.parse(backgroundColor));
|
|
11121
11172
|
if (parsedColor.success) {
|
|
@@ -11210,13 +11261,13 @@ function valueSchemaForPropertyType(type) {
|
|
|
11210
11261
|
}
|
|
11211
11262
|
}
|
|
11212
11263
|
function getProsemirrorBlockId(prosemirrorNode) {
|
|
11213
|
-
const id = getProsemirrorAttribute(prosemirrorNode, "id",
|
|
11264
|
+
const id = getProsemirrorAttribute(prosemirrorNode, "id", z236.string());
|
|
11214
11265
|
if (!id)
|
|
11215
11266
|
console.warn(`Prosemirror attribute "id" on ${prosemirrorNode.type} is required`);
|
|
11216
11267
|
return id;
|
|
11217
11268
|
}
|
|
11218
11269
|
function getProsemirrorBlockVariantId(prosemirrorNode) {
|
|
11219
|
-
return getProsemirrorAttribute(prosemirrorNode, "variantId", nullishToOptional(
|
|
11270
|
+
return getProsemirrorAttribute(prosemirrorNode, "variantId", nullishToOptional(z236.string()));
|
|
11220
11271
|
}
|
|
11221
11272
|
function getProsemirrorAttribute(prosemirrorNode, attributeName, validationSchema) {
|
|
11222
11273
|
const parsedAttr = validationSchema.safeParse(prosemirrorNode.attrs?.[attributeName]);
|
|
@@ -11297,11 +11348,11 @@ export {
|
|
|
11297
11348
|
DTODesignElementsDataDiffResponse,
|
|
11298
11349
|
DTODesignSystem,
|
|
11299
11350
|
DTODesignSystemCreateInput,
|
|
11300
|
-
DTODesignSystemCreateResponse,
|
|
11301
11351
|
DTODesignSystemMember,
|
|
11302
11352
|
DTODesignSystemMemberListResponse,
|
|
11303
11353
|
DTODesignSystemMembersUpdatePayload,
|
|
11304
11354
|
DTODesignSystemMembersUpdateResponse,
|
|
11355
|
+
DTODesignSystemResponse,
|
|
11305
11356
|
DTODesignSystemUpdateInput,
|
|
11306
11357
|
DTODesignSystemVersion,
|
|
11307
11358
|
DTODesignSystemVersionCreationResponse,
|
|
@@ -11472,12 +11523,12 @@ export {
|
|
|
11472
11523
|
DTOUserWorkspaceMembershipsResponse,
|
|
11473
11524
|
DTOWorkspace,
|
|
11474
11525
|
DTOWorkspaceCreateInput,
|
|
11475
|
-
DTOWorkspaceCreateResponse,
|
|
11476
11526
|
DTOWorkspaceIntegrationGetGitObjectsInput,
|
|
11477
11527
|
DTOWorkspaceIntegrationOauthInput,
|
|
11478
11528
|
DTOWorkspaceIntegrationPATInput,
|
|
11479
11529
|
DTOWorkspaceInvitationInput,
|
|
11480
11530
|
DTOWorkspaceInvitationsListInput,
|
|
11531
|
+
DTOWorkspaceResponse,
|
|
11481
11532
|
DTOWorkspaceRole,
|
|
11482
11533
|
DesignSystemsEndpoint,
|
|
11483
11534
|
DocumentationHierarchySettings,
|
|
@@ -11496,6 +11547,7 @@ export {
|
|
|
11496
11547
|
VersionRoomBaseYDoc,
|
|
11497
11548
|
VersionSQSPayload,
|
|
11498
11549
|
WorkspaceConfigurationPayload,
|
|
11550
|
+
WorkspaceMembersEndpoint,
|
|
11499
11551
|
WorkspacesEndpoint,
|
|
11500
11552
|
applyPrivacyConfigurationToNestedItems,
|
|
11501
11553
|
blockToProsemirrorNode,
|