@supernova-studio/client 1.69.2 → 1.69.4
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 +693 -390
- package/dist/index.d.ts +693 -390
- package/dist/index.js +72 -49
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1703 -1680
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
2
|
-
import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1,
|
|
2
|
+
import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1, PublishedDocPageVisitsEntry, DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageSnapshot, ElementGroupSnapshot, DocumentationPageApproval, OmitStrict, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, SsoProvider, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, ForgeProjectArtifact, ProjectFeature, ForgeSection, ForgeRelation } from '@supernova-studio/model';
|
|
3
3
|
import z$1, { z, ZodSchema, ZodTypeDef } from 'zod';
|
|
4
4
|
import * as Y from 'yjs';
|
|
5
5
|
import { RequestInit } from 'node-fetch';
|
|
@@ -54251,6 +54251,78 @@ declare const DTOForgeProjectIterationTagSet: z$1.ZodObject<{
|
|
|
54251
54251
|
};
|
|
54252
54252
|
}>;
|
|
54253
54253
|
type DTOForgeProjectIterationTagSet = z$1.infer<typeof DTOForgeProjectIterationTagSet>;
|
|
54254
|
+
declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
54255
|
+
type: z$1.ZodLiteral<"ProjectFeatureSandboxUpdated">;
|
|
54256
|
+
data: z$1.ZodObject<{
|
|
54257
|
+
id: z$1.ZodString;
|
|
54258
|
+
url: z$1.ZodString;
|
|
54259
|
+
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
54260
|
+
currentIterationId: z$1.ZodString;
|
|
54261
|
+
featureId: z$1.ZodString;
|
|
54262
|
+
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
54263
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
54264
|
+
stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
|
|
54265
|
+
errorDescription: z$1.ZodString;
|
|
54266
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54267
|
+
errorDescription: string;
|
|
54268
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54269
|
+
}, {
|
|
54270
|
+
errorDescription: string;
|
|
54271
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54272
|
+
}>>;
|
|
54273
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54274
|
+
id: string;
|
|
54275
|
+
url: string;
|
|
54276
|
+
featureId: string;
|
|
54277
|
+
currentIterationId: string;
|
|
54278
|
+
expiresAt?: string | undefined;
|
|
54279
|
+
error?: {
|
|
54280
|
+
errorDescription: string;
|
|
54281
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54282
|
+
} | undefined;
|
|
54283
|
+
parentMessageId?: string | undefined;
|
|
54284
|
+
}, {
|
|
54285
|
+
id: string;
|
|
54286
|
+
url: string;
|
|
54287
|
+
featureId: string;
|
|
54288
|
+
currentIterationId: string;
|
|
54289
|
+
expiresAt?: string | undefined;
|
|
54290
|
+
error?: {
|
|
54291
|
+
errorDescription: string;
|
|
54292
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54293
|
+
} | undefined;
|
|
54294
|
+
parentMessageId?: string | undefined;
|
|
54295
|
+
}>;
|
|
54296
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54297
|
+
type: "ProjectFeatureSandboxUpdated";
|
|
54298
|
+
data: {
|
|
54299
|
+
id: string;
|
|
54300
|
+
url: string;
|
|
54301
|
+
featureId: string;
|
|
54302
|
+
currentIterationId: string;
|
|
54303
|
+
expiresAt?: string | undefined;
|
|
54304
|
+
error?: {
|
|
54305
|
+
errorDescription: string;
|
|
54306
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54307
|
+
} | undefined;
|
|
54308
|
+
parentMessageId?: string | undefined;
|
|
54309
|
+
};
|
|
54310
|
+
}, {
|
|
54311
|
+
type: "ProjectFeatureSandboxUpdated";
|
|
54312
|
+
data: {
|
|
54313
|
+
id: string;
|
|
54314
|
+
url: string;
|
|
54315
|
+
featureId: string;
|
|
54316
|
+
currentIterationId: string;
|
|
54317
|
+
expiresAt?: string | undefined;
|
|
54318
|
+
error?: {
|
|
54319
|
+
errorDescription: string;
|
|
54320
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54321
|
+
} | undefined;
|
|
54322
|
+
parentMessageId?: string | undefined;
|
|
54323
|
+
};
|
|
54324
|
+
}>;
|
|
54325
|
+
type DTOForgeProjectFeatureSandboxUpdated = z$1.infer<typeof DTOForgeProjectFeatureSandboxUpdated>;
|
|
54254
54326
|
declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
54255
54327
|
type: z$1.ZodLiteral<"ProjectIterationUpdated">;
|
|
54256
54328
|
data: z$1.ZodObject<{
|
|
@@ -54822,6 +54894,76 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54822
54894
|
featureId: string;
|
|
54823
54895
|
messageId?: string | undefined;
|
|
54824
54896
|
};
|
|
54897
|
+
}>, z$1.ZodObject<{
|
|
54898
|
+
type: z$1.ZodLiteral<"ProjectFeatureSandboxUpdated">;
|
|
54899
|
+
data: z$1.ZodObject<{
|
|
54900
|
+
id: z$1.ZodString;
|
|
54901
|
+
url: z$1.ZodString;
|
|
54902
|
+
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
54903
|
+
currentIterationId: z$1.ZodString;
|
|
54904
|
+
featureId: z$1.ZodString;
|
|
54905
|
+
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
54906
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
54907
|
+
stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
|
|
54908
|
+
errorDescription: z$1.ZodString;
|
|
54909
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54910
|
+
errorDescription: string;
|
|
54911
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54912
|
+
}, {
|
|
54913
|
+
errorDescription: string;
|
|
54914
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54915
|
+
}>>;
|
|
54916
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54917
|
+
id: string;
|
|
54918
|
+
url: string;
|
|
54919
|
+
featureId: string;
|
|
54920
|
+
currentIterationId: string;
|
|
54921
|
+
expiresAt?: string | undefined;
|
|
54922
|
+
error?: {
|
|
54923
|
+
errorDescription: string;
|
|
54924
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54925
|
+
} | undefined;
|
|
54926
|
+
parentMessageId?: string | undefined;
|
|
54927
|
+
}, {
|
|
54928
|
+
id: string;
|
|
54929
|
+
url: string;
|
|
54930
|
+
featureId: string;
|
|
54931
|
+
currentIterationId: string;
|
|
54932
|
+
expiresAt?: string | undefined;
|
|
54933
|
+
error?: {
|
|
54934
|
+
errorDescription: string;
|
|
54935
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54936
|
+
} | undefined;
|
|
54937
|
+
parentMessageId?: string | undefined;
|
|
54938
|
+
}>;
|
|
54939
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54940
|
+
type: "ProjectFeatureSandboxUpdated";
|
|
54941
|
+
data: {
|
|
54942
|
+
id: string;
|
|
54943
|
+
url: string;
|
|
54944
|
+
featureId: string;
|
|
54945
|
+
currentIterationId: string;
|
|
54946
|
+
expiresAt?: string | undefined;
|
|
54947
|
+
error?: {
|
|
54948
|
+
errorDescription: string;
|
|
54949
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54950
|
+
} | undefined;
|
|
54951
|
+
parentMessageId?: string | undefined;
|
|
54952
|
+
};
|
|
54953
|
+
}, {
|
|
54954
|
+
type: "ProjectFeatureSandboxUpdated";
|
|
54955
|
+
data: {
|
|
54956
|
+
id: string;
|
|
54957
|
+
url: string;
|
|
54958
|
+
featureId: string;
|
|
54959
|
+
currentIterationId: string;
|
|
54960
|
+
expiresAt?: string | undefined;
|
|
54961
|
+
error?: {
|
|
54962
|
+
errorDescription: string;
|
|
54963
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
54964
|
+
} | undefined;
|
|
54965
|
+
parentMessageId?: string | undefined;
|
|
54966
|
+
};
|
|
54825
54967
|
}>, z$1.ZodObject<{
|
|
54826
54968
|
type: z$1.ZodLiteral<"ProjectIterationUpdated">;
|
|
54827
54969
|
data: z$1.ZodObject<{
|
|
@@ -128584,6 +128726,7 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128584
128726
|
url: z$1.ZodString;
|
|
128585
128727
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
128586
128728
|
currentIterationId: z$1.ZodString;
|
|
128729
|
+
featureId: z$1.ZodString;
|
|
128587
128730
|
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
128588
128731
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
128589
128732
|
/** At what stage the error has occured */
|
|
@@ -128600,6 +128743,7 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128600
128743
|
}, "strip", z$1.ZodTypeAny, {
|
|
128601
128744
|
id: string;
|
|
128602
128745
|
url: string;
|
|
128746
|
+
featureId: string;
|
|
128603
128747
|
currentIterationId: string;
|
|
128604
128748
|
expiresAt?: string | undefined;
|
|
128605
128749
|
error?: {
|
|
@@ -128610,6 +128754,7 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128610
128754
|
}, {
|
|
128611
128755
|
id: string;
|
|
128612
128756
|
url: string;
|
|
128757
|
+
featureId: string;
|
|
128613
128758
|
currentIterationId: string;
|
|
128614
128759
|
expiresAt?: string | undefined;
|
|
128615
128760
|
error?: {
|
|
@@ -128619,6 +128764,164 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128619
128764
|
parentMessageId?: string | undefined;
|
|
128620
128765
|
}>;
|
|
128621
128766
|
type DTOFeatureSandbox = z$1.infer<typeof DTOFeatureSandbox>;
|
|
128767
|
+
declare const DTOCreateFeatureSandbox: z$1.ZodObject<{
|
|
128768
|
+
id: z$1.ZodString;
|
|
128769
|
+
url: z$1.ZodString;
|
|
128770
|
+
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
128771
|
+
currentIterationId: z$1.ZodString;
|
|
128772
|
+
featureId: z$1.ZodString;
|
|
128773
|
+
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
128774
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
128775
|
+
/** At what stage the error has occured */
|
|
128776
|
+
stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
|
|
128777
|
+
/** We will use this in "fix with AI" */
|
|
128778
|
+
errorDescription: z$1.ZodString;
|
|
128779
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
128780
|
+
errorDescription: string;
|
|
128781
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128782
|
+
}, {
|
|
128783
|
+
errorDescription: string;
|
|
128784
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128785
|
+
}>>;
|
|
128786
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
128787
|
+
id: string;
|
|
128788
|
+
url: string;
|
|
128789
|
+
featureId: string;
|
|
128790
|
+
currentIterationId: string;
|
|
128791
|
+
expiresAt?: string | undefined;
|
|
128792
|
+
error?: {
|
|
128793
|
+
errorDescription: string;
|
|
128794
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128795
|
+
} | undefined;
|
|
128796
|
+
parentMessageId?: string | undefined;
|
|
128797
|
+
}, {
|
|
128798
|
+
id: string;
|
|
128799
|
+
url: string;
|
|
128800
|
+
featureId: string;
|
|
128801
|
+
currentIterationId: string;
|
|
128802
|
+
expiresAt?: string | undefined;
|
|
128803
|
+
error?: {
|
|
128804
|
+
errorDescription: string;
|
|
128805
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128806
|
+
} | undefined;
|
|
128807
|
+
parentMessageId?: string | undefined;
|
|
128808
|
+
}>;
|
|
128809
|
+
type DTOCreateFeatureSandbox = z$1.infer<typeof DTOCreateFeatureSandbox>;
|
|
128810
|
+
declare const DTOUpdateFeatureSandbox: z$1.ZodObject<{
|
|
128811
|
+
url: z$1.ZodOptional<z$1.ZodString>;
|
|
128812
|
+
currentIterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
128813
|
+
featureId: z$1.ZodOptional<z$1.ZodString>;
|
|
128814
|
+
} & {
|
|
128815
|
+
id: z$1.ZodString;
|
|
128816
|
+
parentMessageId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
128817
|
+
expiresAt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
128818
|
+
error: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
128819
|
+
/** At what stage the error has occured */
|
|
128820
|
+
stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
|
|
128821
|
+
/** We will use this in "fix with AI" */
|
|
128822
|
+
errorDescription: z$1.ZodString;
|
|
128823
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
128824
|
+
errorDescription: string;
|
|
128825
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128826
|
+
}, {
|
|
128827
|
+
errorDescription: string;
|
|
128828
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128829
|
+
}>>>;
|
|
128830
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
128831
|
+
id: string;
|
|
128832
|
+
url?: string | undefined;
|
|
128833
|
+
expiresAt?: string | null | undefined;
|
|
128834
|
+
error?: {
|
|
128835
|
+
errorDescription: string;
|
|
128836
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128837
|
+
} | null | undefined;
|
|
128838
|
+
parentMessageId?: string | null | undefined;
|
|
128839
|
+
featureId?: string | undefined;
|
|
128840
|
+
currentIterationId?: string | undefined;
|
|
128841
|
+
}, {
|
|
128842
|
+
id: string;
|
|
128843
|
+
url?: string | undefined;
|
|
128844
|
+
expiresAt?: string | null | undefined;
|
|
128845
|
+
error?: {
|
|
128846
|
+
errorDescription: string;
|
|
128847
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128848
|
+
} | null | undefined;
|
|
128849
|
+
parentMessageId?: string | null | undefined;
|
|
128850
|
+
featureId?: string | undefined;
|
|
128851
|
+
currentIterationId?: string | undefined;
|
|
128852
|
+
}>;
|
|
128853
|
+
type DTOUpdateFeatureSandbox = z$1.infer<typeof DTOUpdateFeatureSandbox>;
|
|
128854
|
+
declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
128855
|
+
sandboxes: z$1.ZodArray<z$1.ZodObject<{
|
|
128856
|
+
id: z$1.ZodString;
|
|
128857
|
+
url: z$1.ZodString;
|
|
128858
|
+
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
128859
|
+
currentIterationId: z$1.ZodString;
|
|
128860
|
+
featureId: z$1.ZodString;
|
|
128861
|
+
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
128862
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
128863
|
+
/** At what stage the error has occured */
|
|
128864
|
+
stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
|
|
128865
|
+
/** We will use this in "fix with AI" */
|
|
128866
|
+
errorDescription: z$1.ZodString;
|
|
128867
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
128868
|
+
errorDescription: string;
|
|
128869
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128870
|
+
}, {
|
|
128871
|
+
errorDescription: string;
|
|
128872
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128873
|
+
}>>;
|
|
128874
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
128875
|
+
id: string;
|
|
128876
|
+
url: string;
|
|
128877
|
+
featureId: string;
|
|
128878
|
+
currentIterationId: string;
|
|
128879
|
+
expiresAt?: string | undefined;
|
|
128880
|
+
error?: {
|
|
128881
|
+
errorDescription: string;
|
|
128882
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128883
|
+
} | undefined;
|
|
128884
|
+
parentMessageId?: string | undefined;
|
|
128885
|
+
}, {
|
|
128886
|
+
id: string;
|
|
128887
|
+
url: string;
|
|
128888
|
+
featureId: string;
|
|
128889
|
+
currentIterationId: string;
|
|
128890
|
+
expiresAt?: string | undefined;
|
|
128891
|
+
error?: {
|
|
128892
|
+
errorDescription: string;
|
|
128893
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128894
|
+
} | undefined;
|
|
128895
|
+
parentMessageId?: string | undefined;
|
|
128896
|
+
}>, "many">;
|
|
128897
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
128898
|
+
sandboxes: {
|
|
128899
|
+
id: string;
|
|
128900
|
+
url: string;
|
|
128901
|
+
featureId: string;
|
|
128902
|
+
currentIterationId: string;
|
|
128903
|
+
expiresAt?: string | undefined;
|
|
128904
|
+
error?: {
|
|
128905
|
+
errorDescription: string;
|
|
128906
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128907
|
+
} | undefined;
|
|
128908
|
+
parentMessageId?: string | undefined;
|
|
128909
|
+
}[];
|
|
128910
|
+
}, {
|
|
128911
|
+
sandboxes: {
|
|
128912
|
+
id: string;
|
|
128913
|
+
url: string;
|
|
128914
|
+
featureId: string;
|
|
128915
|
+
currentIterationId: string;
|
|
128916
|
+
expiresAt?: string | undefined;
|
|
128917
|
+
error?: {
|
|
128918
|
+
errorDescription: string;
|
|
128919
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
128920
|
+
} | undefined;
|
|
128921
|
+
parentMessageId?: string | undefined;
|
|
128922
|
+
}[];
|
|
128923
|
+
}>;
|
|
128924
|
+
type DTOFeatureSandboxListResponse = z$1.infer<typeof DTOFeatureSandboxListResponse>;
|
|
128622
128925
|
declare const DTOFeatureMessageAttachments: z$1.ZodObject<{
|
|
128623
128926
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
128624
128927
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -351245,51 +351548,6 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
351245
351548
|
aiCustomInstruction?: string | undefined;
|
|
351246
351549
|
}>;
|
|
351247
351550
|
type DTOWorkspace = z.infer<typeof DTOWorkspace>;
|
|
351248
|
-
declare function validateSsoPayload(ssoPayload: Partial<SsoProvider> | undefined): {
|
|
351249
|
-
valid: boolean;
|
|
351250
|
-
keys: string[];
|
|
351251
|
-
};
|
|
351252
|
-
declare const DTONpmRegistryUpdateInput: z.ZodObject<{
|
|
351253
|
-
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
351254
|
-
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
351255
|
-
bypassProxy: z.ZodOptional<z.ZodBoolean>;
|
|
351256
|
-
npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
|
|
351257
|
-
npmProxyVersion: z.ZodOptional<z.ZodNumber>;
|
|
351258
|
-
registryType: z.ZodString;
|
|
351259
|
-
authType: z.ZodString;
|
|
351260
|
-
authHeaderName: z.ZodString;
|
|
351261
|
-
authHeaderValue: z.ZodString;
|
|
351262
|
-
accessToken: z.ZodString;
|
|
351263
|
-
username: z.ZodString;
|
|
351264
|
-
password: z.ZodString;
|
|
351265
|
-
}, "strip", z.ZodTypeAny, {
|
|
351266
|
-
accessToken: string;
|
|
351267
|
-
username: string;
|
|
351268
|
-
registryType: string;
|
|
351269
|
-
authType: string;
|
|
351270
|
-
password: string;
|
|
351271
|
-
enabledScopes: string[];
|
|
351272
|
-
authHeaderName: string;
|
|
351273
|
-
authHeaderValue: string;
|
|
351274
|
-
customRegistryUrl?: string | undefined;
|
|
351275
|
-
bypassProxy?: boolean | undefined;
|
|
351276
|
-
npmProxyVersion?: number | undefined;
|
|
351277
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
351278
|
-
}, {
|
|
351279
|
-
accessToken: string;
|
|
351280
|
-
username: string;
|
|
351281
|
-
registryType: string;
|
|
351282
|
-
authType: string;
|
|
351283
|
-
password: string;
|
|
351284
|
-
enabledScopes: string[];
|
|
351285
|
-
authHeaderName: string;
|
|
351286
|
-
authHeaderValue: string;
|
|
351287
|
-
customRegistryUrl?: string | undefined;
|
|
351288
|
-
bypassProxy?: boolean | undefined;
|
|
351289
|
-
npmProxyVersion?: number | undefined;
|
|
351290
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
351291
|
-
}>;
|
|
351292
|
-
type DTONpmRegistryUpdateInput = z.infer<typeof DTONpmRegistryUpdateInput>;
|
|
351293
351551
|
declare const DTOWorkspaceCreateInput: z.ZodObject<{
|
|
351294
351552
|
name: z.ZodString;
|
|
351295
351553
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -351298,349 +351556,6 @@ declare const DTOWorkspaceCreateInput: z.ZodObject<{
|
|
|
351298
351556
|
name: string;
|
|
351299
351557
|
}>;
|
|
351300
351558
|
type DTOWorkspaceCreateInput = z.infer<typeof DTOWorkspaceCreateInput>;
|
|
351301
|
-
declare const DTOWorkspaceUpdateInput: z.ZodObject<{
|
|
351302
|
-
ipWhitelist: z.ZodOptional<z.ZodObject<{
|
|
351303
|
-
isEnabledForCloud: z.ZodOptional<z.ZodBoolean>;
|
|
351304
|
-
isEnabledForDocs: z.ZodOptional<z.ZodBoolean>;
|
|
351305
|
-
entries: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
351306
|
-
isEnabled: z.ZodBoolean;
|
|
351307
|
-
name: z.ZodString;
|
|
351308
|
-
range: z.ZodEffects<z.ZodString, string, string>;
|
|
351309
|
-
}, "strip", z.ZodTypeAny, {
|
|
351310
|
-
name: string;
|
|
351311
|
-
isEnabled: boolean;
|
|
351312
|
-
range: string;
|
|
351313
|
-
}, {
|
|
351314
|
-
name: string;
|
|
351315
|
-
isEnabled: boolean;
|
|
351316
|
-
range: string;
|
|
351317
|
-
}>, "many">>;
|
|
351318
|
-
}, "strip", z.ZodTypeAny, {
|
|
351319
|
-
entries?: {
|
|
351320
|
-
name: string;
|
|
351321
|
-
isEnabled: boolean;
|
|
351322
|
-
range: string;
|
|
351323
|
-
}[] | undefined;
|
|
351324
|
-
isEnabledForCloud?: boolean | undefined;
|
|
351325
|
-
isEnabledForDocs?: boolean | undefined;
|
|
351326
|
-
}, {
|
|
351327
|
-
entries?: {
|
|
351328
|
-
name: string;
|
|
351329
|
-
isEnabled: boolean;
|
|
351330
|
-
range: string;
|
|
351331
|
-
}[] | undefined;
|
|
351332
|
-
isEnabledForCloud?: boolean | undefined;
|
|
351333
|
-
isEnabledForDocs?: boolean | undefined;
|
|
351334
|
-
}>>;
|
|
351335
|
-
sso: z.ZodOptional<z.ZodObject<{
|
|
351336
|
-
providerId: z.ZodOptional<z.ZodString>;
|
|
351337
|
-
defaultAutoInviteValue: z.ZodOptional<z.ZodBoolean>;
|
|
351338
|
-
autoInviteDomains: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
351339
|
-
skipDocsSupernovaLogin: z.ZodOptional<z.ZodBoolean>;
|
|
351340
|
-
areInvitesDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
351341
|
-
isTestMode: z.ZodOptional<z.ZodBoolean>;
|
|
351342
|
-
emailDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
351343
|
-
metadataXml: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
351344
|
-
}, "strip", z.ZodTypeAny, {
|
|
351345
|
-
providerId?: string | undefined;
|
|
351346
|
-
metadataXml?: string | null | undefined;
|
|
351347
|
-
emailDomains?: string[] | undefined;
|
|
351348
|
-
defaultAutoInviteValue?: boolean | undefined;
|
|
351349
|
-
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
351350
|
-
skipDocsSupernovaLogin?: boolean | undefined;
|
|
351351
|
-
areInvitesDisabled?: boolean | undefined;
|
|
351352
|
-
isTestMode?: boolean | undefined;
|
|
351353
|
-
}, {
|
|
351354
|
-
providerId?: string | undefined;
|
|
351355
|
-
metadataXml?: string | null | undefined;
|
|
351356
|
-
emailDomains?: string[] | undefined;
|
|
351357
|
-
defaultAutoInviteValue?: boolean | undefined;
|
|
351358
|
-
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
351359
|
-
skipDocsSupernovaLogin?: boolean | undefined;
|
|
351360
|
-
areInvitesDisabled?: boolean | undefined;
|
|
351361
|
-
isTestMode?: boolean | undefined;
|
|
351362
|
-
}>>;
|
|
351363
|
-
npmRegistrySettings: z.ZodOptional<z.ZodObject<{
|
|
351364
|
-
enabledScopes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
351365
|
-
customRegistryUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
351366
|
-
bypassProxy: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
351367
|
-
npmProxyRegistryConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
351368
|
-
npmProxyVersion: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
351369
|
-
registryType: z.ZodOptional<z.ZodString>;
|
|
351370
|
-
authType: z.ZodOptional<z.ZodString>;
|
|
351371
|
-
authHeaderName: z.ZodOptional<z.ZodString>;
|
|
351372
|
-
authHeaderValue: z.ZodOptional<z.ZodString>;
|
|
351373
|
-
accessToken: z.ZodOptional<z.ZodString>;
|
|
351374
|
-
username: z.ZodOptional<z.ZodString>;
|
|
351375
|
-
password: z.ZodOptional<z.ZodString>;
|
|
351376
|
-
}, "strip", z.ZodTypeAny, {
|
|
351377
|
-
accessToken?: string | undefined;
|
|
351378
|
-
username?: string | undefined;
|
|
351379
|
-
registryType?: string | undefined;
|
|
351380
|
-
customRegistryUrl?: string | undefined;
|
|
351381
|
-
authType?: string | undefined;
|
|
351382
|
-
password?: string | undefined;
|
|
351383
|
-
enabledScopes?: string[] | undefined;
|
|
351384
|
-
bypassProxy?: boolean | undefined;
|
|
351385
|
-
npmProxyVersion?: number | undefined;
|
|
351386
|
-
authHeaderName?: string | undefined;
|
|
351387
|
-
authHeaderValue?: string | undefined;
|
|
351388
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
351389
|
-
}, {
|
|
351390
|
-
accessToken?: string | undefined;
|
|
351391
|
-
username?: string | undefined;
|
|
351392
|
-
registryType?: string | undefined;
|
|
351393
|
-
customRegistryUrl?: string | undefined;
|
|
351394
|
-
authType?: string | undefined;
|
|
351395
|
-
password?: string | undefined;
|
|
351396
|
-
enabledScopes?: string[] | undefined;
|
|
351397
|
-
bypassProxy?: boolean | undefined;
|
|
351398
|
-
npmProxyVersion?: number | undefined;
|
|
351399
|
-
authHeaderName?: string | undefined;
|
|
351400
|
-
authHeaderValue?: string | undefined;
|
|
351401
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
351402
|
-
}>>;
|
|
351403
|
-
profile: z.ZodOptional<z.ZodObject<{
|
|
351404
|
-
name: z.ZodOptional<z.ZodString>;
|
|
351405
|
-
handle: z.ZodOptional<z.ZodString>;
|
|
351406
|
-
color: z.ZodOptional<z.ZodString>;
|
|
351407
|
-
avatar: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
|
|
351408
|
-
billingDetails: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
351409
|
-
address?: {
|
|
351410
|
-
state?: string | undefined;
|
|
351411
|
-
street1?: string | undefined;
|
|
351412
|
-
street2?: string | undefined;
|
|
351413
|
-
city?: string | undefined;
|
|
351414
|
-
postal?: string | undefined;
|
|
351415
|
-
country?: string | undefined;
|
|
351416
|
-
} | undefined;
|
|
351417
|
-
email?: string | undefined;
|
|
351418
|
-
notes?: string | undefined;
|
|
351419
|
-
companyName?: string | undefined;
|
|
351420
|
-
companyId?: string | undefined;
|
|
351421
|
-
vat?: string | undefined;
|
|
351422
|
-
poNumber?: string | undefined;
|
|
351423
|
-
}, z.ZodTypeDef, {
|
|
351424
|
-
address?: {
|
|
351425
|
-
state?: string | null | undefined;
|
|
351426
|
-
street1?: string | null | undefined;
|
|
351427
|
-
street2?: string | null | undefined;
|
|
351428
|
-
city?: string | null | undefined;
|
|
351429
|
-
postal?: string | null | undefined;
|
|
351430
|
-
country?: string | null | undefined;
|
|
351431
|
-
} | null | undefined;
|
|
351432
|
-
email?: string | null | undefined;
|
|
351433
|
-
notes?: string | null | undefined;
|
|
351434
|
-
companyName?: string | null | undefined;
|
|
351435
|
-
companyId?: string | null | undefined;
|
|
351436
|
-
vat?: string | null | undefined;
|
|
351437
|
-
poNumber?: string | null | undefined;
|
|
351438
|
-
}>>>, {
|
|
351439
|
-
address?: {
|
|
351440
|
-
state?: string | undefined;
|
|
351441
|
-
street1?: string | undefined;
|
|
351442
|
-
street2?: string | undefined;
|
|
351443
|
-
city?: string | undefined;
|
|
351444
|
-
postal?: string | undefined;
|
|
351445
|
-
country?: string | undefined;
|
|
351446
|
-
} | undefined;
|
|
351447
|
-
email?: string | undefined;
|
|
351448
|
-
notes?: string | undefined;
|
|
351449
|
-
companyName?: string | undefined;
|
|
351450
|
-
companyId?: string | undefined;
|
|
351451
|
-
vat?: string | undefined;
|
|
351452
|
-
poNumber?: string | undefined;
|
|
351453
|
-
} | undefined, {
|
|
351454
|
-
address?: {
|
|
351455
|
-
state?: string | null | undefined;
|
|
351456
|
-
street1?: string | null | undefined;
|
|
351457
|
-
street2?: string | null | undefined;
|
|
351458
|
-
city?: string | null | undefined;
|
|
351459
|
-
postal?: string | null | undefined;
|
|
351460
|
-
country?: string | null | undefined;
|
|
351461
|
-
} | null | undefined;
|
|
351462
|
-
email?: string | null | undefined;
|
|
351463
|
-
notes?: string | null | undefined;
|
|
351464
|
-
companyName?: string | null | undefined;
|
|
351465
|
-
companyId?: string | null | undefined;
|
|
351466
|
-
vat?: string | null | undefined;
|
|
351467
|
-
poNumber?: string | null | undefined;
|
|
351468
|
-
} | null | undefined>>;
|
|
351469
|
-
}, "strip", z.ZodTypeAny, {
|
|
351470
|
-
name?: string | undefined;
|
|
351471
|
-
avatar?: string | undefined;
|
|
351472
|
-
handle?: string | undefined;
|
|
351473
|
-
color?: string | undefined;
|
|
351474
|
-
billingDetails?: {
|
|
351475
|
-
address?: {
|
|
351476
|
-
state?: string | undefined;
|
|
351477
|
-
street1?: string | undefined;
|
|
351478
|
-
street2?: string | undefined;
|
|
351479
|
-
city?: string | undefined;
|
|
351480
|
-
postal?: string | undefined;
|
|
351481
|
-
country?: string | undefined;
|
|
351482
|
-
} | undefined;
|
|
351483
|
-
email?: string | undefined;
|
|
351484
|
-
notes?: string | undefined;
|
|
351485
|
-
companyName?: string | undefined;
|
|
351486
|
-
companyId?: string | undefined;
|
|
351487
|
-
vat?: string | undefined;
|
|
351488
|
-
poNumber?: string | undefined;
|
|
351489
|
-
} | undefined;
|
|
351490
|
-
}, {
|
|
351491
|
-
name?: string | undefined;
|
|
351492
|
-
avatar?: string | null | undefined;
|
|
351493
|
-
handle?: string | undefined;
|
|
351494
|
-
color?: string | undefined;
|
|
351495
|
-
billingDetails?: {
|
|
351496
|
-
address?: {
|
|
351497
|
-
state?: string | null | undefined;
|
|
351498
|
-
street1?: string | null | undefined;
|
|
351499
|
-
street2?: string | null | undefined;
|
|
351500
|
-
city?: string | null | undefined;
|
|
351501
|
-
postal?: string | null | undefined;
|
|
351502
|
-
country?: string | null | undefined;
|
|
351503
|
-
} | null | undefined;
|
|
351504
|
-
email?: string | null | undefined;
|
|
351505
|
-
notes?: string | null | undefined;
|
|
351506
|
-
companyName?: string | null | undefined;
|
|
351507
|
-
companyId?: string | null | undefined;
|
|
351508
|
-
vat?: string | null | undefined;
|
|
351509
|
-
poNumber?: string | null | undefined;
|
|
351510
|
-
} | null | undefined;
|
|
351511
|
-
}>>;
|
|
351512
|
-
aiFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
351513
|
-
projectsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
351514
|
-
defaultProjectAccessMode: z.ZodOptional<z.ZodEnum<["InviteOnly", "Open", "Unlisted"]>>;
|
|
351515
|
-
defaultProjectRole: z.ZodOptional<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
351516
|
-
aiAskFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
351517
|
-
aiCustomInstruction: z.ZodOptional<z.ZodString>;
|
|
351518
|
-
}, "strip", z.ZodTypeAny, {
|
|
351519
|
-
profile?: {
|
|
351520
|
-
name?: string | undefined;
|
|
351521
|
-
avatar?: string | undefined;
|
|
351522
|
-
handle?: string | undefined;
|
|
351523
|
-
color?: string | undefined;
|
|
351524
|
-
billingDetails?: {
|
|
351525
|
-
address?: {
|
|
351526
|
-
state?: string | undefined;
|
|
351527
|
-
street1?: string | undefined;
|
|
351528
|
-
street2?: string | undefined;
|
|
351529
|
-
city?: string | undefined;
|
|
351530
|
-
postal?: string | undefined;
|
|
351531
|
-
country?: string | undefined;
|
|
351532
|
-
} | undefined;
|
|
351533
|
-
email?: string | undefined;
|
|
351534
|
-
notes?: string | undefined;
|
|
351535
|
-
companyName?: string | undefined;
|
|
351536
|
-
companyId?: string | undefined;
|
|
351537
|
-
vat?: string | undefined;
|
|
351538
|
-
poNumber?: string | undefined;
|
|
351539
|
-
} | undefined;
|
|
351540
|
-
} | undefined;
|
|
351541
|
-
npmRegistrySettings?: {
|
|
351542
|
-
accessToken?: string | undefined;
|
|
351543
|
-
username?: string | undefined;
|
|
351544
|
-
registryType?: string | undefined;
|
|
351545
|
-
customRegistryUrl?: string | undefined;
|
|
351546
|
-
authType?: string | undefined;
|
|
351547
|
-
password?: string | undefined;
|
|
351548
|
-
enabledScopes?: string[] | undefined;
|
|
351549
|
-
bypassProxy?: boolean | undefined;
|
|
351550
|
-
npmProxyVersion?: number | undefined;
|
|
351551
|
-
authHeaderName?: string | undefined;
|
|
351552
|
-
authHeaderValue?: string | undefined;
|
|
351553
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
351554
|
-
} | undefined;
|
|
351555
|
-
aiFeaturesEnabled?: boolean | undefined;
|
|
351556
|
-
projectsEnabled?: boolean | undefined;
|
|
351557
|
-
defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
351558
|
-
defaultProjectRole?: "Viewer" | "Builder" | undefined;
|
|
351559
|
-
aiAskFeaturesEnabled?: boolean | undefined;
|
|
351560
|
-
aiCustomInstruction?: string | undefined;
|
|
351561
|
-
ipWhitelist?: {
|
|
351562
|
-
entries?: {
|
|
351563
|
-
name: string;
|
|
351564
|
-
isEnabled: boolean;
|
|
351565
|
-
range: string;
|
|
351566
|
-
}[] | undefined;
|
|
351567
|
-
isEnabledForCloud?: boolean | undefined;
|
|
351568
|
-
isEnabledForDocs?: boolean | undefined;
|
|
351569
|
-
} | undefined;
|
|
351570
|
-
sso?: {
|
|
351571
|
-
providerId?: string | undefined;
|
|
351572
|
-
metadataXml?: string | null | undefined;
|
|
351573
|
-
emailDomains?: string[] | undefined;
|
|
351574
|
-
defaultAutoInviteValue?: boolean | undefined;
|
|
351575
|
-
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
351576
|
-
skipDocsSupernovaLogin?: boolean | undefined;
|
|
351577
|
-
areInvitesDisabled?: boolean | undefined;
|
|
351578
|
-
isTestMode?: boolean | undefined;
|
|
351579
|
-
} | undefined;
|
|
351580
|
-
}, {
|
|
351581
|
-
profile?: {
|
|
351582
|
-
name?: string | undefined;
|
|
351583
|
-
avatar?: string | null | undefined;
|
|
351584
|
-
handle?: string | undefined;
|
|
351585
|
-
color?: string | undefined;
|
|
351586
|
-
billingDetails?: {
|
|
351587
|
-
address?: {
|
|
351588
|
-
state?: string | null | undefined;
|
|
351589
|
-
street1?: string | null | undefined;
|
|
351590
|
-
street2?: string | null | undefined;
|
|
351591
|
-
city?: string | null | undefined;
|
|
351592
|
-
postal?: string | null | undefined;
|
|
351593
|
-
country?: string | null | undefined;
|
|
351594
|
-
} | null | undefined;
|
|
351595
|
-
email?: string | null | undefined;
|
|
351596
|
-
notes?: string | null | undefined;
|
|
351597
|
-
companyName?: string | null | undefined;
|
|
351598
|
-
companyId?: string | null | undefined;
|
|
351599
|
-
vat?: string | null | undefined;
|
|
351600
|
-
poNumber?: string | null | undefined;
|
|
351601
|
-
} | null | undefined;
|
|
351602
|
-
} | undefined;
|
|
351603
|
-
npmRegistrySettings?: {
|
|
351604
|
-
accessToken?: string | undefined;
|
|
351605
|
-
username?: string | undefined;
|
|
351606
|
-
registryType?: string | undefined;
|
|
351607
|
-
customRegistryUrl?: string | undefined;
|
|
351608
|
-
authType?: string | undefined;
|
|
351609
|
-
password?: string | undefined;
|
|
351610
|
-
enabledScopes?: string[] | undefined;
|
|
351611
|
-
bypassProxy?: boolean | undefined;
|
|
351612
|
-
npmProxyVersion?: number | undefined;
|
|
351613
|
-
authHeaderName?: string | undefined;
|
|
351614
|
-
authHeaderValue?: string | undefined;
|
|
351615
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
351616
|
-
} | undefined;
|
|
351617
|
-
aiFeaturesEnabled?: boolean | undefined;
|
|
351618
|
-
projectsEnabled?: boolean | undefined;
|
|
351619
|
-
defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
351620
|
-
defaultProjectRole?: "Viewer" | "Builder" | undefined;
|
|
351621
|
-
aiAskFeaturesEnabled?: boolean | undefined;
|
|
351622
|
-
aiCustomInstruction?: string | undefined;
|
|
351623
|
-
ipWhitelist?: {
|
|
351624
|
-
entries?: {
|
|
351625
|
-
name: string;
|
|
351626
|
-
isEnabled: boolean;
|
|
351627
|
-
range: string;
|
|
351628
|
-
}[] | undefined;
|
|
351629
|
-
isEnabledForCloud?: boolean | undefined;
|
|
351630
|
-
isEnabledForDocs?: boolean | undefined;
|
|
351631
|
-
} | undefined;
|
|
351632
|
-
sso?: {
|
|
351633
|
-
providerId?: string | undefined;
|
|
351634
|
-
metadataXml?: string | null | undefined;
|
|
351635
|
-
emailDomains?: string[] | undefined;
|
|
351636
|
-
defaultAutoInviteValue?: boolean | undefined;
|
|
351637
|
-
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
351638
|
-
skipDocsSupernovaLogin?: boolean | undefined;
|
|
351639
|
-
areInvitesDisabled?: boolean | undefined;
|
|
351640
|
-
isTestMode?: boolean | undefined;
|
|
351641
|
-
} | undefined;
|
|
351642
|
-
}>;
|
|
351643
|
-
type DTOWorkspaceUpdateInput = z.infer<typeof DTOWorkspaceUpdateInput>;
|
|
351644
351559
|
declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
351645
351560
|
workspace: z.ZodObject<{
|
|
351646
351561
|
id: z.ZodString;
|
|
@@ -356466,6 +356381,394 @@ declare const DTOUserNotificationSettingsResponse: z.ZodObject<{
|
|
|
356466
356381
|
}>;
|
|
356467
356382
|
type DTOUserNotificationSettingsResponse = z.infer<typeof DTOUserNotificationSettingsResponse>;
|
|
356468
356383
|
|
|
356384
|
+
declare function validateSsoPayload(ssoPayload: Partial<SsoProvider> | undefined): {
|
|
356385
|
+
valid: boolean;
|
|
356386
|
+
keys: string[];
|
|
356387
|
+
};
|
|
356388
|
+
declare const NpmRegistryInput: z.ZodObject<{
|
|
356389
|
+
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
356390
|
+
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
356391
|
+
bypassProxy: z.ZodOptional<z.ZodBoolean>;
|
|
356392
|
+
npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
|
|
356393
|
+
npmProxyVersion: z.ZodOptional<z.ZodNumber>;
|
|
356394
|
+
registryType: z.ZodString;
|
|
356395
|
+
authType: z.ZodString;
|
|
356396
|
+
authHeaderName: z.ZodString;
|
|
356397
|
+
authHeaderValue: z.ZodString;
|
|
356398
|
+
accessToken: z.ZodString;
|
|
356399
|
+
username: z.ZodString;
|
|
356400
|
+
password: z.ZodString;
|
|
356401
|
+
}, "strip", z.ZodTypeAny, {
|
|
356402
|
+
accessToken: string;
|
|
356403
|
+
username: string;
|
|
356404
|
+
registryType: string;
|
|
356405
|
+
authType: string;
|
|
356406
|
+
password: string;
|
|
356407
|
+
enabledScopes: string[];
|
|
356408
|
+
authHeaderName: string;
|
|
356409
|
+
authHeaderValue: string;
|
|
356410
|
+
customRegistryUrl?: string | undefined;
|
|
356411
|
+
bypassProxy?: boolean | undefined;
|
|
356412
|
+
npmProxyVersion?: number | undefined;
|
|
356413
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
356414
|
+
}, {
|
|
356415
|
+
accessToken: string;
|
|
356416
|
+
username: string;
|
|
356417
|
+
registryType: string;
|
|
356418
|
+
authType: string;
|
|
356419
|
+
password: string;
|
|
356420
|
+
enabledScopes: string[];
|
|
356421
|
+
authHeaderName: string;
|
|
356422
|
+
authHeaderValue: string;
|
|
356423
|
+
customRegistryUrl?: string | undefined;
|
|
356424
|
+
bypassProxy?: boolean | undefined;
|
|
356425
|
+
npmProxyVersion?: number | undefined;
|
|
356426
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
356427
|
+
}>;
|
|
356428
|
+
declare const WorkspaceConfigurationPayload: z.ZodObject<{
|
|
356429
|
+
ipWhitelist: z.ZodOptional<z.ZodObject<{
|
|
356430
|
+
isEnabledForCloud: z.ZodOptional<z.ZodBoolean>;
|
|
356431
|
+
isEnabledForDocs: z.ZodOptional<z.ZodBoolean>;
|
|
356432
|
+
entries: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
356433
|
+
isEnabled: z.ZodBoolean;
|
|
356434
|
+
name: z.ZodString;
|
|
356435
|
+
range: z.ZodEffects<z.ZodString, string, string>;
|
|
356436
|
+
}, "strip", z.ZodTypeAny, {
|
|
356437
|
+
name: string;
|
|
356438
|
+
isEnabled: boolean;
|
|
356439
|
+
range: string;
|
|
356440
|
+
}, {
|
|
356441
|
+
name: string;
|
|
356442
|
+
isEnabled: boolean;
|
|
356443
|
+
range: string;
|
|
356444
|
+
}>, "many">>;
|
|
356445
|
+
}, "strip", z.ZodTypeAny, {
|
|
356446
|
+
entries?: {
|
|
356447
|
+
name: string;
|
|
356448
|
+
isEnabled: boolean;
|
|
356449
|
+
range: string;
|
|
356450
|
+
}[] | undefined;
|
|
356451
|
+
isEnabledForCloud?: boolean | undefined;
|
|
356452
|
+
isEnabledForDocs?: boolean | undefined;
|
|
356453
|
+
}, {
|
|
356454
|
+
entries?: {
|
|
356455
|
+
name: string;
|
|
356456
|
+
isEnabled: boolean;
|
|
356457
|
+
range: string;
|
|
356458
|
+
}[] | undefined;
|
|
356459
|
+
isEnabledForCloud?: boolean | undefined;
|
|
356460
|
+
isEnabledForDocs?: boolean | undefined;
|
|
356461
|
+
}>>;
|
|
356462
|
+
sso: z.ZodOptional<z.ZodObject<{
|
|
356463
|
+
providerId: z.ZodOptional<z.ZodString>;
|
|
356464
|
+
defaultAutoInviteValue: z.ZodOptional<z.ZodBoolean>;
|
|
356465
|
+
autoInviteDomains: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
356466
|
+
skipDocsSupernovaLogin: z.ZodOptional<z.ZodBoolean>;
|
|
356467
|
+
areInvitesDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
356468
|
+
isTestMode: z.ZodOptional<z.ZodBoolean>;
|
|
356469
|
+
emailDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
356470
|
+
metadataXml: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
356471
|
+
}, "strip", z.ZodTypeAny, {
|
|
356472
|
+
providerId?: string | undefined;
|
|
356473
|
+
metadataXml?: string | null | undefined;
|
|
356474
|
+
emailDomains?: string[] | undefined;
|
|
356475
|
+
defaultAutoInviteValue?: boolean | undefined;
|
|
356476
|
+
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
356477
|
+
skipDocsSupernovaLogin?: boolean | undefined;
|
|
356478
|
+
areInvitesDisabled?: boolean | undefined;
|
|
356479
|
+
isTestMode?: boolean | undefined;
|
|
356480
|
+
}, {
|
|
356481
|
+
providerId?: string | undefined;
|
|
356482
|
+
metadataXml?: string | null | undefined;
|
|
356483
|
+
emailDomains?: string[] | undefined;
|
|
356484
|
+
defaultAutoInviteValue?: boolean | undefined;
|
|
356485
|
+
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
356486
|
+
skipDocsSupernovaLogin?: boolean | undefined;
|
|
356487
|
+
areInvitesDisabled?: boolean | undefined;
|
|
356488
|
+
isTestMode?: boolean | undefined;
|
|
356489
|
+
}>>;
|
|
356490
|
+
npmRegistrySettings: z.ZodOptional<z.ZodObject<{
|
|
356491
|
+
enabledScopes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
356492
|
+
customRegistryUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
356493
|
+
bypassProxy: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
356494
|
+
npmProxyRegistryConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
356495
|
+
npmProxyVersion: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
356496
|
+
registryType: z.ZodOptional<z.ZodString>;
|
|
356497
|
+
authType: z.ZodOptional<z.ZodString>;
|
|
356498
|
+
authHeaderName: z.ZodOptional<z.ZodString>;
|
|
356499
|
+
authHeaderValue: z.ZodOptional<z.ZodString>;
|
|
356500
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
|
356501
|
+
username: z.ZodOptional<z.ZodString>;
|
|
356502
|
+
password: z.ZodOptional<z.ZodString>;
|
|
356503
|
+
}, "strip", z.ZodTypeAny, {
|
|
356504
|
+
accessToken?: string | undefined;
|
|
356505
|
+
username?: string | undefined;
|
|
356506
|
+
registryType?: string | undefined;
|
|
356507
|
+
customRegistryUrl?: string | undefined;
|
|
356508
|
+
authType?: string | undefined;
|
|
356509
|
+
password?: string | undefined;
|
|
356510
|
+
enabledScopes?: string[] | undefined;
|
|
356511
|
+
bypassProxy?: boolean | undefined;
|
|
356512
|
+
npmProxyVersion?: number | undefined;
|
|
356513
|
+
authHeaderName?: string | undefined;
|
|
356514
|
+
authHeaderValue?: string | undefined;
|
|
356515
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
356516
|
+
}, {
|
|
356517
|
+
accessToken?: string | undefined;
|
|
356518
|
+
username?: string | undefined;
|
|
356519
|
+
registryType?: string | undefined;
|
|
356520
|
+
customRegistryUrl?: string | undefined;
|
|
356521
|
+
authType?: string | undefined;
|
|
356522
|
+
password?: string | undefined;
|
|
356523
|
+
enabledScopes?: string[] | undefined;
|
|
356524
|
+
bypassProxy?: boolean | undefined;
|
|
356525
|
+
npmProxyVersion?: number | undefined;
|
|
356526
|
+
authHeaderName?: string | undefined;
|
|
356527
|
+
authHeaderValue?: string | undefined;
|
|
356528
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
356529
|
+
}>>;
|
|
356530
|
+
profile: z.ZodOptional<z.ZodObject<{
|
|
356531
|
+
name: z.ZodOptional<z.ZodString>;
|
|
356532
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
356533
|
+
color: z.ZodOptional<z.ZodString>;
|
|
356534
|
+
avatar: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
|
|
356535
|
+
billingDetails: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
356536
|
+
address?: {
|
|
356537
|
+
state?: string | undefined;
|
|
356538
|
+
street1?: string | undefined;
|
|
356539
|
+
street2?: string | undefined;
|
|
356540
|
+
city?: string | undefined;
|
|
356541
|
+
postal?: string | undefined;
|
|
356542
|
+
country?: string | undefined;
|
|
356543
|
+
} | undefined;
|
|
356544
|
+
email?: string | undefined;
|
|
356545
|
+
notes?: string | undefined;
|
|
356546
|
+
companyName?: string | undefined;
|
|
356547
|
+
companyId?: string | undefined;
|
|
356548
|
+
vat?: string | undefined;
|
|
356549
|
+
poNumber?: string | undefined;
|
|
356550
|
+
}, z.ZodTypeDef, {
|
|
356551
|
+
address?: {
|
|
356552
|
+
state?: string | null | undefined;
|
|
356553
|
+
street1?: string | null | undefined;
|
|
356554
|
+
street2?: string | null | undefined;
|
|
356555
|
+
city?: string | null | undefined;
|
|
356556
|
+
postal?: string | null | undefined;
|
|
356557
|
+
country?: string | null | undefined;
|
|
356558
|
+
} | null | undefined;
|
|
356559
|
+
email?: string | null | undefined;
|
|
356560
|
+
notes?: string | null | undefined;
|
|
356561
|
+
companyName?: string | null | undefined;
|
|
356562
|
+
companyId?: string | null | undefined;
|
|
356563
|
+
vat?: string | null | undefined;
|
|
356564
|
+
poNumber?: string | null | undefined;
|
|
356565
|
+
}>>>, {
|
|
356566
|
+
address?: {
|
|
356567
|
+
state?: string | undefined;
|
|
356568
|
+
street1?: string | undefined;
|
|
356569
|
+
street2?: string | undefined;
|
|
356570
|
+
city?: string | undefined;
|
|
356571
|
+
postal?: string | undefined;
|
|
356572
|
+
country?: string | undefined;
|
|
356573
|
+
} | undefined;
|
|
356574
|
+
email?: string | undefined;
|
|
356575
|
+
notes?: string | undefined;
|
|
356576
|
+
companyName?: string | undefined;
|
|
356577
|
+
companyId?: string | undefined;
|
|
356578
|
+
vat?: string | undefined;
|
|
356579
|
+
poNumber?: string | undefined;
|
|
356580
|
+
} | undefined, {
|
|
356581
|
+
address?: {
|
|
356582
|
+
state?: string | null | undefined;
|
|
356583
|
+
street1?: string | null | undefined;
|
|
356584
|
+
street2?: string | null | undefined;
|
|
356585
|
+
city?: string | null | undefined;
|
|
356586
|
+
postal?: string | null | undefined;
|
|
356587
|
+
country?: string | null | undefined;
|
|
356588
|
+
} | null | undefined;
|
|
356589
|
+
email?: string | null | undefined;
|
|
356590
|
+
notes?: string | null | undefined;
|
|
356591
|
+
companyName?: string | null | undefined;
|
|
356592
|
+
companyId?: string | null | undefined;
|
|
356593
|
+
vat?: string | null | undefined;
|
|
356594
|
+
poNumber?: string | null | undefined;
|
|
356595
|
+
} | null | undefined>>;
|
|
356596
|
+
}, "strip", z.ZodTypeAny, {
|
|
356597
|
+
name?: string | undefined;
|
|
356598
|
+
avatar?: string | undefined;
|
|
356599
|
+
handle?: string | undefined;
|
|
356600
|
+
color?: string | undefined;
|
|
356601
|
+
billingDetails?: {
|
|
356602
|
+
address?: {
|
|
356603
|
+
state?: string | undefined;
|
|
356604
|
+
street1?: string | undefined;
|
|
356605
|
+
street2?: string | undefined;
|
|
356606
|
+
city?: string | undefined;
|
|
356607
|
+
postal?: string | undefined;
|
|
356608
|
+
country?: string | undefined;
|
|
356609
|
+
} | undefined;
|
|
356610
|
+
email?: string | undefined;
|
|
356611
|
+
notes?: string | undefined;
|
|
356612
|
+
companyName?: string | undefined;
|
|
356613
|
+
companyId?: string | undefined;
|
|
356614
|
+
vat?: string | undefined;
|
|
356615
|
+
poNumber?: string | undefined;
|
|
356616
|
+
} | undefined;
|
|
356617
|
+
}, {
|
|
356618
|
+
name?: string | undefined;
|
|
356619
|
+
avatar?: string | null | undefined;
|
|
356620
|
+
handle?: string | undefined;
|
|
356621
|
+
color?: string | undefined;
|
|
356622
|
+
billingDetails?: {
|
|
356623
|
+
address?: {
|
|
356624
|
+
state?: string | null | undefined;
|
|
356625
|
+
street1?: string | null | undefined;
|
|
356626
|
+
street2?: string | null | undefined;
|
|
356627
|
+
city?: string | null | undefined;
|
|
356628
|
+
postal?: string | null | undefined;
|
|
356629
|
+
country?: string | null | undefined;
|
|
356630
|
+
} | null | undefined;
|
|
356631
|
+
email?: string | null | undefined;
|
|
356632
|
+
notes?: string | null | undefined;
|
|
356633
|
+
companyName?: string | null | undefined;
|
|
356634
|
+
companyId?: string | null | undefined;
|
|
356635
|
+
vat?: string | null | undefined;
|
|
356636
|
+
poNumber?: string | null | undefined;
|
|
356637
|
+
} | null | undefined;
|
|
356638
|
+
}>>;
|
|
356639
|
+
aiFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
356640
|
+
projectsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
356641
|
+
defaultProjectAccessMode: z.ZodOptional<z.ZodEnum<["InviteOnly", "Open", "Unlisted"]>>;
|
|
356642
|
+
defaultProjectRole: z.ZodOptional<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
356643
|
+
aiAskFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
356644
|
+
aiCustomInstruction: z.ZodOptional<z.ZodString>;
|
|
356645
|
+
}, "strip", z.ZodTypeAny, {
|
|
356646
|
+
profile?: {
|
|
356647
|
+
name?: string | undefined;
|
|
356648
|
+
avatar?: string | undefined;
|
|
356649
|
+
handle?: string | undefined;
|
|
356650
|
+
color?: string | undefined;
|
|
356651
|
+
billingDetails?: {
|
|
356652
|
+
address?: {
|
|
356653
|
+
state?: string | undefined;
|
|
356654
|
+
street1?: string | undefined;
|
|
356655
|
+
street2?: string | undefined;
|
|
356656
|
+
city?: string | undefined;
|
|
356657
|
+
postal?: string | undefined;
|
|
356658
|
+
country?: string | undefined;
|
|
356659
|
+
} | undefined;
|
|
356660
|
+
email?: string | undefined;
|
|
356661
|
+
notes?: string | undefined;
|
|
356662
|
+
companyName?: string | undefined;
|
|
356663
|
+
companyId?: string | undefined;
|
|
356664
|
+
vat?: string | undefined;
|
|
356665
|
+
poNumber?: string | undefined;
|
|
356666
|
+
} | undefined;
|
|
356667
|
+
} | undefined;
|
|
356668
|
+
npmRegistrySettings?: {
|
|
356669
|
+
accessToken?: string | undefined;
|
|
356670
|
+
username?: string | undefined;
|
|
356671
|
+
registryType?: string | undefined;
|
|
356672
|
+
customRegistryUrl?: string | undefined;
|
|
356673
|
+
authType?: string | undefined;
|
|
356674
|
+
password?: string | undefined;
|
|
356675
|
+
enabledScopes?: string[] | undefined;
|
|
356676
|
+
bypassProxy?: boolean | undefined;
|
|
356677
|
+
npmProxyVersion?: number | undefined;
|
|
356678
|
+
authHeaderName?: string | undefined;
|
|
356679
|
+
authHeaderValue?: string | undefined;
|
|
356680
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
356681
|
+
} | undefined;
|
|
356682
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
356683
|
+
projectsEnabled?: boolean | undefined;
|
|
356684
|
+
defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
356685
|
+
defaultProjectRole?: "Viewer" | "Builder" | undefined;
|
|
356686
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
356687
|
+
aiCustomInstruction?: string | undefined;
|
|
356688
|
+
ipWhitelist?: {
|
|
356689
|
+
entries?: {
|
|
356690
|
+
name: string;
|
|
356691
|
+
isEnabled: boolean;
|
|
356692
|
+
range: string;
|
|
356693
|
+
}[] | undefined;
|
|
356694
|
+
isEnabledForCloud?: boolean | undefined;
|
|
356695
|
+
isEnabledForDocs?: boolean | undefined;
|
|
356696
|
+
} | undefined;
|
|
356697
|
+
sso?: {
|
|
356698
|
+
providerId?: string | undefined;
|
|
356699
|
+
metadataXml?: string | null | undefined;
|
|
356700
|
+
emailDomains?: string[] | undefined;
|
|
356701
|
+
defaultAutoInviteValue?: boolean | undefined;
|
|
356702
|
+
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
356703
|
+
skipDocsSupernovaLogin?: boolean | undefined;
|
|
356704
|
+
areInvitesDisabled?: boolean | undefined;
|
|
356705
|
+
isTestMode?: boolean | undefined;
|
|
356706
|
+
} | undefined;
|
|
356707
|
+
}, {
|
|
356708
|
+
profile?: {
|
|
356709
|
+
name?: string | undefined;
|
|
356710
|
+
avatar?: string | null | undefined;
|
|
356711
|
+
handle?: string | undefined;
|
|
356712
|
+
color?: string | undefined;
|
|
356713
|
+
billingDetails?: {
|
|
356714
|
+
address?: {
|
|
356715
|
+
state?: string | null | undefined;
|
|
356716
|
+
street1?: string | null | undefined;
|
|
356717
|
+
street2?: string | null | undefined;
|
|
356718
|
+
city?: string | null | undefined;
|
|
356719
|
+
postal?: string | null | undefined;
|
|
356720
|
+
country?: string | null | undefined;
|
|
356721
|
+
} | null | undefined;
|
|
356722
|
+
email?: string | null | undefined;
|
|
356723
|
+
notes?: string | null | undefined;
|
|
356724
|
+
companyName?: string | null | undefined;
|
|
356725
|
+
companyId?: string | null | undefined;
|
|
356726
|
+
vat?: string | null | undefined;
|
|
356727
|
+
poNumber?: string | null | undefined;
|
|
356728
|
+
} | null | undefined;
|
|
356729
|
+
} | undefined;
|
|
356730
|
+
npmRegistrySettings?: {
|
|
356731
|
+
accessToken?: string | undefined;
|
|
356732
|
+
username?: string | undefined;
|
|
356733
|
+
registryType?: string | undefined;
|
|
356734
|
+
customRegistryUrl?: string | undefined;
|
|
356735
|
+
authType?: string | undefined;
|
|
356736
|
+
password?: string | undefined;
|
|
356737
|
+
enabledScopes?: string[] | undefined;
|
|
356738
|
+
bypassProxy?: boolean | undefined;
|
|
356739
|
+
npmProxyVersion?: number | undefined;
|
|
356740
|
+
authHeaderName?: string | undefined;
|
|
356741
|
+
authHeaderValue?: string | undefined;
|
|
356742
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
356743
|
+
} | undefined;
|
|
356744
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
356745
|
+
projectsEnabled?: boolean | undefined;
|
|
356746
|
+
defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
356747
|
+
defaultProjectRole?: "Viewer" | "Builder" | undefined;
|
|
356748
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
356749
|
+
aiCustomInstruction?: string | undefined;
|
|
356750
|
+
ipWhitelist?: {
|
|
356751
|
+
entries?: {
|
|
356752
|
+
name: string;
|
|
356753
|
+
isEnabled: boolean;
|
|
356754
|
+
range: string;
|
|
356755
|
+
}[] | undefined;
|
|
356756
|
+
isEnabledForCloud?: boolean | undefined;
|
|
356757
|
+
isEnabledForDocs?: boolean | undefined;
|
|
356758
|
+
} | undefined;
|
|
356759
|
+
sso?: {
|
|
356760
|
+
providerId?: string | undefined;
|
|
356761
|
+
metadataXml?: string | null | undefined;
|
|
356762
|
+
emailDomains?: string[] | undefined;
|
|
356763
|
+
defaultAutoInviteValue?: boolean | undefined;
|
|
356764
|
+
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
356765
|
+
skipDocsSupernovaLogin?: boolean | undefined;
|
|
356766
|
+
areInvitesDisabled?: boolean | undefined;
|
|
356767
|
+
isTestMode?: boolean | undefined;
|
|
356768
|
+
} | undefined;
|
|
356769
|
+
}>;
|
|
356770
|
+
type WorkspaceConfigurationPayload = z.infer<typeof WorkspaceConfigurationPayload>;
|
|
356771
|
+
|
|
356469
356772
|
declare const DTOWorkspaceIntegrationOauthInput: z.ZodObject<{
|
|
356470
356773
|
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
356471
356774
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -377196,4 +377499,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
377196
377499
|
reason: ValidationErrorReason | undefined;
|
|
377197
377500
|
};
|
|
377198
377501
|
|
|
377199
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTONpmRegistryUpdateInput, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DTOWorkspaceUpdateInput, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|
|
377502
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|