@corsair-dev/figma 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/dist/api.test.d.ts +2 -0
  2. package/dist/api.test.d.ts.map +1 -0
  3. package/dist/client.d.ts.map +1 -1
  4. package/dist/endpoints/activityLogs.d.ts +1 -1
  5. package/dist/endpoints/activityLogs.d.ts.map +1 -1
  6. package/dist/endpoints/comments.d.ts +1 -1
  7. package/dist/endpoints/comments.d.ts.map +1 -1
  8. package/dist/endpoints/components.d.ts +1 -1
  9. package/dist/endpoints/components.d.ts.map +1 -1
  10. package/dist/endpoints/designTools.d.ts +1 -1
  11. package/dist/endpoints/designTools.d.ts.map +1 -1
  12. package/dist/endpoints/devResources.d.ts +1 -1
  13. package/dist/endpoints/devResources.d.ts.map +1 -1
  14. package/dist/endpoints/example.d.ts +1 -1
  15. package/dist/endpoints/example.d.ts.map +1 -1
  16. package/dist/endpoints/files.d.ts +1 -1
  17. package/dist/endpoints/files.d.ts.map +1 -1
  18. package/dist/endpoints/index.d.ts +68 -68
  19. package/dist/endpoints/index.d.ts.map +1 -1
  20. package/dist/endpoints/libraryAnalytics.d.ts +1 -1
  21. package/dist/endpoints/libraryAnalytics.d.ts.map +1 -1
  22. package/dist/endpoints/payments.d.ts +1 -1
  23. package/dist/endpoints/payments.d.ts.map +1 -1
  24. package/dist/endpoints/projects.d.ts +1 -1
  25. package/dist/endpoints/projects.d.ts.map +1 -1
  26. package/dist/endpoints/styles.d.ts +1 -1
  27. package/dist/endpoints/styles.d.ts.map +1 -1
  28. package/dist/endpoints/types.d.ts +508 -508
  29. package/dist/endpoints/types.d.ts.map +1 -1
  30. package/dist/endpoints/users.d.ts +1 -1
  31. package/dist/endpoints/users.d.ts.map +1 -1
  32. package/dist/endpoints/variables.d.ts +1 -1
  33. package/dist/endpoints/variables.d.ts.map +1 -1
  34. package/dist/endpoints/webhooks.d.ts +1 -1
  35. package/dist/endpoints/webhooks.d.ts.map +1 -1
  36. package/dist/index.d.ts +258 -260
  37. package/dist/index.d.ts.map +1 -1
  38. package/dist/index.js +2 -2
  39. package/dist/schema/database.d.ts +20 -20
  40. package/dist/schema/index.d.ts +20 -20
  41. package/dist/webhooks/example.d.ts +1 -1
  42. package/dist/webhooks/example.d.ts.map +1 -1
  43. package/dist/webhooks/fileComment.d.ts +1 -1
  44. package/dist/webhooks/fileComment.d.ts.map +1 -1
  45. package/dist/webhooks/fileDelete.d.ts +1 -1
  46. package/dist/webhooks/fileDelete.d.ts.map +1 -1
  47. package/dist/webhooks/fileUpdate.d.ts +1 -1
  48. package/dist/webhooks/fileUpdate.d.ts.map +1 -1
  49. package/dist/webhooks/fileVersionUpdate.d.ts +1 -1
  50. package/dist/webhooks/fileVersionUpdate.d.ts.map +1 -1
  51. package/dist/webhooks/libraryPublish.d.ts +1 -1
  52. package/dist/webhooks/libraryPublish.d.ts.map +1 -1
  53. package/dist/webhooks/ping.d.ts +1 -1
  54. package/dist/webhooks/ping.d.ts.map +1 -1
  55. package/dist/webhooks/types.d.ts +37 -37
  56. package/dist/webhooks/types.d.ts.map +1 -1
  57. package/package.json +9 -3
package/dist/index.d.ts CHANGED
@@ -1,9 +1,7 @@
1
- import type { BindEndpoints, BindWebhooks, CorsairEndpoint, CorsairErrorHandler, CorsairPlugin, CorsairPluginContext, CorsairWebhook, KeyBuilderContext, PluginPermissionsConfig } from 'corsair/core';
2
- import type { AuthTypes, PickAuth } from 'corsair/core';
1
+ import type { AuthTypes, BindEndpoints, BindWebhooks, CorsairEndpoint, CorsairErrorHandler, CorsairPlugin, CorsairPluginContext, CorsairWebhook, KeyBuilderContext, PickAuth, PluginPermissionsConfig } from 'corsair/core';
3
2
  import type { FigmaEndpointInputs, FigmaEndpointOutputs } from './endpoints/types';
4
- import type { FigmaWebhookOutputs } from './webhooks/types';
5
3
  import { FigmaSchema } from './schema';
6
- import type { FigmaFileCommentEvent, FigmaFileUpdateEvent, FigmaFileDeleteEvent, FigmaFileVersionUpdateEvent, FigmaLibraryPublishEvent, FigmaPingEvent } from './webhooks/types';
4
+ import type { FigmaFileCommentEvent, FigmaFileDeleteEvent, FigmaFileUpdateEvent, FigmaFileVersionUpdateEvent, FigmaLibraryPublishEvent, FigmaPingEvent, FigmaWebhookOutputs } from './webhooks/types';
7
5
  export type FigmaPluginOptions = {
8
6
  authType?: PickAuth<'api_key'>;
9
7
  key?: string;
@@ -218,21 +216,21 @@ export declare const figmaEndpointSchemas: {
218
216
  emoji: import("zod").ZodOptional<import("zod").ZodString>;
219
217
  created_at: import("zod").ZodOptional<import("zod").ZodString>;
220
218
  }, "strip", import("zod").ZodTypeAny, {
221
- created_at?: string | undefined;
222
219
  user?: {
223
220
  id: string;
224
221
  handle?: string | undefined;
225
222
  img_url?: string | undefined;
226
223
  } | undefined;
227
224
  emoji?: string | undefined;
228
- }, {
229
225
  created_at?: string | undefined;
226
+ }, {
230
227
  user?: {
231
228
  id: string;
232
229
  handle?: string | undefined;
233
230
  img_url?: string | undefined;
234
231
  } | undefined;
235
232
  emoji?: string | undefined;
233
+ created_at?: string | undefined;
236
234
  }>, "many">>;
237
235
  created_at: import("zod").ZodOptional<import("zod").ZodString>;
238
236
  client_meta: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -252,49 +250,49 @@ export declare const figmaEndpointSchemas: {
252
250
  }>>;
253
251
  }, "strip", import("zod").ZodTypeAny, {
254
252
  id: string;
255
- created_at?: string | undefined;
256
253
  message?: string | undefined;
257
254
  user?: {
258
255
  id: string;
259
256
  handle?: string | undefined;
260
257
  img_url?: string | undefined;
261
258
  } | undefined;
259
+ created_at?: string | undefined;
262
260
  uuid?: string | null | undefined;
263
261
  file_key?: string | undefined;
264
262
  order_id?: string | null | undefined;
265
263
  parent_id?: string | null | undefined;
266
264
  reactions?: {
267
- created_at?: string | undefined;
268
265
  user?: {
269
266
  id: string;
270
267
  handle?: string | undefined;
271
268
  img_url?: string | undefined;
272
269
  } | undefined;
273
270
  emoji?: string | undefined;
271
+ created_at?: string | undefined;
274
272
  }[] | undefined;
275
273
  client_meta?: unknown;
276
274
  resolved_at?: string | null | undefined;
277
275
  }, {
278
276
  id: string;
279
- created_at?: string | undefined;
280
277
  message?: string | undefined;
281
278
  user?: {
282
279
  id: string;
283
280
  handle?: string | undefined;
284
281
  img_url?: string | undefined;
285
282
  } | undefined;
283
+ created_at?: string | undefined;
286
284
  uuid?: string | null | undefined;
287
285
  file_key?: string | undefined;
288
286
  order_id?: string | null | undefined;
289
287
  parent_id?: string | null | undefined;
290
288
  reactions?: {
291
- created_at?: string | undefined;
292
289
  user?: {
293
290
  id: string;
294
291
  handle?: string | undefined;
295
292
  img_url?: string | undefined;
296
293
  } | undefined;
297
294
  emoji?: string | undefined;
295
+ created_at?: string | undefined;
298
296
  }[] | undefined;
299
297
  client_meta?: unknown;
300
298
  resolved_at?: string | null | undefined;
@@ -358,21 +356,21 @@ export declare const figmaEndpointSchemas: {
358
356
  emoji: import("zod").ZodOptional<import("zod").ZodString>;
359
357
  created_at: import("zod").ZodOptional<import("zod").ZodString>;
360
358
  }, "strip", import("zod").ZodTypeAny, {
361
- created_at?: string | undefined;
362
359
  user?: {
363
360
  id: string;
364
361
  handle?: string | undefined;
365
362
  img_url?: string | undefined;
366
363
  } | undefined;
367
364
  emoji?: string | undefined;
368
- }, {
369
365
  created_at?: string | undefined;
366
+ }, {
370
367
  user?: {
371
368
  id: string;
372
369
  handle?: string | undefined;
373
370
  img_url?: string | undefined;
374
371
  } | undefined;
375
372
  emoji?: string | undefined;
373
+ created_at?: string | undefined;
376
374
  }>, "many">>;
377
375
  created_at: import("zod").ZodOptional<import("zod").ZodString>;
378
376
  client_meta: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -392,49 +390,49 @@ export declare const figmaEndpointSchemas: {
392
390
  }>>;
393
391
  }, "strip", import("zod").ZodTypeAny, {
394
392
  id: string;
395
- created_at?: string | undefined;
396
393
  message?: string | undefined;
397
394
  user?: {
398
395
  id: string;
399
396
  handle?: string | undefined;
400
397
  img_url?: string | undefined;
401
398
  } | undefined;
399
+ created_at?: string | undefined;
402
400
  uuid?: string | null | undefined;
403
401
  file_key?: string | undefined;
404
402
  order_id?: string | null | undefined;
405
403
  parent_id?: string | null | undefined;
406
404
  reactions?: {
407
- created_at?: string | undefined;
408
405
  user?: {
409
406
  id: string;
410
407
  handle?: string | undefined;
411
408
  img_url?: string | undefined;
412
409
  } | undefined;
413
410
  emoji?: string | undefined;
411
+ created_at?: string | undefined;
414
412
  }[] | undefined;
415
413
  client_meta?: unknown;
416
414
  resolved_at?: string | null | undefined;
417
415
  }, {
418
416
  id: string;
419
- created_at?: string | undefined;
420
417
  message?: string | undefined;
421
418
  user?: {
422
419
  id: string;
423
420
  handle?: string | undefined;
424
421
  img_url?: string | undefined;
425
422
  } | undefined;
423
+ created_at?: string | undefined;
426
424
  uuid?: string | null | undefined;
427
425
  file_key?: string | undefined;
428
426
  order_id?: string | null | undefined;
429
427
  parent_id?: string | null | undefined;
430
428
  reactions?: {
431
- created_at?: string | undefined;
432
429
  user?: {
433
430
  id: string;
434
431
  handle?: string | undefined;
435
432
  img_url?: string | undefined;
436
433
  } | undefined;
437
434
  emoji?: string | undefined;
435
+ created_at?: string | undefined;
438
436
  }[] | undefined;
439
437
  client_meta?: unknown;
440
438
  resolved_at?: string | null | undefined;
@@ -442,25 +440,25 @@ export declare const figmaEndpointSchemas: {
442
440
  }, "strip", import("zod").ZodTypeAny, {
443
441
  comments?: {
444
442
  id: string;
445
- created_at?: string | undefined;
446
443
  message?: string | undefined;
447
444
  user?: {
448
445
  id: string;
449
446
  handle?: string | undefined;
450
447
  img_url?: string | undefined;
451
448
  } | undefined;
449
+ created_at?: string | undefined;
452
450
  uuid?: string | null | undefined;
453
451
  file_key?: string | undefined;
454
452
  order_id?: string | null | undefined;
455
453
  parent_id?: string | null | undefined;
456
454
  reactions?: {
457
- created_at?: string | undefined;
458
455
  user?: {
459
456
  id: string;
460
457
  handle?: string | undefined;
461
458
  img_url?: string | undefined;
462
459
  } | undefined;
463
460
  emoji?: string | undefined;
461
+ created_at?: string | undefined;
464
462
  }[] | undefined;
465
463
  client_meta?: unknown;
466
464
  resolved_at?: string | null | undefined;
@@ -468,25 +466,25 @@ export declare const figmaEndpointSchemas: {
468
466
  }, {
469
467
  comments?: {
470
468
  id: string;
471
- created_at?: string | undefined;
472
469
  message?: string | undefined;
473
470
  user?: {
474
471
  id: string;
475
472
  handle?: string | undefined;
476
473
  img_url?: string | undefined;
477
474
  } | undefined;
475
+ created_at?: string | undefined;
478
476
  uuid?: string | null | undefined;
479
477
  file_key?: string | undefined;
480
478
  order_id?: string | null | undefined;
481
479
  parent_id?: string | null | undefined;
482
480
  reactions?: {
483
- created_at?: string | undefined;
484
481
  user?: {
485
482
  id: string;
486
483
  handle?: string | undefined;
487
484
  img_url?: string | undefined;
488
485
  } | undefined;
489
486
  emoji?: string | undefined;
487
+ created_at?: string | undefined;
490
488
  }[] | undefined;
491
489
  client_meta?: unknown;
492
490
  resolved_at?: string | null | undefined;
@@ -525,21 +523,21 @@ export declare const figmaEndpointSchemas: {
525
523
  emoji: import("zod").ZodOptional<import("zod").ZodString>;
526
524
  created_at: import("zod").ZodOptional<import("zod").ZodString>;
527
525
  }, "strip", import("zod").ZodTypeAny, {
528
- created_at?: string | undefined;
529
526
  user?: {
530
527
  id: string;
531
528
  handle?: string | undefined;
532
529
  img_url?: string | undefined;
533
530
  } | undefined;
534
531
  emoji?: string | undefined;
535
- }, {
536
532
  created_at?: string | undefined;
533
+ }, {
537
534
  user?: {
538
535
  id: string;
539
536
  handle?: string | undefined;
540
537
  img_url?: string | undefined;
541
538
  } | undefined;
542
539
  emoji?: string | undefined;
540
+ created_at?: string | undefined;
543
541
  }>, "many">>;
544
542
  pagination: import("zod").ZodOptional<import("zod").ZodObject<{
545
543
  cursor: import("zod").ZodOptional<import("zod").ZodString>;
@@ -550,26 +548,26 @@ export declare const figmaEndpointSchemas: {
550
548
  }>>;
551
549
  }, "strip", import("zod").ZodTypeAny, {
552
550
  reactions?: {
553
- created_at?: string | undefined;
554
551
  user?: {
555
552
  id: string;
556
553
  handle?: string | undefined;
557
554
  img_url?: string | undefined;
558
555
  } | undefined;
559
556
  emoji?: string | undefined;
557
+ created_at?: string | undefined;
560
558
  }[] | undefined;
561
559
  pagination?: {
562
560
  cursor?: string | undefined;
563
561
  } | undefined;
564
562
  }, {
565
563
  reactions?: {
566
- created_at?: string | undefined;
567
564
  user?: {
568
565
  id: string;
569
566
  handle?: string | undefined;
570
567
  img_url?: string | undefined;
571
568
  } | undefined;
572
569
  emoji?: string | undefined;
570
+ created_at?: string | undefined;
573
571
  }[] | undefined;
574
572
  pagination?: {
575
573
  cursor?: string | undefined;
@@ -637,23 +635,23 @@ export declare const figmaEndpointSchemas: {
637
635
  team_id: import("zod").ZodOptional<import("zod").ZodString>;
638
636
  description: import("zod").ZodOptional<import("zod").ZodString>;
639
637
  }, "strip", import("zod").ZodTypeAny, {
640
- event_type: string;
641
638
  endpoint: string;
642
639
  passcode: string;
640
+ event_type: string;
643
641
  status?: "ACTIVE" | "PAUSED" | undefined;
644
- description?: string | undefined;
645
642
  context?: string | undefined;
646
643
  team_id?: string | undefined;
647
644
  context_id?: string | undefined;
645
+ description?: string | undefined;
648
646
  }, {
649
- event_type: string;
650
647
  endpoint: string;
651
648
  passcode: string;
649
+ event_type: string;
652
650
  status?: "ACTIVE" | "PAUSED" | undefined;
653
- description?: string | undefined;
654
651
  context?: string | undefined;
655
652
  team_id?: string | undefined;
656
653
  context_id?: string | undefined;
654
+ description?: string | undefined;
657
655
  }>;
658
656
  readonly output: import("zod").ZodObject<{
659
657
  id: import("zod").ZodString;
@@ -669,25 +667,25 @@ export declare const figmaEndpointSchemas: {
669
667
  }, "strip", import("zod").ZodTypeAny, {
670
668
  id: string;
671
669
  status?: "ACTIVE" | "PAUSED" | undefined;
672
- event_type?: string | undefined;
673
- endpoint?: string | undefined;
674
- client_id?: string | null | undefined;
675
- description?: string | null | undefined;
676
670
  context?: "team" | "project" | "file" | null | undefined;
677
671
  team_id?: string | null | undefined;
672
+ endpoint?: string | undefined;
678
673
  passcode?: string | undefined;
674
+ client_id?: string | null | undefined;
679
675
  context_id?: string | null | undefined;
676
+ event_type?: string | undefined;
677
+ description?: string | null | undefined;
680
678
  }, {
681
679
  id: string;
682
680
  status?: "ACTIVE" | "PAUSED" | undefined;
683
- event_type?: string | undefined;
684
- endpoint?: string | undefined;
685
- client_id?: string | null | undefined;
686
- description?: string | null | undefined;
687
681
  context?: "team" | "project" | "file" | null | undefined;
688
682
  team_id?: string | null | undefined;
683
+ endpoint?: string | undefined;
689
684
  passcode?: string | undefined;
685
+ client_id?: string | null | undefined;
690
686
  context_id?: string | null | undefined;
687
+ event_type?: string | undefined;
688
+ description?: string | null | undefined;
691
689
  }>;
692
690
  };
693
691
  readonly 'webhooks.delete': {
@@ -712,25 +710,25 @@ export declare const figmaEndpointSchemas: {
712
710
  }, "strip", import("zod").ZodTypeAny, {
713
711
  id?: string | undefined;
714
712
  status?: "ACTIVE" | "PAUSED" | undefined;
715
- event_type?: string | undefined;
716
- endpoint?: string | undefined;
717
- client_id?: string | null | undefined;
718
- description?: string | null | undefined;
719
713
  context?: "team" | "project" | "file" | null | undefined;
720
714
  team_id?: string | null | undefined;
715
+ endpoint?: string | undefined;
721
716
  passcode?: string | undefined;
717
+ client_id?: string | null | undefined;
722
718
  context_id?: string | null | undefined;
719
+ event_type?: string | undefined;
720
+ description?: string | null | undefined;
723
721
  }, {
724
722
  id?: string | undefined;
725
723
  status?: "ACTIVE" | "PAUSED" | undefined;
726
- event_type?: string | undefined;
727
- endpoint?: string | undefined;
728
- client_id?: string | null | undefined;
729
- description?: string | null | undefined;
730
724
  context?: "team" | "project" | "file" | null | undefined;
731
725
  team_id?: string | null | undefined;
726
+ endpoint?: string | undefined;
732
727
  passcode?: string | undefined;
728
+ client_id?: string | null | undefined;
733
729
  context_id?: string | null | undefined;
730
+ event_type?: string | undefined;
731
+ description?: string | null | undefined;
734
732
  }>;
735
733
  };
736
734
  readonly 'webhooks.get': {
@@ -755,25 +753,25 @@ export declare const figmaEndpointSchemas: {
755
753
  }, "strip", import("zod").ZodTypeAny, {
756
754
  id: string;
757
755
  status?: "ACTIVE" | "PAUSED" | undefined;
758
- event_type?: string | undefined;
759
- endpoint?: string | undefined;
760
- client_id?: string | null | undefined;
761
- description?: string | null | undefined;
762
756
  context?: "team" | "project" | "file" | null | undefined;
763
757
  team_id?: string | null | undefined;
758
+ endpoint?: string | undefined;
764
759
  passcode?: string | undefined;
760
+ client_id?: string | null | undefined;
765
761
  context_id?: string | null | undefined;
762
+ event_type?: string | undefined;
763
+ description?: string | null | undefined;
766
764
  }, {
767
765
  id: string;
768
766
  status?: "ACTIVE" | "PAUSED" | undefined;
769
- event_type?: string | undefined;
770
- endpoint?: string | undefined;
771
- client_id?: string | null | undefined;
772
- description?: string | null | undefined;
773
767
  context?: "team" | "project" | "file" | null | undefined;
774
768
  team_id?: string | null | undefined;
769
+ endpoint?: string | undefined;
775
770
  passcode?: string | undefined;
771
+ client_id?: string | null | undefined;
776
772
  context_id?: string | null | undefined;
773
+ event_type?: string | undefined;
774
+ description?: string | null | undefined;
777
775
  }>;
778
776
  };
779
777
  readonly 'webhooks.list': {
@@ -802,51 +800,51 @@ export declare const figmaEndpointSchemas: {
802
800
  }, "strip", import("zod").ZodTypeAny, {
803
801
  id: string;
804
802
  status?: "ACTIVE" | "PAUSED" | undefined;
805
- event_type?: string | undefined;
806
- endpoint?: string | undefined;
807
- client_id?: string | null | undefined;
808
- description?: string | null | undefined;
809
803
  context?: "team" | "project" | "file" | null | undefined;
810
804
  team_id?: string | null | undefined;
805
+ endpoint?: string | undefined;
811
806
  passcode?: string | undefined;
807
+ client_id?: string | null | undefined;
812
808
  context_id?: string | null | undefined;
809
+ event_type?: string | undefined;
810
+ description?: string | null | undefined;
813
811
  }, {
814
812
  id: string;
815
813
  status?: "ACTIVE" | "PAUSED" | undefined;
816
- event_type?: string | undefined;
817
- endpoint?: string | undefined;
818
- client_id?: string | null | undefined;
819
- description?: string | null | undefined;
820
814
  context?: "team" | "project" | "file" | null | undefined;
821
815
  team_id?: string | null | undefined;
816
+ endpoint?: string | undefined;
822
817
  passcode?: string | undefined;
818
+ client_id?: string | null | undefined;
823
819
  context_id?: string | null | undefined;
820
+ event_type?: string | undefined;
821
+ description?: string | null | undefined;
824
822
  }>, "many">>;
825
823
  }, "strip", import("zod").ZodTypeAny, {
826
824
  webhooks?: {
827
825
  id: string;
828
826
  status?: "ACTIVE" | "PAUSED" | undefined;
829
- event_type?: string | undefined;
830
- endpoint?: string | undefined;
831
- client_id?: string | null | undefined;
832
- description?: string | null | undefined;
833
827
  context?: "team" | "project" | "file" | null | undefined;
834
828
  team_id?: string | null | undefined;
829
+ endpoint?: string | undefined;
835
830
  passcode?: string | undefined;
831
+ client_id?: string | null | undefined;
836
832
  context_id?: string | null | undefined;
833
+ event_type?: string | undefined;
834
+ description?: string | null | undefined;
837
835
  }[] | undefined;
838
836
  }, {
839
837
  webhooks?: {
840
838
  id: string;
841
839
  status?: "ACTIVE" | "PAUSED" | undefined;
842
- event_type?: string | undefined;
843
- endpoint?: string | undefined;
844
- client_id?: string | null | undefined;
845
- description?: string | null | undefined;
846
840
  context?: "team" | "project" | "file" | null | undefined;
847
841
  team_id?: string | null | undefined;
842
+ endpoint?: string | undefined;
848
843
  passcode?: string | undefined;
844
+ client_id?: string | null | undefined;
849
845
  context_id?: string | null | undefined;
846
+ event_type?: string | undefined;
847
+ description?: string | null | undefined;
850
848
  }[] | undefined;
851
849
  }>;
852
850
  };
@@ -868,30 +866,30 @@ export declare const figmaEndpointSchemas: {
868
866
  }, "strip", import("zod").ZodTypeAny, {
869
867
  id: string;
870
868
  webhook_id: string;
871
- created_at?: string | undefined;
872
869
  status?: string | undefined;
870
+ created_at?: string | undefined;
873
871
  error?: import("zod").objectOutputType<{}, import("zod").ZodTypeAny, "passthrough"> | undefined;
874
872
  }, {
875
873
  id: string;
876
874
  webhook_id: string;
877
- created_at?: string | undefined;
878
875
  status?: string | undefined;
876
+ created_at?: string | undefined;
879
877
  error?: import("zod").objectInputType<{}, import("zod").ZodTypeAny, "passthrough"> | undefined;
880
878
  }>, "many">>;
881
879
  }, "strip", import("zod").ZodTypeAny, {
882
880
  requests?: {
883
881
  id: string;
884
882
  webhook_id: string;
885
- created_at?: string | undefined;
886
883
  status?: string | undefined;
884
+ created_at?: string | undefined;
887
885
  error?: import("zod").objectOutputType<{}, import("zod").ZodTypeAny, "passthrough"> | undefined;
888
886
  }[] | undefined;
889
887
  }, {
890
888
  requests?: {
891
889
  id: string;
892
890
  webhook_id: string;
893
- created_at?: string | undefined;
894
891
  status?: string | undefined;
892
+ created_at?: string | undefined;
895
893
  error?: import("zod").objectInputType<{}, import("zod").ZodTypeAny, "passthrough"> | undefined;
896
894
  }[] | undefined;
897
895
  }>;
@@ -907,17 +905,17 @@ export declare const figmaEndpointSchemas: {
907
905
  }, "strip", import("zod").ZodTypeAny, {
908
906
  webhook_id: string;
909
907
  status?: "ACTIVE" | "PAUSED" | undefined;
910
- event_type?: string | undefined;
911
908
  endpoint?: string | undefined;
912
- description?: string | undefined;
913
909
  passcode?: string | undefined;
910
+ event_type?: string | undefined;
911
+ description?: string | undefined;
914
912
  }, {
915
913
  webhook_id: string;
916
914
  status?: "ACTIVE" | "PAUSED" | undefined;
917
- event_type?: string | undefined;
918
915
  endpoint?: string | undefined;
919
- description?: string | undefined;
920
916
  passcode?: string | undefined;
917
+ event_type?: string | undefined;
918
+ description?: string | undefined;
921
919
  }>;
922
920
  readonly output: import("zod").ZodObject<{
923
921
  id: import("zod").ZodString;
@@ -933,25 +931,25 @@ export declare const figmaEndpointSchemas: {
933
931
  }, "strip", import("zod").ZodTypeAny, {
934
932
  id: string;
935
933
  status?: "ACTIVE" | "PAUSED" | undefined;
936
- event_type?: string | undefined;
937
- endpoint?: string | undefined;
938
- client_id?: string | null | undefined;
939
- description?: string | null | undefined;
940
934
  context?: "team" | "project" | "file" | null | undefined;
941
935
  team_id?: string | null | undefined;
936
+ endpoint?: string | undefined;
942
937
  passcode?: string | undefined;
938
+ client_id?: string | null | undefined;
943
939
  context_id?: string | null | undefined;
940
+ event_type?: string | undefined;
941
+ description?: string | null | undefined;
944
942
  }, {
945
943
  id: string;
946
944
  status?: "ACTIVE" | "PAUSED" | undefined;
947
- event_type?: string | undefined;
948
- endpoint?: string | undefined;
949
- client_id?: string | null | undefined;
950
- description?: string | null | undefined;
951
945
  context?: "team" | "project" | "file" | null | undefined;
952
946
  team_id?: string | null | undefined;
947
+ endpoint?: string | undefined;
953
948
  passcode?: string | undefined;
949
+ client_id?: string | null | undefined;
954
950
  context_id?: string | null | undefined;
951
+ event_type?: string | undefined;
952
+ description?: string | null | undefined;
955
953
  }>;
956
954
  };
957
955
  readonly 'devResources.create': {
@@ -962,28 +960,28 @@ export declare const figmaEndpointSchemas: {
962
960
  node_id: import("zod").ZodString;
963
961
  file_key: import("zod").ZodString;
964
962
  }, "strip", import("zod").ZodTypeAny, {
965
- name: string;
966
963
  file_key: string;
967
964
  node_id: string;
965
+ name: string;
968
966
  url: string;
969
967
  }, {
970
- name: string;
971
968
  file_key: string;
972
969
  node_id: string;
970
+ name: string;
973
971
  url: string;
974
972
  }>, "many">;
975
973
  }, "strip", import("zod").ZodTypeAny, {
976
974
  dev_resources: {
977
- name: string;
978
975
  file_key: string;
979
976
  node_id: string;
977
+ name: string;
980
978
  url: string;
981
979
  }[];
982
980
  }, {
983
981
  dev_resources: {
984
- name: string;
985
982
  file_key: string;
986
983
  node_id: string;
984
+ name: string;
987
985
  url: string;
988
986
  }[];
989
987
  }>;
@@ -996,15 +994,15 @@ export declare const figmaEndpointSchemas: {
996
994
  file_key: import("zod").ZodString;
997
995
  }, "strip", import("zod").ZodTypeAny, {
998
996
  id: string;
999
- name: string;
1000
997
  file_key: string;
1001
998
  node_id: string;
999
+ name: string;
1002
1000
  url: string;
1003
1001
  }, {
1004
1002
  id: string;
1005
- name: string;
1006
1003
  file_key: string;
1007
1004
  node_id: string;
1005
+ name: string;
1008
1006
  url: string;
1009
1007
  }>, "many">>;
1010
1008
  errors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1023,9 +1021,9 @@ export declare const figmaEndpointSchemas: {
1023
1021
  }, "strip", import("zod").ZodTypeAny, {
1024
1022
  links_created?: {
1025
1023
  id: string;
1026
- name: string;
1027
1024
  file_key: string;
1028
1025
  node_id: string;
1026
+ name: string;
1029
1027
  url: string;
1030
1028
  }[] | undefined;
1031
1029
  errors?: {
@@ -1036,9 +1034,9 @@ export declare const figmaEndpointSchemas: {
1036
1034
  }, {
1037
1035
  links_created?: {
1038
1036
  id: string;
1039
- name: string;
1040
1037
  file_key: string;
1041
1038
  node_id: string;
1039
+ name: string;
1042
1040
  url: string;
1043
1041
  }[] | undefined;
1044
1042
  errors?: {
@@ -1081,31 +1079,31 @@ export declare const figmaEndpointSchemas: {
1081
1079
  file_key: import("zod").ZodString;
1082
1080
  }, "strip", import("zod").ZodTypeAny, {
1083
1081
  id: string;
1084
- name: string;
1085
1082
  file_key: string;
1086
1083
  node_id: string;
1084
+ name: string;
1087
1085
  url: string;
1088
1086
  }, {
1089
1087
  id: string;
1090
- name: string;
1091
1088
  file_key: string;
1092
1089
  node_id: string;
1090
+ name: string;
1093
1091
  url: string;
1094
1092
  }>, "many">>;
1095
1093
  }, "strip", import("zod").ZodTypeAny, {
1096
1094
  dev_resources?: {
1097
1095
  id: string;
1098
- name: string;
1099
1096
  file_key: string;
1100
1097
  node_id: string;
1098
+ name: string;
1101
1099
  url: string;
1102
1100
  }[] | undefined;
1103
1101
  }, {
1104
1102
  dev_resources?: {
1105
1103
  id: string;
1106
- name: string;
1107
1104
  file_key: string;
1108
1105
  node_id: string;
1106
+ name: string;
1109
1107
  url: string;
1110
1108
  }[] | undefined;
1111
1109
  }>;
@@ -1325,11 +1323,11 @@ export declare const figmaEndpointSchemas: {
1325
1323
  name: import("zod").ZodOptional<import("zod").ZodString>;
1326
1324
  node_id: import("zod").ZodOptional<import("zod").ZodString>;
1327
1325
  }, "strip", import("zod").ZodTypeAny, {
1328
- name?: string | undefined;
1329
1326
  node_id?: string | undefined;
1330
- }, {
1331
1327
  name?: string | undefined;
1328
+ }, {
1332
1329
  node_id?: string | undefined;
1330
+ name?: string | undefined;
1333
1331
  }>>;
1334
1332
  user: import("zod").ZodOptional<import("zod").ZodObject<{
1335
1333
  id: import("zod").ZodString;
@@ -1346,79 +1344,79 @@ export declare const figmaEndpointSchemas: {
1346
1344
  }>>;
1347
1345
  }, "strip", import("zod").ZodTypeAny, {
1348
1346
  key: string;
1349
- created_at?: string | undefined;
1350
- updated_at?: string | undefined;
1351
- name?: string | undefined;
1352
- description?: string | undefined;
1353
1347
  user?: {
1354
1348
  id: string;
1355
1349
  handle?: string | undefined;
1356
1350
  img_url?: string | undefined;
1357
1351
  } | undefined;
1352
+ created_at?: string | undefined;
1358
1353
  file_key?: string | undefined;
1354
+ description?: string | undefined;
1359
1355
  node_id?: string | undefined;
1360
1356
  thumbnail_url?: string | undefined;
1357
+ name?: string | undefined;
1358
+ updated_at?: string | undefined;
1361
1359
  containing_frame?: {
1362
- name?: string | undefined;
1363
1360
  node_id?: string | undefined;
1361
+ name?: string | undefined;
1364
1362
  } | undefined;
1365
1363
  }, {
1366
1364
  key: string;
1367
- created_at?: string | undefined;
1368
- updated_at?: string | undefined;
1369
- name?: string | undefined;
1370
- description?: string | undefined;
1371
1365
  user?: {
1372
1366
  id: string;
1373
1367
  handle?: string | undefined;
1374
1368
  img_url?: string | undefined;
1375
1369
  } | undefined;
1370
+ created_at?: string | undefined;
1376
1371
  file_key?: string | undefined;
1372
+ description?: string | undefined;
1377
1373
  node_id?: string | undefined;
1378
1374
  thumbnail_url?: string | undefined;
1375
+ name?: string | undefined;
1376
+ updated_at?: string | undefined;
1379
1377
  containing_frame?: {
1380
- name?: string | undefined;
1381
1378
  node_id?: string | undefined;
1379
+ name?: string | undefined;
1382
1380
  } | undefined;
1383
1381
  }>>;
1384
1382
  }, "strip", import("zod").ZodTypeAny, {
1385
1383
  component?: {
1386
1384
  key: string;
1387
- created_at?: string | undefined;
1388
- updated_at?: string | undefined;
1389
- name?: string | undefined;
1390
- description?: string | undefined;
1391
1385
  user?: {
1392
1386
  id: string;
1393
1387
  handle?: string | undefined;
1394
1388
  img_url?: string | undefined;
1395
1389
  } | undefined;
1390
+ created_at?: string | undefined;
1396
1391
  file_key?: string | undefined;
1392
+ description?: string | undefined;
1397
1393
  node_id?: string | undefined;
1398
1394
  thumbnail_url?: string | undefined;
1395
+ name?: string | undefined;
1396
+ updated_at?: string | undefined;
1399
1397
  containing_frame?: {
1400
- name?: string | undefined;
1401
1398
  node_id?: string | undefined;
1399
+ name?: string | undefined;
1402
1400
  } | undefined;
1403
1401
  } | undefined;
1404
1402
  }, {
1405
1403
  component?: {
1406
1404
  key: string;
1407
- created_at?: string | undefined;
1408
- updated_at?: string | undefined;
1409
- name?: string | undefined;
1410
- description?: string | undefined;
1411
1405
  user?: {
1412
1406
  id: string;
1413
1407
  handle?: string | undefined;
1414
1408
  img_url?: string | undefined;
1415
1409
  } | undefined;
1410
+ created_at?: string | undefined;
1416
1411
  file_key?: string | undefined;
1412
+ description?: string | undefined;
1417
1413
  node_id?: string | undefined;
1418
1414
  thumbnail_url?: string | undefined;
1415
+ name?: string | undefined;
1416
+ updated_at?: string | undefined;
1419
1417
  containing_frame?: {
1420
- name?: string | undefined;
1421
1418
  node_id?: string | undefined;
1419
+ name?: string | undefined;
1422
1420
  } | undefined;
1423
1421
  } | undefined;
1424
1422
  }>>;
@@ -1428,21 +1426,21 @@ export declare const figmaEndpointSchemas: {
1428
1426
  meta?: {
1429
1427
  component?: {
1430
1428
  key: string;
1431
- created_at?: string | undefined;
1432
- updated_at?: string | undefined;
1433
- name?: string | undefined;
1434
- description?: string | undefined;
1435
1429
  user?: {
1436
1430
  id: string;
1437
1431
  handle?: string | undefined;
1438
1432
  img_url?: string | undefined;
1439
1433
  } | undefined;
1434
+ created_at?: string | undefined;
1440
1435
  file_key?: string | undefined;
1436
+ description?: string | undefined;
1441
1437
  node_id?: string | undefined;
1442
1438
  thumbnail_url?: string | undefined;
1439
+ name?: string | undefined;
1440
+ updated_at?: string | undefined;
1443
1441
  containing_frame?: {
1444
- name?: string | undefined;
1445
1442
  node_id?: string | undefined;
1443
+ name?: string | undefined;
1446
1444
  } | undefined;
1447
1445
  } | undefined;
1448
1446
  } | undefined;
@@ -1451,21 +1449,21 @@ export declare const figmaEndpointSchemas: {
1451
1449
  meta?: {
1452
1450
  component?: {
1453
1451
  key: string;
1454
- created_at?: string | undefined;
1455
- updated_at?: string | undefined;
1456
- name?: string | undefined;
1457
- description?: string | undefined;
1458
1452
  user?: {
1459
1453
  id: string;
1460
1454
  handle?: string | undefined;
1461
1455
  img_url?: string | undefined;
1462
1456
  } | undefined;
1457
+ created_at?: string | undefined;
1463
1458
  file_key?: string | undefined;
1459
+ description?: string | undefined;
1464
1460
  node_id?: string | undefined;
1465
1461
  thumbnail_url?: string | undefined;
1462
+ name?: string | undefined;
1463
+ updated_at?: string | undefined;
1466
1464
  containing_frame?: {
1467
- name?: string | undefined;
1468
1465
  node_id?: string | undefined;
1466
+ name?: string | undefined;
1469
1467
  } | undefined;
1470
1468
  } | undefined;
1471
1469
  } | undefined;
@@ -1488,28 +1486,28 @@ export declare const figmaEndpointSchemas: {
1488
1486
  thumbnail_url: import("zod").ZodOptional<import("zod").ZodString>;
1489
1487
  }, "strip", import("zod").ZodTypeAny, {
1490
1488
  key: string;
1491
- name?: string | undefined;
1492
1489
  description?: string | undefined;
1493
1490
  thumbnail_url?: string | undefined;
1491
+ name?: string | undefined;
1494
1492
  }, {
1495
1493
  key: string;
1496
- name?: string | undefined;
1497
1494
  description?: string | undefined;
1498
1495
  thumbnail_url?: string | undefined;
1496
+ name?: string | undefined;
1499
1497
  }>>;
1500
1498
  }, "strip", import("zod").ZodTypeAny, {
1501
1499
  component_set?: {
1502
1500
  key: string;
1503
- name?: string | undefined;
1504
1501
  description?: string | undefined;
1505
1502
  thumbnail_url?: string | undefined;
1503
+ name?: string | undefined;
1506
1504
  } | undefined;
1507
1505
  }, {
1508
1506
  component_set?: {
1509
1507
  key: string;
1510
- name?: string | undefined;
1511
1508
  description?: string | undefined;
1512
1509
  thumbnail_url?: string | undefined;
1510
+ name?: string | undefined;
1513
1511
  } | undefined;
1514
1512
  }>>;
1515
1513
  status: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -1518,9 +1516,9 @@ export declare const figmaEndpointSchemas: {
1518
1516
  meta?: {
1519
1517
  component_set?: {
1520
1518
  key: string;
1521
- name?: string | undefined;
1522
1519
  description?: string | undefined;
1523
1520
  thumbnail_url?: string | undefined;
1521
+ name?: string | undefined;
1524
1522
  } | undefined;
1525
1523
  } | undefined;
1526
1524
  }, {
@@ -1528,9 +1526,9 @@ export declare const figmaEndpointSchemas: {
1528
1526
  meta?: {
1529
1527
  component_set?: {
1530
1528
  key: string;
1531
- name?: string | undefined;
1532
1529
  description?: string | undefined;
1533
1530
  thumbnail_url?: string | undefined;
1531
+ name?: string | undefined;
1534
1532
  } | undefined;
1535
1533
  } | undefined;
1536
1534
  }>;
@@ -1558,11 +1556,11 @@ export declare const figmaEndpointSchemas: {
1558
1556
  name: import("zod").ZodOptional<import("zod").ZodString>;
1559
1557
  node_id: import("zod").ZodOptional<import("zod").ZodString>;
1560
1558
  }, "strip", import("zod").ZodTypeAny, {
1561
- name?: string | undefined;
1562
1559
  node_id?: string | undefined;
1563
- }, {
1564
1560
  name?: string | undefined;
1561
+ }, {
1565
1562
  node_id?: string | undefined;
1563
+ name?: string | undefined;
1566
1564
  }>>;
1567
1565
  user: import("zod").ZodOptional<import("zod").ZodObject<{
1568
1566
  id: import("zod").ZodString;
@@ -1579,79 +1577,79 @@ export declare const figmaEndpointSchemas: {
1579
1577
  }>>;
1580
1578
  }, "strip", import("zod").ZodTypeAny, {
1581
1579
  key: string;
1582
- created_at?: string | undefined;
1583
- updated_at?: string | undefined;
1584
- name?: string | undefined;
1585
- description?: string | undefined;
1586
1580
  user?: {
1587
1581
  id: string;
1588
1582
  handle?: string | undefined;
1589
1583
  img_url?: string | undefined;
1590
1584
  } | undefined;
1585
+ created_at?: string | undefined;
1591
1586
  file_key?: string | undefined;
1587
+ description?: string | undefined;
1592
1588
  node_id?: string | undefined;
1593
1589
  thumbnail_url?: string | undefined;
1590
+ name?: string | undefined;
1591
+ updated_at?: string | undefined;
1594
1592
  containing_frame?: {
1595
- name?: string | undefined;
1596
1593
  node_id?: string | undefined;
1594
+ name?: string | undefined;
1597
1595
  } | undefined;
1598
1596
  }, {
1599
1597
  key: string;
1600
- created_at?: string | undefined;
1601
- updated_at?: string | undefined;
1602
- name?: string | undefined;
1603
- description?: string | undefined;
1604
1598
  user?: {
1605
1599
  id: string;
1606
1600
  handle?: string | undefined;
1607
1601
  img_url?: string | undefined;
1608
1602
  } | undefined;
1603
+ created_at?: string | undefined;
1609
1604
  file_key?: string | undefined;
1605
+ description?: string | undefined;
1610
1606
  node_id?: string | undefined;
1611
1607
  thumbnail_url?: string | undefined;
1608
+ name?: string | undefined;
1609
+ updated_at?: string | undefined;
1612
1610
  containing_frame?: {
1613
- name?: string | undefined;
1614
1611
  node_id?: string | undefined;
1612
+ name?: string | undefined;
1615
1613
  } | undefined;
1616
1614
  }>, "many">>;
1617
1615
  }, "strip", import("zod").ZodTypeAny, {
1618
1616
  components?: {
1619
1617
  key: string;
1620
- created_at?: string | undefined;
1621
- updated_at?: string | undefined;
1622
- name?: string | undefined;
1623
- description?: string | undefined;
1624
1618
  user?: {
1625
1619
  id: string;
1626
1620
  handle?: string | undefined;
1627
1621
  img_url?: string | undefined;
1628
1622
  } | undefined;
1623
+ created_at?: string | undefined;
1629
1624
  file_key?: string | undefined;
1625
+ description?: string | undefined;
1630
1626
  node_id?: string | undefined;
1631
1627
  thumbnail_url?: string | undefined;
1628
+ name?: string | undefined;
1629
+ updated_at?: string | undefined;
1632
1630
  containing_frame?: {
1633
- name?: string | undefined;
1634
1631
  node_id?: string | undefined;
1632
+ name?: string | undefined;
1635
1633
  } | undefined;
1636
1634
  }[] | undefined;
1637
1635
  }, {
1638
1636
  components?: {
1639
1637
  key: string;
1640
- created_at?: string | undefined;
1641
- updated_at?: string | undefined;
1642
- name?: string | undefined;
1643
- description?: string | undefined;
1644
1638
  user?: {
1645
1639
  id: string;
1646
1640
  handle?: string | undefined;
1647
1641
  img_url?: string | undefined;
1648
1642
  } | undefined;
1643
+ created_at?: string | undefined;
1649
1644
  file_key?: string | undefined;
1645
+ description?: string | undefined;
1650
1646
  node_id?: string | undefined;
1651
1647
  thumbnail_url?: string | undefined;
1648
+ name?: string | undefined;
1649
+ updated_at?: string | undefined;
1652
1650
  containing_frame?: {
1653
- name?: string | undefined;
1654
1651
  node_id?: string | undefined;
1652
+ name?: string | undefined;
1655
1653
  } | undefined;
1656
1654
  }[] | undefined;
1657
1655
  }>>;
@@ -1661,21 +1659,21 @@ export declare const figmaEndpointSchemas: {
1661
1659
  meta?: {
1662
1660
  components?: {
1663
1661
  key: string;
1664
- created_at?: string | undefined;
1665
- updated_at?: string | undefined;
1666
- name?: string | undefined;
1667
- description?: string | undefined;
1668
1662
  user?: {
1669
1663
  id: string;
1670
1664
  handle?: string | undefined;
1671
1665
  img_url?: string | undefined;
1672
1666
  } | undefined;
1667
+ created_at?: string | undefined;
1673
1668
  file_key?: string | undefined;
1669
+ description?: string | undefined;
1674
1670
  node_id?: string | undefined;
1675
1671
  thumbnail_url?: string | undefined;
1672
+ name?: string | undefined;
1673
+ updated_at?: string | undefined;
1676
1674
  containing_frame?: {
1677
- name?: string | undefined;
1678
1675
  node_id?: string | undefined;
1676
+ name?: string | undefined;
1679
1677
  } | undefined;
1680
1678
  }[] | undefined;
1681
1679
  } | undefined;
@@ -1684,21 +1682,21 @@ export declare const figmaEndpointSchemas: {
1684
1682
  meta?: {
1685
1683
  components?: {
1686
1684
  key: string;
1687
- created_at?: string | undefined;
1688
- updated_at?: string | undefined;
1689
- name?: string | undefined;
1690
- description?: string | undefined;
1691
1685
  user?: {
1692
1686
  id: string;
1693
1687
  handle?: string | undefined;
1694
1688
  img_url?: string | undefined;
1695
1689
  } | undefined;
1690
+ created_at?: string | undefined;
1696
1691
  file_key?: string | undefined;
1692
+ description?: string | undefined;
1697
1693
  node_id?: string | undefined;
1698
1694
  thumbnail_url?: string | undefined;
1695
+ name?: string | undefined;
1696
+ updated_at?: string | undefined;
1699
1697
  containing_frame?: {
1700
- name?: string | undefined;
1701
1698
  node_id?: string | undefined;
1699
+ name?: string | undefined;
1702
1700
  } | undefined;
1703
1701
  }[] | undefined;
1704
1702
  } | undefined;
@@ -1759,14 +1757,14 @@ export declare const figmaEndpointSchemas: {
1759
1757
  before: import("zod").ZodOptional<import("zod").ZodNumber>;
1760
1758
  }, "strip", import("zod").ZodTypeAny, {
1761
1759
  team_id: string;
1762
- before?: number | undefined;
1763
- after?: number | undefined;
1764
1760
  page_size?: number | undefined;
1761
+ after?: number | undefined;
1762
+ before?: number | undefined;
1765
1763
  }, {
1766
1764
  team_id: string;
1767
- before?: number | undefined;
1768
- after?: number | undefined;
1769
1765
  page_size?: number | undefined;
1766
+ after?: number | undefined;
1767
+ before?: number | undefined;
1770
1768
  }>;
1771
1769
  readonly output: import("zod").ZodObject<{
1772
1770
  meta: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -1783,11 +1781,11 @@ export declare const figmaEndpointSchemas: {
1783
1781
  name: import("zod").ZodOptional<import("zod").ZodString>;
1784
1782
  node_id: import("zod").ZodOptional<import("zod").ZodString>;
1785
1783
  }, "strip", import("zod").ZodTypeAny, {
1786
- name?: string | undefined;
1787
1784
  node_id?: string | undefined;
1788
- }, {
1789
1785
  name?: string | undefined;
1786
+ }, {
1790
1787
  node_id?: string | undefined;
1788
+ name?: string | undefined;
1791
1789
  }>>;
1792
1790
  user: import("zod").ZodOptional<import("zod").ZodObject<{
1793
1791
  id: import("zod").ZodString;
@@ -1804,79 +1802,79 @@ export declare const figmaEndpointSchemas: {
1804
1802
  }>>;
1805
1803
  }, "strip", import("zod").ZodTypeAny, {
1806
1804
  key: string;
1807
- created_at?: string | undefined;
1808
- updated_at?: string | undefined;
1809
- name?: string | undefined;
1810
- description?: string | undefined;
1811
1805
  user?: {
1812
1806
  id: string;
1813
1807
  handle?: string | undefined;
1814
1808
  img_url?: string | undefined;
1815
1809
  } | undefined;
1810
+ created_at?: string | undefined;
1816
1811
  file_key?: string | undefined;
1812
+ description?: string | undefined;
1817
1813
  node_id?: string | undefined;
1818
1814
  thumbnail_url?: string | undefined;
1815
+ name?: string | undefined;
1816
+ updated_at?: string | undefined;
1819
1817
  containing_frame?: {
1820
- name?: string | undefined;
1821
1818
  node_id?: string | undefined;
1819
+ name?: string | undefined;
1822
1820
  } | undefined;
1823
1821
  }, {
1824
1822
  key: string;
1825
- created_at?: string | undefined;
1826
- updated_at?: string | undefined;
1827
- name?: string | undefined;
1828
- description?: string | undefined;
1829
1823
  user?: {
1830
1824
  id: string;
1831
1825
  handle?: string | undefined;
1832
1826
  img_url?: string | undefined;
1833
1827
  } | undefined;
1828
+ created_at?: string | undefined;
1834
1829
  file_key?: string | undefined;
1830
+ description?: string | undefined;
1835
1831
  node_id?: string | undefined;
1836
1832
  thumbnail_url?: string | undefined;
1833
+ name?: string | undefined;
1834
+ updated_at?: string | undefined;
1837
1835
  containing_frame?: {
1838
- name?: string | undefined;
1839
1836
  node_id?: string | undefined;
1837
+ name?: string | undefined;
1840
1838
  } | undefined;
1841
1839
  }>, "many">>;
1842
1840
  }, "strip", import("zod").ZodTypeAny, {
1843
1841
  components?: {
1844
1842
  key: string;
1845
- created_at?: string | undefined;
1846
- updated_at?: string | undefined;
1847
- name?: string | undefined;
1848
- description?: string | undefined;
1849
1843
  user?: {
1850
1844
  id: string;
1851
1845
  handle?: string | undefined;
1852
1846
  img_url?: string | undefined;
1853
1847
  } | undefined;
1848
+ created_at?: string | undefined;
1854
1849
  file_key?: string | undefined;
1850
+ description?: string | undefined;
1855
1851
  node_id?: string | undefined;
1856
1852
  thumbnail_url?: string | undefined;
1853
+ name?: string | undefined;
1854
+ updated_at?: string | undefined;
1857
1855
  containing_frame?: {
1858
- name?: string | undefined;
1859
1856
  node_id?: string | undefined;
1857
+ name?: string | undefined;
1860
1858
  } | undefined;
1861
1859
  }[] | undefined;
1862
1860
  }, {
1863
1861
  components?: {
1864
1862
  key: string;
1865
- created_at?: string | undefined;
1866
- updated_at?: string | undefined;
1867
- name?: string | undefined;
1868
- description?: string | undefined;
1869
1863
  user?: {
1870
1864
  id: string;
1871
1865
  handle?: string | undefined;
1872
1866
  img_url?: string | undefined;
1873
1867
  } | undefined;
1868
+ created_at?: string | undefined;
1874
1869
  file_key?: string | undefined;
1870
+ description?: string | undefined;
1875
1871
  node_id?: string | undefined;
1876
1872
  thumbnail_url?: string | undefined;
1873
+ name?: string | undefined;
1874
+ updated_at?: string | undefined;
1877
1875
  containing_frame?: {
1878
- name?: string | undefined;
1879
1876
  node_id?: string | undefined;
1877
+ name?: string | undefined;
1880
1878
  } | undefined;
1881
1879
  }[] | undefined;
1882
1880
  }>>;
@@ -1886,21 +1884,21 @@ export declare const figmaEndpointSchemas: {
1886
1884
  meta?: {
1887
1885
  components?: {
1888
1886
  key: string;
1889
- created_at?: string | undefined;
1890
- updated_at?: string | undefined;
1891
- name?: string | undefined;
1892
- description?: string | undefined;
1893
1887
  user?: {
1894
1888
  id: string;
1895
1889
  handle?: string | undefined;
1896
1890
  img_url?: string | undefined;
1897
1891
  } | undefined;
1892
+ created_at?: string | undefined;
1898
1893
  file_key?: string | undefined;
1894
+ description?: string | undefined;
1899
1895
  node_id?: string | undefined;
1900
1896
  thumbnail_url?: string | undefined;
1897
+ name?: string | undefined;
1898
+ updated_at?: string | undefined;
1901
1899
  containing_frame?: {
1902
- name?: string | undefined;
1903
1900
  node_id?: string | undefined;
1901
+ name?: string | undefined;
1904
1902
  } | undefined;
1905
1903
  }[] | undefined;
1906
1904
  } | undefined;
@@ -1909,21 +1907,21 @@ export declare const figmaEndpointSchemas: {
1909
1907
  meta?: {
1910
1908
  components?: {
1911
1909
  key: string;
1912
- created_at?: string | undefined;
1913
- updated_at?: string | undefined;
1914
- name?: string | undefined;
1915
- description?: string | undefined;
1916
1910
  user?: {
1917
1911
  id: string;
1918
1912
  handle?: string | undefined;
1919
1913
  img_url?: string | undefined;
1920
1914
  } | undefined;
1915
+ created_at?: string | undefined;
1921
1916
  file_key?: string | undefined;
1917
+ description?: string | undefined;
1922
1918
  node_id?: string | undefined;
1923
1919
  thumbnail_url?: string | undefined;
1920
+ name?: string | undefined;
1921
+ updated_at?: string | undefined;
1924
1922
  containing_frame?: {
1925
- name?: string | undefined;
1926
1923
  node_id?: string | undefined;
1924
+ name?: string | undefined;
1927
1925
  } | undefined;
1928
1926
  }[] | undefined;
1929
1927
  } | undefined;
@@ -1937,14 +1935,14 @@ export declare const figmaEndpointSchemas: {
1937
1935
  before: import("zod").ZodOptional<import("zod").ZodNumber>;
1938
1936
  }, "strip", import("zod").ZodTypeAny, {
1939
1937
  team_id: string;
1940
- before?: number | undefined;
1941
- after?: number | undefined;
1942
1938
  page_size?: number | undefined;
1939
+ after?: number | undefined;
1940
+ before?: number | undefined;
1943
1941
  }, {
1944
1942
  team_id: string;
1945
- before?: number | undefined;
1946
- after?: number | undefined;
1947
1943
  page_size?: number | undefined;
1944
+ after?: number | undefined;
1945
+ before?: number | undefined;
1948
1946
  }>;
1949
1947
  readonly output: import("zod").ZodObject<{
1950
1948
  meta: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -2032,8 +2030,8 @@ export declare const figmaEndpointSchemas: {
2032
2030
  styles: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
2033
2031
  }, "strip", import("zod").ZodTypeAny, {
2034
2032
  name?: string | undefined;
2035
- version?: string | undefined;
2036
2033
  components?: Record<string, unknown> | undefined;
2034
+ version?: string | undefined;
2037
2035
  role?: string | undefined;
2038
2036
  lastModified?: string | undefined;
2039
2037
  editorType?: string | undefined;
@@ -2042,8 +2040,8 @@ export declare const figmaEndpointSchemas: {
2042
2040
  styles?: Record<string, unknown> | undefined;
2043
2041
  }, {
2044
2042
  name?: string | undefined;
2045
- version?: string | undefined;
2046
2043
  components?: Record<string, unknown> | undefined;
2044
+ version?: string | undefined;
2047
2045
  role?: string | undefined;
2048
2046
  lastModified?: string | undefined;
2049
2047
  editorType?: string | undefined;
@@ -2068,16 +2066,16 @@ export declare const figmaEndpointSchemas: {
2068
2066
  thumbnail_url: import("zod").ZodOptional<import("zod").ZodString>;
2069
2067
  version: import("zod").ZodOptional<import("zod").ZodString>;
2070
2068
  }, "strip", import("zod").ZodTypeAny, {
2069
+ thumbnail_url?: string | undefined;
2071
2070
  name?: string | undefined;
2072
2071
  version?: string | undefined;
2073
- thumbnail_url?: string | undefined;
2074
2072
  role?: string | undefined;
2075
2073
  editorType?: string | undefined;
2076
2074
  last_modified?: string | undefined;
2077
2075
  }, {
2076
+ thumbnail_url?: string | undefined;
2078
2077
  name?: string | undefined;
2079
2078
  version?: string | undefined;
2080
- thumbnail_url?: string | undefined;
2081
2079
  role?: string | undefined;
2082
2080
  editorType?: string | undefined;
2083
2081
  last_modified?: string | undefined;
@@ -2136,35 +2134,35 @@ export declare const figmaEndpointSchemas: {
2136
2134
  description: import("zod").ZodOptional<import("zod").ZodString>;
2137
2135
  }, "strip", import("zod").ZodTypeAny, {
2138
2136
  key: string;
2139
- name?: string | undefined;
2140
- description?: string | undefined;
2141
2137
  file_key?: string | undefined;
2138
+ description?: string | undefined;
2142
2139
  node_id?: string | undefined;
2140
+ name?: string | undefined;
2143
2141
  style_type?: string | undefined;
2144
2142
  }, {
2145
2143
  key: string;
2146
- name?: string | undefined;
2147
- description?: string | undefined;
2148
2144
  file_key?: string | undefined;
2145
+ description?: string | undefined;
2149
2146
  node_id?: string | undefined;
2147
+ name?: string | undefined;
2150
2148
  style_type?: string | undefined;
2151
2149
  }>, "many">>;
2152
2150
  }, "strip", import("zod").ZodTypeAny, {
2153
2151
  styles?: {
2154
2152
  key: string;
2155
- name?: string | undefined;
2156
- description?: string | undefined;
2157
2153
  file_key?: string | undefined;
2154
+ description?: string | undefined;
2158
2155
  node_id?: string | undefined;
2156
+ name?: string | undefined;
2159
2157
  style_type?: string | undefined;
2160
2158
  }[] | undefined;
2161
2159
  }, {
2162
2160
  styles?: {
2163
2161
  key: string;
2164
- name?: string | undefined;
2165
- description?: string | undefined;
2166
2162
  file_key?: string | undefined;
2163
+ description?: string | undefined;
2167
2164
  node_id?: string | undefined;
2165
+ name?: string | undefined;
2168
2166
  style_type?: string | undefined;
2169
2167
  }[] | undefined;
2170
2168
  }>>;
@@ -2172,10 +2170,10 @@ export declare const figmaEndpointSchemas: {
2172
2170
  meta?: {
2173
2171
  styles?: {
2174
2172
  key: string;
2175
- name?: string | undefined;
2176
- description?: string | undefined;
2177
2173
  file_key?: string | undefined;
2174
+ description?: string | undefined;
2178
2175
  node_id?: string | undefined;
2176
+ name?: string | undefined;
2179
2177
  style_type?: string | undefined;
2180
2178
  }[] | undefined;
2181
2179
  } | undefined;
@@ -2183,10 +2181,10 @@ export declare const figmaEndpointSchemas: {
2183
2181
  meta?: {
2184
2182
  styles?: {
2185
2183
  key: string;
2186
- name?: string | undefined;
2187
- description?: string | undefined;
2188
2184
  file_key?: string | undefined;
2185
+ description?: string | undefined;
2189
2186
  node_id?: string | undefined;
2187
+ name?: string | undefined;
2190
2188
  style_type?: string | undefined;
2191
2189
  }[] | undefined;
2192
2190
  } | undefined;
@@ -2229,14 +2227,14 @@ export declare const figmaEndpointSchemas: {
2229
2227
  after: import("zod").ZodOptional<import("zod").ZodNumber>;
2230
2228
  }, "strip", import("zod").ZodTypeAny, {
2231
2229
  file_key: string;
2232
- before?: number | undefined;
2233
- after?: number | undefined;
2234
2230
  page_size?: number | undefined;
2231
+ after?: number | undefined;
2232
+ before?: number | undefined;
2235
2233
  }, {
2236
2234
  file_key: string;
2237
- before?: number | undefined;
2238
- after?: number | undefined;
2239
2235
  page_size?: number | undefined;
2236
+ after?: number | undefined;
2237
+ before?: number | undefined;
2240
2238
  }>;
2241
2239
  readonly output: import("zod").ZodObject<{
2242
2240
  versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -2259,23 +2257,23 @@ export declare const figmaEndpointSchemas: {
2259
2257
  }>>;
2260
2258
  }, "strip", import("zod").ZodTypeAny, {
2261
2259
  id: string;
2262
- created_at?: string | undefined;
2263
- description?: string | null | undefined;
2264
2260
  user?: {
2265
2261
  id: string;
2266
2262
  handle?: string | undefined;
2267
2263
  img_url?: string | undefined;
2268
2264
  } | undefined;
2265
+ created_at?: string | undefined;
2266
+ description?: string | null | undefined;
2269
2267
  label?: string | null | undefined;
2270
2268
  }, {
2271
2269
  id: string;
2272
- created_at?: string | undefined;
2273
- description?: string | null | undefined;
2274
2270
  user?: {
2275
2271
  id: string;
2276
2272
  handle?: string | undefined;
2277
2273
  img_url?: string | undefined;
2278
2274
  } | undefined;
2275
+ created_at?: string | undefined;
2276
+ description?: string | null | undefined;
2279
2277
  label?: string | null | undefined;
2280
2278
  }>, "many">>;
2281
2279
  pagination: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -2291,13 +2289,13 @@ export declare const figmaEndpointSchemas: {
2291
2289
  } | undefined;
2292
2290
  versions?: {
2293
2291
  id: string;
2294
- created_at?: string | undefined;
2295
- description?: string | null | undefined;
2296
2292
  user?: {
2297
2293
  id: string;
2298
2294
  handle?: string | undefined;
2299
2295
  img_url?: string | undefined;
2300
2296
  } | undefined;
2297
+ created_at?: string | undefined;
2298
+ description?: string | null | undefined;
2301
2299
  label?: string | null | undefined;
2302
2300
  }[] | undefined;
2303
2301
  }, {
@@ -2306,13 +2304,13 @@ export declare const figmaEndpointSchemas: {
2306
2304
  } | undefined;
2307
2305
  versions?: {
2308
2306
  id: string;
2309
- created_at?: string | undefined;
2310
- description?: string | null | undefined;
2311
2307
  user?: {
2312
2308
  id: string;
2313
2309
  handle?: string | undefined;
2314
2310
  img_url?: string | undefined;
2315
2311
  } | undefined;
2312
+ created_at?: string | undefined;
2313
+ description?: string | null | undefined;
2316
2314
  label?: string | null | undefined;
2317
2315
  }[] | undefined;
2318
2316
  }>;
@@ -2386,29 +2384,29 @@ export declare const figmaEndpointSchemas: {
2386
2384
  last_modified: import("zod").ZodOptional<import("zod").ZodString>;
2387
2385
  }, "strip", import("zod").ZodTypeAny, {
2388
2386
  key: string;
2389
- name?: string | undefined;
2390
2387
  thumbnail_url?: string | null | undefined;
2388
+ name?: string | undefined;
2391
2389
  last_modified?: string | undefined;
2392
2390
  }, {
2393
2391
  key: string;
2394
- name?: string | undefined;
2395
2392
  thumbnail_url?: string | null | undefined;
2393
+ name?: string | undefined;
2396
2394
  last_modified?: string | undefined;
2397
2395
  }>, "many">>;
2398
2396
  }, "strip", import("zod").ZodTypeAny, {
2399
2397
  name?: string | undefined;
2400
2398
  files?: {
2401
2399
  key: string;
2402
- name?: string | undefined;
2403
2400
  thumbnail_url?: string | null | undefined;
2401
+ name?: string | undefined;
2404
2402
  last_modified?: string | undefined;
2405
2403
  }[] | undefined;
2406
2404
  }, {
2407
2405
  name?: string | undefined;
2408
2406
  files?: {
2409
2407
  key: string;
2410
- name?: string | undefined;
2411
2408
  thumbnail_url?: string | null | undefined;
2409
+ name?: string | undefined;
2412
2410
  last_modified?: string | undefined;
2413
2411
  }[] | undefined;
2414
2412
  }>;
@@ -2432,35 +2430,35 @@ export declare const figmaEndpointSchemas: {
2432
2430
  description: import("zod").ZodOptional<import("zod").ZodString>;
2433
2431
  }, "strip", import("zod").ZodTypeAny, {
2434
2432
  key: string;
2435
- name?: string | undefined;
2436
- description?: string | undefined;
2437
2433
  file_key?: string | undefined;
2434
+ description?: string | undefined;
2438
2435
  node_id?: string | undefined;
2436
+ name?: string | undefined;
2439
2437
  style_type?: string | undefined;
2440
2438
  }, {
2441
2439
  key: string;
2442
- name?: string | undefined;
2443
- description?: string | undefined;
2444
2440
  file_key?: string | undefined;
2441
+ description?: string | undefined;
2445
2442
  node_id?: string | undefined;
2443
+ name?: string | undefined;
2446
2444
  style_type?: string | undefined;
2447
2445
  }>>;
2448
2446
  }, "strip", import("zod").ZodTypeAny, {
2449
2447
  style?: {
2450
2448
  key: string;
2451
- name?: string | undefined;
2452
- description?: string | undefined;
2453
2449
  file_key?: string | undefined;
2450
+ description?: string | undefined;
2454
2451
  node_id?: string | undefined;
2452
+ name?: string | undefined;
2455
2453
  style_type?: string | undefined;
2456
2454
  } | undefined;
2457
2455
  }, {
2458
2456
  style?: {
2459
2457
  key: string;
2460
- name?: string | undefined;
2461
- description?: string | undefined;
2462
2458
  file_key?: string | undefined;
2459
+ description?: string | undefined;
2463
2460
  node_id?: string | undefined;
2461
+ name?: string | undefined;
2464
2462
  style_type?: string | undefined;
2465
2463
  } | undefined;
2466
2464
  }>>;
@@ -2468,10 +2466,10 @@ export declare const figmaEndpointSchemas: {
2468
2466
  meta?: {
2469
2467
  style?: {
2470
2468
  key: string;
2471
- name?: string | undefined;
2472
- description?: string | undefined;
2473
2469
  file_key?: string | undefined;
2470
+ description?: string | undefined;
2474
2471
  node_id?: string | undefined;
2472
+ name?: string | undefined;
2475
2473
  style_type?: string | undefined;
2476
2474
  } | undefined;
2477
2475
  } | undefined;
@@ -2479,10 +2477,10 @@ export declare const figmaEndpointSchemas: {
2479
2477
  meta?: {
2480
2478
  style?: {
2481
2479
  key: string;
2482
- name?: string | undefined;
2483
- description?: string | undefined;
2484
2480
  file_key?: string | undefined;
2481
+ description?: string | undefined;
2485
2482
  node_id?: string | undefined;
2483
+ name?: string | undefined;
2486
2484
  style_type?: string | undefined;
2487
2485
  } | undefined;
2488
2486
  } | undefined;
@@ -2496,14 +2494,14 @@ export declare const figmaEndpointSchemas: {
2496
2494
  before: import("zod").ZodOptional<import("zod").ZodNumber>;
2497
2495
  }, "strip", import("zod").ZodTypeAny, {
2498
2496
  team_id: string;
2499
- before?: number | undefined;
2500
- after?: number | undefined;
2501
2497
  page_size?: number | undefined;
2498
+ after?: number | undefined;
2499
+ before?: number | undefined;
2502
2500
  }, {
2503
2501
  team_id: string;
2504
- before?: number | undefined;
2505
- after?: number | undefined;
2506
2502
  page_size?: number | undefined;
2503
+ after?: number | undefined;
2504
+ before?: number | undefined;
2507
2505
  }>;
2508
2506
  readonly output: import("zod").ZodObject<{
2509
2507
  meta: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -2798,15 +2796,15 @@ export declare const figmaEndpointSchemas: {
2798
2796
  order: import("zod").ZodOptional<import("zod").ZodString>;
2799
2797
  events: import("zod").ZodOptional<import("zod").ZodString>;
2800
2798
  }, "strip", import("zod").ZodTypeAny, {
2801
- limit?: number | undefined;
2802
2799
  start_time?: number | undefined;
2803
2800
  end_time?: number | undefined;
2801
+ limit?: number | undefined;
2804
2802
  order?: string | undefined;
2805
2803
  events?: string | undefined;
2806
2804
  }, {
2807
- limit?: number | undefined;
2808
2805
  start_time?: number | undefined;
2809
2806
  end_time?: number | undefined;
2807
+ limit?: number | undefined;
2810
2808
  order?: string | undefined;
2811
2809
  events?: string | undefined;
2812
2810
  }>;
@@ -2890,13 +2888,13 @@ export declare const figmaEndpointSchemas: {
2890
2888
  projects: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown, "many">>;
2891
2889
  teams: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown, "many">>;
2892
2890
  }, "strip", import("zod").ZodTypeAny, {
2893
- teams?: unknown[] | undefined;
2894
2891
  files?: unknown[] | undefined;
2895
2892
  projects?: unknown[] | undefined;
2896
- }, {
2897
2893
  teams?: unknown[] | undefined;
2894
+ }, {
2898
2895
  files?: unknown[] | undefined;
2899
2896
  projects?: unknown[] | undefined;
2897
+ teams?: unknown[] | undefined;
2900
2898
  }>;
2901
2899
  };
2902
2900
  readonly 'designTools.extractDesignTokens': {
@@ -3029,7 +3027,7 @@ export type BaseFigmaPlugin<T extends FigmaPluginOptions> = CorsairPlugin<'figma
3029
3027
  export type InternalFigmaPlugin = BaseFigmaPlugin<FigmaPluginOptions>;
3030
3028
  export type ExternalFigmaPlugin<T extends FigmaPluginOptions> = BaseFigmaPlugin<T>;
3031
3029
  export declare function figma<const T extends FigmaPluginOptions>(incomingOptions?: FigmaPluginOptions & T): ExternalFigmaPlugin<T>;
3032
- export type { FigmaFileCommentEvent, FigmaFileUpdateEvent, FigmaFileDeleteEvent, FigmaFileVersionUpdateEvent, FigmaLibraryPublishEvent, FigmaPingEvent, FigmaWebhookOutputs, FigmaWebhookPayload, } from './webhooks/types';
3030
+ export type { FigmaFileCommentEvent, FigmaFileDeleteEvent, FigmaFileUpdateEvent, FigmaFileVersionUpdateEvent, FigmaLibraryPublishEvent, FigmaPingEvent, FigmaWebhookOutputs, FigmaWebhookPayload, } from './webhooks/types';
3033
3031
  export { createFigmaEventMatch } from './webhooks/types';
3034
- export type { FigmaEndpointInputs, FigmaEndpointOutputs, CommentsAddResponse, CommentsDeleteResponse, CommentsListResponse, CommentsGetReactionsResponse, CommentsAddReactionResponse, CommentsDeleteReactionResponse, WebhooksCreateResponse, WebhooksDeleteResponse, WebhooksGetResponse, WebhooksListResponse, WebhooksGetRequestsResponse, WebhooksUpdateResponse, DevResourcesCreateResponse, DevResourcesDeleteResponse, DevResourcesGetResponse, DevResourcesUpdateResponse, VariablesCreateModifyDeleteResponse, VariablesGetLocalResponse, VariablesGetPublishedResponse, ComponentsGetResponse, ComponentSetsGetResponse, ComponentsGetForFileResponse, ComponentSetsGetForFileResponse, ComponentsGetForTeamResponse, ComponentSetsGetForTeamResponse, FilesGetJSONResponse, FilesGetMetadataResponse, FilesGetNodesResponse, FilesGetStylesResponse, FilesGetImageFillsResponse, FilesGetVersionsResponse, FilesRenderImagesResponse, FilesGetProjectFilesResponse, StylesGetResponse, StylesGetForTeamResponse, ProjectsGetTeamProjectsResponse, UsersGetCurrentResponse, LibraryAnalyticsComponentActionsResponse, LibraryAnalyticsComponentUsagesResponse, LibraryAnalyticsStyleActionsResponse, LibraryAnalyticsStyleUsagesResponse, LibraryAnalyticsVariableActionsResponse, LibraryAnalyticsVariableUsagesResponse, ActivityLogsListResponse, PaymentsGetResponse, DesignToolsDiscoverResourcesResponse, DesignToolsExtractDesignTokensResponse, DesignToolsExtractPrototypeInteractionsResponse, DesignToolsDownloadImagesResponse, DesignToolsDesignTokensToTailwindResponse, } from './endpoints/types';
3032
+ export type { ActivityLogsListResponse, CommentsAddReactionResponse, CommentsAddResponse, CommentsDeleteReactionResponse, CommentsDeleteResponse, CommentsGetReactionsResponse, CommentsListResponse, ComponentSetsGetForFileResponse, ComponentSetsGetForTeamResponse, ComponentSetsGetResponse, ComponentsGetForFileResponse, ComponentsGetForTeamResponse, ComponentsGetResponse, DesignToolsDesignTokensToTailwindResponse, DesignToolsDiscoverResourcesResponse, DesignToolsDownloadImagesResponse, DesignToolsExtractDesignTokensResponse, DesignToolsExtractPrototypeInteractionsResponse, DevResourcesCreateResponse, DevResourcesDeleteResponse, DevResourcesGetResponse, DevResourcesUpdateResponse, FigmaEndpointInputs, FigmaEndpointOutputs, FilesGetImageFillsResponse, FilesGetJSONResponse, FilesGetMetadataResponse, FilesGetNodesResponse, FilesGetProjectFilesResponse, FilesGetStylesResponse, FilesGetVersionsResponse, FilesRenderImagesResponse, LibraryAnalyticsComponentActionsResponse, LibraryAnalyticsComponentUsagesResponse, LibraryAnalyticsStyleActionsResponse, LibraryAnalyticsStyleUsagesResponse, LibraryAnalyticsVariableActionsResponse, LibraryAnalyticsVariableUsagesResponse, PaymentsGetResponse, ProjectsGetTeamProjectsResponse, StylesGetForTeamResponse, StylesGetResponse, UsersGetCurrentResponse, VariablesCreateModifyDeleteResponse, VariablesGetLocalResponse, VariablesGetPublishedResponse, WebhooksCreateResponse, WebhooksDeleteResponse, WebhooksGetRequestsResponse, WebhooksGetResponse, WebhooksListResponse, WebhooksUpdateResponse, } from './endpoints/types';
3035
3033
  //# sourceMappingURL=index.d.ts.map