@supernova-studio/client 1.6.1 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +259 -5
- package/dist/index.d.ts +259 -5
- package/dist/index.js +64 -19
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +316 -271
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -22288,7 +22288,7 @@ declare const DTOPublishedDocVisitData: z.ZodObject<{
|
|
|
22288
22288
|
locale?: string | undefined;
|
|
22289
22289
|
}>;
|
|
22290
22290
|
type DTOPublishedDocVisitData = z.infer<typeof DTOPublishedDocVisitData>;
|
|
22291
|
-
declare const
|
|
22291
|
+
declare const DTOPublishedDocAnalyticsComparisonData: z.ZodObject<{
|
|
22292
22292
|
/**
|
|
22293
22293
|
* For which timeframe it was calculated
|
|
22294
22294
|
*/
|
|
@@ -22325,7 +22325,49 @@ declare const DTOPubishedDocAnalyticsComparisonData: z.ZodObject<{
|
|
|
22325
22325
|
currentVisitCount: number;
|
|
22326
22326
|
currentSessionCount: number;
|
|
22327
22327
|
}>;
|
|
22328
|
-
type
|
|
22328
|
+
type DTOPublishedDocAnalyticsComparisonData = z.infer<typeof DTOPublishedDocAnalyticsComparisonData>;
|
|
22329
|
+
declare const DTOPublishedDocPageAnalyticsComparisonData: z.ZodObject<z.objectUtil.extendShape<{
|
|
22330
|
+
/**
|
|
22331
|
+
* For which timeframe it was calculated
|
|
22332
|
+
*/
|
|
22333
|
+
timeFrame: z.ZodObject<{
|
|
22334
|
+
start: z.ZodDate;
|
|
22335
|
+
end: z.ZodOptional<z.ZodDate>;
|
|
22336
|
+
}, "strip", z.ZodTypeAny, {
|
|
22337
|
+
start: Date;
|
|
22338
|
+
end?: Date | undefined;
|
|
22339
|
+
}, {
|
|
22340
|
+
start: Date;
|
|
22341
|
+
end?: Date | undefined;
|
|
22342
|
+
}>;
|
|
22343
|
+
priorVisitCount: z.ZodNumber;
|
|
22344
|
+
priorSessionCount: z.ZodNumber;
|
|
22345
|
+
currentVisitCount: z.ZodNumber;
|
|
22346
|
+
currentSessionCount: z.ZodNumber;
|
|
22347
|
+
}, {
|
|
22348
|
+
pagePersistentId: z.ZodString;
|
|
22349
|
+
}>, "strip", z.ZodTypeAny, {
|
|
22350
|
+
pagePersistentId: string;
|
|
22351
|
+
timeFrame: {
|
|
22352
|
+
start: Date;
|
|
22353
|
+
end?: Date | undefined;
|
|
22354
|
+
};
|
|
22355
|
+
priorVisitCount: number;
|
|
22356
|
+
priorSessionCount: number;
|
|
22357
|
+
currentVisitCount: number;
|
|
22358
|
+
currentSessionCount: number;
|
|
22359
|
+
}, {
|
|
22360
|
+
pagePersistentId: string;
|
|
22361
|
+
timeFrame: {
|
|
22362
|
+
start: Date;
|
|
22363
|
+
end?: Date | undefined;
|
|
22364
|
+
};
|
|
22365
|
+
priorVisitCount: number;
|
|
22366
|
+
priorSessionCount: number;
|
|
22367
|
+
currentVisitCount: number;
|
|
22368
|
+
currentSessionCount: number;
|
|
22369
|
+
}>;
|
|
22370
|
+
type DTOPublishedDocPageAnalyticsComparisonData = z.infer<typeof DTOPublishedDocPageAnalyticsComparisonData>;
|
|
22329
22371
|
declare const DTODocumentationPageAnalyticsResponse: z.ZodObject<{
|
|
22330
22372
|
/**
|
|
22331
22373
|
* @deprecated
|
|
@@ -22504,6 +22546,47 @@ declare const DTODocumentationPageAnalyticsResponse: z.ZodObject<{
|
|
|
22504
22546
|
currentVisitCount: number;
|
|
22505
22547
|
currentSessionCount: number;
|
|
22506
22548
|
}>, "many">;
|
|
22549
|
+
pageComparisonData: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
22550
|
+
/**
|
|
22551
|
+
* For which timeframe it was calculated
|
|
22552
|
+
*/
|
|
22553
|
+
timeFrame: z.ZodObject<{
|
|
22554
|
+
start: z.ZodDate;
|
|
22555
|
+
end: z.ZodOptional<z.ZodDate>;
|
|
22556
|
+
}, "strip", z.ZodTypeAny, {
|
|
22557
|
+
start: Date;
|
|
22558
|
+
end?: Date | undefined;
|
|
22559
|
+
}, {
|
|
22560
|
+
start: Date;
|
|
22561
|
+
end?: Date | undefined;
|
|
22562
|
+
}>;
|
|
22563
|
+
priorVisitCount: z.ZodNumber;
|
|
22564
|
+
priorSessionCount: z.ZodNumber;
|
|
22565
|
+
currentVisitCount: z.ZodNumber;
|
|
22566
|
+
currentSessionCount: z.ZodNumber;
|
|
22567
|
+
}, {
|
|
22568
|
+
pagePersistentId: z.ZodString;
|
|
22569
|
+
}>, "strip", z.ZodTypeAny, {
|
|
22570
|
+
pagePersistentId: string;
|
|
22571
|
+
timeFrame: {
|
|
22572
|
+
start: Date;
|
|
22573
|
+
end?: Date | undefined;
|
|
22574
|
+
};
|
|
22575
|
+
priorVisitCount: number;
|
|
22576
|
+
priorSessionCount: number;
|
|
22577
|
+
currentVisitCount: number;
|
|
22578
|
+
currentSessionCount: number;
|
|
22579
|
+
}, {
|
|
22580
|
+
pagePersistentId: string;
|
|
22581
|
+
timeFrame: {
|
|
22582
|
+
start: Date;
|
|
22583
|
+
end?: Date | undefined;
|
|
22584
|
+
};
|
|
22585
|
+
priorVisitCount: number;
|
|
22586
|
+
priorSessionCount: number;
|
|
22587
|
+
currentVisitCount: number;
|
|
22588
|
+
currentSessionCount: number;
|
|
22589
|
+
}>, "many">;
|
|
22507
22590
|
}, "strip", z.ZodTypeAny, {
|
|
22508
22591
|
analytics: {
|
|
22509
22592
|
pagePersistentId: string;
|
|
@@ -22559,6 +22642,17 @@ declare const DTODocumentationPageAnalyticsResponse: z.ZodObject<{
|
|
|
22559
22642
|
currentVisitCount: number;
|
|
22560
22643
|
currentSessionCount: number;
|
|
22561
22644
|
}[];
|
|
22645
|
+
pageComparisonData: {
|
|
22646
|
+
pagePersistentId: string;
|
|
22647
|
+
timeFrame: {
|
|
22648
|
+
start: Date;
|
|
22649
|
+
end?: Date | undefined;
|
|
22650
|
+
};
|
|
22651
|
+
priorVisitCount: number;
|
|
22652
|
+
priorSessionCount: number;
|
|
22653
|
+
currentVisitCount: number;
|
|
22654
|
+
currentSessionCount: number;
|
|
22655
|
+
}[];
|
|
22562
22656
|
}, {
|
|
22563
22657
|
analytics: {
|
|
22564
22658
|
pagePersistentId: string;
|
|
@@ -22614,6 +22708,17 @@ declare const DTODocumentationPageAnalyticsResponse: z.ZodObject<{
|
|
|
22614
22708
|
currentVisitCount: number;
|
|
22615
22709
|
currentSessionCount: number;
|
|
22616
22710
|
}[];
|
|
22711
|
+
pageComparisonData: {
|
|
22712
|
+
pagePersistentId: string;
|
|
22713
|
+
timeFrame: {
|
|
22714
|
+
start: Date;
|
|
22715
|
+
end?: Date | undefined;
|
|
22716
|
+
};
|
|
22717
|
+
priorVisitCount: number;
|
|
22718
|
+
priorSessionCount: number;
|
|
22719
|
+
currentVisitCount: number;
|
|
22720
|
+
currentSessionCount: number;
|
|
22721
|
+
}[];
|
|
22617
22722
|
}>;
|
|
22618
22723
|
type DTODocumentationPageAnalyticsResponse = z.infer<typeof DTODocumentationPageAnalyticsResponse>;
|
|
22619
22724
|
declare const DTODocumentationAnalyticsRequest: z.ZodObject<{
|
|
@@ -39829,6 +39934,137 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
39829
39934
|
}>;
|
|
39830
39935
|
type DTODocumentationPageContentGetResponse = z.infer<typeof DTODocumentationPageContentGetResponse>;
|
|
39831
39936
|
|
|
39937
|
+
declare const DTODocumentationPageDependencies: z.ZodObject<{
|
|
39938
|
+
id: z.ZodString;
|
|
39939
|
+
designSystemVersionId: z.ZodString;
|
|
39940
|
+
createdAt: z.ZodDate;
|
|
39941
|
+
updatedAt: z.ZodDate;
|
|
39942
|
+
documentationPageId: z.ZodString;
|
|
39943
|
+
tokenPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39944
|
+
figmaComponentPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39945
|
+
componentPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39946
|
+
figmaNodePersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39947
|
+
groupPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39948
|
+
propertyPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39949
|
+
themePersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39950
|
+
documentationPagePersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39951
|
+
storybookEntriesStoryIds: z.ZodArray<z.ZodString, "many">;
|
|
39952
|
+
}, "strip", z.ZodTypeAny, {
|
|
39953
|
+
id: string;
|
|
39954
|
+
designSystemVersionId: string;
|
|
39955
|
+
createdAt: Date;
|
|
39956
|
+
updatedAt: Date;
|
|
39957
|
+
themePersistentIds: string[];
|
|
39958
|
+
documentationPageId: string;
|
|
39959
|
+
tokenPersistentIds: string[];
|
|
39960
|
+
figmaComponentPersistentIds: string[];
|
|
39961
|
+
componentPersistentIds: string[];
|
|
39962
|
+
figmaNodePersistentIds: string[];
|
|
39963
|
+
groupPersistentIds: string[];
|
|
39964
|
+
propertyPersistentIds: string[];
|
|
39965
|
+
documentationPagePersistentIds: string[];
|
|
39966
|
+
storybookEntriesStoryIds: string[];
|
|
39967
|
+
}, {
|
|
39968
|
+
id: string;
|
|
39969
|
+
designSystemVersionId: string;
|
|
39970
|
+
createdAt: Date;
|
|
39971
|
+
updatedAt: Date;
|
|
39972
|
+
themePersistentIds: string[];
|
|
39973
|
+
documentationPageId: string;
|
|
39974
|
+
tokenPersistentIds: string[];
|
|
39975
|
+
figmaComponentPersistentIds: string[];
|
|
39976
|
+
componentPersistentIds: string[];
|
|
39977
|
+
figmaNodePersistentIds: string[];
|
|
39978
|
+
groupPersistentIds: string[];
|
|
39979
|
+
propertyPersistentIds: string[];
|
|
39980
|
+
documentationPagePersistentIds: string[];
|
|
39981
|
+
storybookEntriesStoryIds: string[];
|
|
39982
|
+
}>;
|
|
39983
|
+
type DTODocumentationPageDependencies = z.infer<typeof DTODocumentationPageDependencies>;
|
|
39984
|
+
declare const DTODocumentationPageDependenciesGetResponse: z.ZodObject<{
|
|
39985
|
+
dependencies: z.ZodArray<z.ZodObject<{
|
|
39986
|
+
id: z.ZodString;
|
|
39987
|
+
designSystemVersionId: z.ZodString;
|
|
39988
|
+
createdAt: z.ZodDate;
|
|
39989
|
+
updatedAt: z.ZodDate;
|
|
39990
|
+
documentationPageId: z.ZodString;
|
|
39991
|
+
tokenPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39992
|
+
figmaComponentPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39993
|
+
componentPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39994
|
+
figmaNodePersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39995
|
+
groupPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39996
|
+
propertyPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39997
|
+
themePersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39998
|
+
documentationPagePersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
39999
|
+
storybookEntriesStoryIds: z.ZodArray<z.ZodString, "many">;
|
|
40000
|
+
}, "strip", z.ZodTypeAny, {
|
|
40001
|
+
id: string;
|
|
40002
|
+
designSystemVersionId: string;
|
|
40003
|
+
createdAt: Date;
|
|
40004
|
+
updatedAt: Date;
|
|
40005
|
+
themePersistentIds: string[];
|
|
40006
|
+
documentationPageId: string;
|
|
40007
|
+
tokenPersistentIds: string[];
|
|
40008
|
+
figmaComponentPersistentIds: string[];
|
|
40009
|
+
componentPersistentIds: string[];
|
|
40010
|
+
figmaNodePersistentIds: string[];
|
|
40011
|
+
groupPersistentIds: string[];
|
|
40012
|
+
propertyPersistentIds: string[];
|
|
40013
|
+
documentationPagePersistentIds: string[];
|
|
40014
|
+
storybookEntriesStoryIds: string[];
|
|
40015
|
+
}, {
|
|
40016
|
+
id: string;
|
|
40017
|
+
designSystemVersionId: string;
|
|
40018
|
+
createdAt: Date;
|
|
40019
|
+
updatedAt: Date;
|
|
40020
|
+
themePersistentIds: string[];
|
|
40021
|
+
documentationPageId: string;
|
|
40022
|
+
tokenPersistentIds: string[];
|
|
40023
|
+
figmaComponentPersistentIds: string[];
|
|
40024
|
+
componentPersistentIds: string[];
|
|
40025
|
+
figmaNodePersistentIds: string[];
|
|
40026
|
+
groupPersistentIds: string[];
|
|
40027
|
+
propertyPersistentIds: string[];
|
|
40028
|
+
documentationPagePersistentIds: string[];
|
|
40029
|
+
storybookEntriesStoryIds: string[];
|
|
40030
|
+
}>, "many">;
|
|
40031
|
+
}, "strip", z.ZodTypeAny, {
|
|
40032
|
+
dependencies: {
|
|
40033
|
+
id: string;
|
|
40034
|
+
designSystemVersionId: string;
|
|
40035
|
+
createdAt: Date;
|
|
40036
|
+
updatedAt: Date;
|
|
40037
|
+
themePersistentIds: string[];
|
|
40038
|
+
documentationPageId: string;
|
|
40039
|
+
tokenPersistentIds: string[];
|
|
40040
|
+
figmaComponentPersistentIds: string[];
|
|
40041
|
+
componentPersistentIds: string[];
|
|
40042
|
+
figmaNodePersistentIds: string[];
|
|
40043
|
+
groupPersistentIds: string[];
|
|
40044
|
+
propertyPersistentIds: string[];
|
|
40045
|
+
documentationPagePersistentIds: string[];
|
|
40046
|
+
storybookEntriesStoryIds: string[];
|
|
40047
|
+
}[];
|
|
40048
|
+
}, {
|
|
40049
|
+
dependencies: {
|
|
40050
|
+
id: string;
|
|
40051
|
+
designSystemVersionId: string;
|
|
40052
|
+
createdAt: Date;
|
|
40053
|
+
updatedAt: Date;
|
|
40054
|
+
themePersistentIds: string[];
|
|
40055
|
+
documentationPageId: string;
|
|
40056
|
+
tokenPersistentIds: string[];
|
|
40057
|
+
figmaComponentPersistentIds: string[];
|
|
40058
|
+
componentPersistentIds: string[];
|
|
40059
|
+
figmaNodePersistentIds: string[];
|
|
40060
|
+
groupPersistentIds: string[];
|
|
40061
|
+
propertyPersistentIds: string[];
|
|
40062
|
+
documentationPagePersistentIds: string[];
|
|
40063
|
+
storybookEntriesStoryIds: string[];
|
|
40064
|
+
}[];
|
|
40065
|
+
}>;
|
|
40066
|
+
type DTODocumentationPageDependenciesGetResponse = z.infer<typeof DTODocumentationPageDependenciesGetResponse>;
|
|
40067
|
+
|
|
39832
40068
|
declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
39833
40069
|
id: z.ZodString;
|
|
39834
40070
|
persistentId: z.ZodString;
|
|
@@ -94609,12 +94845,19 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
94609
94845
|
}>;
|
|
94610
94846
|
type DTOWorkspaceResponse = z.infer<typeof DTOWorkspaceResponse>;
|
|
94611
94847
|
|
|
94612
|
-
type
|
|
94848
|
+
type PageAnalyticsInput = {
|
|
94849
|
+
pagePersistentId: string;
|
|
94850
|
+
priorDataPoints: PublishedDocPageVisitsEntry[];
|
|
94851
|
+
currentDataPoints: PublishedDocPageVisitsEntry[];
|
|
94852
|
+
timeFrame: DTODocumentationAnalyticsTimeFrame;
|
|
94853
|
+
};
|
|
94854
|
+
declare function documentationAnalyticsToPageComparisonDto(input: PageAnalyticsInput): DTOPublishedDocPageAnalyticsComparisonData;
|
|
94855
|
+
type GlobalAnalyticsInput = {
|
|
94613
94856
|
priorDataPoints: PublishedDocPageVisitsEntry[];
|
|
94614
94857
|
currentDataPoints: PublishedDocPageVisitsEntry[];
|
|
94615
94858
|
timeFrame: DTODocumentationAnalyticsTimeFrame;
|
|
94616
94859
|
};
|
|
94617
|
-
declare function documentationAnalyticsToComparisonDto(input:
|
|
94860
|
+
declare function documentationAnalyticsToComparisonDto(input: GlobalAnalyticsInput): DTOPublishedDocAnalyticsComparisonData;
|
|
94618
94861
|
|
|
94619
94862
|
declare function documentationAnalyticsToGlobalDto(entries: PublishedDocPageVisitsEntry[]): DTOPublishedDocVisitData[];
|
|
94620
94863
|
declare function documentationAnalyticsToPageDto(entries: PublishedDocPageVisitsEntry[]): DTOPublishedDocPageVisitData[];
|
|
@@ -103722,6 +103965,17 @@ declare class DesignSystemAnalyticsEndpoint {
|
|
|
103722
103965
|
currentVisitCount: number;
|
|
103723
103966
|
currentSessionCount: number;
|
|
103724
103967
|
}[];
|
|
103968
|
+
pageComparisonData: {
|
|
103969
|
+
pagePersistentId: string;
|
|
103970
|
+
timeFrame: {
|
|
103971
|
+
start: Date;
|
|
103972
|
+
end?: Date | undefined;
|
|
103973
|
+
};
|
|
103974
|
+
priorVisitCount: number;
|
|
103975
|
+
priorSessionCount: number;
|
|
103976
|
+
currentVisitCount: number;
|
|
103977
|
+
currentSessionCount: number;
|
|
103978
|
+
}[];
|
|
103725
103979
|
}>;
|
|
103726
103980
|
}
|
|
103727
103981
|
|
|
@@ -108264,4 +108518,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
108264
108518
|
reason: ValidationErrorReason | undefined;
|
|
108265
108519
|
};
|
|
108266
108520
|
|
|
108267
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPubishedDocAnalyticsComparisonData, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
108521
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|