@supernova-studio/client 1.60.3 → 1.62.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 +830 -160
- package/dist/index.d.ts +830 -160
- package/dist/index.js +20 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -11
- 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
|
|
|
@@ -140680,7 +141115,6 @@ declare const DTOForgeProjectActionFeatureUpdate: z$1.ZodObject<{
|
|
|
140680
141115
|
status: z$1.ZodOptional<z$1.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
140681
141116
|
publishedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<Pick<{
|
|
140682
141117
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
140683
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
140684
141118
|
lastPublishedAt: z$1.ZodDate;
|
|
140685
141119
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
140686
141120
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -141517,7 +141951,6 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
141517
141951
|
status: z$1.ZodOptional<z$1.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
141518
141952
|
publishedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<Pick<{
|
|
141519
141953
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
141520
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
141521
141954
|
lastPublishedAt: z$1.ZodDate;
|
|
141522
141955
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
141523
141956
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -248602,7 +249035,6 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
248602
249035
|
}>>;
|
|
248603
249036
|
publishedState: z$1.ZodOptional<z$1.ZodObject<{
|
|
248604
249037
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
248605
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
248606
249038
|
lastPublishedAt: z$1.ZodDate;
|
|
248607
249039
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
248608
249040
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -248613,14 +249045,12 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
248613
249045
|
lastPublishedAt: Date;
|
|
248614
249046
|
hideSupernovaUI: boolean;
|
|
248615
249047
|
userId?: string | undefined;
|
|
248616
|
-
userName?: string | undefined;
|
|
248617
249048
|
}, {
|
|
248618
249049
|
iterationId: string | null;
|
|
248619
249050
|
lastPublishedAt: Date;
|
|
248620
249051
|
hideSupernovaUI: boolean;
|
|
248621
249052
|
userId?: string | undefined;
|
|
248622
249053
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248623
|
-
userName?: string | undefined;
|
|
248624
249054
|
}>>;
|
|
248625
249055
|
}, "strip", z$1.ZodTypeAny, {
|
|
248626
249056
|
status: "Draft" | "ReadyForDevelopment";
|
|
@@ -248658,7 +249088,6 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
248658
249088
|
lastPublishedAt: Date;
|
|
248659
249089
|
hideSupernovaUI: boolean;
|
|
248660
249090
|
userId?: string | undefined;
|
|
248661
|
-
userName?: string | undefined;
|
|
248662
249091
|
} | undefined;
|
|
248663
249092
|
}, {
|
|
248664
249093
|
id: string;
|
|
@@ -248696,7 +249125,6 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
248696
249125
|
hideSupernovaUI: boolean;
|
|
248697
249126
|
userId?: string | undefined;
|
|
248698
249127
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248699
|
-
userName?: string | undefined;
|
|
248700
249128
|
} | undefined;
|
|
248701
249129
|
}>;
|
|
248702
249130
|
type DTOForgeProjectFeature = z$1.infer<typeof DTOForgeProjectFeature>;
|
|
@@ -248773,7 +249201,6 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248773
249201
|
}>>;
|
|
248774
249202
|
publishedState: z$1.ZodOptional<z$1.ZodObject<{
|
|
248775
249203
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
248776
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
248777
249204
|
lastPublishedAt: z$1.ZodDate;
|
|
248778
249205
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
248779
249206
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -248784,14 +249211,12 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248784
249211
|
lastPublishedAt: Date;
|
|
248785
249212
|
hideSupernovaUI: boolean;
|
|
248786
249213
|
userId?: string | undefined;
|
|
248787
|
-
userName?: string | undefined;
|
|
248788
249214
|
}, {
|
|
248789
249215
|
iterationId: string | null;
|
|
248790
249216
|
lastPublishedAt: Date;
|
|
248791
249217
|
hideSupernovaUI: boolean;
|
|
248792
249218
|
userId?: string | undefined;
|
|
248793
249219
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248794
|
-
userName?: string | undefined;
|
|
248795
249220
|
}>>;
|
|
248796
249221
|
}, "strip", z$1.ZodTypeAny, {
|
|
248797
249222
|
status: "Draft" | "ReadyForDevelopment";
|
|
@@ -248829,7 +249254,6 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248829
249254
|
lastPublishedAt: Date;
|
|
248830
249255
|
hideSupernovaUI: boolean;
|
|
248831
249256
|
userId?: string | undefined;
|
|
248832
|
-
userName?: string | undefined;
|
|
248833
249257
|
} | undefined;
|
|
248834
249258
|
}, {
|
|
248835
249259
|
id: string;
|
|
@@ -248867,7 +249291,6 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248867
249291
|
hideSupernovaUI: boolean;
|
|
248868
249292
|
userId?: string | undefined;
|
|
248869
249293
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248870
|
-
userName?: string | undefined;
|
|
248871
249294
|
} | undefined;
|
|
248872
249295
|
}>, "many">;
|
|
248873
249296
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -248907,7 +249330,6 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248907
249330
|
lastPublishedAt: Date;
|
|
248908
249331
|
hideSupernovaUI: boolean;
|
|
248909
249332
|
userId?: string | undefined;
|
|
248910
|
-
userName?: string | undefined;
|
|
248911
249333
|
} | undefined;
|
|
248912
249334
|
}[];
|
|
248913
249335
|
}, {
|
|
@@ -248947,7 +249369,6 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248947
249369
|
hideSupernovaUI: boolean;
|
|
248948
249370
|
userId?: string | undefined;
|
|
248949
249371
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248950
|
-
userName?: string | undefined;
|
|
248951
249372
|
} | undefined;
|
|
248952
249373
|
}[];
|
|
248953
249374
|
}>;
|
|
@@ -249165,7 +249586,6 @@ declare const DTOForgeProjectFeatureUpdateInput: z$1.ZodObject<{
|
|
|
249165
249586
|
*/
|
|
249166
249587
|
publishedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<Pick<{
|
|
249167
249588
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249168
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249169
249589
|
lastPublishedAt: z$1.ZodDate;
|
|
249170
249590
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249171
249591
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -249306,7 +249726,6 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249306
249726
|
}>>;
|
|
249307
249727
|
publishedState: z$1.ZodOptional<z$1.ZodObject<{
|
|
249308
249728
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249309
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249310
249729
|
lastPublishedAt: z$1.ZodDate;
|
|
249311
249730
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249312
249731
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -249317,14 +249736,12 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249317
249736
|
lastPublishedAt: Date;
|
|
249318
249737
|
hideSupernovaUI: boolean;
|
|
249319
249738
|
userId?: string | undefined;
|
|
249320
|
-
userName?: string | undefined;
|
|
249321
249739
|
}, {
|
|
249322
249740
|
iterationId: string | null;
|
|
249323
249741
|
lastPublishedAt: Date;
|
|
249324
249742
|
hideSupernovaUI: boolean;
|
|
249325
249743
|
userId?: string | undefined;
|
|
249326
249744
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249327
|
-
userName?: string | undefined;
|
|
249328
249745
|
}>>;
|
|
249329
249746
|
}, "strip", z$1.ZodTypeAny, {
|
|
249330
249747
|
status: "Draft" | "ReadyForDevelopment";
|
|
@@ -249362,7 +249779,6 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249362
249779
|
lastPublishedAt: Date;
|
|
249363
249780
|
hideSupernovaUI: boolean;
|
|
249364
249781
|
userId?: string | undefined;
|
|
249365
|
-
userName?: string | undefined;
|
|
249366
249782
|
} | undefined;
|
|
249367
249783
|
}, {
|
|
249368
249784
|
id: string;
|
|
@@ -249400,7 +249816,6 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249400
249816
|
hideSupernovaUI: boolean;
|
|
249401
249817
|
userId?: string | undefined;
|
|
249402
249818
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249403
|
-
userName?: string | undefined;
|
|
249404
249819
|
} | undefined;
|
|
249405
249820
|
}>;
|
|
249406
249821
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -249440,7 +249855,6 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249440
249855
|
lastPublishedAt: Date;
|
|
249441
249856
|
hideSupernovaUI: boolean;
|
|
249442
249857
|
userId?: string | undefined;
|
|
249443
|
-
userName?: string | undefined;
|
|
249444
249858
|
} | undefined;
|
|
249445
249859
|
};
|
|
249446
249860
|
}, {
|
|
@@ -249480,7 +249894,6 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249480
249894
|
hideSupernovaUI: boolean;
|
|
249481
249895
|
userId?: string | undefined;
|
|
249482
249896
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249483
|
-
userName?: string | undefined;
|
|
249484
249897
|
} | undefined;
|
|
249485
249898
|
};
|
|
249486
249899
|
}>;
|
|
@@ -249553,7 +249966,6 @@ declare const DTOForgeProjectPublishedFeatureGetResponse: z$1.ZodObject<{
|
|
|
249553
249966
|
type DTOForgeProjectPublishedFeatureGetResponse = z$1.infer<typeof DTOForgeProjectPublishedFeatureGetResponse>;
|
|
249554
249967
|
declare const DTOFeaturePublishedStateUpdateInput: z$1.ZodObject<Pick<{
|
|
249555
249968
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249556
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249557
249969
|
lastPublishedAt: z$1.ZodDate;
|
|
249558
249970
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249559
249971
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -337648,68 +338060,68 @@ declare const DTOTrailEvent: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
337648
338060
|
payload: z.ZodObject<{
|
|
337649
338061
|
featureId: z.ZodString;
|
|
337650
338062
|
featureName: z.ZodString;
|
|
337651
|
-
iterationId: z.ZodString
|
|
337652
|
-
iterationName: z.ZodString
|
|
338063
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338064
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
337653
338065
|
}, "strip", z.ZodTypeAny, {
|
|
337654
|
-
iterationId: string;
|
|
337655
338066
|
featureId: string;
|
|
337656
338067
|
featureName: string;
|
|
337657
|
-
|
|
338068
|
+
iterationId?: string | null | undefined;
|
|
338069
|
+
iterationName?: string | null | undefined;
|
|
337658
338070
|
}, {
|
|
337659
|
-
iterationId: string;
|
|
337660
338071
|
featureId: string;
|
|
337661
338072
|
featureName: string;
|
|
337662
|
-
|
|
338073
|
+
iterationId?: string | null | undefined;
|
|
338074
|
+
iterationName?: string | null | undefined;
|
|
337663
338075
|
}>;
|
|
337664
338076
|
}, "strip", z.ZodTypeAny, {
|
|
337665
338077
|
type: "FeaturePublished";
|
|
337666
338078
|
payload: {
|
|
337667
|
-
iterationId: string;
|
|
337668
338079
|
featureId: string;
|
|
337669
338080
|
featureName: string;
|
|
337670
|
-
|
|
338081
|
+
iterationId?: string | null | undefined;
|
|
338082
|
+
iterationName?: string | null | undefined;
|
|
337671
338083
|
};
|
|
337672
338084
|
}, {
|
|
337673
338085
|
type: "FeaturePublished";
|
|
337674
338086
|
payload: {
|
|
337675
|
-
iterationId: string;
|
|
337676
338087
|
featureId: string;
|
|
337677
338088
|
featureName: string;
|
|
337678
|
-
|
|
338089
|
+
iterationId?: string | null | undefined;
|
|
338090
|
+
iterationName?: string | null | undefined;
|
|
337679
338091
|
};
|
|
337680
338092
|
}>, z.ZodObject<{
|
|
337681
338093
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
337682
338094
|
payload: z.ZodObject<{
|
|
337683
338095
|
featureId: z.ZodString;
|
|
337684
338096
|
featureName: z.ZodString;
|
|
337685
|
-
iterationId: z.ZodString
|
|
337686
|
-
iterationName: z.ZodString
|
|
338097
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338098
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
337687
338099
|
}, "strip", z.ZodTypeAny, {
|
|
337688
|
-
iterationId: string;
|
|
337689
338100
|
featureId: string;
|
|
337690
338101
|
featureName: string;
|
|
337691
|
-
|
|
338102
|
+
iterationId?: string | null | undefined;
|
|
338103
|
+
iterationName?: string | null | undefined;
|
|
337692
338104
|
}, {
|
|
337693
|
-
iterationId: string;
|
|
337694
338105
|
featureId: string;
|
|
337695
338106
|
featureName: string;
|
|
337696
|
-
|
|
338107
|
+
iterationId?: string | null | undefined;
|
|
338108
|
+
iterationName?: string | null | undefined;
|
|
337697
338109
|
}>;
|
|
337698
338110
|
}, "strip", z.ZodTypeAny, {
|
|
337699
338111
|
type: "FeatureUnpublished";
|
|
337700
338112
|
payload: {
|
|
337701
|
-
iterationId: string;
|
|
337702
338113
|
featureId: string;
|
|
337703
338114
|
featureName: string;
|
|
337704
|
-
|
|
338115
|
+
iterationId?: string | null | undefined;
|
|
338116
|
+
iterationName?: string | null | undefined;
|
|
337705
338117
|
};
|
|
337706
338118
|
}, {
|
|
337707
338119
|
type: "FeatureUnpublished";
|
|
337708
338120
|
payload: {
|
|
337709
|
-
iterationId: string;
|
|
337710
338121
|
featureId: string;
|
|
337711
338122
|
featureName: string;
|
|
337712
|
-
|
|
338123
|
+
iterationId?: string | null | undefined;
|
|
338124
|
+
iterationName?: string | null | undefined;
|
|
337713
338125
|
};
|
|
337714
338126
|
}>]>, z.ZodObject<{
|
|
337715
338127
|
id: z.ZodString;
|
|
@@ -338102,68 +338514,68 @@ declare const DTOTrailEventWithDetails: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
338102
338514
|
payload: z.ZodObject<{
|
|
338103
338515
|
featureId: z.ZodString;
|
|
338104
338516
|
featureName: z.ZodString;
|
|
338105
|
-
iterationId: z.ZodString
|
|
338106
|
-
iterationName: z.ZodString
|
|
338517
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338518
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338107
338519
|
}, "strip", z.ZodTypeAny, {
|
|
338108
|
-
iterationId: string;
|
|
338109
338520
|
featureId: string;
|
|
338110
338521
|
featureName: string;
|
|
338111
|
-
|
|
338522
|
+
iterationId?: string | null | undefined;
|
|
338523
|
+
iterationName?: string | null | undefined;
|
|
338112
338524
|
}, {
|
|
338113
|
-
iterationId: string;
|
|
338114
338525
|
featureId: string;
|
|
338115
338526
|
featureName: string;
|
|
338116
|
-
|
|
338527
|
+
iterationId?: string | null | undefined;
|
|
338528
|
+
iterationName?: string | null | undefined;
|
|
338117
338529
|
}>;
|
|
338118
338530
|
}, "strip", z.ZodTypeAny, {
|
|
338119
338531
|
type: "FeaturePublished";
|
|
338120
338532
|
payload: {
|
|
338121
|
-
iterationId: string;
|
|
338122
338533
|
featureId: string;
|
|
338123
338534
|
featureName: string;
|
|
338124
|
-
|
|
338535
|
+
iterationId?: string | null | undefined;
|
|
338536
|
+
iterationName?: string | null | undefined;
|
|
338125
338537
|
};
|
|
338126
338538
|
}, {
|
|
338127
338539
|
type: "FeaturePublished";
|
|
338128
338540
|
payload: {
|
|
338129
|
-
iterationId: string;
|
|
338130
338541
|
featureId: string;
|
|
338131
338542
|
featureName: string;
|
|
338132
|
-
|
|
338543
|
+
iterationId?: string | null | undefined;
|
|
338544
|
+
iterationName?: string | null | undefined;
|
|
338133
338545
|
};
|
|
338134
338546
|
}>, z.ZodObject<{
|
|
338135
338547
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
338136
338548
|
payload: z.ZodObject<{
|
|
338137
338549
|
featureId: z.ZodString;
|
|
338138
338550
|
featureName: z.ZodString;
|
|
338139
|
-
iterationId: z.ZodString
|
|
338140
|
-
iterationName: z.ZodString
|
|
338551
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338552
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338141
338553
|
}, "strip", z.ZodTypeAny, {
|
|
338142
|
-
iterationId: string;
|
|
338143
338554
|
featureId: string;
|
|
338144
338555
|
featureName: string;
|
|
338145
|
-
|
|
338556
|
+
iterationId?: string | null | undefined;
|
|
338557
|
+
iterationName?: string | null | undefined;
|
|
338146
338558
|
}, {
|
|
338147
|
-
iterationId: string;
|
|
338148
338559
|
featureId: string;
|
|
338149
338560
|
featureName: string;
|
|
338150
|
-
|
|
338561
|
+
iterationId?: string | null | undefined;
|
|
338562
|
+
iterationName?: string | null | undefined;
|
|
338151
338563
|
}>;
|
|
338152
338564
|
}, "strip", z.ZodTypeAny, {
|
|
338153
338565
|
type: "FeatureUnpublished";
|
|
338154
338566
|
payload: {
|
|
338155
|
-
iterationId: string;
|
|
338156
338567
|
featureId: string;
|
|
338157
338568
|
featureName: string;
|
|
338158
|
-
|
|
338569
|
+
iterationId?: string | null | undefined;
|
|
338570
|
+
iterationName?: string | null | undefined;
|
|
338159
338571
|
};
|
|
338160
338572
|
}, {
|
|
338161
338573
|
type: "FeatureUnpublished";
|
|
338162
338574
|
payload: {
|
|
338163
|
-
iterationId: string;
|
|
338164
338575
|
featureId: string;
|
|
338165
338576
|
featureName: string;
|
|
338166
|
-
|
|
338577
|
+
iterationId?: string | null | undefined;
|
|
338578
|
+
iterationName?: string | null | undefined;
|
|
338167
338579
|
};
|
|
338168
338580
|
}>]>, z.ZodObject<{
|
|
338169
338581
|
id: z.ZodString;
|
|
@@ -338574,68 +338986,68 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338574
338986
|
payload: z.ZodObject<{
|
|
338575
338987
|
featureId: z.ZodString;
|
|
338576
338988
|
featureName: z.ZodString;
|
|
338577
|
-
iterationId: z.ZodString
|
|
338578
|
-
iterationName: z.ZodString
|
|
338989
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338990
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338579
338991
|
}, "strip", z.ZodTypeAny, {
|
|
338580
|
-
iterationId: string;
|
|
338581
338992
|
featureId: string;
|
|
338582
338993
|
featureName: string;
|
|
338583
|
-
|
|
338994
|
+
iterationId?: string | null | undefined;
|
|
338995
|
+
iterationName?: string | null | undefined;
|
|
338584
338996
|
}, {
|
|
338585
|
-
iterationId: string;
|
|
338586
338997
|
featureId: string;
|
|
338587
338998
|
featureName: string;
|
|
338588
|
-
|
|
338999
|
+
iterationId?: string | null | undefined;
|
|
339000
|
+
iterationName?: string | null | undefined;
|
|
338589
339001
|
}>;
|
|
338590
339002
|
}, "strip", z.ZodTypeAny, {
|
|
338591
339003
|
type: "FeaturePublished";
|
|
338592
339004
|
payload: {
|
|
338593
|
-
iterationId: string;
|
|
338594
339005
|
featureId: string;
|
|
338595
339006
|
featureName: string;
|
|
338596
|
-
|
|
339007
|
+
iterationId?: string | null | undefined;
|
|
339008
|
+
iterationName?: string | null | undefined;
|
|
338597
339009
|
};
|
|
338598
339010
|
}, {
|
|
338599
339011
|
type: "FeaturePublished";
|
|
338600
339012
|
payload: {
|
|
338601
|
-
iterationId: string;
|
|
338602
339013
|
featureId: string;
|
|
338603
339014
|
featureName: string;
|
|
338604
|
-
|
|
339015
|
+
iterationId?: string | null | undefined;
|
|
339016
|
+
iterationName?: string | null | undefined;
|
|
338605
339017
|
};
|
|
338606
339018
|
}>, z.ZodObject<{
|
|
338607
339019
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
338608
339020
|
payload: z.ZodObject<{
|
|
338609
339021
|
featureId: z.ZodString;
|
|
338610
339022
|
featureName: z.ZodString;
|
|
338611
|
-
iterationId: z.ZodString
|
|
338612
|
-
iterationName: z.ZodString
|
|
339023
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339024
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338613
339025
|
}, "strip", z.ZodTypeAny, {
|
|
338614
|
-
iterationId: string;
|
|
338615
339026
|
featureId: string;
|
|
338616
339027
|
featureName: string;
|
|
338617
|
-
|
|
339028
|
+
iterationId?: string | null | undefined;
|
|
339029
|
+
iterationName?: string | null | undefined;
|
|
338618
339030
|
}, {
|
|
338619
|
-
iterationId: string;
|
|
338620
339031
|
featureId: string;
|
|
338621
339032
|
featureName: string;
|
|
338622
|
-
|
|
339033
|
+
iterationId?: string | null | undefined;
|
|
339034
|
+
iterationName?: string | null | undefined;
|
|
338623
339035
|
}>;
|
|
338624
339036
|
}, "strip", z.ZodTypeAny, {
|
|
338625
339037
|
type: "FeatureUnpublished";
|
|
338626
339038
|
payload: {
|
|
338627
|
-
iterationId: string;
|
|
338628
339039
|
featureId: string;
|
|
338629
339040
|
featureName: string;
|
|
338630
|
-
|
|
339041
|
+
iterationId?: string | null | undefined;
|
|
339042
|
+
iterationName?: string | null | undefined;
|
|
338631
339043
|
};
|
|
338632
339044
|
}, {
|
|
338633
339045
|
type: "FeatureUnpublished";
|
|
338634
339046
|
payload: {
|
|
338635
|
-
iterationId: string;
|
|
338636
339047
|
featureId: string;
|
|
338637
339048
|
featureName: string;
|
|
338638
|
-
|
|
339049
|
+
iterationId?: string | null | undefined;
|
|
339050
|
+
iterationName?: string | null | undefined;
|
|
338639
339051
|
};
|
|
338640
339052
|
}>]>, z.ZodObject<{
|
|
338641
339053
|
id: z.ZodString;
|
|
@@ -338759,18 +339171,18 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338759
339171
|
} | {
|
|
338760
339172
|
type: "FeaturePublished";
|
|
338761
339173
|
payload: {
|
|
338762
|
-
iterationId: string;
|
|
338763
339174
|
featureId: string;
|
|
338764
339175
|
featureName: string;
|
|
338765
|
-
|
|
339176
|
+
iterationId?: string | null | undefined;
|
|
339177
|
+
iterationName?: string | null | undefined;
|
|
338766
339178
|
};
|
|
338767
339179
|
} | {
|
|
338768
339180
|
type: "FeatureUnpublished";
|
|
338769
339181
|
payload: {
|
|
338770
|
-
iterationId: string;
|
|
338771
339182
|
featureId: string;
|
|
338772
339183
|
featureName: string;
|
|
338773
|
-
|
|
339184
|
+
iterationId?: string | null | undefined;
|
|
339185
|
+
iterationName?: string | null | undefined;
|
|
338774
339186
|
};
|
|
338775
339187
|
}) & {
|
|
338776
339188
|
id: string;
|
|
@@ -338876,18 +339288,18 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338876
339288
|
} | {
|
|
338877
339289
|
type: "FeaturePublished";
|
|
338878
339290
|
payload: {
|
|
338879
|
-
iterationId: string;
|
|
338880
339291
|
featureId: string;
|
|
338881
339292
|
featureName: string;
|
|
338882
|
-
|
|
339293
|
+
iterationId?: string | null | undefined;
|
|
339294
|
+
iterationName?: string | null | undefined;
|
|
338883
339295
|
};
|
|
338884
339296
|
} | {
|
|
338885
339297
|
type: "FeatureUnpublished";
|
|
338886
339298
|
payload: {
|
|
338887
|
-
iterationId: string;
|
|
338888
339299
|
featureId: string;
|
|
338889
339300
|
featureName: string;
|
|
338890
|
-
|
|
339301
|
+
iterationId?: string | null | undefined;
|
|
339302
|
+
iterationName?: string | null | undefined;
|
|
338891
339303
|
};
|
|
338892
339304
|
}) & {
|
|
338893
339305
|
id: string;
|
|
@@ -339274,68 +339686,68 @@ declare const DTOTrailEventCreate: z.ZodIntersection<z.ZodDiscriminatedUnion<"ty
|
|
|
339274
339686
|
payload: z.ZodObject<{
|
|
339275
339687
|
featureId: z.ZodString;
|
|
339276
339688
|
featureName: z.ZodString;
|
|
339277
|
-
iterationId: z.ZodString
|
|
339278
|
-
iterationName: z.ZodString
|
|
339689
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339690
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339279
339691
|
}, "strip", z.ZodTypeAny, {
|
|
339280
|
-
iterationId: string;
|
|
339281
339692
|
featureId: string;
|
|
339282
339693
|
featureName: string;
|
|
339283
|
-
|
|
339694
|
+
iterationId?: string | null | undefined;
|
|
339695
|
+
iterationName?: string | null | undefined;
|
|
339284
339696
|
}, {
|
|
339285
|
-
iterationId: string;
|
|
339286
339697
|
featureId: string;
|
|
339287
339698
|
featureName: string;
|
|
339288
|
-
|
|
339699
|
+
iterationId?: string | null | undefined;
|
|
339700
|
+
iterationName?: string | null | undefined;
|
|
339289
339701
|
}>;
|
|
339290
339702
|
}, "strip", z.ZodTypeAny, {
|
|
339291
339703
|
type: "FeaturePublished";
|
|
339292
339704
|
payload: {
|
|
339293
|
-
iterationId: string;
|
|
339294
339705
|
featureId: string;
|
|
339295
339706
|
featureName: string;
|
|
339296
|
-
|
|
339707
|
+
iterationId?: string | null | undefined;
|
|
339708
|
+
iterationName?: string | null | undefined;
|
|
339297
339709
|
};
|
|
339298
339710
|
}, {
|
|
339299
339711
|
type: "FeaturePublished";
|
|
339300
339712
|
payload: {
|
|
339301
|
-
iterationId: string;
|
|
339302
339713
|
featureId: string;
|
|
339303
339714
|
featureName: string;
|
|
339304
|
-
|
|
339715
|
+
iterationId?: string | null | undefined;
|
|
339716
|
+
iterationName?: string | null | undefined;
|
|
339305
339717
|
};
|
|
339306
339718
|
}>, z.ZodObject<{
|
|
339307
339719
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
339308
339720
|
payload: z.ZodObject<{
|
|
339309
339721
|
featureId: z.ZodString;
|
|
339310
339722
|
featureName: z.ZodString;
|
|
339311
|
-
iterationId: z.ZodString
|
|
339312
|
-
iterationName: z.ZodString
|
|
339723
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339724
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339313
339725
|
}, "strip", z.ZodTypeAny, {
|
|
339314
|
-
iterationId: string;
|
|
339315
339726
|
featureId: string;
|
|
339316
339727
|
featureName: string;
|
|
339317
|
-
|
|
339728
|
+
iterationId?: string | null | undefined;
|
|
339729
|
+
iterationName?: string | null | undefined;
|
|
339318
339730
|
}, {
|
|
339319
|
-
iterationId: string;
|
|
339320
339731
|
featureId: string;
|
|
339321
339732
|
featureName: string;
|
|
339322
|
-
|
|
339733
|
+
iterationId?: string | null | undefined;
|
|
339734
|
+
iterationName?: string | null | undefined;
|
|
339323
339735
|
}>;
|
|
339324
339736
|
}, "strip", z.ZodTypeAny, {
|
|
339325
339737
|
type: "FeatureUnpublished";
|
|
339326
339738
|
payload: {
|
|
339327
|
-
iterationId: string;
|
|
339328
339739
|
featureId: string;
|
|
339329
339740
|
featureName: string;
|
|
339330
|
-
|
|
339741
|
+
iterationId?: string | null | undefined;
|
|
339742
|
+
iterationName?: string | null | undefined;
|
|
339331
339743
|
};
|
|
339332
339744
|
}, {
|
|
339333
339745
|
type: "FeatureUnpublished";
|
|
339334
339746
|
payload: {
|
|
339335
|
-
iterationId: string;
|
|
339336
339747
|
featureId: string;
|
|
339337
339748
|
featureName: string;
|
|
339338
|
-
|
|
339749
|
+
iterationId?: string | null | undefined;
|
|
339750
|
+
iterationName?: string | null | undefined;
|
|
339339
339751
|
};
|
|
339340
339752
|
}>]>, z.ZodObject<Omit<{
|
|
339341
339753
|
id: z.ZodString;
|
|
@@ -346073,6 +346485,32 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346073
346485
|
errorReason: string;
|
|
346074
346486
|
max?: number | undefined;
|
|
346075
346487
|
}>;
|
|
346488
|
+
forgeFeatureWorkspacePublishing: z$1.ZodObject<{
|
|
346489
|
+
enabled: z$1.ZodBoolean;
|
|
346490
|
+
errorMessage: z$1.ZodString;
|
|
346491
|
+
errorReason: z$1.ZodString;
|
|
346492
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
346493
|
+
errorMessage: string;
|
|
346494
|
+
errorReason: string;
|
|
346495
|
+
enabled: boolean;
|
|
346496
|
+
}, {
|
|
346497
|
+
errorMessage: string;
|
|
346498
|
+
errorReason: string;
|
|
346499
|
+
enabled: boolean;
|
|
346500
|
+
}>;
|
|
346501
|
+
forgeFeatureHideSupernovaUI: z$1.ZodObject<{
|
|
346502
|
+
enabled: z$1.ZodBoolean;
|
|
346503
|
+
errorMessage: z$1.ZodString;
|
|
346504
|
+
errorReason: z$1.ZodString;
|
|
346505
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
346506
|
+
errorMessage: string;
|
|
346507
|
+
errorReason: string;
|
|
346508
|
+
enabled: boolean;
|
|
346509
|
+
}, {
|
|
346510
|
+
errorMessage: string;
|
|
346511
|
+
errorReason: string;
|
|
346512
|
+
enabled: boolean;
|
|
346513
|
+
}>;
|
|
346076
346514
|
documentationPages: z$1.ZodObject<{
|
|
346077
346515
|
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
346078
346516
|
errorMessage: z$1.ZodString;
|
|
@@ -346257,6 +346695,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346257
346695
|
errorReason: string;
|
|
346258
346696
|
max?: number | undefined;
|
|
346259
346697
|
};
|
|
346698
|
+
forgeFeatureWorkspacePublishing: {
|
|
346699
|
+
errorMessage: string;
|
|
346700
|
+
errorReason: string;
|
|
346701
|
+
enabled: boolean;
|
|
346702
|
+
};
|
|
346703
|
+
forgeFeatureHideSupernovaUI: {
|
|
346704
|
+
errorMessage: string;
|
|
346705
|
+
errorReason: string;
|
|
346706
|
+
enabled: boolean;
|
|
346707
|
+
};
|
|
346260
346708
|
documentationPages: {
|
|
346261
346709
|
errorMessage: string;
|
|
346262
346710
|
errorReason: string;
|
|
@@ -346425,6 +346873,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346425
346873
|
errorReason: string;
|
|
346426
346874
|
max?: number | undefined;
|
|
346427
346875
|
};
|
|
346876
|
+
forgeFeatureWorkspacePublishing: {
|
|
346877
|
+
errorMessage: string;
|
|
346878
|
+
errorReason: string;
|
|
346879
|
+
enabled: boolean;
|
|
346880
|
+
};
|
|
346881
|
+
forgeFeatureHideSupernovaUI: {
|
|
346882
|
+
errorMessage: string;
|
|
346883
|
+
errorReason: string;
|
|
346884
|
+
enabled: boolean;
|
|
346885
|
+
};
|
|
346428
346886
|
documentationPages: {
|
|
346429
346887
|
errorMessage: string;
|
|
346430
346888
|
errorReason: string;
|
|
@@ -346687,6 +347145,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346687
347145
|
errorReason: string;
|
|
346688
347146
|
max?: number | undefined;
|
|
346689
347147
|
};
|
|
347148
|
+
forgeFeatureWorkspacePublishing: {
|
|
347149
|
+
errorMessage: string;
|
|
347150
|
+
errorReason: string;
|
|
347151
|
+
enabled: boolean;
|
|
347152
|
+
};
|
|
347153
|
+
forgeFeatureHideSupernovaUI: {
|
|
347154
|
+
errorMessage: string;
|
|
347155
|
+
errorReason: string;
|
|
347156
|
+
enabled: boolean;
|
|
347157
|
+
};
|
|
346690
347158
|
documentationPages: {
|
|
346691
347159
|
errorMessage: string;
|
|
346692
347160
|
errorReason: string;
|
|
@@ -346899,6 +347367,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346899
347367
|
errorReason: string;
|
|
346900
347368
|
max?: number | undefined;
|
|
346901
347369
|
};
|
|
347370
|
+
forgeFeatureWorkspacePublishing: {
|
|
347371
|
+
errorMessage: string;
|
|
347372
|
+
errorReason: string;
|
|
347373
|
+
enabled: boolean;
|
|
347374
|
+
};
|
|
347375
|
+
forgeFeatureHideSupernovaUI: {
|
|
347376
|
+
errorMessage: string;
|
|
347377
|
+
errorReason: string;
|
|
347378
|
+
enabled: boolean;
|
|
347379
|
+
};
|
|
346902
347380
|
documentationPages: {
|
|
346903
347381
|
errorMessage: string;
|
|
346904
347382
|
errorReason: string;
|
|
@@ -347349,6 +347827,32 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
347349
347827
|
errorReason: string;
|
|
347350
347828
|
max?: number | undefined;
|
|
347351
347829
|
}>;
|
|
347830
|
+
forgeFeatureWorkspacePublishing: z$1.ZodObject<{
|
|
347831
|
+
enabled: z$1.ZodBoolean;
|
|
347832
|
+
errorMessage: z$1.ZodString;
|
|
347833
|
+
errorReason: z$1.ZodString;
|
|
347834
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
347835
|
+
errorMessage: string;
|
|
347836
|
+
errorReason: string;
|
|
347837
|
+
enabled: boolean;
|
|
347838
|
+
}, {
|
|
347839
|
+
errorMessage: string;
|
|
347840
|
+
errorReason: string;
|
|
347841
|
+
enabled: boolean;
|
|
347842
|
+
}>;
|
|
347843
|
+
forgeFeatureHideSupernovaUI: z$1.ZodObject<{
|
|
347844
|
+
enabled: z$1.ZodBoolean;
|
|
347845
|
+
errorMessage: z$1.ZodString;
|
|
347846
|
+
errorReason: z$1.ZodString;
|
|
347847
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
347848
|
+
errorMessage: string;
|
|
347849
|
+
errorReason: string;
|
|
347850
|
+
enabled: boolean;
|
|
347851
|
+
}, {
|
|
347852
|
+
errorMessage: string;
|
|
347853
|
+
errorReason: string;
|
|
347854
|
+
enabled: boolean;
|
|
347855
|
+
}>;
|
|
347352
347856
|
documentationPages: z$1.ZodObject<{
|
|
347353
347857
|
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
347354
347858
|
errorMessage: z$1.ZodString;
|
|
@@ -347533,6 +348037,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
347533
348037
|
errorReason: string;
|
|
347534
348038
|
max?: number | undefined;
|
|
347535
348039
|
};
|
|
348040
|
+
forgeFeatureWorkspacePublishing: {
|
|
348041
|
+
errorMessage: string;
|
|
348042
|
+
errorReason: string;
|
|
348043
|
+
enabled: boolean;
|
|
348044
|
+
};
|
|
348045
|
+
forgeFeatureHideSupernovaUI: {
|
|
348046
|
+
errorMessage: string;
|
|
348047
|
+
errorReason: string;
|
|
348048
|
+
enabled: boolean;
|
|
348049
|
+
};
|
|
347536
348050
|
documentationPages: {
|
|
347537
348051
|
errorMessage: string;
|
|
347538
348052
|
errorReason: string;
|
|
@@ -347701,6 +348215,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
347701
348215
|
errorReason: string;
|
|
347702
348216
|
max?: number | undefined;
|
|
347703
348217
|
};
|
|
348218
|
+
forgeFeatureWorkspacePublishing: {
|
|
348219
|
+
errorMessage: string;
|
|
348220
|
+
errorReason: string;
|
|
348221
|
+
enabled: boolean;
|
|
348222
|
+
};
|
|
348223
|
+
forgeFeatureHideSupernovaUI: {
|
|
348224
|
+
errorMessage: string;
|
|
348225
|
+
errorReason: string;
|
|
348226
|
+
enabled: boolean;
|
|
348227
|
+
};
|
|
347704
348228
|
documentationPages: {
|
|
347705
348229
|
errorMessage: string;
|
|
347706
348230
|
errorReason: string;
|
|
@@ -347963,6 +348487,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
347963
348487
|
errorReason: string;
|
|
347964
348488
|
max?: number | undefined;
|
|
347965
348489
|
};
|
|
348490
|
+
forgeFeatureWorkspacePublishing: {
|
|
348491
|
+
errorMessage: string;
|
|
348492
|
+
errorReason: string;
|
|
348493
|
+
enabled: boolean;
|
|
348494
|
+
};
|
|
348495
|
+
forgeFeatureHideSupernovaUI: {
|
|
348496
|
+
errorMessage: string;
|
|
348497
|
+
errorReason: string;
|
|
348498
|
+
enabled: boolean;
|
|
348499
|
+
};
|
|
347966
348500
|
documentationPages: {
|
|
347967
348501
|
errorMessage: string;
|
|
347968
348502
|
errorReason: string;
|
|
@@ -348175,6 +348709,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348175
348709
|
errorReason: string;
|
|
348176
348710
|
max?: number | undefined;
|
|
348177
348711
|
};
|
|
348712
|
+
forgeFeatureWorkspacePublishing: {
|
|
348713
|
+
errorMessage: string;
|
|
348714
|
+
errorReason: string;
|
|
348715
|
+
enabled: boolean;
|
|
348716
|
+
};
|
|
348717
|
+
forgeFeatureHideSupernovaUI: {
|
|
348718
|
+
errorMessage: string;
|
|
348719
|
+
errorReason: string;
|
|
348720
|
+
enabled: boolean;
|
|
348721
|
+
};
|
|
348178
348722
|
documentationPages: {
|
|
348179
348723
|
errorMessage: string;
|
|
348180
348724
|
errorReason: string;
|
|
@@ -348558,6 +349102,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348558
349102
|
errorReason: string;
|
|
348559
349103
|
max?: number | undefined;
|
|
348560
349104
|
};
|
|
349105
|
+
forgeFeatureWorkspacePublishing: {
|
|
349106
|
+
errorMessage: string;
|
|
349107
|
+
errorReason: string;
|
|
349108
|
+
enabled: boolean;
|
|
349109
|
+
};
|
|
349110
|
+
forgeFeatureHideSupernovaUI: {
|
|
349111
|
+
errorMessage: string;
|
|
349112
|
+
errorReason: string;
|
|
349113
|
+
enabled: boolean;
|
|
349114
|
+
};
|
|
348561
349115
|
documentationPages: {
|
|
348562
349116
|
errorMessage: string;
|
|
348563
349117
|
errorReason: string;
|
|
@@ -348809,6 +349363,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348809
349363
|
errorReason: string;
|
|
348810
349364
|
max?: number | undefined;
|
|
348811
349365
|
};
|
|
349366
|
+
forgeFeatureWorkspacePublishing: {
|
|
349367
|
+
errorMessage: string;
|
|
349368
|
+
errorReason: string;
|
|
349369
|
+
enabled: boolean;
|
|
349370
|
+
};
|
|
349371
|
+
forgeFeatureHideSupernovaUI: {
|
|
349372
|
+
errorMessage: string;
|
|
349373
|
+
errorReason: string;
|
|
349374
|
+
enabled: boolean;
|
|
349375
|
+
};
|
|
348812
349376
|
documentationPages: {
|
|
348813
349377
|
errorMessage: string;
|
|
348814
349378
|
errorReason: string;
|
|
@@ -361979,7 +362543,6 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
361979
362543
|
lastPublishedAt: Date;
|
|
361980
362544
|
hideSupernovaUI: boolean;
|
|
361981
362545
|
userId?: string | undefined;
|
|
361982
|
-
userName?: string | undefined;
|
|
361983
362546
|
} | undefined;
|
|
361984
362547
|
}[];
|
|
361985
362548
|
}>;
|
|
@@ -362020,7 +362583,6 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
362020
362583
|
lastPublishedAt: Date;
|
|
362021
362584
|
hideSupernovaUI: boolean;
|
|
362022
362585
|
userId?: string | undefined;
|
|
362023
|
-
userName?: string | undefined;
|
|
362024
362586
|
} | undefined;
|
|
362025
362587
|
};
|
|
362026
362588
|
}>;
|
|
@@ -362061,7 +362623,6 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
362061
362623
|
lastPublishedAt: Date;
|
|
362062
362624
|
hideSupernovaUI: boolean;
|
|
362063
362625
|
userId?: string | undefined;
|
|
362064
|
-
userName?: string | undefined;
|
|
362065
362626
|
} | undefined;
|
|
362066
362627
|
};
|
|
362067
362628
|
}>;
|
|
@@ -371878,6 +372439,16 @@ declare class WorkspaceSubscriptionEndpoint {
|
|
|
371878
372439
|
errorReason: string;
|
|
371879
372440
|
max?: number | undefined;
|
|
371880
372441
|
};
|
|
372442
|
+
forgeFeatureWorkspacePublishing: {
|
|
372443
|
+
errorMessage: string;
|
|
372444
|
+
errorReason: string;
|
|
372445
|
+
enabled: boolean;
|
|
372446
|
+
};
|
|
372447
|
+
forgeFeatureHideSupernovaUI: {
|
|
372448
|
+
errorMessage: string;
|
|
372449
|
+
errorReason: string;
|
|
372450
|
+
enabled: boolean;
|
|
372451
|
+
};
|
|
371881
372452
|
documentationPages: {
|
|
371882
372453
|
errorMessage: string;
|
|
371883
372454
|
errorReason: string;
|
|
@@ -375380,7 +375951,6 @@ declare function applyProjectActionsLocally(input: Input): {
|
|
|
375380
375951
|
lastPublishedAt: Date;
|
|
375381
375952
|
hideSupernovaUI: boolean;
|
|
375382
375953
|
userId?: string | undefined;
|
|
375383
|
-
userName?: string | undefined;
|
|
375384
375954
|
} | undefined;
|
|
375385
375955
|
}[];
|
|
375386
375956
|
artifactSections: {
|
|
@@ -375484,7 +376054,6 @@ declare class LocalProjectActionExecutor {
|
|
|
375484
376054
|
lastPublishedAt: Date;
|
|
375485
376055
|
hideSupernovaUI: boolean;
|
|
375486
376056
|
userId?: string | undefined;
|
|
375487
|
-
userName?: string | undefined;
|
|
375488
376057
|
} | undefined;
|
|
375489
376058
|
}[];
|
|
375490
376059
|
artifactSections: {
|
|
@@ -375568,8 +376137,40 @@ declare class TestFVPDataBuilder {
|
|
|
375568
376137
|
modes: {
|
|
375569
376138
|
name: string;
|
|
375570
376139
|
modeId: string;
|
|
376140
|
+
parentModeId?: string | undefined;
|
|
375571
376141
|
}[];
|
|
375572
376142
|
defaultModeId: string;
|
|
376143
|
+
key?: string | undefined;
|
|
376144
|
+
isExtension?: boolean | undefined;
|
|
376145
|
+
parentVariableCollectionId?: string | undefined;
|
|
376146
|
+
parentVariableCollectionKey?: string | undefined;
|
|
376147
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
376148
|
+
r: number;
|
|
376149
|
+
g: number;
|
|
376150
|
+
b: number;
|
|
376151
|
+
} | {
|
|
376152
|
+
r: number;
|
|
376153
|
+
g: number;
|
|
376154
|
+
b: number;
|
|
376155
|
+
a: number;
|
|
376156
|
+
} | {
|
|
376157
|
+
id: string;
|
|
376158
|
+
type: "VARIABLE_ALIAS";
|
|
376159
|
+
resolvedValue?: string | number | boolean | {
|
|
376160
|
+
r: number;
|
|
376161
|
+
g: number;
|
|
376162
|
+
b: number;
|
|
376163
|
+
} | {
|
|
376164
|
+
r: number;
|
|
376165
|
+
g: number;
|
|
376166
|
+
b: number;
|
|
376167
|
+
a: number;
|
|
376168
|
+
} | undefined;
|
|
376169
|
+
referenceOrigin?: {
|
|
376170
|
+
name: string;
|
|
376171
|
+
remote: boolean;
|
|
376172
|
+
} | null | undefined;
|
|
376173
|
+
}>> | undefined;
|
|
375573
376174
|
};
|
|
375574
376175
|
variables: {
|
|
375575
376176
|
id: string;
|
|
@@ -375608,6 +376209,7 @@ declare class TestFVPDataBuilder {
|
|
|
375608
376209
|
}>;
|
|
375609
376210
|
hiddenFromPublishing: boolean;
|
|
375610
376211
|
scopes: string[];
|
|
376212
|
+
variableCollectionKey?: string | undefined;
|
|
375611
376213
|
codeSyntax?: Record<string, any> | undefined;
|
|
375612
376214
|
}[];
|
|
375613
376215
|
};
|
|
@@ -375619,8 +376221,40 @@ declare class TestFVPDataBuilder {
|
|
|
375619
376221
|
modes: {
|
|
375620
376222
|
name: string;
|
|
375621
376223
|
modeId: string;
|
|
376224
|
+
parentModeId?: string | undefined;
|
|
375622
376225
|
}[];
|
|
375623
376226
|
defaultModeId: string;
|
|
376227
|
+
key?: string | undefined;
|
|
376228
|
+
isExtension?: boolean | undefined;
|
|
376229
|
+
parentVariableCollectionId?: string | undefined;
|
|
376230
|
+
parentVariableCollectionKey?: string | undefined;
|
|
376231
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
376232
|
+
r: number;
|
|
376233
|
+
g: number;
|
|
376234
|
+
b: number;
|
|
376235
|
+
} | {
|
|
376236
|
+
r: number;
|
|
376237
|
+
g: number;
|
|
376238
|
+
b: number;
|
|
376239
|
+
a: number;
|
|
376240
|
+
} | {
|
|
376241
|
+
id: string;
|
|
376242
|
+
type: "VARIABLE_ALIAS";
|
|
376243
|
+
resolvedValue?: string | number | boolean | {
|
|
376244
|
+
r: number;
|
|
376245
|
+
g: number;
|
|
376246
|
+
b: number;
|
|
376247
|
+
} | {
|
|
376248
|
+
r: number;
|
|
376249
|
+
g: number;
|
|
376250
|
+
b: number;
|
|
376251
|
+
a: number;
|
|
376252
|
+
} | undefined;
|
|
376253
|
+
referenceOrigin?: {
|
|
376254
|
+
name: string;
|
|
376255
|
+
remote: boolean;
|
|
376256
|
+
} | null | undefined;
|
|
376257
|
+
}>> | undefined;
|
|
375624
376258
|
};
|
|
375625
376259
|
updateCollection(collectionId: string, collectionUpdate: TestFVPCollectionUpdate): void;
|
|
375626
376260
|
deleteCollection(collectionId: string): void;
|
|
@@ -375629,6 +376263,7 @@ declare class TestFVPDataBuilder {
|
|
|
375629
376263
|
}): {
|
|
375630
376264
|
name: string;
|
|
375631
376265
|
modeId: string;
|
|
376266
|
+
parentModeId?: string | undefined;
|
|
375632
376267
|
};
|
|
375633
376268
|
private addModeToCollection;
|
|
375634
376269
|
addVariable(variable: TestFVPVariableCreate): {
|
|
@@ -375668,6 +376303,7 @@ declare class TestFVPDataBuilder {
|
|
|
375668
376303
|
}>;
|
|
375669
376304
|
hiddenFromPublishing: boolean;
|
|
375670
376305
|
scopes: string[];
|
|
376306
|
+
variableCollectionKey?: string | undefined;
|
|
375671
376307
|
codeSyntax?: Record<string, any> | undefined;
|
|
375672
376308
|
};
|
|
375673
376309
|
updateVariable(variableId: string, data: TestFVPVariableUpdate): void;
|
|
@@ -375683,8 +376319,40 @@ declare class TestFVPDataBuilder {
|
|
|
375683
376319
|
modes: {
|
|
375684
376320
|
name: string;
|
|
375685
376321
|
modeId: string;
|
|
376322
|
+
parentModeId?: string | undefined;
|
|
375686
376323
|
}[];
|
|
375687
376324
|
defaultModeId: string;
|
|
376325
|
+
key?: string | undefined;
|
|
376326
|
+
isExtension?: boolean | undefined;
|
|
376327
|
+
parentVariableCollectionId?: string | undefined;
|
|
376328
|
+
parentVariableCollectionKey?: string | undefined;
|
|
376329
|
+
variableOverrides?: Record<string, Record<string, string | number | boolean | {
|
|
376330
|
+
r: number;
|
|
376331
|
+
g: number;
|
|
376332
|
+
b: number;
|
|
376333
|
+
} | {
|
|
376334
|
+
r: number;
|
|
376335
|
+
g: number;
|
|
376336
|
+
b: number;
|
|
376337
|
+
a: number;
|
|
376338
|
+
} | {
|
|
376339
|
+
id: string;
|
|
376340
|
+
type: "VARIABLE_ALIAS";
|
|
376341
|
+
resolvedValue?: string | number | boolean | {
|
|
376342
|
+
r: number;
|
|
376343
|
+
g: number;
|
|
376344
|
+
b: number;
|
|
376345
|
+
} | {
|
|
376346
|
+
r: number;
|
|
376347
|
+
g: number;
|
|
376348
|
+
b: number;
|
|
376349
|
+
a: number;
|
|
376350
|
+
} | undefined;
|
|
376351
|
+
referenceOrigin?: {
|
|
376352
|
+
name: string;
|
|
376353
|
+
remote: boolean;
|
|
376354
|
+
} | null | undefined;
|
|
376355
|
+
}>> | undefined;
|
|
375688
376356
|
}>;
|
|
375689
376357
|
variables: Record<string, {
|
|
375690
376358
|
id: string;
|
|
@@ -375723,15 +376391,17 @@ declare class TestFVPDataBuilder {
|
|
|
375723
376391
|
}>;
|
|
375724
376392
|
hiddenFromPublishing: boolean;
|
|
375725
376393
|
scopes: string[];
|
|
376394
|
+
variableCollectionKey?: string | undefined;
|
|
375726
376395
|
codeSyntax?: Record<string, any> | undefined;
|
|
375727
376396
|
}>;
|
|
376397
|
+
variablesOrder?: string[] | undefined;
|
|
375728
376398
|
mappings?: {
|
|
375729
376399
|
supernovaBrand: string;
|
|
375730
376400
|
variableCollections: string[];
|
|
375731
376401
|
variableMode: string;
|
|
375732
376402
|
supernovaTheme?: string | null | undefined;
|
|
376403
|
+
variableCollectionKeys?: string[] | undefined;
|
|
375733
376404
|
}[] | undefined;
|
|
375734
|
-
variablesOrder?: string[] | undefined;
|
|
375735
376405
|
};
|
|
375736
376406
|
private nextModeId;
|
|
375737
376407
|
private nextCollectionId;
|
|
@@ -375801,4 +376471,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
375801
376471
|
reason: ValidationErrorReason | undefined;
|
|
375802
376472
|
};
|
|
375803
376473
|
|
|
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 };
|
|
376474
|
+
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 };
|