@supernova-studio/client 1.69.1 → 1.69.2

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as _supernova_studio_model from '@supernova-studio/model';
2
- import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1, PublishedDocPageVisitsEntry, DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageSnapshot, ElementGroupSnapshot, DocumentationPageApproval, OmitStrict, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, SsoProvider, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, ForgeProjectArtifact, ProjectFeature, ForgeSection, ForgeRelation } from '@supernova-studio/model';
2
+ import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1, SsoProvider, PublishedDocPageVisitsEntry, DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageSnapshot, ElementGroupSnapshot, DocumentationPageApproval, OmitStrict, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, ForgeProjectArtifact, ProjectFeature, ForgeSection, ForgeRelation } from '@supernova-studio/model';
3
3
  import z$1, { z, ZodSchema, ZodTypeDef } from 'zod';
4
4
  import * as Y from 'yjs';
5
5
  import { RequestInit } from 'node-fetch';
@@ -351245,6 +351245,51 @@ declare const DTOWorkspace: z.ZodObject<{
351245
351245
  aiCustomInstruction?: string | undefined;
351246
351246
  }>;
351247
351247
  type DTOWorkspace = z.infer<typeof DTOWorkspace>;
351248
+ declare function validateSsoPayload(ssoPayload: Partial<SsoProvider> | undefined): {
351249
+ valid: boolean;
351250
+ keys: string[];
351251
+ };
351252
+ declare const DTONpmRegistryUpdateInput: z.ZodObject<{
351253
+ enabledScopes: z.ZodArray<z.ZodString, "many">;
351254
+ customRegistryUrl: z.ZodOptional<z.ZodString>;
351255
+ bypassProxy: z.ZodOptional<z.ZodBoolean>;
351256
+ npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
351257
+ npmProxyVersion: z.ZodOptional<z.ZodNumber>;
351258
+ registryType: z.ZodString;
351259
+ authType: z.ZodString;
351260
+ authHeaderName: z.ZodString;
351261
+ authHeaderValue: z.ZodString;
351262
+ accessToken: z.ZodString;
351263
+ username: z.ZodString;
351264
+ password: z.ZodString;
351265
+ }, "strip", z.ZodTypeAny, {
351266
+ accessToken: string;
351267
+ username: string;
351268
+ registryType: string;
351269
+ authType: string;
351270
+ password: string;
351271
+ enabledScopes: string[];
351272
+ authHeaderName: string;
351273
+ authHeaderValue: string;
351274
+ customRegistryUrl?: string | undefined;
351275
+ bypassProxy?: boolean | undefined;
351276
+ npmProxyVersion?: number | undefined;
351277
+ npmProxyRegistryConfigId?: string | undefined;
351278
+ }, {
351279
+ accessToken: string;
351280
+ username: string;
351281
+ registryType: string;
351282
+ authType: string;
351283
+ password: string;
351284
+ enabledScopes: string[];
351285
+ authHeaderName: string;
351286
+ authHeaderValue: string;
351287
+ customRegistryUrl?: string | undefined;
351288
+ bypassProxy?: boolean | undefined;
351289
+ npmProxyVersion?: number | undefined;
351290
+ npmProxyRegistryConfigId?: string | undefined;
351291
+ }>;
351292
+ type DTONpmRegistryUpdateInput = z.infer<typeof DTONpmRegistryUpdateInput>;
351248
351293
  declare const DTOWorkspaceCreateInput: z.ZodObject<{
351249
351294
  name: z.ZodString;
351250
351295
  }, "strip", z.ZodTypeAny, {
@@ -351253,6 +351298,349 @@ declare const DTOWorkspaceCreateInput: z.ZodObject<{
351253
351298
  name: string;
351254
351299
  }>;
351255
351300
  type DTOWorkspaceCreateInput = z.infer<typeof DTOWorkspaceCreateInput>;
351301
+ declare const DTOWorkspaceUpdateInput: z.ZodObject<{
351302
+ ipWhitelist: z.ZodOptional<z.ZodObject<{
351303
+ isEnabledForCloud: z.ZodOptional<z.ZodBoolean>;
351304
+ isEnabledForDocs: z.ZodOptional<z.ZodBoolean>;
351305
+ entries: z.ZodOptional<z.ZodArray<z.ZodObject<{
351306
+ isEnabled: z.ZodBoolean;
351307
+ name: z.ZodString;
351308
+ range: z.ZodEffects<z.ZodString, string, string>;
351309
+ }, "strip", z.ZodTypeAny, {
351310
+ name: string;
351311
+ isEnabled: boolean;
351312
+ range: string;
351313
+ }, {
351314
+ name: string;
351315
+ isEnabled: boolean;
351316
+ range: string;
351317
+ }>, "many">>;
351318
+ }, "strip", z.ZodTypeAny, {
351319
+ entries?: {
351320
+ name: string;
351321
+ isEnabled: boolean;
351322
+ range: string;
351323
+ }[] | undefined;
351324
+ isEnabledForCloud?: boolean | undefined;
351325
+ isEnabledForDocs?: boolean | undefined;
351326
+ }, {
351327
+ entries?: {
351328
+ name: string;
351329
+ isEnabled: boolean;
351330
+ range: string;
351331
+ }[] | undefined;
351332
+ isEnabledForCloud?: boolean | undefined;
351333
+ isEnabledForDocs?: boolean | undefined;
351334
+ }>>;
351335
+ sso: z.ZodOptional<z.ZodObject<{
351336
+ providerId: z.ZodOptional<z.ZodString>;
351337
+ defaultAutoInviteValue: z.ZodOptional<z.ZodBoolean>;
351338
+ autoInviteDomains: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
351339
+ skipDocsSupernovaLogin: z.ZodOptional<z.ZodBoolean>;
351340
+ areInvitesDisabled: z.ZodOptional<z.ZodBoolean>;
351341
+ isTestMode: z.ZodOptional<z.ZodBoolean>;
351342
+ emailDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
351343
+ metadataXml: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
351344
+ }, "strip", z.ZodTypeAny, {
351345
+ providerId?: string | undefined;
351346
+ metadataXml?: string | null | undefined;
351347
+ emailDomains?: string[] | undefined;
351348
+ defaultAutoInviteValue?: boolean | undefined;
351349
+ autoInviteDomains?: Record<string, boolean> | undefined;
351350
+ skipDocsSupernovaLogin?: boolean | undefined;
351351
+ areInvitesDisabled?: boolean | undefined;
351352
+ isTestMode?: boolean | undefined;
351353
+ }, {
351354
+ providerId?: string | undefined;
351355
+ metadataXml?: string | null | undefined;
351356
+ emailDomains?: string[] | undefined;
351357
+ defaultAutoInviteValue?: boolean | undefined;
351358
+ autoInviteDomains?: Record<string, boolean> | undefined;
351359
+ skipDocsSupernovaLogin?: boolean | undefined;
351360
+ areInvitesDisabled?: boolean | undefined;
351361
+ isTestMode?: boolean | undefined;
351362
+ }>>;
351363
+ npmRegistrySettings: z.ZodOptional<z.ZodObject<{
351364
+ enabledScopes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
351365
+ customRegistryUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
351366
+ bypassProxy: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
351367
+ npmProxyRegistryConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
351368
+ npmProxyVersion: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
351369
+ registryType: z.ZodOptional<z.ZodString>;
351370
+ authType: z.ZodOptional<z.ZodString>;
351371
+ authHeaderName: z.ZodOptional<z.ZodString>;
351372
+ authHeaderValue: z.ZodOptional<z.ZodString>;
351373
+ accessToken: z.ZodOptional<z.ZodString>;
351374
+ username: z.ZodOptional<z.ZodString>;
351375
+ password: z.ZodOptional<z.ZodString>;
351376
+ }, "strip", z.ZodTypeAny, {
351377
+ accessToken?: string | undefined;
351378
+ username?: string | undefined;
351379
+ registryType?: string | undefined;
351380
+ customRegistryUrl?: string | undefined;
351381
+ authType?: string | undefined;
351382
+ password?: string | undefined;
351383
+ enabledScopes?: string[] | undefined;
351384
+ bypassProxy?: boolean | undefined;
351385
+ npmProxyVersion?: number | undefined;
351386
+ authHeaderName?: string | undefined;
351387
+ authHeaderValue?: string | undefined;
351388
+ npmProxyRegistryConfigId?: string | undefined;
351389
+ }, {
351390
+ accessToken?: string | undefined;
351391
+ username?: string | undefined;
351392
+ registryType?: string | undefined;
351393
+ customRegistryUrl?: string | undefined;
351394
+ authType?: string | undefined;
351395
+ password?: string | undefined;
351396
+ enabledScopes?: string[] | undefined;
351397
+ bypassProxy?: boolean | undefined;
351398
+ npmProxyVersion?: number | undefined;
351399
+ authHeaderName?: string | undefined;
351400
+ authHeaderValue?: string | undefined;
351401
+ npmProxyRegistryConfigId?: string | undefined;
351402
+ }>>;
351403
+ profile: z.ZodOptional<z.ZodObject<{
351404
+ name: z.ZodOptional<z.ZodString>;
351405
+ handle: z.ZodOptional<z.ZodString>;
351406
+ color: z.ZodOptional<z.ZodString>;
351407
+ avatar: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
351408
+ billingDetails: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
351409
+ address?: {
351410
+ state?: string | undefined;
351411
+ street1?: string | undefined;
351412
+ street2?: string | undefined;
351413
+ city?: string | undefined;
351414
+ postal?: string | undefined;
351415
+ country?: string | undefined;
351416
+ } | undefined;
351417
+ email?: string | undefined;
351418
+ notes?: string | undefined;
351419
+ companyName?: string | undefined;
351420
+ companyId?: string | undefined;
351421
+ vat?: string | undefined;
351422
+ poNumber?: string | undefined;
351423
+ }, z.ZodTypeDef, {
351424
+ address?: {
351425
+ state?: string | null | undefined;
351426
+ street1?: string | null | undefined;
351427
+ street2?: string | null | undefined;
351428
+ city?: string | null | undefined;
351429
+ postal?: string | null | undefined;
351430
+ country?: string | null | undefined;
351431
+ } | null | undefined;
351432
+ email?: string | null | undefined;
351433
+ notes?: string | null | undefined;
351434
+ companyName?: string | null | undefined;
351435
+ companyId?: string | null | undefined;
351436
+ vat?: string | null | undefined;
351437
+ poNumber?: string | null | undefined;
351438
+ }>>>, {
351439
+ address?: {
351440
+ state?: string | undefined;
351441
+ street1?: string | undefined;
351442
+ street2?: string | undefined;
351443
+ city?: string | undefined;
351444
+ postal?: string | undefined;
351445
+ country?: string | undefined;
351446
+ } | undefined;
351447
+ email?: string | undefined;
351448
+ notes?: string | undefined;
351449
+ companyName?: string | undefined;
351450
+ companyId?: string | undefined;
351451
+ vat?: string | undefined;
351452
+ poNumber?: string | undefined;
351453
+ } | undefined, {
351454
+ address?: {
351455
+ state?: string | null | undefined;
351456
+ street1?: string | null | undefined;
351457
+ street2?: string | null | undefined;
351458
+ city?: string | null | undefined;
351459
+ postal?: string | null | undefined;
351460
+ country?: string | null | undefined;
351461
+ } | null | undefined;
351462
+ email?: string | null | undefined;
351463
+ notes?: string | null | undefined;
351464
+ companyName?: string | null | undefined;
351465
+ companyId?: string | null | undefined;
351466
+ vat?: string | null | undefined;
351467
+ poNumber?: string | null | undefined;
351468
+ } | null | undefined>>;
351469
+ }, "strip", z.ZodTypeAny, {
351470
+ name?: string | undefined;
351471
+ avatar?: string | undefined;
351472
+ handle?: string | undefined;
351473
+ color?: string | undefined;
351474
+ billingDetails?: {
351475
+ address?: {
351476
+ state?: string | undefined;
351477
+ street1?: string | undefined;
351478
+ street2?: string | undefined;
351479
+ city?: string | undefined;
351480
+ postal?: string | undefined;
351481
+ country?: string | undefined;
351482
+ } | undefined;
351483
+ email?: string | undefined;
351484
+ notes?: string | undefined;
351485
+ companyName?: string | undefined;
351486
+ companyId?: string | undefined;
351487
+ vat?: string | undefined;
351488
+ poNumber?: string | undefined;
351489
+ } | undefined;
351490
+ }, {
351491
+ name?: string | undefined;
351492
+ avatar?: string | null | undefined;
351493
+ handle?: string | undefined;
351494
+ color?: string | undefined;
351495
+ billingDetails?: {
351496
+ address?: {
351497
+ state?: string | null | undefined;
351498
+ street1?: string | null | undefined;
351499
+ street2?: string | null | undefined;
351500
+ city?: string | null | undefined;
351501
+ postal?: string | null | undefined;
351502
+ country?: string | null | undefined;
351503
+ } | null | undefined;
351504
+ email?: string | null | undefined;
351505
+ notes?: string | null | undefined;
351506
+ companyName?: string | null | undefined;
351507
+ companyId?: string | null | undefined;
351508
+ vat?: string | null | undefined;
351509
+ poNumber?: string | null | undefined;
351510
+ } | null | undefined;
351511
+ }>>;
351512
+ aiFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
351513
+ projectsEnabled: z.ZodOptional<z.ZodBoolean>;
351514
+ defaultProjectAccessMode: z.ZodOptional<z.ZodEnum<["InviteOnly", "Open", "Unlisted"]>>;
351515
+ defaultProjectRole: z.ZodOptional<z.ZodEnum<["Viewer", "Builder"]>>;
351516
+ aiAskFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
351517
+ aiCustomInstruction: z.ZodOptional<z.ZodString>;
351518
+ }, "strip", z.ZodTypeAny, {
351519
+ profile?: {
351520
+ name?: string | undefined;
351521
+ avatar?: string | undefined;
351522
+ handle?: string | undefined;
351523
+ color?: string | undefined;
351524
+ billingDetails?: {
351525
+ address?: {
351526
+ state?: string | undefined;
351527
+ street1?: string | undefined;
351528
+ street2?: string | undefined;
351529
+ city?: string | undefined;
351530
+ postal?: string | undefined;
351531
+ country?: string | undefined;
351532
+ } | undefined;
351533
+ email?: string | undefined;
351534
+ notes?: string | undefined;
351535
+ companyName?: string | undefined;
351536
+ companyId?: string | undefined;
351537
+ vat?: string | undefined;
351538
+ poNumber?: string | undefined;
351539
+ } | undefined;
351540
+ } | undefined;
351541
+ npmRegistrySettings?: {
351542
+ accessToken?: string | undefined;
351543
+ username?: string | undefined;
351544
+ registryType?: string | undefined;
351545
+ customRegistryUrl?: string | undefined;
351546
+ authType?: string | undefined;
351547
+ password?: string | undefined;
351548
+ enabledScopes?: string[] | undefined;
351549
+ bypassProxy?: boolean | undefined;
351550
+ npmProxyVersion?: number | undefined;
351551
+ authHeaderName?: string | undefined;
351552
+ authHeaderValue?: string | undefined;
351553
+ npmProxyRegistryConfigId?: string | undefined;
351554
+ } | undefined;
351555
+ aiFeaturesEnabled?: boolean | undefined;
351556
+ projectsEnabled?: boolean | undefined;
351557
+ defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
351558
+ defaultProjectRole?: "Viewer" | "Builder" | undefined;
351559
+ aiAskFeaturesEnabled?: boolean | undefined;
351560
+ aiCustomInstruction?: string | undefined;
351561
+ ipWhitelist?: {
351562
+ entries?: {
351563
+ name: string;
351564
+ isEnabled: boolean;
351565
+ range: string;
351566
+ }[] | undefined;
351567
+ isEnabledForCloud?: boolean | undefined;
351568
+ isEnabledForDocs?: boolean | undefined;
351569
+ } | undefined;
351570
+ sso?: {
351571
+ providerId?: string | undefined;
351572
+ metadataXml?: string | null | undefined;
351573
+ emailDomains?: string[] | undefined;
351574
+ defaultAutoInviteValue?: boolean | undefined;
351575
+ autoInviteDomains?: Record<string, boolean> | undefined;
351576
+ skipDocsSupernovaLogin?: boolean | undefined;
351577
+ areInvitesDisabled?: boolean | undefined;
351578
+ isTestMode?: boolean | undefined;
351579
+ } | undefined;
351580
+ }, {
351581
+ profile?: {
351582
+ name?: string | undefined;
351583
+ avatar?: string | null | undefined;
351584
+ handle?: string | undefined;
351585
+ color?: string | undefined;
351586
+ billingDetails?: {
351587
+ address?: {
351588
+ state?: string | null | undefined;
351589
+ street1?: string | null | undefined;
351590
+ street2?: string | null | undefined;
351591
+ city?: string | null | undefined;
351592
+ postal?: string | null | undefined;
351593
+ country?: string | null | undefined;
351594
+ } | null | undefined;
351595
+ email?: string | null | undefined;
351596
+ notes?: string | null | undefined;
351597
+ companyName?: string | null | undefined;
351598
+ companyId?: string | null | undefined;
351599
+ vat?: string | null | undefined;
351600
+ poNumber?: string | null | undefined;
351601
+ } | null | undefined;
351602
+ } | undefined;
351603
+ npmRegistrySettings?: {
351604
+ accessToken?: string | undefined;
351605
+ username?: string | undefined;
351606
+ registryType?: string | undefined;
351607
+ customRegistryUrl?: string | undefined;
351608
+ authType?: string | undefined;
351609
+ password?: string | undefined;
351610
+ enabledScopes?: string[] | undefined;
351611
+ bypassProxy?: boolean | undefined;
351612
+ npmProxyVersion?: number | undefined;
351613
+ authHeaderName?: string | undefined;
351614
+ authHeaderValue?: string | undefined;
351615
+ npmProxyRegistryConfigId?: string | undefined;
351616
+ } | undefined;
351617
+ aiFeaturesEnabled?: boolean | undefined;
351618
+ projectsEnabled?: boolean | undefined;
351619
+ defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
351620
+ defaultProjectRole?: "Viewer" | "Builder" | undefined;
351621
+ aiAskFeaturesEnabled?: boolean | undefined;
351622
+ aiCustomInstruction?: string | undefined;
351623
+ ipWhitelist?: {
351624
+ entries?: {
351625
+ name: string;
351626
+ isEnabled: boolean;
351627
+ range: string;
351628
+ }[] | undefined;
351629
+ isEnabledForCloud?: boolean | undefined;
351630
+ isEnabledForDocs?: boolean | undefined;
351631
+ } | undefined;
351632
+ sso?: {
351633
+ providerId?: string | undefined;
351634
+ metadataXml?: string | null | undefined;
351635
+ emailDomains?: string[] | undefined;
351636
+ defaultAutoInviteValue?: boolean | undefined;
351637
+ autoInviteDomains?: Record<string, boolean> | undefined;
351638
+ skipDocsSupernovaLogin?: boolean | undefined;
351639
+ areInvitesDisabled?: boolean | undefined;
351640
+ isTestMode?: boolean | undefined;
351641
+ } | undefined;
351642
+ }>;
351643
+ type DTOWorkspaceUpdateInput = z.infer<typeof DTOWorkspaceUpdateInput>;
351256
351644
  declare const DTOWorkspaceResponse: z.ZodObject<{
351257
351645
  workspace: z.ZodObject<{
351258
351646
  id: z.ZodString;
@@ -356078,394 +356466,6 @@ declare const DTOUserNotificationSettingsResponse: z.ZodObject<{
356078
356466
  }>;
356079
356467
  type DTOUserNotificationSettingsResponse = z.infer<typeof DTOUserNotificationSettingsResponse>;
356080
356468
 
356081
- declare function validateSsoPayload(ssoPayload: Partial<SsoProvider> | undefined): {
356082
- valid: boolean;
356083
- keys: string[];
356084
- };
356085
- declare const NpmRegistryInput: z.ZodObject<{
356086
- enabledScopes: z.ZodArray<z.ZodString, "many">;
356087
- customRegistryUrl: z.ZodOptional<z.ZodString>;
356088
- bypassProxy: z.ZodOptional<z.ZodBoolean>;
356089
- npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
356090
- npmProxyVersion: z.ZodOptional<z.ZodNumber>;
356091
- registryType: z.ZodString;
356092
- authType: z.ZodString;
356093
- authHeaderName: z.ZodString;
356094
- authHeaderValue: z.ZodString;
356095
- accessToken: z.ZodString;
356096
- username: z.ZodString;
356097
- password: z.ZodString;
356098
- }, "strip", z.ZodTypeAny, {
356099
- accessToken: string;
356100
- username: string;
356101
- registryType: string;
356102
- authType: string;
356103
- password: string;
356104
- enabledScopes: string[];
356105
- authHeaderName: string;
356106
- authHeaderValue: string;
356107
- customRegistryUrl?: string | undefined;
356108
- bypassProxy?: boolean | undefined;
356109
- npmProxyVersion?: number | undefined;
356110
- npmProxyRegistryConfigId?: string | undefined;
356111
- }, {
356112
- accessToken: string;
356113
- username: string;
356114
- registryType: string;
356115
- authType: string;
356116
- password: string;
356117
- enabledScopes: string[];
356118
- authHeaderName: string;
356119
- authHeaderValue: string;
356120
- customRegistryUrl?: string | undefined;
356121
- bypassProxy?: boolean | undefined;
356122
- npmProxyVersion?: number | undefined;
356123
- npmProxyRegistryConfigId?: string | undefined;
356124
- }>;
356125
- declare const WorkspaceConfigurationPayload: z.ZodObject<{
356126
- ipWhitelist: z.ZodOptional<z.ZodObject<{
356127
- isEnabledForCloud: z.ZodOptional<z.ZodBoolean>;
356128
- isEnabledForDocs: z.ZodOptional<z.ZodBoolean>;
356129
- entries: z.ZodOptional<z.ZodArray<z.ZodObject<{
356130
- isEnabled: z.ZodBoolean;
356131
- name: z.ZodString;
356132
- range: z.ZodEffects<z.ZodString, string, string>;
356133
- }, "strip", z.ZodTypeAny, {
356134
- name: string;
356135
- isEnabled: boolean;
356136
- range: string;
356137
- }, {
356138
- name: string;
356139
- isEnabled: boolean;
356140
- range: string;
356141
- }>, "many">>;
356142
- }, "strip", z.ZodTypeAny, {
356143
- entries?: {
356144
- name: string;
356145
- isEnabled: boolean;
356146
- range: string;
356147
- }[] | undefined;
356148
- isEnabledForCloud?: boolean | undefined;
356149
- isEnabledForDocs?: boolean | undefined;
356150
- }, {
356151
- entries?: {
356152
- name: string;
356153
- isEnabled: boolean;
356154
- range: string;
356155
- }[] | undefined;
356156
- isEnabledForCloud?: boolean | undefined;
356157
- isEnabledForDocs?: boolean | undefined;
356158
- }>>;
356159
- sso: z.ZodOptional<z.ZodObject<{
356160
- providerId: z.ZodOptional<z.ZodString>;
356161
- defaultAutoInviteValue: z.ZodOptional<z.ZodBoolean>;
356162
- autoInviteDomains: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
356163
- skipDocsSupernovaLogin: z.ZodOptional<z.ZodBoolean>;
356164
- areInvitesDisabled: z.ZodOptional<z.ZodBoolean>;
356165
- isTestMode: z.ZodOptional<z.ZodBoolean>;
356166
- emailDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
356167
- metadataXml: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
356168
- }, "strip", z.ZodTypeAny, {
356169
- providerId?: string | undefined;
356170
- metadataXml?: string | null | undefined;
356171
- emailDomains?: string[] | undefined;
356172
- defaultAutoInviteValue?: boolean | undefined;
356173
- autoInviteDomains?: Record<string, boolean> | undefined;
356174
- skipDocsSupernovaLogin?: boolean | undefined;
356175
- areInvitesDisabled?: boolean | undefined;
356176
- isTestMode?: boolean | undefined;
356177
- }, {
356178
- providerId?: string | undefined;
356179
- metadataXml?: string | null | undefined;
356180
- emailDomains?: string[] | undefined;
356181
- defaultAutoInviteValue?: boolean | undefined;
356182
- autoInviteDomains?: Record<string, boolean> | undefined;
356183
- skipDocsSupernovaLogin?: boolean | undefined;
356184
- areInvitesDisabled?: boolean | undefined;
356185
- isTestMode?: boolean | undefined;
356186
- }>>;
356187
- npmRegistrySettings: z.ZodOptional<z.ZodObject<{
356188
- enabledScopes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
356189
- customRegistryUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
356190
- bypassProxy: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
356191
- npmProxyRegistryConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
356192
- npmProxyVersion: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
356193
- registryType: z.ZodOptional<z.ZodString>;
356194
- authType: z.ZodOptional<z.ZodString>;
356195
- authHeaderName: z.ZodOptional<z.ZodString>;
356196
- authHeaderValue: z.ZodOptional<z.ZodString>;
356197
- accessToken: z.ZodOptional<z.ZodString>;
356198
- username: z.ZodOptional<z.ZodString>;
356199
- password: z.ZodOptional<z.ZodString>;
356200
- }, "strip", z.ZodTypeAny, {
356201
- accessToken?: string | undefined;
356202
- username?: string | undefined;
356203
- registryType?: string | undefined;
356204
- customRegistryUrl?: string | undefined;
356205
- authType?: string | undefined;
356206
- password?: string | undefined;
356207
- enabledScopes?: string[] | undefined;
356208
- bypassProxy?: boolean | undefined;
356209
- npmProxyVersion?: number | undefined;
356210
- authHeaderName?: string | undefined;
356211
- authHeaderValue?: string | undefined;
356212
- npmProxyRegistryConfigId?: string | undefined;
356213
- }, {
356214
- accessToken?: string | undefined;
356215
- username?: string | undefined;
356216
- registryType?: string | undefined;
356217
- customRegistryUrl?: string | undefined;
356218
- authType?: string | undefined;
356219
- password?: string | undefined;
356220
- enabledScopes?: string[] | undefined;
356221
- bypassProxy?: boolean | undefined;
356222
- npmProxyVersion?: number | undefined;
356223
- authHeaderName?: string | undefined;
356224
- authHeaderValue?: string | undefined;
356225
- npmProxyRegistryConfigId?: string | undefined;
356226
- }>>;
356227
- profile: z.ZodOptional<z.ZodObject<{
356228
- name: z.ZodOptional<z.ZodString>;
356229
- handle: z.ZodOptional<z.ZodString>;
356230
- color: z.ZodOptional<z.ZodString>;
356231
- avatar: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
356232
- billingDetails: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
356233
- address?: {
356234
- state?: string | undefined;
356235
- street1?: string | undefined;
356236
- street2?: string | undefined;
356237
- city?: string | undefined;
356238
- postal?: string | undefined;
356239
- country?: string | undefined;
356240
- } | undefined;
356241
- email?: string | undefined;
356242
- notes?: string | undefined;
356243
- companyName?: string | undefined;
356244
- companyId?: string | undefined;
356245
- vat?: string | undefined;
356246
- poNumber?: string | undefined;
356247
- }, z.ZodTypeDef, {
356248
- address?: {
356249
- state?: string | null | undefined;
356250
- street1?: string | null | undefined;
356251
- street2?: string | null | undefined;
356252
- city?: string | null | undefined;
356253
- postal?: string | null | undefined;
356254
- country?: string | null | undefined;
356255
- } | null | undefined;
356256
- email?: string | null | undefined;
356257
- notes?: string | null | undefined;
356258
- companyName?: string | null | undefined;
356259
- companyId?: string | null | undefined;
356260
- vat?: string | null | undefined;
356261
- poNumber?: string | null | undefined;
356262
- }>>>, {
356263
- address?: {
356264
- state?: string | undefined;
356265
- street1?: string | undefined;
356266
- street2?: string | undefined;
356267
- city?: string | undefined;
356268
- postal?: string | undefined;
356269
- country?: string | undefined;
356270
- } | undefined;
356271
- email?: string | undefined;
356272
- notes?: string | undefined;
356273
- companyName?: string | undefined;
356274
- companyId?: string | undefined;
356275
- vat?: string | undefined;
356276
- poNumber?: string | undefined;
356277
- } | undefined, {
356278
- address?: {
356279
- state?: string | null | undefined;
356280
- street1?: string | null | undefined;
356281
- street2?: string | null | undefined;
356282
- city?: string | null | undefined;
356283
- postal?: string | null | undefined;
356284
- country?: string | null | undefined;
356285
- } | null | undefined;
356286
- email?: string | null | undefined;
356287
- notes?: string | null | undefined;
356288
- companyName?: string | null | undefined;
356289
- companyId?: string | null | undefined;
356290
- vat?: string | null | undefined;
356291
- poNumber?: string | null | undefined;
356292
- } | null | undefined>>;
356293
- }, "strip", z.ZodTypeAny, {
356294
- name?: string | undefined;
356295
- avatar?: string | undefined;
356296
- handle?: string | undefined;
356297
- color?: string | undefined;
356298
- billingDetails?: {
356299
- address?: {
356300
- state?: string | undefined;
356301
- street1?: string | undefined;
356302
- street2?: string | undefined;
356303
- city?: string | undefined;
356304
- postal?: string | undefined;
356305
- country?: string | undefined;
356306
- } | undefined;
356307
- email?: string | undefined;
356308
- notes?: string | undefined;
356309
- companyName?: string | undefined;
356310
- companyId?: string | undefined;
356311
- vat?: string | undefined;
356312
- poNumber?: string | undefined;
356313
- } | undefined;
356314
- }, {
356315
- name?: string | undefined;
356316
- avatar?: string | null | undefined;
356317
- handle?: string | undefined;
356318
- color?: string | undefined;
356319
- billingDetails?: {
356320
- address?: {
356321
- state?: string | null | undefined;
356322
- street1?: string | null | undefined;
356323
- street2?: string | null | undefined;
356324
- city?: string | null | undefined;
356325
- postal?: string | null | undefined;
356326
- country?: string | null | undefined;
356327
- } | null | undefined;
356328
- email?: string | null | undefined;
356329
- notes?: string | null | undefined;
356330
- companyName?: string | null | undefined;
356331
- companyId?: string | null | undefined;
356332
- vat?: string | null | undefined;
356333
- poNumber?: string | null | undefined;
356334
- } | null | undefined;
356335
- }>>;
356336
- aiFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
356337
- projectsEnabled: z.ZodOptional<z.ZodBoolean>;
356338
- defaultProjectAccessMode: z.ZodOptional<z.ZodEnum<["InviteOnly", "Open", "Unlisted"]>>;
356339
- defaultProjectRole: z.ZodOptional<z.ZodEnum<["Viewer", "Builder"]>>;
356340
- aiAskFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
356341
- aiCustomInstruction: z.ZodOptional<z.ZodString>;
356342
- }, "strip", z.ZodTypeAny, {
356343
- profile?: {
356344
- name?: string | undefined;
356345
- avatar?: string | undefined;
356346
- handle?: string | undefined;
356347
- color?: string | undefined;
356348
- billingDetails?: {
356349
- address?: {
356350
- state?: string | undefined;
356351
- street1?: string | undefined;
356352
- street2?: string | undefined;
356353
- city?: string | undefined;
356354
- postal?: string | undefined;
356355
- country?: string | undefined;
356356
- } | undefined;
356357
- email?: string | undefined;
356358
- notes?: string | undefined;
356359
- companyName?: string | undefined;
356360
- companyId?: string | undefined;
356361
- vat?: string | undefined;
356362
- poNumber?: string | undefined;
356363
- } | undefined;
356364
- } | undefined;
356365
- npmRegistrySettings?: {
356366
- accessToken?: string | undefined;
356367
- username?: string | undefined;
356368
- registryType?: string | undefined;
356369
- customRegistryUrl?: string | undefined;
356370
- authType?: string | undefined;
356371
- password?: string | undefined;
356372
- enabledScopes?: string[] | undefined;
356373
- bypassProxy?: boolean | undefined;
356374
- npmProxyVersion?: number | undefined;
356375
- authHeaderName?: string | undefined;
356376
- authHeaderValue?: string | undefined;
356377
- npmProxyRegistryConfigId?: string | undefined;
356378
- } | undefined;
356379
- aiFeaturesEnabled?: boolean | undefined;
356380
- projectsEnabled?: boolean | undefined;
356381
- defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
356382
- defaultProjectRole?: "Viewer" | "Builder" | undefined;
356383
- aiAskFeaturesEnabled?: boolean | undefined;
356384
- aiCustomInstruction?: string | undefined;
356385
- ipWhitelist?: {
356386
- entries?: {
356387
- name: string;
356388
- isEnabled: boolean;
356389
- range: string;
356390
- }[] | undefined;
356391
- isEnabledForCloud?: boolean | undefined;
356392
- isEnabledForDocs?: boolean | undefined;
356393
- } | undefined;
356394
- sso?: {
356395
- providerId?: string | undefined;
356396
- metadataXml?: string | null | undefined;
356397
- emailDomains?: string[] | undefined;
356398
- defaultAutoInviteValue?: boolean | undefined;
356399
- autoInviteDomains?: Record<string, boolean> | undefined;
356400
- skipDocsSupernovaLogin?: boolean | undefined;
356401
- areInvitesDisabled?: boolean | undefined;
356402
- isTestMode?: boolean | undefined;
356403
- } | undefined;
356404
- }, {
356405
- profile?: {
356406
- name?: string | undefined;
356407
- avatar?: string | null | undefined;
356408
- handle?: string | undefined;
356409
- color?: string | undefined;
356410
- billingDetails?: {
356411
- address?: {
356412
- state?: string | null | undefined;
356413
- street1?: string | null | undefined;
356414
- street2?: string | null | undefined;
356415
- city?: string | null | undefined;
356416
- postal?: string | null | undefined;
356417
- country?: string | null | undefined;
356418
- } | null | undefined;
356419
- email?: string | null | undefined;
356420
- notes?: string | null | undefined;
356421
- companyName?: string | null | undefined;
356422
- companyId?: string | null | undefined;
356423
- vat?: string | null | undefined;
356424
- poNumber?: string | null | undefined;
356425
- } | null | undefined;
356426
- } | undefined;
356427
- npmRegistrySettings?: {
356428
- accessToken?: string | undefined;
356429
- username?: string | undefined;
356430
- registryType?: string | undefined;
356431
- customRegistryUrl?: string | undefined;
356432
- authType?: string | undefined;
356433
- password?: string | undefined;
356434
- enabledScopes?: string[] | undefined;
356435
- bypassProxy?: boolean | undefined;
356436
- npmProxyVersion?: number | undefined;
356437
- authHeaderName?: string | undefined;
356438
- authHeaderValue?: string | undefined;
356439
- npmProxyRegistryConfigId?: string | undefined;
356440
- } | undefined;
356441
- aiFeaturesEnabled?: boolean | undefined;
356442
- projectsEnabled?: boolean | undefined;
356443
- defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
356444
- defaultProjectRole?: "Viewer" | "Builder" | undefined;
356445
- aiAskFeaturesEnabled?: boolean | undefined;
356446
- aiCustomInstruction?: string | undefined;
356447
- ipWhitelist?: {
356448
- entries?: {
356449
- name: string;
356450
- isEnabled: boolean;
356451
- range: string;
356452
- }[] | undefined;
356453
- isEnabledForCloud?: boolean | undefined;
356454
- isEnabledForDocs?: boolean | undefined;
356455
- } | undefined;
356456
- sso?: {
356457
- providerId?: string | undefined;
356458
- metadataXml?: string | null | undefined;
356459
- emailDomains?: string[] | undefined;
356460
- defaultAutoInviteValue?: boolean | undefined;
356461
- autoInviteDomains?: Record<string, boolean> | undefined;
356462
- skipDocsSupernovaLogin?: boolean | undefined;
356463
- areInvitesDisabled?: boolean | undefined;
356464
- isTestMode?: boolean | undefined;
356465
- } | undefined;
356466
- }>;
356467
- type WorkspaceConfigurationPayload = z.infer<typeof WorkspaceConfigurationPayload>;
356468
-
356469
356469
  declare const DTOWorkspaceIntegrationOauthInput: z.ZodObject<{
356470
356470
  type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
356471
356471
  }, "strip", z.ZodTypeAny, {
@@ -377196,4 +377196,4 @@ declare function isValidRedirectPath(path: string): {
377196
377196
  reason: ValidationErrorReason | undefined;
377197
377197
  };
377198
377198
 
377199
- export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
377199
+ export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTONpmRegistryUpdateInput, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DTOWorkspaceUpdateInput, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };