@supernova-studio/model 1.92.0 → 1.92.1
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 +84 -56
- package/dist/index.d.ts +84 -56
- package/dist/index.js +15 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -19629,7 +19629,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
19629
19629
|
workspaceId: z$1.ZodString;
|
|
19630
19630
|
type: z$1.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
19631
19631
|
createdAt: z$1.ZodDate;
|
|
19632
|
-
integrationCredentials: z$1.
|
|
19632
|
+
integrationCredentials: z$1.ZodArray<z$1.ZodObject<{
|
|
19633
19633
|
id: z$1.ZodString;
|
|
19634
19634
|
type: z$1.ZodEnum<["OAuth2", "PAT"]>;
|
|
19635
19635
|
integrationId: z$1.ZodString;
|
|
@@ -19668,7 +19668,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
19668
19668
|
collection?: string | null | undefined;
|
|
19669
19669
|
}>>;
|
|
19670
19670
|
customUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
19671
|
-
state: z$1.ZodEnum<["Active", "Inactive"]>;
|
|
19671
|
+
state: z$1.ZodEnum<["Active", "Pending", "Suspended", "Inactive"]>;
|
|
19672
19672
|
user: z$1.ZodOptional<z$1.ZodObject<{
|
|
19673
19673
|
id: z$1.ZodString;
|
|
19674
19674
|
name: z$1.ZodString;
|
|
@@ -19688,7 +19688,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
19688
19688
|
}, "strip", z$1.ZodTypeAny, {
|
|
19689
19689
|
type: "OAuth2" | "PAT";
|
|
19690
19690
|
id: string;
|
|
19691
|
-
state: "Active" | "Inactive";
|
|
19691
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
19692
19692
|
createdAt: Date;
|
|
19693
19693
|
userId: string;
|
|
19694
19694
|
accessToken: string;
|
|
@@ -19718,7 +19718,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
19718
19718
|
}, {
|
|
19719
19719
|
type: "OAuth2" | "PAT";
|
|
19720
19720
|
id: string;
|
|
19721
|
-
state: "Active" | "Inactive";
|
|
19721
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
19722
19722
|
createdAt: Date;
|
|
19723
19723
|
userId: string;
|
|
19724
19724
|
accessToken: string;
|
|
@@ -19745,16 +19745,16 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
19745
19745
|
tokenName?: string | undefined;
|
|
19746
19746
|
refreshedAt?: Date | undefined;
|
|
19747
19747
|
appInstallationId?: string | undefined;
|
|
19748
|
-
}>, "many"
|
|
19748
|
+
}>, "many">;
|
|
19749
19749
|
}, "strip", z$1.ZodTypeAny, {
|
|
19750
19750
|
type: "Azure" | "Github" | "Gitlab" | "Bitbucket" | "Figma";
|
|
19751
19751
|
id: string;
|
|
19752
19752
|
createdAt: Date;
|
|
19753
19753
|
workspaceId: string;
|
|
19754
|
-
integrationCredentials
|
|
19754
|
+
integrationCredentials: {
|
|
19755
19755
|
type: "OAuth2" | "PAT";
|
|
19756
19756
|
id: string;
|
|
19757
|
-
state: "Active" | "Inactive";
|
|
19757
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
19758
19758
|
createdAt: Date;
|
|
19759
19759
|
userId: string;
|
|
19760
19760
|
accessToken: string;
|
|
@@ -19781,16 +19781,16 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
19781
19781
|
tokenName?: string | undefined;
|
|
19782
19782
|
refreshedAt?: Date | undefined;
|
|
19783
19783
|
appInstallationId?: string | undefined;
|
|
19784
|
-
}[]
|
|
19784
|
+
}[];
|
|
19785
19785
|
}, {
|
|
19786
19786
|
type: "Azure" | "Github" | "Gitlab" | "Bitbucket" | "Figma";
|
|
19787
19787
|
id: string;
|
|
19788
19788
|
createdAt: Date;
|
|
19789
19789
|
workspaceId: string;
|
|
19790
|
-
integrationCredentials
|
|
19790
|
+
integrationCredentials: {
|
|
19791
19791
|
type: "OAuth2" | "PAT";
|
|
19792
19792
|
id: string;
|
|
19793
|
-
state: "Active" | "Inactive";
|
|
19793
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
19794
19794
|
createdAt: Date;
|
|
19795
19795
|
userId: string;
|
|
19796
19796
|
accessToken: string;
|
|
@@ -19817,7 +19817,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
19817
19817
|
tokenName?: string | undefined;
|
|
19818
19818
|
refreshedAt?: Date | undefined;
|
|
19819
19819
|
appInstallationId?: string | undefined;
|
|
19820
|
-
}[]
|
|
19820
|
+
}[];
|
|
19821
19821
|
}>, "many">;
|
|
19822
19822
|
}, "strip", z$1.ZodTypeAny, {
|
|
19823
19823
|
workspace: {
|
|
@@ -20699,10 +20699,10 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
20699
20699
|
id: string;
|
|
20700
20700
|
createdAt: Date;
|
|
20701
20701
|
workspaceId: string;
|
|
20702
|
-
integrationCredentials
|
|
20702
|
+
integrationCredentials: {
|
|
20703
20703
|
type: "OAuth2" | "PAT";
|
|
20704
20704
|
id: string;
|
|
20705
|
-
state: "Active" | "Inactive";
|
|
20705
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
20706
20706
|
createdAt: Date;
|
|
20707
20707
|
userId: string;
|
|
20708
20708
|
accessToken: string;
|
|
@@ -20729,7 +20729,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
20729
20729
|
tokenName?: string | undefined;
|
|
20730
20730
|
refreshedAt?: Date | undefined;
|
|
20731
20731
|
appInstallationId?: string | undefined;
|
|
20732
|
-
}[]
|
|
20732
|
+
}[];
|
|
20733
20733
|
}[];
|
|
20734
20734
|
}, {
|
|
20735
20735
|
workspace: {
|
|
@@ -21611,10 +21611,10 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
21611
21611
|
id: string;
|
|
21612
21612
|
createdAt: Date;
|
|
21613
21613
|
workspaceId: string;
|
|
21614
|
-
integrationCredentials
|
|
21614
|
+
integrationCredentials: {
|
|
21615
21615
|
type: "OAuth2" | "PAT";
|
|
21616
21616
|
id: string;
|
|
21617
|
-
state: "Active" | "Inactive";
|
|
21617
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
21618
21618
|
createdAt: Date;
|
|
21619
21619
|
userId: string;
|
|
21620
21620
|
accessToken: string;
|
|
@@ -21641,7 +21641,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
21641
21641
|
tokenName?: string | undefined;
|
|
21642
21642
|
refreshedAt?: Date | undefined;
|
|
21643
21643
|
appInstallationId?: string | undefined;
|
|
21644
|
-
}[]
|
|
21644
|
+
}[];
|
|
21645
21645
|
}[];
|
|
21646
21646
|
}>, "many">;
|
|
21647
21647
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -22518,10 +22518,10 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
22518
22518
|
id: string;
|
|
22519
22519
|
createdAt: Date;
|
|
22520
22520
|
workspaceId: string;
|
|
22521
|
-
integrationCredentials
|
|
22521
|
+
integrationCredentials: {
|
|
22522
22522
|
type: "OAuth2" | "PAT";
|
|
22523
22523
|
id: string;
|
|
22524
|
-
state: "Active" | "Inactive";
|
|
22524
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
22525
22525
|
createdAt: Date;
|
|
22526
22526
|
userId: string;
|
|
22527
22527
|
accessToken: string;
|
|
@@ -22548,7 +22548,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
22548
22548
|
tokenName?: string | undefined;
|
|
22549
22549
|
refreshedAt?: Date | undefined;
|
|
22550
22550
|
appInstallationId?: string | undefined;
|
|
22551
|
-
}[]
|
|
22551
|
+
}[];
|
|
22552
22552
|
}[];
|
|
22553
22553
|
}[];
|
|
22554
22554
|
user: {
|
|
@@ -23475,10 +23475,10 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
23475
23475
|
id: string;
|
|
23476
23476
|
createdAt: Date;
|
|
23477
23477
|
workspaceId: string;
|
|
23478
|
-
integrationCredentials
|
|
23478
|
+
integrationCredentials: {
|
|
23479
23479
|
type: "OAuth2" | "PAT";
|
|
23480
23480
|
id: string;
|
|
23481
|
-
state: "Active" | "Inactive";
|
|
23481
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
23482
23482
|
createdAt: Date;
|
|
23483
23483
|
userId: string;
|
|
23484
23484
|
accessToken: string;
|
|
@@ -23505,7 +23505,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
23505
23505
|
tokenName?: string | undefined;
|
|
23506
23506
|
refreshedAt?: Date | undefined;
|
|
23507
23507
|
appInstallationId?: string | undefined;
|
|
23508
|
-
}[]
|
|
23508
|
+
}[];
|
|
23509
23509
|
}[];
|
|
23510
23510
|
}[];
|
|
23511
23511
|
user: {
|
|
@@ -30904,7 +30904,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
30904
30904
|
workspaceId: z$1.ZodString;
|
|
30905
30905
|
type: z$1.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
30906
30906
|
createdAt: z$1.ZodDate;
|
|
30907
|
-
integrationCredentials: z$1.
|
|
30907
|
+
integrationCredentials: z$1.ZodArray<z$1.ZodObject<{
|
|
30908
30908
|
id: z$1.ZodString;
|
|
30909
30909
|
type: z$1.ZodEnum<["OAuth2", "PAT"]>;
|
|
30910
30910
|
integrationId: z$1.ZodString;
|
|
@@ -30943,7 +30943,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
30943
30943
|
collection?: string | null | undefined;
|
|
30944
30944
|
}>>;
|
|
30945
30945
|
customUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
30946
|
-
state: z$1.ZodEnum<["Active", "Inactive"]>;
|
|
30946
|
+
state: z$1.ZodEnum<["Active", "Pending", "Suspended", "Inactive"]>;
|
|
30947
30947
|
user: z$1.ZodOptional<z$1.ZodObject<{
|
|
30948
30948
|
id: z$1.ZodString;
|
|
30949
30949
|
name: z$1.ZodString;
|
|
@@ -30963,7 +30963,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
30963
30963
|
}, "strip", z$1.ZodTypeAny, {
|
|
30964
30964
|
type: "OAuth2" | "PAT";
|
|
30965
30965
|
id: string;
|
|
30966
|
-
state: "Active" | "Inactive";
|
|
30966
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
30967
30967
|
createdAt: Date;
|
|
30968
30968
|
userId: string;
|
|
30969
30969
|
accessToken: string;
|
|
@@ -30993,7 +30993,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
30993
30993
|
}, {
|
|
30994
30994
|
type: "OAuth2" | "PAT";
|
|
30995
30995
|
id: string;
|
|
30996
|
-
state: "Active" | "Inactive";
|
|
30996
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
30997
30997
|
createdAt: Date;
|
|
30998
30998
|
userId: string;
|
|
30999
30999
|
accessToken: string;
|
|
@@ -31020,16 +31020,16 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
31020
31020
|
tokenName?: string | undefined;
|
|
31021
31021
|
refreshedAt?: Date | undefined;
|
|
31022
31022
|
appInstallationId?: string | undefined;
|
|
31023
|
-
}>, "many"
|
|
31023
|
+
}>, "many">;
|
|
31024
31024
|
}, "strip", z$1.ZodTypeAny, {
|
|
31025
31025
|
type: "Azure" | "Github" | "Gitlab" | "Bitbucket" | "Figma";
|
|
31026
31026
|
id: string;
|
|
31027
31027
|
createdAt: Date;
|
|
31028
31028
|
workspaceId: string;
|
|
31029
|
-
integrationCredentials
|
|
31029
|
+
integrationCredentials: {
|
|
31030
31030
|
type: "OAuth2" | "PAT";
|
|
31031
31031
|
id: string;
|
|
31032
|
-
state: "Active" | "Inactive";
|
|
31032
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
31033
31033
|
createdAt: Date;
|
|
31034
31034
|
userId: string;
|
|
31035
31035
|
accessToken: string;
|
|
@@ -31056,16 +31056,16 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
31056
31056
|
tokenName?: string | undefined;
|
|
31057
31057
|
refreshedAt?: Date | undefined;
|
|
31058
31058
|
appInstallationId?: string | undefined;
|
|
31059
|
-
}[]
|
|
31059
|
+
}[];
|
|
31060
31060
|
}, {
|
|
31061
31061
|
type: "Azure" | "Github" | "Gitlab" | "Bitbucket" | "Figma";
|
|
31062
31062
|
id: string;
|
|
31063
31063
|
createdAt: Date;
|
|
31064
31064
|
workspaceId: string;
|
|
31065
|
-
integrationCredentials
|
|
31065
|
+
integrationCredentials: {
|
|
31066
31066
|
type: "OAuth2" | "PAT";
|
|
31067
31067
|
id: string;
|
|
31068
|
-
state: "Active" | "Inactive";
|
|
31068
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
31069
31069
|
createdAt: Date;
|
|
31070
31070
|
userId: string;
|
|
31071
31071
|
accessToken: string;
|
|
@@ -31092,7 +31092,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
31092
31092
|
tokenName?: string | undefined;
|
|
31093
31093
|
refreshedAt?: Date | undefined;
|
|
31094
31094
|
appInstallationId?: string | undefined;
|
|
31095
|
-
}[]
|
|
31095
|
+
}[];
|
|
31096
31096
|
}>, "many">;
|
|
31097
31097
|
}, "strip", z$1.ZodTypeAny, {
|
|
31098
31098
|
workspace: {
|
|
@@ -31974,10 +31974,10 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
31974
31974
|
id: string;
|
|
31975
31975
|
createdAt: Date;
|
|
31976
31976
|
workspaceId: string;
|
|
31977
|
-
integrationCredentials
|
|
31977
|
+
integrationCredentials: {
|
|
31978
31978
|
type: "OAuth2" | "PAT";
|
|
31979
31979
|
id: string;
|
|
31980
|
-
state: "Active" | "Inactive";
|
|
31980
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
31981
31981
|
createdAt: Date;
|
|
31982
31982
|
userId: string;
|
|
31983
31983
|
accessToken: string;
|
|
@@ -32004,7 +32004,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
32004
32004
|
tokenName?: string | undefined;
|
|
32005
32005
|
refreshedAt?: Date | undefined;
|
|
32006
32006
|
appInstallationId?: string | undefined;
|
|
32007
|
-
}[]
|
|
32007
|
+
}[];
|
|
32008
32008
|
}[];
|
|
32009
32009
|
}, {
|
|
32010
32010
|
workspace: {
|
|
@@ -32886,10 +32886,10 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
32886
32886
|
id: string;
|
|
32887
32887
|
createdAt: Date;
|
|
32888
32888
|
workspaceId: string;
|
|
32889
|
-
integrationCredentials
|
|
32889
|
+
integrationCredentials: {
|
|
32890
32890
|
type: "OAuth2" | "PAT";
|
|
32891
32891
|
id: string;
|
|
32892
|
-
state: "Active" | "Inactive";
|
|
32892
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
32893
32893
|
createdAt: Date;
|
|
32894
32894
|
userId: string;
|
|
32895
32895
|
accessToken: string;
|
|
@@ -32916,7 +32916,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
32916
32916
|
tokenName?: string | undefined;
|
|
32917
32917
|
refreshedAt?: Date | undefined;
|
|
32918
32918
|
appInstallationId?: string | undefined;
|
|
32919
|
-
}[]
|
|
32919
|
+
}[];
|
|
32920
32920
|
}[];
|
|
32921
32921
|
}>;
|
|
32922
32922
|
type WorkspaceDump = z$1.infer<typeof WorkspaceDump>;
|
|
@@ -164721,6 +164721,34 @@ declare const GitBranch: z$1.ZodObject<{
|
|
|
164721
164721
|
}>;
|
|
164722
164722
|
type GitBranch = z$1.infer<typeof GitBranch>;
|
|
164723
164723
|
|
|
164724
|
+
declare const GitHubAppInstallationState: z$1.ZodEnum<["Active", "Pending", "Suspended", "Deleted"]>;
|
|
164725
|
+
type GitHubAppInstallationState = z$1.infer<typeof GitHubAppInstallationState>;
|
|
164726
|
+
declare const GitHubAppInstallation: z$1.ZodObject<{
|
|
164727
|
+
id: z$1.ZodString;
|
|
164728
|
+
gitHubInstallationId: z$1.ZodOptional<z$1.ZodString>;
|
|
164729
|
+
gitHubRequestId: z$1.ZodOptional<z$1.ZodNumber>;
|
|
164730
|
+
state: z$1.ZodEnum<["Active", "Pending", "Suspended", "Deleted"]>;
|
|
164731
|
+
gitHubAccountId: z$1.ZodNumber;
|
|
164732
|
+
gitHubAccountLogin: z$1.ZodString;
|
|
164733
|
+
gitHubAccountAvatarUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
164734
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
164735
|
+
id: string;
|
|
164736
|
+
state: "Pending" | "Active" | "Suspended" | "Deleted";
|
|
164737
|
+
gitHubAccountId: number;
|
|
164738
|
+
gitHubAccountLogin: string;
|
|
164739
|
+
gitHubInstallationId?: string | undefined;
|
|
164740
|
+
gitHubRequestId?: number | undefined;
|
|
164741
|
+
gitHubAccountAvatarUrl?: string | undefined;
|
|
164742
|
+
}, {
|
|
164743
|
+
id: string;
|
|
164744
|
+
state: "Pending" | "Active" | "Suspended" | "Deleted";
|
|
164745
|
+
gitHubAccountId: number;
|
|
164746
|
+
gitHubAccountLogin: string;
|
|
164747
|
+
gitHubInstallationId?: string | undefined;
|
|
164748
|
+
gitHubRequestId?: number | undefined;
|
|
164749
|
+
gitHubAccountAvatarUrl?: string | undefined;
|
|
164750
|
+
}>;
|
|
164751
|
+
type GitHubAppInstallation = z$1.infer<typeof GitHubAppInstallation>;
|
|
164724
164752
|
declare const IntegrationDesignSystem: z$1.ZodObject<{
|
|
164725
164753
|
designSystemId: z$1.ZodString;
|
|
164726
164754
|
brandId: z$1.ZodString;
|
|
@@ -164743,7 +164771,7 @@ declare const IntegrationDesignSystem: z$1.ZodObject<{
|
|
|
164743
164771
|
type IntegrationDesignSystem = z$1.infer<typeof IntegrationDesignSystem>;
|
|
164744
164772
|
declare const IntegrationCredentialsType: z$1.ZodEnum<["OAuth2", "PAT"]>;
|
|
164745
164773
|
type IntegrationCredentialsType = z$1.infer<typeof IntegrationCredentialsType>;
|
|
164746
|
-
declare const IntegrationCredentialsState: z$1.ZodEnum<["Active", "Inactive"]>;
|
|
164774
|
+
declare const IntegrationCredentialsState: z$1.ZodEnum<["Active", "Pending", "Suspended", "Inactive"]>;
|
|
164747
164775
|
type IntegrationCredentialsState = z$1.infer<typeof IntegrationCredentialsState>;
|
|
164748
164776
|
declare const IntegrationCredentialsProfile: z$1.ZodObject<{
|
|
164749
164777
|
id: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -164810,7 +164838,7 @@ declare const IntegrationCredentials: z$1.ZodObject<{
|
|
|
164810
164838
|
collection?: string | null | undefined;
|
|
164811
164839
|
}>>;
|
|
164812
164840
|
customUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
164813
|
-
state: z$1.ZodEnum<["Active", "Inactive"]>;
|
|
164841
|
+
state: z$1.ZodEnum<["Active", "Pending", "Suspended", "Inactive"]>;
|
|
164814
164842
|
user: z$1.ZodOptional<z$1.ZodObject<{
|
|
164815
164843
|
id: z$1.ZodString;
|
|
164816
164844
|
name: z$1.ZodString;
|
|
@@ -164830,7 +164858,7 @@ declare const IntegrationCredentials: z$1.ZodObject<{
|
|
|
164830
164858
|
}, "strip", z$1.ZodTypeAny, {
|
|
164831
164859
|
type: "OAuth2" | "PAT";
|
|
164832
164860
|
id: string;
|
|
164833
|
-
state: "Active" | "Inactive";
|
|
164861
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
164834
164862
|
createdAt: Date;
|
|
164835
164863
|
userId: string;
|
|
164836
164864
|
accessToken: string;
|
|
@@ -164860,7 +164888,7 @@ declare const IntegrationCredentials: z$1.ZodObject<{
|
|
|
164860
164888
|
}, {
|
|
164861
164889
|
type: "OAuth2" | "PAT";
|
|
164862
164890
|
id: string;
|
|
164863
|
-
state: "Active" | "Inactive";
|
|
164891
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
164864
164892
|
createdAt: Date;
|
|
164865
164893
|
userId: string;
|
|
164866
164894
|
accessToken: string;
|
|
@@ -164901,7 +164929,7 @@ declare const Integration: z$1.ZodObject<{
|
|
|
164901
164929
|
workspaceId: z$1.ZodString;
|
|
164902
164930
|
type: z$1.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
164903
164931
|
createdAt: z$1.ZodDate;
|
|
164904
|
-
integrationCredentials: z$1.
|
|
164932
|
+
integrationCredentials: z$1.ZodArray<z$1.ZodObject<{
|
|
164905
164933
|
id: z$1.ZodString;
|
|
164906
164934
|
type: z$1.ZodEnum<["OAuth2", "PAT"]>;
|
|
164907
164935
|
integrationId: z$1.ZodString;
|
|
@@ -164940,7 +164968,7 @@ declare const Integration: z$1.ZodObject<{
|
|
|
164940
164968
|
collection?: string | null | undefined;
|
|
164941
164969
|
}>>;
|
|
164942
164970
|
customUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
164943
|
-
state: z$1.ZodEnum<["Active", "Inactive"]>;
|
|
164971
|
+
state: z$1.ZodEnum<["Active", "Pending", "Suspended", "Inactive"]>;
|
|
164944
164972
|
user: z$1.ZodOptional<z$1.ZodObject<{
|
|
164945
164973
|
id: z$1.ZodString;
|
|
164946
164974
|
name: z$1.ZodString;
|
|
@@ -164960,7 +164988,7 @@ declare const Integration: z$1.ZodObject<{
|
|
|
164960
164988
|
}, "strip", z$1.ZodTypeAny, {
|
|
164961
164989
|
type: "OAuth2" | "PAT";
|
|
164962
164990
|
id: string;
|
|
164963
|
-
state: "Active" | "Inactive";
|
|
164991
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
164964
164992
|
createdAt: Date;
|
|
164965
164993
|
userId: string;
|
|
164966
164994
|
accessToken: string;
|
|
@@ -164990,7 +165018,7 @@ declare const Integration: z$1.ZodObject<{
|
|
|
164990
165018
|
}, {
|
|
164991
165019
|
type: "OAuth2" | "PAT";
|
|
164992
165020
|
id: string;
|
|
164993
|
-
state: "Active" | "Inactive";
|
|
165021
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
164994
165022
|
createdAt: Date;
|
|
164995
165023
|
userId: string;
|
|
164996
165024
|
accessToken: string;
|
|
@@ -165017,16 +165045,16 @@ declare const Integration: z$1.ZodObject<{
|
|
|
165017
165045
|
tokenName?: string | undefined;
|
|
165018
165046
|
refreshedAt?: Date | undefined;
|
|
165019
165047
|
appInstallationId?: string | undefined;
|
|
165020
|
-
}>, "many"
|
|
165048
|
+
}>, "many">;
|
|
165021
165049
|
}, "strip", z$1.ZodTypeAny, {
|
|
165022
165050
|
type: "Azure" | "Github" | "Gitlab" | "Bitbucket" | "Figma";
|
|
165023
165051
|
id: string;
|
|
165024
165052
|
createdAt: Date;
|
|
165025
165053
|
workspaceId: string;
|
|
165026
|
-
integrationCredentials
|
|
165054
|
+
integrationCredentials: {
|
|
165027
165055
|
type: "OAuth2" | "PAT";
|
|
165028
165056
|
id: string;
|
|
165029
|
-
state: "Active" | "Inactive";
|
|
165057
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
165030
165058
|
createdAt: Date;
|
|
165031
165059
|
userId: string;
|
|
165032
165060
|
accessToken: string;
|
|
@@ -165053,16 +165081,16 @@ declare const Integration: z$1.ZodObject<{
|
|
|
165053
165081
|
tokenName?: string | undefined;
|
|
165054
165082
|
refreshedAt?: Date | undefined;
|
|
165055
165083
|
appInstallationId?: string | undefined;
|
|
165056
|
-
}[]
|
|
165084
|
+
}[];
|
|
165057
165085
|
}, {
|
|
165058
165086
|
type: "Azure" | "Github" | "Gitlab" | "Bitbucket" | "Figma";
|
|
165059
165087
|
id: string;
|
|
165060
165088
|
createdAt: Date;
|
|
165061
165089
|
workspaceId: string;
|
|
165062
|
-
integrationCredentials
|
|
165090
|
+
integrationCredentials: {
|
|
165063
165091
|
type: "OAuth2" | "PAT";
|
|
165064
165092
|
id: string;
|
|
165065
|
-
state: "Active" | "Inactive";
|
|
165093
|
+
state: "Pending" | "Active" | "Suspended" | "Inactive";
|
|
165066
165094
|
createdAt: Date;
|
|
165067
165095
|
userId: string;
|
|
165068
165096
|
accessToken: string;
|
|
@@ -165089,7 +165117,7 @@ declare const Integration: z$1.ZodObject<{
|
|
|
165089
165117
|
tokenName?: string | undefined;
|
|
165090
165118
|
refreshedAt?: Date | undefined;
|
|
165091
165119
|
appInstallationId?: string | undefined;
|
|
165092
|
-
}[]
|
|
165120
|
+
}[];
|
|
165093
165121
|
}>;
|
|
165094
165122
|
type Integration = z$1.infer<typeof Integration>;
|
|
165095
165123
|
type ExtendedIntegration = Omit<Integration, "type"> & {
|
|
@@ -196612,4 +196640,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
196612
196640
|
token: PersonalAccessToken;
|
|
196613
196641
|
};
|
|
196614
196642
|
|
|
196615
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CoreRoomOwner, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProjectArtifactRoom, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaErrorType, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationConfiguration, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, FeaturePublishedState, FeaturePublishedStateVisibility, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, type FigmaExporterMaskDefinition, type FigmaExporterMaskGroupNode, FigmaExporterProcessedStylesSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, File, FileFigmaRenderMode, FileReference, FileSource, FileSourceFigma, FileSourceUpload, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatMessageUserScore, ForgeChatMessageUserScoreType, ForgeChatThread, ForgeDefaultProjectRole, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeParticipant, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeRelation, ForgeRelationType, type ForgeRoomOwner, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NotificationChannel, NotificationSettingOptions, NotificationSettings, NotificationType, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageScreenshotInput, PageScreenshotOutput, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, PipelineExporterQuery, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, type ProcessedStyles, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, SentryTraceHeaders, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceError, SourceErrorRateLimitDetails, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, type TextBlock, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, type TextListBlock, type TextListItem, type TextParagraphBlock, type TextSpan, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserEmailSettings, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDefaultProjectAccessMode, WorkspaceDefaultProjectRole, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocsRenderCodePackageJson, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getAllowedRolesForSeatType, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, hasTruthyProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, isValidRoleSeatPair, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, textBlockSchema, textListBlockSchema, textListItemSchema, textParagraphBlockSchema, textSpanSchema, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
196643
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CoreRoomOwner, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProjectArtifactRoom, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaErrorType, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationConfiguration, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, FeaturePublishedState, FeaturePublishedStateVisibility, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, type FigmaExporterMaskDefinition, type FigmaExporterMaskGroupNode, FigmaExporterProcessedStylesSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, File, FileFigmaRenderMode, FileReference, FileSource, FileSourceFigma, FileSourceUpload, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatMessageUserScore, ForgeChatMessageUserScoreType, ForgeChatThread, ForgeDefaultProjectRole, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeParticipant, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeRelation, ForgeRelationType, type ForgeRoomOwner, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitHubAppInstallation, GitHubAppInstallationState, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NotificationChannel, NotificationSettingOptions, NotificationSettings, NotificationType, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageScreenshotInput, PageScreenshotOutput, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, PipelineExporterQuery, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, type ProcessedStyles, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, SentryTraceHeaders, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceError, SourceErrorRateLimitDetails, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, type TextBlock, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, type TextListBlock, type TextListItem, type TextParagraphBlock, type TextSpan, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserEmailSettings, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDefaultProjectAccessMode, WorkspaceDefaultProjectRole, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocsRenderCodePackageJson, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getAllowedRolesForSeatType, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, hasTruthyProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, isValidRoleSeatPair, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, textBlockSchema, textListBlockSchema, textListItemSchema, textParagraphBlockSchema, textSpanSchema, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|