@supernova-studio/client 1.48.13 → 1.48.14
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 +181111 -124495
- package/dist/index.d.ts +181111 -124495
- package/dist/index.js +364 -308
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +418 -362
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9884,7 +9884,7 @@ var DTOForgeMemoryEntryListQuery = _zod2.default.object({
|
|
|
9884
9884
|
projectId: _zod2.default.string()
|
|
9885
9885
|
});
|
|
9886
9886
|
|
|
9887
|
-
// src/api/dto/forge/project.ts
|
|
9887
|
+
// src/api/dto/forge/project-action.ts
|
|
9888
9888
|
|
|
9889
9889
|
|
|
9890
9890
|
// src/api/dto/forge/project-artifact.ts
|
|
@@ -10123,153 +10123,6 @@ var DTOForgeProjectArtifactContentResponse = _zod.z.object({
|
|
|
10123
10123
|
content: ForgeProjectArtifactContentData
|
|
10124
10124
|
});
|
|
10125
10125
|
|
|
10126
|
-
// src/api/dto/forge/project-context-v2.ts
|
|
10127
|
-
|
|
10128
|
-
var DTOForgeComponentSetTypeV2 = _zod.z.enum(["Shadcn"]);
|
|
10129
|
-
var DTOForgeComponentSet = _zod.z.object({
|
|
10130
|
-
type: DTOForgeComponentSetTypeV2
|
|
10131
|
-
});
|
|
10132
|
-
var DTOForgeIconSetTypeV2 = _zod.z.enum(["Phosphor", "Lucide", "Tabler"]);
|
|
10133
|
-
var DTOForgeThemeKnownPreset = _zod.z.enum(["Default", "Airbnb", "Spotify", "Windows98"]);
|
|
10134
|
-
var DTOForgeIconSet = _zod.z.object({
|
|
10135
|
-
type: DTOForgeIconSetTypeV2,
|
|
10136
|
-
variant: _zod.z.string().optional()
|
|
10137
|
-
});
|
|
10138
|
-
var DTOForgeTokenThemeSet = _zod.z.object({
|
|
10139
|
-
id: _zod.z.string(),
|
|
10140
|
-
name: _zod.z.string(),
|
|
10141
|
-
tokenThemeIds: _zod.z.array(_zod.z.string())
|
|
10142
|
-
});
|
|
10143
|
-
var DTOForgeProjectTheme = _zod.z.object({
|
|
10144
|
-
// Colors
|
|
10145
|
-
background: ColorTokenData,
|
|
10146
|
-
foreground: ColorTokenData,
|
|
10147
|
-
card: ColorTokenData,
|
|
10148
|
-
cardForeground: ColorTokenData,
|
|
10149
|
-
popover: ColorTokenData,
|
|
10150
|
-
popoverForeground: ColorTokenData,
|
|
10151
|
-
primary: ColorTokenData,
|
|
10152
|
-
primaryForeground: ColorTokenData,
|
|
10153
|
-
secondary: ColorTokenData,
|
|
10154
|
-
secondaryForeground: ColorTokenData,
|
|
10155
|
-
muted: ColorTokenData,
|
|
10156
|
-
mutedForeground: ColorTokenData,
|
|
10157
|
-
accent: ColorTokenData,
|
|
10158
|
-
accentForeground: ColorTokenData,
|
|
10159
|
-
destructive: ColorTokenData,
|
|
10160
|
-
border: ColorTokenData,
|
|
10161
|
-
input: ColorTokenData,
|
|
10162
|
-
ring: ColorTokenData,
|
|
10163
|
-
chart1: ColorTokenData,
|
|
10164
|
-
chart2: ColorTokenData,
|
|
10165
|
-
chart3: ColorTokenData,
|
|
10166
|
-
chart4: ColorTokenData,
|
|
10167
|
-
chart5: ColorTokenData,
|
|
10168
|
-
sidebar: ColorTokenData,
|
|
10169
|
-
sidebarForeground: ColorTokenData,
|
|
10170
|
-
sidebarPrimary: ColorTokenData,
|
|
10171
|
-
sidebarPrimaryForeground: ColorTokenData,
|
|
10172
|
-
sidebarAccent: ColorTokenData,
|
|
10173
|
-
sidebarAccentForeground: ColorTokenData,
|
|
10174
|
-
sidebarBorder: ColorTokenData,
|
|
10175
|
-
sidebarRing: ColorTokenData,
|
|
10176
|
-
// Font family
|
|
10177
|
-
fontFamily: FontFamilyTokenData,
|
|
10178
|
-
// Font sizes
|
|
10179
|
-
textXs: FontSizeTokenData,
|
|
10180
|
-
textSm: FontSizeTokenData,
|
|
10181
|
-
textBase: FontSizeTokenData,
|
|
10182
|
-
textLg: FontSizeTokenData,
|
|
10183
|
-
textXl: FontSizeTokenData,
|
|
10184
|
-
text2xl: FontSizeTokenData,
|
|
10185
|
-
text3xl: FontSizeTokenData,
|
|
10186
|
-
text4xl: FontSizeTokenData,
|
|
10187
|
-
text5xl: FontSizeTokenData,
|
|
10188
|
-
text6xl: FontSizeTokenData,
|
|
10189
|
-
text7xl: FontSizeTokenData,
|
|
10190
|
-
text8xl: FontSizeTokenData,
|
|
10191
|
-
text9xl: FontSizeTokenData,
|
|
10192
|
-
// Line heights
|
|
10193
|
-
textXsLineHeight: LineHeightTokenData,
|
|
10194
|
-
textSmLineHeight: LineHeightTokenData,
|
|
10195
|
-
textBaseLineHeight: LineHeightTokenData,
|
|
10196
|
-
textLgLineHeight: LineHeightTokenData,
|
|
10197
|
-
textXlLineHeight: LineHeightTokenData,
|
|
10198
|
-
text2xlLineHeight: LineHeightTokenData,
|
|
10199
|
-
text3xlLineHeight: LineHeightTokenData,
|
|
10200
|
-
text4xlLineHeight: LineHeightTokenData,
|
|
10201
|
-
text5xlLineHeight: LineHeightTokenData,
|
|
10202
|
-
text6xlLineHeight: LineHeightTokenData,
|
|
10203
|
-
text7xlLineHeight: LineHeightTokenData,
|
|
10204
|
-
text8xlLineHeight: LineHeightTokenData,
|
|
10205
|
-
text9xlLineHeight: LineHeightTokenData,
|
|
10206
|
-
// Font weights
|
|
10207
|
-
fontWeightThin: FontWeightTokenData,
|
|
10208
|
-
fontWeightExtralight: FontWeightTokenData,
|
|
10209
|
-
fontWeightLight: FontWeightTokenData,
|
|
10210
|
-
fontWeightNormal: FontWeightTokenData,
|
|
10211
|
-
fontWeightMedium: FontWeightTokenData,
|
|
10212
|
-
fontWeightSemibold: FontWeightTokenData,
|
|
10213
|
-
fontWeightBold: FontWeightTokenData,
|
|
10214
|
-
fontWeightExtrabold: FontWeightTokenData,
|
|
10215
|
-
fontWeightBlack: FontWeightTokenData,
|
|
10216
|
-
// Other dimensions
|
|
10217
|
-
radius: BorderRadiusTokenData,
|
|
10218
|
-
spacing: SpaceTokenData,
|
|
10219
|
-
// Shadows
|
|
10220
|
-
shadow2xs: ShadowTokenData,
|
|
10221
|
-
shadowXs: ShadowTokenData,
|
|
10222
|
-
shadowSm: ShadowTokenData,
|
|
10223
|
-
shadowMd: ShadowTokenData,
|
|
10224
|
-
shadowLg: ShadowTokenData,
|
|
10225
|
-
shadowXl: ShadowTokenData,
|
|
10226
|
-
shadow2xl: ShadowTokenData
|
|
10227
|
-
});
|
|
10228
|
-
var DTOForgeProjectContextV2 = _zod.z.object({
|
|
10229
|
-
id: _zod.z.string(),
|
|
10230
|
-
name: _zod.z.string(),
|
|
10231
|
-
workspaceId: _zod.z.string(),
|
|
10232
|
-
designSystemId: _zod.z.string().optional(),
|
|
10233
|
-
brandId: _zod.z.string().optional(),
|
|
10234
|
-
defaultTokenThemeSetId: _zod.z.string().optional(),
|
|
10235
|
-
description: _zod.z.string().optional(),
|
|
10236
|
-
productContext: _zod.z.string().optional(),
|
|
10237
|
-
additionalContext: _zod.z.string().optional(),
|
|
10238
|
-
isArchived: _zod.z.boolean(),
|
|
10239
|
-
themePreset: _zod.z.string().optional(),
|
|
10240
|
-
tokenThemeSets: _zod.z.array(DTOForgeTokenThemeSet).optional(),
|
|
10241
|
-
componentSet: DTOForgeComponentSet,
|
|
10242
|
-
iconSet: DTOForgeIconSet,
|
|
10243
|
-
theme: DTOForgeProjectTheme,
|
|
10244
|
-
createdAt: _zod.z.coerce.date(),
|
|
10245
|
-
updatedAt: _zod.z.coerce.date(),
|
|
10246
|
-
thumbnail: DTOFileReference.optional()
|
|
10247
|
-
});
|
|
10248
|
-
var DTOForgeProjectContextCreateV2 = DTOForgeProjectContextV2.omit({
|
|
10249
|
-
id: true,
|
|
10250
|
-
createdAt: true,
|
|
10251
|
-
updatedAt: true,
|
|
10252
|
-
isArchived: true,
|
|
10253
|
-
thumbnail: true
|
|
10254
|
-
}).extend({
|
|
10255
|
-
thumbnailFileId: _zod.z.string().optional()
|
|
10256
|
-
});
|
|
10257
|
-
var DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextV2.omit({
|
|
10258
|
-
id: true,
|
|
10259
|
-
workspaceId: true,
|
|
10260
|
-
createdAt: true,
|
|
10261
|
-
updatedAt: true,
|
|
10262
|
-
thumbnail: true
|
|
10263
|
-
}).partial().extend({
|
|
10264
|
-
thumbnailFileId: _zod.z.string().optional()
|
|
10265
|
-
});
|
|
10266
|
-
var DTOForgeProjectContextResponseV2 = _zod.z.object({ context: DTOForgeProjectContextV2 });
|
|
10267
|
-
var DTOForgeProjectContextListQueryV2 = _zod.z.object({
|
|
10268
|
-
workspaceId: _zod.z.string(),
|
|
10269
|
-
isArchived: zodQueryBoolean()
|
|
10270
|
-
});
|
|
10271
|
-
var DTOForgeProjectContextListResponseV2 = _zod.z.object({ contexts: _zod.z.array(DTOForgeProjectContextV2) });
|
|
10272
|
-
|
|
10273
10126
|
// src/api/dto/forge/project-feature.ts
|
|
10274
10127
|
|
|
10275
10128
|
var DTOForgeProjectFeature = ProjectFeature;
|
|
@@ -10302,123 +10155,7 @@ var DTOForgeProjectFeatureGetByIdParam = _zod2.default.object({
|
|
|
10302
10155
|
});
|
|
10303
10156
|
var DTOForgeProjectFeatureMoveInput = DTOForgeSectionItemMoveInput;
|
|
10304
10157
|
|
|
10305
|
-
// src/api/dto/forge/project-invitation.ts
|
|
10306
|
-
|
|
10307
|
-
var DTOForgeProjectInvitation = ForgeProjectInvitation;
|
|
10308
|
-
var DTOCreateForgeProjectInvitation = DTOForgeProjectInvitation.pick({
|
|
10309
|
-
email: true,
|
|
10310
|
-
role: true
|
|
10311
|
-
});
|
|
10312
|
-
var DTOUpdateForgeProjectInvitation = DTOCreateForgeProjectInvitation;
|
|
10313
|
-
var DTORemoveForgeProjectInvitation = DTOCreateForgeProjectInvitation.pick({
|
|
10314
|
-
email: true
|
|
10315
|
-
});
|
|
10316
|
-
var DTOForgeProjectInvitationsListResponse = _zod.z.object({
|
|
10317
|
-
invitations: _zod.z.array(DTOForgeProjectInvitation)
|
|
10318
|
-
});
|
|
10319
|
-
var DTOForgeProjectInvitationGetResponse = _zod.z.object({
|
|
10320
|
-
invitation: DTOForgeProjectInvitation
|
|
10321
|
-
});
|
|
10322
|
-
var DTOForgeProjectInvitationCreateResponse = _zod.z.object({
|
|
10323
|
-
invitation: DTOForgeProjectInvitation
|
|
10324
|
-
});
|
|
10325
|
-
var DTOForgeProjectInvitationUpdateResponse = _zod.z.object({
|
|
10326
|
-
invitation: DTOForgeProjectInvitation.nullable()
|
|
10327
|
-
});
|
|
10328
|
-
var DTOForgeProjectInvitationRemoveResponse = _zod.z.object({
|
|
10329
|
-
ok: _zod.z.literal(true)
|
|
10330
|
-
});
|
|
10331
|
-
|
|
10332
|
-
// src/api/dto/forge/project.ts
|
|
10333
|
-
var DTOForgeProjectRole = ForgeProjectRole;
|
|
10334
|
-
var DTOForgeProjectAccessMode = ForgeProjectAccessMode;
|
|
10335
|
-
var DTOForgeProjectDefaultRole = ForgeDefaultProjectRole;
|
|
10336
|
-
var DTOForgeProjectDocumentPreview = _zod.z.object({
|
|
10337
|
-
id: _zod.z.string(),
|
|
10338
|
-
title: _zod.z.string(),
|
|
10339
|
-
thumbnail: DTOFileReference.optional(),
|
|
10340
|
-
createdAt: _zod.z.string(),
|
|
10341
|
-
updatedAt: _zod.z.string()
|
|
10342
|
-
});
|
|
10343
|
-
var DTOForgeProjectFeaturePreview = _zod.z.object({
|
|
10344
|
-
id: _zod.z.string(),
|
|
10345
|
-
name: _zod.z.string(),
|
|
10346
|
-
thumbnail: DTOFileReference.optional(),
|
|
10347
|
-
createdAt: _zod.z.string(),
|
|
10348
|
-
updatedAt: _zod.z.string()
|
|
10349
|
-
});
|
|
10350
|
-
var DTOForgeProject = _zod.z.object({
|
|
10351
|
-
id: _zod.z.string(),
|
|
10352
|
-
workspaceId: _zod.z.string(),
|
|
10353
|
-
projectContextId: _zod.z.string(),
|
|
10354
|
-
name: _zod.z.string(),
|
|
10355
|
-
description: _zod.z.string().optional(),
|
|
10356
|
-
instruction: _zod.z.string().nullable(),
|
|
10357
|
-
tags: _zod.z.array(_zod.z.string()).default([]),
|
|
10358
|
-
accessMode: DTOForgeProjectAccessMode,
|
|
10359
|
-
defaultRole: DTOForgeProjectDefaultRole,
|
|
10360
|
-
isArchived: _zod.z.boolean(),
|
|
10361
|
-
emoji: _zod.z.string().optional(),
|
|
10362
|
-
tokenThemeSetId: _zod.z.string().optional(),
|
|
10363
|
-
createdAt: _zod.z.coerce.date(),
|
|
10364
|
-
createdByUserId: _zod.z.string().optional(),
|
|
10365
|
-
lastUserActivityAt: _zod.z.coerce.date().optional(),
|
|
10366
|
-
updatedAt: _zod.z.coerce.date(),
|
|
10367
|
-
documents: DTOForgeProjectDocumentPreview.array(),
|
|
10368
|
-
features: DTOForgeProjectFeaturePreview.array(),
|
|
10369
|
-
/** @deprecated use `projectContextId` */
|
|
10370
|
-
fpContextId: _zod.z.string(),
|
|
10371
|
-
/** @deprecated use `name` and `description` properties on project */
|
|
10372
|
-
meta: _zod.z.object({
|
|
10373
|
-
name: _zod.z.string(),
|
|
10374
|
-
description: _zod.z.string().optional()
|
|
10375
|
-
}),
|
|
10376
|
-
/** @deprecated use features.length */
|
|
10377
|
-
numberOfFeatures: _zod.z.number().int().nonnegative(),
|
|
10378
|
-
/** @deprecated use documents.length */
|
|
10379
|
-
numberOfDocuments: _zod.z.number().int().nonnegative().optional(),
|
|
10380
|
-
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
10381
|
-
context: DTOForgeProjectContextV2.optional(),
|
|
10382
|
-
liveblocksRoomId: _zod.z.string().optional()
|
|
10383
|
-
});
|
|
10384
|
-
var DTOForgeProjectCreate = DTOForgeProject.pick({
|
|
10385
|
-
name: true,
|
|
10386
|
-
description: true,
|
|
10387
|
-
instruction: true,
|
|
10388
|
-
tags: true,
|
|
10389
|
-
emoji: true,
|
|
10390
|
-
tokenThemeSetId: true
|
|
10391
|
-
}).extend({
|
|
10392
|
-
/** @deprecated use `name` and `description` properties on project */
|
|
10393
|
-
meta: DTOForgeProject.shape.meta.optional(),
|
|
10394
|
-
/** @deprecated use `projectContextId` */
|
|
10395
|
-
fpContextId: _zod.z.string().optional(),
|
|
10396
|
-
projectContextId: _zod.z.string().optional(),
|
|
10397
|
-
membersToInvite: DTOCreateForgeProjectInvitation.array().min(1).optional(),
|
|
10398
|
-
initialFeature: DTOForgeProjectFeatureCreateInput.optional(),
|
|
10399
|
-
initialArtifact: DTOForgeProjectArtifactCreateInput.optional(),
|
|
10400
|
-
accessMode: DTOForgeProjectAccessMode.optional(),
|
|
10401
|
-
defaultRole: DTOForgeProjectDefaultRole.optional()
|
|
10402
|
-
});
|
|
10403
|
-
var DTOForgeProjectUpdate = DTOForgeProjectCreate.omit({ membersToInvite: true }).partial().extend({
|
|
10404
|
-
id: _zod.z.string(),
|
|
10405
|
-
isArchived: _zod.z.boolean().optional()
|
|
10406
|
-
});
|
|
10407
|
-
var DTOForgeProjectListResponse = _zod.z.object({
|
|
10408
|
-
projects: _zod.z.array(
|
|
10409
|
-
DTOForgeProject.extend({
|
|
10410
|
-
effectiveRole: DTOForgeProjectRole
|
|
10411
|
-
})
|
|
10412
|
-
)
|
|
10413
|
-
});
|
|
10414
|
-
var DTOForgeProjectResponse = _zod.z.object({
|
|
10415
|
-
project: DTOForgeProject.extend({
|
|
10416
|
-
effectiveRole: DTOForgeProjectRole
|
|
10417
|
-
})
|
|
10418
|
-
});
|
|
10419
|
-
|
|
10420
10158
|
// src/api/dto/forge/project-action.ts
|
|
10421
|
-
|
|
10422
10159
|
var DTOForgeProjectActionFeatureCreate = _zod2.default.object({
|
|
10423
10160
|
type: _zod2.default.literal("FeatureCreate"),
|
|
10424
10161
|
input: DTOForgeProjectFeatureCreateInput
|
|
@@ -10497,57 +10234,206 @@ var DTOForgeProjectArtifactRoom = _zod.z.object({
|
|
|
10497
10234
|
var DTOForgeProjectArtifactRoomResponse = _zod.z.object({
|
|
10498
10235
|
room: DTOForgeProjectArtifactRoom
|
|
10499
10236
|
});
|
|
10500
|
-
|
|
10501
|
-
// src/api/dto/forge/project-context.ts
|
|
10502
|
-
|
|
10503
|
-
|
|
10504
|
-
|
|
10505
|
-
|
|
10506
|
-
|
|
10507
|
-
|
|
10508
|
-
|
|
10509
|
-
|
|
10510
|
-
|
|
10511
|
-
|
|
10512
|
-
|
|
10237
|
+
|
|
10238
|
+
// src/api/dto/forge/project-context-override.ts
|
|
10239
|
+
|
|
10240
|
+
|
|
10241
|
+
// src/api/dto/forge/project-context.ts
|
|
10242
|
+
|
|
10243
|
+
var DTOForgeProjectContext = _zod.z.object({
|
|
10244
|
+
definition: _zod.z.string(),
|
|
10245
|
+
dependencies: _zod.z.array(
|
|
10246
|
+
_zod.z.object({
|
|
10247
|
+
packageName: _zod.z.string(),
|
|
10248
|
+
type: _zod.z.literal("npm"),
|
|
10249
|
+
version: _zod.z.string().default("latest")
|
|
10250
|
+
})
|
|
10251
|
+
),
|
|
10252
|
+
designSystemId: _zod.z.string(),
|
|
10253
|
+
id: _zod.z.string(),
|
|
10254
|
+
meta: _zod.z.object({
|
|
10255
|
+
name: _zod.z.string(),
|
|
10256
|
+
description: _zod.z.string().optional()
|
|
10257
|
+
}),
|
|
10258
|
+
name: _zod.z.string(),
|
|
10259
|
+
npmProxySettings: DTONpmRegistryConfig.optional(),
|
|
10260
|
+
platform: _zod.z.enum(["React", "Vue", "Angular"]),
|
|
10261
|
+
styling: _zod.z.enum(["CSS", "Tailwind"]),
|
|
10262
|
+
tailwindConfig: _zod.z.object({
|
|
10263
|
+
content: _zod.z.string(),
|
|
10264
|
+
version: _zod.z.string()
|
|
10265
|
+
}).optional(),
|
|
10266
|
+
createdAt: _zod.z.coerce.date(),
|
|
10267
|
+
updatedAt: _zod.z.coerce.date(),
|
|
10268
|
+
workspaceId: _zod.z.string()
|
|
10269
|
+
});
|
|
10270
|
+
var DTOCreateForgeProjectContext = DTOForgeProjectContext.pick({
|
|
10271
|
+
definition: true,
|
|
10272
|
+
name: true,
|
|
10273
|
+
meta: true,
|
|
10274
|
+
designSystemId: true,
|
|
10275
|
+
platform: true,
|
|
10276
|
+
dependencies: true,
|
|
10277
|
+
tailwindConfig: true,
|
|
10278
|
+
styling: true
|
|
10279
|
+
}).extend({ npmProxySettings: DTONpmRegistryConfig });
|
|
10280
|
+
var DTOUpdateForgeProjectContext = DTOCreateForgeProjectContext.partial().extend({ id: _zod.z.string() });
|
|
10281
|
+
var DTOForgeProjectContextGetResponse = _zod.z.object({ context: DTOForgeProjectContext });
|
|
10282
|
+
var DTOForgeProjectContextListResponse = _zod.z.object({ contexts: _zod.z.array(DTOForgeProjectContext) });
|
|
10283
|
+
var DTOForgeProjectContextCreateResponse = _zod.z.object({ context: DTOForgeProjectContext });
|
|
10284
|
+
var DTOForgeProjectContextUpdateResponse = _zod.z.object({ context: DTOForgeProjectContext });
|
|
10285
|
+
var DTOForgeProjectContextRemoveResponse = _zod.z.object({
|
|
10286
|
+
ok: _zod.z.literal(true)
|
|
10287
|
+
});
|
|
10288
|
+
|
|
10289
|
+
// src/api/dto/forge/project-context-v2.ts
|
|
10290
|
+
|
|
10291
|
+
var DTOForgeComponentSetTypeV2 = _zod.z.enum(["Shadcn"]);
|
|
10292
|
+
var DTOForgeComponentSet = _zod.z.object({
|
|
10293
|
+
type: DTOForgeComponentSetTypeV2
|
|
10294
|
+
});
|
|
10295
|
+
var DTOForgeIconSetTypeV2 = _zod.z.enum(["Phosphor", "Lucide", "Tabler"]);
|
|
10296
|
+
var DTOForgeThemeKnownPreset = _zod.z.enum(["Default", "Airbnb", "Spotify", "Windows98"]);
|
|
10297
|
+
var DTOForgeIconSet = _zod.z.object({
|
|
10298
|
+
type: DTOForgeIconSetTypeV2,
|
|
10299
|
+
variant: _zod.z.string().optional()
|
|
10300
|
+
});
|
|
10301
|
+
var DTOForgeTokenThemeSet = _zod.z.object({
|
|
10302
|
+
id: _zod.z.string(),
|
|
10303
|
+
name: _zod.z.string(),
|
|
10304
|
+
tokenThemeIds: _zod.z.array(_zod.z.string())
|
|
10305
|
+
});
|
|
10306
|
+
var DTOForgeProjectTheme = _zod.z.object({
|
|
10307
|
+
// Colors
|
|
10308
|
+
background: ColorTokenData,
|
|
10309
|
+
foreground: ColorTokenData,
|
|
10310
|
+
card: ColorTokenData,
|
|
10311
|
+
cardForeground: ColorTokenData,
|
|
10312
|
+
popover: ColorTokenData,
|
|
10313
|
+
popoverForeground: ColorTokenData,
|
|
10314
|
+
primary: ColorTokenData,
|
|
10315
|
+
primaryForeground: ColorTokenData,
|
|
10316
|
+
secondary: ColorTokenData,
|
|
10317
|
+
secondaryForeground: ColorTokenData,
|
|
10318
|
+
muted: ColorTokenData,
|
|
10319
|
+
mutedForeground: ColorTokenData,
|
|
10320
|
+
accent: ColorTokenData,
|
|
10321
|
+
accentForeground: ColorTokenData,
|
|
10322
|
+
destructive: ColorTokenData,
|
|
10323
|
+
border: ColorTokenData,
|
|
10324
|
+
input: ColorTokenData,
|
|
10325
|
+
ring: ColorTokenData,
|
|
10326
|
+
chart1: ColorTokenData,
|
|
10327
|
+
chart2: ColorTokenData,
|
|
10328
|
+
chart3: ColorTokenData,
|
|
10329
|
+
chart4: ColorTokenData,
|
|
10330
|
+
chart5: ColorTokenData,
|
|
10331
|
+
sidebar: ColorTokenData,
|
|
10332
|
+
sidebarForeground: ColorTokenData,
|
|
10333
|
+
sidebarPrimary: ColorTokenData,
|
|
10334
|
+
sidebarPrimaryForeground: ColorTokenData,
|
|
10335
|
+
sidebarAccent: ColorTokenData,
|
|
10336
|
+
sidebarAccentForeground: ColorTokenData,
|
|
10337
|
+
sidebarBorder: ColorTokenData,
|
|
10338
|
+
sidebarRing: ColorTokenData,
|
|
10339
|
+
// Font family
|
|
10340
|
+
fontFamily: FontFamilyTokenData,
|
|
10341
|
+
// Font sizes
|
|
10342
|
+
textXs: FontSizeTokenData,
|
|
10343
|
+
textSm: FontSizeTokenData,
|
|
10344
|
+
textBase: FontSizeTokenData,
|
|
10345
|
+
textLg: FontSizeTokenData,
|
|
10346
|
+
textXl: FontSizeTokenData,
|
|
10347
|
+
text2xl: FontSizeTokenData,
|
|
10348
|
+
text3xl: FontSizeTokenData,
|
|
10349
|
+
text4xl: FontSizeTokenData,
|
|
10350
|
+
text5xl: FontSizeTokenData,
|
|
10351
|
+
text6xl: FontSizeTokenData,
|
|
10352
|
+
text7xl: FontSizeTokenData,
|
|
10353
|
+
text8xl: FontSizeTokenData,
|
|
10354
|
+
text9xl: FontSizeTokenData,
|
|
10355
|
+
// Line heights
|
|
10356
|
+
textXsLineHeight: LineHeightTokenData,
|
|
10357
|
+
textSmLineHeight: LineHeightTokenData,
|
|
10358
|
+
textBaseLineHeight: LineHeightTokenData,
|
|
10359
|
+
textLgLineHeight: LineHeightTokenData,
|
|
10360
|
+
textXlLineHeight: LineHeightTokenData,
|
|
10361
|
+
text2xlLineHeight: LineHeightTokenData,
|
|
10362
|
+
text3xlLineHeight: LineHeightTokenData,
|
|
10363
|
+
text4xlLineHeight: LineHeightTokenData,
|
|
10364
|
+
text5xlLineHeight: LineHeightTokenData,
|
|
10365
|
+
text6xlLineHeight: LineHeightTokenData,
|
|
10366
|
+
text7xlLineHeight: LineHeightTokenData,
|
|
10367
|
+
text8xlLineHeight: LineHeightTokenData,
|
|
10368
|
+
text9xlLineHeight: LineHeightTokenData,
|
|
10369
|
+
// Font weights
|
|
10370
|
+
fontWeightThin: FontWeightTokenData,
|
|
10371
|
+
fontWeightExtralight: FontWeightTokenData,
|
|
10372
|
+
fontWeightLight: FontWeightTokenData,
|
|
10373
|
+
fontWeightNormal: FontWeightTokenData,
|
|
10374
|
+
fontWeightMedium: FontWeightTokenData,
|
|
10375
|
+
fontWeightSemibold: FontWeightTokenData,
|
|
10376
|
+
fontWeightBold: FontWeightTokenData,
|
|
10377
|
+
fontWeightExtrabold: FontWeightTokenData,
|
|
10378
|
+
fontWeightBlack: FontWeightTokenData,
|
|
10379
|
+
// Other dimensions
|
|
10380
|
+
radius: BorderRadiusTokenData,
|
|
10381
|
+
spacing: SpaceTokenData,
|
|
10382
|
+
// Shadows
|
|
10383
|
+
shadow2xs: ShadowTokenData,
|
|
10384
|
+
shadowXs: ShadowTokenData,
|
|
10385
|
+
shadowSm: ShadowTokenData,
|
|
10386
|
+
shadowMd: ShadowTokenData,
|
|
10387
|
+
shadowLg: ShadowTokenData,
|
|
10388
|
+
shadowXl: ShadowTokenData,
|
|
10389
|
+
shadow2xl: ShadowTokenData
|
|
10390
|
+
});
|
|
10391
|
+
var DTOForgeProjectContextV2 = _zod.z.object({
|
|
10513
10392
|
id: _zod.z.string(),
|
|
10514
|
-
meta: _zod.z.object({
|
|
10515
|
-
name: _zod.z.string(),
|
|
10516
|
-
description: _zod.z.string().optional()
|
|
10517
|
-
}),
|
|
10518
10393
|
name: _zod.z.string(),
|
|
10519
|
-
|
|
10520
|
-
|
|
10521
|
-
|
|
10522
|
-
|
|
10523
|
-
|
|
10524
|
-
|
|
10525
|
-
|
|
10394
|
+
workspaceId: _zod.z.string(),
|
|
10395
|
+
designSystemId: _zod.z.string().optional(),
|
|
10396
|
+
brandId: _zod.z.string().optional(),
|
|
10397
|
+
defaultTokenThemeSetId: _zod.z.string().optional(),
|
|
10398
|
+
description: _zod.z.string().optional(),
|
|
10399
|
+
productContext: _zod.z.string().optional(),
|
|
10400
|
+
additionalContext: _zod.z.string().optional(),
|
|
10401
|
+
isArchived: _zod.z.boolean(),
|
|
10402
|
+
themePreset: _zod.z.string().optional(),
|
|
10403
|
+
tokenThemeSets: _zod.z.array(DTOForgeTokenThemeSet).optional(),
|
|
10404
|
+
componentSet: DTOForgeComponentSet,
|
|
10405
|
+
iconSet: DTOForgeIconSet,
|
|
10406
|
+
theme: DTOForgeProjectTheme,
|
|
10526
10407
|
createdAt: _zod.z.coerce.date(),
|
|
10527
10408
|
updatedAt: _zod.z.coerce.date(),
|
|
10528
|
-
|
|
10409
|
+
thumbnail: DTOFileReference.optional()
|
|
10529
10410
|
});
|
|
10530
|
-
var
|
|
10531
|
-
|
|
10532
|
-
|
|
10533
|
-
|
|
10534
|
-
|
|
10535
|
-
|
|
10536
|
-
|
|
10537
|
-
|
|
10538
|
-
|
|
10539
|
-
|
|
10540
|
-
|
|
10541
|
-
|
|
10542
|
-
|
|
10543
|
-
|
|
10544
|
-
|
|
10545
|
-
|
|
10546
|
-
|
|
10411
|
+
var DTOForgeProjectContextCreateV2 = DTOForgeProjectContextV2.omit({
|
|
10412
|
+
id: true,
|
|
10413
|
+
createdAt: true,
|
|
10414
|
+
updatedAt: true,
|
|
10415
|
+
isArchived: true,
|
|
10416
|
+
thumbnail: true
|
|
10417
|
+
}).extend({
|
|
10418
|
+
thumbnailFileId: _zod.z.string().optional()
|
|
10419
|
+
});
|
|
10420
|
+
var DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextV2.omit({
|
|
10421
|
+
id: true,
|
|
10422
|
+
workspaceId: true,
|
|
10423
|
+
createdAt: true,
|
|
10424
|
+
updatedAt: true,
|
|
10425
|
+
thumbnail: true
|
|
10426
|
+
}).partial().extend({
|
|
10427
|
+
thumbnailFileId: _zod.z.string().optional()
|
|
10428
|
+
});
|
|
10429
|
+
var DTOForgeProjectContextResponseV2 = _zod.z.object({ context: DTOForgeProjectContextV2 });
|
|
10430
|
+
var DTOForgeProjectContextListQueryV2 = _zod.z.object({
|
|
10431
|
+
workspaceId: _zod.z.string(),
|
|
10432
|
+
isArchived: zodQueryBoolean()
|
|
10547
10433
|
});
|
|
10434
|
+
var DTOForgeProjectContextListResponseV2 = _zod.z.object({ contexts: _zod.z.array(DTOForgeProjectContextV2) });
|
|
10548
10435
|
|
|
10549
10436
|
// src/api/dto/forge/project-context-override.ts
|
|
10550
|
-
|
|
10551
10437
|
var DTOProjectContextOverride = _zod2.default.object({
|
|
10552
10438
|
projectId: _zod2.default.string(),
|
|
10553
10439
|
theme: DTOForgeProjectTheme.partial()
|
|
@@ -10600,6 +10486,33 @@ var DTOForgeProjectFileUploadFinalizePayload = _zod.z.object({
|
|
|
10600
10486
|
});
|
|
10601
10487
|
var DTOForgeProjectFileUploadFinalizeResponse = _zod.z.object({ ok: _zod.z.literal(true) });
|
|
10602
10488
|
|
|
10489
|
+
// src/api/dto/forge/project-invitation.ts
|
|
10490
|
+
|
|
10491
|
+
var DTOForgeProjectInvitation = ForgeProjectInvitation;
|
|
10492
|
+
var DTOCreateForgeProjectInvitation = DTOForgeProjectInvitation.pick({
|
|
10493
|
+
email: true,
|
|
10494
|
+
role: true
|
|
10495
|
+
});
|
|
10496
|
+
var DTOUpdateForgeProjectInvitation = DTOCreateForgeProjectInvitation;
|
|
10497
|
+
var DTORemoveForgeProjectInvitation = DTOCreateForgeProjectInvitation.pick({
|
|
10498
|
+
email: true
|
|
10499
|
+
});
|
|
10500
|
+
var DTOForgeProjectInvitationsListResponse = _zod.z.object({
|
|
10501
|
+
invitations: _zod.z.array(DTOForgeProjectInvitation)
|
|
10502
|
+
});
|
|
10503
|
+
var DTOForgeProjectInvitationGetResponse = _zod.z.object({
|
|
10504
|
+
invitation: DTOForgeProjectInvitation
|
|
10505
|
+
});
|
|
10506
|
+
var DTOForgeProjectInvitationCreateResponse = _zod.z.object({
|
|
10507
|
+
invitation: DTOForgeProjectInvitation
|
|
10508
|
+
});
|
|
10509
|
+
var DTOForgeProjectInvitationUpdateResponse = _zod.z.object({
|
|
10510
|
+
invitation: DTOForgeProjectInvitation.nullable()
|
|
10511
|
+
});
|
|
10512
|
+
var DTOForgeProjectInvitationRemoveResponse = _zod.z.object({
|
|
10513
|
+
ok: _zod.z.literal(true)
|
|
10514
|
+
});
|
|
10515
|
+
|
|
10603
10516
|
// src/api/dto/forge/project-iteration-old.ts
|
|
10604
10517
|
|
|
10605
10518
|
var DTOForgeProjectIterationMergeMeta = ForgeProjectIterationMergeMeta;
|
|
@@ -10679,6 +10592,139 @@ var DTOForgeProjectRoomResponse = _zod.z.object({
|
|
|
10679
10592
|
room: DTOForgeProjectRoom
|
|
10680
10593
|
});
|
|
10681
10594
|
|
|
10595
|
+
// src/api/dto/forge/project.ts
|
|
10596
|
+
|
|
10597
|
+
var DTOForgeProjectRole = ForgeProjectRole;
|
|
10598
|
+
var DTOForgeProjectAccessMode = ForgeProjectAccessMode;
|
|
10599
|
+
var DTOForgeProjectDefaultRole = ForgeDefaultProjectRole;
|
|
10600
|
+
var DTOForgeProjectDocumentPreview = _zod.z.object({
|
|
10601
|
+
id: _zod.z.string(),
|
|
10602
|
+
title: _zod.z.string(),
|
|
10603
|
+
thumbnail: DTOFileReference.optional(),
|
|
10604
|
+
createdAt: _zod.z.string(),
|
|
10605
|
+
updatedAt: _zod.z.string()
|
|
10606
|
+
});
|
|
10607
|
+
var DTOForgeProjectFeaturePreview = _zod.z.object({
|
|
10608
|
+
id: _zod.z.string(),
|
|
10609
|
+
name: _zod.z.string(),
|
|
10610
|
+
thumbnail: DTOFileReference.optional(),
|
|
10611
|
+
createdAt: _zod.z.string(),
|
|
10612
|
+
updatedAt: _zod.z.string()
|
|
10613
|
+
});
|
|
10614
|
+
var DTOForgeProject = _zod.z.object({
|
|
10615
|
+
id: _zod.z.string(),
|
|
10616
|
+
workspaceId: _zod.z.string(),
|
|
10617
|
+
projectContextId: _zod.z.string(),
|
|
10618
|
+
name: _zod.z.string(),
|
|
10619
|
+
description: _zod.z.string().optional(),
|
|
10620
|
+
instruction: _zod.z.string().nullable(),
|
|
10621
|
+
tags: _zod.z.array(_zod.z.string()).default([]),
|
|
10622
|
+
accessMode: DTOForgeProjectAccessMode,
|
|
10623
|
+
defaultRole: DTOForgeProjectDefaultRole,
|
|
10624
|
+
isArchived: _zod.z.boolean(),
|
|
10625
|
+
emoji: _zod.z.string().optional(),
|
|
10626
|
+
tokenThemeSetId: _zod.z.string().optional(),
|
|
10627
|
+
createdAt: _zod.z.coerce.date(),
|
|
10628
|
+
createdByUserId: _zod.z.string().optional(),
|
|
10629
|
+
lastUserActivityAt: _zod.z.coerce.date().optional(),
|
|
10630
|
+
updatedAt: _zod.z.coerce.date(),
|
|
10631
|
+
documents: DTOForgeProjectDocumentPreview.array(),
|
|
10632
|
+
features: DTOForgeProjectFeaturePreview.array(),
|
|
10633
|
+
/** @deprecated use `projectContextId` */
|
|
10634
|
+
fpContextId: _zod.z.string(),
|
|
10635
|
+
/** @deprecated use `name` and `description` properties on project */
|
|
10636
|
+
meta: _zod.z.object({
|
|
10637
|
+
name: _zod.z.string(),
|
|
10638
|
+
description: _zod.z.string().optional()
|
|
10639
|
+
}),
|
|
10640
|
+
/** @deprecated use features.length */
|
|
10641
|
+
numberOfFeatures: _zod.z.number().int().nonnegative(),
|
|
10642
|
+
/** @deprecated use documents.length */
|
|
10643
|
+
numberOfDocuments: _zod.z.number().int().nonnegative().optional(),
|
|
10644
|
+
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
10645
|
+
context: DTOForgeProjectContextV2.optional(),
|
|
10646
|
+
liveblocksRoomId: _zod.z.string().optional()
|
|
10647
|
+
});
|
|
10648
|
+
var DTOForgeProjectCreate = DTOForgeProject.pick({
|
|
10649
|
+
name: true,
|
|
10650
|
+
description: true,
|
|
10651
|
+
instruction: true,
|
|
10652
|
+
tags: true,
|
|
10653
|
+
emoji: true,
|
|
10654
|
+
tokenThemeSetId: true
|
|
10655
|
+
}).extend({
|
|
10656
|
+
/** @deprecated use `name` and `description` properties on project */
|
|
10657
|
+
meta: DTOForgeProject.shape.meta.optional(),
|
|
10658
|
+
/** @deprecated use `projectContextId` */
|
|
10659
|
+
fpContextId: _zod.z.string().optional(),
|
|
10660
|
+
projectContextId: _zod.z.string().optional(),
|
|
10661
|
+
membersToInvite: DTOCreateForgeProjectInvitation.array().min(1).optional(),
|
|
10662
|
+
initialFeature: DTOForgeProjectFeatureCreateInput.optional(),
|
|
10663
|
+
initialArtifact: DTOForgeProjectArtifactCreateInput.optional(),
|
|
10664
|
+
accessMode: DTOForgeProjectAccessMode.optional(),
|
|
10665
|
+
defaultRole: DTOForgeProjectDefaultRole.optional()
|
|
10666
|
+
});
|
|
10667
|
+
var DTOForgeProjectUpdate = DTOForgeProjectCreate.omit({ membersToInvite: true }).partial().extend({
|
|
10668
|
+
id: _zod.z.string(),
|
|
10669
|
+
isArchived: _zod.z.boolean().optional()
|
|
10670
|
+
});
|
|
10671
|
+
var DTOForgeProjectListResponse = _zod.z.object({
|
|
10672
|
+
projects: _zod.z.array(
|
|
10673
|
+
DTOForgeProject.extend({
|
|
10674
|
+
effectiveRole: DTOForgeProjectRole
|
|
10675
|
+
})
|
|
10676
|
+
)
|
|
10677
|
+
});
|
|
10678
|
+
var DTOForgeProjectResponse = _zod.z.object({
|
|
10679
|
+
project: DTOForgeProject.extend({
|
|
10680
|
+
effectiveRole: DTOForgeProjectRole
|
|
10681
|
+
})
|
|
10682
|
+
});
|
|
10683
|
+
var DTOForgeProjectCreated = _zod.z.object({
|
|
10684
|
+
type: _zod.z.literal("ProjectCreated"),
|
|
10685
|
+
data: _zod.z.object({ id: _zod.z.string() })
|
|
10686
|
+
});
|
|
10687
|
+
var DTOForgeProjectUpdated = _zod.z.object({
|
|
10688
|
+
type: _zod.z.literal("ProjectUpdated"),
|
|
10689
|
+
data: _zod.z.object({ id: _zod.z.string() })
|
|
10690
|
+
});
|
|
10691
|
+
var DTOForgeProjectMembersCreated = _zod.z.object({
|
|
10692
|
+
type: _zod.z.literal("ProjectMembersCreated"),
|
|
10693
|
+
data: _zod.z.array(DTOForgeProjectMember)
|
|
10694
|
+
});
|
|
10695
|
+
var DTOForgeProjectMemberUpdated = _zod.z.object({
|
|
10696
|
+
type: _zod.z.literal("ProjectMemberUpdated"),
|
|
10697
|
+
data: DTOForgeProjectMember
|
|
10698
|
+
});
|
|
10699
|
+
var DTOForgeProjectMemberDeleted = _zod.z.object({
|
|
10700
|
+
type: _zod.z.literal("ProjectMemberDeleted"),
|
|
10701
|
+
data: DTOForgeProjectMember.pick({ userId: true })
|
|
10702
|
+
});
|
|
10703
|
+
var DTOForgeProjectContextCreated = _zod.z.object({
|
|
10704
|
+
type: _zod.z.literal("ProjectContextCreated"),
|
|
10705
|
+
data: DTOForgeProjectContextV2
|
|
10706
|
+
});
|
|
10707
|
+
var DTOForgeProjectContextUpdated = _zod.z.object({
|
|
10708
|
+
type: _zod.z.literal("ProjectContextUpdated"),
|
|
10709
|
+
data: DTOForgeProjectContextV2
|
|
10710
|
+
});
|
|
10711
|
+
var DTOForgeProjectContextDeleted = _zod.z.object({
|
|
10712
|
+
type: _zod.z.literal("ProjectContextDeleted"),
|
|
10713
|
+
data: DTOForgeProjectContextV2.pick({ id: true })
|
|
10714
|
+
});
|
|
10715
|
+
var DTOWorkspaceRoomEvent = _zod.z.discriminatedUnion("type", [
|
|
10716
|
+
DTOForgeProjectUpdated,
|
|
10717
|
+
DTOForgeProjectCreated,
|
|
10718
|
+
DTOForgeProjectContextCreated,
|
|
10719
|
+
DTOForgeProjectContextUpdated,
|
|
10720
|
+
DTOForgeProjectContextDeleted
|
|
10721
|
+
]);
|
|
10722
|
+
var DTOForgeProjectRoomEvent = _zod.z.discriminatedUnion("type", [
|
|
10723
|
+
DTOForgeProjectMembersCreated,
|
|
10724
|
+
DTOForgeProjectMemberUpdated,
|
|
10725
|
+
DTOForgeProjectMemberDeleted
|
|
10726
|
+
]);
|
|
10727
|
+
|
|
10682
10728
|
// src/api/dto/forge/relation.ts
|
|
10683
10729
|
|
|
10684
10730
|
var DTOForgeRelationType = ForgeRelationType;
|
|
@@ -20430,5 +20476,15 @@ var TransactionQueue2 = class {
|
|
|
20430
20476
|
|
|
20431
20477
|
|
|
20432
20478
|
|
|
20433
|
-
exports.BackendFeatureRoomYDoc = BackendFeatureRoomYDoc; exports.BackendForgeProjectRoomYDoc = BackendForgeProjectRoomYDoc; exports.BackendThreadRoomYDoc = BackendThreadRoomYDoc; exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.ChatThreadMessagesEndpoint = ChatThreadMessagesEndpoint; exports.CodeComponentsEndpoint = CodeComponentsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAccessToken = DTOAccessToken; exports.DTOAccessTokenCreatePayload = DTOAccessTokenCreatePayload; exports.DTOAccessTokenFull = DTOAccessTokenFull; exports.DTOAccessTokenFullResponse = DTOAccessTokenFullResponse; exports.DTOAccessTokenListResponse = DTOAccessTokenListResponse; exports.DTOAccessTokenResponse = DTOAccessTokenResponse; exports.DTOAddMembersToForgeProject = DTOAddMembersToForgeProject; exports.DTOAnalyzeCodeComponentsInPackage = DTOAnalyzeCodeComponentsInPackage; exports.DTOAnalyzeCodeComponentsInPackageInput = DTOAnalyzeCodeComponentsInPackageInput; exports.DTOAnalyzeCodeComponentsInPackageResponse = DTOAnalyzeCodeComponentsInPackageResponse; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAssetScope = DTOAssetScope; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOAvailableProductListResponse = DTOAvailableProductListResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBillingCheckoutCreditsTopUpInput = DTOBillingCheckoutCreditsTopUpInput; exports.DTOBillingCheckoutInput = DTOBillingCheckoutInput; exports.DTOBillingCheckoutMode = DTOBillingCheckoutMode; exports.DTOBillingCheckoutOldInput = DTOBillingCheckoutOldInput; exports.DTOBillingCheckoutResponse = DTOBillingCheckoutResponse; exports.DTOBillingCheckoutSubscriptionChangeInput = DTOBillingCheckoutSubscriptionChangeInput; exports.DTOBillingCreditsCheckIfCanSpendResponse = DTOBillingCreditsCheckIfCanSpendResponse; exports.DTOBillingCreditsSpendAction = DTOBillingCreditsSpendAction; exports.DTOBillingCreditsSpendInput = DTOBillingCreditsSpendInput; exports.DTOBillingCreditsSpendResponse = DTOBillingCreditsSpendResponse; exports.DTOBillingInterval = DTOBillingInterval; exports.DTOBillingSubscriptionChangePreviewInput = DTOBillingSubscriptionChangePreviewInput; exports.DTOBillingSupportedModels = DTOBillingSupportedModels; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCodeComponent = DTOCodeComponent; exports.DTOCodeComponentCreateInput = DTOCodeComponentCreateInput; exports.DTOCodeComponentListResponse = DTOCodeComponentListResponse; exports.DTOCodeComponentParentType = DTOCodeComponentParentType; exports.DTOCodeComponentProperty = DTOCodeComponentProperty; exports.DTOCodeComponentResolvedType = DTOCodeComponentResolvedType; exports.DTOCodeComponentResolvedTypeKind = DTOCodeComponentResolvedTypeKind; exports.DTOCodeComponentResponse = DTOCodeComponentResponse; exports.DTOCodeComponentUpsertResponse = DTOCodeComponentUpsertResponse; exports.DTOCodeComponentsCreateInput = DTOCodeComponentsCreateInput; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateForgeAgent = DTOCreateForgeAgent; exports.DTOCreateForgeAgentResponse = DTOCreateForgeAgentResponse; exports.DTOCreateForgeArtifact = DTOCreateForgeArtifact; exports.DTOCreateForgeArtifactResponse = DTOCreateForgeArtifactResponse; exports.DTOCreateForgeBuildArtifact = DTOCreateForgeBuildArtifact; exports.DTOCreateForgeFigmaArtifact = DTOCreateForgeFigmaArtifact; exports.DTOCreateForgeFileArtifact = DTOCreateForgeFileArtifact; exports.DTOCreateForgeIterationMessage = DTOCreateForgeIterationMessage; exports.DTOCreateForgeIterationMessageResponse = DTOCreateForgeIterationMessageResponse; exports.DTOCreateForgeParticipant = DTOCreateForgeParticipant; exports.DTOCreateForgeParticipantResponse = DTOCreateForgeParticipantResponse; exports.DTOCreateForgeProjectContext = DTOCreateForgeProjectContext; exports.DTOCreateForgeProjectInvitation = DTOCreateForgeProjectInvitation; exports.DTOCreateForgeProjectIteration = DTOCreateForgeProjectIteration; exports.DTOCreateForgeProjectIterationResponse = DTOCreateForgeProjectIterationResponse; exports.DTOCreateForgeProjectMember = DTOCreateForgeProjectMember; exports.DTOCreateForgeSpecArtifact = DTOCreateForgeSpecArtifact; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTOCreditBalance = DTOCreditBalance; exports.DTOCreditsPrices = DTOCreditsPrices; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceStorybook = DTODataSourceStorybook; exports.DTODataSourceStorybookCreatePayload = DTODataSourceStorybookCreatePayload; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODataSourcesStorybookResponse = DTODataSourcesStorybookResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteForgeAgentResponse = DTODeleteForgeAgentResponse; exports.DTODeleteForgeArtifactResponse = DTODeleteForgeArtifactResponse; exports.DTODeleteForgeIterationMessageResponse = DTODeleteForgeIterationMessageResponse; exports.DTODeleteForgeParticipantResponse = DTODeleteForgeParticipantResponse; exports.DTODeleteForgeProjectIterationResponse = DTODeleteForgeProjectIterationResponse; exports.DTODependencyDefinition = DTODependencyDefinition; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionRoom = DTODesignSystemVersionRoom; exports.DTODesignSystemVersionRoomResponse = DTODesignSystemVersionRoomResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationAnalyticsDiffPayload = DTODocumentationAnalyticsDiffPayload; exports.DTODocumentationAnalyticsRequest = DTODocumentationAnalyticsRequest; exports.DTODocumentationAnalyticsTimeFrame = DTODocumentationAnalyticsTimeFrame; exports.DTODocumentationAnalyticsTimeFrameComparison = DTODocumentationAnalyticsTimeFrameComparison; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnalyticsDifference = DTODocumentationPageAnalyticsDifference; exports.DTODocumentationPageAnalyticsResponse = DTODocumentationPageAnalyticsResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDependencies = DTODocumentationPageDependencies; exports.DTODocumentationPageDependenciesGetResponse = DTODocumentationPageDependenciesGetResponse; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageIntervalDifferenceResponse = DTODocumentationPageIntervalDifferenceResponse; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageUpdateDocumentActionInputV2 = DTODocumentationPageUpdateDocumentActionInputV2; exports.DTODocumentationPageUpdateDocumentActionOutputV2 = DTODocumentationPageUpdateDocumentActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationSettings = DTODocumentationSettings; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; exports.DTOElementPropertyValuesEditActionInput = DTOElementPropertyValuesEditActionInput; exports.DTOElementPropertyValuesEditActionOutput = DTOElementPropertyValuesEditActionOutput; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOEvent = DTOEvent; exports.DTOEventDataSourcesImported = DTOEventDataSourcesImported; exports.DTOEventFigmaNodesRendered = DTOEventFigmaNodesRendered; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreateInput = DTOExportJobCreateInput; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterDeprecationInput = DTOExporterDeprecationInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionCode = DTOExporterPropertyDefinitionCode; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterPropertyValue = DTOExporterPropertyValue; exports.DTOExporterPropertyValueMap = DTOExporterPropertyValueMap; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFeatureAgentResponseTracker = DTOFeatureAgentResponseTracker; exports.DTOFeatureAgentWorkFinalizeInput = DTOFeatureAgentWorkFinalizeInput; exports.DTOFeatureArtifact = DTOFeatureArtifact; exports.DTOFeatureArtifactCreateInput = DTOFeatureArtifactCreateInput; exports.DTOFeatureArtifactDeleteInput = DTOFeatureArtifactDeleteInput; exports.DTOFeatureArtifactGetByIdParam = DTOFeatureArtifactGetByIdParam; exports.DTOFeatureArtifactListResponse = DTOFeatureArtifactListResponse; exports.DTOFeatureArtifactResponse = DTOFeatureArtifactResponse; exports.DTOFeatureArtifactWithContentResponse = DTOFeatureArtifactWithContentResponse; exports.DTOFeatureEvent = DTOFeatureEvent; exports.DTOFeatureEventMessagesSent = DTOFeatureEventMessagesSent; exports.DTOFeatureEventReactionsDeleted = DTOFeatureEventReactionsDeleted; exports.DTOFeatureEventReactionsSent = DTOFeatureEventReactionsSent; exports.DTOFeatureIteration = DTOFeatureIteration; exports.DTOFeatureIterationArtifactDiff = DTOFeatureIterationArtifactDiff; exports.DTOFeatureIterationArtifactsDiff = DTOFeatureIterationArtifactsDiff; exports.DTOFeatureIterationCreateInput = DTOFeatureIterationCreateInput; exports.DTOFeatureIterationError = DTOFeatureIterationError; exports.DTOFeatureIterationErrorType = DTOFeatureIterationErrorType; exports.DTOFeatureIterationListResponse = DTOFeatureIterationListResponse; exports.DTOFeatureIterationPromoteInput = DTOFeatureIterationPromoteInput; exports.DTOFeatureIterationResponse = DTOFeatureIterationResponse; exports.DTOFeatureIterationSetLatestInput = DTOFeatureIterationSetLatestInput; exports.DTOFeatureIterationState = DTOFeatureIterationState; exports.DTOFeatureIterationTag = DTOFeatureIterationTag; exports.DTOFeatureIterationTagCreateInput = DTOFeatureIterationTagCreateInput; exports.DTOFeatureIterationTagListResponse = DTOFeatureIterationTagListResponse; exports.DTOFeatureIterationTagResponse = DTOFeatureIterationTagResponse; exports.DTOFeatureIterationUpdateArtifactsByMessageInput = DTOFeatureIterationUpdateArtifactsByMessageInput; exports.DTOFeatureIterationUpdateArtifactsInput = DTOFeatureIterationUpdateArtifactsInput; exports.DTOFeatureIterationUpdateInput = DTOFeatureIterationUpdateInput; exports.DTOFeatureIterationValidateInput = DTOFeatureIterationValidateInput; exports.DTOFeatureIterationValidateResponse = DTOFeatureIterationValidateResponse; exports.DTOFeatureMessage = DTOFeatureMessage; exports.DTOFeatureMessageAgentSender = DTOFeatureMessageAgentSender; exports.DTOFeatureMessageAttachments = DTOFeatureMessageAttachments; exports.DTOFeatureMessageCreateInput = DTOFeatureMessageCreateInput; exports.DTOFeatureMessageListResponse = DTOFeatureMessageListResponse; exports.DTOFeatureMessageReaction = DTOFeatureMessageReaction; exports.DTOFeatureMessageReactionCreateInput = DTOFeatureMessageReactionCreateInput; exports.DTOFeatureMessageReactionDeleteInput = DTOFeatureMessageReactionDeleteInput; exports.DTOFeatureMessageReactionResponse = DTOFeatureMessageReactionResponse; exports.DTOFeatureMessageResponse = DTOFeatureMessageResponse; exports.DTOFeatureMessageSender = DTOFeatureMessageSender; exports.DTOFeatureMessageSystemSender = DTOFeatureMessageSystemSender; exports.DTOFeatureMessageUpdateInput = DTOFeatureMessageUpdateInput; exports.DTOFeatureMessageUserSender = DTOFeatureMessageUserSender; exports.DTOFeatureSandbox = DTOFeatureSandbox; exports.DTOFeatureUpdateThemeInput = DTOFeatureUpdateThemeInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaExportNodeConfiguration = DTOFigmaExportNodeConfiguration; exports.DTOFigmaExportNodeFormat = DTOFigmaExportNodeFormat; exports.DTOFigmaExportNodePayload = DTOFigmaExportNodePayload; exports.DTOFigmaExportNodeResponse = DTOFigmaExportNodeResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeStructure = DTOFigmaNodeStructure; exports.DTOFigmaNodeStructureDetail = DTOFigmaNodeStructureDetail; exports.DTOFigmaNodeStructureDetailResponse = DTOFigmaNodeStructureDetailResponse; exports.DTOFigmaNodeStructureListResponse = DTOFigmaNodeStructureListResponse; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFigmaSourceUpdatePayload = DTOFigmaSourceUpdatePayload; exports.DTOFile = DTOFile; exports.DTOFileFigmaRenderMode = DTOFileFigmaRenderMode; exports.DTOFileFinalizeBulkPayload = DTOFileFinalizeBulkPayload; exports.DTOFileFinalizeBulkResponse = DTOFileFinalizeBulkResponse; exports.DTOFileListResponse = DTOFileListResponse; exports.DTOFileReference = DTOFileReference; exports.DTOFileResponseItem = DTOFileResponseItem; exports.DTOFileSource = DTOFileSource; exports.DTOFileSourceFigma = DTOFileSourceFigma; exports.DTOFileSourceUpload = DTOFileSourceUpload; exports.DTOFileUploadBulkPayload = DTOFileUploadBulkPayload; exports.DTOFileUploadBulkResponse = DTOFileUploadBulkResponse; exports.DTOFileUploadFinalizePayload = DTOFileUploadFinalizePayload; exports.DTOFileUploadFinalizeResponse = DTOFileUploadFinalizeResponse; exports.DTOFileUploadItem = DTOFileUploadItem; exports.DTOFileUploadPayload = DTOFileUploadPayload; exports.DTOFileUploadResponse = DTOFileUploadResponse; exports.DTOFileUploadResponseItem = DTOFileUploadResponseItem; exports.DTOFilesGetPayload = DTOFilesGetPayload; exports.DTOFilesGetQuery = DTOFilesGetQuery; exports.DTOFilesResponse = DTOFilesResponse; exports.DTOForgeAgent = DTOForgeAgent; exports.DTOForgeAgentsListResponse = DTOForgeAgentsListResponse; exports.DTOForgeArtifact = DTOForgeArtifact; exports.DTOForgeArtifactGetResponse = DTOForgeArtifactGetResponse; exports.DTOForgeArtifactsListResponse = DTOForgeArtifactsListResponse; exports.DTOForgeAvatarBuilder = DTOForgeAvatarBuilder; exports.DTOForgeBuildArtifact = DTOForgeBuildArtifact; exports.DTOForgeChatExportResponse = DTOForgeChatExportResponse; exports.DTOForgeChatMessage = DTOForgeChatMessage; exports.DTOForgeChatMessageCreateInput = DTOForgeChatMessageCreateInput; exports.DTOForgeChatMessageCreateResponse = DTOForgeChatMessageCreateResponse; exports.DTOForgeChatMessageListQuery = DTOForgeChatMessageListQuery; exports.DTOForgeChatMessageListResponse = DTOForgeChatMessageListResponse; exports.DTOForgeChatMessageScoreInput = DTOForgeChatMessageScoreInput; exports.DTOForgeChatMessageScoreRequest = DTOForgeChatMessageScoreRequest; exports.DTOForgeChatMessageSender = DTOForgeChatMessageSender; exports.DTOForgeChatMessageSenderType = DTOForgeChatMessageSenderType; exports.DTOForgeChatMessageTagInput = DTOForgeChatMessageTagInput; exports.DTOForgeChatThread = DTOForgeChatThread; exports.DTOForgeChatThreadCreateInput = DTOForgeChatThreadCreateInput; exports.DTOForgeChatThreadCreateResponse = DTOForgeChatThreadCreateResponse; exports.DTOForgeChatThreadDeleteResponse = DTOForgeChatThreadDeleteResponse; exports.DTOForgeChatThreadListQuery = DTOForgeChatThreadListQuery; exports.DTOForgeChatThreadListResponse = DTOForgeChatThreadListResponse; exports.DTOForgeChatThreadUpdateInput = DTOForgeChatThreadUpdateInput; exports.DTOForgeChatThreadUpdateResponse = DTOForgeChatThreadUpdateResponse; exports.DTOForgeComponentSet = DTOForgeComponentSet; exports.DTOForgeComponentSetTypeV2 = DTOForgeComponentSetTypeV2; exports.DTOForgeDocumentGetByIdParam = DTOForgeDocumentGetByIdParam; exports.DTOForgeDocumentGetResponse = DTOForgeDocumentGetResponse; exports.DTOForgeEntity = DTOForgeEntity; exports.DTOForgeFeatureRoom = DTOForgeFeatureRoom; exports.DTOForgeFeatureRoomResponse = DTOForgeFeatureRoomResponse; exports.DTOForgeFigmaArtifact = DTOForgeFigmaArtifact; exports.DTOForgeFileArtifact = DTOForgeFileArtifact; exports.DTOForgeIconSet = DTOForgeIconSet; exports.DTOForgeIconSetTypeV2 = DTOForgeIconSetTypeV2; exports.DTOForgeIterationMessage = DTOForgeIterationMessage; exports.DTOForgeIterationMessagesListResponse = DTOForgeIterationMessagesListResponse; exports.DTOForgeMemoryCreateInput = DTOForgeMemoryCreateInput; exports.DTOForgeMemoryDeleteInput = DTOForgeMemoryDeleteInput; exports.DTOForgeMemoryEntry = DTOForgeMemoryEntry; exports.DTOForgeMemoryEntryListQuery = DTOForgeMemoryEntryListQuery; exports.DTOForgeMemoryEntryListResponse = DTOForgeMemoryEntryListResponse; exports.DTOForgeMemoryEntryResponse = DTOForgeMemoryEntryResponse; exports.DTOForgeMemoryUpdateInput = DTOForgeMemoryUpdateInput; exports.DTOForgeParticipant = DTOForgeParticipant; exports.DTOForgeParticipantGetResponse = DTOForgeParticipantGetResponse; exports.DTOForgeParticipantsListResponse = DTOForgeParticipantsListResponse; exports.DTOForgeProject = DTOForgeProject; exports.DTOForgeProjectAccessMode = DTOForgeProjectAccessMode; exports.DTOForgeProjectAction = DTOForgeProjectAction; exports.DTOForgeProjectActionArtifactCreate = DTOForgeProjectActionArtifactCreate; exports.DTOForgeProjectActionArtifactDelete = DTOForgeProjectActionArtifactDelete; exports.DTOForgeProjectActionArtifactMove = DTOForgeProjectActionArtifactMove; exports.DTOForgeProjectActionArtifactUpdate = DTOForgeProjectActionArtifactUpdate; exports.DTOForgeProjectActionFeatureCreate = DTOForgeProjectActionFeatureCreate; exports.DTOForgeProjectActionFeatureDelete = DTOForgeProjectActionFeatureDelete; exports.DTOForgeProjectActionFeatureMove = DTOForgeProjectActionFeatureMove; exports.DTOForgeProjectActionFeatureUpdate = DTOForgeProjectActionFeatureUpdate; exports.DTOForgeProjectActionSectionCreate = DTOForgeProjectActionSectionCreate; exports.DTOForgeProjectActionSectionDelete = DTOForgeProjectActionSectionDelete; exports.DTOForgeProjectActionSectionMove = DTOForgeProjectActionSectionMove; exports.DTOForgeProjectActionSectionUpdate = DTOForgeProjectActionSectionUpdate; exports.DTOForgeProjectArtifact = DTOForgeProjectArtifact; exports.DTOForgeProjectArtifactContentResponse = DTOForgeProjectArtifactContentResponse; exports.DTOForgeProjectArtifactCreateInput = DTOForgeProjectArtifactCreateInput; exports.DTOForgeProjectArtifactCreateResponse = DTOForgeProjectArtifactCreateResponse; exports.DTOForgeProjectArtifactDeleteInput = DTOForgeProjectArtifactDeleteInput; exports.DTOForgeProjectArtifactDeleteResponse = DTOForgeProjectArtifactDeleteResponse; exports.DTOForgeProjectArtifactGetResponse = DTOForgeProjectArtifactGetResponse; exports.DTOForgeProjectArtifactMoveInput = DTOForgeProjectArtifactMoveInput; exports.DTOForgeProjectArtifactMoveResponse = DTOForgeProjectArtifactMoveResponse; exports.DTOForgeProjectArtifactRoom = DTOForgeProjectArtifactRoom; exports.DTOForgeProjectArtifactRoomResponse = DTOForgeProjectArtifactRoomResponse; exports.DTOForgeProjectArtifactUpdateInput = DTOForgeProjectArtifactUpdateInput; exports.DTOForgeProjectArtifactUpdateResponse = DTOForgeProjectArtifactUpdateResponse; exports.DTOForgeProjectArtifactsListResponse = DTOForgeProjectArtifactsListResponse; exports.DTOForgeProjectContext = DTOForgeProjectContext; exports.DTOForgeProjectContextCreateResponse = DTOForgeProjectContextCreateResponse; exports.DTOForgeProjectContextCreateV2 = DTOForgeProjectContextCreateV2; exports.DTOForgeProjectContextGetResponse = DTOForgeProjectContextGetResponse; exports.DTOForgeProjectContextListQueryV2 = DTOForgeProjectContextListQueryV2; exports.DTOForgeProjectContextListResponse = DTOForgeProjectContextListResponse; exports.DTOForgeProjectContextListResponseV2 = DTOForgeProjectContextListResponseV2; exports.DTOForgeProjectContextRemoveResponse = DTOForgeProjectContextRemoveResponse; exports.DTOForgeProjectContextResponseV2 = DTOForgeProjectContextResponseV2; exports.DTOForgeProjectContextUpdateResponse = DTOForgeProjectContextUpdateResponse; exports.DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextUpdateV2; exports.DTOForgeProjectContextV2 = DTOForgeProjectContextV2; exports.DTOForgeProjectCreate = DTOForgeProjectCreate; exports.DTOForgeProjectDefaultRole = DTOForgeProjectDefaultRole; exports.DTOForgeProjectDocumentPreview = DTOForgeProjectDocumentPreview; exports.DTOForgeProjectFeature = DTOForgeProjectFeature; exports.DTOForgeProjectFeatureCreateInput = DTOForgeProjectFeatureCreateInput; exports.DTOForgeProjectFeatureDeleteInput = DTOForgeProjectFeatureDeleteInput; exports.DTOForgeProjectFeatureGetByIdParam = DTOForgeProjectFeatureGetByIdParam; exports.DTOForgeProjectFeatureGetResponse = DTOForgeProjectFeatureGetResponse; exports.DTOForgeProjectFeatureListResponse = DTOForgeProjectFeatureListResponse; exports.DTOForgeProjectFeatureMoveInput = DTOForgeProjectFeatureMoveInput; exports.DTOForgeProjectFeaturePreview = DTOForgeProjectFeaturePreview; exports.DTOForgeProjectFeatureUpdateInput = DTOForgeProjectFeatureUpdateInput; exports.DTOForgeProjectFigmaNode = DTOForgeProjectFigmaNode; exports.DTOForgeProjectFigmaNodeRenderInput = DTOForgeProjectFigmaNodeRenderInput; exports.DTOForgeProjectFile = DTOForgeProjectFile; exports.DTOForgeProjectFileListResponse = DTOForgeProjectFileListResponse; exports.DTOForgeProjectFileUploadFinalizePayload = DTOForgeProjectFileUploadFinalizePayload; exports.DTOForgeProjectFileUploadFinalizeResponse = DTOForgeProjectFileUploadFinalizeResponse; exports.DTOForgeProjectFileUploadPayload = DTOForgeProjectFileUploadPayload; exports.DTOForgeProjectFileUploadPayloadItem = DTOForgeProjectFileUploadPayloadItem; exports.DTOForgeProjectFileUploadResponse = DTOForgeProjectFileUploadResponse; exports.DTOForgeProjectInvitation = DTOForgeProjectInvitation; exports.DTOForgeProjectInvitationCreateResponse = DTOForgeProjectInvitationCreateResponse; exports.DTOForgeProjectInvitationGetResponse = DTOForgeProjectInvitationGetResponse; exports.DTOForgeProjectInvitationRemoveResponse = DTOForgeProjectInvitationRemoveResponse; exports.DTOForgeProjectInvitationUpdateResponse = DTOForgeProjectInvitationUpdateResponse; exports.DTOForgeProjectInvitationsListResponse = DTOForgeProjectInvitationsListResponse; exports.DTOForgeProjectIteration = DTOForgeProjectIteration; exports.DTOForgeProjectIterationListResponse = DTOForgeProjectIterationListResponse; exports.DTOForgeProjectIterationMergeMeta = DTOForgeProjectIterationMergeMeta; exports.DTOForgeProjectListResponse = DTOForgeProjectListResponse; exports.DTOForgeProjectMember = DTOForgeProjectMember; exports.DTOForgeProjectMemberCreateResponse = DTOForgeProjectMemberCreateResponse; exports.DTOForgeProjectMemberGetResponse = DTOForgeProjectMemberGetResponse; exports.DTOForgeProjectMemberRemoveResponse = DTOForgeProjectMemberRemoveResponse; exports.DTOForgeProjectMemberRole = DTOForgeProjectMemberRole; exports.DTOForgeProjectMemberUpdateResponse = DTOForgeProjectMemberUpdateResponse; exports.DTOForgeProjectMembersListResponse = DTOForgeProjectMembersListResponse; exports.DTOForgeProjectResponse = DTOForgeProjectResponse; exports.DTOForgeProjectRole = DTOForgeProjectRole; exports.DTOForgeProjectRoom = DTOForgeProjectRoom; exports.DTOForgeProjectRoomResponse = DTOForgeProjectRoomResponse; exports.DTOForgeProjectTheme = DTOForgeProjectTheme; exports.DTOForgeProjectUpdate = DTOForgeProjectUpdate; exports.DTOForgeRelation = DTOForgeRelation; exports.DTOForgeRelationCreate = DTOForgeRelationCreate; exports.DTOForgeRelationDelete = DTOForgeRelationDelete; exports.DTOForgeRelationListInput = DTOForgeRelationListInput; exports.DTOForgeRelationListResponse = DTOForgeRelationListResponse; exports.DTOForgeRelationType = DTOForgeRelationType; exports.DTOForgeSection = DTOForgeSection; exports.DTOForgeSectionCreateInput = DTOForgeSectionCreateInput; exports.DTOForgeSectionDeleteInput = DTOForgeSectionDeleteInput; exports.DTOForgeSectionItemMoveInput = DTOForgeSectionItemMoveInput; exports.DTOForgeSectionMoveInput = DTOForgeSectionMoveInput; exports.DTOForgeSectionUpdateInput = DTOForgeSectionUpdateInput; exports.DTOForgeSpecArtifact = DTOForgeSpecArtifact; exports.DTOForgeThemeKnownPreset = DTOForgeThemeKnownPreset; exports.DTOForgeTokenThemeSet = DTOForgeTokenThemeSet; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetBlockDefinitionsQuery = DTOGetBlockDefinitionsQuery; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGetForgeIterationMessageResponse = DTOGetForgeIterationMessageResponse; exports.DTOGetForgeProjectIterationResponse = DTOGetForgeProjectIterationResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMCPStream = DTOMCPStream; exports.DTOMCPStreamResponse = DTOMCPStreamResponse; exports.DTOMCPStreamUpdateInput = DTOMCPStreamUpdateInput; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONpmRegistryAccessTokenResponse = DTONpmRegistryAccessTokenResponse; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPageRedirect = DTOPageRedirect; exports.DTOPageRedirectCreateBody = DTOPageRedirectCreateBody; exports.DTOPageRedirectDeleteResponse = DTOPageRedirectDeleteResponse; exports.DTOPageRedirectListResponse = DTOPageRedirectListResponse; exports.DTOPageRedirectResponse = DTOPageRedirectResponse; exports.DTOPageRedirectUpdateBody = DTOPageRedirectUpdateBody; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPortalSettings = DTOPortalSettings; exports.DTOPortalSettingsGetResponse = DTOPortalSettingsGetResponse; exports.DTOPortalSettingsSidebar = DTOPortalSettingsSidebar; exports.DTOPortalSettingsSidebarLink = DTOPortalSettingsSidebarLink; exports.DTOPortalSettingsSidebarSection = DTOPortalSettingsSidebarSection; exports.DTOPortalSettingsTheme = DTOPortalSettingsTheme; exports.DTOPortalSettingsUpdatePayload = DTOPortalSettingsUpdatePayload; exports.DTOProduct = DTOProduct; exports.DTOProductCode = DTOProductCode; exports.DTOProductPrice = DTOProductPrice; exports.DTOProjectContextOverride = DTOProjectContextOverride; exports.DTOProjectContextOverrideInput = DTOProjectContextOverrideInput; exports.DTOProjectContextOverrideResponse = DTOProjectContextOverrideResponse; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTOPublishedDocAnalyticsComparisonData = DTOPublishedDocAnalyticsComparisonData; exports.DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocPageAnalyticsComparisonData; exports.DTOPublishedDocPageVisitData = DTOPublishedDocPageVisitData; exports.DTOPublishedDocVisitData = DTOPublishedDocVisitData; exports.DTOPublishedDocVisitHeatMapWeek = DTOPublishedDocVisitHeatMapWeek; exports.DTORegistry = DTORegistry; exports.DTORemoveForgeProjectInvitation = DTORemoveForgeProjectInvitation; exports.DTORemoveForgeProjectMember = DTORemoveForgeProjectMember; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOSandboxError = DTOSandboxError; exports.DTOStorybookAccessTokenPayload = DTOStorybookAccessTokenPayload; exports.DTOStorybookAccessTokenResponse = DTOStorybookAccessTokenResponse; exports.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryQuery = DTOStorybookEntryQuery; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOStorybookSourceUpdatePayload = DTOStorybookSourceUpdatePayload; exports.DTOStorybookUploadStatus = DTOStorybookUploadStatus; exports.DTOStorybookUploadUrlRequest = DTOStorybookUploadUrlRequest; exports.DTOStorybookUploadUrlResponse = DTOStorybookUploadUrlResponse; exports.DTOSubscription = DTOSubscription; exports.DTOSubscriptionResponse = DTOSubscriptionResponse; exports.DTOSubscriptionUpcomingChange = DTOSubscriptionUpcomingChange; exports.DTOSubscriptionUpdateInput = DTOSubscriptionUpdateInput; exports.DTOSubscriptionUpdatePreview = DTOSubscriptionUpdatePreview; exports.DTOSubscriptionUpdatePreviewResponse = DTOSubscriptionUpdatePreviewResponse; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOThread = DTOThread; exports.DTOThreadAgentResponseTracker = DTOThreadAgentResponseTracker; exports.DTOThreadAgentType = DTOThreadAgentType; exports.DTOThreadEvent = DTOThreadEvent; exports.DTOThreadEventMessagesSent = DTOThreadEventMessagesSent; exports.DTOThreadEventMessagesUpdated = DTOThreadEventMessagesUpdated; exports.DTOThreadEventReactionsDeleted = DTOThreadEventReactionsDeleted; exports.DTOThreadEventReactionsSent = DTOThreadEventReactionsSent; exports.DTOThreadMessage = DTOThreadMessage; exports.DTOThreadMessageAgentSender = DTOThreadMessageAgentSender; exports.DTOThreadMessageAttachments = DTOThreadMessageAttachments; exports.DTOThreadMessageAttachmentsCreateInput = DTOThreadMessageAttachmentsCreateInput; exports.DTOThreadMessageCreateInput = DTOThreadMessageCreateInput; exports.DTOThreadMessageFinalizeInput = DTOThreadMessageFinalizeInput; exports.DTOThreadMessageListResponse = DTOThreadMessageListResponse; exports.DTOThreadMessageResponse = DTOThreadMessageResponse; exports.DTOThreadMessageRetryInput = DTOThreadMessageRetryInput; exports.DTOThreadMessageSender = DTOThreadMessageSender; exports.DTOThreadMessageSystemSender = DTOThreadMessageSystemSender; exports.DTOThreadMessageUpdateInput = DTOThreadMessageUpdateInput; exports.DTOThreadMessageUserSender = DTOThreadMessageUserSender; exports.DTOThreadPromptState = DTOThreadPromptState; exports.DTOThreadReaction = DTOThreadReaction; exports.DTOThreadReactionCreateInput = DTOThreadReactionCreateInput; exports.DTOThreadReactionDeleteInput = DTOThreadReactionDeleteInput; exports.DTOThreadReactionResponse = DTOThreadReactionResponse; exports.DTOThreadSubjectType = DTOThreadSubjectType; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTrailEvent = DTOTrailEvent; exports.DTOTrailEventClientCreate = DTOTrailEventClientCreate; exports.DTOTrailEventCreate = DTOTrailEventCreate; exports.DTOTrailEventListInput = DTOTrailEventListInput; exports.DTOTrailEventListResponse = DTOTrailEventListResponse; exports.DTOTrailEventType = DTOTrailEventType; exports.DTOTrailEventWithDetails = DTOTrailEventWithDetails; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUGetForgeAgentResponse = DTOUGetForgeAgentResponse; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageDocumentInputV2 = DTOUpdateDocumentationPageDocumentInputV2; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateForgeAgent = DTOUpdateForgeAgent; exports.DTOUpdateForgeAgentResponse = DTOUpdateForgeAgentResponse; exports.DTOUpdateForgeArtifact = DTOUpdateForgeArtifact; exports.DTOUpdateForgeArtifactResponse = DTOUpdateForgeArtifactResponse; exports.DTOUpdateForgeBuildArtifact = DTOUpdateForgeBuildArtifact; exports.DTOUpdateForgeFigmaArtifact = DTOUpdateForgeFigmaArtifact; exports.DTOUpdateForgeFileArtifact = DTOUpdateForgeFileArtifact; exports.DTOUpdateForgeIterationMessage = DTOUpdateForgeIterationMessage; exports.DTOUpdateForgeIterationMessageResponse = DTOUpdateForgeIterationMessageResponse; exports.DTOUpdateForgeParticipant = DTOUpdateForgeParticipant; exports.DTOUpdateForgeParticipantResponse = DTOUpdateForgeParticipantResponse; exports.DTOUpdateForgeProjectContext = DTOUpdateForgeProjectContext; exports.DTOUpdateForgeProjectInvitation = DTOUpdateForgeProjectInvitation; exports.DTOUpdateForgeProjectIteration = DTOUpdateForgeProjectIteration; exports.DTOUpdateForgeProjectIterationResponse = DTOUpdateForgeProjectIterationResponse; exports.DTOUpdateForgeProjectMember = DTOUpdateForgeProjectMember; exports.DTOUpdateForgeSpecArtifact = DTOUpdateForgeSpecArtifact; exports.DTOUpdateRegistryInput = DTOUpdateRegistryInput; exports.DTOUpdateRegistryOutput = DTOUpdateRegistryOutput; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUploadUrlItem = DTOUploadUrlItem; exports.DTOUser = DTOUser; exports.DTOUserDesignSystemsResponse = DTOUserDesignSystemsResponse; exports.DTOUserEmailSettings = DTOUserEmailSettings; exports.DTOUserEmailSettingsUpdatePayload = DTOUserEmailSettingsUpdatePayload; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserPortalTheme = DTOUserPortalTheme; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserSource = DTOUserSource; exports.DTOUserTheme = DTOUserTheme; exports.DTOUserUpdatePayload = DTOUserUpdatePayload; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceBilledSeatType = DTOWorkspaceBilledSeatType; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceDefaultProjectAccessMode = DTOWorkspaceDefaultProjectAccessMode; exports.DTOWorkspaceDefaultProjectRole = DTOWorkspaceDefaultProjectRole; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitation = DTOWorkspaceInvitation; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DTOWorkspaceSeatType = DTOWorkspaceSeatType; exports.DTOWorkspaceUntypedData = DTOWorkspaceUntypedData; exports.DTOWorkspaceUntypedDataCreatePayload = DTOWorkspaceUntypedDataCreatePayload; exports.DTOWorkspaceUntypedDataListResponse = DTOWorkspaceUntypedDataListResponse; exports.DTOWorkspaceUntypedDataResponse = DTOWorkspaceUntypedDataResponse; exports.DTOWorkspaceUntypedDataUpdatePayload = DTOWorkspaceUntypedDataUpdatePayload; exports.DesignSystemAnalyticsEndpoint = DesignSystemAnalyticsEndpoint; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemFilesEndpoint = DesignSystemFilesEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemPageRedirectsEndpoint = DesignSystemPageRedirectsEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FeatureRoomBaseYDoc = FeatureRoomBaseYDoc; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaNodeStructuresEndpoint = FigmaNodeStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FilesEndpoint = FilesEndpoint; exports.ForgeAgentsEndpoint = ForgeAgentsEndpoint; exports.ForgeArtifactsEndpoint = ForgeArtifactsEndpoint; exports.ForgeDocumentsEndpoint = ForgeDocumentsEndpoint; exports.ForgeEndpoint = ForgeEndpoint; exports.ForgeFeatureArtifactsEndpoint = ForgeFeatureArtifactsEndpoint; exports.ForgeFeatureIterationsEndpoint = ForgeFeatureIterationsEndpoint; exports.ForgeFeatureMessagesEndpoint = ForgeFeatureMessagesEndpoint; exports.ForgeMemoryEndpoint = ForgeMemoryEndpoint; exports.ForgeProjectContentRepository = ForgeProjectContentRepository; exports.ForgeProjectContextsEndpoint = ForgeProjectContextsEndpoint; exports.ForgeProjectFeaturesEndpoint = ForgeProjectFeaturesEndpoint; exports.ForgeProjectFilesEndpoint = ForgeProjectFilesEndpoint; exports.ForgeProjectInvitationsEndpoint = ForgeProjectInvitationsEndpoint; exports.ForgeProjectIterationsEndpoint = ForgeProjectIterationsEndpoint; exports.ForgeProjectMembersEndpoint = ForgeProjectMembersEndpoint; exports.ForgeProjectRoomBaseYDoc = ForgeProjectRoomBaseYDoc; exports.ForgeProjectsEndpoint = ForgeProjectsEndpoint; exports.FormattedCollections = FormattedCollections; exports.FrontendFeatureRoomYDoc = FrontendFeatureRoomYDoc; exports.FrontendThreadRoomYDoc = FrontendThreadRoomYDoc; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.GitDestinationOptions = GitDestinationOptions; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalDocsElementActionExecutor = LocalDocsElementActionExecutor; exports.LocalProjectActionExecutor = LocalProjectActionExecutor; exports.MCPStreamsEndpoint = MCPStreamsEndpoint; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.StorybookEntriesEndpoint = StorybookEntriesEndpoint; exports.StorybookHostingEndpoint = StorybookHostingEndpoint; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.ThreadRoomBaseYDoc = ThreadRoomBaseYDoc; exports.ThreadsEndpoint = ThreadsEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceChatThreadsEndpoint = WorkspaceChatThreadsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceIntegrationsEndpoint = WorkspaceIntegrationsEndpoint; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspaceNpmRegistryEndpoint = WorkspaceNpmRegistryEndpoint; exports.WorkspaceSubscriptionEndpoint = WorkspaceSubscriptionEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.applyActionsLocally = applyActionsLocally; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.applyProjectActionsLocally = applyProjectActionsLocally; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationAnalyticsToComparisonDto = documentationAnalyticsToComparisonDto; exports.documentationAnalyticsToGlobalDto = documentationAnalyticsToGlobalDto; exports.documentationAnalyticsToHeatMapDto = documentationAnalyticsToHeatMapDto; exports.documentationAnalyticsToPageComparisonDto = documentationAnalyticsToPageComparisonDto; exports.documentationAnalyticsToPageDto = documentationAnalyticsToPageDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.exhaustiveInvalidUriPaths = exhaustiveInvalidUriPaths; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.isValidRedirectPath = isValidRedirectPath; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.zodQueryBoolean = zodQueryBoolean;
|
|
20479
|
+
|
|
20480
|
+
|
|
20481
|
+
|
|
20482
|
+
|
|
20483
|
+
|
|
20484
|
+
|
|
20485
|
+
|
|
20486
|
+
|
|
20487
|
+
|
|
20488
|
+
|
|
20489
|
+
exports.BackendFeatureRoomYDoc = BackendFeatureRoomYDoc; exports.BackendForgeProjectRoomYDoc = BackendForgeProjectRoomYDoc; exports.BackendThreadRoomYDoc = BackendThreadRoomYDoc; exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.ChatThreadMessagesEndpoint = ChatThreadMessagesEndpoint; exports.CodeComponentsEndpoint = CodeComponentsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAccessToken = DTOAccessToken; exports.DTOAccessTokenCreatePayload = DTOAccessTokenCreatePayload; exports.DTOAccessTokenFull = DTOAccessTokenFull; exports.DTOAccessTokenFullResponse = DTOAccessTokenFullResponse; exports.DTOAccessTokenListResponse = DTOAccessTokenListResponse; exports.DTOAccessTokenResponse = DTOAccessTokenResponse; exports.DTOAddMembersToForgeProject = DTOAddMembersToForgeProject; exports.DTOAnalyzeCodeComponentsInPackage = DTOAnalyzeCodeComponentsInPackage; exports.DTOAnalyzeCodeComponentsInPackageInput = DTOAnalyzeCodeComponentsInPackageInput; exports.DTOAnalyzeCodeComponentsInPackageResponse = DTOAnalyzeCodeComponentsInPackageResponse; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAssetScope = DTOAssetScope; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOAvailableProductListResponse = DTOAvailableProductListResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBillingCheckoutCreditsTopUpInput = DTOBillingCheckoutCreditsTopUpInput; exports.DTOBillingCheckoutInput = DTOBillingCheckoutInput; exports.DTOBillingCheckoutMode = DTOBillingCheckoutMode; exports.DTOBillingCheckoutOldInput = DTOBillingCheckoutOldInput; exports.DTOBillingCheckoutResponse = DTOBillingCheckoutResponse; exports.DTOBillingCheckoutSubscriptionChangeInput = DTOBillingCheckoutSubscriptionChangeInput; exports.DTOBillingCreditsCheckIfCanSpendResponse = DTOBillingCreditsCheckIfCanSpendResponse; exports.DTOBillingCreditsSpendAction = DTOBillingCreditsSpendAction; exports.DTOBillingCreditsSpendInput = DTOBillingCreditsSpendInput; exports.DTOBillingCreditsSpendResponse = DTOBillingCreditsSpendResponse; exports.DTOBillingInterval = DTOBillingInterval; exports.DTOBillingSubscriptionChangePreviewInput = DTOBillingSubscriptionChangePreviewInput; exports.DTOBillingSupportedModels = DTOBillingSupportedModels; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCodeComponent = DTOCodeComponent; exports.DTOCodeComponentCreateInput = DTOCodeComponentCreateInput; exports.DTOCodeComponentListResponse = DTOCodeComponentListResponse; exports.DTOCodeComponentParentType = DTOCodeComponentParentType; exports.DTOCodeComponentProperty = DTOCodeComponentProperty; exports.DTOCodeComponentResolvedType = DTOCodeComponentResolvedType; exports.DTOCodeComponentResolvedTypeKind = DTOCodeComponentResolvedTypeKind; exports.DTOCodeComponentResponse = DTOCodeComponentResponse; exports.DTOCodeComponentUpsertResponse = DTOCodeComponentUpsertResponse; exports.DTOCodeComponentsCreateInput = DTOCodeComponentsCreateInput; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateForgeAgent = DTOCreateForgeAgent; exports.DTOCreateForgeAgentResponse = DTOCreateForgeAgentResponse; exports.DTOCreateForgeArtifact = DTOCreateForgeArtifact; exports.DTOCreateForgeArtifactResponse = DTOCreateForgeArtifactResponse; exports.DTOCreateForgeBuildArtifact = DTOCreateForgeBuildArtifact; exports.DTOCreateForgeFigmaArtifact = DTOCreateForgeFigmaArtifact; exports.DTOCreateForgeFileArtifact = DTOCreateForgeFileArtifact; exports.DTOCreateForgeIterationMessage = DTOCreateForgeIterationMessage; exports.DTOCreateForgeIterationMessageResponse = DTOCreateForgeIterationMessageResponse; exports.DTOCreateForgeParticipant = DTOCreateForgeParticipant; exports.DTOCreateForgeParticipantResponse = DTOCreateForgeParticipantResponse; exports.DTOCreateForgeProjectContext = DTOCreateForgeProjectContext; exports.DTOCreateForgeProjectInvitation = DTOCreateForgeProjectInvitation; exports.DTOCreateForgeProjectIteration = DTOCreateForgeProjectIteration; exports.DTOCreateForgeProjectIterationResponse = DTOCreateForgeProjectIterationResponse; exports.DTOCreateForgeProjectMember = DTOCreateForgeProjectMember; exports.DTOCreateForgeSpecArtifact = DTOCreateForgeSpecArtifact; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTOCreditBalance = DTOCreditBalance; exports.DTOCreditsPrices = DTOCreditsPrices; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceStorybook = DTODataSourceStorybook; exports.DTODataSourceStorybookCreatePayload = DTODataSourceStorybookCreatePayload; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODataSourcesStorybookResponse = DTODataSourcesStorybookResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteForgeAgentResponse = DTODeleteForgeAgentResponse; exports.DTODeleteForgeArtifactResponse = DTODeleteForgeArtifactResponse; exports.DTODeleteForgeIterationMessageResponse = DTODeleteForgeIterationMessageResponse; exports.DTODeleteForgeParticipantResponse = DTODeleteForgeParticipantResponse; exports.DTODeleteForgeProjectIterationResponse = DTODeleteForgeProjectIterationResponse; exports.DTODependencyDefinition = DTODependencyDefinition; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionRoom = DTODesignSystemVersionRoom; exports.DTODesignSystemVersionRoomResponse = DTODesignSystemVersionRoomResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationAnalyticsDiffPayload = DTODocumentationAnalyticsDiffPayload; exports.DTODocumentationAnalyticsRequest = DTODocumentationAnalyticsRequest; exports.DTODocumentationAnalyticsTimeFrame = DTODocumentationAnalyticsTimeFrame; exports.DTODocumentationAnalyticsTimeFrameComparison = DTODocumentationAnalyticsTimeFrameComparison; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnalyticsDifference = DTODocumentationPageAnalyticsDifference; exports.DTODocumentationPageAnalyticsResponse = DTODocumentationPageAnalyticsResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDependencies = DTODocumentationPageDependencies; exports.DTODocumentationPageDependenciesGetResponse = DTODocumentationPageDependenciesGetResponse; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageIntervalDifferenceResponse = DTODocumentationPageIntervalDifferenceResponse; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageUpdateDocumentActionInputV2 = DTODocumentationPageUpdateDocumentActionInputV2; exports.DTODocumentationPageUpdateDocumentActionOutputV2 = DTODocumentationPageUpdateDocumentActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationSettings = DTODocumentationSettings; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; exports.DTOElementPropertyValuesEditActionInput = DTOElementPropertyValuesEditActionInput; exports.DTOElementPropertyValuesEditActionOutput = DTOElementPropertyValuesEditActionOutput; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOEvent = DTOEvent; exports.DTOEventDataSourcesImported = DTOEventDataSourcesImported; exports.DTOEventFigmaNodesRendered = DTOEventFigmaNodesRendered; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreateInput = DTOExportJobCreateInput; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterDeprecationInput = DTOExporterDeprecationInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionCode = DTOExporterPropertyDefinitionCode; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterPropertyValue = DTOExporterPropertyValue; exports.DTOExporterPropertyValueMap = DTOExporterPropertyValueMap; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFeatureAgentResponseTracker = DTOFeatureAgentResponseTracker; exports.DTOFeatureAgentWorkFinalizeInput = DTOFeatureAgentWorkFinalizeInput; exports.DTOFeatureArtifact = DTOFeatureArtifact; exports.DTOFeatureArtifactCreateInput = DTOFeatureArtifactCreateInput; exports.DTOFeatureArtifactDeleteInput = DTOFeatureArtifactDeleteInput; exports.DTOFeatureArtifactGetByIdParam = DTOFeatureArtifactGetByIdParam; exports.DTOFeatureArtifactListResponse = DTOFeatureArtifactListResponse; exports.DTOFeatureArtifactResponse = DTOFeatureArtifactResponse; exports.DTOFeatureArtifactWithContentResponse = DTOFeatureArtifactWithContentResponse; exports.DTOFeatureEvent = DTOFeatureEvent; exports.DTOFeatureEventMessagesSent = DTOFeatureEventMessagesSent; exports.DTOFeatureEventReactionsDeleted = DTOFeatureEventReactionsDeleted; exports.DTOFeatureEventReactionsSent = DTOFeatureEventReactionsSent; exports.DTOFeatureIteration = DTOFeatureIteration; exports.DTOFeatureIterationArtifactDiff = DTOFeatureIterationArtifactDiff; exports.DTOFeatureIterationArtifactsDiff = DTOFeatureIterationArtifactsDiff; exports.DTOFeatureIterationCreateInput = DTOFeatureIterationCreateInput; exports.DTOFeatureIterationError = DTOFeatureIterationError; exports.DTOFeatureIterationErrorType = DTOFeatureIterationErrorType; exports.DTOFeatureIterationListResponse = DTOFeatureIterationListResponse; exports.DTOFeatureIterationPromoteInput = DTOFeatureIterationPromoteInput; exports.DTOFeatureIterationResponse = DTOFeatureIterationResponse; exports.DTOFeatureIterationSetLatestInput = DTOFeatureIterationSetLatestInput; exports.DTOFeatureIterationState = DTOFeatureIterationState; exports.DTOFeatureIterationTag = DTOFeatureIterationTag; exports.DTOFeatureIterationTagCreateInput = DTOFeatureIterationTagCreateInput; exports.DTOFeatureIterationTagListResponse = DTOFeatureIterationTagListResponse; exports.DTOFeatureIterationTagResponse = DTOFeatureIterationTagResponse; exports.DTOFeatureIterationUpdateArtifactsByMessageInput = DTOFeatureIterationUpdateArtifactsByMessageInput; exports.DTOFeatureIterationUpdateArtifactsInput = DTOFeatureIterationUpdateArtifactsInput; exports.DTOFeatureIterationUpdateInput = DTOFeatureIterationUpdateInput; exports.DTOFeatureIterationValidateInput = DTOFeatureIterationValidateInput; exports.DTOFeatureIterationValidateResponse = DTOFeatureIterationValidateResponse; exports.DTOFeatureMessage = DTOFeatureMessage; exports.DTOFeatureMessageAgentSender = DTOFeatureMessageAgentSender; exports.DTOFeatureMessageAttachments = DTOFeatureMessageAttachments; exports.DTOFeatureMessageCreateInput = DTOFeatureMessageCreateInput; exports.DTOFeatureMessageListResponse = DTOFeatureMessageListResponse; exports.DTOFeatureMessageReaction = DTOFeatureMessageReaction; exports.DTOFeatureMessageReactionCreateInput = DTOFeatureMessageReactionCreateInput; exports.DTOFeatureMessageReactionDeleteInput = DTOFeatureMessageReactionDeleteInput; exports.DTOFeatureMessageReactionResponse = DTOFeatureMessageReactionResponse; exports.DTOFeatureMessageResponse = DTOFeatureMessageResponse; exports.DTOFeatureMessageSender = DTOFeatureMessageSender; exports.DTOFeatureMessageSystemSender = DTOFeatureMessageSystemSender; exports.DTOFeatureMessageUpdateInput = DTOFeatureMessageUpdateInput; exports.DTOFeatureMessageUserSender = DTOFeatureMessageUserSender; exports.DTOFeatureSandbox = DTOFeatureSandbox; exports.DTOFeatureUpdateThemeInput = DTOFeatureUpdateThemeInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaExportNodeConfiguration = DTOFigmaExportNodeConfiguration; exports.DTOFigmaExportNodeFormat = DTOFigmaExportNodeFormat; exports.DTOFigmaExportNodePayload = DTOFigmaExportNodePayload; exports.DTOFigmaExportNodeResponse = DTOFigmaExportNodeResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeStructure = DTOFigmaNodeStructure; exports.DTOFigmaNodeStructureDetail = DTOFigmaNodeStructureDetail; exports.DTOFigmaNodeStructureDetailResponse = DTOFigmaNodeStructureDetailResponse; exports.DTOFigmaNodeStructureListResponse = DTOFigmaNodeStructureListResponse; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFigmaSourceUpdatePayload = DTOFigmaSourceUpdatePayload; exports.DTOFile = DTOFile; exports.DTOFileFigmaRenderMode = DTOFileFigmaRenderMode; exports.DTOFileFinalizeBulkPayload = DTOFileFinalizeBulkPayload; exports.DTOFileFinalizeBulkResponse = DTOFileFinalizeBulkResponse; exports.DTOFileListResponse = DTOFileListResponse; exports.DTOFileReference = DTOFileReference; exports.DTOFileResponseItem = DTOFileResponseItem; exports.DTOFileSource = DTOFileSource; exports.DTOFileSourceFigma = DTOFileSourceFigma; exports.DTOFileSourceUpload = DTOFileSourceUpload; exports.DTOFileUploadBulkPayload = DTOFileUploadBulkPayload; exports.DTOFileUploadBulkResponse = DTOFileUploadBulkResponse; exports.DTOFileUploadFinalizePayload = DTOFileUploadFinalizePayload; exports.DTOFileUploadFinalizeResponse = DTOFileUploadFinalizeResponse; exports.DTOFileUploadItem = DTOFileUploadItem; exports.DTOFileUploadPayload = DTOFileUploadPayload; exports.DTOFileUploadResponse = DTOFileUploadResponse; exports.DTOFileUploadResponseItem = DTOFileUploadResponseItem; exports.DTOFilesGetPayload = DTOFilesGetPayload; exports.DTOFilesGetQuery = DTOFilesGetQuery; exports.DTOFilesResponse = DTOFilesResponse; exports.DTOForgeAgent = DTOForgeAgent; exports.DTOForgeAgentsListResponse = DTOForgeAgentsListResponse; exports.DTOForgeArtifact = DTOForgeArtifact; exports.DTOForgeArtifactGetResponse = DTOForgeArtifactGetResponse; exports.DTOForgeArtifactsListResponse = DTOForgeArtifactsListResponse; exports.DTOForgeAvatarBuilder = DTOForgeAvatarBuilder; exports.DTOForgeBuildArtifact = DTOForgeBuildArtifact; exports.DTOForgeChatExportResponse = DTOForgeChatExportResponse; exports.DTOForgeChatMessage = DTOForgeChatMessage; exports.DTOForgeChatMessageCreateInput = DTOForgeChatMessageCreateInput; exports.DTOForgeChatMessageCreateResponse = DTOForgeChatMessageCreateResponse; exports.DTOForgeChatMessageListQuery = DTOForgeChatMessageListQuery; exports.DTOForgeChatMessageListResponse = DTOForgeChatMessageListResponse; exports.DTOForgeChatMessageScoreInput = DTOForgeChatMessageScoreInput; exports.DTOForgeChatMessageScoreRequest = DTOForgeChatMessageScoreRequest; exports.DTOForgeChatMessageSender = DTOForgeChatMessageSender; exports.DTOForgeChatMessageSenderType = DTOForgeChatMessageSenderType; exports.DTOForgeChatMessageTagInput = DTOForgeChatMessageTagInput; exports.DTOForgeChatThread = DTOForgeChatThread; exports.DTOForgeChatThreadCreateInput = DTOForgeChatThreadCreateInput; exports.DTOForgeChatThreadCreateResponse = DTOForgeChatThreadCreateResponse; exports.DTOForgeChatThreadDeleteResponse = DTOForgeChatThreadDeleteResponse; exports.DTOForgeChatThreadListQuery = DTOForgeChatThreadListQuery; exports.DTOForgeChatThreadListResponse = DTOForgeChatThreadListResponse; exports.DTOForgeChatThreadUpdateInput = DTOForgeChatThreadUpdateInput; exports.DTOForgeChatThreadUpdateResponse = DTOForgeChatThreadUpdateResponse; exports.DTOForgeComponentSet = DTOForgeComponentSet; exports.DTOForgeComponentSetTypeV2 = DTOForgeComponentSetTypeV2; exports.DTOForgeDocumentGetByIdParam = DTOForgeDocumentGetByIdParam; exports.DTOForgeDocumentGetResponse = DTOForgeDocumentGetResponse; exports.DTOForgeEntity = DTOForgeEntity; exports.DTOForgeFeatureRoom = DTOForgeFeatureRoom; exports.DTOForgeFeatureRoomResponse = DTOForgeFeatureRoomResponse; exports.DTOForgeFigmaArtifact = DTOForgeFigmaArtifact; exports.DTOForgeFileArtifact = DTOForgeFileArtifact; exports.DTOForgeIconSet = DTOForgeIconSet; exports.DTOForgeIconSetTypeV2 = DTOForgeIconSetTypeV2; exports.DTOForgeIterationMessage = DTOForgeIterationMessage; exports.DTOForgeIterationMessagesListResponse = DTOForgeIterationMessagesListResponse; exports.DTOForgeMemoryCreateInput = DTOForgeMemoryCreateInput; exports.DTOForgeMemoryDeleteInput = DTOForgeMemoryDeleteInput; exports.DTOForgeMemoryEntry = DTOForgeMemoryEntry; exports.DTOForgeMemoryEntryListQuery = DTOForgeMemoryEntryListQuery; exports.DTOForgeMemoryEntryListResponse = DTOForgeMemoryEntryListResponse; exports.DTOForgeMemoryEntryResponse = DTOForgeMemoryEntryResponse; exports.DTOForgeMemoryUpdateInput = DTOForgeMemoryUpdateInput; exports.DTOForgeParticipant = DTOForgeParticipant; exports.DTOForgeParticipantGetResponse = DTOForgeParticipantGetResponse; exports.DTOForgeParticipantsListResponse = DTOForgeParticipantsListResponse; exports.DTOForgeProject = DTOForgeProject; exports.DTOForgeProjectAccessMode = DTOForgeProjectAccessMode; exports.DTOForgeProjectAction = DTOForgeProjectAction; exports.DTOForgeProjectActionArtifactCreate = DTOForgeProjectActionArtifactCreate; exports.DTOForgeProjectActionArtifactDelete = DTOForgeProjectActionArtifactDelete; exports.DTOForgeProjectActionArtifactMove = DTOForgeProjectActionArtifactMove; exports.DTOForgeProjectActionArtifactUpdate = DTOForgeProjectActionArtifactUpdate; exports.DTOForgeProjectActionFeatureCreate = DTOForgeProjectActionFeatureCreate; exports.DTOForgeProjectActionFeatureDelete = DTOForgeProjectActionFeatureDelete; exports.DTOForgeProjectActionFeatureMove = DTOForgeProjectActionFeatureMove; exports.DTOForgeProjectActionFeatureUpdate = DTOForgeProjectActionFeatureUpdate; exports.DTOForgeProjectActionSectionCreate = DTOForgeProjectActionSectionCreate; exports.DTOForgeProjectActionSectionDelete = DTOForgeProjectActionSectionDelete; exports.DTOForgeProjectActionSectionMove = DTOForgeProjectActionSectionMove; exports.DTOForgeProjectActionSectionUpdate = DTOForgeProjectActionSectionUpdate; exports.DTOForgeProjectArtifact = DTOForgeProjectArtifact; exports.DTOForgeProjectArtifactContentResponse = DTOForgeProjectArtifactContentResponse; exports.DTOForgeProjectArtifactCreateInput = DTOForgeProjectArtifactCreateInput; exports.DTOForgeProjectArtifactCreateResponse = DTOForgeProjectArtifactCreateResponse; exports.DTOForgeProjectArtifactDeleteInput = DTOForgeProjectArtifactDeleteInput; exports.DTOForgeProjectArtifactDeleteResponse = DTOForgeProjectArtifactDeleteResponse; exports.DTOForgeProjectArtifactGetResponse = DTOForgeProjectArtifactGetResponse; exports.DTOForgeProjectArtifactMoveInput = DTOForgeProjectArtifactMoveInput; exports.DTOForgeProjectArtifactMoveResponse = DTOForgeProjectArtifactMoveResponse; exports.DTOForgeProjectArtifactRoom = DTOForgeProjectArtifactRoom; exports.DTOForgeProjectArtifactRoomResponse = DTOForgeProjectArtifactRoomResponse; exports.DTOForgeProjectArtifactUpdateInput = DTOForgeProjectArtifactUpdateInput; exports.DTOForgeProjectArtifactUpdateResponse = DTOForgeProjectArtifactUpdateResponse; exports.DTOForgeProjectArtifactsListResponse = DTOForgeProjectArtifactsListResponse; exports.DTOForgeProjectContext = DTOForgeProjectContext; exports.DTOForgeProjectContextCreateResponse = DTOForgeProjectContextCreateResponse; exports.DTOForgeProjectContextCreateV2 = DTOForgeProjectContextCreateV2; exports.DTOForgeProjectContextCreated = DTOForgeProjectContextCreated; exports.DTOForgeProjectContextDeleted = DTOForgeProjectContextDeleted; exports.DTOForgeProjectContextGetResponse = DTOForgeProjectContextGetResponse; exports.DTOForgeProjectContextListQueryV2 = DTOForgeProjectContextListQueryV2; exports.DTOForgeProjectContextListResponse = DTOForgeProjectContextListResponse; exports.DTOForgeProjectContextListResponseV2 = DTOForgeProjectContextListResponseV2; exports.DTOForgeProjectContextRemoveResponse = DTOForgeProjectContextRemoveResponse; exports.DTOForgeProjectContextResponseV2 = DTOForgeProjectContextResponseV2; exports.DTOForgeProjectContextUpdateResponse = DTOForgeProjectContextUpdateResponse; exports.DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextUpdateV2; exports.DTOForgeProjectContextUpdated = DTOForgeProjectContextUpdated; exports.DTOForgeProjectContextV2 = DTOForgeProjectContextV2; exports.DTOForgeProjectCreate = DTOForgeProjectCreate; exports.DTOForgeProjectCreated = DTOForgeProjectCreated; exports.DTOForgeProjectDefaultRole = DTOForgeProjectDefaultRole; exports.DTOForgeProjectDocumentPreview = DTOForgeProjectDocumentPreview; exports.DTOForgeProjectFeature = DTOForgeProjectFeature; exports.DTOForgeProjectFeatureCreateInput = DTOForgeProjectFeatureCreateInput; exports.DTOForgeProjectFeatureDeleteInput = DTOForgeProjectFeatureDeleteInput; exports.DTOForgeProjectFeatureGetByIdParam = DTOForgeProjectFeatureGetByIdParam; exports.DTOForgeProjectFeatureGetResponse = DTOForgeProjectFeatureGetResponse; exports.DTOForgeProjectFeatureListResponse = DTOForgeProjectFeatureListResponse; exports.DTOForgeProjectFeatureMoveInput = DTOForgeProjectFeatureMoveInput; exports.DTOForgeProjectFeaturePreview = DTOForgeProjectFeaturePreview; exports.DTOForgeProjectFeatureUpdateInput = DTOForgeProjectFeatureUpdateInput; exports.DTOForgeProjectFigmaNode = DTOForgeProjectFigmaNode; exports.DTOForgeProjectFigmaNodeRenderInput = DTOForgeProjectFigmaNodeRenderInput; exports.DTOForgeProjectFile = DTOForgeProjectFile; exports.DTOForgeProjectFileListResponse = DTOForgeProjectFileListResponse; exports.DTOForgeProjectFileUploadFinalizePayload = DTOForgeProjectFileUploadFinalizePayload; exports.DTOForgeProjectFileUploadFinalizeResponse = DTOForgeProjectFileUploadFinalizeResponse; exports.DTOForgeProjectFileUploadPayload = DTOForgeProjectFileUploadPayload; exports.DTOForgeProjectFileUploadPayloadItem = DTOForgeProjectFileUploadPayloadItem; exports.DTOForgeProjectFileUploadResponse = DTOForgeProjectFileUploadResponse; exports.DTOForgeProjectInvitation = DTOForgeProjectInvitation; exports.DTOForgeProjectInvitationCreateResponse = DTOForgeProjectInvitationCreateResponse; exports.DTOForgeProjectInvitationGetResponse = DTOForgeProjectInvitationGetResponse; exports.DTOForgeProjectInvitationRemoveResponse = DTOForgeProjectInvitationRemoveResponse; exports.DTOForgeProjectInvitationUpdateResponse = DTOForgeProjectInvitationUpdateResponse; exports.DTOForgeProjectInvitationsListResponse = DTOForgeProjectInvitationsListResponse; exports.DTOForgeProjectIteration = DTOForgeProjectIteration; exports.DTOForgeProjectIterationListResponse = DTOForgeProjectIterationListResponse; exports.DTOForgeProjectIterationMergeMeta = DTOForgeProjectIterationMergeMeta; exports.DTOForgeProjectListResponse = DTOForgeProjectListResponse; exports.DTOForgeProjectMember = DTOForgeProjectMember; exports.DTOForgeProjectMemberCreateResponse = DTOForgeProjectMemberCreateResponse; exports.DTOForgeProjectMemberDeleted = DTOForgeProjectMemberDeleted; exports.DTOForgeProjectMemberGetResponse = DTOForgeProjectMemberGetResponse; exports.DTOForgeProjectMemberRemoveResponse = DTOForgeProjectMemberRemoveResponse; exports.DTOForgeProjectMemberRole = DTOForgeProjectMemberRole; exports.DTOForgeProjectMemberUpdateResponse = DTOForgeProjectMemberUpdateResponse; exports.DTOForgeProjectMemberUpdated = DTOForgeProjectMemberUpdated; exports.DTOForgeProjectMembersCreated = DTOForgeProjectMembersCreated; exports.DTOForgeProjectMembersListResponse = DTOForgeProjectMembersListResponse; exports.DTOForgeProjectResponse = DTOForgeProjectResponse; exports.DTOForgeProjectRole = DTOForgeProjectRole; exports.DTOForgeProjectRoom = DTOForgeProjectRoom; exports.DTOForgeProjectRoomEvent = DTOForgeProjectRoomEvent; exports.DTOForgeProjectRoomResponse = DTOForgeProjectRoomResponse; exports.DTOForgeProjectTheme = DTOForgeProjectTheme; exports.DTOForgeProjectUpdate = DTOForgeProjectUpdate; exports.DTOForgeProjectUpdated = DTOForgeProjectUpdated; exports.DTOForgeRelation = DTOForgeRelation; exports.DTOForgeRelationCreate = DTOForgeRelationCreate; exports.DTOForgeRelationDelete = DTOForgeRelationDelete; exports.DTOForgeRelationListInput = DTOForgeRelationListInput; exports.DTOForgeRelationListResponse = DTOForgeRelationListResponse; exports.DTOForgeRelationType = DTOForgeRelationType; exports.DTOForgeSection = DTOForgeSection; exports.DTOForgeSectionCreateInput = DTOForgeSectionCreateInput; exports.DTOForgeSectionDeleteInput = DTOForgeSectionDeleteInput; exports.DTOForgeSectionItemMoveInput = DTOForgeSectionItemMoveInput; exports.DTOForgeSectionMoveInput = DTOForgeSectionMoveInput; exports.DTOForgeSectionUpdateInput = DTOForgeSectionUpdateInput; exports.DTOForgeSpecArtifact = DTOForgeSpecArtifact; exports.DTOForgeThemeKnownPreset = DTOForgeThemeKnownPreset; exports.DTOForgeTokenThemeSet = DTOForgeTokenThemeSet; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetBlockDefinitionsQuery = DTOGetBlockDefinitionsQuery; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGetForgeIterationMessageResponse = DTOGetForgeIterationMessageResponse; exports.DTOGetForgeProjectIterationResponse = DTOGetForgeProjectIterationResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMCPStream = DTOMCPStream; exports.DTOMCPStreamResponse = DTOMCPStreamResponse; exports.DTOMCPStreamUpdateInput = DTOMCPStreamUpdateInput; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONpmRegistryAccessTokenResponse = DTONpmRegistryAccessTokenResponse; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPageRedirect = DTOPageRedirect; exports.DTOPageRedirectCreateBody = DTOPageRedirectCreateBody; exports.DTOPageRedirectDeleteResponse = DTOPageRedirectDeleteResponse; exports.DTOPageRedirectListResponse = DTOPageRedirectListResponse; exports.DTOPageRedirectResponse = DTOPageRedirectResponse; exports.DTOPageRedirectUpdateBody = DTOPageRedirectUpdateBody; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPortalSettings = DTOPortalSettings; exports.DTOPortalSettingsGetResponse = DTOPortalSettingsGetResponse; exports.DTOPortalSettingsSidebar = DTOPortalSettingsSidebar; exports.DTOPortalSettingsSidebarLink = DTOPortalSettingsSidebarLink; exports.DTOPortalSettingsSidebarSection = DTOPortalSettingsSidebarSection; exports.DTOPortalSettingsTheme = DTOPortalSettingsTheme; exports.DTOPortalSettingsUpdatePayload = DTOPortalSettingsUpdatePayload; exports.DTOProduct = DTOProduct; exports.DTOProductCode = DTOProductCode; exports.DTOProductPrice = DTOProductPrice; exports.DTOProjectContextOverride = DTOProjectContextOverride; exports.DTOProjectContextOverrideInput = DTOProjectContextOverrideInput; exports.DTOProjectContextOverrideResponse = DTOProjectContextOverrideResponse; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTOPublishedDocAnalyticsComparisonData = DTOPublishedDocAnalyticsComparisonData; exports.DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocPageAnalyticsComparisonData; exports.DTOPublishedDocPageVisitData = DTOPublishedDocPageVisitData; exports.DTOPublishedDocVisitData = DTOPublishedDocVisitData; exports.DTOPublishedDocVisitHeatMapWeek = DTOPublishedDocVisitHeatMapWeek; exports.DTORegistry = DTORegistry; exports.DTORemoveForgeProjectInvitation = DTORemoveForgeProjectInvitation; exports.DTORemoveForgeProjectMember = DTORemoveForgeProjectMember; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOSandboxError = DTOSandboxError; exports.DTOStorybookAccessTokenPayload = DTOStorybookAccessTokenPayload; exports.DTOStorybookAccessTokenResponse = DTOStorybookAccessTokenResponse; exports.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryQuery = DTOStorybookEntryQuery; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOStorybookSourceUpdatePayload = DTOStorybookSourceUpdatePayload; exports.DTOStorybookUploadStatus = DTOStorybookUploadStatus; exports.DTOStorybookUploadUrlRequest = DTOStorybookUploadUrlRequest; exports.DTOStorybookUploadUrlResponse = DTOStorybookUploadUrlResponse; exports.DTOSubscription = DTOSubscription; exports.DTOSubscriptionResponse = DTOSubscriptionResponse; exports.DTOSubscriptionUpcomingChange = DTOSubscriptionUpcomingChange; exports.DTOSubscriptionUpdateInput = DTOSubscriptionUpdateInput; exports.DTOSubscriptionUpdatePreview = DTOSubscriptionUpdatePreview; exports.DTOSubscriptionUpdatePreviewResponse = DTOSubscriptionUpdatePreviewResponse; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOThread = DTOThread; exports.DTOThreadAgentResponseTracker = DTOThreadAgentResponseTracker; exports.DTOThreadAgentType = DTOThreadAgentType; exports.DTOThreadEvent = DTOThreadEvent; exports.DTOThreadEventMessagesSent = DTOThreadEventMessagesSent; exports.DTOThreadEventMessagesUpdated = DTOThreadEventMessagesUpdated; exports.DTOThreadEventReactionsDeleted = DTOThreadEventReactionsDeleted; exports.DTOThreadEventReactionsSent = DTOThreadEventReactionsSent; exports.DTOThreadMessage = DTOThreadMessage; exports.DTOThreadMessageAgentSender = DTOThreadMessageAgentSender; exports.DTOThreadMessageAttachments = DTOThreadMessageAttachments; exports.DTOThreadMessageAttachmentsCreateInput = DTOThreadMessageAttachmentsCreateInput; exports.DTOThreadMessageCreateInput = DTOThreadMessageCreateInput; exports.DTOThreadMessageFinalizeInput = DTOThreadMessageFinalizeInput; exports.DTOThreadMessageListResponse = DTOThreadMessageListResponse; exports.DTOThreadMessageResponse = DTOThreadMessageResponse; exports.DTOThreadMessageRetryInput = DTOThreadMessageRetryInput; exports.DTOThreadMessageSender = DTOThreadMessageSender; exports.DTOThreadMessageSystemSender = DTOThreadMessageSystemSender; exports.DTOThreadMessageUpdateInput = DTOThreadMessageUpdateInput; exports.DTOThreadMessageUserSender = DTOThreadMessageUserSender; exports.DTOThreadPromptState = DTOThreadPromptState; exports.DTOThreadReaction = DTOThreadReaction; exports.DTOThreadReactionCreateInput = DTOThreadReactionCreateInput; exports.DTOThreadReactionDeleteInput = DTOThreadReactionDeleteInput; exports.DTOThreadReactionResponse = DTOThreadReactionResponse; exports.DTOThreadSubjectType = DTOThreadSubjectType; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTrailEvent = DTOTrailEvent; exports.DTOTrailEventClientCreate = DTOTrailEventClientCreate; exports.DTOTrailEventCreate = DTOTrailEventCreate; exports.DTOTrailEventListInput = DTOTrailEventListInput; exports.DTOTrailEventListResponse = DTOTrailEventListResponse; exports.DTOTrailEventType = DTOTrailEventType; exports.DTOTrailEventWithDetails = DTOTrailEventWithDetails; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUGetForgeAgentResponse = DTOUGetForgeAgentResponse; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageDocumentInputV2 = DTOUpdateDocumentationPageDocumentInputV2; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateForgeAgent = DTOUpdateForgeAgent; exports.DTOUpdateForgeAgentResponse = DTOUpdateForgeAgentResponse; exports.DTOUpdateForgeArtifact = DTOUpdateForgeArtifact; exports.DTOUpdateForgeArtifactResponse = DTOUpdateForgeArtifactResponse; exports.DTOUpdateForgeBuildArtifact = DTOUpdateForgeBuildArtifact; exports.DTOUpdateForgeFigmaArtifact = DTOUpdateForgeFigmaArtifact; exports.DTOUpdateForgeFileArtifact = DTOUpdateForgeFileArtifact; exports.DTOUpdateForgeIterationMessage = DTOUpdateForgeIterationMessage; exports.DTOUpdateForgeIterationMessageResponse = DTOUpdateForgeIterationMessageResponse; exports.DTOUpdateForgeParticipant = DTOUpdateForgeParticipant; exports.DTOUpdateForgeParticipantResponse = DTOUpdateForgeParticipantResponse; exports.DTOUpdateForgeProjectContext = DTOUpdateForgeProjectContext; exports.DTOUpdateForgeProjectInvitation = DTOUpdateForgeProjectInvitation; exports.DTOUpdateForgeProjectIteration = DTOUpdateForgeProjectIteration; exports.DTOUpdateForgeProjectIterationResponse = DTOUpdateForgeProjectIterationResponse; exports.DTOUpdateForgeProjectMember = DTOUpdateForgeProjectMember; exports.DTOUpdateForgeSpecArtifact = DTOUpdateForgeSpecArtifact; exports.DTOUpdateRegistryInput = DTOUpdateRegistryInput; exports.DTOUpdateRegistryOutput = DTOUpdateRegistryOutput; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUploadUrlItem = DTOUploadUrlItem; exports.DTOUser = DTOUser; exports.DTOUserDesignSystemsResponse = DTOUserDesignSystemsResponse; exports.DTOUserEmailSettings = DTOUserEmailSettings; exports.DTOUserEmailSettingsUpdatePayload = DTOUserEmailSettingsUpdatePayload; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserPortalTheme = DTOUserPortalTheme; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserSource = DTOUserSource; exports.DTOUserTheme = DTOUserTheme; exports.DTOUserUpdatePayload = DTOUserUpdatePayload; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceBilledSeatType = DTOWorkspaceBilledSeatType; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceDefaultProjectAccessMode = DTOWorkspaceDefaultProjectAccessMode; exports.DTOWorkspaceDefaultProjectRole = DTOWorkspaceDefaultProjectRole; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitation = DTOWorkspaceInvitation; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DTOWorkspaceRoomEvent = DTOWorkspaceRoomEvent; exports.DTOWorkspaceSeatType = DTOWorkspaceSeatType; exports.DTOWorkspaceUntypedData = DTOWorkspaceUntypedData; exports.DTOWorkspaceUntypedDataCreatePayload = DTOWorkspaceUntypedDataCreatePayload; exports.DTOWorkspaceUntypedDataListResponse = DTOWorkspaceUntypedDataListResponse; exports.DTOWorkspaceUntypedDataResponse = DTOWorkspaceUntypedDataResponse; exports.DTOWorkspaceUntypedDataUpdatePayload = DTOWorkspaceUntypedDataUpdatePayload; exports.DesignSystemAnalyticsEndpoint = DesignSystemAnalyticsEndpoint; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemFilesEndpoint = DesignSystemFilesEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemPageRedirectsEndpoint = DesignSystemPageRedirectsEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FeatureRoomBaseYDoc = FeatureRoomBaseYDoc; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaNodeStructuresEndpoint = FigmaNodeStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FilesEndpoint = FilesEndpoint; exports.ForgeAgentsEndpoint = ForgeAgentsEndpoint; exports.ForgeArtifactsEndpoint = ForgeArtifactsEndpoint; exports.ForgeDocumentsEndpoint = ForgeDocumentsEndpoint; exports.ForgeEndpoint = ForgeEndpoint; exports.ForgeFeatureArtifactsEndpoint = ForgeFeatureArtifactsEndpoint; exports.ForgeFeatureIterationsEndpoint = ForgeFeatureIterationsEndpoint; exports.ForgeFeatureMessagesEndpoint = ForgeFeatureMessagesEndpoint; exports.ForgeMemoryEndpoint = ForgeMemoryEndpoint; exports.ForgeProjectContentRepository = ForgeProjectContentRepository; exports.ForgeProjectContextsEndpoint = ForgeProjectContextsEndpoint; exports.ForgeProjectFeaturesEndpoint = ForgeProjectFeaturesEndpoint; exports.ForgeProjectFilesEndpoint = ForgeProjectFilesEndpoint; exports.ForgeProjectInvitationsEndpoint = ForgeProjectInvitationsEndpoint; exports.ForgeProjectIterationsEndpoint = ForgeProjectIterationsEndpoint; exports.ForgeProjectMembersEndpoint = ForgeProjectMembersEndpoint; exports.ForgeProjectRoomBaseYDoc = ForgeProjectRoomBaseYDoc; exports.ForgeProjectsEndpoint = ForgeProjectsEndpoint; exports.FormattedCollections = FormattedCollections; exports.FrontendFeatureRoomYDoc = FrontendFeatureRoomYDoc; exports.FrontendThreadRoomYDoc = FrontendThreadRoomYDoc; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.GitDestinationOptions = GitDestinationOptions; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalDocsElementActionExecutor = LocalDocsElementActionExecutor; exports.LocalProjectActionExecutor = LocalProjectActionExecutor; exports.MCPStreamsEndpoint = MCPStreamsEndpoint; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.StorybookEntriesEndpoint = StorybookEntriesEndpoint; exports.StorybookHostingEndpoint = StorybookHostingEndpoint; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.ThreadRoomBaseYDoc = ThreadRoomBaseYDoc; exports.ThreadsEndpoint = ThreadsEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceChatThreadsEndpoint = WorkspaceChatThreadsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceIntegrationsEndpoint = WorkspaceIntegrationsEndpoint; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspaceNpmRegistryEndpoint = WorkspaceNpmRegistryEndpoint; exports.WorkspaceSubscriptionEndpoint = WorkspaceSubscriptionEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.applyActionsLocally = applyActionsLocally; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.applyProjectActionsLocally = applyProjectActionsLocally; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationAnalyticsToComparisonDto = documentationAnalyticsToComparisonDto; exports.documentationAnalyticsToGlobalDto = documentationAnalyticsToGlobalDto; exports.documentationAnalyticsToHeatMapDto = documentationAnalyticsToHeatMapDto; exports.documentationAnalyticsToPageComparisonDto = documentationAnalyticsToPageComparisonDto; exports.documentationAnalyticsToPageDto = documentationAnalyticsToPageDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.exhaustiveInvalidUriPaths = exhaustiveInvalidUriPaths; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.isValidRedirectPath = isValidRedirectPath; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.zodQueryBoolean = zodQueryBoolean;
|
|
20434
20490
|
//# sourceMappingURL=index.js.map
|