@supernova-studio/model 0.47.8 → 0.47.9

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
@@ -3178,6 +3178,7 @@ type DataSourceFigmaImportMetadata = z.infer<typeof DataSourceFigmaImportMetadat
3178
3178
  declare const DataSourceFigmaRemote: z.ZodObject<{
3179
3179
  type: z.ZodLiteral<"Figma">;
3180
3180
  fileId: z.ZodString;
3181
+ preferredCredentialId: z.ZodOptional<z.ZodString>;
3181
3182
  ownerId: z.ZodString;
3182
3183
  ownerName: z.ZodString;
3183
3184
  scope: z.ZodObject<{
@@ -3267,6 +3268,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
3267
3268
  ownerId: string;
3268
3269
  ownerName: string;
3269
3270
  requiresSync: boolean;
3271
+ preferredCredentialId?: string | undefined;
3270
3272
  lastImportMetadata?: {
3271
3273
  fileData?: {
3272
3274
  lastUpdatedAt: Date;
@@ -3295,6 +3297,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
3295
3297
  fileId: string;
3296
3298
  ownerId: string;
3297
3299
  ownerName: string;
3300
+ preferredCredentialId?: string | undefined;
3298
3301
  requiresSync?: boolean | undefined;
3299
3302
  lastImportMetadata?: {
3300
3303
  fileData?: {
@@ -3373,6 +3376,7 @@ type DataSourceVersion = z.infer<typeof DataSourceVersion>;
3373
3376
  declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3374
3377
  type: z.ZodLiteral<"Figma">;
3375
3378
  fileId: z.ZodString;
3379
+ preferredCredentialId: z.ZodOptional<z.ZodString>;
3376
3380
  ownerId: z.ZodString;
3377
3381
  ownerName: z.ZodString;
3378
3382
  scope: z.ZodObject<{
@@ -3462,6 +3466,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3462
3466
  ownerId: string;
3463
3467
  ownerName: string;
3464
3468
  requiresSync: boolean;
3469
+ preferredCredentialId?: string | undefined;
3465
3470
  lastImportMetadata?: {
3466
3471
  fileData?: {
3467
3472
  lastUpdatedAt: Date;
@@ -3490,6 +3495,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3490
3495
  fileId: string;
3491
3496
  ownerId: string;
3492
3497
  ownerName: string;
3498
+ preferredCredentialId?: string | undefined;
3493
3499
  requiresSync?: boolean | undefined;
3494
3500
  lastImportMetadata?: {
3495
3501
  fileData?: {
@@ -42785,6 +42791,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
42785
42791
  figmaRemote: z.ZodObject<{
42786
42792
  type: z.ZodLiteral<"Figma">;
42787
42793
  fileId: z.ZodString;
42794
+ preferredCredentialId: z.ZodOptional<z.ZodString>;
42788
42795
  ownerId: z.ZodString;
42789
42796
  ownerName: z.ZodString;
42790
42797
  scope: z.ZodObject<{
@@ -42809,12 +42816,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
42809
42816
  isUnpublishedImportFallbackEnabled: boolean;
42810
42817
  themePersistentId?: string | undefined;
42811
42818
  }>;
42812
- state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>; /**
42813
- * Describes what to download from each file, this should contain all file id mentioned in
42814
- * importMetadataBySourceId.
42815
- *
42816
- * File id -> file download scope
42817
- */
42819
+ state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
42818
42820
  requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
42819
42821
  lastImportMetadata: z.ZodOptional<z.ZodObject<{
42820
42822
  fileData: z.ZodOptional<z.ZodObject<{
@@ -42879,6 +42881,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
42879
42881
  ownerId: string;
42880
42882
  ownerName: string;
42881
42883
  requiresSync: boolean;
42884
+ preferredCredentialId?: string | undefined;
42882
42885
  lastImportMetadata?: {
42883
42886
  fileData?: {
42884
42887
  lastUpdatedAt: Date;
@@ -42907,6 +42910,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
42907
42910
  fileId: string;
42908
42911
  ownerId: string;
42909
42912
  ownerName: string;
42913
+ preferredCredentialId?: string | undefined;
42910
42914
  requiresSync?: boolean | undefined;
42911
42915
  lastImportMetadata?: {
42912
42916
  fileData?: {
@@ -42940,6 +42944,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
42940
42944
  ownerId: string;
42941
42945
  ownerName: string;
42942
42946
  requiresSync: boolean;
42947
+ preferredCredentialId?: string | undefined;
42943
42948
  lastImportMetadata?: {
42944
42949
  fileData?: {
42945
42950
  lastUpdatedAt: Date;
@@ -42971,6 +42976,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
42971
42976
  fileId: string;
42972
42977
  ownerId: string;
42973
42978
  ownerName: string;
42979
+ preferredCredentialId?: string | undefined;
42974
42980
  requiresSync?: boolean | undefined;
42975
42981
  lastImportMetadata?: {
42976
42982
  fileData?: {
@@ -43014,6 +43020,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
43014
43020
  figmaRemote: z.ZodObject<{
43015
43021
  type: z.ZodLiteral<"Figma">;
43016
43022
  fileId: z.ZodString;
43023
+ preferredCredentialId: z.ZodOptional<z.ZodString>;
43017
43024
  ownerId: z.ZodString;
43018
43025
  ownerName: z.ZodString;
43019
43026
  scope: z.ZodObject<{
@@ -43038,12 +43045,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
43038
43045
  isUnpublishedImportFallbackEnabled: boolean;
43039
43046
  themePersistentId?: string | undefined;
43040
43047
  }>;
43041
- state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>; /**
43042
- * Describes what to download from each file, this should contain all file id mentioned in
43043
- * importMetadataBySourceId.
43044
- *
43045
- * File id -> file download scope
43046
- */
43048
+ state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
43047
43049
  requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
43048
43050
  lastImportMetadata: z.ZodOptional<z.ZodObject<{
43049
43051
  fileData: z.ZodOptional<z.ZodObject<{
@@ -43108,6 +43110,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
43108
43110
  ownerId: string;
43109
43111
  ownerName: string;
43110
43112
  requiresSync: boolean;
43113
+ preferredCredentialId?: string | undefined;
43111
43114
  lastImportMetadata?: {
43112
43115
  fileData?: {
43113
43116
  lastUpdatedAt: Date;
@@ -43136,6 +43139,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
43136
43139
  fileId: string;
43137
43140
  ownerId: string;
43138
43141
  ownerName: string;
43142
+ preferredCredentialId?: string | undefined;
43139
43143
  requiresSync?: boolean | undefined;
43140
43144
  lastImportMetadata?: {
43141
43145
  fileData?: {
@@ -43169,6 +43173,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
43169
43173
  ownerId: string;
43170
43174
  ownerName: string;
43171
43175
  requiresSync: boolean;
43176
+ preferredCredentialId?: string | undefined;
43172
43177
  lastImportMetadata?: {
43173
43178
  fileData?: {
43174
43179
  lastUpdatedAt: Date;
@@ -43200,6 +43205,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
43200
43205
  fileId: string;
43201
43206
  ownerId: string;
43202
43207
  ownerName: string;
43208
+ preferredCredentialId?: string | undefined;
43203
43209
  requiresSync?: boolean | undefined;
43204
43210
  lastImportMetadata?: {
43205
43211
  fileData?: {
@@ -43265,6 +43271,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
43265
43271
  ownerId: string;
43266
43272
  ownerName: string;
43267
43273
  requiresSync: boolean;
43274
+ preferredCredentialId?: string | undefined;
43268
43275
  lastImportMetadata?: {
43269
43276
  fileData?: {
43270
43277
  lastUpdatedAt: Date;
@@ -43310,6 +43317,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
43310
43317
  fileId: string;
43311
43318
  ownerId: string;
43312
43319
  ownerName: string;
43320
+ preferredCredentialId?: string | undefined;
43313
43321
  requiresSync?: boolean | undefined;
43314
43322
  lastImportMetadata?: {
43315
43323
  fileData?: {
@@ -43351,6 +43359,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<{
43351
43359
  figmaRemote: z.ZodObject<{
43352
43360
  type: z.ZodLiteral<"Figma">;
43353
43361
  fileId: z.ZodString;
43362
+ preferredCredentialId: z.ZodOptional<z.ZodString>;
43354
43363
  ownerId: z.ZodString;
43355
43364
  ownerName: z.ZodString;
43356
43365
  scope: z.ZodObject<{
@@ -43375,12 +43384,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<{
43375
43384
  isUnpublishedImportFallbackEnabled: boolean;
43376
43385
  themePersistentId?: string | undefined;
43377
43386
  }>;
43378
- state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>; /**
43379
- * Describes what to download from each file, this should contain all file id mentioned in
43380
- * importMetadataBySourceId.
43381
- *
43382
- * File id -> file download scope
43383
- */
43387
+ state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
43384
43388
  requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
43385
43389
  lastImportMetadata: z.ZodOptional<z.ZodObject<{
43386
43390
  fileData: z.ZodOptional<z.ZodObject<{
@@ -43445,6 +43449,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<{
43445
43449
  ownerId: string;
43446
43450
  ownerName: string;
43447
43451
  requiresSync: boolean;
43452
+ preferredCredentialId?: string | undefined;
43448
43453
  lastImportMetadata?: {
43449
43454
  fileData?: {
43450
43455
  lastUpdatedAt: Date;
@@ -43473,6 +43478,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<{
43473
43478
  fileId: string;
43474
43479
  ownerId: string;
43475
43480
  ownerName: string;
43481
+ preferredCredentialId?: string | undefined;
43476
43482
  requiresSync?: boolean | undefined;
43477
43483
  lastImportMetadata?: {
43478
43484
  fileData?: {
@@ -43506,6 +43512,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<{
43506
43512
  ownerId: string;
43507
43513
  ownerName: string;
43508
43514
  requiresSync: boolean;
43515
+ preferredCredentialId?: string | undefined;
43509
43516
  lastImportMetadata?: {
43510
43517
  fileData?: {
43511
43518
  lastUpdatedAt: Date;
@@ -43537,6 +43544,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<{
43537
43544
  fileId: string;
43538
43545
  ownerId: string;
43539
43546
  ownerName: string;
43547
+ preferredCredentialId?: string | undefined;
43540
43548
  requiresSync?: boolean | undefined;
43541
43549
  lastImportMetadata?: {
43542
43550
  fileData?: {
@@ -43600,6 +43608,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<{
43600
43608
  ownerId: string;
43601
43609
  ownerName: string;
43602
43610
  requiresSync: boolean;
43611
+ preferredCredentialId?: string | undefined;
43603
43612
  lastImportMetadata?: {
43604
43613
  fileData?: {
43605
43614
  lastUpdatedAt: Date;
@@ -43647,6 +43656,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<{
43647
43656
  fileId: string;
43648
43657
  ownerId: string;
43649
43658
  ownerName: string;
43659
+ preferredCredentialId?: string | undefined;
43650
43660
  requiresSync?: boolean | undefined;
43651
43661
  lastImportMetadata?: {
43652
43662
  fileData?: {
@@ -43681,6 +43691,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
43681
43691
  figmaRemote: z.ZodObject<{
43682
43692
  type: z.ZodLiteral<"Figma">;
43683
43693
  fileId: z.ZodString;
43694
+ preferredCredentialId: z.ZodOptional<z.ZodString>;
43684
43695
  ownerId: z.ZodString;
43685
43696
  ownerName: z.ZodString;
43686
43697
  scope: z.ZodObject<{
@@ -43705,12 +43716,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
43705
43716
  isUnpublishedImportFallbackEnabled: boolean;
43706
43717
  themePersistentId?: string | undefined;
43707
43718
  }>;
43708
- state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>; /**
43709
- * Describes what to download from each file, this should contain all file id mentioned in
43710
- * importMetadataBySourceId.
43711
- *
43712
- * File id -> file download scope
43713
- */
43719
+ state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
43714
43720
  requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
43715
43721
  lastImportMetadata: z.ZodOptional<z.ZodObject<{
43716
43722
  fileData: z.ZodOptional<z.ZodObject<{
@@ -43775,6 +43781,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
43775
43781
  ownerId: string;
43776
43782
  ownerName: string;
43777
43783
  requiresSync: boolean;
43784
+ preferredCredentialId?: string | undefined;
43778
43785
  lastImportMetadata?: {
43779
43786
  fileData?: {
43780
43787
  lastUpdatedAt: Date;
@@ -43803,6 +43810,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
43803
43810
  fileId: string;
43804
43811
  ownerId: string;
43805
43812
  ownerName: string;
43813
+ preferredCredentialId?: string | undefined;
43806
43814
  requiresSync?: boolean | undefined;
43807
43815
  lastImportMetadata?: {
43808
43816
  fileData?: {
@@ -43881,6 +43889,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
43881
43889
  ownerId: string;
43882
43890
  ownerName: string;
43883
43891
  requiresSync: boolean;
43892
+ preferredCredentialId?: string | undefined;
43884
43893
  lastImportMetadata?: {
43885
43894
  fileData?: {
43886
43895
  lastUpdatedAt: Date;
@@ -43923,6 +43932,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
43923
43932
  fileId: string;
43924
43933
  ownerId: string;
43925
43934
  ownerName: string;
43935
+ preferredCredentialId?: string | undefined;
43926
43936
  requiresSync?: boolean | undefined;
43927
43937
  lastImportMetadata?: {
43928
43938
  fileData?: {
@@ -43966,6 +43976,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
43966
43976
  figmaRemote: z.ZodObject<{
43967
43977
  type: z.ZodLiteral<"Figma">;
43968
43978
  fileId: z.ZodString;
43979
+ preferredCredentialId: z.ZodOptional<z.ZodString>;
43969
43980
  ownerId: z.ZodString;
43970
43981
  ownerName: z.ZodString;
43971
43982
  scope: z.ZodObject<{
@@ -43990,12 +44001,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
43990
44001
  isUnpublishedImportFallbackEnabled: boolean;
43991
44002
  themePersistentId?: string | undefined;
43992
44003
  }>;
43993
- state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>; /**
43994
- * Describes what to download from each file, this should contain all file id mentioned in
43995
- * importMetadataBySourceId.
43996
- *
43997
- * File id -> file download scope
43998
- */
44004
+ state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
43999
44005
  requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
44000
44006
  lastImportMetadata: z.ZodOptional<z.ZodObject<{
44001
44007
  fileData: z.ZodOptional<z.ZodObject<{
@@ -44060,6 +44066,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44060
44066
  ownerId: string;
44061
44067
  ownerName: string;
44062
44068
  requiresSync: boolean;
44069
+ preferredCredentialId?: string | undefined;
44063
44070
  lastImportMetadata?: {
44064
44071
  fileData?: {
44065
44072
  lastUpdatedAt: Date;
@@ -44088,6 +44095,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44088
44095
  fileId: string;
44089
44096
  ownerId: string;
44090
44097
  ownerName: string;
44098
+ preferredCredentialId?: string | undefined;
44091
44099
  requiresSync?: boolean | undefined;
44092
44100
  lastImportMetadata?: {
44093
44101
  fileData?: {
@@ -44121,6 +44129,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44121
44129
  ownerId: string;
44122
44130
  ownerName: string;
44123
44131
  requiresSync: boolean;
44132
+ preferredCredentialId?: string | undefined;
44124
44133
  lastImportMetadata?: {
44125
44134
  fileData?: {
44126
44135
  lastUpdatedAt: Date;
@@ -44152,6 +44161,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44152
44161
  fileId: string;
44153
44162
  ownerId: string;
44154
44163
  ownerName: string;
44164
+ preferredCredentialId?: string | undefined;
44155
44165
  requiresSync?: boolean | undefined;
44156
44166
  lastImportMetadata?: {
44157
44167
  fileData?: {
@@ -44220,6 +44230,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44220
44230
  figmaRemote: z.ZodObject<{
44221
44231
  type: z.ZodLiteral<"Figma">;
44222
44232
  fileId: z.ZodString;
44233
+ preferredCredentialId: z.ZodOptional<z.ZodString>;
44223
44234
  ownerId: z.ZodString;
44224
44235
  ownerName: z.ZodString;
44225
44236
  scope: z.ZodObject<{
@@ -44244,12 +44255,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44244
44255
  isUnpublishedImportFallbackEnabled: boolean;
44245
44256
  themePersistentId?: string | undefined;
44246
44257
  }>;
44247
- state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>; /**
44248
- * Describes what to download from each file, this should contain all file id mentioned in
44249
- * importMetadataBySourceId.
44250
- *
44251
- * File id -> file download scope
44252
- */
44258
+ state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
44253
44259
  requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
44254
44260
  lastImportMetadata: z.ZodOptional<z.ZodObject<{
44255
44261
  fileData: z.ZodOptional<z.ZodObject<{
@@ -44314,6 +44320,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44314
44320
  ownerId: string;
44315
44321
  ownerName: string;
44316
44322
  requiresSync: boolean;
44323
+ preferredCredentialId?: string | undefined;
44317
44324
  lastImportMetadata?: {
44318
44325
  fileData?: {
44319
44326
  lastUpdatedAt: Date;
@@ -44342,6 +44349,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44342
44349
  fileId: string;
44343
44350
  ownerId: string;
44344
44351
  ownerName: string;
44352
+ preferredCredentialId?: string | undefined;
44345
44353
  requiresSync?: boolean | undefined;
44346
44354
  lastImportMetadata?: {
44347
44355
  fileData?: {
@@ -44420,6 +44428,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44420
44428
  ownerId: string;
44421
44429
  ownerName: string;
44422
44430
  requiresSync: boolean;
44431
+ preferredCredentialId?: string | undefined;
44423
44432
  lastImportMetadata?: {
44424
44433
  fileData?: {
44425
44434
  lastUpdatedAt: Date;
@@ -44462,6 +44471,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44462
44471
  fileId: string;
44463
44472
  ownerId: string;
44464
44473
  ownerName: string;
44474
+ preferredCredentialId?: string | undefined;
44465
44475
  requiresSync?: boolean | undefined;
44466
44476
  lastImportMetadata?: {
44467
44477
  fileData?: {
@@ -44512,6 +44522,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44512
44522
  ownerId: string;
44513
44523
  ownerName: string;
44514
44524
  requiresSync: boolean;
44525
+ preferredCredentialId?: string | undefined;
44515
44526
  lastImportMetadata?: {
44516
44527
  fileData?: {
44517
44528
  lastUpdatedAt: Date;
@@ -44563,6 +44574,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44563
44574
  ownerId: string;
44564
44575
  ownerName: string;
44565
44576
  requiresSync: boolean;
44577
+ preferredCredentialId?: string | undefined;
44566
44578
  lastImportMetadata?: {
44567
44579
  fileData?: {
44568
44580
  lastUpdatedAt: Date;
@@ -44611,6 +44623,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44611
44623
  fileId: string;
44612
44624
  ownerId: string;
44613
44625
  ownerName: string;
44626
+ preferredCredentialId?: string | undefined;
44614
44627
  requiresSync?: boolean | undefined;
44615
44628
  lastImportMetadata?: {
44616
44629
  fileData?: {
@@ -44652,6 +44665,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
44652
44665
  fileId: string;
44653
44666
  ownerId: string;
44654
44667
  ownerName: string;
44668
+ preferredCredentialId?: string | undefined;
44655
44669
  requiresSync?: boolean | undefined;
44656
44670
  lastImportMetadata?: {
44657
44671
  fileData?: {