@supernova-studio/client 0.46.10 → 0.46.12
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 +52 -49
- package/dist/index.d.ts +52 -49
- package/dist/index.js +38 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +121 -110
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/workspaces/npm-registry.ts +6 -2
package/dist/index.d.mts
CHANGED
|
@@ -17331,9 +17331,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17331
17331
|
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
17332
17332
|
proxyUrl: z.ZodString;
|
|
17333
17333
|
authType: z.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
|
|
17334
|
-
accessToken: z.ZodOptional<z.ZodLiteral<
|
|
17334
|
+
accessToken: z.ZodOptional<z.ZodLiteral<string>>;
|
|
17335
17335
|
username: z.ZodOptional<z.ZodString>;
|
|
17336
|
-
password: z.ZodOptional<z.ZodLiteral<
|
|
17336
|
+
password: z.ZodOptional<z.ZodLiteral<string>>;
|
|
17337
17337
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
17338
17338
|
bypassProxy: z.ZodBoolean;
|
|
17339
17339
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17344,9 +17344,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17344
17344
|
registryUrl: string;
|
|
17345
17345
|
proxyUrl: string;
|
|
17346
17346
|
customRegistryUrl?: string | undefined;
|
|
17347
|
-
accessToken?:
|
|
17347
|
+
accessToken?: string | undefined;
|
|
17348
17348
|
username?: string | undefined;
|
|
17349
|
-
password?:
|
|
17349
|
+
password?: string | undefined;
|
|
17350
17350
|
}, {
|
|
17351
17351
|
enabledScopes: string[];
|
|
17352
17352
|
bypassProxy: boolean;
|
|
@@ -17355,9 +17355,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17355
17355
|
registryUrl: string;
|
|
17356
17356
|
proxyUrl: string;
|
|
17357
17357
|
customRegistryUrl?: string | undefined;
|
|
17358
|
-
accessToken?:
|
|
17358
|
+
accessToken?: string | undefined;
|
|
17359
17359
|
username?: string | undefined;
|
|
17360
|
-
password?:
|
|
17360
|
+
password?: string | undefined;
|
|
17361
17361
|
}>>;
|
|
17362
17362
|
}, "strip", z.ZodTypeAny, {
|
|
17363
17363
|
id: string;
|
|
@@ -17519,9 +17519,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17519
17519
|
registryUrl: string;
|
|
17520
17520
|
proxyUrl: string;
|
|
17521
17521
|
customRegistryUrl?: string | undefined;
|
|
17522
|
-
accessToken?:
|
|
17522
|
+
accessToken?: string | undefined;
|
|
17523
17523
|
username?: string | undefined;
|
|
17524
|
-
password?:
|
|
17524
|
+
password?: string | undefined;
|
|
17525
17525
|
} | undefined;
|
|
17526
17526
|
}, {
|
|
17527
17527
|
id: string;
|
|
@@ -17683,9 +17683,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17683
17683
|
registryUrl: string;
|
|
17684
17684
|
proxyUrl: string;
|
|
17685
17685
|
customRegistryUrl?: string | undefined;
|
|
17686
|
-
accessToken?:
|
|
17686
|
+
accessToken?: string | undefined;
|
|
17687
17687
|
username?: string | undefined;
|
|
17688
|
-
password?:
|
|
17688
|
+
password?: string | undefined;
|
|
17689
17689
|
} | undefined;
|
|
17690
17690
|
}>;
|
|
17691
17691
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
@@ -17851,9 +17851,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17851
17851
|
registryUrl: string;
|
|
17852
17852
|
proxyUrl: string;
|
|
17853
17853
|
customRegistryUrl?: string | undefined;
|
|
17854
|
-
accessToken?:
|
|
17854
|
+
accessToken?: string | undefined;
|
|
17855
17855
|
username?: string | undefined;
|
|
17856
|
-
password?:
|
|
17856
|
+
password?: string | undefined;
|
|
17857
17857
|
} | undefined;
|
|
17858
17858
|
};
|
|
17859
17859
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -18019,9 +18019,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
18019
18019
|
registryUrl: string;
|
|
18020
18020
|
proxyUrl: string;
|
|
18021
18021
|
customRegistryUrl?: string | undefined;
|
|
18022
|
-
accessToken?:
|
|
18022
|
+
accessToken?: string | undefined;
|
|
18023
18023
|
username?: string | undefined;
|
|
18024
|
-
password?:
|
|
18024
|
+
password?: string | undefined;
|
|
18025
18025
|
} | undefined;
|
|
18026
18026
|
};
|
|
18027
18027
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -18877,9 +18877,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18877
18877
|
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
18878
18878
|
proxyUrl: z.ZodString;
|
|
18879
18879
|
authType: z.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
|
|
18880
|
-
accessToken: z.ZodOptional<z.ZodLiteral<
|
|
18880
|
+
accessToken: z.ZodOptional<z.ZodLiteral<string>>;
|
|
18881
18881
|
username: z.ZodOptional<z.ZodString>;
|
|
18882
|
-
password: z.ZodOptional<z.ZodLiteral<
|
|
18882
|
+
password: z.ZodOptional<z.ZodLiteral<string>>;
|
|
18883
18883
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
18884
18884
|
bypassProxy: z.ZodBoolean;
|
|
18885
18885
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18890,9 +18890,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18890
18890
|
registryUrl: string;
|
|
18891
18891
|
proxyUrl: string;
|
|
18892
18892
|
customRegistryUrl?: string | undefined;
|
|
18893
|
-
accessToken?:
|
|
18893
|
+
accessToken?: string | undefined;
|
|
18894
18894
|
username?: string | undefined;
|
|
18895
|
-
password?:
|
|
18895
|
+
password?: string | undefined;
|
|
18896
18896
|
}, {
|
|
18897
18897
|
enabledScopes: string[];
|
|
18898
18898
|
bypassProxy: boolean;
|
|
@@ -18901,9 +18901,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18901
18901
|
registryUrl: string;
|
|
18902
18902
|
proxyUrl: string;
|
|
18903
18903
|
customRegistryUrl?: string | undefined;
|
|
18904
|
-
accessToken?:
|
|
18904
|
+
accessToken?: string | undefined;
|
|
18905
18905
|
username?: string | undefined;
|
|
18906
|
-
password?:
|
|
18906
|
+
password?: string | undefined;
|
|
18907
18907
|
}>>;
|
|
18908
18908
|
}, "strip", z.ZodTypeAny, {
|
|
18909
18909
|
id: string;
|
|
@@ -19065,9 +19065,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19065
19065
|
registryUrl: string;
|
|
19066
19066
|
proxyUrl: string;
|
|
19067
19067
|
customRegistryUrl?: string | undefined;
|
|
19068
|
-
accessToken?:
|
|
19068
|
+
accessToken?: string | undefined;
|
|
19069
19069
|
username?: string | undefined;
|
|
19070
|
-
password?:
|
|
19070
|
+
password?: string | undefined;
|
|
19071
19071
|
} | undefined;
|
|
19072
19072
|
}, {
|
|
19073
19073
|
id: string;
|
|
@@ -19229,9 +19229,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19229
19229
|
registryUrl: string;
|
|
19230
19230
|
proxyUrl: string;
|
|
19231
19231
|
customRegistryUrl?: string | undefined;
|
|
19232
|
-
accessToken?:
|
|
19232
|
+
accessToken?: string | undefined;
|
|
19233
19233
|
username?: string | undefined;
|
|
19234
|
-
password?:
|
|
19234
|
+
password?: string | undefined;
|
|
19235
19235
|
} | undefined;
|
|
19236
19236
|
}>;
|
|
19237
19237
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
@@ -19397,9 +19397,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19397
19397
|
registryUrl: string;
|
|
19398
19398
|
proxyUrl: string;
|
|
19399
19399
|
customRegistryUrl?: string | undefined;
|
|
19400
|
-
accessToken?:
|
|
19400
|
+
accessToken?: string | undefined;
|
|
19401
19401
|
username?: string | undefined;
|
|
19402
|
-
password?:
|
|
19402
|
+
password?: string | undefined;
|
|
19403
19403
|
} | undefined;
|
|
19404
19404
|
};
|
|
19405
19405
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -19565,9 +19565,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19565
19565
|
registryUrl: string;
|
|
19566
19566
|
proxyUrl: string;
|
|
19567
19567
|
customRegistryUrl?: string | undefined;
|
|
19568
|
-
accessToken?:
|
|
19568
|
+
accessToken?: string | undefined;
|
|
19569
19569
|
username?: string | undefined;
|
|
19570
|
-
password?:
|
|
19570
|
+
password?: string | undefined;
|
|
19571
19571
|
} | undefined;
|
|
19572
19572
|
};
|
|
19573
19573
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -19735,9 +19735,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19735
19735
|
registryUrl: string;
|
|
19736
19736
|
proxyUrl: string;
|
|
19737
19737
|
customRegistryUrl?: string | undefined;
|
|
19738
|
-
accessToken?:
|
|
19738
|
+
accessToken?: string | undefined;
|
|
19739
19739
|
username?: string | undefined;
|
|
19740
|
-
password?:
|
|
19740
|
+
password?: string | undefined;
|
|
19741
19741
|
} | undefined;
|
|
19742
19742
|
};
|
|
19743
19743
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -19905,9 +19905,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19905
19905
|
registryUrl: string;
|
|
19906
19906
|
proxyUrl: string;
|
|
19907
19907
|
customRegistryUrl?: string | undefined;
|
|
19908
|
-
accessToken?:
|
|
19908
|
+
accessToken?: string | undefined;
|
|
19909
19909
|
username?: string | undefined;
|
|
19910
|
-
password?:
|
|
19910
|
+
password?: string | undefined;
|
|
19911
19911
|
} | undefined;
|
|
19912
19912
|
};
|
|
19913
19913
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -19916,15 +19916,18 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19916
19916
|
}>;
|
|
19917
19917
|
type DTOUserWorkspaceMembershipsResponse = z.infer<typeof DTOUserWorkspaceMembershipsResponse>;
|
|
19918
19918
|
|
|
19919
|
+
declare const DTONpmRegistryConfigConstants: {
|
|
19920
|
+
passwordPlaceholder: string;
|
|
19921
|
+
};
|
|
19919
19922
|
declare const DTONpmRegistryConfig: z.ZodObject<{
|
|
19920
19923
|
registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
19921
19924
|
registryUrl: z.ZodString;
|
|
19922
19925
|
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
19923
19926
|
proxyUrl: z.ZodString;
|
|
19924
19927
|
authType: z.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
|
|
19925
|
-
accessToken: z.ZodOptional<z.ZodLiteral<
|
|
19928
|
+
accessToken: z.ZodOptional<z.ZodLiteral<string>>;
|
|
19926
19929
|
username: z.ZodOptional<z.ZodString>;
|
|
19927
|
-
password: z.ZodOptional<z.ZodLiteral<
|
|
19930
|
+
password: z.ZodOptional<z.ZodLiteral<string>>;
|
|
19928
19931
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
19929
19932
|
bypassProxy: z.ZodBoolean;
|
|
19930
19933
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19935,9 +19938,9 @@ declare const DTONpmRegistryConfig: z.ZodObject<{
|
|
|
19935
19938
|
registryUrl: string;
|
|
19936
19939
|
proxyUrl: string;
|
|
19937
19940
|
customRegistryUrl?: string | undefined;
|
|
19938
|
-
accessToken?:
|
|
19941
|
+
accessToken?: string | undefined;
|
|
19939
19942
|
username?: string | undefined;
|
|
19940
|
-
password?:
|
|
19943
|
+
password?: string | undefined;
|
|
19941
19944
|
}, {
|
|
19942
19945
|
enabledScopes: string[];
|
|
19943
19946
|
bypassProxy: boolean;
|
|
@@ -19946,9 +19949,9 @@ declare const DTONpmRegistryConfig: z.ZodObject<{
|
|
|
19946
19949
|
registryUrl: string;
|
|
19947
19950
|
proxyUrl: string;
|
|
19948
19951
|
customRegistryUrl?: string | undefined;
|
|
19949
|
-
accessToken?:
|
|
19952
|
+
accessToken?: string | undefined;
|
|
19950
19953
|
username?: string | undefined;
|
|
19951
|
-
password?:
|
|
19954
|
+
password?: string | undefined;
|
|
19952
19955
|
}>;
|
|
19953
19956
|
type DTONpmRegistryConfig = z.infer<typeof DTONpmRegistryConfig>;
|
|
19954
19957
|
|
|
@@ -20799,9 +20802,9 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
20799
20802
|
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
20800
20803
|
proxyUrl: z.ZodString;
|
|
20801
20804
|
authType: z.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
|
|
20802
|
-
accessToken: z.ZodOptional<z.ZodLiteral<
|
|
20805
|
+
accessToken: z.ZodOptional<z.ZodLiteral<string>>;
|
|
20803
20806
|
username: z.ZodOptional<z.ZodString>;
|
|
20804
|
-
password: z.ZodOptional<z.ZodLiteral<
|
|
20807
|
+
password: z.ZodOptional<z.ZodLiteral<string>>;
|
|
20805
20808
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
20806
20809
|
bypassProxy: z.ZodBoolean;
|
|
20807
20810
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20812,9 +20815,9 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
20812
20815
|
registryUrl: string;
|
|
20813
20816
|
proxyUrl: string;
|
|
20814
20817
|
customRegistryUrl?: string | undefined;
|
|
20815
|
-
accessToken?:
|
|
20818
|
+
accessToken?: string | undefined;
|
|
20816
20819
|
username?: string | undefined;
|
|
20817
|
-
password?:
|
|
20820
|
+
password?: string | undefined;
|
|
20818
20821
|
}, {
|
|
20819
20822
|
enabledScopes: string[];
|
|
20820
20823
|
bypassProxy: boolean;
|
|
@@ -20823,9 +20826,9 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
20823
20826
|
registryUrl: string;
|
|
20824
20827
|
proxyUrl: string;
|
|
20825
20828
|
customRegistryUrl?: string | undefined;
|
|
20826
|
-
accessToken?:
|
|
20829
|
+
accessToken?: string | undefined;
|
|
20827
20830
|
username?: string | undefined;
|
|
20828
|
-
password?:
|
|
20831
|
+
password?: string | undefined;
|
|
20829
20832
|
}>>;
|
|
20830
20833
|
}, "strip", z.ZodTypeAny, {
|
|
20831
20834
|
id: string;
|
|
@@ -20987,9 +20990,9 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
20987
20990
|
registryUrl: string;
|
|
20988
20991
|
proxyUrl: string;
|
|
20989
20992
|
customRegistryUrl?: string | undefined;
|
|
20990
|
-
accessToken?:
|
|
20993
|
+
accessToken?: string | undefined;
|
|
20991
20994
|
username?: string | undefined;
|
|
20992
|
-
password?:
|
|
20995
|
+
password?: string | undefined;
|
|
20993
20996
|
} | undefined;
|
|
20994
20997
|
}, {
|
|
20995
20998
|
id: string;
|
|
@@ -21151,9 +21154,9 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
21151
21154
|
registryUrl: string;
|
|
21152
21155
|
proxyUrl: string;
|
|
21153
21156
|
customRegistryUrl?: string | undefined;
|
|
21154
|
-
accessToken?:
|
|
21157
|
+
accessToken?: string | undefined;
|
|
21155
21158
|
username?: string | undefined;
|
|
21156
|
-
password?:
|
|
21159
|
+
password?: string | undefined;
|
|
21157
21160
|
} | undefined;
|
|
21158
21161
|
}>;
|
|
21159
21162
|
type DTOWorkspace = z.infer<typeof DTOWorkspace>;
|
|
@@ -24689,4 +24692,4 @@ declare const BlockDefinitionUtils: {
|
|
|
24689
24692
|
};
|
|
24690
24693
|
};
|
|
24691
24694
|
|
|
24692
|
-
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateVersionInput, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
24695
|
+
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateVersionInput, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
package/dist/index.d.ts
CHANGED
|
@@ -17331,9 +17331,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17331
17331
|
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
17332
17332
|
proxyUrl: z.ZodString;
|
|
17333
17333
|
authType: z.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
|
|
17334
|
-
accessToken: z.ZodOptional<z.ZodLiteral<
|
|
17334
|
+
accessToken: z.ZodOptional<z.ZodLiteral<string>>;
|
|
17335
17335
|
username: z.ZodOptional<z.ZodString>;
|
|
17336
|
-
password: z.ZodOptional<z.ZodLiteral<
|
|
17336
|
+
password: z.ZodOptional<z.ZodLiteral<string>>;
|
|
17337
17337
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
17338
17338
|
bypassProxy: z.ZodBoolean;
|
|
17339
17339
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17344,9 +17344,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17344
17344
|
registryUrl: string;
|
|
17345
17345
|
proxyUrl: string;
|
|
17346
17346
|
customRegistryUrl?: string | undefined;
|
|
17347
|
-
accessToken?:
|
|
17347
|
+
accessToken?: string | undefined;
|
|
17348
17348
|
username?: string | undefined;
|
|
17349
|
-
password?:
|
|
17349
|
+
password?: string | undefined;
|
|
17350
17350
|
}, {
|
|
17351
17351
|
enabledScopes: string[];
|
|
17352
17352
|
bypassProxy: boolean;
|
|
@@ -17355,9 +17355,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17355
17355
|
registryUrl: string;
|
|
17356
17356
|
proxyUrl: string;
|
|
17357
17357
|
customRegistryUrl?: string | undefined;
|
|
17358
|
-
accessToken?:
|
|
17358
|
+
accessToken?: string | undefined;
|
|
17359
17359
|
username?: string | undefined;
|
|
17360
|
-
password?:
|
|
17360
|
+
password?: string | undefined;
|
|
17361
17361
|
}>>;
|
|
17362
17362
|
}, "strip", z.ZodTypeAny, {
|
|
17363
17363
|
id: string;
|
|
@@ -17519,9 +17519,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17519
17519
|
registryUrl: string;
|
|
17520
17520
|
proxyUrl: string;
|
|
17521
17521
|
customRegistryUrl?: string | undefined;
|
|
17522
|
-
accessToken?:
|
|
17522
|
+
accessToken?: string | undefined;
|
|
17523
17523
|
username?: string | undefined;
|
|
17524
|
-
password?:
|
|
17524
|
+
password?: string | undefined;
|
|
17525
17525
|
} | undefined;
|
|
17526
17526
|
}, {
|
|
17527
17527
|
id: string;
|
|
@@ -17683,9 +17683,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17683
17683
|
registryUrl: string;
|
|
17684
17684
|
proxyUrl: string;
|
|
17685
17685
|
customRegistryUrl?: string | undefined;
|
|
17686
|
-
accessToken?:
|
|
17686
|
+
accessToken?: string | undefined;
|
|
17687
17687
|
username?: string | undefined;
|
|
17688
|
-
password?:
|
|
17688
|
+
password?: string | undefined;
|
|
17689
17689
|
} | undefined;
|
|
17690
17690
|
}>;
|
|
17691
17691
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
@@ -17851,9 +17851,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17851
17851
|
registryUrl: string;
|
|
17852
17852
|
proxyUrl: string;
|
|
17853
17853
|
customRegistryUrl?: string | undefined;
|
|
17854
|
-
accessToken?:
|
|
17854
|
+
accessToken?: string | undefined;
|
|
17855
17855
|
username?: string | undefined;
|
|
17856
|
-
password?:
|
|
17856
|
+
password?: string | undefined;
|
|
17857
17857
|
} | undefined;
|
|
17858
17858
|
};
|
|
17859
17859
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -18019,9 +18019,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
18019
18019
|
registryUrl: string;
|
|
18020
18020
|
proxyUrl: string;
|
|
18021
18021
|
customRegistryUrl?: string | undefined;
|
|
18022
|
-
accessToken?:
|
|
18022
|
+
accessToken?: string | undefined;
|
|
18023
18023
|
username?: string | undefined;
|
|
18024
|
-
password?:
|
|
18024
|
+
password?: string | undefined;
|
|
18025
18025
|
} | undefined;
|
|
18026
18026
|
};
|
|
18027
18027
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -18877,9 +18877,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18877
18877
|
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
18878
18878
|
proxyUrl: z.ZodString;
|
|
18879
18879
|
authType: z.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
|
|
18880
|
-
accessToken: z.ZodOptional<z.ZodLiteral<
|
|
18880
|
+
accessToken: z.ZodOptional<z.ZodLiteral<string>>;
|
|
18881
18881
|
username: z.ZodOptional<z.ZodString>;
|
|
18882
|
-
password: z.ZodOptional<z.ZodLiteral<
|
|
18882
|
+
password: z.ZodOptional<z.ZodLiteral<string>>;
|
|
18883
18883
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
18884
18884
|
bypassProxy: z.ZodBoolean;
|
|
18885
18885
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18890,9 +18890,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18890
18890
|
registryUrl: string;
|
|
18891
18891
|
proxyUrl: string;
|
|
18892
18892
|
customRegistryUrl?: string | undefined;
|
|
18893
|
-
accessToken?:
|
|
18893
|
+
accessToken?: string | undefined;
|
|
18894
18894
|
username?: string | undefined;
|
|
18895
|
-
password?:
|
|
18895
|
+
password?: string | undefined;
|
|
18896
18896
|
}, {
|
|
18897
18897
|
enabledScopes: string[];
|
|
18898
18898
|
bypassProxy: boolean;
|
|
@@ -18901,9 +18901,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18901
18901
|
registryUrl: string;
|
|
18902
18902
|
proxyUrl: string;
|
|
18903
18903
|
customRegistryUrl?: string | undefined;
|
|
18904
|
-
accessToken?:
|
|
18904
|
+
accessToken?: string | undefined;
|
|
18905
18905
|
username?: string | undefined;
|
|
18906
|
-
password?:
|
|
18906
|
+
password?: string | undefined;
|
|
18907
18907
|
}>>;
|
|
18908
18908
|
}, "strip", z.ZodTypeAny, {
|
|
18909
18909
|
id: string;
|
|
@@ -19065,9 +19065,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19065
19065
|
registryUrl: string;
|
|
19066
19066
|
proxyUrl: string;
|
|
19067
19067
|
customRegistryUrl?: string | undefined;
|
|
19068
|
-
accessToken?:
|
|
19068
|
+
accessToken?: string | undefined;
|
|
19069
19069
|
username?: string | undefined;
|
|
19070
|
-
password?:
|
|
19070
|
+
password?: string | undefined;
|
|
19071
19071
|
} | undefined;
|
|
19072
19072
|
}, {
|
|
19073
19073
|
id: string;
|
|
@@ -19229,9 +19229,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19229
19229
|
registryUrl: string;
|
|
19230
19230
|
proxyUrl: string;
|
|
19231
19231
|
customRegistryUrl?: string | undefined;
|
|
19232
|
-
accessToken?:
|
|
19232
|
+
accessToken?: string | undefined;
|
|
19233
19233
|
username?: string | undefined;
|
|
19234
|
-
password?:
|
|
19234
|
+
password?: string | undefined;
|
|
19235
19235
|
} | undefined;
|
|
19236
19236
|
}>;
|
|
19237
19237
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
@@ -19397,9 +19397,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19397
19397
|
registryUrl: string;
|
|
19398
19398
|
proxyUrl: string;
|
|
19399
19399
|
customRegistryUrl?: string | undefined;
|
|
19400
|
-
accessToken?:
|
|
19400
|
+
accessToken?: string | undefined;
|
|
19401
19401
|
username?: string | undefined;
|
|
19402
|
-
password?:
|
|
19402
|
+
password?: string | undefined;
|
|
19403
19403
|
} | undefined;
|
|
19404
19404
|
};
|
|
19405
19405
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -19565,9 +19565,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19565
19565
|
registryUrl: string;
|
|
19566
19566
|
proxyUrl: string;
|
|
19567
19567
|
customRegistryUrl?: string | undefined;
|
|
19568
|
-
accessToken?:
|
|
19568
|
+
accessToken?: string | undefined;
|
|
19569
19569
|
username?: string | undefined;
|
|
19570
|
-
password?:
|
|
19570
|
+
password?: string | undefined;
|
|
19571
19571
|
} | undefined;
|
|
19572
19572
|
};
|
|
19573
19573
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -19735,9 +19735,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19735
19735
|
registryUrl: string;
|
|
19736
19736
|
proxyUrl: string;
|
|
19737
19737
|
customRegistryUrl?: string | undefined;
|
|
19738
|
-
accessToken?:
|
|
19738
|
+
accessToken?: string | undefined;
|
|
19739
19739
|
username?: string | undefined;
|
|
19740
|
-
password?:
|
|
19740
|
+
password?: string | undefined;
|
|
19741
19741
|
} | undefined;
|
|
19742
19742
|
};
|
|
19743
19743
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -19905,9 +19905,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19905
19905
|
registryUrl: string;
|
|
19906
19906
|
proxyUrl: string;
|
|
19907
19907
|
customRegistryUrl?: string | undefined;
|
|
19908
|
-
accessToken?:
|
|
19908
|
+
accessToken?: string | undefined;
|
|
19909
19909
|
username?: string | undefined;
|
|
19910
|
-
password?:
|
|
19910
|
+
password?: string | undefined;
|
|
19911
19911
|
} | undefined;
|
|
19912
19912
|
};
|
|
19913
19913
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
@@ -19916,15 +19916,18 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19916
19916
|
}>;
|
|
19917
19917
|
type DTOUserWorkspaceMembershipsResponse = z.infer<typeof DTOUserWorkspaceMembershipsResponse>;
|
|
19918
19918
|
|
|
19919
|
+
declare const DTONpmRegistryConfigConstants: {
|
|
19920
|
+
passwordPlaceholder: string;
|
|
19921
|
+
};
|
|
19919
19922
|
declare const DTONpmRegistryConfig: z.ZodObject<{
|
|
19920
19923
|
registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
19921
19924
|
registryUrl: z.ZodString;
|
|
19922
19925
|
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
19923
19926
|
proxyUrl: z.ZodString;
|
|
19924
19927
|
authType: z.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
|
|
19925
|
-
accessToken: z.ZodOptional<z.ZodLiteral<
|
|
19928
|
+
accessToken: z.ZodOptional<z.ZodLiteral<string>>;
|
|
19926
19929
|
username: z.ZodOptional<z.ZodString>;
|
|
19927
|
-
password: z.ZodOptional<z.ZodLiteral<
|
|
19930
|
+
password: z.ZodOptional<z.ZodLiteral<string>>;
|
|
19928
19931
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
19929
19932
|
bypassProxy: z.ZodBoolean;
|
|
19930
19933
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19935,9 +19938,9 @@ declare const DTONpmRegistryConfig: z.ZodObject<{
|
|
|
19935
19938
|
registryUrl: string;
|
|
19936
19939
|
proxyUrl: string;
|
|
19937
19940
|
customRegistryUrl?: string | undefined;
|
|
19938
|
-
accessToken?:
|
|
19941
|
+
accessToken?: string | undefined;
|
|
19939
19942
|
username?: string | undefined;
|
|
19940
|
-
password?:
|
|
19943
|
+
password?: string | undefined;
|
|
19941
19944
|
}, {
|
|
19942
19945
|
enabledScopes: string[];
|
|
19943
19946
|
bypassProxy: boolean;
|
|
@@ -19946,9 +19949,9 @@ declare const DTONpmRegistryConfig: z.ZodObject<{
|
|
|
19946
19949
|
registryUrl: string;
|
|
19947
19950
|
proxyUrl: string;
|
|
19948
19951
|
customRegistryUrl?: string | undefined;
|
|
19949
|
-
accessToken?:
|
|
19952
|
+
accessToken?: string | undefined;
|
|
19950
19953
|
username?: string | undefined;
|
|
19951
|
-
password?:
|
|
19954
|
+
password?: string | undefined;
|
|
19952
19955
|
}>;
|
|
19953
19956
|
type DTONpmRegistryConfig = z.infer<typeof DTONpmRegistryConfig>;
|
|
19954
19957
|
|
|
@@ -20799,9 +20802,9 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
20799
20802
|
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
20800
20803
|
proxyUrl: z.ZodString;
|
|
20801
20804
|
authType: z.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
|
|
20802
|
-
accessToken: z.ZodOptional<z.ZodLiteral<
|
|
20805
|
+
accessToken: z.ZodOptional<z.ZodLiteral<string>>;
|
|
20803
20806
|
username: z.ZodOptional<z.ZodString>;
|
|
20804
|
-
password: z.ZodOptional<z.ZodLiteral<
|
|
20807
|
+
password: z.ZodOptional<z.ZodLiteral<string>>;
|
|
20805
20808
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
20806
20809
|
bypassProxy: z.ZodBoolean;
|
|
20807
20810
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20812,9 +20815,9 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
20812
20815
|
registryUrl: string;
|
|
20813
20816
|
proxyUrl: string;
|
|
20814
20817
|
customRegistryUrl?: string | undefined;
|
|
20815
|
-
accessToken?:
|
|
20818
|
+
accessToken?: string | undefined;
|
|
20816
20819
|
username?: string | undefined;
|
|
20817
|
-
password?:
|
|
20820
|
+
password?: string | undefined;
|
|
20818
20821
|
}, {
|
|
20819
20822
|
enabledScopes: string[];
|
|
20820
20823
|
bypassProxy: boolean;
|
|
@@ -20823,9 +20826,9 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
20823
20826
|
registryUrl: string;
|
|
20824
20827
|
proxyUrl: string;
|
|
20825
20828
|
customRegistryUrl?: string | undefined;
|
|
20826
|
-
accessToken?:
|
|
20829
|
+
accessToken?: string | undefined;
|
|
20827
20830
|
username?: string | undefined;
|
|
20828
|
-
password?:
|
|
20831
|
+
password?: string | undefined;
|
|
20829
20832
|
}>>;
|
|
20830
20833
|
}, "strip", z.ZodTypeAny, {
|
|
20831
20834
|
id: string;
|
|
@@ -20987,9 +20990,9 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
20987
20990
|
registryUrl: string;
|
|
20988
20991
|
proxyUrl: string;
|
|
20989
20992
|
customRegistryUrl?: string | undefined;
|
|
20990
|
-
accessToken?:
|
|
20993
|
+
accessToken?: string | undefined;
|
|
20991
20994
|
username?: string | undefined;
|
|
20992
|
-
password?:
|
|
20995
|
+
password?: string | undefined;
|
|
20993
20996
|
} | undefined;
|
|
20994
20997
|
}, {
|
|
20995
20998
|
id: string;
|
|
@@ -21151,9 +21154,9 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
21151
21154
|
registryUrl: string;
|
|
21152
21155
|
proxyUrl: string;
|
|
21153
21156
|
customRegistryUrl?: string | undefined;
|
|
21154
|
-
accessToken?:
|
|
21157
|
+
accessToken?: string | undefined;
|
|
21155
21158
|
username?: string | undefined;
|
|
21156
|
-
password?:
|
|
21159
|
+
password?: string | undefined;
|
|
21157
21160
|
} | undefined;
|
|
21158
21161
|
}>;
|
|
21159
21162
|
type DTOWorkspace = z.infer<typeof DTOWorkspace>;
|
|
@@ -24689,4 +24692,4 @@ declare const BlockDefinitionUtils: {
|
|
|
24689
24692
|
};
|
|
24690
24693
|
};
|
|
24691
24694
|
|
|
24692
|
-
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateVersionInput, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
24695
|
+
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateVersionInput, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|