@supernova-studio/client 1.60.3 → 1.61.0
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 +580 -44
- package/dist/index.d.ts +580 -44
- package/dist/index.js +14 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8366,6 +8366,7 @@ declare const Variable: z.ZodObject<{
|
|
|
8366
8366
|
name: z.ZodString;
|
|
8367
8367
|
key: z.ZodString;
|
|
8368
8368
|
variableCollectionId: z.ZodString;
|
|
8369
|
+
variableCollectionKey: z.ZodOptional<z.ZodString>;
|
|
8369
8370
|
resolvedType: z.ZodEnum<["BOOLEAN", "FLOAT", "STRING", "COLOR"]>;
|
|
8370
8371
|
valuesByMode: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>, z.ZodString]>, z.ZodObject<{
|
|
8371
8372
|
r: z.ZodNumber;
|
|
@@ -8514,6 +8515,7 @@ declare const Variable: z.ZodObject<{
|
|
|
8514
8515
|
}>;
|
|
8515
8516
|
hiddenFromPublishing: boolean;
|
|
8516
8517
|
scopes: string[];
|
|
8518
|
+
variableCollectionKey?: string | undefined;
|
|
8517
8519
|
codeSyntax?: Record<string, any> | undefined;
|
|
8518
8520
|
}, {
|
|
8519
8521
|
id: string;
|
|
@@ -8552,6 +8554,7 @@ declare const Variable: z.ZodObject<{
|
|
|
8552
8554
|
}>;
|
|
8553
8555
|
hiddenFromPublishing: boolean;
|
|
8554
8556
|
scopes: string[];
|
|
8557
|
+
variableCollectionKey?: string | undefined;
|
|
8555
8558
|
codeSyntax?: Record<string, any> | undefined;
|
|
8556
8559
|
}>;
|
|
8557
8560
|
type Variable = z.infer<typeof Variable>;
|
|
@@ -8742,30 +8745,145 @@ type VariableValue = z.infer<typeof VariableValue>;
|
|
|
8742
8745
|
declare const VariableMode: z.ZodObject<{
|
|
8743
8746
|
modeId: z.ZodString;
|
|
8744
8747
|
name: z.ZodString;
|
|
8748
|
+
parentModeId: z.ZodOptional<z.ZodString>;
|
|
8745
8749
|
}, "strip", z.ZodTypeAny, {
|
|
8746
8750
|
name: string;
|
|
8747
8751
|
modeId: string;
|
|
8752
|
+
parentModeId?: string | undefined;
|
|
8748
8753
|
}, {
|
|
8749
8754
|
name: string;
|
|
8750
8755
|
modeId: string;
|
|
8756
|
+
parentModeId?: string | undefined;
|
|
8751
8757
|
}>;
|
|
8752
8758
|
type VariableMode = z.infer<typeof VariableMode>;
|
|
8753
8759
|
declare const Collection: z.ZodObject<{
|
|
8754
8760
|
id: z.ZodString;
|
|
8755
8761
|
name: z.ZodString;
|
|
8762
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8756
8763
|
modes: z.ZodArray<z.ZodObject<{
|
|
8757
8764
|
modeId: z.ZodString;
|
|
8758
8765
|
name: z.ZodString;
|
|
8766
|
+
parentModeId: z.ZodOptional<z.ZodString>;
|
|
8759
8767
|
}, "strip", z.ZodTypeAny, {
|
|
8760
8768
|
name: string;
|
|
8761
8769
|
modeId: string;
|
|
8770
|
+
parentModeId?: string | undefined;
|
|
8762
8771
|
}, {
|
|
8763
8772
|
name: string;
|
|
8764
8773
|
modeId: string;
|
|
8774
|
+
parentModeId?: string | undefined;
|
|
8765
8775
|
}>, "many">;
|
|
8766
8776
|
defaultModeId: z.ZodString;
|
|
8767
8777
|
remote: z.ZodBoolean;
|
|
8768
8778
|
hiddenFromPublishing: z.ZodBoolean;
|
|
8779
|
+
isExtension: z.ZodOptional<z.ZodBoolean>;
|
|
8780
|
+
parentVariableCollectionId: z.ZodOptional<z.ZodString>;
|
|
8781
|
+
parentVariableCollectionKey: z.ZodOptional<z.ZodString>;
|
|
8782
|
+
variableOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>, z.ZodString]>, z.ZodObject<{
|
|
8783
|
+
r: z.ZodNumber;
|
|
8784
|
+
g: z.ZodNumber;
|
|
8785
|
+
b: z.ZodNumber;
|
|
8786
|
+
} & {
|
|
8787
|
+
a: z.ZodNumber;
|
|
8788
|
+
}, "strip", z.ZodTypeAny, {
|
|
8789
|
+
r: number;
|
|
8790
|
+
g: number;
|
|
8791
|
+
b: number;
|
|
8792
|
+
a: number;
|
|
8793
|
+
}, {
|
|
8794
|
+
r: number;
|
|
8795
|
+
g: number;
|
|
8796
|
+
b: number;
|
|
8797
|
+
a: number;
|
|
8798
|
+
}>]>, z.ZodObject<{
|
|
8799
|
+
r: z.ZodNumber;
|
|
8800
|
+
g: z.ZodNumber;
|
|
8801
|
+
b: z.ZodNumber;
|
|
8802
|
+
}, "strip", z.ZodTypeAny, {
|
|
8803
|
+
r: number;
|
|
8804
|
+
g: number;
|
|
8805
|
+
b: number;
|
|
8806
|
+
}, {
|
|
8807
|
+
r: number;
|
|
8808
|
+
g: number;
|
|
8809
|
+
b: number;
|
|
8810
|
+
}>]>, z.ZodObject<{
|
|
8811
|
+
type: z.ZodLiteral<"VARIABLE_ALIAS">;
|
|
8812
|
+
id: z.ZodString;
|
|
8813
|
+
resolvedValue: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>, z.ZodString]>, z.ZodObject<{
|
|
8814
|
+
r: z.ZodNumber;
|
|
8815
|
+
g: z.ZodNumber;
|
|
8816
|
+
b: z.ZodNumber;
|
|
8817
|
+
} & {
|
|
8818
|
+
a: z.ZodNumber;
|
|
8819
|
+
}, "strip", z.ZodTypeAny, {
|
|
8820
|
+
r: number;
|
|
8821
|
+
g: number;
|
|
8822
|
+
b: number;
|
|
8823
|
+
a: number;
|
|
8824
|
+
}, {
|
|
8825
|
+
r: number;
|
|
8826
|
+
g: number;
|
|
8827
|
+
b: number;
|
|
8828
|
+
a: number;
|
|
8829
|
+
}>]>, z.ZodObject<{
|
|
8830
|
+
r: z.ZodNumber;
|
|
8831
|
+
g: z.ZodNumber;
|
|
8832
|
+
b: z.ZodNumber;
|
|
8833
|
+
}, "strip", z.ZodTypeAny, {
|
|
8834
|
+
r: number;
|
|
8835
|
+
g: number;
|
|
8836
|
+
b: number;
|
|
8837
|
+
}, {
|
|
8838
|
+
r: number;
|
|
8839
|
+
g: number;
|
|
8840
|
+
b: number;
|
|
8841
|
+
}>]>>;
|
|
8842
|
+
referenceOrigin: z.ZodUnion<[z.ZodOptional<z.ZodObject<{
|
|
8843
|
+
name: z.ZodString;
|
|
8844
|
+
remote: z.ZodBoolean;
|
|
8845
|
+
}, "strip", z.ZodTypeAny, {
|
|
8846
|
+
name: string;
|
|
8847
|
+
remote: boolean;
|
|
8848
|
+
}, {
|
|
8849
|
+
name: string;
|
|
8850
|
+
remote: boolean;
|
|
8851
|
+
}>>, z.ZodNull]>;
|
|
8852
|
+
}, "strip", z.ZodTypeAny, {
|
|
8853
|
+
id: string;
|
|
8854
|
+
type: "VARIABLE_ALIAS";
|
|
8855
|
+
resolvedValue?: string | number | boolean | {
|
|
8856
|
+
r: number;
|
|
8857
|
+
g: number;
|
|
8858
|
+
b: number;
|
|
8859
|
+
} | {
|
|
8860
|
+
r: number;
|
|
8861
|
+
g: number;
|
|
8862
|
+
b: number;
|
|
8863
|
+
a: number;
|
|
8864
|
+
} | undefined;
|
|
8865
|
+
referenceOrigin?: {
|
|
8866
|
+
name: string;
|
|
8867
|
+
remote: boolean;
|
|
8868
|
+
} | null | undefined;
|
|
8869
|
+
}, {
|
|
8870
|
+
id: string;
|
|
8871
|
+
type: "VARIABLE_ALIAS";
|
|
8872
|
+
resolvedValue?: string | number | boolean | {
|
|
8873
|
+
r: number;
|
|
8874
|
+
g: number;
|
|
8875
|
+
b: number;
|
|
8876
|
+
} | {
|
|
8877
|
+
r: number;
|
|
8878
|
+
g: number;
|
|
8879
|
+
b: number;
|
|
8880
|
+
a: number;
|
|
8881
|
+
} | undefined;
|
|
8882
|
+
referenceOrigin?: {
|
|
8883
|
+
name: string;
|
|
8884
|
+
remote: boolean;
|
|
8885
|
+
} | null | undefined;
|
|
8886
|
+
}>]>>>>;
|
|
8769
8887
|
}, "strip", z.ZodTypeAny, {
|
|
8770
8888
|
id: string;
|
|
8771
8889
|
name: string;
|
|
@@ -8774,8 +8892,40 @@ declare const Collection: z.ZodObject<{
|
|
|
8774
8892
|
modes: {
|
|
8775
8893
|
name: string;
|
|
8776
8894
|
modeId: string;
|
|
8895
|
+
parentModeId?: string | undefined;
|
|
8777
8896
|
}[];
|
|
8778
8897
|
defaultModeId: string;
|
|
8898
|
+
key?: string | undefined;
|
|
8899
|
+
isExtension?: boolean | undefined;
|
|
8900
|
+
parentVariableCollectionId?: string | undefined;
|
|
8901
|
+
parentVariableCollectionKey?: string | undefined;
|
|
8902
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
8903
|
+
r: number;
|
|
8904
|
+
g: number;
|
|
8905
|
+
b: number;
|
|
8906
|
+
} | {
|
|
8907
|
+
r: number;
|
|
8908
|
+
g: number;
|
|
8909
|
+
b: number;
|
|
8910
|
+
a: number;
|
|
8911
|
+
} | {
|
|
8912
|
+
id: string;
|
|
8913
|
+
type: "VARIABLE_ALIAS";
|
|
8914
|
+
resolvedValue?: string | number | boolean | {
|
|
8915
|
+
r: number;
|
|
8916
|
+
g: number;
|
|
8917
|
+
b: number;
|
|
8918
|
+
} | {
|
|
8919
|
+
r: number;
|
|
8920
|
+
g: number;
|
|
8921
|
+
b: number;
|
|
8922
|
+
a: number;
|
|
8923
|
+
} | undefined;
|
|
8924
|
+
referenceOrigin?: {
|
|
8925
|
+
name: string;
|
|
8926
|
+
remote: boolean;
|
|
8927
|
+
} | null | undefined;
|
|
8928
|
+
}>> | undefined;
|
|
8779
8929
|
}, {
|
|
8780
8930
|
id: string;
|
|
8781
8931
|
name: string;
|
|
@@ -8784,33 +8934,282 @@ declare const Collection: z.ZodObject<{
|
|
|
8784
8934
|
modes: {
|
|
8785
8935
|
name: string;
|
|
8786
8936
|
modeId: string;
|
|
8937
|
+
parentModeId?: string | undefined;
|
|
8787
8938
|
}[];
|
|
8788
8939
|
defaultModeId: string;
|
|
8940
|
+
key?: string | undefined;
|
|
8941
|
+
isExtension?: boolean | undefined;
|
|
8942
|
+
parentVariableCollectionId?: string | undefined;
|
|
8943
|
+
parentVariableCollectionKey?: string | undefined;
|
|
8944
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
8945
|
+
r: number;
|
|
8946
|
+
g: number;
|
|
8947
|
+
b: number;
|
|
8948
|
+
} | {
|
|
8949
|
+
r: number;
|
|
8950
|
+
g: number;
|
|
8951
|
+
b: number;
|
|
8952
|
+
a: number;
|
|
8953
|
+
} | {
|
|
8954
|
+
id: string;
|
|
8955
|
+
type: "VARIABLE_ALIAS";
|
|
8956
|
+
resolvedValue?: string | number | boolean | {
|
|
8957
|
+
r: number;
|
|
8958
|
+
g: number;
|
|
8959
|
+
b: number;
|
|
8960
|
+
} | {
|
|
8961
|
+
r: number;
|
|
8962
|
+
g: number;
|
|
8963
|
+
b: number;
|
|
8964
|
+
a: number;
|
|
8965
|
+
} | undefined;
|
|
8966
|
+
referenceOrigin?: {
|
|
8967
|
+
name: string;
|
|
8968
|
+
remote: boolean;
|
|
8969
|
+
} | null | undefined;
|
|
8970
|
+
}>> | undefined;
|
|
8789
8971
|
}>;
|
|
8790
8972
|
type Collection = z.infer<typeof Collection>;
|
|
8791
8973
|
declare const VariablesMapping: z.ZodObject<{
|
|
8792
8974
|
variableCollections: z.ZodArray<z.ZodString, "many">;
|
|
8975
|
+
variableCollectionKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8793
8976
|
variableMode: z.ZodString;
|
|
8794
8977
|
supernovaBrand: z.ZodString;
|
|
8795
|
-
supernovaTheme: z.
|
|
8978
|
+
supernovaTheme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8796
8979
|
}, "strip", z.ZodTypeAny, {
|
|
8797
8980
|
supernovaBrand: string;
|
|
8798
8981
|
variableCollections: string[];
|
|
8799
8982
|
variableMode: string;
|
|
8800
8983
|
supernovaTheme?: string | null | undefined;
|
|
8984
|
+
variableCollectionKeys?: string[] | undefined;
|
|
8801
8985
|
}, {
|
|
8802
8986
|
supernovaBrand: string;
|
|
8803
8987
|
variableCollections: string[];
|
|
8804
8988
|
variableMode: string;
|
|
8805
8989
|
supernovaTheme?: string | null | undefined;
|
|
8990
|
+
variableCollectionKeys?: string[] | undefined;
|
|
8806
8991
|
}>;
|
|
8807
8992
|
type VariablesMapping = z.infer<typeof VariablesMapping>;
|
|
8808
8993
|
declare const FormattedCollections: z.ZodObject<{
|
|
8994
|
+
variableCollections: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8995
|
+
id: z.ZodString;
|
|
8996
|
+
name: z.ZodString;
|
|
8997
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8998
|
+
modes: z.ZodArray<z.ZodObject<{
|
|
8999
|
+
modeId: z.ZodString;
|
|
9000
|
+
name: z.ZodString;
|
|
9001
|
+
parentModeId: z.ZodOptional<z.ZodString>;
|
|
9002
|
+
}, "strip", z.ZodTypeAny, {
|
|
9003
|
+
name: string;
|
|
9004
|
+
modeId: string;
|
|
9005
|
+
parentModeId?: string | undefined;
|
|
9006
|
+
}, {
|
|
9007
|
+
name: string;
|
|
9008
|
+
modeId: string;
|
|
9009
|
+
parentModeId?: string | undefined;
|
|
9010
|
+
}>, "many">;
|
|
9011
|
+
defaultModeId: z.ZodString;
|
|
9012
|
+
remote: z.ZodBoolean;
|
|
9013
|
+
hiddenFromPublishing: z.ZodBoolean;
|
|
9014
|
+
isExtension: z.ZodOptional<z.ZodBoolean>;
|
|
9015
|
+
parentVariableCollectionId: z.ZodOptional<z.ZodString>;
|
|
9016
|
+
parentVariableCollectionKey: z.ZodOptional<z.ZodString>;
|
|
9017
|
+
variableOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>, z.ZodString]>, z.ZodObject<{
|
|
9018
|
+
r: z.ZodNumber;
|
|
9019
|
+
g: z.ZodNumber;
|
|
9020
|
+
b: z.ZodNumber;
|
|
9021
|
+
} & {
|
|
9022
|
+
a: z.ZodNumber;
|
|
9023
|
+
}, "strip", z.ZodTypeAny, {
|
|
9024
|
+
r: number;
|
|
9025
|
+
g: number;
|
|
9026
|
+
b: number;
|
|
9027
|
+
a: number;
|
|
9028
|
+
}, {
|
|
9029
|
+
r: number;
|
|
9030
|
+
g: number;
|
|
9031
|
+
b: number;
|
|
9032
|
+
a: number;
|
|
9033
|
+
}>]>, z.ZodObject<{
|
|
9034
|
+
r: z.ZodNumber;
|
|
9035
|
+
g: z.ZodNumber;
|
|
9036
|
+
b: z.ZodNumber;
|
|
9037
|
+
}, "strip", z.ZodTypeAny, {
|
|
9038
|
+
r: number;
|
|
9039
|
+
g: number;
|
|
9040
|
+
b: number;
|
|
9041
|
+
}, {
|
|
9042
|
+
r: number;
|
|
9043
|
+
g: number;
|
|
9044
|
+
b: number;
|
|
9045
|
+
}>]>, z.ZodObject<{
|
|
9046
|
+
type: z.ZodLiteral<"VARIABLE_ALIAS">;
|
|
9047
|
+
id: z.ZodString;
|
|
9048
|
+
resolvedValue: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>, z.ZodString]>, z.ZodObject<{
|
|
9049
|
+
r: z.ZodNumber;
|
|
9050
|
+
g: z.ZodNumber;
|
|
9051
|
+
b: z.ZodNumber;
|
|
9052
|
+
} & {
|
|
9053
|
+
a: z.ZodNumber;
|
|
9054
|
+
}, "strip", z.ZodTypeAny, {
|
|
9055
|
+
r: number;
|
|
9056
|
+
g: number;
|
|
9057
|
+
b: number;
|
|
9058
|
+
a: number;
|
|
9059
|
+
}, {
|
|
9060
|
+
r: number;
|
|
9061
|
+
g: number;
|
|
9062
|
+
b: number;
|
|
9063
|
+
a: number;
|
|
9064
|
+
}>]>, z.ZodObject<{
|
|
9065
|
+
r: z.ZodNumber;
|
|
9066
|
+
g: z.ZodNumber;
|
|
9067
|
+
b: z.ZodNumber;
|
|
9068
|
+
}, "strip", z.ZodTypeAny, {
|
|
9069
|
+
r: number;
|
|
9070
|
+
g: number;
|
|
9071
|
+
b: number;
|
|
9072
|
+
}, {
|
|
9073
|
+
r: number;
|
|
9074
|
+
g: number;
|
|
9075
|
+
b: number;
|
|
9076
|
+
}>]>>;
|
|
9077
|
+
referenceOrigin: z.ZodUnion<[z.ZodOptional<z.ZodObject<{
|
|
9078
|
+
name: z.ZodString;
|
|
9079
|
+
remote: z.ZodBoolean;
|
|
9080
|
+
}, "strip", z.ZodTypeAny, {
|
|
9081
|
+
name: string;
|
|
9082
|
+
remote: boolean;
|
|
9083
|
+
}, {
|
|
9084
|
+
name: string;
|
|
9085
|
+
remote: boolean;
|
|
9086
|
+
}>>, z.ZodNull]>;
|
|
9087
|
+
}, "strip", z.ZodTypeAny, {
|
|
9088
|
+
id: string;
|
|
9089
|
+
type: "VARIABLE_ALIAS";
|
|
9090
|
+
resolvedValue?: string | number | boolean | {
|
|
9091
|
+
r: number;
|
|
9092
|
+
g: number;
|
|
9093
|
+
b: number;
|
|
9094
|
+
} | {
|
|
9095
|
+
r: number;
|
|
9096
|
+
g: number;
|
|
9097
|
+
b: number;
|
|
9098
|
+
a: number;
|
|
9099
|
+
} | undefined;
|
|
9100
|
+
referenceOrigin?: {
|
|
9101
|
+
name: string;
|
|
9102
|
+
remote: boolean;
|
|
9103
|
+
} | null | undefined;
|
|
9104
|
+
}, {
|
|
9105
|
+
id: string;
|
|
9106
|
+
type: "VARIABLE_ALIAS";
|
|
9107
|
+
resolvedValue?: string | number | boolean | {
|
|
9108
|
+
r: number;
|
|
9109
|
+
g: number;
|
|
9110
|
+
b: number;
|
|
9111
|
+
} | {
|
|
9112
|
+
r: number;
|
|
9113
|
+
g: number;
|
|
9114
|
+
b: number;
|
|
9115
|
+
a: number;
|
|
9116
|
+
} | undefined;
|
|
9117
|
+
referenceOrigin?: {
|
|
9118
|
+
name: string;
|
|
9119
|
+
remote: boolean;
|
|
9120
|
+
} | null | undefined;
|
|
9121
|
+
}>]>>>>;
|
|
9122
|
+
}, "strip", z.ZodTypeAny, {
|
|
9123
|
+
id: string;
|
|
9124
|
+
name: string;
|
|
9125
|
+
remote: boolean;
|
|
9126
|
+
hiddenFromPublishing: boolean;
|
|
9127
|
+
modes: {
|
|
9128
|
+
name: string;
|
|
9129
|
+
modeId: string;
|
|
9130
|
+
parentModeId?: string | undefined;
|
|
9131
|
+
}[];
|
|
9132
|
+
defaultModeId: string;
|
|
9133
|
+
key?: string | undefined;
|
|
9134
|
+
isExtension?: boolean | undefined;
|
|
9135
|
+
parentVariableCollectionId?: string | undefined;
|
|
9136
|
+
parentVariableCollectionKey?: string | undefined;
|
|
9137
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
9138
|
+
r: number;
|
|
9139
|
+
g: number;
|
|
9140
|
+
b: number;
|
|
9141
|
+
} | {
|
|
9142
|
+
r: number;
|
|
9143
|
+
g: number;
|
|
9144
|
+
b: number;
|
|
9145
|
+
a: number;
|
|
9146
|
+
} | {
|
|
9147
|
+
id: string;
|
|
9148
|
+
type: "VARIABLE_ALIAS";
|
|
9149
|
+
resolvedValue?: string | number | boolean | {
|
|
9150
|
+
r: number;
|
|
9151
|
+
g: number;
|
|
9152
|
+
b: number;
|
|
9153
|
+
} | {
|
|
9154
|
+
r: number;
|
|
9155
|
+
g: number;
|
|
9156
|
+
b: number;
|
|
9157
|
+
a: number;
|
|
9158
|
+
} | undefined;
|
|
9159
|
+
referenceOrigin?: {
|
|
9160
|
+
name: string;
|
|
9161
|
+
remote: boolean;
|
|
9162
|
+
} | null | undefined;
|
|
9163
|
+
}>> | undefined;
|
|
9164
|
+
}, {
|
|
9165
|
+
id: string;
|
|
9166
|
+
name: string;
|
|
9167
|
+
remote: boolean;
|
|
9168
|
+
hiddenFromPublishing: boolean;
|
|
9169
|
+
modes: {
|
|
9170
|
+
name: string;
|
|
9171
|
+
modeId: string;
|
|
9172
|
+
parentModeId?: string | undefined;
|
|
9173
|
+
}[];
|
|
9174
|
+
defaultModeId: string;
|
|
9175
|
+
key?: string | undefined;
|
|
9176
|
+
isExtension?: boolean | undefined;
|
|
9177
|
+
parentVariableCollectionId?: string | undefined;
|
|
9178
|
+
parentVariableCollectionKey?: string | undefined;
|
|
9179
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
9180
|
+
r: number;
|
|
9181
|
+
g: number;
|
|
9182
|
+
b: number;
|
|
9183
|
+
} | {
|
|
9184
|
+
r: number;
|
|
9185
|
+
g: number;
|
|
9186
|
+
b: number;
|
|
9187
|
+
a: number;
|
|
9188
|
+
} | {
|
|
9189
|
+
id: string;
|
|
9190
|
+
type: "VARIABLE_ALIAS";
|
|
9191
|
+
resolvedValue?: string | number | boolean | {
|
|
9192
|
+
r: number;
|
|
9193
|
+
g: number;
|
|
9194
|
+
b: number;
|
|
9195
|
+
} | {
|
|
9196
|
+
r: number;
|
|
9197
|
+
g: number;
|
|
9198
|
+
b: number;
|
|
9199
|
+
a: number;
|
|
9200
|
+
} | undefined;
|
|
9201
|
+
referenceOrigin?: {
|
|
9202
|
+
name: string;
|
|
9203
|
+
remote: boolean;
|
|
9204
|
+
} | null | undefined;
|
|
9205
|
+
}>> | undefined;
|
|
9206
|
+
}>>;
|
|
8809
9207
|
variables: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8810
9208
|
id: z.ZodString;
|
|
8811
9209
|
name: z.ZodString;
|
|
8812
9210
|
key: z.ZodString;
|
|
8813
9211
|
variableCollectionId: z.ZodString;
|
|
9212
|
+
variableCollectionKey: z.ZodOptional<z.ZodString>;
|
|
8814
9213
|
resolvedType: z.ZodEnum<["BOOLEAN", "FLOAT", "STRING", "COLOR"]>;
|
|
8815
9214
|
valuesByMode: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>, z.ZodString]>, z.ZodObject<{
|
|
8816
9215
|
r: z.ZodNumber;
|
|
@@ -8959,6 +9358,7 @@ declare const FormattedCollections: z.ZodObject<{
|
|
|
8959
9358
|
}>;
|
|
8960
9359
|
hiddenFromPublishing: boolean;
|
|
8961
9360
|
scopes: string[];
|
|
9361
|
+
variableCollectionKey?: string | undefined;
|
|
8962
9362
|
codeSyntax?: Record<string, any> | undefined;
|
|
8963
9363
|
}, {
|
|
8964
9364
|
id: string;
|
|
@@ -8997,62 +9397,29 @@ declare const FormattedCollections: z.ZodObject<{
|
|
|
8997
9397
|
}>;
|
|
8998
9398
|
hiddenFromPublishing: boolean;
|
|
8999
9399
|
scopes: string[];
|
|
9400
|
+
variableCollectionKey?: string | undefined;
|
|
9000
9401
|
codeSyntax?: Record<string, any> | undefined;
|
|
9001
9402
|
}>>;
|
|
9002
|
-
|
|
9003
|
-
id: z.ZodString;
|
|
9004
|
-
name: z.ZodString;
|
|
9005
|
-
modes: z.ZodArray<z.ZodObject<{
|
|
9006
|
-
modeId: z.ZodString;
|
|
9007
|
-
name: z.ZodString;
|
|
9008
|
-
}, "strip", z.ZodTypeAny, {
|
|
9009
|
-
name: string;
|
|
9010
|
-
modeId: string;
|
|
9011
|
-
}, {
|
|
9012
|
-
name: string;
|
|
9013
|
-
modeId: string;
|
|
9014
|
-
}>, "many">;
|
|
9015
|
-
defaultModeId: z.ZodString;
|
|
9016
|
-
remote: z.ZodBoolean;
|
|
9017
|
-
hiddenFromPublishing: z.ZodBoolean;
|
|
9018
|
-
}, "strip", z.ZodTypeAny, {
|
|
9019
|
-
id: string;
|
|
9020
|
-
name: string;
|
|
9021
|
-
remote: boolean;
|
|
9022
|
-
hiddenFromPublishing: boolean;
|
|
9023
|
-
modes: {
|
|
9024
|
-
name: string;
|
|
9025
|
-
modeId: string;
|
|
9026
|
-
}[];
|
|
9027
|
-
defaultModeId: string;
|
|
9028
|
-
}, {
|
|
9029
|
-
id: string;
|
|
9030
|
-
name: string;
|
|
9031
|
-
remote: boolean;
|
|
9032
|
-
hiddenFromPublishing: boolean;
|
|
9033
|
-
modes: {
|
|
9034
|
-
name: string;
|
|
9035
|
-
modeId: string;
|
|
9036
|
-
}[];
|
|
9037
|
-
defaultModeId: string;
|
|
9038
|
-
}>>;
|
|
9403
|
+
variablesOrder: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9039
9404
|
mappings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9040
9405
|
variableCollections: z.ZodArray<z.ZodString, "many">;
|
|
9406
|
+
variableCollectionKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9041
9407
|
variableMode: z.ZodString;
|
|
9042
9408
|
supernovaBrand: z.ZodString;
|
|
9043
|
-
supernovaTheme: z.
|
|
9409
|
+
supernovaTheme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9044
9410
|
}, "strip", z.ZodTypeAny, {
|
|
9045
9411
|
supernovaBrand: string;
|
|
9046
9412
|
variableCollections: string[];
|
|
9047
9413
|
variableMode: string;
|
|
9048
9414
|
supernovaTheme?: string | null | undefined;
|
|
9415
|
+
variableCollectionKeys?: string[] | undefined;
|
|
9049
9416
|
}, {
|
|
9050
9417
|
supernovaBrand: string;
|
|
9051
9418
|
variableCollections: string[];
|
|
9052
9419
|
variableMode: string;
|
|
9053
9420
|
supernovaTheme?: string | null | undefined;
|
|
9421
|
+
variableCollectionKeys?: string[] | undefined;
|
|
9054
9422
|
}>, "many">>;
|
|
9055
|
-
variablesOrder: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9056
9423
|
}, "strip", z.ZodTypeAny, {
|
|
9057
9424
|
variableCollections: Record<string, {
|
|
9058
9425
|
id: string;
|
|
@@ -9062,8 +9429,40 @@ declare const FormattedCollections: z.ZodObject<{
|
|
|
9062
9429
|
modes: {
|
|
9063
9430
|
name: string;
|
|
9064
9431
|
modeId: string;
|
|
9432
|
+
parentModeId?: string | undefined;
|
|
9065
9433
|
}[];
|
|
9066
9434
|
defaultModeId: string;
|
|
9435
|
+
key?: string | undefined;
|
|
9436
|
+
isExtension?: boolean | undefined;
|
|
9437
|
+
parentVariableCollectionId?: string | undefined;
|
|
9438
|
+
parentVariableCollectionKey?: string | undefined;
|
|
9439
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
9440
|
+
r: number;
|
|
9441
|
+
g: number;
|
|
9442
|
+
b: number;
|
|
9443
|
+
} | {
|
|
9444
|
+
r: number;
|
|
9445
|
+
g: number;
|
|
9446
|
+
b: number;
|
|
9447
|
+
a: number;
|
|
9448
|
+
} | {
|
|
9449
|
+
id: string;
|
|
9450
|
+
type: "VARIABLE_ALIAS";
|
|
9451
|
+
resolvedValue?: string | number | boolean | {
|
|
9452
|
+
r: number;
|
|
9453
|
+
g: number;
|
|
9454
|
+
b: number;
|
|
9455
|
+
} | {
|
|
9456
|
+
r: number;
|
|
9457
|
+
g: number;
|
|
9458
|
+
b: number;
|
|
9459
|
+
a: number;
|
|
9460
|
+
} | undefined;
|
|
9461
|
+
referenceOrigin?: {
|
|
9462
|
+
name: string;
|
|
9463
|
+
remote: boolean;
|
|
9464
|
+
} | null | undefined;
|
|
9465
|
+
}>> | undefined;
|
|
9067
9466
|
}>;
|
|
9068
9467
|
variables: Record<string, {
|
|
9069
9468
|
id: string;
|
|
@@ -9102,15 +9501,17 @@ declare const FormattedCollections: z.ZodObject<{
|
|
|
9102
9501
|
}>;
|
|
9103
9502
|
hiddenFromPublishing: boolean;
|
|
9104
9503
|
scopes: string[];
|
|
9504
|
+
variableCollectionKey?: string | undefined;
|
|
9105
9505
|
codeSyntax?: Record<string, any> | undefined;
|
|
9106
9506
|
}>;
|
|
9507
|
+
variablesOrder?: string[] | undefined;
|
|
9107
9508
|
mappings?: {
|
|
9108
9509
|
supernovaBrand: string;
|
|
9109
9510
|
variableCollections: string[];
|
|
9110
9511
|
variableMode: string;
|
|
9111
9512
|
supernovaTheme?: string | null | undefined;
|
|
9513
|
+
variableCollectionKeys?: string[] | undefined;
|
|
9112
9514
|
}[] | undefined;
|
|
9113
|
-
variablesOrder?: string[] | undefined;
|
|
9114
9515
|
}, {
|
|
9115
9516
|
variableCollections: Record<string, {
|
|
9116
9517
|
id: string;
|
|
@@ -9120,8 +9521,40 @@ declare const FormattedCollections: z.ZodObject<{
|
|
|
9120
9521
|
modes: {
|
|
9121
9522
|
name: string;
|
|
9122
9523
|
modeId: string;
|
|
9524
|
+
parentModeId?: string | undefined;
|
|
9123
9525
|
}[];
|
|
9124
9526
|
defaultModeId: string;
|
|
9527
|
+
key?: string | undefined;
|
|
9528
|
+
isExtension?: boolean | undefined;
|
|
9529
|
+
parentVariableCollectionId?: string | undefined;
|
|
9530
|
+
parentVariableCollectionKey?: string | undefined;
|
|
9531
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
9532
|
+
r: number;
|
|
9533
|
+
g: number;
|
|
9534
|
+
b: number;
|
|
9535
|
+
} | {
|
|
9536
|
+
r: number;
|
|
9537
|
+
g: number;
|
|
9538
|
+
b: number;
|
|
9539
|
+
a: number;
|
|
9540
|
+
} | {
|
|
9541
|
+
id: string;
|
|
9542
|
+
type: "VARIABLE_ALIAS";
|
|
9543
|
+
resolvedValue?: string | number | boolean | {
|
|
9544
|
+
r: number;
|
|
9545
|
+
g: number;
|
|
9546
|
+
b: number;
|
|
9547
|
+
} | {
|
|
9548
|
+
r: number;
|
|
9549
|
+
g: number;
|
|
9550
|
+
b: number;
|
|
9551
|
+
a: number;
|
|
9552
|
+
} | undefined;
|
|
9553
|
+
referenceOrigin?: {
|
|
9554
|
+
name: string;
|
|
9555
|
+
remote: boolean;
|
|
9556
|
+
} | null | undefined;
|
|
9557
|
+
}>> | undefined;
|
|
9125
9558
|
}>;
|
|
9126
9559
|
variables: Record<string, {
|
|
9127
9560
|
id: string;
|
|
@@ -9160,15 +9593,17 @@ declare const FormattedCollections: z.ZodObject<{
|
|
|
9160
9593
|
}>;
|
|
9161
9594
|
hiddenFromPublishing: boolean;
|
|
9162
9595
|
scopes: string[];
|
|
9596
|
+
variableCollectionKey?: string | undefined;
|
|
9163
9597
|
codeSyntax?: Record<string, any> | undefined;
|
|
9164
9598
|
}>;
|
|
9599
|
+
variablesOrder?: string[] | undefined;
|
|
9165
9600
|
mappings?: {
|
|
9166
9601
|
supernovaBrand: string;
|
|
9167
9602
|
variableCollections: string[];
|
|
9168
9603
|
variableMode: string;
|
|
9169
9604
|
supernovaTheme?: string | null | undefined;
|
|
9605
|
+
variableCollectionKeys?: string[] | undefined;
|
|
9170
9606
|
}[] | undefined;
|
|
9171
|
-
variablesOrder?: string[] | undefined;
|
|
9172
9607
|
}>;
|
|
9173
9608
|
type FormattedCollections = z.infer<typeof FormattedCollections>;
|
|
9174
9609
|
|
|
@@ -375568,8 +376003,40 @@ declare class TestFVPDataBuilder {
|
|
|
375568
376003
|
modes: {
|
|
375569
376004
|
name: string;
|
|
375570
376005
|
modeId: string;
|
|
376006
|
+
parentModeId?: string | undefined;
|
|
375571
376007
|
}[];
|
|
375572
376008
|
defaultModeId: string;
|
|
376009
|
+
key?: string | undefined;
|
|
376010
|
+
isExtension?: boolean | undefined;
|
|
376011
|
+
parentVariableCollectionId?: string | undefined;
|
|
376012
|
+
parentVariableCollectionKey?: string | undefined;
|
|
376013
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
376014
|
+
r: number;
|
|
376015
|
+
g: number;
|
|
376016
|
+
b: number;
|
|
376017
|
+
} | {
|
|
376018
|
+
r: number;
|
|
376019
|
+
g: number;
|
|
376020
|
+
b: number;
|
|
376021
|
+
a: number;
|
|
376022
|
+
} | {
|
|
376023
|
+
id: string;
|
|
376024
|
+
type: "VARIABLE_ALIAS";
|
|
376025
|
+
resolvedValue?: string | number | boolean | {
|
|
376026
|
+
r: number;
|
|
376027
|
+
g: number;
|
|
376028
|
+
b: number;
|
|
376029
|
+
} | {
|
|
376030
|
+
r: number;
|
|
376031
|
+
g: number;
|
|
376032
|
+
b: number;
|
|
376033
|
+
a: number;
|
|
376034
|
+
} | undefined;
|
|
376035
|
+
referenceOrigin?: {
|
|
376036
|
+
name: string;
|
|
376037
|
+
remote: boolean;
|
|
376038
|
+
} | null | undefined;
|
|
376039
|
+
}>> | undefined;
|
|
375573
376040
|
};
|
|
375574
376041
|
variables: {
|
|
375575
376042
|
id: string;
|
|
@@ -375608,6 +376075,7 @@ declare class TestFVPDataBuilder {
|
|
|
375608
376075
|
}>;
|
|
375609
376076
|
hiddenFromPublishing: boolean;
|
|
375610
376077
|
scopes: string[];
|
|
376078
|
+
variableCollectionKey?: string | undefined;
|
|
375611
376079
|
codeSyntax?: Record<string, any> | undefined;
|
|
375612
376080
|
}[];
|
|
375613
376081
|
};
|
|
@@ -375619,8 +376087,40 @@ declare class TestFVPDataBuilder {
|
|
|
375619
376087
|
modes: {
|
|
375620
376088
|
name: string;
|
|
375621
376089
|
modeId: string;
|
|
376090
|
+
parentModeId?: string | undefined;
|
|
375622
376091
|
}[];
|
|
375623
376092
|
defaultModeId: string;
|
|
376093
|
+
key?: string | undefined;
|
|
376094
|
+
isExtension?: boolean | undefined;
|
|
376095
|
+
parentVariableCollectionId?: string | undefined;
|
|
376096
|
+
parentVariableCollectionKey?: string | undefined;
|
|
376097
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
376098
|
+
r: number;
|
|
376099
|
+
g: number;
|
|
376100
|
+
b: number;
|
|
376101
|
+
} | {
|
|
376102
|
+
r: number;
|
|
376103
|
+
g: number;
|
|
376104
|
+
b: number;
|
|
376105
|
+
a: number;
|
|
376106
|
+
} | {
|
|
376107
|
+
id: string;
|
|
376108
|
+
type: "VARIABLE_ALIAS";
|
|
376109
|
+
resolvedValue?: string | number | boolean | {
|
|
376110
|
+
r: number;
|
|
376111
|
+
g: number;
|
|
376112
|
+
b: number;
|
|
376113
|
+
} | {
|
|
376114
|
+
r: number;
|
|
376115
|
+
g: number;
|
|
376116
|
+
b: number;
|
|
376117
|
+
a: number;
|
|
376118
|
+
} | undefined;
|
|
376119
|
+
referenceOrigin?: {
|
|
376120
|
+
name: string;
|
|
376121
|
+
remote: boolean;
|
|
376122
|
+
} | null | undefined;
|
|
376123
|
+
}>> | undefined;
|
|
375624
376124
|
};
|
|
375625
376125
|
updateCollection(collectionId: string, collectionUpdate: TestFVPCollectionUpdate): void;
|
|
375626
376126
|
deleteCollection(collectionId: string): void;
|
|
@@ -375629,6 +376129,7 @@ declare class TestFVPDataBuilder {
|
|
|
375629
376129
|
}): {
|
|
375630
376130
|
name: string;
|
|
375631
376131
|
modeId: string;
|
|
376132
|
+
parentModeId?: string | undefined;
|
|
375632
376133
|
};
|
|
375633
376134
|
private addModeToCollection;
|
|
375634
376135
|
addVariable(variable: TestFVPVariableCreate): {
|
|
@@ -375668,6 +376169,7 @@ declare class TestFVPDataBuilder {
|
|
|
375668
376169
|
}>;
|
|
375669
376170
|
hiddenFromPublishing: boolean;
|
|
375670
376171
|
scopes: string[];
|
|
376172
|
+
variableCollectionKey?: string | undefined;
|
|
375671
376173
|
codeSyntax?: Record<string, any> | undefined;
|
|
375672
376174
|
};
|
|
375673
376175
|
updateVariable(variableId: string, data: TestFVPVariableUpdate): void;
|
|
@@ -375683,8 +376185,40 @@ declare class TestFVPDataBuilder {
|
|
|
375683
376185
|
modes: {
|
|
375684
376186
|
name: string;
|
|
375685
376187
|
modeId: string;
|
|
376188
|
+
parentModeId?: string | undefined;
|
|
375686
376189
|
}[];
|
|
375687
376190
|
defaultModeId: string;
|
|
376191
|
+
key?: string | undefined;
|
|
376192
|
+
isExtension?: boolean | undefined;
|
|
376193
|
+
parentVariableCollectionId?: string | undefined;
|
|
376194
|
+
parentVariableCollectionKey?: string | undefined;
|
|
376195
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
376196
|
+
r: number;
|
|
376197
|
+
g: number;
|
|
376198
|
+
b: number;
|
|
376199
|
+
} | {
|
|
376200
|
+
r: number;
|
|
376201
|
+
g: number;
|
|
376202
|
+
b: number;
|
|
376203
|
+
a: number;
|
|
376204
|
+
} | {
|
|
376205
|
+
id: string;
|
|
376206
|
+
type: "VARIABLE_ALIAS";
|
|
376207
|
+
resolvedValue?: string | number | boolean | {
|
|
376208
|
+
r: number;
|
|
376209
|
+
g: number;
|
|
376210
|
+
b: number;
|
|
376211
|
+
} | {
|
|
376212
|
+
r: number;
|
|
376213
|
+
g: number;
|
|
376214
|
+
b: number;
|
|
376215
|
+
a: number;
|
|
376216
|
+
} | undefined;
|
|
376217
|
+
referenceOrigin?: {
|
|
376218
|
+
name: string;
|
|
376219
|
+
remote: boolean;
|
|
376220
|
+
} | null | undefined;
|
|
376221
|
+
}>> | undefined;
|
|
375688
376222
|
}>;
|
|
375689
376223
|
variables: Record<string, {
|
|
375690
376224
|
id: string;
|
|
@@ -375723,15 +376257,17 @@ declare class TestFVPDataBuilder {
|
|
|
375723
376257
|
}>;
|
|
375724
376258
|
hiddenFromPublishing: boolean;
|
|
375725
376259
|
scopes: string[];
|
|
376260
|
+
variableCollectionKey?: string | undefined;
|
|
375726
376261
|
codeSyntax?: Record<string, any> | undefined;
|
|
375727
376262
|
}>;
|
|
376263
|
+
variablesOrder?: string[] | undefined;
|
|
375728
376264
|
mappings?: {
|
|
375729
376265
|
supernovaBrand: string;
|
|
375730
376266
|
variableCollections: string[];
|
|
375731
376267
|
variableMode: string;
|
|
375732
376268
|
supernovaTheme?: string | null | undefined;
|
|
376269
|
+
variableCollectionKeys?: string[] | undefined;
|
|
375733
376270
|
}[] | undefined;
|
|
375734
|
-
variablesOrder?: string[] | undefined;
|
|
375735
376271
|
};
|
|
375736
376272
|
private nextModeId;
|
|
375737
376273
|
private nextCollectionId;
|
|
@@ -375801,4 +376337,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
375801
376337
|
reason: ValidationErrorReason | undefined;
|
|
375802
376338
|
};
|
|
375803
376339
|
|
|
375804
|
-
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, 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, 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, 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, TestFVPDataBuilder, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, 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 };
|
|
376340
|
+
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, 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, 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, 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, type TestFVPCollectionUpdate, type TestFVPCreateBulk, type TestFVPCreateBulkVariable, type TestFVPCreateCollection, type TestFVPCreateCollectionWithModes, type TestFVPCreateMode, TestFVPDataBuilder, type TestFVPDataBuilderInput, type TestFVPVariableCreate, type TestFVPVariableUpdate, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, 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 };
|