@supernova-studio/client 1.10.18 → 1.10.19

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 CHANGED
@@ -97918,6 +97918,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
97918
97918
  updatedAt: z.ZodOptional<z.ZodDate>;
97919
97919
  workspaceId: z.ZodString;
97920
97920
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
97921
+ isArchived: z.ZodOptional<z.ZodBoolean>;
97921
97922
  }, "fpContextId"> & {
97922
97923
  context: z.ZodObject<{
97923
97924
  createdAt: z.ZodDate;
@@ -98262,6 +98263,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
98262
98263
  instruction: string | null;
98263
98264
  updatedAt?: Date | undefined;
98264
98265
  createdByUserId?: string | undefined;
98266
+ isArchived?: boolean | undefined;
98265
98267
  }, {
98266
98268
  id: string;
98267
98269
  createdAt: Date;
@@ -98338,6 +98340,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
98338
98340
  tags?: string[] | undefined;
98339
98341
  updatedAt?: Date | undefined;
98340
98342
  createdByUserId?: string | undefined;
98343
+ isArchived?: boolean | undefined;
98341
98344
  }>;
98342
98345
  type DTOForgeProject = z.infer<typeof DTOForgeProject>;
98343
98346
  declare const DTOForgeProjectGetResponse: z.ZodObject<{
@@ -98362,6 +98365,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
98362
98365
  updatedAt: z.ZodOptional<z.ZodDate>;
98363
98366
  workspaceId: z.ZodString;
98364
98367
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
98368
+ isArchived: z.ZodOptional<z.ZodBoolean>;
98365
98369
  }, "fpContextId"> & {
98366
98370
  context: z.ZodObject<{
98367
98371
  createdAt: z.ZodDate;
@@ -98706,6 +98710,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
98706
98710
  instruction: string | null;
98707
98711
  updatedAt?: Date | undefined;
98708
98712
  createdByUserId?: string | undefined;
98713
+ isArchived?: boolean | undefined;
98709
98714
  }, {
98710
98715
  id: string;
98711
98716
  createdAt: Date;
@@ -98782,6 +98787,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
98782
98787
  tags?: string[] | undefined;
98783
98788
  updatedAt?: Date | undefined;
98784
98789
  createdByUserId?: string | undefined;
98790
+ isArchived?: boolean | undefined;
98785
98791
  }>>;
98786
98792
  }, "strip", z.ZodTypeAny, {
98787
98793
  project: {
@@ -98860,6 +98866,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
98860
98866
  instruction: string | null;
98861
98867
  updatedAt?: Date | undefined;
98862
98868
  createdByUserId?: string | undefined;
98869
+ isArchived?: boolean | undefined;
98863
98870
  } | null;
98864
98871
  }, {
98865
98872
  project: {
@@ -98938,6 +98945,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
98938
98945
  tags?: string[] | undefined;
98939
98946
  updatedAt?: Date | undefined;
98940
98947
  createdByUserId?: string | undefined;
98948
+ isArchived?: boolean | undefined;
98941
98949
  } | null;
98942
98950
  }>;
98943
98951
  type DTOForgeProjectGetResponse = z.infer<typeof DTOForgeProjectGetResponse>;
@@ -98963,6 +98971,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
98963
98971
  updatedAt: z.ZodOptional<z.ZodDate>;
98964
98972
  workspaceId: z.ZodString;
98965
98973
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
98974
+ isArchived: z.ZodOptional<z.ZodBoolean>;
98966
98975
  }, "fpContextId"> & {
98967
98976
  context: z.ZodObject<{
98968
98977
  createdAt: z.ZodDate;
@@ -99307,6 +99316,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
99307
99316
  instruction: string | null;
99308
99317
  updatedAt?: Date | undefined;
99309
99318
  createdByUserId?: string | undefined;
99319
+ isArchived?: boolean | undefined;
99310
99320
  }, {
99311
99321
  id: string;
99312
99322
  createdAt: Date;
@@ -99383,6 +99393,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
99383
99393
  tags?: string[] | undefined;
99384
99394
  updatedAt?: Date | undefined;
99385
99395
  createdByUserId?: string | undefined;
99396
+ isArchived?: boolean | undefined;
99386
99397
  }>, "many">;
99387
99398
  }, "strip", z.ZodTypeAny, {
99388
99399
  projects: {
@@ -99461,6 +99472,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
99461
99472
  instruction: string | null;
99462
99473
  updatedAt?: Date | undefined;
99463
99474
  createdByUserId?: string | undefined;
99475
+ isArchived?: boolean | undefined;
99464
99476
  }[];
99465
99477
  }, {
99466
99478
  projects: {
@@ -99539,6 +99551,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
99539
99551
  tags?: string[] | undefined;
99540
99552
  updatedAt?: Date | undefined;
99541
99553
  createdByUserId?: string | undefined;
99554
+ isArchived?: boolean | undefined;
99542
99555
  }[];
99543
99556
  }>;
99544
99557
  type DTOForgeProjectsListResponse = z.infer<typeof DTOForgeProjectsListResponse>;
@@ -99564,6 +99577,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
99564
99577
  updatedAt: z.ZodOptional<z.ZodDate>;
99565
99578
  workspaceId: z.ZodString;
99566
99579
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
99580
+ isArchived: z.ZodOptional<z.ZodBoolean>;
99567
99581
  }, "fpContextId"> & {
99568
99582
  context: z.ZodObject<{
99569
99583
  createdAt: z.ZodDate;
@@ -99908,6 +99922,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
99908
99922
  instruction: string | null;
99909
99923
  updatedAt?: Date | undefined;
99910
99924
  createdByUserId?: string | undefined;
99925
+ isArchived?: boolean | undefined;
99911
99926
  }, {
99912
99927
  id: string;
99913
99928
  createdAt: Date;
@@ -99984,6 +99999,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
99984
99999
  tags?: string[] | undefined;
99985
100000
  updatedAt?: Date | undefined;
99986
100001
  createdByUserId?: string | undefined;
100002
+ isArchived?: boolean | undefined;
99987
100003
  }>;
99988
100004
  }, "strip", z.ZodTypeAny, {
99989
100005
  project: {
@@ -100062,6 +100078,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
100062
100078
  instruction: string | null;
100063
100079
  updatedAt?: Date | undefined;
100064
100080
  createdByUserId?: string | undefined;
100081
+ isArchived?: boolean | undefined;
100065
100082
  };
100066
100083
  }, {
100067
100084
  project: {
@@ -100140,6 +100157,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
100140
100157
  tags?: string[] | undefined;
100141
100158
  updatedAt?: Date | undefined;
100142
100159
  createdByUserId?: string | undefined;
100160
+ isArchived?: boolean | undefined;
100143
100161
  };
100144
100162
  }>;
100145
100163
  type DTOCreateForgeProjectResponse = z.infer<typeof DTOCreateForgeProjectResponse>;
@@ -100165,6 +100183,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100165
100183
  updatedAt: z.ZodOptional<z.ZodDate>;
100166
100184
  workspaceId: z.ZodString;
100167
100185
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
100186
+ isArchived: z.ZodOptional<z.ZodBoolean>;
100168
100187
  }, "fpContextId"> & {
100169
100188
  context: z.ZodObject<{
100170
100189
  createdAt: z.ZodDate;
@@ -100509,6 +100528,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100509
100528
  instruction: string | null;
100510
100529
  updatedAt?: Date | undefined;
100511
100530
  createdByUserId?: string | undefined;
100531
+ isArchived?: boolean | undefined;
100512
100532
  }, {
100513
100533
  id: string;
100514
100534
  createdAt: Date;
@@ -100585,6 +100605,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100585
100605
  tags?: string[] | undefined;
100586
100606
  updatedAt?: Date | undefined;
100587
100607
  createdByUserId?: string | undefined;
100608
+ isArchived?: boolean | undefined;
100588
100609
  }>>;
100589
100610
  }, "strip", z.ZodTypeAny, {
100590
100611
  project: {
@@ -100663,6 +100684,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100663
100684
  instruction: string | null;
100664
100685
  updatedAt?: Date | undefined;
100665
100686
  createdByUserId?: string | undefined;
100687
+ isArchived?: boolean | undefined;
100666
100688
  } | null;
100667
100689
  }, {
100668
100690
  project: {
@@ -100741,6 +100763,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100741
100763
  tags?: string[] | undefined;
100742
100764
  updatedAt?: Date | undefined;
100743
100765
  createdByUserId?: string | undefined;
100766
+ isArchived?: boolean | undefined;
100744
100767
  } | null;
100745
100768
  }>;
100746
100769
  type DTOUpdateForgeProjectResponse = z.infer<typeof DTOUpdateForgeProjectResponse>;
@@ -100766,6 +100789,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
100766
100789
  updatedAt: z.ZodOptional<z.ZodDate>;
100767
100790
  workspaceId: z.ZodString;
100768
100791
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
100792
+ isArchived: z.ZodOptional<z.ZodBoolean>;
100769
100793
  }, "fpContextId"> & {
100770
100794
  context: z.ZodObject<{
100771
100795
  createdAt: z.ZodDate;
@@ -101110,6 +101134,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
101110
101134
  instruction: string | null;
101111
101135
  updatedAt?: Date | undefined;
101112
101136
  createdByUserId?: string | undefined;
101137
+ isArchived?: boolean | undefined;
101113
101138
  }, {
101114
101139
  id: string;
101115
101140
  createdAt: Date;
@@ -101186,6 +101211,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
101186
101211
  tags?: string[] | undefined;
101187
101212
  updatedAt?: Date | undefined;
101188
101213
  createdByUserId?: string | undefined;
101214
+ isArchived?: boolean | undefined;
101189
101215
  }>;
101190
101216
  }, "strip", z.ZodTypeAny, {
101191
101217
  project: {
@@ -101264,6 +101290,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
101264
101290
  instruction: string | null;
101265
101291
  updatedAt?: Date | undefined;
101266
101292
  createdByUserId?: string | undefined;
101293
+ isArchived?: boolean | undefined;
101267
101294
  };
101268
101295
  }, {
101269
101296
  project: {
@@ -101342,6 +101369,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
101342
101369
  tags?: string[] | undefined;
101343
101370
  updatedAt?: Date | undefined;
101344
101371
  createdByUserId?: string | undefined;
101372
+ isArchived?: boolean | undefined;
101345
101373
  };
101346
101374
  }>;
101347
101375
  type DTOUGetForgeProjectResponse = z.infer<typeof DTOUGetForgeProjectResponse>;
@@ -101366,7 +101394,8 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
101366
101394
  updatedAt: z.ZodOptional<z.ZodDate>;
101367
101395
  workspaceId: z.ZodString;
101368
101396
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
101369
- }, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction">, "strip", z.ZodTypeAny, {
101397
+ isArchived: z.ZodOptional<z.ZodBoolean>;
101398
+ }, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction" | "isArchived">, "strip", z.ZodTypeAny, {
101370
101399
  name: string;
101371
101400
  meta: {
101372
101401
  name: string;
@@ -101376,6 +101405,7 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
101376
101405
  accessMode: "Open" | "InviteOnly";
101377
101406
  fpContextId: string;
101378
101407
  instruction: string | null;
101408
+ isArchived?: boolean | undefined;
101379
101409
  }, {
101380
101410
  name: string;
101381
101411
  meta: {
@@ -101386,6 +101416,7 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
101386
101416
  fpContextId: string;
101387
101417
  instruction: string | null;
101388
101418
  tags?: string[] | undefined;
101419
+ isArchived?: boolean | undefined;
101389
101420
  }>;
101390
101421
  type DTOCreateForgeProject = z.infer<typeof DTOCreateForgeProject>;
101391
101422
  declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
@@ -101409,7 +101440,8 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
101409
101440
  updatedAt: z.ZodOptional<z.ZodDate>;
101410
101441
  workspaceId: z.ZodString;
101411
101442
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
101412
- }, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction"> & {
101443
+ isArchived: z.ZodOptional<z.ZodBoolean>;
101444
+ }, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction" | "isArchived"> & {
101413
101445
  id: z.ZodString;
101414
101446
  }, "strip", z.ZodTypeAny, {
101415
101447
  id: string;
@@ -101422,6 +101454,7 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
101422
101454
  accessMode: "Open" | "InviteOnly";
101423
101455
  fpContextId: string;
101424
101456
  instruction: string | null;
101457
+ isArchived?: boolean | undefined;
101425
101458
  }, {
101426
101459
  id: string;
101427
101460
  name: string;
@@ -101433,6 +101466,7 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
101433
101466
  fpContextId: string;
101434
101467
  instruction: string | null;
101435
101468
  tags?: string[] | undefined;
101469
+ isArchived?: boolean | undefined;
101436
101470
  }>;
101437
101471
  type DTOUpdateForgeProject = z.infer<typeof DTOUpdateForgeProject>;
101438
101472
  declare const DTORemoveForgeProjectResponse: z.ZodObject<{
@@ -143705,6 +143739,7 @@ declare class ForgeProjectsEndpoint {
143705
143739
  instruction: string | null;
143706
143740
  updatedAt?: Date | undefined;
143707
143741
  createdByUserId?: string | undefined;
143742
+ isArchived?: boolean | undefined;
143708
143743
  }[];
143709
143744
  }>;
143710
143745
  create(workspaceId: string, body: DTOCreateForgeProject): Promise<{
@@ -143784,6 +143819,7 @@ declare class ForgeProjectsEndpoint {
143784
143819
  instruction: string | null;
143785
143820
  updatedAt?: Date | undefined;
143786
143821
  createdByUserId?: string | undefined;
143822
+ isArchived?: boolean | undefined;
143787
143823
  };
143788
143824
  }>;
143789
143825
  get(workspaceId: string, projectId: string): Promise<{
@@ -143863,6 +143899,7 @@ declare class ForgeProjectsEndpoint {
143863
143899
  instruction: string | null;
143864
143900
  updatedAt?: Date | undefined;
143865
143901
  createdByUserId?: string | undefined;
143902
+ isArchived?: boolean | undefined;
143866
143903
  } | null;
143867
143904
  }>;
143868
143905
  update(workspaceId: string, projectId: string, body: DTOUpdateForgeProject): Promise<{
@@ -143942,6 +143979,7 @@ declare class ForgeProjectsEndpoint {
143942
143979
  instruction: string | null;
143943
143980
  updatedAt?: Date | undefined;
143944
143981
  createdByUserId?: string | undefined;
143982
+ isArchived?: boolean | undefined;
143945
143983
  } | null;
143946
143984
  }>;
143947
143985
  delete(workspaceId: string, projectId: string): Promise<{
package/dist/index.d.ts CHANGED
@@ -97918,6 +97918,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
97918
97918
  updatedAt: z.ZodOptional<z.ZodDate>;
97919
97919
  workspaceId: z.ZodString;
97920
97920
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
97921
+ isArchived: z.ZodOptional<z.ZodBoolean>;
97921
97922
  }, "fpContextId"> & {
97922
97923
  context: z.ZodObject<{
97923
97924
  createdAt: z.ZodDate;
@@ -98262,6 +98263,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
98262
98263
  instruction: string | null;
98263
98264
  updatedAt?: Date | undefined;
98264
98265
  createdByUserId?: string | undefined;
98266
+ isArchived?: boolean | undefined;
98265
98267
  }, {
98266
98268
  id: string;
98267
98269
  createdAt: Date;
@@ -98338,6 +98340,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
98338
98340
  tags?: string[] | undefined;
98339
98341
  updatedAt?: Date | undefined;
98340
98342
  createdByUserId?: string | undefined;
98343
+ isArchived?: boolean | undefined;
98341
98344
  }>;
98342
98345
  type DTOForgeProject = z.infer<typeof DTOForgeProject>;
98343
98346
  declare const DTOForgeProjectGetResponse: z.ZodObject<{
@@ -98362,6 +98365,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
98362
98365
  updatedAt: z.ZodOptional<z.ZodDate>;
98363
98366
  workspaceId: z.ZodString;
98364
98367
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
98368
+ isArchived: z.ZodOptional<z.ZodBoolean>;
98365
98369
  }, "fpContextId"> & {
98366
98370
  context: z.ZodObject<{
98367
98371
  createdAt: z.ZodDate;
@@ -98706,6 +98710,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
98706
98710
  instruction: string | null;
98707
98711
  updatedAt?: Date | undefined;
98708
98712
  createdByUserId?: string | undefined;
98713
+ isArchived?: boolean | undefined;
98709
98714
  }, {
98710
98715
  id: string;
98711
98716
  createdAt: Date;
@@ -98782,6 +98787,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
98782
98787
  tags?: string[] | undefined;
98783
98788
  updatedAt?: Date | undefined;
98784
98789
  createdByUserId?: string | undefined;
98790
+ isArchived?: boolean | undefined;
98785
98791
  }>>;
98786
98792
  }, "strip", z.ZodTypeAny, {
98787
98793
  project: {
@@ -98860,6 +98866,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
98860
98866
  instruction: string | null;
98861
98867
  updatedAt?: Date | undefined;
98862
98868
  createdByUserId?: string | undefined;
98869
+ isArchived?: boolean | undefined;
98863
98870
  } | null;
98864
98871
  }, {
98865
98872
  project: {
@@ -98938,6 +98945,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
98938
98945
  tags?: string[] | undefined;
98939
98946
  updatedAt?: Date | undefined;
98940
98947
  createdByUserId?: string | undefined;
98948
+ isArchived?: boolean | undefined;
98941
98949
  } | null;
98942
98950
  }>;
98943
98951
  type DTOForgeProjectGetResponse = z.infer<typeof DTOForgeProjectGetResponse>;
@@ -98963,6 +98971,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
98963
98971
  updatedAt: z.ZodOptional<z.ZodDate>;
98964
98972
  workspaceId: z.ZodString;
98965
98973
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
98974
+ isArchived: z.ZodOptional<z.ZodBoolean>;
98966
98975
  }, "fpContextId"> & {
98967
98976
  context: z.ZodObject<{
98968
98977
  createdAt: z.ZodDate;
@@ -99307,6 +99316,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
99307
99316
  instruction: string | null;
99308
99317
  updatedAt?: Date | undefined;
99309
99318
  createdByUserId?: string | undefined;
99319
+ isArchived?: boolean | undefined;
99310
99320
  }, {
99311
99321
  id: string;
99312
99322
  createdAt: Date;
@@ -99383,6 +99393,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
99383
99393
  tags?: string[] | undefined;
99384
99394
  updatedAt?: Date | undefined;
99385
99395
  createdByUserId?: string | undefined;
99396
+ isArchived?: boolean | undefined;
99386
99397
  }>, "many">;
99387
99398
  }, "strip", z.ZodTypeAny, {
99388
99399
  projects: {
@@ -99461,6 +99472,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
99461
99472
  instruction: string | null;
99462
99473
  updatedAt?: Date | undefined;
99463
99474
  createdByUserId?: string | undefined;
99475
+ isArchived?: boolean | undefined;
99464
99476
  }[];
99465
99477
  }, {
99466
99478
  projects: {
@@ -99539,6 +99551,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
99539
99551
  tags?: string[] | undefined;
99540
99552
  updatedAt?: Date | undefined;
99541
99553
  createdByUserId?: string | undefined;
99554
+ isArchived?: boolean | undefined;
99542
99555
  }[];
99543
99556
  }>;
99544
99557
  type DTOForgeProjectsListResponse = z.infer<typeof DTOForgeProjectsListResponse>;
@@ -99564,6 +99577,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
99564
99577
  updatedAt: z.ZodOptional<z.ZodDate>;
99565
99578
  workspaceId: z.ZodString;
99566
99579
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
99580
+ isArchived: z.ZodOptional<z.ZodBoolean>;
99567
99581
  }, "fpContextId"> & {
99568
99582
  context: z.ZodObject<{
99569
99583
  createdAt: z.ZodDate;
@@ -99908,6 +99922,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
99908
99922
  instruction: string | null;
99909
99923
  updatedAt?: Date | undefined;
99910
99924
  createdByUserId?: string | undefined;
99925
+ isArchived?: boolean | undefined;
99911
99926
  }, {
99912
99927
  id: string;
99913
99928
  createdAt: Date;
@@ -99984,6 +99999,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
99984
99999
  tags?: string[] | undefined;
99985
100000
  updatedAt?: Date | undefined;
99986
100001
  createdByUserId?: string | undefined;
100002
+ isArchived?: boolean | undefined;
99987
100003
  }>;
99988
100004
  }, "strip", z.ZodTypeAny, {
99989
100005
  project: {
@@ -100062,6 +100078,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
100062
100078
  instruction: string | null;
100063
100079
  updatedAt?: Date | undefined;
100064
100080
  createdByUserId?: string | undefined;
100081
+ isArchived?: boolean | undefined;
100065
100082
  };
100066
100083
  }, {
100067
100084
  project: {
@@ -100140,6 +100157,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
100140
100157
  tags?: string[] | undefined;
100141
100158
  updatedAt?: Date | undefined;
100142
100159
  createdByUserId?: string | undefined;
100160
+ isArchived?: boolean | undefined;
100143
100161
  };
100144
100162
  }>;
100145
100163
  type DTOCreateForgeProjectResponse = z.infer<typeof DTOCreateForgeProjectResponse>;
@@ -100165,6 +100183,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100165
100183
  updatedAt: z.ZodOptional<z.ZodDate>;
100166
100184
  workspaceId: z.ZodString;
100167
100185
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
100186
+ isArchived: z.ZodOptional<z.ZodBoolean>;
100168
100187
  }, "fpContextId"> & {
100169
100188
  context: z.ZodObject<{
100170
100189
  createdAt: z.ZodDate;
@@ -100509,6 +100528,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100509
100528
  instruction: string | null;
100510
100529
  updatedAt?: Date | undefined;
100511
100530
  createdByUserId?: string | undefined;
100531
+ isArchived?: boolean | undefined;
100512
100532
  }, {
100513
100533
  id: string;
100514
100534
  createdAt: Date;
@@ -100585,6 +100605,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100585
100605
  tags?: string[] | undefined;
100586
100606
  updatedAt?: Date | undefined;
100587
100607
  createdByUserId?: string | undefined;
100608
+ isArchived?: boolean | undefined;
100588
100609
  }>>;
100589
100610
  }, "strip", z.ZodTypeAny, {
100590
100611
  project: {
@@ -100663,6 +100684,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100663
100684
  instruction: string | null;
100664
100685
  updatedAt?: Date | undefined;
100665
100686
  createdByUserId?: string | undefined;
100687
+ isArchived?: boolean | undefined;
100666
100688
  } | null;
100667
100689
  }, {
100668
100690
  project: {
@@ -100741,6 +100763,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100741
100763
  tags?: string[] | undefined;
100742
100764
  updatedAt?: Date | undefined;
100743
100765
  createdByUserId?: string | undefined;
100766
+ isArchived?: boolean | undefined;
100744
100767
  } | null;
100745
100768
  }>;
100746
100769
  type DTOUpdateForgeProjectResponse = z.infer<typeof DTOUpdateForgeProjectResponse>;
@@ -100766,6 +100789,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
100766
100789
  updatedAt: z.ZodOptional<z.ZodDate>;
100767
100790
  workspaceId: z.ZodString;
100768
100791
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
100792
+ isArchived: z.ZodOptional<z.ZodBoolean>;
100769
100793
  }, "fpContextId"> & {
100770
100794
  context: z.ZodObject<{
100771
100795
  createdAt: z.ZodDate;
@@ -101110,6 +101134,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
101110
101134
  instruction: string | null;
101111
101135
  updatedAt?: Date | undefined;
101112
101136
  createdByUserId?: string | undefined;
101137
+ isArchived?: boolean | undefined;
101113
101138
  }, {
101114
101139
  id: string;
101115
101140
  createdAt: Date;
@@ -101186,6 +101211,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
101186
101211
  tags?: string[] | undefined;
101187
101212
  updatedAt?: Date | undefined;
101188
101213
  createdByUserId?: string | undefined;
101214
+ isArchived?: boolean | undefined;
101189
101215
  }>;
101190
101216
  }, "strip", z.ZodTypeAny, {
101191
101217
  project: {
@@ -101264,6 +101290,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
101264
101290
  instruction: string | null;
101265
101291
  updatedAt?: Date | undefined;
101266
101292
  createdByUserId?: string | undefined;
101293
+ isArchived?: boolean | undefined;
101267
101294
  };
101268
101295
  }, {
101269
101296
  project: {
@@ -101342,6 +101369,7 @@ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
101342
101369
  tags?: string[] | undefined;
101343
101370
  updatedAt?: Date | undefined;
101344
101371
  createdByUserId?: string | undefined;
101372
+ isArchived?: boolean | undefined;
101345
101373
  };
101346
101374
  }>;
101347
101375
  type DTOUGetForgeProjectResponse = z.infer<typeof DTOUGetForgeProjectResponse>;
@@ -101366,7 +101394,8 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
101366
101394
  updatedAt: z.ZodOptional<z.ZodDate>;
101367
101395
  workspaceId: z.ZodString;
101368
101396
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
101369
- }, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction">, "strip", z.ZodTypeAny, {
101397
+ isArchived: z.ZodOptional<z.ZodBoolean>;
101398
+ }, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction" | "isArchived">, "strip", z.ZodTypeAny, {
101370
101399
  name: string;
101371
101400
  meta: {
101372
101401
  name: string;
@@ -101376,6 +101405,7 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
101376
101405
  accessMode: "Open" | "InviteOnly";
101377
101406
  fpContextId: string;
101378
101407
  instruction: string | null;
101408
+ isArchived?: boolean | undefined;
101379
101409
  }, {
101380
101410
  name: string;
101381
101411
  meta: {
@@ -101386,6 +101416,7 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
101386
101416
  fpContextId: string;
101387
101417
  instruction: string | null;
101388
101418
  tags?: string[] | undefined;
101419
+ isArchived?: boolean | undefined;
101389
101420
  }>;
101390
101421
  type DTOCreateForgeProject = z.infer<typeof DTOCreateForgeProject>;
101391
101422
  declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
@@ -101409,7 +101440,8 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
101409
101440
  updatedAt: z.ZodOptional<z.ZodDate>;
101410
101441
  workspaceId: z.ZodString;
101411
101442
  accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
101412
- }, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction"> & {
101443
+ isArchived: z.ZodOptional<z.ZodBoolean>;
101444
+ }, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction" | "isArchived"> & {
101413
101445
  id: z.ZodString;
101414
101446
  }, "strip", z.ZodTypeAny, {
101415
101447
  id: string;
@@ -101422,6 +101454,7 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
101422
101454
  accessMode: "Open" | "InviteOnly";
101423
101455
  fpContextId: string;
101424
101456
  instruction: string | null;
101457
+ isArchived?: boolean | undefined;
101425
101458
  }, {
101426
101459
  id: string;
101427
101460
  name: string;
@@ -101433,6 +101466,7 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
101433
101466
  fpContextId: string;
101434
101467
  instruction: string | null;
101435
101468
  tags?: string[] | undefined;
101469
+ isArchived?: boolean | undefined;
101436
101470
  }>;
101437
101471
  type DTOUpdateForgeProject = z.infer<typeof DTOUpdateForgeProject>;
101438
101472
  declare const DTORemoveForgeProjectResponse: z.ZodObject<{
@@ -143705,6 +143739,7 @@ declare class ForgeProjectsEndpoint {
143705
143739
  instruction: string | null;
143706
143740
  updatedAt?: Date | undefined;
143707
143741
  createdByUserId?: string | undefined;
143742
+ isArchived?: boolean | undefined;
143708
143743
  }[];
143709
143744
  }>;
143710
143745
  create(workspaceId: string, body: DTOCreateForgeProject): Promise<{
@@ -143784,6 +143819,7 @@ declare class ForgeProjectsEndpoint {
143784
143819
  instruction: string | null;
143785
143820
  updatedAt?: Date | undefined;
143786
143821
  createdByUserId?: string | undefined;
143822
+ isArchived?: boolean | undefined;
143787
143823
  };
143788
143824
  }>;
143789
143825
  get(workspaceId: string, projectId: string): Promise<{
@@ -143863,6 +143899,7 @@ declare class ForgeProjectsEndpoint {
143863
143899
  instruction: string | null;
143864
143900
  updatedAt?: Date | undefined;
143865
143901
  createdByUserId?: string | undefined;
143902
+ isArchived?: boolean | undefined;
143866
143903
  } | null;
143867
143904
  }>;
143868
143905
  update(workspaceId: string, projectId: string, body: DTOUpdateForgeProject): Promise<{
@@ -143942,6 +143979,7 @@ declare class ForgeProjectsEndpoint {
143942
143979
  instruction: string | null;
143943
143980
  updatedAt?: Date | undefined;
143944
143981
  createdByUserId?: string | undefined;
143982
+ isArchived?: boolean | undefined;
143945
143983
  } | null;
143946
143984
  }>;
143947
143985
  delete(workspaceId: string, projectId: string): Promise<{
package/dist/index.js CHANGED
@@ -5588,7 +5588,8 @@ var ForgeProject = _zod.z.object({
5588
5588
  tags: ForgeProjectTag,
5589
5589
  updatedAt: _zod.z.coerce.date().optional(),
5590
5590
  workspaceId: _zod.z.string(),
5591
- accessMode: ForgeProjectAccessMode
5591
+ accessMode: ForgeProjectAccessMode,
5592
+ isArchived: _zod.z.boolean().optional()
5592
5593
  });
5593
5594
  var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
5594
5595
  OAuthProviderNames2["Figma"] = "figma";
@@ -9059,7 +9060,8 @@ var DTOCreateForgeProject = ForgeProject.pick({
9059
9060
  meta: true,
9060
9061
  tags: true,
9061
9062
  accessMode: true,
9062
- fpContextId: true
9063
+ fpContextId: true,
9064
+ isArchived: true
9063
9065
  });
9064
9066
  var DTOUpdateForgeProject = DTOCreateForgeProject.extend({ id: _zod.z.string() });
9065
9067
  var DTOForgeProjectGetResponse = _zod.z.object({ project: DTOForgeProject.nullable() });