@supernova-studio/client 1.96.5 → 1.96.7
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 +101428 -143199
- package/dist/index.d.ts +101428 -143199
- package/dist/index.js +489 -99
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5607 -5217
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -9
- package/src/api/client.ts +62 -0
- package/src/api/conversion/analytics/index.ts +3 -0
- package/src/api/conversion/analytics/page-visits-to-comparison-dto.ts +65 -0
- package/src/api/conversion/analytics/page-visits-to-dto.ts +68 -0
- package/src/api/conversion/analytics/page-visits-to-heatmap-dto.ts +49 -0
- package/src/api/conversion/documentation/documentation-group-v1-to-dto.ts +114 -0
- package/src/api/conversion/documentation/documentation-group-v2-to-dto.ts +91 -0
- package/src/api/conversion/documentation/documentation-item-configuration-v1-to-dto.ts +52 -0
- package/src/api/conversion/documentation/documentation-item-configuration-v2-to-dto.ts +34 -0
- package/src/api/conversion/documentation/documentation-page-to-dto-utils.ts +134 -0
- package/src/api/conversion/documentation/documentation-page-v1-to-dto.ts +69 -0
- package/src/api/conversion/documentation/documentation-page-v2-to-dto.ts +84 -0
- package/src/api/conversion/documentation/documentation-settings-to-dto.ts +14 -0
- package/src/api/conversion/documentation/index.ts +8 -0
- package/src/api/conversion/export/index.ts +1 -0
- package/src/api/conversion/export/pipeline.ts +27 -0
- package/src/api/conversion/index.ts +4 -0
- package/src/api/conversion/integrations/git.ts +37 -0
- package/src/api/conversion/integrations/index.ts +2 -0
- package/src/api/conversion/integrations/integration.ts +37 -0
- package/src/api/dto/access-tokens/access-token.ts +45 -0
- package/src/api/dto/access-tokens/index.ts +1 -0
- package/src/api/dto/aux/color.ts +7 -0
- package/src/api/dto/aux/index.ts +4 -0
- package/src/api/dto/aux/meta.ts +8 -0
- package/src/api/dto/aux/object-metadata.ts +29 -0
- package/src/api/dto/aux/pagination.ts +8 -0
- package/src/api/dto/bff/app-bootstrap-data.ts +20 -0
- package/src/api/dto/bff/index.ts +1 -0
- package/src/api/dto/collections/index.ts +1 -0
- package/src/api/dto/collections/token-collection.ts +32 -0
- package/src/api/dto/design-systems/brand.ts +44 -0
- package/src/api/dto/design-systems/code-component-usage.ts +52 -0
- package/src/api/dto/design-systems/code-component.ts +101 -0
- package/src/api/dto/design-systems/code-history.ts +43 -0
- package/src/api/dto/design-systems/code-scan.ts +29 -0
- package/src/api/dto/design-systems/code-snapshots.ts +46 -0
- package/src/api/dto/design-systems/component.ts +40 -0
- package/src/api/dto/design-systems/contact.ts +11 -0
- package/src/api/dto/design-systems/data-source.ts +216 -0
- package/src/api/dto/design-systems/design-system.ts +75 -0
- package/src/api/dto/design-systems/documentation-search.ts +31 -0
- package/src/api/dto/design-systems/elements-diff.ts +14 -0
- package/src/api/dto/design-systems/figma-variables.ts +122 -0
- package/src/api/dto/design-systems/file.ts +71 -0
- package/src/api/dto/design-systems/import-job.ts +62 -0
- package/src/api/dto/design-systems/index.ts +24 -0
- package/src/api/dto/design-systems/members.ts +52 -0
- package/src/api/dto/design-systems/redirects.ts +33 -0
- package/src/api/dto/design-systems/role.ts +11 -0
- package/src/api/dto/design-systems/stats.ts +20 -0
- package/src/api/dto/design-systems/storybook.ts +45 -0
- package/src/api/dto/design-systems/user-design-systems.ts +10 -0
- package/src/api/dto/design-systems/version-room.ts +12 -0
- package/src/api/dto/design-systems/version.ts +56 -0
- package/src/api/dto/design-systems/view.ts +45 -0
- package/src/api/dto/design-tokens/design-token.ts +78 -0
- package/src/api/dto/design-tokens/index.ts +1 -0
- package/src/api/dto/documentation/analytics-v2.ts +80 -0
- package/src/api/dto/documentation/analytics.ts +32 -0
- package/src/api/dto/documentation/anchor.ts +15 -0
- package/src/api/dto/documentation/approvals.ts +21 -0
- package/src/api/dto/documentation/block-definition.ts +28 -0
- package/src/api/dto/documentation/block.ts +6 -0
- package/src/api/dto/documentation/documentation-page-snapshot.ts +18 -0
- package/src/api/dto/documentation/documentation.ts +34 -0
- package/src/api/dto/documentation/index.ts +11 -0
- package/src/api/dto/documentation/link-preview.ts +23 -0
- package/src/api/dto/documentation/publish.ts +23 -0
- package/src/api/dto/documentation/room.ts +12 -0
- package/src/api/dto/elements/components/figma-component-group.ts +19 -0
- package/src/api/dto/elements/components/figma-component.ts +56 -0
- package/src/api/dto/elements/components/index.ts +2 -0
- package/src/api/dto/elements/documentation/configuration.ts +20 -0
- package/src/api/dto/elements/documentation/draft-state.ts +37 -0
- package/src/api/dto/elements/documentation/group-action.ts +108 -0
- package/src/api/dto/elements/documentation/group-v1.ts +35 -0
- package/src/api/dto/elements/documentation/group-v2.ts +117 -0
- package/src/api/dto/elements/documentation/hierarchy.ts +25 -0
- package/src/api/dto/elements/documentation/index.ts +16 -0
- package/src/api/dto/elements/documentation/item-configuration-v1.ts +24 -0
- package/src/api/dto/elements/documentation/item-configuration-v2.ts +14 -0
- package/src/api/dto/elements/documentation/metadata.ts +8 -0
- package/src/api/dto/elements/documentation/page-actions-v2.ts +138 -0
- package/src/api/dto/elements/documentation/page-content.ts +15 -0
- package/src/api/dto/elements/documentation/page-dependencies.ts +30 -0
- package/src/api/dto/elements/documentation/page-v1.ts +21 -0
- package/src/api/dto/elements/documentation/page-v2.ts +132 -0
- package/src/api/dto/elements/documentation/settings.ts +9 -0
- package/src/api/dto/elements/documentation/structure.ts +37 -0
- package/src/api/dto/elements/elements-action-v2.ts +125 -0
- package/src/api/dto/elements/figma-nodes/figma-node-structure.ts +27 -0
- package/src/api/dto/elements/figma-nodes/figma-node-v1.ts +32 -0
- package/src/api/dto/elements/figma-nodes/figma-node-v2.ts +32 -0
- package/src/api/dto/elements/figma-nodes/figma-node.ts +103 -0
- package/src/api/dto/elements/figma-nodes/index.ts +5 -0
- package/src/api/dto/elements/figma-nodes/node-actions-v2.ts +25 -0
- package/src/api/dto/elements/frame-node-structures/frame-node-structure.ts +17 -0
- package/src/api/dto/elements/frame-node-structures/index.ts +1 -0
- package/src/api/dto/elements/get-elements-v2.ts +27 -0
- package/src/api/dto/elements/index.ts +7 -0
- package/src/api/dto/elements/properties/index.ts +2 -0
- package/src/api/dto/elements/properties/property-definitions.ts +75 -0
- package/src/api/dto/elements/properties/property-values.ts +50 -0
- package/src/api/dto/events/forge-project.ts +51 -0
- package/src/api/dto/events/index.ts +2 -0
- package/src/api/dto/events/workspace.ts +81 -0
- package/src/api/dto/export/exporter-property.ts +114 -0
- package/src/api/dto/export/exporter.ts +115 -0
- package/src/api/dto/export/filter.ts +20 -0
- package/src/api/dto/export/index.ts +5 -0
- package/src/api/dto/export/job.ts +114 -0
- package/src/api/dto/export/pipeline.ts +60 -0
- package/src/api/dto/figma-components/assets/download.ts +30 -0
- package/src/api/dto/figma-components/assets/index.ts +1 -0
- package/src/api/dto/figma-components/index.ts +1 -0
- package/src/api/dto/figma-exporter/figma-node.ts +11 -0
- package/src/api/dto/figma-exporter/index.ts +1 -0
- package/src/api/dto/files/files.ts +94 -0
- package/src/api/dto/files/index.ts +1 -0
- package/src/api/dto/forge/agent.ts +38 -0
- package/src/api/dto/forge/artifact.ts +94 -0
- package/src/api/dto/forge/feature-messages.ts +551 -0
- package/src/api/dto/forge/feature-room.ts +12 -0
- package/src/api/dto/forge/figma-node.ts +117 -0
- package/src/api/dto/forge/index.ts +28 -0
- package/src/api/dto/forge/iteration-message-old.ts +43 -0
- package/src/api/dto/forge/knowledge-item.ts +67 -0
- package/src/api/dto/forge/memory.ts +67 -0
- package/src/api/dto/forge/participant.ts +44 -0
- package/src/api/dto/forge/project-action.ts +123 -0
- package/src/api/dto/forge/project-artifact-room.ts +12 -0
- package/src/api/dto/forge/project-artifact.ts +85 -0
- package/src/api/dto/forge/project-context-feedback.ts +141 -0
- package/src/api/dto/forge/project-context-override.ts +41 -0
- package/src/api/dto/forge/project-context-scope.ts +23 -0
- package/src/api/dto/forge/project-context-v2.ts +228 -0
- package/src/api/dto/forge/project-context.ts +72 -0
- package/src/api/dto/forge/project-feature.ts +86 -0
- package/src/api/dto/forge/project-figma-node.ts +9 -0
- package/src/api/dto/forge/project-file.ts +48 -0
- package/src/api/dto/forge/project-invitation.ts +46 -0
- package/src/api/dto/forge/project-iteration-old.ts +54 -0
- package/src/api/dto/forge/project-member.ts +67 -0
- package/src/api/dto/forge/project-room.ts +12 -0
- package/src/api/dto/forge/project-section.ts +37 -0
- package/src/api/dto/forge/project.ts +105 -0
- package/src/api/dto/forge/relation.ts +34 -0
- package/src/api/dto/forge/threads.ts +153 -0
- package/src/api/dto/index.ts +25 -0
- package/src/api/dto/liveblocks/auth-response.ts +7 -0
- package/src/api/dto/liveblocks/index.ts +1 -0
- package/src/api/dto/mcp/index.ts +1 -0
- package/src/api/dto/mcp/stream.ts +17 -0
- package/src/api/dto/notifications/index.ts +2 -0
- package/src/api/dto/notifications/notifications.ts +65 -0
- package/src/api/dto/notifications/settings.ts +10 -0
- package/src/api/dto/portal/index.ts +1 -0
- package/src/api/dto/portal/portal-settings.ts +45 -0
- package/src/api/dto/sandboxes/index.ts +1 -0
- package/src/api/dto/sandboxes/template.ts +143 -0
- package/src/api/dto/storybook-sites/index.ts +1 -0
- package/src/api/dto/storybook-sites/storybook-sites.ts +60 -0
- package/src/api/dto/themes/index.ts +2 -0
- package/src/api/dto/themes/override.ts +27 -0
- package/src/api/dto/themes/theme.ts +53 -0
- package/src/api/dto/threads/index.ts +1 -0
- package/src/api/dto/threads/threads.ts +280 -0
- package/src/api/dto/trail-events/index.ts +1 -0
- package/src/api/dto/trail-events/trail-events.ts +172 -0
- package/src/api/dto/users/authenticated-user.ts +92 -0
- package/src/api/dto/users/index.ts +2 -0
- package/src/api/dto/users/user.ts +27 -0
- package/src/api/dto/workspaces/billing.ts +156 -0
- package/src/api/dto/workspaces/enums.ts +13 -0
- package/src/api/dto/workspaces/git.ts +32 -0
- package/src/api/dto/workspaces/index.ts +15 -0
- package/src/api/dto/workspaces/integrations.ts +34 -0
- package/src/api/dto/workspaces/invitations.ts +47 -0
- package/src/api/dto/workspaces/ip-whitelist.ts +33 -0
- package/src/api/dto/workspaces/knowledge-items-search.ts +37 -0
- package/src/api/dto/workspaces/login-screen.ts +42 -0
- package/src/api/dto/workspaces/membership.ts +55 -0
- package/src/api/dto/workspaces/npm-registry.ts +62 -0
- package/src/api/dto/workspaces/products.ts +45 -0
- package/src/api/dto/workspaces/subscription.ts +170 -0
- package/src/api/dto/workspaces/transfer-ownership.ts +7 -0
- package/src/api/dto/workspaces/untyped-data.ts +35 -0
- package/src/api/dto/workspaces/workspace.ts +49 -0
- package/src/api/endpoints/auth-tokens.ts +28 -0
- package/src/api/endpoints/codegen/codegen.ts +16 -0
- package/src/api/endpoints/codegen/ds-pipelines.ts +37 -0
- package/src/api/endpoints/codegen/exporters.ts +54 -0
- package/src/api/endpoints/codegen/index.ts +5 -0
- package/src/api/endpoints/codegen/jobs.ts +15 -0
- package/src/api/endpoints/codegen/pipelines.ts +55 -0
- package/src/api/endpoints/design-system/analytics.ts +14 -0
- package/src/api/endpoints/design-system/bff.ts +13 -0
- package/src/api/endpoints/design-system/code-snapshots.ts +47 -0
- package/src/api/endpoints/design-system/contact.ts +12 -0
- package/src/api/endpoints/design-system/design-systems.ts +90 -0
- package/src/api/endpoints/design-system/figma-node-structures.ts +20 -0
- package/src/api/endpoints/design-system/index.ts +11 -0
- package/src/api/endpoints/design-system/members.ts +24 -0
- package/src/api/endpoints/design-system/redirects.ts +46 -0
- package/src/api/endpoints/design-system/sources.ts +80 -0
- package/src/api/endpoints/design-system/storybook.ts +28 -0
- package/src/api/endpoints/design-system/versions/brands.ts +45 -0
- package/src/api/endpoints/design-system/versions/documentation.ts +107 -0
- package/src/api/endpoints/design-system/versions/ds-components.ts +30 -0
- package/src/api/endpoints/design-system/versions/elements-action.ts +65 -0
- package/src/api/endpoints/design-system/versions/elements.ts +27 -0
- package/src/api/endpoints/design-system/versions/figma-component-groups.ts +13 -0
- package/src/api/endpoints/design-system/versions/figma-components.ts +15 -0
- package/src/api/endpoints/design-system/versions/figma-frame-structures.ts +13 -0
- package/src/api/endpoints/design-system/versions/files.ts +43 -0
- package/src/api/endpoints/design-system/versions/import-jobs.ts +13 -0
- package/src/api/endpoints/design-system/versions/index.ts +19 -0
- package/src/api/endpoints/design-system/versions/overrides.ts +17 -0
- package/src/api/endpoints/design-system/versions/property-definitions.ts +43 -0
- package/src/api/endpoints/design-system/versions/property-values.ts +25 -0
- package/src/api/endpoints/design-system/versions/stats.ts +12 -0
- package/src/api/endpoints/design-system/versions/themes.ts +35 -0
- package/src/api/endpoints/design-system/versions/token-collections.ts +13 -0
- package/src/api/endpoints/design-system/versions/token-groups.ts +30 -0
- package/src/api/endpoints/design-system/versions/tokens.ts +29 -0
- package/src/api/endpoints/design-system/versions/versions.ts +90 -0
- package/src/api/endpoints/feedback.ts +60 -0
- package/src/api/endpoints/files.ts +25 -0
- package/src/api/endpoints/forge/agents.ts +54 -0
- package/src/api/endpoints/forge/artifacts.ts +54 -0
- package/src/api/endpoints/forge/documents.ts +18 -0
- package/src/api/endpoints/forge/feature-artifacts.ts +39 -0
- package/src/api/endpoints/forge/feature-iterations.ts +49 -0
- package/src/api/endpoints/forge/feature-messages.ts +68 -0
- package/src/api/endpoints/forge/features.ts +63 -0
- package/src/api/endpoints/forge/forge.ts +38 -0
- package/src/api/endpoints/forge/index.ts +16 -0
- package/src/api/endpoints/forge/iteration-tags.ts +13 -0
- package/src/api/endpoints/forge/memory.ts +41 -0
- package/src/api/endpoints/forge/project-contexts.ts +49 -0
- package/src/api/endpoints/forge/project-files.ts +41 -0
- package/src/api/endpoints/forge/project-invitations.ts +39 -0
- package/src/api/endpoints/forge/project-iterations.ts +65 -0
- package/src/api/endpoints/forge/project-members.ts +55 -0
- package/src/api/endpoints/forge/projects.ts +56 -0
- package/src/api/endpoints/index.ts +13 -0
- package/src/api/endpoints/liveblocks.ts +14 -0
- package/src/api/endpoints/mcp/index.ts +1 -0
- package/src/api/endpoints/mcp/streams.ts +21 -0
- package/src/api/endpoints/sandboxes/builds.ts +30 -0
- package/src/api/endpoints/sandboxes/index.ts +3 -0
- package/src/api/endpoints/sandboxes/sandboxes.ts +13 -0
- package/src/api/endpoints/sandboxes/templates.ts +16 -0
- package/src/api/endpoints/storybook-sites.ts +42 -0
- package/src/api/endpoints/threads.ts +38 -0
- package/src/api/endpoints/users.ts +26 -0
- package/src/api/endpoints/workspaces/billing.ts +24 -0
- package/src/api/endpoints/workspaces/chat-threads.ts +95 -0
- package/src/api/endpoints/workspaces/index.ts +9 -0
- package/src/api/endpoints/workspaces/integrations.ts +15 -0
- package/src/api/endpoints/workspaces/invites.ts +34 -0
- package/src/api/endpoints/workspaces/knowledge-items.ts +59 -0
- package/src/api/endpoints/workspaces/members.ts +31 -0
- package/src/api/endpoints/workspaces/npm-register.ts +20 -0
- package/src/api/endpoints/workspaces/subscription.ts +31 -0
- package/src/api/endpoints/workspaces/workspaces.ts +84 -0
- package/src/api/index.ts +6 -0
- package/src/api/payloads/design-systems/code-snapshots.ts +27 -0
- package/src/api/payloads/design-systems/index.ts +3 -0
- package/src/api/payloads/design-systems/update-design-system.ts +42 -0
- package/src/api/payloads/design-systems/version.ts +29 -0
- package/src/api/payloads/documentation/analytics.ts +36 -0
- package/src/api/payloads/documentation/block-definitions.ts +18 -0
- package/src/api/payloads/documentation/design-data-doc-diff.ts +7 -0
- package/src/api/payloads/documentation/index.ts +3 -0
- package/src/api/payloads/export/index.ts +1 -0
- package/src/api/payloads/export/pipeline.ts +111 -0
- package/src/api/payloads/index.ts +6 -0
- package/src/api/payloads/liveblocks/auth.ts +7 -0
- package/src/api/payloads/liveblocks/index.ts +1 -0
- package/src/api/payloads/users/index.ts +1 -0
- package/src/api/payloads/users/notifications/index.ts +1 -0
- package/src/api/payloads/users/notifications/notification-settings.ts +17 -0
- package/src/api/payloads/workspaces/index.ts +2 -0
- package/src/api/payloads/workspaces/workspace-configuration.ts +62 -0
- package/src/api/payloads/workspaces/workspace-integrations.ts +35 -0
- package/src/api/transport/index.ts +2 -0
- package/src/api/transport/request-executor-error.ts +60 -0
- package/src/api/transport/request-executor.ts +94 -0
- package/src/events/design-system.ts +21 -0
- package/src/events/event.ts +6 -0
- package/src/events/index.ts +2 -0
- package/src/index.ts +5 -0
- package/src/sync/docs-local-action-executor.ts +412 -0
- package/src/sync/docs-structure-repo.ts +283 -0
- package/src/sync/index.ts +5 -0
- package/src/sync/project-content-repo.ts +215 -0
- package/src/sync/project-local-action-executor.ts +415 -0
- package/src/sync/types.ts +37 -0
- package/src/utils/figma.ts +72 -0
- package/src/utils/hash.ts +62 -0
- package/src/utils/index.ts +4 -0
- package/src/utils/query.ts +41 -0
- package/src/utils/redirect-validation.ts +76 -0
- package/src/yjs/design-system-content/documentation-hierarchy.ts +35 -0
- package/src/yjs/design-system-content/index.ts +2 -0
- package/src/yjs/design-system-content/item-configuration.ts +62 -0
- package/src/yjs/docs-editor/blocks-to-prosemirror.ts +764 -0
- package/src/yjs/docs-editor/index.ts +7 -0
- package/src/yjs/docs-editor/list-tree-builder.ts +127 -0
- package/src/yjs/docs-editor/mock.ts +2271 -0
- package/src/yjs/docs-editor/model/block.ts +8 -0
- package/src/yjs/docs-editor/model/index.ts +2 -0
- package/src/yjs/docs-editor/model/page.ts +8 -0
- package/src/yjs/docs-editor/prosemirror/index.ts +3 -0
- package/src/yjs/docs-editor/prosemirror/inner-editor-schema.ts +145 -0
- package/src/yjs/docs-editor/prosemirror/main-editor-schema.ts +577 -0
- package/src/yjs/docs-editor/prosemirror/types.ts +19 -0
- package/src/yjs/docs-editor/prosemirror-to-blocks.ts +986 -0
- package/src/yjs/docs-editor/utils.ts +115 -0
- package/src/yjs/feature-room/backend.ts +36 -0
- package/src/yjs/feature-room/base.ts +109 -0
- package/src/yjs/feature-room/frontend.ts +53 -0
- package/src/yjs/feature-room/index.ts +3 -0
- package/src/yjs/forge-project-room/backend.ts +59 -0
- package/src/yjs/forge-project-room/base.ts +190 -0
- package/src/yjs/forge-project-room/index.ts +2 -0
- package/src/yjs/index.ts +7 -0
- package/src/yjs/thread-room/backend.ts +32 -0
- package/src/yjs/thread-room/base.ts +71 -0
- package/src/yjs/thread-room/frontend.ts +39 -0
- package/src/yjs/thread-room/index.ts +3 -0
- package/src/yjs/utils/index.ts +1 -0
- package/src/yjs/utils/key-value-storage.ts +57 -0
- package/src/yjs/version-room/backend.ts +101 -0
- package/src/yjs/version-room/base.ts +323 -0
- package/src/yjs/version-room/compute-dto.ts +387 -0
- package/src/yjs/version-room/frontend.ts +76 -0
- package/src/yjs/version-room/index.ts +6 -0
- package/src/yjs/version-room/types.ts +31 -0
- package/src/yjs/version-room/utils.ts +109 -0
package/dist/index.js
CHANGED
|
@@ -984,14 +984,6 @@ var ContentLoaderPayload = _zod.z.object({
|
|
|
984
984
|
})
|
|
985
985
|
);
|
|
986
986
|
|
|
987
|
-
// ../model/src/utils/interop-pulsar-error.ts
|
|
988
|
-
|
|
989
|
-
var GitInteropPulsarError = _zod.z.object({
|
|
990
|
-
errorType: _zod.z.string(),
|
|
991
|
-
errorMessage: _zod.z.string(),
|
|
992
|
-
trace: _zod.z.array(_zod.z.string())
|
|
993
|
-
});
|
|
994
|
-
|
|
995
987
|
// ../model/src/utils/short-persistent-id.ts
|
|
996
988
|
var shortPersistentIdLength = 8;
|
|
997
989
|
var alphanumeric = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
|
|
@@ -5118,6 +5110,92 @@ var ForgeProjectArtifact = _zod.z.object({
|
|
|
5118
5110
|
isArchived: _zod.z.boolean().default(false)
|
|
5119
5111
|
});
|
|
5120
5112
|
|
|
5113
|
+
// ../model/src/forge/project-context-scope.ts
|
|
5114
|
+
|
|
5115
|
+
var DATASET_ENTITY_TYPES = [
|
|
5116
|
+
"tokens",
|
|
5117
|
+
"tokenThemes",
|
|
5118
|
+
"tokenCollections",
|
|
5119
|
+
"components",
|
|
5120
|
+
"designComponents",
|
|
5121
|
+
"assets",
|
|
5122
|
+
"documentation",
|
|
5123
|
+
"contexts",
|
|
5124
|
+
"skills",
|
|
5125
|
+
"files",
|
|
5126
|
+
"codeComponents"
|
|
5127
|
+
];
|
|
5128
|
+
var DatasetEntityType = _zod.z.enum(DATASET_ENTITY_TYPES);
|
|
5129
|
+
var DATASET_LOGICAL_OPERATORS = ["and", "or"];
|
|
5130
|
+
var DatasetLogicalOperator = _zod.z.enum(DATASET_LOGICAL_OPERATORS);
|
|
5131
|
+
var DATASET_PROPERTY_OPERATORS = [
|
|
5132
|
+
"is",
|
|
5133
|
+
"isNot",
|
|
5134
|
+
"contains",
|
|
5135
|
+
"doesNotContain",
|
|
5136
|
+
"startsWith",
|
|
5137
|
+
"endsWith",
|
|
5138
|
+
"isEmpty",
|
|
5139
|
+
"isNotEmpty",
|
|
5140
|
+
"greaterThan",
|
|
5141
|
+
"greaterThanOrEqual",
|
|
5142
|
+
"lessThan",
|
|
5143
|
+
"lessThanOrEqual",
|
|
5144
|
+
"in",
|
|
5145
|
+
"notIn"
|
|
5146
|
+
];
|
|
5147
|
+
var DatasetPropertyOperator = _zod.z.enum(DATASET_PROPERTY_OPERATORS);
|
|
5148
|
+
var DatasetPrimitiveValue = _zod.z.union([_zod.z.string(), _zod.z.number(), _zod.z.boolean(), _zod.z.null()]);
|
|
5149
|
+
var DatasetConditionValue = _zod.z.union([
|
|
5150
|
+
DatasetPrimitiveValue,
|
|
5151
|
+
_zod.z.array(DatasetPrimitiveValue)
|
|
5152
|
+
]);
|
|
5153
|
+
var DatasetIncludeAllCondition = _zod.z.object({
|
|
5154
|
+
type: _zod.z.literal("includeAll")
|
|
5155
|
+
});
|
|
5156
|
+
var DatasetIncludeIdsCondition = _zod.z.object({
|
|
5157
|
+
type: _zod.z.literal("includeIds"),
|
|
5158
|
+
ids: _zod.z.array(_zod.z.string())
|
|
5159
|
+
});
|
|
5160
|
+
var DatasetExcludeIdsCondition = _zod.z.object({
|
|
5161
|
+
type: _zod.z.literal("excludeIds"),
|
|
5162
|
+
ids: _zod.z.array(_zod.z.string())
|
|
5163
|
+
});
|
|
5164
|
+
var DatasetPropertyCondition = _zod.z.object({
|
|
5165
|
+
type: _zod.z.literal("property"),
|
|
5166
|
+
property: _zod.z.string(),
|
|
5167
|
+
operator: DatasetPropertyOperator,
|
|
5168
|
+
value: DatasetConditionValue.optional()
|
|
5169
|
+
});
|
|
5170
|
+
var DatasetCondition = _zod.z.discriminatedUnion("type", [
|
|
5171
|
+
DatasetIncludeAllCondition,
|
|
5172
|
+
DatasetIncludeIdsCondition,
|
|
5173
|
+
DatasetExcludeIdsCondition,
|
|
5174
|
+
DatasetPropertyCondition
|
|
5175
|
+
]);
|
|
5176
|
+
var DatasetFilterGroup = _zod.z.lazy(
|
|
5177
|
+
() => _zod.z.object({
|
|
5178
|
+
type: _zod.z.literal("group"),
|
|
5179
|
+
operator: DatasetLogicalOperator,
|
|
5180
|
+
children: _zod.z.array(DatasetFilterNode)
|
|
5181
|
+
})
|
|
5182
|
+
);
|
|
5183
|
+
var DatasetFilterNode = _zod.z.lazy(
|
|
5184
|
+
() => _zod.z.union([DatasetCondition, DatasetFilterGroup])
|
|
5185
|
+
);
|
|
5186
|
+
var DatasetSelections = _zod.z.object(
|
|
5187
|
+
Object.fromEntries(
|
|
5188
|
+
DATASET_ENTITY_TYPES.map((entityType) => [entityType, DatasetFilterGroup.optional()])
|
|
5189
|
+
)
|
|
5190
|
+
);
|
|
5191
|
+
var ForgeProjectContextScope = _zod.z.object({
|
|
5192
|
+
designSystemId: _zod.z.string().nullish(),
|
|
5193
|
+
selections: DatasetSelections.optional()
|
|
5194
|
+
});
|
|
5195
|
+
var FORGE_PROJECT_CONTEXT_MCP_URL_SLUG_MAX_LENGTH = 64;
|
|
5196
|
+
var MCP_URL_SLUG_PATTERN = /^[a-z0-9](?:[a-z0-9]|-(?!-))*[a-z0-9]$|^[a-z0-9]$/;
|
|
5197
|
+
var ForgeProjectContextMcpUrlSlug = _zod.z.string().min(1).max(FORGE_PROJECT_CONTEXT_MCP_URL_SLUG_MAX_LENGTH).regex(MCP_URL_SLUG_PATTERN, "mcpUrlSlug must be lowercase alphanumeric with single hyphens.");
|
|
5198
|
+
|
|
5121
5199
|
// ../model/src/forge/project-feature.ts
|
|
5122
5200
|
|
|
5123
5201
|
var ProjectFeatureStatus = _zod.z.enum(["Draft", "ReadyForDevelopment"]);
|
|
@@ -5305,14 +5383,6 @@ var WorkspaceConfigurationUpdate = _zod.z.object({
|
|
|
5305
5383
|
aiCustomInstruction: _zod.z.string().optional()
|
|
5306
5384
|
});
|
|
5307
5385
|
|
|
5308
|
-
// ../model/src/workspace/workspace-context.ts
|
|
5309
|
-
|
|
5310
|
-
var WorkspaceContext = _zod.z.object({
|
|
5311
|
-
workspaceId: _zod.z.string(),
|
|
5312
|
-
product: ProductCodeSchema,
|
|
5313
|
-
publicDesignSystem: _zod.z.boolean().optional()
|
|
5314
|
-
});
|
|
5315
|
-
|
|
5316
5386
|
// ../model/src/workspace/workspace-create.ts
|
|
5317
5387
|
|
|
5318
5388
|
var WORKSPACE_NAME_MIN_LENGTH = 2;
|
|
@@ -5531,6 +5601,8 @@ var DesignSystem = _zod.z.object({
|
|
|
5531
5601
|
accessMode: DesignSystemAccessMode,
|
|
5532
5602
|
membersGenerated: _zod.z.boolean(),
|
|
5533
5603
|
sharedDraftId: _zod.z.string().optional(),
|
|
5604
|
+
iconFileId: _zod.z.string().optional(),
|
|
5605
|
+
iconFilePath: _zod.z.string().optional(),
|
|
5534
5606
|
createdAt: _zod.z.coerce.date(),
|
|
5535
5607
|
updatedAt: _zod.z.coerce.date()
|
|
5536
5608
|
});
|
|
@@ -7277,6 +7349,8 @@ var DTOCodeComponentDocFile = _zod2.default.object({
|
|
|
7277
7349
|
filePath: _zod2.default.string()
|
|
7278
7350
|
});
|
|
7279
7351
|
var DTOCodeComponent = _zod2.default.object({
|
|
7352
|
+
/** Stable identifier for the code component (Prisma row id, stringified). */
|
|
7353
|
+
id: _zod2.default.string(),
|
|
7280
7354
|
/** Name of the component in code */
|
|
7281
7355
|
name: _zod2.default.string(),
|
|
7282
7356
|
/** Name of the package (from package.json) from where the component was imported */
|
|
@@ -7299,6 +7373,32 @@ var DTOCodeComponent = _zod2.default.object({
|
|
|
7299
7373
|
var DTOCodeComponentListResponse = _zod2.default.object({
|
|
7300
7374
|
components: DTOCodeComponent.array()
|
|
7301
7375
|
});
|
|
7376
|
+
var DTOCodeComponentReference = _zod2.default.object({
|
|
7377
|
+
/** Name of the package (from package.json) the component is imported from */
|
|
7378
|
+
packageName: _zod2.default.string(),
|
|
7379
|
+
/** Name of the component in code */
|
|
7380
|
+
componentName: _zod2.default.string()
|
|
7381
|
+
});
|
|
7382
|
+
var DTOCodeComponentMarkdownQuery = _zod2.default.object({
|
|
7383
|
+
/** Components to fetch markdown for */
|
|
7384
|
+
components: DTOCodeComponentReference.array().min(1).max(20)
|
|
7385
|
+
});
|
|
7386
|
+
var DTOCodeComponentMarkdown = _zod2.default.object({
|
|
7387
|
+
/** Name of the component in code */
|
|
7388
|
+
name: _zod2.default.string(),
|
|
7389
|
+
/** Stable key identifying the component within its package */
|
|
7390
|
+
componentKey: _zod2.default.string(),
|
|
7391
|
+
/** Name of the package (from package.json) the component is imported from */
|
|
7392
|
+
packageName: _zod2.default.string(),
|
|
7393
|
+
/** File path of the component, relative to the repository root */
|
|
7394
|
+
componentPath: _zod2.default.string(),
|
|
7395
|
+
/** AI-generated markdown describing the component's API and usage */
|
|
7396
|
+
markdown: _zod2.default.string()
|
|
7397
|
+
});
|
|
7398
|
+
var DTOCodeComponentMarkdownResponse = _zod2.default.object({
|
|
7399
|
+
/** Components for which markdown was found */
|
|
7400
|
+
components: DTOCodeComponentMarkdown.array()
|
|
7401
|
+
});
|
|
7302
7402
|
|
|
7303
7403
|
// src/api/dto/design-systems/code-history.ts
|
|
7304
7404
|
|
|
@@ -7658,6 +7758,49 @@ var DTOFVPMigrationsCollectionKeysPayload = _zod.z.object({
|
|
|
7658
7758
|
// src/api/dto/design-systems/design-system.ts
|
|
7659
7759
|
|
|
7660
7760
|
|
|
7761
|
+
// src/api/dto/files/files.ts
|
|
7762
|
+
|
|
7763
|
+
var DTOFileFigmaRenderMode = FileFigmaRenderMode;
|
|
7764
|
+
var DTOFileSourceUpload = FileSourceUpload;
|
|
7765
|
+
var DTOFileSourceFigma = FileSourceFigma;
|
|
7766
|
+
var DTOFileSource = FileSource;
|
|
7767
|
+
var DTOFile = File;
|
|
7768
|
+
var DTOFileReference = FileReference;
|
|
7769
|
+
var DTOFileUploadOwnerUser = _zod2.default.object({
|
|
7770
|
+
ownerType: _zod2.default.literal("User")
|
|
7771
|
+
});
|
|
7772
|
+
var DTOFileUploadOwnerWorkspace = _zod2.default.object({
|
|
7773
|
+
ownerType: _zod2.default.literal("Workspace"),
|
|
7774
|
+
workspaceId: _zod2.default.string()
|
|
7775
|
+
});
|
|
7776
|
+
var DTOFileUploadOwner = _zod2.default.discriminatedUnion("ownerType", [DTOFileUploadOwnerUser, DTOFileUploadOwnerWorkspace]);
|
|
7777
|
+
var DTOFileUploadInput = _zod2.default.object({
|
|
7778
|
+
size: _zod2.default.number(),
|
|
7779
|
+
name: _zod2.default.string(),
|
|
7780
|
+
checksum: _zod2.default.string()
|
|
7781
|
+
});
|
|
7782
|
+
var DTOFileUploadBulkPayload = _zod2.default.object({
|
|
7783
|
+
files: DTOFileUploadInput.array()
|
|
7784
|
+
}).and(DTOFileUploadOwner);
|
|
7785
|
+
var DTOFileFinalizeBulkPayload = _zod2.default.object({
|
|
7786
|
+
fileIds: _zod2.default.string().array()
|
|
7787
|
+
}).and(DTOFileUploadOwner);
|
|
7788
|
+
var DTOFileListResponse = _zod2.default.object({
|
|
7789
|
+
files: DTOFile.array()
|
|
7790
|
+
});
|
|
7791
|
+
var DTOFileUploadBulkResponse = _zod2.default.object({
|
|
7792
|
+
files: _zod2.default.array(DTOFile),
|
|
7793
|
+
uploadUrls: _zod2.default.array(
|
|
7794
|
+
_zod2.default.object({
|
|
7795
|
+
fileId: _zod2.default.string(),
|
|
7796
|
+
uploadUrl: _zod2.default.string()
|
|
7797
|
+
})
|
|
7798
|
+
)
|
|
7799
|
+
});
|
|
7800
|
+
var DTOFileFinalizeBulkResponse = _zod2.default.object({
|
|
7801
|
+
files: _zod2.default.array(DTOFile)
|
|
7802
|
+
});
|
|
7803
|
+
|
|
7661
7804
|
// src/api/dto/design-systems/members.ts
|
|
7662
7805
|
|
|
7663
7806
|
|
|
@@ -7703,13 +7846,15 @@ var DTODesignSystem = DesignSystem.omit({
|
|
|
7703
7846
|
name: true,
|
|
7704
7847
|
description: true,
|
|
7705
7848
|
docExporterId: true,
|
|
7706
|
-
sharedDraftId: true
|
|
7849
|
+
sharedDraftId: true,
|
|
7850
|
+
iconFilePath: true
|
|
7707
7851
|
}).extend({
|
|
7708
7852
|
meta: ObjectMeta,
|
|
7709
7853
|
docExporterId: _zod.z.string(),
|
|
7710
7854
|
sources: _zod.z.array(_zod.z.any()),
|
|
7711
7855
|
isPublic: _zod.z.literal(true),
|
|
7712
7856
|
sharedDraftId: _zod.z.string(),
|
|
7857
|
+
icon: DTOFileReference.optional(),
|
|
7713
7858
|
/**
|
|
7714
7859
|
* Whether or not user who is requesting the design system
|
|
7715
7860
|
* has access to the design system's contents.
|
|
@@ -7737,6 +7882,7 @@ var DTODesignSystemCreateInput = _zod.z.object({
|
|
|
7737
7882
|
name: _zod.z.string().min(2).max(64).optional(),
|
|
7738
7883
|
description: _zod.z.string().max(1024).optional(),
|
|
7739
7884
|
accessMode: DesignSystemAccessMode.optional(),
|
|
7885
|
+
iconFileId: _zod.z.string().optional(),
|
|
7740
7886
|
invites: DTODesignSystemMembersUpdatePayload.pick({
|
|
7741
7887
|
usersToInvite: true,
|
|
7742
7888
|
invitesToInvite: true,
|
|
@@ -7744,6 +7890,30 @@ var DTODesignSystemCreateInput = _zod.z.object({
|
|
|
7744
7890
|
}).optional()
|
|
7745
7891
|
});
|
|
7746
7892
|
|
|
7893
|
+
// src/api/dto/design-systems/documentation-search.ts
|
|
7894
|
+
|
|
7895
|
+
var DTODocumentationSearchIndexResponse = _zod.z.object({
|
|
7896
|
+
indexedPages: _zod.z.number(),
|
|
7897
|
+
totalPages: _zod.z.number(),
|
|
7898
|
+
errors: _zod.z.number()
|
|
7899
|
+
});
|
|
7900
|
+
var DTODocumentationSearchQuery = _zod.z.object({
|
|
7901
|
+
query: _zod.z.string().min(1).max(1e3),
|
|
7902
|
+
mode: _zod.z.enum(["full-text", "vector", "hybrid"]).optional().default("hybrid"),
|
|
7903
|
+
limit: _zod.z.number().int().min(1).max(50).optional().default(10)
|
|
7904
|
+
});
|
|
7905
|
+
var DTODocumentationSearchResult = _zod.z.object({
|
|
7906
|
+
pageId: _zod.z.string(),
|
|
7907
|
+
title: _zod.z.string(),
|
|
7908
|
+
excerpt: _zod.z.string(),
|
|
7909
|
+
vectorScore: _zod.z.number().nullable(),
|
|
7910
|
+
fullTextScore: _zod.z.number().nullable(),
|
|
7911
|
+
reciprocalRankFusionScore: _zod.z.number()
|
|
7912
|
+
});
|
|
7913
|
+
var DTODocumentationSearchResponse = _zod.z.object({
|
|
7914
|
+
results: _zod.z.array(DTODocumentationSearchResult)
|
|
7915
|
+
});
|
|
7916
|
+
|
|
7747
7917
|
// src/api/dto/design-systems/elements-diff.ts
|
|
7748
7918
|
|
|
7749
7919
|
var DTODiffCountBase = _zod.z.object({
|
|
@@ -8245,6 +8415,34 @@ var DTOIPWhitelistResponse = _zod2.default.object({
|
|
|
8245
8415
|
ipWhitelist: DTOIPWhitelist
|
|
8246
8416
|
});
|
|
8247
8417
|
|
|
8418
|
+
// src/api/dto/workspaces/knowledge-items-search.ts
|
|
8419
|
+
|
|
8420
|
+
var DTOKnowledgeItemSearchIndexResponse = _zod.z.object({
|
|
8421
|
+
indexedItems: _zod.z.number(),
|
|
8422
|
+
totalItems: _zod.z.number(),
|
|
8423
|
+
skippedItems: _zod.z.number(),
|
|
8424
|
+
errors: _zod.z.number()
|
|
8425
|
+
});
|
|
8426
|
+
var DTOKnowledgeItemSearchKind = _zod.z.enum(["file", "skill"]);
|
|
8427
|
+
var DTOKnowledgeItemSearchQuery = _zod.z.object({
|
|
8428
|
+
query: _zod.z.string().min(1).max(1e3),
|
|
8429
|
+
mode: _zod.z.enum(["full-text", "vector", "hybrid"]).optional().default("hybrid"),
|
|
8430
|
+
limit: _zod.z.number().int().min(1).max(50).optional().default(10),
|
|
8431
|
+
kinds: _zod.z.array(DTOKnowledgeItemSearchKind).optional()
|
|
8432
|
+
});
|
|
8433
|
+
var DTOKnowledgeItemSearchResult = _zod.z.object({
|
|
8434
|
+
knowledgeItemId: _zod.z.string(),
|
|
8435
|
+
kind: DTOKnowledgeItemSearchKind,
|
|
8436
|
+
path: _zod.z.string(),
|
|
8437
|
+
excerpt: _zod.z.string(),
|
|
8438
|
+
vectorScore: _zod.z.number().nullable(),
|
|
8439
|
+
fullTextScore: _zod.z.number().nullable(),
|
|
8440
|
+
reciprocalRankFusionScore: _zod.z.number()
|
|
8441
|
+
});
|
|
8442
|
+
var DTOKnowledgeItemSearchResponse = _zod.z.object({
|
|
8443
|
+
results: _zod.z.array(DTOKnowledgeItemSearchResult)
|
|
8444
|
+
});
|
|
8445
|
+
|
|
8248
8446
|
// src/api/dto/workspaces/login-screen.ts
|
|
8249
8447
|
|
|
8250
8448
|
var DTOLoginScreenSettings = _zod2.default.object({
|
|
@@ -8600,9 +8798,12 @@ var DTODesignSystemUpdateInput = DesignSystem.partial().omit({
|
|
|
8600
8798
|
updatedAt: true,
|
|
8601
8799
|
docSlug: true,
|
|
8602
8800
|
docViewUrl: true,
|
|
8603
|
-
accessMode: true
|
|
8801
|
+
accessMode: true,
|
|
8802
|
+
iconFileId: true,
|
|
8803
|
+
iconFilePath: true
|
|
8604
8804
|
}).extend({
|
|
8605
8805
|
meta: ObjectMeta.partial().optional(),
|
|
8806
|
+
iconFileId: _zod.z.string().nullish(),
|
|
8606
8807
|
/**
|
|
8607
8808
|
* @deprecated Use the `designSystems.updateSwitcher` endpoint instead
|
|
8608
8809
|
*/
|
|
@@ -10378,51 +10579,6 @@ var DTOForgeArtifactGetResponse = _zod.z.object({
|
|
|
10378
10579
|
|
|
10379
10580
|
// src/api/dto/forge/feature-messages.ts
|
|
10380
10581
|
|
|
10381
|
-
|
|
10382
|
-
// src/api/dto/files/files.ts
|
|
10383
|
-
|
|
10384
|
-
var DTOFileFigmaRenderMode = FileFigmaRenderMode;
|
|
10385
|
-
var DTOFileSourceUpload = FileSourceUpload;
|
|
10386
|
-
var DTOFileSourceFigma = FileSourceFigma;
|
|
10387
|
-
var DTOFileSource = FileSource;
|
|
10388
|
-
var DTOFile = File;
|
|
10389
|
-
var DTOFileReference = FileReference;
|
|
10390
|
-
var DTOFileUploadOwnerUser = _zod2.default.object({
|
|
10391
|
-
ownerType: _zod2.default.literal("User")
|
|
10392
|
-
});
|
|
10393
|
-
var DTOFileUploadOwnerWorkspace = _zod2.default.object({
|
|
10394
|
-
ownerType: _zod2.default.literal("Workspace"),
|
|
10395
|
-
workspaceId: _zod2.default.string()
|
|
10396
|
-
});
|
|
10397
|
-
var DTOFileUploadOwner = _zod2.default.discriminatedUnion("ownerType", [DTOFileUploadOwnerUser, DTOFileUploadOwnerWorkspace]);
|
|
10398
|
-
var DTOFileUploadInput = _zod2.default.object({
|
|
10399
|
-
size: _zod2.default.number(),
|
|
10400
|
-
name: _zod2.default.string(),
|
|
10401
|
-
checksum: _zod2.default.string()
|
|
10402
|
-
});
|
|
10403
|
-
var DTOFileUploadBulkPayload = _zod2.default.object({
|
|
10404
|
-
files: DTOFileUploadInput.array()
|
|
10405
|
-
}).and(DTOFileUploadOwner);
|
|
10406
|
-
var DTOFileFinalizeBulkPayload = _zod2.default.object({
|
|
10407
|
-
fileIds: _zod2.default.string().array()
|
|
10408
|
-
}).and(DTOFileUploadOwner);
|
|
10409
|
-
var DTOFileListResponse = _zod2.default.object({
|
|
10410
|
-
files: DTOFile.array()
|
|
10411
|
-
});
|
|
10412
|
-
var DTOFileUploadBulkResponse = _zod2.default.object({
|
|
10413
|
-
files: _zod2.default.array(DTOFile),
|
|
10414
|
-
uploadUrls: _zod2.default.array(
|
|
10415
|
-
_zod2.default.object({
|
|
10416
|
-
fileId: _zod2.default.string(),
|
|
10417
|
-
uploadUrl: _zod2.default.string()
|
|
10418
|
-
})
|
|
10419
|
-
)
|
|
10420
|
-
});
|
|
10421
|
-
var DTOFileFinalizeBulkResponse = _zod2.default.object({
|
|
10422
|
-
files: _zod2.default.array(DTOFile)
|
|
10423
|
-
});
|
|
10424
|
-
|
|
10425
|
-
// src/api/dto/forge/feature-messages.ts
|
|
10426
10582
|
var DTOFeatureMessageUserSender = _zod2.default.object({
|
|
10427
10583
|
type: _zod2.default.literal("User"),
|
|
10428
10584
|
userId: _zod2.default.string()
|
|
@@ -10946,6 +11102,52 @@ var DTODeleteForgeIterationMessageResponse = _zod.z.object({
|
|
|
10946
11102
|
ok: _zod.z.literal(true)
|
|
10947
11103
|
});
|
|
10948
11104
|
|
|
11105
|
+
// src/api/dto/forge/knowledge-item.ts
|
|
11106
|
+
|
|
11107
|
+
var DTOKnowledgeItemType = _zod.z.enum(["File", "Skill"]);
|
|
11108
|
+
var DTOKnowledgeItemWritableFields = _zod.z.object({
|
|
11109
|
+
path: _zod.z.string(),
|
|
11110
|
+
description: _zod.z.string().max(1024),
|
|
11111
|
+
type: DTOKnowledgeItemType,
|
|
11112
|
+
fileId: _zod.z.string(),
|
|
11113
|
+
parentItemId: _zod.z.string().nullable().optional()
|
|
11114
|
+
});
|
|
11115
|
+
var DTOKnowledgeItem = _zod.z.object({
|
|
11116
|
+
id: _zod.z.string(),
|
|
11117
|
+
workspaceId: _zod.z.string(),
|
|
11118
|
+
createdByUserId: _zod.z.string(),
|
|
11119
|
+
createdAt: _zod.z.string(),
|
|
11120
|
+
updatedAt: _zod.z.string(),
|
|
11121
|
+
path: _zod.z.string(),
|
|
11122
|
+
description: _zod.z.string().max(1024),
|
|
11123
|
+
type: DTOKnowledgeItemType,
|
|
11124
|
+
file: DTOFileReference.extend({
|
|
11125
|
+
size: _zod.z.number()
|
|
11126
|
+
}),
|
|
11127
|
+
parentItemId: _zod.z.string().nullable()
|
|
11128
|
+
});
|
|
11129
|
+
var DTOKnowledgeItemCreatePayload = DTOKnowledgeItemWritableFields.extend({
|
|
11130
|
+
childrenItems: _zod.z.lazy(() => _zod.z.array(DTOKnowledgeItemCreatePayload)).optional()
|
|
11131
|
+
});
|
|
11132
|
+
var DTOKnowledgeItemUpdatePayload = DTOKnowledgeItemWritableFields.pick({
|
|
11133
|
+
path: true,
|
|
11134
|
+
description: true,
|
|
11135
|
+
fileId: true,
|
|
11136
|
+
parentItemId: true
|
|
11137
|
+
}).partial();
|
|
11138
|
+
var DTOKnowledgeItemDeletePayload = _zod.z.object({
|
|
11139
|
+
id: _zod.z.union([_zod.z.string(), _zod.z.array(_zod.z.string())])
|
|
11140
|
+
});
|
|
11141
|
+
var DTOKnowledgeItemListResponse = _zod.z.object({
|
|
11142
|
+
items: _zod.z.array(DTOKnowledgeItem)
|
|
11143
|
+
});
|
|
11144
|
+
var DTOKnowledgeItemResponse = _zod.z.object({
|
|
11145
|
+
item: DTOKnowledgeItem
|
|
11146
|
+
});
|
|
11147
|
+
var DTOKnowledgeItemDeleteResponse = _zod.z.object({
|
|
11148
|
+
deletedIds: _zod.z.array(_zod.z.string())
|
|
11149
|
+
});
|
|
11150
|
+
|
|
10949
11151
|
// src/api/dto/forge/memory.ts
|
|
10950
11152
|
|
|
10951
11153
|
var DTOForgeMemoryEntry = _zod2.default.object({
|
|
@@ -11385,33 +11587,75 @@ var DTOForgeProjectArtifactRoomResponse = _zod.z.object({
|
|
|
11385
11587
|
|
|
11386
11588
|
// src/api/dto/forge/project-context-feedback.ts
|
|
11387
11589
|
|
|
11388
|
-
var DTOForgeProjectContextFeedbackSentiment = _zod.z.enum([
|
|
11590
|
+
var DTOForgeProjectContextFeedbackSentiment = _zod.z.enum([
|
|
11591
|
+
"Positive",
|
|
11592
|
+
"Neutral",
|
|
11593
|
+
"Negative",
|
|
11594
|
+
"Aggressive"
|
|
11595
|
+
]);
|
|
11596
|
+
var DTOForgeProjectContextFeedbackState = _zod.z.enum([
|
|
11597
|
+
"Resolved",
|
|
11598
|
+
"Unresolved"
|
|
11599
|
+
]);
|
|
11600
|
+
var DTOForgeProjectContextFeedbackCategory = _zod.z.enum([
|
|
11601
|
+
"MissingInformation",
|
|
11602
|
+
"Incorrect",
|
|
11603
|
+
"Output",
|
|
11604
|
+
"WrongSource"
|
|
11605
|
+
]);
|
|
11389
11606
|
var DTOForgeProjectContextFeedback = _zod.z.object({
|
|
11390
11607
|
id: _zod.z.string().uuid(),
|
|
11608
|
+
workspaceId: _zod.z.string(),
|
|
11391
11609
|
contextId: _zod.z.string(),
|
|
11392
|
-
createdByUserId: _zod.z.string(),
|
|
11610
|
+
createdByUserId: _zod.z.string().optional(),
|
|
11393
11611
|
createdAt: _zod.z.coerce.date(),
|
|
11394
|
-
message: _zod.z.string().describe(
|
|
11395
|
-
|
|
11612
|
+
message: _zod.z.string().describe(
|
|
11613
|
+
"A concise human-readable summary of the feedback being collected."
|
|
11614
|
+
),
|
|
11615
|
+
description: _zod.z.string().optional().describe(
|
|
11616
|
+
"Optional additional details that expand on the feedback summary."
|
|
11617
|
+
),
|
|
11618
|
+
conversation: _zod.z.array(_zod.z.string()).describe(
|
|
11619
|
+
"Ordered conversation excerpts that provide context for the feedback. Each item should be one message."
|
|
11620
|
+
),
|
|
11396
11621
|
sentiment: DTOForgeProjectContextFeedbackSentiment.describe(
|
|
11397
11622
|
"Overall sentiment of the feedback. Use Positive, Neutral, Negative, or Aggressive."
|
|
11398
11623
|
),
|
|
11624
|
+
state: DTOForgeProjectContextFeedbackState,
|
|
11625
|
+
category: DTOForgeProjectContextFeedbackCategory,
|
|
11399
11626
|
llm: _zod.z.object({
|
|
11400
|
-
model: _zod.z.string().describe(
|
|
11627
|
+
model: _zod.z.string().describe(
|
|
11628
|
+
"The LLM model name that generated or participated in the conversation."
|
|
11629
|
+
),
|
|
11401
11630
|
provider: _zod.z.string().describe("The LLM provider name.")
|
|
11402
11631
|
}).describe("Information about the LLM associated with this feedback."),
|
|
11403
11632
|
metadata: DTOObjectMetadata.optional()
|
|
11404
11633
|
});
|
|
11405
11634
|
var DTOForgeProjectContextFeedbackCreatePayload = DTOForgeProjectContextFeedback.pick({
|
|
11635
|
+
contextId: true,
|
|
11406
11636
|
message: true,
|
|
11637
|
+
description: true,
|
|
11407
11638
|
conversation: true,
|
|
11408
11639
|
sentiment: true,
|
|
11640
|
+
category: true,
|
|
11409
11641
|
metadata: true,
|
|
11410
11642
|
llm: true
|
|
11411
11643
|
});
|
|
11644
|
+
var DTOForgeProjectContextFeedbackListQuery = _zod.z.object({
|
|
11645
|
+
contextId: _zod.z.string().optional(),
|
|
11646
|
+
workspaceId: _zod.z.string().optional(),
|
|
11647
|
+
designSystemId: _zod.z.string().optional()
|
|
11648
|
+
}).refine(
|
|
11649
|
+
(query) => Boolean(query.contextId) || Boolean(query.workspaceId) || Boolean(query.designSystemId),
|
|
11650
|
+
"At least one of contextId, workspaceId, or designSystemId is required."
|
|
11651
|
+
);
|
|
11412
11652
|
var DTOForgeProjectContextFeedbackDeletePayload = _zod.z.object({
|
|
11413
11653
|
id: _zod.z.union([_zod.z.string(), _zod.z.array(_zod.z.string())])
|
|
11414
11654
|
});
|
|
11655
|
+
var DTOForgeProjectContextFeedbackUpdatePayload = _zod.z.object({
|
|
11656
|
+
id: _zod.z.string(),
|
|
11657
|
+
state: DTOForgeProjectContextFeedbackState
|
|
11658
|
+
});
|
|
11415
11659
|
var DTOForgeProjectContextFeedbackResponse = _zod.z.object({
|
|
11416
11660
|
feedback: DTOForgeProjectContextFeedback
|
|
11417
11661
|
});
|
|
@@ -11427,6 +11671,22 @@ var DTOForgeProjectContextFeedbackDeleteResponse = _zod.z.object({
|
|
|
11427
11671
|
|
|
11428
11672
|
// src/api/dto/forge/project-context-v2.ts
|
|
11429
11673
|
|
|
11674
|
+
|
|
11675
|
+
// src/api/dto/forge/project-context-scope.ts
|
|
11676
|
+
|
|
11677
|
+
var MAX_SCOPE_BYTES = 1024 * 1024;
|
|
11678
|
+
var DTOForgeProjectContextScope = ForgeProjectContextScope.superRefine((scope, ctx) => {
|
|
11679
|
+
const size = new TextEncoder().encode(JSON.stringify(scope)).length;
|
|
11680
|
+
if (size > MAX_SCOPE_BYTES) {
|
|
11681
|
+
ctx.addIssue({
|
|
11682
|
+
code: _zod.z.ZodIssueCode.custom,
|
|
11683
|
+
message: "Project context scope must be 1MB or smaller."
|
|
11684
|
+
});
|
|
11685
|
+
}
|
|
11686
|
+
});
|
|
11687
|
+
var DTOForgeMcpUrlSlug = ForgeProjectContextMcpUrlSlug;
|
|
11688
|
+
|
|
11689
|
+
// src/api/dto/forge/project-context-v2.ts
|
|
11430
11690
|
var DTOForgeComponentSetTypeV2 = _zod.z.enum(["Shadcn"]);
|
|
11431
11691
|
var DTOForgeComponentSet = _zod.z.object({
|
|
11432
11692
|
type: DTOForgeComponentSetTypeV2
|
|
@@ -11538,8 +11798,12 @@ var DTOForgeProjectContextV2 = _zod.z.object({
|
|
|
11538
11798
|
productContext: _zod.z.string().optional(),
|
|
11539
11799
|
additionalContext: _zod.z.string().optional(),
|
|
11540
11800
|
isArchived: _zod.z.boolean(),
|
|
11801
|
+
isAllowedInPortal: _zod.z.boolean(),
|
|
11802
|
+
isLibraryDismissed: _zod.z.boolean().optional(),
|
|
11541
11803
|
themePreset: _zod.z.string().optional(),
|
|
11542
11804
|
tokenThemeSets: _zod.z.array(DTOForgeTokenThemeSet).optional(),
|
|
11805
|
+
scope: DTOForgeProjectContextScope.nullish(),
|
|
11806
|
+
mcpUrlSlug: DTOForgeMcpUrlSlug.nullish(),
|
|
11543
11807
|
metadata: DTOObjectMetadata.optional(),
|
|
11544
11808
|
componentSet: DTOForgeComponentSet,
|
|
11545
11809
|
iconSet: DTOForgeIconSet,
|
|
@@ -11559,11 +11823,15 @@ var DTOForgeProjectContextCreateV2 = DTOForgeProjectContextV2.omit({
|
|
|
11559
11823
|
isArchived: true,
|
|
11560
11824
|
thumbnail: true
|
|
11561
11825
|
}).extend({
|
|
11826
|
+
// Optional on create: FE may pass an explicit value, otherwise the server
|
|
11827
|
+
// derives it (true when a sandbox template or component library is provided, else false).
|
|
11828
|
+
isAllowedInPortal: _zod.z.boolean().optional(),
|
|
11562
11829
|
thumbnailFileId: _zod.z.string().optional(),
|
|
11563
11830
|
theme: DTOForgeProjectTheme.optional(),
|
|
11564
11831
|
iconSet: DTOForgeIconSet.optional(),
|
|
11565
11832
|
componentSet: DTOForgeComponentSet.optional()
|
|
11566
11833
|
}).superRefine((input, ctx) => {
|
|
11834
|
+
if (input.isAllowedInPortal === false) return;
|
|
11567
11835
|
const hasDefaultTemplateFields = input.theme && input.iconSet && input.componentSet;
|
|
11568
11836
|
const hasCustomTemplateFields = input.sandboxTemplate;
|
|
11569
11837
|
if (hasDefaultTemplateFields || hasCustomTemplateFields) return;
|
|
@@ -11576,6 +11844,11 @@ var DTOForgeProjectContextCreateV2 = DTOForgeProjectContextV2.omit({
|
|
|
11576
11844
|
var DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextV2.omit({
|
|
11577
11845
|
id: true,
|
|
11578
11846
|
workspaceId: true,
|
|
11847
|
+
// designSystemId + brandId are immutable after create. Changing them on an
|
|
11848
|
+
// existing context would orphan stored scope (token/page ids reference the
|
|
11849
|
+
// original DS/brand). To re-target, create a new context.
|
|
11850
|
+
designSystemId: true,
|
|
11851
|
+
brandId: true,
|
|
11579
11852
|
createdAt: true,
|
|
11580
11853
|
updatedAt: true,
|
|
11581
11854
|
thumbnail: true
|
|
@@ -12930,6 +13203,20 @@ var DocumentationEndpoint = class {
|
|
|
12930
13203
|
}
|
|
12931
13204
|
);
|
|
12932
13205
|
}
|
|
13206
|
+
buildSearchIndex(dsId) {
|
|
13207
|
+
return this.requestExecutor.json(
|
|
13208
|
+
`/design-systems/${dsId}/documentation-search/index`,
|
|
13209
|
+
DTODocumentationSearchIndexResponse,
|
|
13210
|
+
{ method: "POST" }
|
|
13211
|
+
);
|
|
13212
|
+
}
|
|
13213
|
+
search(dsId, body) {
|
|
13214
|
+
return this.requestExecutor.json(
|
|
13215
|
+
`/design-systems/${dsId}/documentation-search/query`,
|
|
13216
|
+
DTODocumentationSearchResponse,
|
|
13217
|
+
{ method: "POST", body }
|
|
13218
|
+
);
|
|
13219
|
+
}
|
|
12933
13220
|
};
|
|
12934
13221
|
|
|
12935
13222
|
// src/api/endpoints/design-system/versions/ds-components.ts
|
|
@@ -13968,40 +14255,20 @@ var ForgeProjectContextsEndpoint = class {
|
|
|
13968
14255
|
}
|
|
13969
14256
|
);
|
|
13970
14257
|
}
|
|
13971
|
-
|
|
13972
|
-
return this.requestExecutor.json(`/forge/project-contexts`, DTOForgeProjectContextResponseV2, {
|
|
13973
|
-
method: "POST",
|
|
13974
|
-
body
|
|
13975
|
-
});
|
|
13976
|
-
}
|
|
13977
|
-
listFeedback(contextId) {
|
|
14258
|
+
getById(contextId) {
|
|
13978
14259
|
return this.requestExecutor.json(
|
|
13979
|
-
`/forge/project-contexts/${contextId}
|
|
13980
|
-
|
|
14260
|
+
`/forge/project-contexts/${contextId}`,
|
|
14261
|
+
DTOForgeProjectContextResponseV2,
|
|
13981
14262
|
{
|
|
13982
14263
|
method: "GET"
|
|
13983
14264
|
}
|
|
13984
14265
|
);
|
|
13985
14266
|
}
|
|
13986
|
-
|
|
13987
|
-
return this.requestExecutor.json(
|
|
13988
|
-
|
|
13989
|
-
|
|
13990
|
-
|
|
13991
|
-
method: "POST",
|
|
13992
|
-
body
|
|
13993
|
-
}
|
|
13994
|
-
);
|
|
13995
|
-
}
|
|
13996
|
-
deleteFeedback(contextId, body) {
|
|
13997
|
-
return this.requestExecutor.json(
|
|
13998
|
-
`/forge/project-contexts/${contextId}/feedback`,
|
|
13999
|
-
DTOForgeProjectContextFeedbackDeleteResponse,
|
|
14000
|
-
{
|
|
14001
|
-
method: "DELETE",
|
|
14002
|
-
body
|
|
14003
|
-
}
|
|
14004
|
-
);
|
|
14267
|
+
create(body) {
|
|
14268
|
+
return this.requestExecutor.json(`/forge/project-contexts`, DTOForgeProjectContextResponseV2, {
|
|
14269
|
+
method: "POST",
|
|
14270
|
+
body
|
|
14271
|
+
});
|
|
14005
14272
|
}
|
|
14006
14273
|
update(workspaceId, contextId, body) {
|
|
14007
14274
|
return this.requestExecutor.json(
|
|
@@ -14447,6 +14714,50 @@ var WorkspaceInvitationsEndpoint = class {
|
|
|
14447
14714
|
}
|
|
14448
14715
|
};
|
|
14449
14716
|
|
|
14717
|
+
// src/api/endpoints/workspaces/knowledge-items.ts
|
|
14718
|
+
var WorkspaceKnowledgeItemsEndpoint = class {
|
|
14719
|
+
constructor(requestExecutor) {
|
|
14720
|
+
this.requestExecutor = requestExecutor;
|
|
14721
|
+
}
|
|
14722
|
+
list(workspaceId) {
|
|
14723
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/knowledge-items`, DTOKnowledgeItemListResponse, {
|
|
14724
|
+
method: "GET"
|
|
14725
|
+
});
|
|
14726
|
+
}
|
|
14727
|
+
create(workspaceId, body) {
|
|
14728
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/knowledge-items`, DTOKnowledgeItemResponse, {
|
|
14729
|
+
method: "POST",
|
|
14730
|
+
body
|
|
14731
|
+
});
|
|
14732
|
+
}
|
|
14733
|
+
update(workspaceId, itemId, body) {
|
|
14734
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/knowledge-items/${itemId}`, DTOKnowledgeItemResponse, {
|
|
14735
|
+
method: "PUT",
|
|
14736
|
+
body
|
|
14737
|
+
});
|
|
14738
|
+
}
|
|
14739
|
+
delete(workspaceId, body) {
|
|
14740
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/knowledge-items`, DTOKnowledgeItemDeleteResponse, {
|
|
14741
|
+
method: "DELETE",
|
|
14742
|
+
body
|
|
14743
|
+
});
|
|
14744
|
+
}
|
|
14745
|
+
buildSearchIndex(workspaceId) {
|
|
14746
|
+
return this.requestExecutor.json(
|
|
14747
|
+
`/workspaces/${workspaceId}/knowledge-items/search/index`,
|
|
14748
|
+
DTOKnowledgeItemSearchIndexResponse,
|
|
14749
|
+
{ method: "POST" }
|
|
14750
|
+
);
|
|
14751
|
+
}
|
|
14752
|
+
search(workspaceId, body) {
|
|
14753
|
+
return this.requestExecutor.json(
|
|
14754
|
+
`/workspaces/${workspaceId}/knowledge-items/search/query`,
|
|
14755
|
+
DTOKnowledgeItemSearchResponse,
|
|
14756
|
+
{ method: "POST", body }
|
|
14757
|
+
);
|
|
14758
|
+
}
|
|
14759
|
+
};
|
|
14760
|
+
|
|
14450
14761
|
// src/api/endpoints/workspaces/members.ts
|
|
14451
14762
|
|
|
14452
14763
|
var WorkspaceMembersEndpoint = class {
|
|
@@ -14532,11 +14843,13 @@ var WorkspacesEndpoint = class {
|
|
|
14532
14843
|
__publicField(this, "npmRegistry");
|
|
14533
14844
|
__publicField(this, "chatThreads");
|
|
14534
14845
|
__publicField(this, "integrations");
|
|
14846
|
+
__publicField(this, "knowledgeItems");
|
|
14535
14847
|
__publicField(this, "subscription");
|
|
14536
14848
|
__publicField(this, "billing");
|
|
14537
14849
|
this.members = new WorkspaceMembersEndpoint(requestExecutor);
|
|
14538
14850
|
this.invitations = new WorkspaceInvitationsEndpoint(requestExecutor);
|
|
14539
14851
|
this.integrations = new WorkspaceIntegrationsEndpoint(requestExecutor);
|
|
14852
|
+
this.knowledgeItems = new WorkspaceKnowledgeItemsEndpoint(requestExecutor);
|
|
14540
14853
|
this.npmRegistry = new WorkspaceNpmRegistryEndpoint(requestExecutor);
|
|
14541
14854
|
this.chatThreads = new WorkspaceChatThreadsEndpoint(requestExecutor);
|
|
14542
14855
|
this.subscription = new WorkspaceSubscriptionEndpoint(requestExecutor);
|
|
@@ -14601,6 +14914,53 @@ var AuthTokensEndpoint = class {
|
|
|
14601
14914
|
}
|
|
14602
14915
|
};
|
|
14603
14916
|
|
|
14917
|
+
// src/api/endpoints/feedback.ts
|
|
14918
|
+
var FeedbackEndpoint = class {
|
|
14919
|
+
constructor(requestExecutor) {
|
|
14920
|
+
this.requestExecutor = requestExecutor;
|
|
14921
|
+
}
|
|
14922
|
+
list(query) {
|
|
14923
|
+
return this.requestExecutor.json(
|
|
14924
|
+
"/feedback",
|
|
14925
|
+
DTOForgeProjectContextFeedbackListResponse,
|
|
14926
|
+
{
|
|
14927
|
+
method: "GET",
|
|
14928
|
+
query: new URLSearchParams(pickDefined(query))
|
|
14929
|
+
}
|
|
14930
|
+
);
|
|
14931
|
+
}
|
|
14932
|
+
create(body) {
|
|
14933
|
+
return this.requestExecutor.json(
|
|
14934
|
+
"/feedback",
|
|
14935
|
+
DTOForgeProjectContextFeedbackResponse,
|
|
14936
|
+
{
|
|
14937
|
+
method: "POST",
|
|
14938
|
+
body
|
|
14939
|
+
}
|
|
14940
|
+
);
|
|
14941
|
+
}
|
|
14942
|
+
update(body) {
|
|
14943
|
+
return this.requestExecutor.json(
|
|
14944
|
+
"/feedback",
|
|
14945
|
+
DTOForgeProjectContextFeedbackResponse,
|
|
14946
|
+
{
|
|
14947
|
+
method: "PUT",
|
|
14948
|
+
body
|
|
14949
|
+
}
|
|
14950
|
+
);
|
|
14951
|
+
}
|
|
14952
|
+
delete(body) {
|
|
14953
|
+
return this.requestExecutor.json(
|
|
14954
|
+
"/feedback",
|
|
14955
|
+
DTOForgeProjectContextFeedbackDeleteResponse,
|
|
14956
|
+
{
|
|
14957
|
+
method: "DELETE",
|
|
14958
|
+
body
|
|
14959
|
+
}
|
|
14960
|
+
);
|
|
14961
|
+
}
|
|
14962
|
+
};
|
|
14963
|
+
|
|
14604
14964
|
// src/api/endpoints/files.ts
|
|
14605
14965
|
var FilesEndpoint = class {
|
|
14606
14966
|
constructor(requestExecutor) {
|
|
@@ -14762,7 +15122,6 @@ ${bodyText}`,
|
|
|
14762
15122
|
};
|
|
14763
15123
|
|
|
14764
15124
|
// src/api/transport/request-executor.ts
|
|
14765
|
-
var _nodefetch = require('node-fetch'); var _nodefetch2 = _interopRequireDefault(_nodefetch);
|
|
14766
15125
|
|
|
14767
15126
|
var ResponseWrapper = _zod.z.object({
|
|
14768
15127
|
result: _zod.z.record(_zod.z.any())
|
|
@@ -14786,7 +15145,7 @@ var RequestExecutor = class {
|
|
|
14786
15145
|
let body;
|
|
14787
15146
|
if (requestInit.body && typeof requestInit.body === "object") body = JSON.stringify(requestInit.body);
|
|
14788
15147
|
const fullUrl = this.fullUrl(path, requestInit.query);
|
|
14789
|
-
const response = await
|
|
15148
|
+
const response = await fetch(fullUrl, {
|
|
14790
15149
|
...requestInit,
|
|
14791
15150
|
headers: {
|
|
14792
15151
|
...requestInit.headers,
|
|
@@ -14832,6 +15191,7 @@ var SupernovaApiClient = class {
|
|
|
14832
15191
|
__publicField(this, "designSystems");
|
|
14833
15192
|
__publicField(this, "codegen");
|
|
14834
15193
|
__publicField(this, "liveblocks");
|
|
15194
|
+
__publicField(this, "feedback");
|
|
14835
15195
|
__publicField(this, "forge");
|
|
14836
15196
|
__publicField(this, "files");
|
|
14837
15197
|
__publicField(this, "threads");
|
|
@@ -14850,6 +15210,7 @@ var SupernovaApiClient = class {
|
|
|
14850
15210
|
this.designSystems = new DesignSystemsEndpoint(requestExecutor);
|
|
14851
15211
|
this.codegen = new CodegenEndpoint(requestExecutor);
|
|
14852
15212
|
this.liveblocks = new LiveblocksEndpoint(requestExecutor);
|
|
15213
|
+
this.feedback = new FeedbackEndpoint(requestExecutor);
|
|
14853
15214
|
this.forge = new ForgeEndpoint(requestExecutor);
|
|
14854
15215
|
this.files = new FilesEndpoint(requestExecutor);
|
|
14855
15216
|
this.threads = new ThreadsEndpoint(requestExecutor);
|
|
@@ -22254,5 +22615,34 @@ var TransactionQueue2 = class {
|
|
|
22254
22615
|
|
|
22255
22616
|
|
|
22256
22617
|
|
|
22257
|
-
exports.AuthTokensEndpoint = AuthTokensEndpoint; exports.BackendFeatureRoomYDoc = BackendFeatureRoomYDoc; exports.BackendForgeProjectRoomYDoc = BackendForgeProjectRoomYDoc; exports.BackendThreadRoomYDoc = BackendThreadRoomYDoc; exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.ChatThreadMessagesEndpoint = ChatThreadMessagesEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAccessToken = DTOAccessToken; exports.DTOAccessTokenCreatePayload = DTOAccessTokenCreatePayload; exports.DTOAccessTokenFull = DTOAccessTokenFull; exports.DTOAccessTokenFullResponse = DTOAccessTokenFullResponse; exports.DTOAccessTokenListResponse = DTOAccessTokenListResponse; exports.DTOAccessTokenResponse = DTOAccessTokenResponse; exports.DTOAddMembersToForgeProject = DTOAddMembersToForgeProject; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAssetScope = DTOAssetScope; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOAvailableProductListResponse = DTOAvailableProductListResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBillingCheckoutCreditsTopUpInput = DTOBillingCheckoutCreditsTopUpInput; exports.DTOBillingCheckoutInput = DTOBillingCheckoutInput; exports.DTOBillingCheckoutMode = DTOBillingCheckoutMode; exports.DTOBillingCheckoutOldInput = DTOBillingCheckoutOldInput; exports.DTOBillingCheckoutResponse = DTOBillingCheckoutResponse; exports.DTOBillingCheckoutSubscriptionChangeInput = DTOBillingCheckoutSubscriptionChangeInput; exports.DTOBillingCreditsCheckIfCanSpendResponse = DTOBillingCreditsCheckIfCanSpendResponse; exports.DTOBillingCreditsSpendAction = DTOBillingCreditsSpendAction; exports.DTOBillingCreditsSpendInput = DTOBillingCreditsSpendInput; exports.DTOBillingCreditsSpendResponse = DTOBillingCreditsSpendResponse; exports.DTOBillingInterval = DTOBillingInterval; exports.DTOBillingSubscriptionChangePreviewInput = DTOBillingSubscriptionChangePreviewInput; exports.DTOBillingSupportedModels = DTOBillingSupportedModels; exports.DTOBillingUsageEntry = DTOBillingUsageEntry; exports.DTOBillingUsageSummary = DTOBillingUsageSummary; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCodeComponent = DTOCodeComponent; exports.DTOCodeComponentDocFile = DTOCodeComponentDocFile; exports.DTOCodeComponentListResponse = DTOCodeComponentListResponse; exports.DTOCodeComponentPropUsage = DTOCodeComponentPropUsage; exports.DTOCodeComponentProperty = DTOCodeComponentProperty; exports.DTOCodeComponentStorybookFile = DTOCodeComponentStorybookFile; exports.DTOCodeComponentUsage = DTOCodeComponentUsage; exports.DTOCodeComponentUsageResponse = DTOCodeComponentUsageResponse; exports.DTOCodeHistoryQuery = DTOCodeHistoryQuery; exports.DTOCodeHistoryRepositoryFilter = DTOCodeHistoryRepositoryFilter; exports.DTOCodeHistoryResponse = DTOCodeHistoryResponse; exports.DTOCodeHistorySnapshot = DTOCodeHistorySnapshot; exports.DTOCodeScanDeleteResponse = DTOCodeScanDeleteResponse; exports.DTOCodeScanFinished = DTOCodeScanFinished; exports.DTOCodeScanListItem = DTOCodeScanListItem; exports.DTOCodeScanListResponse = DTOCodeScanListResponse; exports.DTOCodeScanUploadedBy = DTOCodeScanUploadedBy; exports.DTOCodeSnapshotFinalizePayload = DTOCodeSnapshotFinalizePayload; exports.DTOCodeSnapshotFinalizeResponse = DTOCodeSnapshotFinalizeResponse; exports.DTOCodeSnapshotProcessingRunResponse = DTOCodeSnapshotProcessingRunResponse; exports.DTOCodeSnapshotProcessingRunStatus = DTOCodeSnapshotProcessingRunStatus; exports.DTOCodeSnapshotProcessingRunStatusItem = DTOCodeSnapshotProcessingRunStatusItem; exports.DTOCodeSnapshotProcessingRunStatusResponse = DTOCodeSnapshotProcessingRunStatusResponse; exports.DTOCodeSnapshotScannerType = DTOCodeSnapshotScannerType; exports.DTOCodeSnapshotStartProcessingRunPayload = DTOCodeSnapshotStartProcessingRunPayload; exports.DTOCodeSnapshotUploadInitPayload = DTOCodeSnapshotUploadInitPayload; exports.DTOCodeSnapshotUploadInitResponse = DTOCodeSnapshotUploadInitResponse; exports.DTOCodeSnapshotUploadInitScannerType = DTOCodeSnapshotUploadInitScannerType; exports.DTOCollectionOrigin = DTOCollectionOrigin; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateFeatureSandbox = DTOCreateFeatureSandbox; exports.DTOCreateForgeAgent = DTOCreateForgeAgent; exports.DTOCreateForgeAgentResponse = DTOCreateForgeAgentResponse; exports.DTOCreateForgeArtifact = DTOCreateForgeArtifact; exports.DTOCreateForgeArtifactResponse = DTOCreateForgeArtifactResponse; exports.DTOCreateForgeBuildArtifact = DTOCreateForgeBuildArtifact; exports.DTOCreateForgeFigmaArtifact = DTOCreateForgeFigmaArtifact; exports.DTOCreateForgeFileArtifact = DTOCreateForgeFileArtifact; exports.DTOCreateForgeIterationMessage = DTOCreateForgeIterationMessage; exports.DTOCreateForgeIterationMessageResponse = DTOCreateForgeIterationMessageResponse; exports.DTOCreateForgeParticipant = DTOCreateForgeParticipant; exports.DTOCreateForgeParticipantResponse = DTOCreateForgeParticipantResponse; exports.DTOCreateForgeProjectContext = DTOCreateForgeProjectContext; exports.DTOCreateForgeProjectInvitation = DTOCreateForgeProjectInvitation; exports.DTOCreateForgeProjectIteration = DTOCreateForgeProjectIteration; exports.DTOCreateForgeProjectIterationResponse = DTOCreateForgeProjectIterationResponse; exports.DTOCreateForgeProjectMember = DTOCreateForgeProjectMember; exports.DTOCreateForgeSpecArtifact = DTOCreateForgeSpecArtifact; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTOCreditBalance = DTOCreditBalance; exports.DTOCreditsPrices = DTOCreditsPrices; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceStorybook = DTODataSourceStorybook; exports.DTODataSourceStorybookCreatePayload = DTODataSourceStorybookCreatePayload; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODataSourcesStorybookResponse = DTODataSourcesStorybookResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteForgeAgentResponse = DTODeleteForgeAgentResponse; exports.DTODeleteForgeArtifactResponse = DTODeleteForgeArtifactResponse; exports.DTODeleteForgeIterationMessageResponse = DTODeleteForgeIterationMessageResponse; exports.DTODeleteForgeParticipantResponse = DTODeleteForgeParticipantResponse; exports.DTODeleteForgeProjectIterationResponse = DTODeleteForgeProjectIterationResponse; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemPipelineCreateBody = DTODesignSystemPipelineCreateBody; exports.DTODesignSystemPipelineListQuery = DTODesignSystemPipelineListQuery; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemUpdateSwitcherInput = DTODesignSystemUpdateSwitcherInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionRoom = DTODesignSystemVersionRoom; exports.DTODesignSystemVersionRoomResponse = DTODesignSystemVersionRoomResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationAnalyticsDiffPayload = DTODocumentationAnalyticsDiffPayload; exports.DTODocumentationAnalyticsRequest = DTODocumentationAnalyticsRequest; exports.DTODocumentationAnalyticsTimeFrame = DTODocumentationAnalyticsTimeFrame; exports.DTODocumentationAnalyticsTimeFrameComparison = DTODocumentationAnalyticsTimeFrameComparison; exports.DTODocumentationConfiguration = DTODocumentationConfiguration; exports.DTODocumentationConfigurationResponse = DTODocumentationConfigurationResponse; exports.DTODocumentationContent = DTODocumentationContent; exports.DTODocumentationContentQuery = DTODocumentationContentQuery; exports.DTODocumentationContentResponse = DTODocumentationContentResponse; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationMinimalPage = DTODocumentationMinimalPage; exports.DTODocumentationMinimalPageListResponse = DTODocumentationMinimalPageListResponse; exports.DTODocumentationPageAnalyticsDifference = DTODocumentationPageAnalyticsDifference; exports.DTODocumentationPageAnalyticsResponse = DTODocumentationPageAnalyticsResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDependencies = DTODocumentationPageDependencies; exports.DTODocumentationPageDependenciesGetResponse = DTODocumentationPageDependenciesGetResponse; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageIntervalDifferenceResponse = DTODocumentationPageIntervalDifferenceResponse; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageUpdateDocumentActionInputV2 = DTODocumentationPageUpdateDocumentActionInputV2; exports.DTODocumentationPageUpdateDocumentActionOutputV2 = DTODocumentationPageUpdateDocumentActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationSettings = DTODocumentationSettings; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; exports.DTOElementPropertyValuesEditActionInput = DTOElementPropertyValuesEditActionInput; exports.DTOElementPropertyValuesEditActionOutput = DTOElementPropertyValuesEditActionOutput; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOEvent = DTOEvent; exports.DTOEventDataSourcesImported = DTOEventDataSourcesImported; exports.DTOEventFigmaNodesRendered = DTOEventFigmaNodesRendered; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreateInput = DTOExportJobCreateInput; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterDeprecationInput = DTOExporterDeprecationInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionCode = DTOExporterPropertyDefinitionCode; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterPropertyValue = DTOExporterPropertyValue; exports.DTOExporterPropertyValueMap = DTOExporterPropertyValueMap; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFVPMigrationsCollectionKeysPayload = DTOFVPMigrationsCollectionKeysPayload; exports.DTOFeatureAgentResponseTracker = DTOFeatureAgentResponseTracker; exports.DTOFeatureAgentWorkFinalizeInput = DTOFeatureAgentWorkFinalizeInput; exports.DTOFeatureArtifact = DTOFeatureArtifact; exports.DTOFeatureArtifactCreateInput = DTOFeatureArtifactCreateInput; exports.DTOFeatureArtifactDeleteInput = DTOFeatureArtifactDeleteInput; exports.DTOFeatureArtifactGetByIdParam = DTOFeatureArtifactGetByIdParam; exports.DTOFeatureArtifactListQuery = DTOFeatureArtifactListQuery; exports.DTOFeatureArtifactListResponse = DTOFeatureArtifactListResponse; exports.DTOFeatureArtifactResponse = DTOFeatureArtifactResponse; exports.DTOFeatureArtifactWithContentResponse = DTOFeatureArtifactWithContentResponse; exports.DTOFeatureEvent = DTOFeatureEvent; exports.DTOFeatureEventMessagesSent = DTOFeatureEventMessagesSent; exports.DTOFeatureEventReactionsDeleted = DTOFeatureEventReactionsDeleted; exports.DTOFeatureEventReactionsSent = DTOFeatureEventReactionsSent; exports.DTOFeatureIteration = DTOFeatureIteration; exports.DTOFeatureIterationArtifactDiff = DTOFeatureIterationArtifactDiff; exports.DTOFeatureIterationArtifactsDiff = DTOFeatureIterationArtifactsDiff; exports.DTOFeatureIterationCreateInput = DTOFeatureIterationCreateInput; exports.DTOFeatureIterationError = DTOFeatureIterationError; exports.DTOFeatureIterationErrorType = DTOFeatureIterationErrorType; exports.DTOFeatureIterationListResponse = DTOFeatureIterationListResponse; exports.DTOFeatureIterationPromoteInput = DTOFeatureIterationPromoteInput; exports.DTOFeatureIterationResponse = DTOFeatureIterationResponse; exports.DTOFeatureIterationSetLatestInput = DTOFeatureIterationSetLatestInput; exports.DTOFeatureIterationState = DTOFeatureIterationState; exports.DTOFeatureIterationTag = DTOFeatureIterationTag; exports.DTOFeatureIterationTagCreateInput = DTOFeatureIterationTagCreateInput; exports.DTOFeatureIterationTagListResponse = DTOFeatureIterationTagListResponse; exports.DTOFeatureIterationTagResponse = DTOFeatureIterationTagResponse; exports.DTOFeatureIterationUpdateArtifactsByMessageInput = DTOFeatureIterationUpdateArtifactsByMessageInput; exports.DTOFeatureIterationUpdateArtifactsInput = DTOFeatureIterationUpdateArtifactsInput; exports.DTOFeatureIterationUpdateInput = DTOFeatureIterationUpdateInput; exports.DTOFeatureIterationValidateInput = DTOFeatureIterationValidateInput; exports.DTOFeatureIterationValidateResponse = DTOFeatureIterationValidateResponse; exports.DTOFeatureMessage = DTOFeatureMessage; exports.DTOFeatureMessageAgentSender = DTOFeatureMessageAgentSender; exports.DTOFeatureMessageAttachments = DTOFeatureMessageAttachments; exports.DTOFeatureMessageCreateInput = DTOFeatureMessageCreateInput; exports.DTOFeatureMessageListResponse = DTOFeatureMessageListResponse; exports.DTOFeatureMessageReaction = DTOFeatureMessageReaction; exports.DTOFeatureMessageReactionCreateInput = DTOFeatureMessageReactionCreateInput; exports.DTOFeatureMessageReactionDeleteInput = DTOFeatureMessageReactionDeleteInput; exports.DTOFeatureMessageReactionResponse = DTOFeatureMessageReactionResponse; exports.DTOFeatureMessageResponse = DTOFeatureMessageResponse; exports.DTOFeatureMessageSender = DTOFeatureMessageSender; exports.DTOFeatureMessageSystemSender = DTOFeatureMessageSystemSender; exports.DTOFeatureMessageUpdateInput = DTOFeatureMessageUpdateInput; exports.DTOFeatureMessageUserSender = DTOFeatureMessageUserSender; exports.DTOFeaturePublishedStateUpdateInput = DTOFeaturePublishedStateUpdateInput; exports.DTOFeatureSandbox = DTOFeatureSandbox; exports.DTOFeatureSandboxListResponse = DTOFeatureSandboxListResponse; exports.DTOFeatureUpdateThemeInput = DTOFeatureUpdateThemeInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaExportNodeConfiguration = DTOFigmaExportNodeConfiguration; exports.DTOFigmaExportNodeFormat = DTOFigmaExportNodeFormat; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeStructure = DTOFigmaNodeStructure; exports.DTOFigmaNodeStructureDetail = DTOFigmaNodeStructureDetail; exports.DTOFigmaNodeStructureDetailResponse = DTOFigmaNodeStructureDetailResponse; exports.DTOFigmaNodeStructureListResponse = DTOFigmaNodeStructureListResponse; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFigmaSourceUpdatePayload = DTOFigmaSourceUpdatePayload; exports.DTOFile = DTOFile; exports.DTOFileFigmaRenderMode = DTOFileFigmaRenderMode; exports.DTOFileFinalizeBulkPayload = DTOFileFinalizeBulkPayload; exports.DTOFileFinalizeBulkResponse = DTOFileFinalizeBulkResponse; exports.DTOFileListResponse = DTOFileListResponse; exports.DTOFileReference = DTOFileReference; exports.DTOFileResponseItem = DTOFileResponseItem; exports.DTOFileSource = DTOFileSource; exports.DTOFileSourceFigma = DTOFileSourceFigma; exports.DTOFileSourceUpload = DTOFileSourceUpload; exports.DTOFileUploadBulkPayload = DTOFileUploadBulkPayload; exports.DTOFileUploadBulkResponse = DTOFileUploadBulkResponse; exports.DTOFileUploadFinalizePayload = DTOFileUploadFinalizePayload; exports.DTOFileUploadFinalizeResponse = DTOFileUploadFinalizeResponse; exports.DTOFileUploadItem = DTOFileUploadItem; exports.DTOFileUploadPayload = DTOFileUploadPayload; exports.DTOFileUploadResponse = DTOFileUploadResponse; exports.DTOFileUploadResponseItem = DTOFileUploadResponseItem; exports.DTOFilesGetPayload = DTOFilesGetPayload; exports.DTOFilesGetQuery = DTOFilesGetQuery; exports.DTOFilesResponse = DTOFilesResponse; exports.DTOForgeAgent = DTOForgeAgent; exports.DTOForgeAgentsListResponse = DTOForgeAgentsListResponse; exports.DTOForgeArtifact = DTOForgeArtifact; exports.DTOForgeArtifactGetResponse = DTOForgeArtifactGetResponse; exports.DTOForgeArtifactsListResponse = DTOForgeArtifactsListResponse; exports.DTOForgeAvatarBuilder = DTOForgeAvatarBuilder; exports.DTOForgeBuildArtifact = DTOForgeBuildArtifact; exports.DTOForgeChatExportResponse = DTOForgeChatExportResponse; exports.DTOForgeChatMessage = DTOForgeChatMessage; exports.DTOForgeChatMessageCreateInput = DTOForgeChatMessageCreateInput; exports.DTOForgeChatMessageCreateResponse = DTOForgeChatMessageCreateResponse; exports.DTOForgeChatMessageListQuery = DTOForgeChatMessageListQuery; exports.DTOForgeChatMessageListResponse = DTOForgeChatMessageListResponse; exports.DTOForgeChatMessageScoreInput = DTOForgeChatMessageScoreInput; exports.DTOForgeChatMessageScoreRequest = DTOForgeChatMessageScoreRequest; exports.DTOForgeChatMessageSender = DTOForgeChatMessageSender; exports.DTOForgeChatMessageSenderType = DTOForgeChatMessageSenderType; exports.DTOForgeChatMessageTagInput = DTOForgeChatMessageTagInput; exports.DTOForgeChatThread = DTOForgeChatThread; exports.DTOForgeChatThreadCreateInput = DTOForgeChatThreadCreateInput; exports.DTOForgeChatThreadCreateResponse = DTOForgeChatThreadCreateResponse; exports.DTOForgeChatThreadDeleteResponse = DTOForgeChatThreadDeleteResponse; exports.DTOForgeChatThreadListQuery = DTOForgeChatThreadListQuery; exports.DTOForgeChatThreadListResponse = DTOForgeChatThreadListResponse; exports.DTOForgeChatThreadUpdateInput = DTOForgeChatThreadUpdateInput; exports.DTOForgeChatThreadUpdateResponse = DTOForgeChatThreadUpdateResponse; exports.DTOForgeComponentSet = DTOForgeComponentSet; exports.DTOForgeComponentSetTypeV2 = DTOForgeComponentSetTypeV2; exports.DTOForgeDocumentGetByIdParam = DTOForgeDocumentGetByIdParam; exports.DTOForgeDocumentGetResponse = DTOForgeDocumentGetResponse; exports.DTOForgeEntity = DTOForgeEntity; exports.DTOForgeFeatureRoom = DTOForgeFeatureRoom; exports.DTOForgeFeatureRoomResponse = DTOForgeFeatureRoomResponse; exports.DTOForgeFigmaArtifact = DTOForgeFigmaArtifact; exports.DTOForgeFigmaNode = DTOForgeFigmaNode; exports.DTOForgeFigmaNodeConversionVersion = DTOForgeFigmaNodeConversionVersion; exports.DTOForgeFigmaNodeCreateRequest = DTOForgeFigmaNodeCreateRequest; exports.DTOForgeFigmaNodeOrigin = DTOForgeFigmaNodeOrigin; exports.DTOForgeFigmaNodeResponse = DTOForgeFigmaNodeResponse; exports.DTOForgeFigmaNodeState = DTOForgeFigmaNodeState; exports.DTOForgeFigmaNodeValidateResponse = DTOForgeFigmaNodeValidateResponse; exports.DTOForgeFileArtifact = DTOForgeFileArtifact; exports.DTOForgeIconSet = DTOForgeIconSet; exports.DTOForgeIconSetTypeV2 = DTOForgeIconSetTypeV2; exports.DTOForgeIterationMessage = DTOForgeIterationMessage; exports.DTOForgeIterationMessagesListResponse = DTOForgeIterationMessagesListResponse; exports.DTOForgeMemoryCreateInput = DTOForgeMemoryCreateInput; exports.DTOForgeMemoryDeleteInput = DTOForgeMemoryDeleteInput; exports.DTOForgeMemoryEntry = DTOForgeMemoryEntry; exports.DTOForgeMemoryEntryListQuery = DTOForgeMemoryEntryListQuery; exports.DTOForgeMemoryEntryListResponse = DTOForgeMemoryEntryListResponse; exports.DTOForgeMemoryEntryResponse = DTOForgeMemoryEntryResponse; exports.DTOForgeMemoryUpdateInput = DTOForgeMemoryUpdateInput; exports.DTOForgeParticipant = DTOForgeParticipant; exports.DTOForgeParticipantGetResponse = DTOForgeParticipantGetResponse; exports.DTOForgeParticipantsListResponse = DTOForgeParticipantsListResponse; exports.DTOForgeProject = DTOForgeProject; exports.DTOForgeProjectAccessMode = DTOForgeProjectAccessMode; exports.DTOForgeProjectAction = DTOForgeProjectAction; exports.DTOForgeProjectActionArtifactCreate = DTOForgeProjectActionArtifactCreate; exports.DTOForgeProjectActionArtifactDelete = DTOForgeProjectActionArtifactDelete; exports.DTOForgeProjectActionArtifactMove = DTOForgeProjectActionArtifactMove; exports.DTOForgeProjectActionArtifactUpdate = DTOForgeProjectActionArtifactUpdate; exports.DTOForgeProjectActionFeatureCreate = DTOForgeProjectActionFeatureCreate; exports.DTOForgeProjectActionFeatureDelete = DTOForgeProjectActionFeatureDelete; exports.DTOForgeProjectActionFeatureMove = DTOForgeProjectActionFeatureMove; exports.DTOForgeProjectActionFeatureUpdate = DTOForgeProjectActionFeatureUpdate; exports.DTOForgeProjectActionSectionCreate = DTOForgeProjectActionSectionCreate; exports.DTOForgeProjectActionSectionDelete = DTOForgeProjectActionSectionDelete; exports.DTOForgeProjectActionSectionMove = DTOForgeProjectActionSectionMove; exports.DTOForgeProjectActionSectionUpdate = DTOForgeProjectActionSectionUpdate; exports.DTOForgeProjectArtifact = DTOForgeProjectArtifact; exports.DTOForgeProjectArtifactContentResponse = DTOForgeProjectArtifactContentResponse; exports.DTOForgeProjectArtifactCreateInput = DTOForgeProjectArtifactCreateInput; exports.DTOForgeProjectArtifactCreateResponse = DTOForgeProjectArtifactCreateResponse; exports.DTOForgeProjectArtifactDeleteInput = DTOForgeProjectArtifactDeleteInput; exports.DTOForgeProjectArtifactDeleteResponse = DTOForgeProjectArtifactDeleteResponse; exports.DTOForgeProjectArtifactGetResponse = DTOForgeProjectArtifactGetResponse; exports.DTOForgeProjectArtifactMoveInput = DTOForgeProjectArtifactMoveInput; exports.DTOForgeProjectArtifactMoveResponse = DTOForgeProjectArtifactMoveResponse; exports.DTOForgeProjectArtifactRoom = DTOForgeProjectArtifactRoom; exports.DTOForgeProjectArtifactRoomResponse = DTOForgeProjectArtifactRoomResponse; exports.DTOForgeProjectArtifactUpdateInput = DTOForgeProjectArtifactUpdateInput; exports.DTOForgeProjectArtifactUpdateResponse = DTOForgeProjectArtifactUpdateResponse; exports.DTOForgeProjectArtifactsListResponse = DTOForgeProjectArtifactsListResponse; exports.DTOForgeProjectContext = DTOForgeProjectContext; exports.DTOForgeProjectContextCreateResponse = DTOForgeProjectContextCreateResponse; exports.DTOForgeProjectContextCreateV2 = DTOForgeProjectContextCreateV2; exports.DTOForgeProjectContextCreated = DTOForgeProjectContextCreated; exports.DTOForgeProjectContextDeleted = DTOForgeProjectContextDeleted; exports.DTOForgeProjectContextFeedback = DTOForgeProjectContextFeedback; exports.DTOForgeProjectContextFeedbackCreatePayload = DTOForgeProjectContextFeedbackCreatePayload; exports.DTOForgeProjectContextFeedbackDeletePayload = DTOForgeProjectContextFeedbackDeletePayload; exports.DTOForgeProjectContextFeedbackDeleteResponse = DTOForgeProjectContextFeedbackDeleteResponse; exports.DTOForgeProjectContextFeedbackListResponse = DTOForgeProjectContextFeedbackListResponse; exports.DTOForgeProjectContextFeedbackResponse = DTOForgeProjectContextFeedbackResponse; exports.DTOForgeProjectContextFeedbackSentiment = DTOForgeProjectContextFeedbackSentiment; exports.DTOForgeProjectContextGetResponse = DTOForgeProjectContextGetResponse; exports.DTOForgeProjectContextListQueryV2 = DTOForgeProjectContextListQueryV2; exports.DTOForgeProjectContextListResponse = DTOForgeProjectContextListResponse; exports.DTOForgeProjectContextListResponseV2 = DTOForgeProjectContextListResponseV2; exports.DTOForgeProjectContextRemoveResponse = DTOForgeProjectContextRemoveResponse; exports.DTOForgeProjectContextResponseV2 = DTOForgeProjectContextResponseV2; exports.DTOForgeProjectContextUpdateResponse = DTOForgeProjectContextUpdateResponse; exports.DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextUpdateV2; exports.DTOForgeProjectContextUpdated = DTOForgeProjectContextUpdated; exports.DTOForgeProjectContextV2 = DTOForgeProjectContextV2; exports.DTOForgeProjectCreate = DTOForgeProjectCreate; exports.DTOForgeProjectCreated = DTOForgeProjectCreated; exports.DTOForgeProjectDefaultRole = DTOForgeProjectDefaultRole; exports.DTOForgeProjectDocumentPreview = DTOForgeProjectDocumentPreview; exports.DTOForgeProjectFeature = DTOForgeProjectFeature; exports.DTOForgeProjectFeatureCreateInput = DTOForgeProjectFeatureCreateInput; exports.DTOForgeProjectFeatureDeleteInput = DTOForgeProjectFeatureDeleteInput; exports.DTOForgeProjectFeatureGetByIdParam = DTOForgeProjectFeatureGetByIdParam; exports.DTOForgeProjectFeatureGetResponse = DTOForgeProjectFeatureGetResponse; exports.DTOForgeProjectFeatureListResponse = DTOForgeProjectFeatureListResponse; exports.DTOForgeProjectFeatureMoveInput = DTOForgeProjectFeatureMoveInput; exports.DTOForgeProjectFeaturePreview = DTOForgeProjectFeaturePreview; exports.DTOForgeProjectFeatureSandboxUpdated = DTOForgeProjectFeatureSandboxUpdated; exports.DTOForgeProjectFeatureUpdateInput = DTOForgeProjectFeatureUpdateInput; exports.DTOForgeProjectFigmaNode = DTOForgeProjectFigmaNode; exports.DTOForgeProjectFigmaNodeRenderInput = DTOForgeProjectFigmaNodeRenderInput; exports.DTOForgeProjectFile = DTOForgeProjectFile; exports.DTOForgeProjectFileListResponse = DTOForgeProjectFileListResponse; exports.DTOForgeProjectFileUploadFinalizePayload = DTOForgeProjectFileUploadFinalizePayload; exports.DTOForgeProjectFileUploadFinalizeResponse = DTOForgeProjectFileUploadFinalizeResponse; exports.DTOForgeProjectFileUploadPayload = DTOForgeProjectFileUploadPayload; exports.DTOForgeProjectFileUploadPayloadItem = DTOForgeProjectFileUploadPayloadItem; exports.DTOForgeProjectFileUploadResponse = DTOForgeProjectFileUploadResponse; exports.DTOForgeProjectInvitation = DTOForgeProjectInvitation; exports.DTOForgeProjectInvitationCreateResponse = DTOForgeProjectInvitationCreateResponse; exports.DTOForgeProjectInvitationGetResponse = DTOForgeProjectInvitationGetResponse; exports.DTOForgeProjectInvitationRemoveResponse = DTOForgeProjectInvitationRemoveResponse; exports.DTOForgeProjectInvitationUpdateResponse = DTOForgeProjectInvitationUpdateResponse; exports.DTOForgeProjectInvitationsListResponse = DTOForgeProjectInvitationsListResponse; exports.DTOForgeProjectIteration = DTOForgeProjectIteration; exports.DTOForgeProjectIterationListResponse = DTOForgeProjectIterationListResponse; exports.DTOForgeProjectIterationMergeMeta = DTOForgeProjectIterationMergeMeta; exports.DTOForgeProjectIterationTagSet = DTOForgeProjectIterationTagSet; exports.DTOForgeProjectIterationUpdated = DTOForgeProjectIterationUpdated; exports.DTOForgeProjectListResponse = DTOForgeProjectListResponse; exports.DTOForgeProjectMember = DTOForgeProjectMember; exports.DTOForgeProjectMemberCreateResponse = DTOForgeProjectMemberCreateResponse; exports.DTOForgeProjectMemberDeleted = DTOForgeProjectMemberDeleted; exports.DTOForgeProjectMemberGetResponse = DTOForgeProjectMemberGetResponse; exports.DTOForgeProjectMemberListQuery = DTOForgeProjectMemberListQuery; exports.DTOForgeProjectMemberRemoveResponse = DTOForgeProjectMemberRemoveResponse; exports.DTOForgeProjectMemberRole = DTOForgeProjectMemberRole; exports.DTOForgeProjectMemberUpdateResponse = DTOForgeProjectMemberUpdateResponse; exports.DTOForgeProjectMemberUpdated = DTOForgeProjectMemberUpdated; exports.DTOForgeProjectMembersCreated = DTOForgeProjectMembersCreated; exports.DTOForgeProjectMembersListResponse = DTOForgeProjectMembersListResponse; exports.DTOForgeProjectPublishedFeature = DTOForgeProjectPublishedFeature; exports.DTOForgeProjectPublishedFeatureGetResponse = DTOForgeProjectPublishedFeatureGetResponse; exports.DTOForgeProjectResponse = DTOForgeProjectResponse; exports.DTOForgeProjectRole = DTOForgeProjectRole; exports.DTOForgeProjectRoom = DTOForgeProjectRoom; exports.DTOForgeProjectRoomEvent = DTOForgeProjectRoomEvent; exports.DTOForgeProjectRoomResponse = DTOForgeProjectRoomResponse; exports.DTOForgeProjectTheme = DTOForgeProjectTheme; exports.DTOForgeProjectUpdate = DTOForgeProjectUpdate; exports.DTOForgeProjectUpdated = DTOForgeProjectUpdated; exports.DTOForgeRelation = DTOForgeRelation; exports.DTOForgeRelationCreate = DTOForgeRelationCreate; exports.DTOForgeRelationDelete = DTOForgeRelationDelete; exports.DTOForgeRelationListInput = DTOForgeRelationListInput; exports.DTOForgeRelationListResponse = DTOForgeRelationListResponse; exports.DTOForgeRelationType = DTOForgeRelationType; exports.DTOForgeSection = DTOForgeSection; exports.DTOForgeSectionCreateInput = DTOForgeSectionCreateInput; exports.DTOForgeSectionDeleteInput = DTOForgeSectionDeleteInput; exports.DTOForgeSectionItemMoveInput = DTOForgeSectionItemMoveInput; exports.DTOForgeSectionMoveInput = DTOForgeSectionMoveInput; exports.DTOForgeSectionUpdateInput = DTOForgeSectionUpdateInput; exports.DTOForgeSpecArtifact = DTOForgeSpecArtifact; exports.DTOForgeThemeKnownPreset = DTOForgeThemeKnownPreset; exports.DTOForgeTokenThemeSet = DTOForgeTokenThemeSet; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetBlockDefinitionsQuery = DTOGetBlockDefinitionsQuery; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGetForgeIterationMessageResponse = DTOGetForgeIterationMessageResponse; exports.DTOGetForgeProjectIterationResponse = DTOGetForgeProjectIterationResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOIPWhitelist = DTOIPWhitelist; exports.DTOIPWhitelistEntry = DTOIPWhitelistEntry; exports.DTOIPWhitelistResponse = DTOIPWhitelistResponse; exports.DTOIPWhitelistUpdate = DTOIPWhitelistUpdate; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOKeepAliveFeatureSandboxResponse = DTOKeepAliveFeatureSandboxResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOLoginScreenSettings = DTOLoginScreenSettings; exports.DTOLoginScreenSettingsResponse = DTOLoginScreenSettingsResponse; exports.DTOLoginScreenSettingsUpdate = DTOLoginScreenSettingsUpdate; exports.DTOMCPStream = DTOMCPStream; exports.DTOMCPStreamResponse = DTOMCPStreamResponse; exports.DTOMCPStreamUpdateInput = DTOMCPStreamUpdateInput; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONotificationBase = DTONotificationBase; exports.DTONotificationChannel = DTONotificationChannel; exports.DTONotificationChatMentionPayload = DTONotificationChatMentionPayload; exports.DTONotificationCreateInput = DTONotificationCreateInput; exports.DTONotificationProjectDocumentCommentPayload = DTONotificationProjectDocumentCommentPayload; exports.DTONotificationProjectInvitationPayload = DTONotificationProjectInvitationPayload; exports.DTONotificationType = DTONotificationType; exports.DTONpmRegistryAccessTokenResponse = DTONpmRegistryAccessTokenResponse; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOObjectMetadata = DTOObjectMetadata; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPageRedirect = DTOPageRedirect; exports.DTOPageRedirectCreateBody = DTOPageRedirectCreateBody; exports.DTOPageRedirectDeleteResponse = DTOPageRedirectDeleteResponse; exports.DTOPageRedirectListResponse = DTOPageRedirectListResponse; exports.DTOPageRedirectResponse = DTOPageRedirectResponse; exports.DTOPageRedirectUpdateBody = DTOPageRedirectUpdateBody; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineExporterQuery = DTOPipelineExporterQuery; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPortalSettings = DTOPortalSettings; exports.DTOPortalSettingsGetResponse = DTOPortalSettingsGetResponse; exports.DTOPortalSettingsSidebar = DTOPortalSettingsSidebar; exports.DTOPortalSettingsSidebarLink = DTOPortalSettingsSidebarLink; exports.DTOPortalSettingsSidebarSection = DTOPortalSettingsSidebarSection; exports.DTOPortalSettingsTheme = DTOPortalSettingsTheme; exports.DTOPortalSettingsUpdatePayload = DTOPortalSettingsUpdatePayload; exports.DTOProduct = DTOProduct; exports.DTOProductCode = DTOProductCode; exports.DTOProductPrice = DTOProductPrice; exports.DTOProjectContextOverride = DTOProjectContextOverride; exports.DTOProjectContextOverrideInput = DTOProjectContextOverrideInput; exports.DTOProjectContextOverrideResponse = DTOProjectContextOverrideResponse; exports.DTOProvisionFeatureSandboxInput = DTOProvisionFeatureSandboxInput; exports.DTOProvisionFeatureSandboxResponse = DTOProvisionFeatureSandboxResponse; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTOPublishedDocAnalyticsComparisonData = DTOPublishedDocAnalyticsComparisonData; exports.DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocPageAnalyticsComparisonData; exports.DTOPublishedDocPageVisitData = DTOPublishedDocPageVisitData; exports.DTOPublishedDocVisitData = DTOPublishedDocVisitData; exports.DTOPublishedDocVisitHeatMapWeek = DTOPublishedDocVisitHeatMapWeek; exports.DTORemoveForgeProjectInvitation = DTORemoveForgeProjectInvitation; exports.DTORemoveForgeProjectMember = DTORemoveForgeProjectMember; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOSandboxError = DTOSandboxError; exports.DTOSandboxTemplate = DTOSandboxTemplate; exports.DTOSandboxTemplateBuild = DTOSandboxTemplateBuild; exports.DTOSandboxTemplateBuildCreateInput = DTOSandboxTemplateBuildCreateInput; exports.DTOSandboxTemplateBuildCreateResponse = DTOSandboxTemplateBuildCreateResponse; exports.DTOSandboxTemplateBuildCreated = DTOSandboxTemplateBuildCreated; exports.DTOSandboxTemplateBuildFinalizeResponse = DTOSandboxTemplateBuildFinalizeResponse; exports.DTOSandboxTemplateBuildFinished = DTOSandboxTemplateBuildFinished; exports.DTOSandboxTemplateBuildResponse = DTOSandboxTemplateBuildResponse; exports.DTOSandboxTemplateBuildTriggerInput = DTOSandboxTemplateBuildTriggerInput; exports.DTOSandboxTemplateFile = DTOSandboxTemplateFile; exports.DTOSandboxTemplateListResponse = DTOSandboxTemplateListResponse; exports.DTOSandboxTemplatePreset = DTOSandboxTemplatePreset; exports.DTOSandboxTemplateQuery = DTOSandboxTemplateQuery; exports.DTOSandboxTemplateResponse = DTOSandboxTemplateResponse; exports.DTOSandboxTemplateVersion = DTOSandboxTemplateVersion; exports.DTOSandboxTemplateVersionCreated = DTOSandboxTemplateVersionCreated; exports.DTOSandboxTemplateVersionDetail = DTOSandboxTemplateVersionDetail; exports.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryQuery = DTOStorybookEntryQuery; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOStorybookSite = DTOStorybookSite; exports.DTOStorybookSiteListQuery = DTOStorybookSiteListQuery; exports.DTOStorybookSiteListResponse = DTOStorybookSiteListResponse; exports.DTOStorybookSiteUploadPayload = DTOStorybookSiteUploadPayload; exports.DTOStorybookSiteUploadResponse = DTOStorybookSiteUploadResponse; exports.DTOStorybookSiteVersion = DTOStorybookSiteVersion; exports.DTOStorybookSiteVersionResponse = DTOStorybookSiteVersionResponse; exports.DTOStorybookSourceUpdatePayload = DTOStorybookSourceUpdatePayload; exports.DTOStorybookUploadStatus = DTOStorybookUploadStatus; exports.DTOSubscription = DTOSubscription; exports.DTOSubscriptionResponse = DTOSubscriptionResponse; exports.DTOSubscriptionUpcomingChange = DTOSubscriptionUpcomingChange; exports.DTOSubscriptionUpdateInput = DTOSubscriptionUpdateInput; exports.DTOSubscriptionUpdatePreview = DTOSubscriptionUpdatePreview; exports.DTOSubscriptionUpdatePreviewResponse = DTOSubscriptionUpdatePreviewResponse; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOThemesListQuery = DTOThemesListQuery; exports.DTOThread = DTOThread; exports.DTOThreadAgentResponseTracker = DTOThreadAgentResponseTracker; exports.DTOThreadAgentType = DTOThreadAgentType; exports.DTOThreadEvent = DTOThreadEvent; exports.DTOThreadEventMessagesSent = DTOThreadEventMessagesSent; exports.DTOThreadEventMessagesUpdated = DTOThreadEventMessagesUpdated; exports.DTOThreadEventReactionsDeleted = DTOThreadEventReactionsDeleted; exports.DTOThreadEventReactionsSent = DTOThreadEventReactionsSent; exports.DTOThreadMessage = DTOThreadMessage; exports.DTOThreadMessageAgentSender = DTOThreadMessageAgentSender; exports.DTOThreadMessageAnnotation = DTOThreadMessageAnnotation; exports.DTOThreadMessageAnnotations = DTOThreadMessageAnnotations; exports.DTOThreadMessageAttachments = DTOThreadMessageAttachments; exports.DTOThreadMessageAttachmentsCreateInput = DTOThreadMessageAttachmentsCreateInput; exports.DTOThreadMessageCreateInput = DTOThreadMessageCreateInput; exports.DTOThreadMessageFinalizeInput = DTOThreadMessageFinalizeInput; exports.DTOThreadMessageListResponse = DTOThreadMessageListResponse; exports.DTOThreadMessageResponse = DTOThreadMessageResponse; exports.DTOThreadMessageRetryInput = DTOThreadMessageRetryInput; exports.DTOThreadMessageSender = DTOThreadMessageSender; exports.DTOThreadMessageSystemSender = DTOThreadMessageSystemSender; exports.DTOThreadMessageUpdateInput = DTOThreadMessageUpdateInput; exports.DTOThreadMessageUserSender = DTOThreadMessageUserSender; exports.DTOThreadPromptState = DTOThreadPromptState; exports.DTOThreadReaction = DTOThreadReaction; exports.DTOThreadReactionCreateInput = DTOThreadReactionCreateInput; exports.DTOThreadReactionDeleteInput = DTOThreadReactionDeleteInput; exports.DTOThreadReactionResponse = DTOThreadReactionResponse; exports.DTOThreadSubjectType = DTOThreadSubjectType; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTrailEvent = DTOTrailEvent; exports.DTOTrailEventClientCreate = DTOTrailEventClientCreate; exports.DTOTrailEventCreate = DTOTrailEventCreate; exports.DTOTrailEventListInput = DTOTrailEventListInput; exports.DTOTrailEventListResponse = DTOTrailEventListResponse; exports.DTOTrailEventType = DTOTrailEventType; exports.DTOTrailEventWithDetails = DTOTrailEventWithDetails; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUGetForgeAgentResponse = DTOUGetForgeAgentResponse; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageDocumentInputV2 = DTOUpdateDocumentationPageDocumentInputV2; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateFeatureSandbox = DTOUpdateFeatureSandbox; exports.DTOUpdateForgeAgent = DTOUpdateForgeAgent; exports.DTOUpdateForgeAgentResponse = DTOUpdateForgeAgentResponse; exports.DTOUpdateForgeArtifact = DTOUpdateForgeArtifact; exports.DTOUpdateForgeArtifactResponse = DTOUpdateForgeArtifactResponse; exports.DTOUpdateForgeBuildArtifact = DTOUpdateForgeBuildArtifact; exports.DTOUpdateForgeFigmaArtifact = DTOUpdateForgeFigmaArtifact; exports.DTOUpdateForgeFileArtifact = DTOUpdateForgeFileArtifact; exports.DTOUpdateForgeIterationMessage = DTOUpdateForgeIterationMessage; exports.DTOUpdateForgeIterationMessageResponse = DTOUpdateForgeIterationMessageResponse; exports.DTOUpdateForgeParticipant = DTOUpdateForgeParticipant; exports.DTOUpdateForgeParticipantResponse = DTOUpdateForgeParticipantResponse; exports.DTOUpdateForgeProjectContext = DTOUpdateForgeProjectContext; exports.DTOUpdateForgeProjectInvitation = DTOUpdateForgeProjectInvitation; exports.DTOUpdateForgeProjectIteration = DTOUpdateForgeProjectIteration; exports.DTOUpdateForgeProjectIterationResponse = DTOUpdateForgeProjectIterationResponse; exports.DTOUpdateForgeProjectMember = DTOUpdateForgeProjectMember; exports.DTOUpdateForgeSpecArtifact = DTOUpdateForgeSpecArtifact; exports.DTOUpdateRegistryInput = DTOUpdateRegistryInput; exports.DTOUpdateRegistryOutput = DTOUpdateRegistryOutput; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUploadUrlItem = DTOUploadUrlItem; exports.DTOUser = DTOUser; exports.DTOUserDesignSystemsResponse = DTOUserDesignSystemsResponse; exports.DTOUserEmailSettings = DTOUserEmailSettings; exports.DTOUserEmailSettingsUpdatePayload = DTOUserEmailSettingsUpdatePayload; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettings = DTOUserNotificationSettings; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserPortalTheme = DTOUserPortalTheme; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserSource = DTOUserSource; exports.DTOUserTheme = DTOUserTheme; exports.DTOUserUpdatePayload = DTOUserUpdatePayload; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceBilledSeatType = DTOWorkspaceBilledSeatType; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceDefaultProjectAccessMode = DTOWorkspaceDefaultProjectAccessMode; exports.DTOWorkspaceDefaultProjectRole = DTOWorkspaceDefaultProjectRole; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitation = DTOWorkspaceInvitation; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DTOWorkspaceRoomEvent = DTOWorkspaceRoomEvent; exports.DTOWorkspaceSeatType = DTOWorkspaceSeatType; exports.DTOWorkspaceStats = DTOWorkspaceStats; exports.DTOWorkspaceUntypedData = DTOWorkspaceUntypedData; exports.DTOWorkspaceUntypedDataCreatePayload = DTOWorkspaceUntypedDataCreatePayload; exports.DTOWorkspaceUntypedDataListResponse = DTOWorkspaceUntypedDataListResponse; exports.DTOWorkspaceUntypedDataResponse = DTOWorkspaceUntypedDataResponse; exports.DTOWorkspaceUntypedDataUpdatePayload = DTOWorkspaceUntypedDataUpdatePayload; exports.DesignSystemAnalyticsEndpoint = DesignSystemAnalyticsEndpoint; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemCodeSnapshotsEndpoint = DesignSystemCodeSnapshotsEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemFilesEndpoint = DesignSystemFilesEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemPageRedirectsEndpoint = DesignSystemPageRedirectsEndpoint; exports.DesignSystemPipelinesEndpoint = DesignSystemPipelinesEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FeatureRoomBaseYDoc = FeatureRoomBaseYDoc; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaNodeStructuresEndpoint = FigmaNodeStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FilesEndpoint = FilesEndpoint; exports.ForgeAgentsEndpoint = ForgeAgentsEndpoint; exports.ForgeArtifactsEndpoint = ForgeArtifactsEndpoint; exports.ForgeDocumentsEndpoint = ForgeDocumentsEndpoint; exports.ForgeEndpoint = ForgeEndpoint; exports.ForgeFeatureArtifactsEndpoint = ForgeFeatureArtifactsEndpoint; exports.ForgeFeatureIterationTagsEndpoint = ForgeFeatureIterationTagsEndpoint; exports.ForgeFeatureIterationsEndpoint = ForgeFeatureIterationsEndpoint; exports.ForgeFeatureMessagesEndpoint = ForgeFeatureMessagesEndpoint; exports.ForgeFigmaNodeLatestVersion = ForgeFigmaNodeLatestVersion; exports.ForgeMemoryEndpoint = ForgeMemoryEndpoint; exports.ForgeProjectContentRepository = ForgeProjectContentRepository; exports.ForgeProjectContextsEndpoint = ForgeProjectContextsEndpoint; exports.ForgeProjectFeaturesEndpoint = ForgeProjectFeaturesEndpoint; exports.ForgeProjectFilesEndpoint = ForgeProjectFilesEndpoint; exports.ForgeProjectInvitationsEndpoint = ForgeProjectInvitationsEndpoint; exports.ForgeProjectIterationsEndpoint = ForgeProjectIterationsEndpoint; exports.ForgeProjectMembersEndpoint = ForgeProjectMembersEndpoint; exports.ForgeProjectRoomBaseYDoc = ForgeProjectRoomBaseYDoc; exports.ForgeProjectsEndpoint = ForgeProjectsEndpoint; exports.FormattedCollections = FormattedCollections; exports.FrontendFeatureRoomYDoc = FrontendFeatureRoomYDoc; exports.FrontendThreadRoomYDoc = FrontendThreadRoomYDoc; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.GitDestinationOptions = GitDestinationOptions; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.IntegrationOauthCallbackState = IntegrationOauthCallbackState; exports.IntegrationOauthPlatform = IntegrationOauthPlatform; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalDocsElementActionExecutor = LocalDocsElementActionExecutor; exports.LocalProjectActionExecutor = LocalProjectActionExecutor; exports.MCPStreamsEndpoint = MCPStreamsEndpoint; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.SandboxTemplateBuildsEndpoint = SandboxTemplateBuildsEndpoint; exports.SandboxTemplatesEndpoint = SandboxTemplatesEndpoint; exports.SandboxesEndpoint = SandboxesEndpoint; exports.StorybookEntriesEndpoint = StorybookEntriesEndpoint; exports.StorybookSitesEndpoint = StorybookSitesEndpoint; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.ThreadRoomBaseYDoc = ThreadRoomBaseYDoc; exports.ThreadsEndpoint = ThreadsEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableCollectionsSchema = VariableCollectionsSchema; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VariablesSchema = VariablesSchema; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceBillingEndpoint = WorkspaceBillingEndpoint; exports.WorkspaceChatThreadsEndpoint = WorkspaceChatThreadsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceIntegrationsEndpoint = WorkspaceIntegrationsEndpoint; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspaceNpmRegistryEndpoint = WorkspaceNpmRegistryEndpoint; exports.WorkspaceSubscriptionEndpoint = WorkspaceSubscriptionEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.YJSKeyValueStorageV1 = YJSKeyValueStorageV1; exports.YJSKeyValueStorageV2 = YJSKeyValueStorageV2; exports.applyActionsLocally = applyActionsLocally; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.applyProjectActionsLocally = applyProjectActionsLocally; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationAnalyticsToComparisonDto = documentationAnalyticsToComparisonDto; exports.documentationAnalyticsToGlobalDto = documentationAnalyticsToGlobalDto; exports.documentationAnalyticsToHeatMapDto = documentationAnalyticsToHeatMapDto; exports.documentationAnalyticsToPageComparisonDto = documentationAnalyticsToPageComparisonDto; exports.documentationAnalyticsToPageDto = documentationAnalyticsToPageDto; exports.documentationConfigurationToDto = documentationConfigurationToDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.exhaustiveInvalidUriPaths = exhaustiveInvalidUriPaths; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.isValidRedirectPath = isValidRedirectPath; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.zodQueryBoolean = zodQueryBoolean;
|
|
22618
|
+
|
|
22619
|
+
|
|
22620
|
+
|
|
22621
|
+
|
|
22622
|
+
|
|
22623
|
+
|
|
22624
|
+
|
|
22625
|
+
|
|
22626
|
+
|
|
22627
|
+
|
|
22628
|
+
|
|
22629
|
+
|
|
22630
|
+
|
|
22631
|
+
|
|
22632
|
+
|
|
22633
|
+
|
|
22634
|
+
|
|
22635
|
+
|
|
22636
|
+
|
|
22637
|
+
|
|
22638
|
+
|
|
22639
|
+
|
|
22640
|
+
|
|
22641
|
+
|
|
22642
|
+
|
|
22643
|
+
|
|
22644
|
+
|
|
22645
|
+
|
|
22646
|
+
|
|
22647
|
+
exports.AuthTokensEndpoint = AuthTokensEndpoint; exports.BackendFeatureRoomYDoc = BackendFeatureRoomYDoc; exports.BackendForgeProjectRoomYDoc = BackendForgeProjectRoomYDoc; exports.BackendThreadRoomYDoc = BackendThreadRoomYDoc; exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.ChatThreadMessagesEndpoint = ChatThreadMessagesEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAccessToken = DTOAccessToken; exports.DTOAccessTokenCreatePayload = DTOAccessTokenCreatePayload; exports.DTOAccessTokenFull = DTOAccessTokenFull; exports.DTOAccessTokenFullResponse = DTOAccessTokenFullResponse; exports.DTOAccessTokenListResponse = DTOAccessTokenListResponse; exports.DTOAccessTokenResponse = DTOAccessTokenResponse; exports.DTOAddMembersToForgeProject = DTOAddMembersToForgeProject; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAssetScope = DTOAssetScope; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOAvailableProductListResponse = DTOAvailableProductListResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBillingCheckoutCreditsTopUpInput = DTOBillingCheckoutCreditsTopUpInput; exports.DTOBillingCheckoutInput = DTOBillingCheckoutInput; exports.DTOBillingCheckoutMode = DTOBillingCheckoutMode; exports.DTOBillingCheckoutOldInput = DTOBillingCheckoutOldInput; exports.DTOBillingCheckoutResponse = DTOBillingCheckoutResponse; exports.DTOBillingCheckoutSubscriptionChangeInput = DTOBillingCheckoutSubscriptionChangeInput; exports.DTOBillingCreditsCheckIfCanSpendResponse = DTOBillingCreditsCheckIfCanSpendResponse; exports.DTOBillingCreditsSpendAction = DTOBillingCreditsSpendAction; exports.DTOBillingCreditsSpendInput = DTOBillingCreditsSpendInput; exports.DTOBillingCreditsSpendResponse = DTOBillingCreditsSpendResponse; exports.DTOBillingInterval = DTOBillingInterval; exports.DTOBillingSubscriptionChangePreviewInput = DTOBillingSubscriptionChangePreviewInput; exports.DTOBillingSupportedModels = DTOBillingSupportedModels; exports.DTOBillingUsageEntry = DTOBillingUsageEntry; exports.DTOBillingUsageSummary = DTOBillingUsageSummary; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCodeComponent = DTOCodeComponent; exports.DTOCodeComponentDocFile = DTOCodeComponentDocFile; exports.DTOCodeComponentListResponse = DTOCodeComponentListResponse; exports.DTOCodeComponentMarkdown = DTOCodeComponentMarkdown; exports.DTOCodeComponentMarkdownQuery = DTOCodeComponentMarkdownQuery; exports.DTOCodeComponentMarkdownResponse = DTOCodeComponentMarkdownResponse; exports.DTOCodeComponentPropUsage = DTOCodeComponentPropUsage; exports.DTOCodeComponentProperty = DTOCodeComponentProperty; exports.DTOCodeComponentReference = DTOCodeComponentReference; exports.DTOCodeComponentStorybookFile = DTOCodeComponentStorybookFile; exports.DTOCodeComponentUsage = DTOCodeComponentUsage; exports.DTOCodeComponentUsageResponse = DTOCodeComponentUsageResponse; exports.DTOCodeHistoryQuery = DTOCodeHistoryQuery; exports.DTOCodeHistoryRepositoryFilter = DTOCodeHistoryRepositoryFilter; exports.DTOCodeHistoryResponse = DTOCodeHistoryResponse; exports.DTOCodeHistorySnapshot = DTOCodeHistorySnapshot; exports.DTOCodeScanDeleteResponse = DTOCodeScanDeleteResponse; exports.DTOCodeScanFinished = DTOCodeScanFinished; exports.DTOCodeScanListItem = DTOCodeScanListItem; exports.DTOCodeScanListResponse = DTOCodeScanListResponse; exports.DTOCodeScanUploadedBy = DTOCodeScanUploadedBy; exports.DTOCodeSnapshotFinalizePayload = DTOCodeSnapshotFinalizePayload; exports.DTOCodeSnapshotFinalizeResponse = DTOCodeSnapshotFinalizeResponse; exports.DTOCodeSnapshotProcessingRunResponse = DTOCodeSnapshotProcessingRunResponse; exports.DTOCodeSnapshotProcessingRunStatus = DTOCodeSnapshotProcessingRunStatus; exports.DTOCodeSnapshotProcessingRunStatusItem = DTOCodeSnapshotProcessingRunStatusItem; exports.DTOCodeSnapshotProcessingRunStatusResponse = DTOCodeSnapshotProcessingRunStatusResponse; exports.DTOCodeSnapshotScannerType = DTOCodeSnapshotScannerType; exports.DTOCodeSnapshotStartProcessingRunPayload = DTOCodeSnapshotStartProcessingRunPayload; exports.DTOCodeSnapshotUploadInitPayload = DTOCodeSnapshotUploadInitPayload; exports.DTOCodeSnapshotUploadInitResponse = DTOCodeSnapshotUploadInitResponse; exports.DTOCodeSnapshotUploadInitScannerType = DTOCodeSnapshotUploadInitScannerType; exports.DTOCollectionOrigin = DTOCollectionOrigin; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateFeatureSandbox = DTOCreateFeatureSandbox; exports.DTOCreateForgeAgent = DTOCreateForgeAgent; exports.DTOCreateForgeAgentResponse = DTOCreateForgeAgentResponse; exports.DTOCreateForgeArtifact = DTOCreateForgeArtifact; exports.DTOCreateForgeArtifactResponse = DTOCreateForgeArtifactResponse; exports.DTOCreateForgeBuildArtifact = DTOCreateForgeBuildArtifact; exports.DTOCreateForgeFigmaArtifact = DTOCreateForgeFigmaArtifact; exports.DTOCreateForgeFileArtifact = DTOCreateForgeFileArtifact; exports.DTOCreateForgeIterationMessage = DTOCreateForgeIterationMessage; exports.DTOCreateForgeIterationMessageResponse = DTOCreateForgeIterationMessageResponse; exports.DTOCreateForgeParticipant = DTOCreateForgeParticipant; exports.DTOCreateForgeParticipantResponse = DTOCreateForgeParticipantResponse; exports.DTOCreateForgeProjectContext = DTOCreateForgeProjectContext; exports.DTOCreateForgeProjectInvitation = DTOCreateForgeProjectInvitation; exports.DTOCreateForgeProjectIteration = DTOCreateForgeProjectIteration; exports.DTOCreateForgeProjectIterationResponse = DTOCreateForgeProjectIterationResponse; exports.DTOCreateForgeProjectMember = DTOCreateForgeProjectMember; exports.DTOCreateForgeSpecArtifact = DTOCreateForgeSpecArtifact; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTOCreditBalance = DTOCreditBalance; exports.DTOCreditsPrices = DTOCreditsPrices; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceStorybook = DTODataSourceStorybook; exports.DTODataSourceStorybookCreatePayload = DTODataSourceStorybookCreatePayload; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODataSourcesStorybookResponse = DTODataSourcesStorybookResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteForgeAgentResponse = DTODeleteForgeAgentResponse; exports.DTODeleteForgeArtifactResponse = DTODeleteForgeArtifactResponse; exports.DTODeleteForgeIterationMessageResponse = DTODeleteForgeIterationMessageResponse; exports.DTODeleteForgeParticipantResponse = DTODeleteForgeParticipantResponse; exports.DTODeleteForgeProjectIterationResponse = DTODeleteForgeProjectIterationResponse; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemPipelineCreateBody = DTODesignSystemPipelineCreateBody; exports.DTODesignSystemPipelineListQuery = DTODesignSystemPipelineListQuery; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemUpdateSwitcherInput = DTODesignSystemUpdateSwitcherInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionRoom = DTODesignSystemVersionRoom; exports.DTODesignSystemVersionRoomResponse = DTODesignSystemVersionRoomResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationAnalyticsDiffPayload = DTODocumentationAnalyticsDiffPayload; exports.DTODocumentationAnalyticsRequest = DTODocumentationAnalyticsRequest; exports.DTODocumentationAnalyticsTimeFrame = DTODocumentationAnalyticsTimeFrame; exports.DTODocumentationAnalyticsTimeFrameComparison = DTODocumentationAnalyticsTimeFrameComparison; exports.DTODocumentationConfiguration = DTODocumentationConfiguration; exports.DTODocumentationConfigurationResponse = DTODocumentationConfigurationResponse; exports.DTODocumentationContent = DTODocumentationContent; exports.DTODocumentationContentQuery = DTODocumentationContentQuery; exports.DTODocumentationContentResponse = DTODocumentationContentResponse; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationMinimalPage = DTODocumentationMinimalPage; exports.DTODocumentationMinimalPageListResponse = DTODocumentationMinimalPageListResponse; exports.DTODocumentationPageAnalyticsDifference = DTODocumentationPageAnalyticsDifference; exports.DTODocumentationPageAnalyticsResponse = DTODocumentationPageAnalyticsResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDependencies = DTODocumentationPageDependencies; exports.DTODocumentationPageDependenciesGetResponse = DTODocumentationPageDependenciesGetResponse; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageIntervalDifferenceResponse = DTODocumentationPageIntervalDifferenceResponse; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageUpdateDocumentActionInputV2 = DTODocumentationPageUpdateDocumentActionInputV2; exports.DTODocumentationPageUpdateDocumentActionOutputV2 = DTODocumentationPageUpdateDocumentActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationSearchIndexResponse = DTODocumentationSearchIndexResponse; exports.DTODocumentationSearchQuery = DTODocumentationSearchQuery; exports.DTODocumentationSearchResponse = DTODocumentationSearchResponse; exports.DTODocumentationSearchResult = DTODocumentationSearchResult; exports.DTODocumentationSettings = DTODocumentationSettings; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; exports.DTOElementPropertyValuesEditActionInput = DTOElementPropertyValuesEditActionInput; exports.DTOElementPropertyValuesEditActionOutput = DTOElementPropertyValuesEditActionOutput; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOEvent = DTOEvent; exports.DTOEventDataSourcesImported = DTOEventDataSourcesImported; exports.DTOEventFigmaNodesRendered = DTOEventFigmaNodesRendered; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreateInput = DTOExportJobCreateInput; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterDeprecationInput = DTOExporterDeprecationInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionCode = DTOExporterPropertyDefinitionCode; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterPropertyValue = DTOExporterPropertyValue; exports.DTOExporterPropertyValueMap = DTOExporterPropertyValueMap; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFVPMigrationsCollectionKeysPayload = DTOFVPMigrationsCollectionKeysPayload; exports.DTOFeatureAgentResponseTracker = DTOFeatureAgentResponseTracker; exports.DTOFeatureAgentWorkFinalizeInput = DTOFeatureAgentWorkFinalizeInput; exports.DTOFeatureArtifact = DTOFeatureArtifact; exports.DTOFeatureArtifactCreateInput = DTOFeatureArtifactCreateInput; exports.DTOFeatureArtifactDeleteInput = DTOFeatureArtifactDeleteInput; exports.DTOFeatureArtifactGetByIdParam = DTOFeatureArtifactGetByIdParam; exports.DTOFeatureArtifactListQuery = DTOFeatureArtifactListQuery; exports.DTOFeatureArtifactListResponse = DTOFeatureArtifactListResponse; exports.DTOFeatureArtifactResponse = DTOFeatureArtifactResponse; exports.DTOFeatureArtifactWithContentResponse = DTOFeatureArtifactWithContentResponse; exports.DTOFeatureEvent = DTOFeatureEvent; exports.DTOFeatureEventMessagesSent = DTOFeatureEventMessagesSent; exports.DTOFeatureEventReactionsDeleted = DTOFeatureEventReactionsDeleted; exports.DTOFeatureEventReactionsSent = DTOFeatureEventReactionsSent; exports.DTOFeatureIteration = DTOFeatureIteration; exports.DTOFeatureIterationArtifactDiff = DTOFeatureIterationArtifactDiff; exports.DTOFeatureIterationArtifactsDiff = DTOFeatureIterationArtifactsDiff; exports.DTOFeatureIterationCreateInput = DTOFeatureIterationCreateInput; exports.DTOFeatureIterationError = DTOFeatureIterationError; exports.DTOFeatureIterationErrorType = DTOFeatureIterationErrorType; exports.DTOFeatureIterationListResponse = DTOFeatureIterationListResponse; exports.DTOFeatureIterationPromoteInput = DTOFeatureIterationPromoteInput; exports.DTOFeatureIterationResponse = DTOFeatureIterationResponse; exports.DTOFeatureIterationSetLatestInput = DTOFeatureIterationSetLatestInput; exports.DTOFeatureIterationState = DTOFeatureIterationState; exports.DTOFeatureIterationTag = DTOFeatureIterationTag; exports.DTOFeatureIterationTagCreateInput = DTOFeatureIterationTagCreateInput; exports.DTOFeatureIterationTagListResponse = DTOFeatureIterationTagListResponse; exports.DTOFeatureIterationTagResponse = DTOFeatureIterationTagResponse; exports.DTOFeatureIterationUpdateArtifactsByMessageInput = DTOFeatureIterationUpdateArtifactsByMessageInput; exports.DTOFeatureIterationUpdateArtifactsInput = DTOFeatureIterationUpdateArtifactsInput; exports.DTOFeatureIterationUpdateInput = DTOFeatureIterationUpdateInput; exports.DTOFeatureIterationValidateInput = DTOFeatureIterationValidateInput; exports.DTOFeatureIterationValidateResponse = DTOFeatureIterationValidateResponse; exports.DTOFeatureMessage = DTOFeatureMessage; exports.DTOFeatureMessageAgentSender = DTOFeatureMessageAgentSender; exports.DTOFeatureMessageAttachments = DTOFeatureMessageAttachments; exports.DTOFeatureMessageCreateInput = DTOFeatureMessageCreateInput; exports.DTOFeatureMessageListResponse = DTOFeatureMessageListResponse; exports.DTOFeatureMessageReaction = DTOFeatureMessageReaction; exports.DTOFeatureMessageReactionCreateInput = DTOFeatureMessageReactionCreateInput; exports.DTOFeatureMessageReactionDeleteInput = DTOFeatureMessageReactionDeleteInput; exports.DTOFeatureMessageReactionResponse = DTOFeatureMessageReactionResponse; exports.DTOFeatureMessageResponse = DTOFeatureMessageResponse; exports.DTOFeatureMessageSender = DTOFeatureMessageSender; exports.DTOFeatureMessageSystemSender = DTOFeatureMessageSystemSender; exports.DTOFeatureMessageUpdateInput = DTOFeatureMessageUpdateInput; exports.DTOFeatureMessageUserSender = DTOFeatureMessageUserSender; exports.DTOFeaturePublishedStateUpdateInput = DTOFeaturePublishedStateUpdateInput; exports.DTOFeatureSandbox = DTOFeatureSandbox; exports.DTOFeatureSandboxListResponse = DTOFeatureSandboxListResponse; exports.DTOFeatureUpdateThemeInput = DTOFeatureUpdateThemeInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaExportNodeConfiguration = DTOFigmaExportNodeConfiguration; exports.DTOFigmaExportNodeFormat = DTOFigmaExportNodeFormat; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeStructure = DTOFigmaNodeStructure; exports.DTOFigmaNodeStructureDetail = DTOFigmaNodeStructureDetail; exports.DTOFigmaNodeStructureDetailResponse = DTOFigmaNodeStructureDetailResponse; exports.DTOFigmaNodeStructureListResponse = DTOFigmaNodeStructureListResponse; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFigmaSourceUpdatePayload = DTOFigmaSourceUpdatePayload; exports.DTOFile = DTOFile; exports.DTOFileFigmaRenderMode = DTOFileFigmaRenderMode; exports.DTOFileFinalizeBulkPayload = DTOFileFinalizeBulkPayload; exports.DTOFileFinalizeBulkResponse = DTOFileFinalizeBulkResponse; exports.DTOFileListResponse = DTOFileListResponse; exports.DTOFileReference = DTOFileReference; exports.DTOFileResponseItem = DTOFileResponseItem; exports.DTOFileSource = DTOFileSource; exports.DTOFileSourceFigma = DTOFileSourceFigma; exports.DTOFileSourceUpload = DTOFileSourceUpload; exports.DTOFileUploadBulkPayload = DTOFileUploadBulkPayload; exports.DTOFileUploadBulkResponse = DTOFileUploadBulkResponse; exports.DTOFileUploadFinalizePayload = DTOFileUploadFinalizePayload; exports.DTOFileUploadFinalizeResponse = DTOFileUploadFinalizeResponse; exports.DTOFileUploadItem = DTOFileUploadItem; exports.DTOFileUploadPayload = DTOFileUploadPayload; exports.DTOFileUploadResponse = DTOFileUploadResponse; exports.DTOFileUploadResponseItem = DTOFileUploadResponseItem; exports.DTOFilesGetPayload = DTOFilesGetPayload; exports.DTOFilesGetQuery = DTOFilesGetQuery; exports.DTOFilesResponse = DTOFilesResponse; exports.DTOForgeAgent = DTOForgeAgent; exports.DTOForgeAgentsListResponse = DTOForgeAgentsListResponse; exports.DTOForgeArtifact = DTOForgeArtifact; exports.DTOForgeArtifactGetResponse = DTOForgeArtifactGetResponse; exports.DTOForgeArtifactsListResponse = DTOForgeArtifactsListResponse; exports.DTOForgeAvatarBuilder = DTOForgeAvatarBuilder; exports.DTOForgeBuildArtifact = DTOForgeBuildArtifact; exports.DTOForgeChatExportResponse = DTOForgeChatExportResponse; exports.DTOForgeChatMessage = DTOForgeChatMessage; exports.DTOForgeChatMessageCreateInput = DTOForgeChatMessageCreateInput; exports.DTOForgeChatMessageCreateResponse = DTOForgeChatMessageCreateResponse; exports.DTOForgeChatMessageListQuery = DTOForgeChatMessageListQuery; exports.DTOForgeChatMessageListResponse = DTOForgeChatMessageListResponse; exports.DTOForgeChatMessageScoreInput = DTOForgeChatMessageScoreInput; exports.DTOForgeChatMessageScoreRequest = DTOForgeChatMessageScoreRequest; exports.DTOForgeChatMessageSender = DTOForgeChatMessageSender; exports.DTOForgeChatMessageSenderType = DTOForgeChatMessageSenderType; exports.DTOForgeChatMessageTagInput = DTOForgeChatMessageTagInput; exports.DTOForgeChatThread = DTOForgeChatThread; exports.DTOForgeChatThreadCreateInput = DTOForgeChatThreadCreateInput; exports.DTOForgeChatThreadCreateResponse = DTOForgeChatThreadCreateResponse; exports.DTOForgeChatThreadDeleteResponse = DTOForgeChatThreadDeleteResponse; exports.DTOForgeChatThreadListQuery = DTOForgeChatThreadListQuery; exports.DTOForgeChatThreadListResponse = DTOForgeChatThreadListResponse; exports.DTOForgeChatThreadUpdateInput = DTOForgeChatThreadUpdateInput; exports.DTOForgeChatThreadUpdateResponse = DTOForgeChatThreadUpdateResponse; exports.DTOForgeComponentSet = DTOForgeComponentSet; exports.DTOForgeComponentSetTypeV2 = DTOForgeComponentSetTypeV2; exports.DTOForgeDocumentGetByIdParam = DTOForgeDocumentGetByIdParam; exports.DTOForgeDocumentGetResponse = DTOForgeDocumentGetResponse; exports.DTOForgeEntity = DTOForgeEntity; exports.DTOForgeFeatureRoom = DTOForgeFeatureRoom; exports.DTOForgeFeatureRoomResponse = DTOForgeFeatureRoomResponse; exports.DTOForgeFigmaArtifact = DTOForgeFigmaArtifact; exports.DTOForgeFigmaNode = DTOForgeFigmaNode; exports.DTOForgeFigmaNodeConversionVersion = DTOForgeFigmaNodeConversionVersion; exports.DTOForgeFigmaNodeCreateRequest = DTOForgeFigmaNodeCreateRequest; exports.DTOForgeFigmaNodeOrigin = DTOForgeFigmaNodeOrigin; exports.DTOForgeFigmaNodeResponse = DTOForgeFigmaNodeResponse; exports.DTOForgeFigmaNodeState = DTOForgeFigmaNodeState; exports.DTOForgeFigmaNodeValidateResponse = DTOForgeFigmaNodeValidateResponse; exports.DTOForgeFileArtifact = DTOForgeFileArtifact; exports.DTOForgeIconSet = DTOForgeIconSet; exports.DTOForgeIconSetTypeV2 = DTOForgeIconSetTypeV2; exports.DTOForgeIterationMessage = DTOForgeIterationMessage; exports.DTOForgeIterationMessagesListResponse = DTOForgeIterationMessagesListResponse; exports.DTOForgeMcpUrlSlug = DTOForgeMcpUrlSlug; exports.DTOForgeMemoryCreateInput = DTOForgeMemoryCreateInput; exports.DTOForgeMemoryDeleteInput = DTOForgeMemoryDeleteInput; exports.DTOForgeMemoryEntry = DTOForgeMemoryEntry; exports.DTOForgeMemoryEntryListQuery = DTOForgeMemoryEntryListQuery; exports.DTOForgeMemoryEntryListResponse = DTOForgeMemoryEntryListResponse; exports.DTOForgeMemoryEntryResponse = DTOForgeMemoryEntryResponse; exports.DTOForgeMemoryUpdateInput = DTOForgeMemoryUpdateInput; exports.DTOForgeParticipant = DTOForgeParticipant; exports.DTOForgeParticipantGetResponse = DTOForgeParticipantGetResponse; exports.DTOForgeParticipantsListResponse = DTOForgeParticipantsListResponse; exports.DTOForgeProject = DTOForgeProject; exports.DTOForgeProjectAccessMode = DTOForgeProjectAccessMode; exports.DTOForgeProjectAction = DTOForgeProjectAction; exports.DTOForgeProjectActionArtifactCreate = DTOForgeProjectActionArtifactCreate; exports.DTOForgeProjectActionArtifactDelete = DTOForgeProjectActionArtifactDelete; exports.DTOForgeProjectActionArtifactMove = DTOForgeProjectActionArtifactMove; exports.DTOForgeProjectActionArtifactUpdate = DTOForgeProjectActionArtifactUpdate; exports.DTOForgeProjectActionFeatureCreate = DTOForgeProjectActionFeatureCreate; exports.DTOForgeProjectActionFeatureDelete = DTOForgeProjectActionFeatureDelete; exports.DTOForgeProjectActionFeatureMove = DTOForgeProjectActionFeatureMove; exports.DTOForgeProjectActionFeatureUpdate = DTOForgeProjectActionFeatureUpdate; exports.DTOForgeProjectActionSectionCreate = DTOForgeProjectActionSectionCreate; exports.DTOForgeProjectActionSectionDelete = DTOForgeProjectActionSectionDelete; exports.DTOForgeProjectActionSectionMove = DTOForgeProjectActionSectionMove; exports.DTOForgeProjectActionSectionUpdate = DTOForgeProjectActionSectionUpdate; exports.DTOForgeProjectArtifact = DTOForgeProjectArtifact; exports.DTOForgeProjectArtifactContentResponse = DTOForgeProjectArtifactContentResponse; exports.DTOForgeProjectArtifactCreateInput = DTOForgeProjectArtifactCreateInput; exports.DTOForgeProjectArtifactCreateResponse = DTOForgeProjectArtifactCreateResponse; exports.DTOForgeProjectArtifactDeleteInput = DTOForgeProjectArtifactDeleteInput; exports.DTOForgeProjectArtifactDeleteResponse = DTOForgeProjectArtifactDeleteResponse; exports.DTOForgeProjectArtifactGetResponse = DTOForgeProjectArtifactGetResponse; exports.DTOForgeProjectArtifactMoveInput = DTOForgeProjectArtifactMoveInput; exports.DTOForgeProjectArtifactMoveResponse = DTOForgeProjectArtifactMoveResponse; exports.DTOForgeProjectArtifactRoom = DTOForgeProjectArtifactRoom; exports.DTOForgeProjectArtifactRoomResponse = DTOForgeProjectArtifactRoomResponse; exports.DTOForgeProjectArtifactUpdateInput = DTOForgeProjectArtifactUpdateInput; exports.DTOForgeProjectArtifactUpdateResponse = DTOForgeProjectArtifactUpdateResponse; exports.DTOForgeProjectArtifactsListResponse = DTOForgeProjectArtifactsListResponse; exports.DTOForgeProjectContext = DTOForgeProjectContext; exports.DTOForgeProjectContextCreateResponse = DTOForgeProjectContextCreateResponse; exports.DTOForgeProjectContextCreateV2 = DTOForgeProjectContextCreateV2; exports.DTOForgeProjectContextCreated = DTOForgeProjectContextCreated; exports.DTOForgeProjectContextDeleted = DTOForgeProjectContextDeleted; exports.DTOForgeProjectContextFeedback = DTOForgeProjectContextFeedback; exports.DTOForgeProjectContextFeedbackCategory = DTOForgeProjectContextFeedbackCategory; exports.DTOForgeProjectContextFeedbackCreatePayload = DTOForgeProjectContextFeedbackCreatePayload; exports.DTOForgeProjectContextFeedbackDeletePayload = DTOForgeProjectContextFeedbackDeletePayload; exports.DTOForgeProjectContextFeedbackDeleteResponse = DTOForgeProjectContextFeedbackDeleteResponse; exports.DTOForgeProjectContextFeedbackListQuery = DTOForgeProjectContextFeedbackListQuery; exports.DTOForgeProjectContextFeedbackListResponse = DTOForgeProjectContextFeedbackListResponse; exports.DTOForgeProjectContextFeedbackResponse = DTOForgeProjectContextFeedbackResponse; exports.DTOForgeProjectContextFeedbackSentiment = DTOForgeProjectContextFeedbackSentiment; exports.DTOForgeProjectContextFeedbackState = DTOForgeProjectContextFeedbackState; exports.DTOForgeProjectContextFeedbackUpdatePayload = DTOForgeProjectContextFeedbackUpdatePayload; exports.DTOForgeProjectContextGetResponse = DTOForgeProjectContextGetResponse; exports.DTOForgeProjectContextListQueryV2 = DTOForgeProjectContextListQueryV2; exports.DTOForgeProjectContextListResponse = DTOForgeProjectContextListResponse; exports.DTOForgeProjectContextListResponseV2 = DTOForgeProjectContextListResponseV2; exports.DTOForgeProjectContextRemoveResponse = DTOForgeProjectContextRemoveResponse; exports.DTOForgeProjectContextResponseV2 = DTOForgeProjectContextResponseV2; exports.DTOForgeProjectContextScope = DTOForgeProjectContextScope; exports.DTOForgeProjectContextUpdateResponse = DTOForgeProjectContextUpdateResponse; exports.DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextUpdateV2; exports.DTOForgeProjectContextUpdated = DTOForgeProjectContextUpdated; exports.DTOForgeProjectContextV2 = DTOForgeProjectContextV2; exports.DTOForgeProjectCreate = DTOForgeProjectCreate; exports.DTOForgeProjectCreated = DTOForgeProjectCreated; exports.DTOForgeProjectDefaultRole = DTOForgeProjectDefaultRole; exports.DTOForgeProjectDocumentPreview = DTOForgeProjectDocumentPreview; exports.DTOForgeProjectFeature = DTOForgeProjectFeature; exports.DTOForgeProjectFeatureCreateInput = DTOForgeProjectFeatureCreateInput; exports.DTOForgeProjectFeatureDeleteInput = DTOForgeProjectFeatureDeleteInput; exports.DTOForgeProjectFeatureGetByIdParam = DTOForgeProjectFeatureGetByIdParam; exports.DTOForgeProjectFeatureGetResponse = DTOForgeProjectFeatureGetResponse; exports.DTOForgeProjectFeatureListResponse = DTOForgeProjectFeatureListResponse; exports.DTOForgeProjectFeatureMoveInput = DTOForgeProjectFeatureMoveInput; exports.DTOForgeProjectFeaturePreview = DTOForgeProjectFeaturePreview; exports.DTOForgeProjectFeatureSandboxUpdated = DTOForgeProjectFeatureSandboxUpdated; exports.DTOForgeProjectFeatureUpdateInput = DTOForgeProjectFeatureUpdateInput; exports.DTOForgeProjectFigmaNode = DTOForgeProjectFigmaNode; exports.DTOForgeProjectFigmaNodeRenderInput = DTOForgeProjectFigmaNodeRenderInput; exports.DTOForgeProjectFile = DTOForgeProjectFile; exports.DTOForgeProjectFileListResponse = DTOForgeProjectFileListResponse; exports.DTOForgeProjectFileUploadFinalizePayload = DTOForgeProjectFileUploadFinalizePayload; exports.DTOForgeProjectFileUploadFinalizeResponse = DTOForgeProjectFileUploadFinalizeResponse; exports.DTOForgeProjectFileUploadPayload = DTOForgeProjectFileUploadPayload; exports.DTOForgeProjectFileUploadPayloadItem = DTOForgeProjectFileUploadPayloadItem; exports.DTOForgeProjectFileUploadResponse = DTOForgeProjectFileUploadResponse; exports.DTOForgeProjectInvitation = DTOForgeProjectInvitation; exports.DTOForgeProjectInvitationCreateResponse = DTOForgeProjectInvitationCreateResponse; exports.DTOForgeProjectInvitationGetResponse = DTOForgeProjectInvitationGetResponse; exports.DTOForgeProjectInvitationRemoveResponse = DTOForgeProjectInvitationRemoveResponse; exports.DTOForgeProjectInvitationUpdateResponse = DTOForgeProjectInvitationUpdateResponse; exports.DTOForgeProjectInvitationsListResponse = DTOForgeProjectInvitationsListResponse; exports.DTOForgeProjectIteration = DTOForgeProjectIteration; exports.DTOForgeProjectIterationListResponse = DTOForgeProjectIterationListResponse; exports.DTOForgeProjectIterationMergeMeta = DTOForgeProjectIterationMergeMeta; exports.DTOForgeProjectIterationTagSet = DTOForgeProjectIterationTagSet; exports.DTOForgeProjectIterationUpdated = DTOForgeProjectIterationUpdated; exports.DTOForgeProjectListResponse = DTOForgeProjectListResponse; exports.DTOForgeProjectMember = DTOForgeProjectMember; exports.DTOForgeProjectMemberCreateResponse = DTOForgeProjectMemberCreateResponse; exports.DTOForgeProjectMemberDeleted = DTOForgeProjectMemberDeleted; exports.DTOForgeProjectMemberGetResponse = DTOForgeProjectMemberGetResponse; exports.DTOForgeProjectMemberListQuery = DTOForgeProjectMemberListQuery; exports.DTOForgeProjectMemberRemoveResponse = DTOForgeProjectMemberRemoveResponse; exports.DTOForgeProjectMemberRole = DTOForgeProjectMemberRole; exports.DTOForgeProjectMemberUpdateResponse = DTOForgeProjectMemberUpdateResponse; exports.DTOForgeProjectMemberUpdated = DTOForgeProjectMemberUpdated; exports.DTOForgeProjectMembersCreated = DTOForgeProjectMembersCreated; exports.DTOForgeProjectMembersListResponse = DTOForgeProjectMembersListResponse; exports.DTOForgeProjectPublishedFeature = DTOForgeProjectPublishedFeature; exports.DTOForgeProjectPublishedFeatureGetResponse = DTOForgeProjectPublishedFeatureGetResponse; exports.DTOForgeProjectResponse = DTOForgeProjectResponse; exports.DTOForgeProjectRole = DTOForgeProjectRole; exports.DTOForgeProjectRoom = DTOForgeProjectRoom; exports.DTOForgeProjectRoomEvent = DTOForgeProjectRoomEvent; exports.DTOForgeProjectRoomResponse = DTOForgeProjectRoomResponse; exports.DTOForgeProjectTheme = DTOForgeProjectTheme; exports.DTOForgeProjectUpdate = DTOForgeProjectUpdate; exports.DTOForgeProjectUpdated = DTOForgeProjectUpdated; exports.DTOForgeRelation = DTOForgeRelation; exports.DTOForgeRelationCreate = DTOForgeRelationCreate; exports.DTOForgeRelationDelete = DTOForgeRelationDelete; exports.DTOForgeRelationListInput = DTOForgeRelationListInput; exports.DTOForgeRelationListResponse = DTOForgeRelationListResponse; exports.DTOForgeRelationType = DTOForgeRelationType; exports.DTOForgeSection = DTOForgeSection; exports.DTOForgeSectionCreateInput = DTOForgeSectionCreateInput; exports.DTOForgeSectionDeleteInput = DTOForgeSectionDeleteInput; exports.DTOForgeSectionItemMoveInput = DTOForgeSectionItemMoveInput; exports.DTOForgeSectionMoveInput = DTOForgeSectionMoveInput; exports.DTOForgeSectionUpdateInput = DTOForgeSectionUpdateInput; exports.DTOForgeSpecArtifact = DTOForgeSpecArtifact; exports.DTOForgeThemeKnownPreset = DTOForgeThemeKnownPreset; exports.DTOForgeTokenThemeSet = DTOForgeTokenThemeSet; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetBlockDefinitionsQuery = DTOGetBlockDefinitionsQuery; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGetForgeIterationMessageResponse = DTOGetForgeIterationMessageResponse; exports.DTOGetForgeProjectIterationResponse = DTOGetForgeProjectIterationResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOIPWhitelist = DTOIPWhitelist; exports.DTOIPWhitelistEntry = DTOIPWhitelistEntry; exports.DTOIPWhitelistResponse = DTOIPWhitelistResponse; exports.DTOIPWhitelistUpdate = DTOIPWhitelistUpdate; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOKeepAliveFeatureSandboxResponse = DTOKeepAliveFeatureSandboxResponse; exports.DTOKnowledgeItem = DTOKnowledgeItem; exports.DTOKnowledgeItemCreatePayload = DTOKnowledgeItemCreatePayload; exports.DTOKnowledgeItemDeletePayload = DTOKnowledgeItemDeletePayload; exports.DTOKnowledgeItemDeleteResponse = DTOKnowledgeItemDeleteResponse; exports.DTOKnowledgeItemListResponse = DTOKnowledgeItemListResponse; exports.DTOKnowledgeItemResponse = DTOKnowledgeItemResponse; exports.DTOKnowledgeItemSearchIndexResponse = DTOKnowledgeItemSearchIndexResponse; exports.DTOKnowledgeItemSearchKind = DTOKnowledgeItemSearchKind; exports.DTOKnowledgeItemSearchQuery = DTOKnowledgeItemSearchQuery; exports.DTOKnowledgeItemSearchResponse = DTOKnowledgeItemSearchResponse; exports.DTOKnowledgeItemSearchResult = DTOKnowledgeItemSearchResult; exports.DTOKnowledgeItemType = DTOKnowledgeItemType; exports.DTOKnowledgeItemUpdatePayload = DTOKnowledgeItemUpdatePayload; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOLoginScreenSettings = DTOLoginScreenSettings; exports.DTOLoginScreenSettingsResponse = DTOLoginScreenSettingsResponse; exports.DTOLoginScreenSettingsUpdate = DTOLoginScreenSettingsUpdate; exports.DTOMCPStream = DTOMCPStream; exports.DTOMCPStreamResponse = DTOMCPStreamResponse; exports.DTOMCPStreamUpdateInput = DTOMCPStreamUpdateInput; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONotificationBase = DTONotificationBase; exports.DTONotificationChannel = DTONotificationChannel; exports.DTONotificationChatMentionPayload = DTONotificationChatMentionPayload; exports.DTONotificationCreateInput = DTONotificationCreateInput; exports.DTONotificationProjectDocumentCommentPayload = DTONotificationProjectDocumentCommentPayload; exports.DTONotificationProjectInvitationPayload = DTONotificationProjectInvitationPayload; exports.DTONotificationType = DTONotificationType; exports.DTONpmRegistryAccessTokenResponse = DTONpmRegistryAccessTokenResponse; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOObjectMetadata = DTOObjectMetadata; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPageRedirect = DTOPageRedirect; exports.DTOPageRedirectCreateBody = DTOPageRedirectCreateBody; exports.DTOPageRedirectDeleteResponse = DTOPageRedirectDeleteResponse; exports.DTOPageRedirectListResponse = DTOPageRedirectListResponse; exports.DTOPageRedirectResponse = DTOPageRedirectResponse; exports.DTOPageRedirectUpdateBody = DTOPageRedirectUpdateBody; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineExporterQuery = DTOPipelineExporterQuery; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPortalSettings = DTOPortalSettings; exports.DTOPortalSettingsGetResponse = DTOPortalSettingsGetResponse; exports.DTOPortalSettingsSidebar = DTOPortalSettingsSidebar; exports.DTOPortalSettingsSidebarLink = DTOPortalSettingsSidebarLink; exports.DTOPortalSettingsSidebarSection = DTOPortalSettingsSidebarSection; exports.DTOPortalSettingsTheme = DTOPortalSettingsTheme; exports.DTOPortalSettingsUpdatePayload = DTOPortalSettingsUpdatePayload; exports.DTOProduct = DTOProduct; exports.DTOProductCode = DTOProductCode; exports.DTOProductPrice = DTOProductPrice; exports.DTOProjectContextOverride = DTOProjectContextOverride; exports.DTOProjectContextOverrideInput = DTOProjectContextOverrideInput; exports.DTOProjectContextOverrideResponse = DTOProjectContextOverrideResponse; exports.DTOProvisionFeatureSandboxInput = DTOProvisionFeatureSandboxInput; exports.DTOProvisionFeatureSandboxResponse = DTOProvisionFeatureSandboxResponse; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTOPublishedDocAnalyticsComparisonData = DTOPublishedDocAnalyticsComparisonData; exports.DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocPageAnalyticsComparisonData; exports.DTOPublishedDocPageVisitData = DTOPublishedDocPageVisitData; exports.DTOPublishedDocVisitData = DTOPublishedDocVisitData; exports.DTOPublishedDocVisitHeatMapWeek = DTOPublishedDocVisitHeatMapWeek; exports.DTORemoveForgeProjectInvitation = DTORemoveForgeProjectInvitation; exports.DTORemoveForgeProjectMember = DTORemoveForgeProjectMember; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOSandboxError = DTOSandboxError; exports.DTOSandboxTemplate = DTOSandboxTemplate; exports.DTOSandboxTemplateBuild = DTOSandboxTemplateBuild; exports.DTOSandboxTemplateBuildCreateInput = DTOSandboxTemplateBuildCreateInput; exports.DTOSandboxTemplateBuildCreateResponse = DTOSandboxTemplateBuildCreateResponse; exports.DTOSandboxTemplateBuildCreated = DTOSandboxTemplateBuildCreated; exports.DTOSandboxTemplateBuildFinalizeResponse = DTOSandboxTemplateBuildFinalizeResponse; exports.DTOSandboxTemplateBuildFinished = DTOSandboxTemplateBuildFinished; exports.DTOSandboxTemplateBuildResponse = DTOSandboxTemplateBuildResponse; exports.DTOSandboxTemplateBuildTriggerInput = DTOSandboxTemplateBuildTriggerInput; exports.DTOSandboxTemplateFile = DTOSandboxTemplateFile; exports.DTOSandboxTemplateListResponse = DTOSandboxTemplateListResponse; exports.DTOSandboxTemplatePreset = DTOSandboxTemplatePreset; exports.DTOSandboxTemplateQuery = DTOSandboxTemplateQuery; exports.DTOSandboxTemplateResponse = DTOSandboxTemplateResponse; exports.DTOSandboxTemplateVersion = DTOSandboxTemplateVersion; exports.DTOSandboxTemplateVersionCreated = DTOSandboxTemplateVersionCreated; exports.DTOSandboxTemplateVersionDetail = DTOSandboxTemplateVersionDetail; exports.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryQuery = DTOStorybookEntryQuery; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOStorybookSite = DTOStorybookSite; exports.DTOStorybookSiteListQuery = DTOStorybookSiteListQuery; exports.DTOStorybookSiteListResponse = DTOStorybookSiteListResponse; exports.DTOStorybookSiteUploadPayload = DTOStorybookSiteUploadPayload; exports.DTOStorybookSiteUploadResponse = DTOStorybookSiteUploadResponse; exports.DTOStorybookSiteVersion = DTOStorybookSiteVersion; exports.DTOStorybookSiteVersionResponse = DTOStorybookSiteVersionResponse; exports.DTOStorybookSourceUpdatePayload = DTOStorybookSourceUpdatePayload; exports.DTOStorybookUploadStatus = DTOStorybookUploadStatus; exports.DTOSubscription = DTOSubscription; exports.DTOSubscriptionResponse = DTOSubscriptionResponse; exports.DTOSubscriptionUpcomingChange = DTOSubscriptionUpcomingChange; exports.DTOSubscriptionUpdateInput = DTOSubscriptionUpdateInput; exports.DTOSubscriptionUpdatePreview = DTOSubscriptionUpdatePreview; exports.DTOSubscriptionUpdatePreviewResponse = DTOSubscriptionUpdatePreviewResponse; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOThemesListQuery = DTOThemesListQuery; exports.DTOThread = DTOThread; exports.DTOThreadAgentResponseTracker = DTOThreadAgentResponseTracker; exports.DTOThreadAgentType = DTOThreadAgentType; exports.DTOThreadEvent = DTOThreadEvent; exports.DTOThreadEventMessagesSent = DTOThreadEventMessagesSent; exports.DTOThreadEventMessagesUpdated = DTOThreadEventMessagesUpdated; exports.DTOThreadEventReactionsDeleted = DTOThreadEventReactionsDeleted; exports.DTOThreadEventReactionsSent = DTOThreadEventReactionsSent; exports.DTOThreadMessage = DTOThreadMessage; exports.DTOThreadMessageAgentSender = DTOThreadMessageAgentSender; exports.DTOThreadMessageAnnotation = DTOThreadMessageAnnotation; exports.DTOThreadMessageAnnotations = DTOThreadMessageAnnotations; exports.DTOThreadMessageAttachments = DTOThreadMessageAttachments; exports.DTOThreadMessageAttachmentsCreateInput = DTOThreadMessageAttachmentsCreateInput; exports.DTOThreadMessageCreateInput = DTOThreadMessageCreateInput; exports.DTOThreadMessageFinalizeInput = DTOThreadMessageFinalizeInput; exports.DTOThreadMessageListResponse = DTOThreadMessageListResponse; exports.DTOThreadMessageResponse = DTOThreadMessageResponse; exports.DTOThreadMessageRetryInput = DTOThreadMessageRetryInput; exports.DTOThreadMessageSender = DTOThreadMessageSender; exports.DTOThreadMessageSystemSender = DTOThreadMessageSystemSender; exports.DTOThreadMessageUpdateInput = DTOThreadMessageUpdateInput; exports.DTOThreadMessageUserSender = DTOThreadMessageUserSender; exports.DTOThreadPromptState = DTOThreadPromptState; exports.DTOThreadReaction = DTOThreadReaction; exports.DTOThreadReactionCreateInput = DTOThreadReactionCreateInput; exports.DTOThreadReactionDeleteInput = DTOThreadReactionDeleteInput; exports.DTOThreadReactionResponse = DTOThreadReactionResponse; exports.DTOThreadSubjectType = DTOThreadSubjectType; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTrailEvent = DTOTrailEvent; exports.DTOTrailEventClientCreate = DTOTrailEventClientCreate; exports.DTOTrailEventCreate = DTOTrailEventCreate; exports.DTOTrailEventListInput = DTOTrailEventListInput; exports.DTOTrailEventListResponse = DTOTrailEventListResponse; exports.DTOTrailEventType = DTOTrailEventType; exports.DTOTrailEventWithDetails = DTOTrailEventWithDetails; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUGetForgeAgentResponse = DTOUGetForgeAgentResponse; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageDocumentInputV2 = DTOUpdateDocumentationPageDocumentInputV2; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateFeatureSandbox = DTOUpdateFeatureSandbox; exports.DTOUpdateForgeAgent = DTOUpdateForgeAgent; exports.DTOUpdateForgeAgentResponse = DTOUpdateForgeAgentResponse; exports.DTOUpdateForgeArtifact = DTOUpdateForgeArtifact; exports.DTOUpdateForgeArtifactResponse = DTOUpdateForgeArtifactResponse; exports.DTOUpdateForgeBuildArtifact = DTOUpdateForgeBuildArtifact; exports.DTOUpdateForgeFigmaArtifact = DTOUpdateForgeFigmaArtifact; exports.DTOUpdateForgeFileArtifact = DTOUpdateForgeFileArtifact; exports.DTOUpdateForgeIterationMessage = DTOUpdateForgeIterationMessage; exports.DTOUpdateForgeIterationMessageResponse = DTOUpdateForgeIterationMessageResponse; exports.DTOUpdateForgeParticipant = DTOUpdateForgeParticipant; exports.DTOUpdateForgeParticipantResponse = DTOUpdateForgeParticipantResponse; exports.DTOUpdateForgeProjectContext = DTOUpdateForgeProjectContext; exports.DTOUpdateForgeProjectInvitation = DTOUpdateForgeProjectInvitation; exports.DTOUpdateForgeProjectIteration = DTOUpdateForgeProjectIteration; exports.DTOUpdateForgeProjectIterationResponse = DTOUpdateForgeProjectIterationResponse; exports.DTOUpdateForgeProjectMember = DTOUpdateForgeProjectMember; exports.DTOUpdateForgeSpecArtifact = DTOUpdateForgeSpecArtifact; exports.DTOUpdateRegistryInput = DTOUpdateRegistryInput; exports.DTOUpdateRegistryOutput = DTOUpdateRegistryOutput; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUploadUrlItem = DTOUploadUrlItem; exports.DTOUser = DTOUser; exports.DTOUserDesignSystemsResponse = DTOUserDesignSystemsResponse; exports.DTOUserEmailSettings = DTOUserEmailSettings; exports.DTOUserEmailSettingsUpdatePayload = DTOUserEmailSettingsUpdatePayload; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettings = DTOUserNotificationSettings; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserPortalTheme = DTOUserPortalTheme; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserSource = DTOUserSource; exports.DTOUserTheme = DTOUserTheme; exports.DTOUserUpdatePayload = DTOUserUpdatePayload; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceBilledSeatType = DTOWorkspaceBilledSeatType; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceDefaultProjectAccessMode = DTOWorkspaceDefaultProjectAccessMode; exports.DTOWorkspaceDefaultProjectRole = DTOWorkspaceDefaultProjectRole; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitation = DTOWorkspaceInvitation; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DTOWorkspaceRoomEvent = DTOWorkspaceRoomEvent; exports.DTOWorkspaceSeatType = DTOWorkspaceSeatType; exports.DTOWorkspaceStats = DTOWorkspaceStats; exports.DTOWorkspaceUntypedData = DTOWorkspaceUntypedData; exports.DTOWorkspaceUntypedDataCreatePayload = DTOWorkspaceUntypedDataCreatePayload; exports.DTOWorkspaceUntypedDataListResponse = DTOWorkspaceUntypedDataListResponse; exports.DTOWorkspaceUntypedDataResponse = DTOWorkspaceUntypedDataResponse; exports.DTOWorkspaceUntypedDataUpdatePayload = DTOWorkspaceUntypedDataUpdatePayload; exports.DesignSystemAnalyticsEndpoint = DesignSystemAnalyticsEndpoint; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemCodeSnapshotsEndpoint = DesignSystemCodeSnapshotsEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemFilesEndpoint = DesignSystemFilesEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemPageRedirectsEndpoint = DesignSystemPageRedirectsEndpoint; exports.DesignSystemPipelinesEndpoint = DesignSystemPipelinesEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FeatureRoomBaseYDoc = FeatureRoomBaseYDoc; exports.FeedbackEndpoint = FeedbackEndpoint; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaNodeStructuresEndpoint = FigmaNodeStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FilesEndpoint = FilesEndpoint; exports.ForgeAgentsEndpoint = ForgeAgentsEndpoint; exports.ForgeArtifactsEndpoint = ForgeArtifactsEndpoint; exports.ForgeDocumentsEndpoint = ForgeDocumentsEndpoint; exports.ForgeEndpoint = ForgeEndpoint; exports.ForgeFeatureArtifactsEndpoint = ForgeFeatureArtifactsEndpoint; exports.ForgeFeatureIterationTagsEndpoint = ForgeFeatureIterationTagsEndpoint; exports.ForgeFeatureIterationsEndpoint = ForgeFeatureIterationsEndpoint; exports.ForgeFeatureMessagesEndpoint = ForgeFeatureMessagesEndpoint; exports.ForgeFigmaNodeLatestVersion = ForgeFigmaNodeLatestVersion; exports.ForgeMemoryEndpoint = ForgeMemoryEndpoint; exports.ForgeProjectContentRepository = ForgeProjectContentRepository; exports.ForgeProjectContextsEndpoint = ForgeProjectContextsEndpoint; exports.ForgeProjectFeaturesEndpoint = ForgeProjectFeaturesEndpoint; exports.ForgeProjectFilesEndpoint = ForgeProjectFilesEndpoint; exports.ForgeProjectInvitationsEndpoint = ForgeProjectInvitationsEndpoint; exports.ForgeProjectIterationsEndpoint = ForgeProjectIterationsEndpoint; exports.ForgeProjectMembersEndpoint = ForgeProjectMembersEndpoint; exports.ForgeProjectRoomBaseYDoc = ForgeProjectRoomBaseYDoc; exports.ForgeProjectsEndpoint = ForgeProjectsEndpoint; exports.FormattedCollections = FormattedCollections; exports.FrontendFeatureRoomYDoc = FrontendFeatureRoomYDoc; exports.FrontendThreadRoomYDoc = FrontendThreadRoomYDoc; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.GitDestinationOptions = GitDestinationOptions; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.IntegrationOauthCallbackState = IntegrationOauthCallbackState; exports.IntegrationOauthPlatform = IntegrationOauthPlatform; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalDocsElementActionExecutor = LocalDocsElementActionExecutor; exports.LocalProjectActionExecutor = LocalProjectActionExecutor; exports.MCPStreamsEndpoint = MCPStreamsEndpoint; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.SandboxTemplateBuildsEndpoint = SandboxTemplateBuildsEndpoint; exports.SandboxTemplatesEndpoint = SandboxTemplatesEndpoint; exports.SandboxesEndpoint = SandboxesEndpoint; exports.StorybookEntriesEndpoint = StorybookEntriesEndpoint; exports.StorybookSitesEndpoint = StorybookSitesEndpoint; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.ThreadRoomBaseYDoc = ThreadRoomBaseYDoc; exports.ThreadsEndpoint = ThreadsEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableCollectionsSchema = VariableCollectionsSchema; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VariablesSchema = VariablesSchema; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceBillingEndpoint = WorkspaceBillingEndpoint; exports.WorkspaceChatThreadsEndpoint = WorkspaceChatThreadsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceIntegrationsEndpoint = WorkspaceIntegrationsEndpoint; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceKnowledgeItemsEndpoint = WorkspaceKnowledgeItemsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspaceNpmRegistryEndpoint = WorkspaceNpmRegistryEndpoint; exports.WorkspaceSubscriptionEndpoint = WorkspaceSubscriptionEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.YJSKeyValueStorageV1 = YJSKeyValueStorageV1; exports.YJSKeyValueStorageV2 = YJSKeyValueStorageV2; exports.applyActionsLocally = applyActionsLocally; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.applyProjectActionsLocally = applyProjectActionsLocally; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationAnalyticsToComparisonDto = documentationAnalyticsToComparisonDto; exports.documentationAnalyticsToGlobalDto = documentationAnalyticsToGlobalDto; exports.documentationAnalyticsToHeatMapDto = documentationAnalyticsToHeatMapDto; exports.documentationAnalyticsToPageComparisonDto = documentationAnalyticsToPageComparisonDto; exports.documentationAnalyticsToPageDto = documentationAnalyticsToPageDto; exports.documentationConfigurationToDto = documentationConfigurationToDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.exhaustiveInvalidUriPaths = exhaustiveInvalidUriPaths; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.isValidRedirectPath = isValidRedirectPath; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.zodQueryBoolean = zodQueryBoolean;
|
|
22258
22648
|
//# sourceMappingURL=index.js.map
|