@supernova-studio/client 1.47.2 → 1.47.3
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 +25 -1
- package/dist/index.d.ts +25 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -158392,6 +158392,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
158392
158392
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
158393
158393
|
isArchived: z.ZodBoolean;
|
|
158394
158394
|
emoji: z.ZodOptional<z.ZodString>;
|
|
158395
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
158395
158396
|
createdAt: z.ZodDate;
|
|
158396
158397
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
158397
158398
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -168207,6 +168208,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
168207
168208
|
tokenThemeIds: string[];
|
|
168208
168209
|
}[] | undefined;
|
|
168209
168210
|
} | undefined;
|
|
168211
|
+
tokenThemeSetId?: string | undefined;
|
|
168210
168212
|
lastUserActivityAt?: Date | undefined;
|
|
168211
168213
|
numberOfDocuments?: number | undefined;
|
|
168212
168214
|
}, {
|
|
@@ -169241,6 +169243,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
169241
169243
|
}[] | undefined;
|
|
169242
169244
|
} | undefined;
|
|
169243
169245
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
169246
|
+
tokenThemeSetId?: string | undefined;
|
|
169244
169247
|
lastUserActivityAt?: Date | undefined;
|
|
169245
169248
|
numberOfDocuments?: number | undefined;
|
|
169246
169249
|
}>;
|
|
@@ -169257,6 +169260,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
169257
169260
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
169258
169261
|
isArchived: z.ZodBoolean;
|
|
169259
169262
|
emoji: z.ZodOptional<z.ZodString>;
|
|
169263
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
169260
169264
|
createdAt: z.ZodDate;
|
|
169261
169265
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
169262
169266
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -178040,7 +178044,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178040
178044
|
tokenThemeIds: string[];
|
|
178041
178045
|
}[] | undefined;
|
|
178042
178046
|
}>>;
|
|
178043
|
-
}, "name" | "description" | "emoji" | "tags" | "accessMode" | "instruction" | "defaultRole"> & {
|
|
178047
|
+
}, "name" | "description" | "emoji" | "tags" | "accessMode" | "instruction" | "defaultRole" | "tokenThemeSetId"> & {
|
|
178044
178048
|
/** @deprecated use `name` and `description` properties on project */
|
|
178045
178049
|
meta: z.ZodOptional<z.ZodObject<{
|
|
178046
178050
|
name: z.ZodString;
|
|
@@ -178491,6 +178495,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178491
178495
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
178492
178496
|
}[] | undefined;
|
|
178493
178497
|
projectContextId?: string | undefined;
|
|
178498
|
+
tokenThemeSetId?: string | undefined;
|
|
178494
178499
|
fpContextId?: string | undefined;
|
|
178495
178500
|
initialFeature?: {
|
|
178496
178501
|
id: string;
|
|
@@ -178547,6 +178552,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178547
178552
|
}[] | undefined;
|
|
178548
178553
|
projectContextId?: string | undefined;
|
|
178549
178554
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
178555
|
+
tokenThemeSetId?: string | undefined;
|
|
178550
178556
|
fpContextId?: string | undefined;
|
|
178551
178557
|
initialFeature?: {
|
|
178552
178558
|
id: string;
|
|
@@ -178606,6 +178612,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
178606
178612
|
projectContextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
178607
178613
|
instruction: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
178608
178614
|
defaultRole: z.ZodOptional<z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>>;
|
|
178615
|
+
tokenThemeSetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
178609
178616
|
fpContextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
178610
178617
|
initialFeature: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
178611
178618
|
id: z.ZodString;
|
|
@@ -179024,6 +179031,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
179024
179031
|
projectContextId?: string | undefined;
|
|
179025
179032
|
instruction?: string | null | undefined;
|
|
179026
179033
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
179034
|
+
tokenThemeSetId?: string | undefined;
|
|
179027
179035
|
fpContextId?: string | undefined;
|
|
179028
179036
|
initialFeature?: {
|
|
179029
179037
|
id: string;
|
|
@@ -179077,6 +179085,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
179077
179085
|
projectContextId?: string | undefined;
|
|
179078
179086
|
instruction?: string | null | undefined;
|
|
179079
179087
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
179088
|
+
tokenThemeSetId?: string | undefined;
|
|
179080
179089
|
fpContextId?: string | undefined;
|
|
179081
179090
|
initialFeature?: {
|
|
179082
179091
|
id: string;
|
|
@@ -179130,6 +179139,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
179130
179139
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
179131
179140
|
isArchived: z.ZodBoolean;
|
|
179132
179141
|
emoji: z.ZodOptional<z.ZodString>;
|
|
179142
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
179133
179143
|
createdAt: z.ZodDate;
|
|
179134
179144
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
179135
179145
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -188948,6 +188958,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
188948
188958
|
tokenThemeIds: string[];
|
|
188949
188959
|
}[] | undefined;
|
|
188950
188960
|
} | undefined;
|
|
188961
|
+
tokenThemeSetId?: string | undefined;
|
|
188951
188962
|
lastUserActivityAt?: Date | undefined;
|
|
188952
188963
|
numberOfDocuments?: number | undefined;
|
|
188953
188964
|
}, {
|
|
@@ -189983,6 +189994,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
189983
189994
|
}[] | undefined;
|
|
189984
189995
|
} | undefined;
|
|
189985
189996
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
189997
|
+
tokenThemeSetId?: string | undefined;
|
|
189986
189998
|
lastUserActivityAt?: Date | undefined;
|
|
189987
189999
|
numberOfDocuments?: number | undefined;
|
|
189988
190000
|
}>;
|
|
@@ -191020,6 +191032,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
191020
191032
|
tokenThemeIds: string[];
|
|
191021
191033
|
}[] | undefined;
|
|
191022
191034
|
} | undefined;
|
|
191035
|
+
tokenThemeSetId?: string | undefined;
|
|
191023
191036
|
lastUserActivityAt?: Date | undefined;
|
|
191024
191037
|
numberOfDocuments?: number | undefined;
|
|
191025
191038
|
};
|
|
@@ -192057,6 +192070,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
192057
192070
|
}[] | undefined;
|
|
192058
192071
|
} | undefined;
|
|
192059
192072
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
192073
|
+
tokenThemeSetId?: string | undefined;
|
|
192060
192074
|
lastUserActivityAt?: Date | undefined;
|
|
192061
192075
|
numberOfDocuments?: number | undefined;
|
|
192062
192076
|
};
|
|
@@ -192075,6 +192089,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
192075
192089
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
192076
192090
|
isArchived: z.ZodBoolean;
|
|
192077
192091
|
emoji: z.ZodOptional<z.ZodString>;
|
|
192092
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
192078
192093
|
createdAt: z.ZodDate;
|
|
192079
192094
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
192080
192095
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -201893,6 +201908,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
201893
201908
|
tokenThemeIds: string[];
|
|
201894
201909
|
}[] | undefined;
|
|
201895
201910
|
} | undefined;
|
|
201911
|
+
tokenThemeSetId?: string | undefined;
|
|
201896
201912
|
lastUserActivityAt?: Date | undefined;
|
|
201897
201913
|
numberOfDocuments?: number | undefined;
|
|
201898
201914
|
}, {
|
|
@@ -202928,6 +202944,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
202928
202944
|
}[] | undefined;
|
|
202929
202945
|
} | undefined;
|
|
202930
202946
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
202947
|
+
tokenThemeSetId?: string | undefined;
|
|
202931
202948
|
lastUserActivityAt?: Date | undefined;
|
|
202932
202949
|
numberOfDocuments?: number | undefined;
|
|
202933
202950
|
}>, "many">;
|
|
@@ -203965,6 +203982,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
203965
203982
|
tokenThemeIds: string[];
|
|
203966
203983
|
}[] | undefined;
|
|
203967
203984
|
} | undefined;
|
|
203985
|
+
tokenThemeSetId?: string | undefined;
|
|
203968
203986
|
lastUserActivityAt?: Date | undefined;
|
|
203969
203987
|
numberOfDocuments?: number | undefined;
|
|
203970
203988
|
}[];
|
|
@@ -205002,6 +205020,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
205002
205020
|
}[] | undefined;
|
|
205003
205021
|
} | undefined;
|
|
205004
205022
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
205023
|
+
tokenThemeSetId?: string | undefined;
|
|
205005
205024
|
lastUserActivityAt?: Date | undefined;
|
|
205006
205025
|
numberOfDocuments?: number | undefined;
|
|
205007
205026
|
}[];
|
|
@@ -252623,6 +252642,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
252623
252642
|
tokenThemeIds: string[];
|
|
252624
252643
|
}[] | undefined;
|
|
252625
252644
|
} | undefined;
|
|
252645
|
+
tokenThemeSetId?: string | undefined;
|
|
252626
252646
|
lastUserActivityAt?: Date | undefined;
|
|
252627
252647
|
numberOfDocuments?: number | undefined;
|
|
252628
252648
|
}[];
|
|
@@ -253661,6 +253681,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
253661
253681
|
tokenThemeIds: string[];
|
|
253662
253682
|
}[] | undefined;
|
|
253663
253683
|
} | undefined;
|
|
253684
|
+
tokenThemeSetId?: string | undefined;
|
|
253664
253685
|
lastUserActivityAt?: Date | undefined;
|
|
253665
253686
|
numberOfDocuments?: number | undefined;
|
|
253666
253687
|
};
|
|
@@ -254699,6 +254720,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
254699
254720
|
tokenThemeIds: string[];
|
|
254700
254721
|
}[] | undefined;
|
|
254701
254722
|
} | undefined;
|
|
254723
|
+
tokenThemeSetId?: string | undefined;
|
|
254702
254724
|
lastUserActivityAt?: Date | undefined;
|
|
254703
254725
|
numberOfDocuments?: number | undefined;
|
|
254704
254726
|
};
|
|
@@ -255737,6 +255759,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
255737
255759
|
tokenThemeIds: string[];
|
|
255738
255760
|
}[] | undefined;
|
|
255739
255761
|
} | undefined;
|
|
255762
|
+
tokenThemeSetId?: string | undefined;
|
|
255740
255763
|
lastUserActivityAt?: Date | undefined;
|
|
255741
255764
|
numberOfDocuments?: number | undefined;
|
|
255742
255765
|
};
|
|
@@ -256775,6 +256798,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
256775
256798
|
tokenThemeIds: string[];
|
|
256776
256799
|
}[] | undefined;
|
|
256777
256800
|
} | undefined;
|
|
256801
|
+
tokenThemeSetId?: string | undefined;
|
|
256778
256802
|
lastUserActivityAt?: Date | undefined;
|
|
256779
256803
|
numberOfDocuments?: number | undefined;
|
|
256780
256804
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -158392,6 +158392,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
158392
158392
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
158393
158393
|
isArchived: z.ZodBoolean;
|
|
158394
158394
|
emoji: z.ZodOptional<z.ZodString>;
|
|
158395
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
158395
158396
|
createdAt: z.ZodDate;
|
|
158396
158397
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
158397
158398
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -168207,6 +168208,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
168207
168208
|
tokenThemeIds: string[];
|
|
168208
168209
|
}[] | undefined;
|
|
168209
168210
|
} | undefined;
|
|
168211
|
+
tokenThemeSetId?: string | undefined;
|
|
168210
168212
|
lastUserActivityAt?: Date | undefined;
|
|
168211
168213
|
numberOfDocuments?: number | undefined;
|
|
168212
168214
|
}, {
|
|
@@ -169241,6 +169243,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
169241
169243
|
}[] | undefined;
|
|
169242
169244
|
} | undefined;
|
|
169243
169245
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
169246
|
+
tokenThemeSetId?: string | undefined;
|
|
169244
169247
|
lastUserActivityAt?: Date | undefined;
|
|
169245
169248
|
numberOfDocuments?: number | undefined;
|
|
169246
169249
|
}>;
|
|
@@ -169257,6 +169260,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
169257
169260
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
169258
169261
|
isArchived: z.ZodBoolean;
|
|
169259
169262
|
emoji: z.ZodOptional<z.ZodString>;
|
|
169263
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
169260
169264
|
createdAt: z.ZodDate;
|
|
169261
169265
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
169262
169266
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -178040,7 +178044,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178040
178044
|
tokenThemeIds: string[];
|
|
178041
178045
|
}[] | undefined;
|
|
178042
178046
|
}>>;
|
|
178043
|
-
}, "name" | "description" | "emoji" | "tags" | "accessMode" | "instruction" | "defaultRole"> & {
|
|
178047
|
+
}, "name" | "description" | "emoji" | "tags" | "accessMode" | "instruction" | "defaultRole" | "tokenThemeSetId"> & {
|
|
178044
178048
|
/** @deprecated use `name` and `description` properties on project */
|
|
178045
178049
|
meta: z.ZodOptional<z.ZodObject<{
|
|
178046
178050
|
name: z.ZodString;
|
|
@@ -178491,6 +178495,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178491
178495
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
178492
178496
|
}[] | undefined;
|
|
178493
178497
|
projectContextId?: string | undefined;
|
|
178498
|
+
tokenThemeSetId?: string | undefined;
|
|
178494
178499
|
fpContextId?: string | undefined;
|
|
178495
178500
|
initialFeature?: {
|
|
178496
178501
|
id: string;
|
|
@@ -178547,6 +178552,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178547
178552
|
}[] | undefined;
|
|
178548
178553
|
projectContextId?: string | undefined;
|
|
178549
178554
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
178555
|
+
tokenThemeSetId?: string | undefined;
|
|
178550
178556
|
fpContextId?: string | undefined;
|
|
178551
178557
|
initialFeature?: {
|
|
178552
178558
|
id: string;
|
|
@@ -178606,6 +178612,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
178606
178612
|
projectContextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
178607
178613
|
instruction: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
178608
178614
|
defaultRole: z.ZodOptional<z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>>;
|
|
178615
|
+
tokenThemeSetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
178609
178616
|
fpContextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
178610
178617
|
initialFeature: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
178611
178618
|
id: z.ZodString;
|
|
@@ -179024,6 +179031,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
179024
179031
|
projectContextId?: string | undefined;
|
|
179025
179032
|
instruction?: string | null | undefined;
|
|
179026
179033
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
179034
|
+
tokenThemeSetId?: string | undefined;
|
|
179027
179035
|
fpContextId?: string | undefined;
|
|
179028
179036
|
initialFeature?: {
|
|
179029
179037
|
id: string;
|
|
@@ -179077,6 +179085,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
179077
179085
|
projectContextId?: string | undefined;
|
|
179078
179086
|
instruction?: string | null | undefined;
|
|
179079
179087
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
179088
|
+
tokenThemeSetId?: string | undefined;
|
|
179080
179089
|
fpContextId?: string | undefined;
|
|
179081
179090
|
initialFeature?: {
|
|
179082
179091
|
id: string;
|
|
@@ -179130,6 +179139,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
179130
179139
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
179131
179140
|
isArchived: z.ZodBoolean;
|
|
179132
179141
|
emoji: z.ZodOptional<z.ZodString>;
|
|
179142
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
179133
179143
|
createdAt: z.ZodDate;
|
|
179134
179144
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
179135
179145
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -188948,6 +188958,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
188948
188958
|
tokenThemeIds: string[];
|
|
188949
188959
|
}[] | undefined;
|
|
188950
188960
|
} | undefined;
|
|
188961
|
+
tokenThemeSetId?: string | undefined;
|
|
188951
188962
|
lastUserActivityAt?: Date | undefined;
|
|
188952
188963
|
numberOfDocuments?: number | undefined;
|
|
188953
188964
|
}, {
|
|
@@ -189983,6 +189994,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
189983
189994
|
}[] | undefined;
|
|
189984
189995
|
} | undefined;
|
|
189985
189996
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
189997
|
+
tokenThemeSetId?: string | undefined;
|
|
189986
189998
|
lastUserActivityAt?: Date | undefined;
|
|
189987
189999
|
numberOfDocuments?: number | undefined;
|
|
189988
190000
|
}>;
|
|
@@ -191020,6 +191032,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
191020
191032
|
tokenThemeIds: string[];
|
|
191021
191033
|
}[] | undefined;
|
|
191022
191034
|
} | undefined;
|
|
191035
|
+
tokenThemeSetId?: string | undefined;
|
|
191023
191036
|
lastUserActivityAt?: Date | undefined;
|
|
191024
191037
|
numberOfDocuments?: number | undefined;
|
|
191025
191038
|
};
|
|
@@ -192057,6 +192070,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
192057
192070
|
}[] | undefined;
|
|
192058
192071
|
} | undefined;
|
|
192059
192072
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
192073
|
+
tokenThemeSetId?: string | undefined;
|
|
192060
192074
|
lastUserActivityAt?: Date | undefined;
|
|
192061
192075
|
numberOfDocuments?: number | undefined;
|
|
192062
192076
|
};
|
|
@@ -192075,6 +192089,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
192075
192089
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
192076
192090
|
isArchived: z.ZodBoolean;
|
|
192077
192091
|
emoji: z.ZodOptional<z.ZodString>;
|
|
192092
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
192078
192093
|
createdAt: z.ZodDate;
|
|
192079
192094
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
192080
192095
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -201893,6 +201908,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
201893
201908
|
tokenThemeIds: string[];
|
|
201894
201909
|
}[] | undefined;
|
|
201895
201910
|
} | undefined;
|
|
201911
|
+
tokenThemeSetId?: string | undefined;
|
|
201896
201912
|
lastUserActivityAt?: Date | undefined;
|
|
201897
201913
|
numberOfDocuments?: number | undefined;
|
|
201898
201914
|
}, {
|
|
@@ -202928,6 +202944,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
202928
202944
|
}[] | undefined;
|
|
202929
202945
|
} | undefined;
|
|
202930
202946
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
202947
|
+
tokenThemeSetId?: string | undefined;
|
|
202931
202948
|
lastUserActivityAt?: Date | undefined;
|
|
202932
202949
|
numberOfDocuments?: number | undefined;
|
|
202933
202950
|
}>, "many">;
|
|
@@ -203965,6 +203982,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
203965
203982
|
tokenThemeIds: string[];
|
|
203966
203983
|
}[] | undefined;
|
|
203967
203984
|
} | undefined;
|
|
203985
|
+
tokenThemeSetId?: string | undefined;
|
|
203968
203986
|
lastUserActivityAt?: Date | undefined;
|
|
203969
203987
|
numberOfDocuments?: number | undefined;
|
|
203970
203988
|
}[];
|
|
@@ -205002,6 +205020,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
205002
205020
|
}[] | undefined;
|
|
205003
205021
|
} | undefined;
|
|
205004
205022
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
205023
|
+
tokenThemeSetId?: string | undefined;
|
|
205005
205024
|
lastUserActivityAt?: Date | undefined;
|
|
205006
205025
|
numberOfDocuments?: number | undefined;
|
|
205007
205026
|
}[];
|
|
@@ -252623,6 +252642,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
252623
252642
|
tokenThemeIds: string[];
|
|
252624
252643
|
}[] | undefined;
|
|
252625
252644
|
} | undefined;
|
|
252645
|
+
tokenThemeSetId?: string | undefined;
|
|
252626
252646
|
lastUserActivityAt?: Date | undefined;
|
|
252627
252647
|
numberOfDocuments?: number | undefined;
|
|
252628
252648
|
}[];
|
|
@@ -253661,6 +253681,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
253661
253681
|
tokenThemeIds: string[];
|
|
253662
253682
|
}[] | undefined;
|
|
253663
253683
|
} | undefined;
|
|
253684
|
+
tokenThemeSetId?: string | undefined;
|
|
253664
253685
|
lastUserActivityAt?: Date | undefined;
|
|
253665
253686
|
numberOfDocuments?: number | undefined;
|
|
253666
253687
|
};
|
|
@@ -254699,6 +254720,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
254699
254720
|
tokenThemeIds: string[];
|
|
254700
254721
|
}[] | undefined;
|
|
254701
254722
|
} | undefined;
|
|
254723
|
+
tokenThemeSetId?: string | undefined;
|
|
254702
254724
|
lastUserActivityAt?: Date | undefined;
|
|
254703
254725
|
numberOfDocuments?: number | undefined;
|
|
254704
254726
|
};
|
|
@@ -255737,6 +255759,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
255737
255759
|
tokenThemeIds: string[];
|
|
255738
255760
|
}[] | undefined;
|
|
255739
255761
|
} | undefined;
|
|
255762
|
+
tokenThemeSetId?: string | undefined;
|
|
255740
255763
|
lastUserActivityAt?: Date | undefined;
|
|
255741
255764
|
numberOfDocuments?: number | undefined;
|
|
255742
255765
|
};
|
|
@@ -256775,6 +256798,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
256775
256798
|
tokenThemeIds: string[];
|
|
256776
256799
|
}[] | undefined;
|
|
256777
256800
|
} | undefined;
|
|
256801
|
+
tokenThemeSetId?: string | undefined;
|
|
256778
256802
|
lastUserActivityAt?: Date | undefined;
|
|
256779
256803
|
numberOfDocuments?: number | undefined;
|
|
256780
256804
|
};
|
package/dist/index.js
CHANGED
|
@@ -10491,6 +10491,7 @@ var DTOForgeProject = _zod.z.object({
|
|
|
10491
10491
|
defaultRole: DTOForgeProjectDefaultRole.default("Viewer"),
|
|
10492
10492
|
isArchived: _zod.z.boolean(),
|
|
10493
10493
|
emoji: _zod.z.string().optional(),
|
|
10494
|
+
tokenThemeSetId: _zod.z.string().optional(),
|
|
10494
10495
|
createdAt: _zod.z.coerce.date(),
|
|
10495
10496
|
createdByUserId: _zod.z.string().optional(),
|
|
10496
10497
|
lastUserActivityAt: _zod.z.coerce.date().optional(),
|
|
@@ -10518,7 +10519,8 @@ var DTOForgeProjectCreate = DTOForgeProject.pick({
|
|
|
10518
10519
|
tags: true,
|
|
10519
10520
|
accessMode: true,
|
|
10520
10521
|
defaultRole: true,
|
|
10521
|
-
emoji: true
|
|
10522
|
+
emoji: true,
|
|
10523
|
+
tokenThemeSetId: true
|
|
10522
10524
|
}).extend({
|
|
10523
10525
|
/** @deprecated use `name` and `description` properties on project */
|
|
10524
10526
|
meta: DTOForgeProject.shape.meta.optional(),
|