@supernova-studio/model 1.10.10 → 1.10.11

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
@@ -158141,10 +158141,13 @@ declare const ExportJobLogEntry: z.ZodObject<{
158141
158141
  type ExportJobLogEntry = z.infer<typeof ExportJobLogEntry>;
158142
158142
  declare const ExportJobPullRequestDestinationResult: z.ZodObject<{
158143
158143
  pullRequestUrl: z.ZodString;
158144
+ sparseCheckoutUsed: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
158144
158145
  }, "strip", z.ZodTypeAny, {
158145
158146
  pullRequestUrl: string;
158147
+ sparseCheckoutUsed?: boolean | undefined;
158146
158148
  }, {
158147
158149
  pullRequestUrl: string;
158150
+ sparseCheckoutUsed?: boolean | null | undefined;
158148
158151
  }>;
158149
158152
  type ExportJobPullRequestDestinationResult = z.infer<typeof ExportJobPullRequestDestinationResult>;
158150
158153
  declare const ExportJobS3DestinationResult: z.ZodObject<{
@@ -158211,39 +158214,55 @@ declare const ExportJobResult: z.ZodObject<{
158211
158214
  } | null | undefined>;
158212
158215
  github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158213
158216
  pullRequestUrl: string;
158217
+ sparseCheckoutUsed?: boolean | undefined;
158214
158218
  }, z.ZodTypeDef, {
158215
158219
  pullRequestUrl: string;
158220
+ sparseCheckoutUsed?: boolean | null | undefined;
158216
158221
  }>>>, {
158217
158222
  pullRequestUrl: string;
158223
+ sparseCheckoutUsed?: boolean | undefined;
158218
158224
  } | undefined, {
158219
158225
  pullRequestUrl: string;
158226
+ sparseCheckoutUsed?: boolean | null | undefined;
158220
158227
  } | null | undefined>;
158221
158228
  azure: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158222
158229
  pullRequestUrl: string;
158230
+ sparseCheckoutUsed?: boolean | undefined;
158223
158231
  }, z.ZodTypeDef, {
158224
158232
  pullRequestUrl: string;
158233
+ sparseCheckoutUsed?: boolean | null | undefined;
158225
158234
  }>>>, {
158226
158235
  pullRequestUrl: string;
158236
+ sparseCheckoutUsed?: boolean | undefined;
158227
158237
  } | undefined, {
158228
158238
  pullRequestUrl: string;
158239
+ sparseCheckoutUsed?: boolean | null | undefined;
158229
158240
  } | null | undefined>;
158230
158241
  gitlab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158231
158242
  pullRequestUrl: string;
158243
+ sparseCheckoutUsed?: boolean | undefined;
158232
158244
  }, z.ZodTypeDef, {
158233
158245
  pullRequestUrl: string;
158246
+ sparseCheckoutUsed?: boolean | null | undefined;
158234
158247
  }>>>, {
158235
158248
  pullRequestUrl: string;
158249
+ sparseCheckoutUsed?: boolean | undefined;
158236
158250
  } | undefined, {
158237
158251
  pullRequestUrl: string;
158252
+ sparseCheckoutUsed?: boolean | null | undefined;
158238
158253
  } | null | undefined>;
158239
158254
  bitbucket: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158240
158255
  pullRequestUrl: string;
158256
+ sparseCheckoutUsed?: boolean | undefined;
158241
158257
  }, z.ZodTypeDef, {
158242
158258
  pullRequestUrl: string;
158259
+ sparseCheckoutUsed?: boolean | null | undefined;
158243
158260
  }>>>, {
158244
158261
  pullRequestUrl: string;
158262
+ sparseCheckoutUsed?: boolean | undefined;
158245
158263
  } | undefined, {
158246
158264
  pullRequestUrl: string;
158265
+ sparseCheckoutUsed?: boolean | null | undefined;
158247
158266
  } | null | undefined>;
158248
158267
  sndocs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158249
158268
  url: string;
@@ -158279,6 +158298,7 @@ declare const ExportJobResult: z.ZodObject<{
158279
158298
  error?: string | undefined;
158280
158299
  github?: {
158281
158300
  pullRequestUrl: string;
158301
+ sparseCheckoutUsed?: boolean | undefined;
158282
158302
  } | undefined;
158283
158303
  logs?: {
158284
158304
  message: string;
@@ -158288,12 +158308,15 @@ declare const ExportJobResult: z.ZodObject<{
158288
158308
  }[] | undefined;
158289
158309
  azure?: {
158290
158310
  pullRequestUrl: string;
158311
+ sparseCheckoutUsed?: boolean | undefined;
158291
158312
  } | undefined;
158292
158313
  gitlab?: {
158293
158314
  pullRequestUrl: string;
158315
+ sparseCheckoutUsed?: boolean | undefined;
158294
158316
  } | undefined;
158295
158317
  bitbucket?: {
158296
158318
  pullRequestUrl: string;
158319
+ sparseCheckoutUsed?: boolean | undefined;
158297
158320
  } | undefined;
158298
158321
  s3?: {
158299
158322
  path: string;
@@ -158310,6 +158333,7 @@ declare const ExportJobResult: z.ZodObject<{
158310
158333
  error?: string | undefined;
158311
158334
  github?: {
158312
158335
  pullRequestUrl: string;
158336
+ sparseCheckoutUsed?: boolean | null | undefined;
158313
158337
  } | null | undefined;
158314
158338
  logs?: {
158315
158339
  message: string;
@@ -158319,12 +158343,15 @@ declare const ExportJobResult: z.ZodObject<{
158319
158343
  }[] | null | undefined;
158320
158344
  azure?: {
158321
158345
  pullRequestUrl: string;
158346
+ sparseCheckoutUsed?: boolean | null | undefined;
158322
158347
  } | null | undefined;
158323
158348
  gitlab?: {
158324
158349
  pullRequestUrl: string;
158350
+ sparseCheckoutUsed?: boolean | null | undefined;
158325
158351
  } | null | undefined;
158326
158352
  bitbucket?: {
158327
158353
  pullRequestUrl: string;
158354
+ sparseCheckoutUsed?: boolean | null | undefined;
158328
158355
  } | null | undefined;
158329
158356
  s3?: {
158330
158357
  path: string;
@@ -158643,39 +158670,55 @@ declare const ExportJob: z.ZodObject<{
158643
158670
  } | null | undefined>;
158644
158671
  github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158645
158672
  pullRequestUrl: string;
158673
+ sparseCheckoutUsed?: boolean | undefined;
158646
158674
  }, z.ZodTypeDef, {
158647
158675
  pullRequestUrl: string;
158676
+ sparseCheckoutUsed?: boolean | null | undefined;
158648
158677
  }>>>, {
158649
158678
  pullRequestUrl: string;
158679
+ sparseCheckoutUsed?: boolean | undefined;
158650
158680
  } | undefined, {
158651
158681
  pullRequestUrl: string;
158682
+ sparseCheckoutUsed?: boolean | null | undefined;
158652
158683
  } | null | undefined>;
158653
158684
  azure: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158654
158685
  pullRequestUrl: string;
158686
+ sparseCheckoutUsed?: boolean | undefined;
158655
158687
  }, z.ZodTypeDef, {
158656
158688
  pullRequestUrl: string;
158689
+ sparseCheckoutUsed?: boolean | null | undefined;
158657
158690
  }>>>, {
158658
158691
  pullRequestUrl: string;
158692
+ sparseCheckoutUsed?: boolean | undefined;
158659
158693
  } | undefined, {
158660
158694
  pullRequestUrl: string;
158695
+ sparseCheckoutUsed?: boolean | null | undefined;
158661
158696
  } | null | undefined>;
158662
158697
  gitlab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158663
158698
  pullRequestUrl: string;
158699
+ sparseCheckoutUsed?: boolean | undefined;
158664
158700
  }, z.ZodTypeDef, {
158665
158701
  pullRequestUrl: string;
158702
+ sparseCheckoutUsed?: boolean | null | undefined;
158666
158703
  }>>>, {
158667
158704
  pullRequestUrl: string;
158705
+ sparseCheckoutUsed?: boolean | undefined;
158668
158706
  } | undefined, {
158669
158707
  pullRequestUrl: string;
158708
+ sparseCheckoutUsed?: boolean | null | undefined;
158670
158709
  } | null | undefined>;
158671
158710
  bitbucket: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158672
158711
  pullRequestUrl: string;
158712
+ sparseCheckoutUsed?: boolean | undefined;
158673
158713
  }, z.ZodTypeDef, {
158674
158714
  pullRequestUrl: string;
158715
+ sparseCheckoutUsed?: boolean | null | undefined;
158675
158716
  }>>>, {
158676
158717
  pullRequestUrl: string;
158718
+ sparseCheckoutUsed?: boolean | undefined;
158677
158719
  } | undefined, {
158678
158720
  pullRequestUrl: string;
158721
+ sparseCheckoutUsed?: boolean | null | undefined;
158679
158722
  } | null | undefined>;
158680
158723
  sndocs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158681
158724
  url: string;
@@ -158711,6 +158754,7 @@ declare const ExportJob: z.ZodObject<{
158711
158754
  error?: string | undefined;
158712
158755
  github?: {
158713
158756
  pullRequestUrl: string;
158757
+ sparseCheckoutUsed?: boolean | undefined;
158714
158758
  } | undefined;
158715
158759
  logs?: {
158716
158760
  message: string;
@@ -158720,12 +158764,15 @@ declare const ExportJob: z.ZodObject<{
158720
158764
  }[] | undefined;
158721
158765
  azure?: {
158722
158766
  pullRequestUrl: string;
158767
+ sparseCheckoutUsed?: boolean | undefined;
158723
158768
  } | undefined;
158724
158769
  gitlab?: {
158725
158770
  pullRequestUrl: string;
158771
+ sparseCheckoutUsed?: boolean | undefined;
158726
158772
  } | undefined;
158727
158773
  bitbucket?: {
158728
158774
  pullRequestUrl: string;
158775
+ sparseCheckoutUsed?: boolean | undefined;
158729
158776
  } | undefined;
158730
158777
  s3?: {
158731
158778
  path: string;
@@ -158742,6 +158789,7 @@ declare const ExportJob: z.ZodObject<{
158742
158789
  error?: string | undefined;
158743
158790
  github?: {
158744
158791
  pullRequestUrl: string;
158792
+ sparseCheckoutUsed?: boolean | null | undefined;
158745
158793
  } | null | undefined;
158746
158794
  logs?: {
158747
158795
  message: string;
@@ -158751,12 +158799,15 @@ declare const ExportJob: z.ZodObject<{
158751
158799
  }[] | null | undefined;
158752
158800
  azure?: {
158753
158801
  pullRequestUrl: string;
158802
+ sparseCheckoutUsed?: boolean | null | undefined;
158754
158803
  } | null | undefined;
158755
158804
  gitlab?: {
158756
158805
  pullRequestUrl: string;
158806
+ sparseCheckoutUsed?: boolean | null | undefined;
158757
158807
  } | null | undefined;
158758
158808
  bitbucket?: {
158759
158809
  pullRequestUrl: string;
158810
+ sparseCheckoutUsed?: boolean | null | undefined;
158760
158811
  } | null | undefined;
158761
158812
  s3?: {
158762
158813
  path: string;
@@ -158881,6 +158932,7 @@ declare const ExportJob: z.ZodObject<{
158881
158932
  error?: string | undefined;
158882
158933
  github?: {
158883
158934
  pullRequestUrl: string;
158935
+ sparseCheckoutUsed?: boolean | undefined;
158884
158936
  } | undefined;
158885
158937
  logs?: {
158886
158938
  message: string;
@@ -158890,12 +158942,15 @@ declare const ExportJob: z.ZodObject<{
158890
158942
  }[] | undefined;
158891
158943
  azure?: {
158892
158944
  pullRequestUrl: string;
158945
+ sparseCheckoutUsed?: boolean | undefined;
158893
158946
  } | undefined;
158894
158947
  gitlab?: {
158895
158948
  pullRequestUrl: string;
158949
+ sparseCheckoutUsed?: boolean | undefined;
158896
158950
  } | undefined;
158897
158951
  bitbucket?: {
158898
158952
  pullRequestUrl: string;
158953
+ sparseCheckoutUsed?: boolean | undefined;
158899
158954
  } | undefined;
158900
158955
  s3?: {
158901
158956
  path: string;
@@ -159016,6 +159071,7 @@ declare const ExportJob: z.ZodObject<{
159016
159071
  error?: string | undefined;
159017
159072
  github?: {
159018
159073
  pullRequestUrl: string;
159074
+ sparseCheckoutUsed?: boolean | null | undefined;
159019
159075
  } | null | undefined;
159020
159076
  logs?: {
159021
159077
  message: string;
@@ -159025,12 +159081,15 @@ declare const ExportJob: z.ZodObject<{
159025
159081
  }[] | null | undefined;
159026
159082
  azure?: {
159027
159083
  pullRequestUrl: string;
159084
+ sparseCheckoutUsed?: boolean | null | undefined;
159028
159085
  } | null | undefined;
159029
159086
  gitlab?: {
159030
159087
  pullRequestUrl: string;
159088
+ sparseCheckoutUsed?: boolean | null | undefined;
159031
159089
  } | null | undefined;
159032
159090
  bitbucket?: {
159033
159091
  pullRequestUrl: string;
159092
+ sparseCheckoutUsed?: boolean | null | undefined;
159034
159093
  } | null | undefined;
159035
159094
  s3?: {
159036
159095
  path: string;
@@ -162543,26 +162602,26 @@ type FeatureFlagWithDefaults = keyof typeof FeatureFlagDefaults;
162543
162602
  type FeatureFlagDefaultsTypes = {
162544
162603
  [K in FeatureFlagWithDefaults]: (typeof FeatureFlagDefaults)[K];
162545
162604
  };
162546
- declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
162605
+ declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
162547
162606
  type FlaggedFeature = z.infer<typeof FlaggedFeature>;
162548
- declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>, z.ZodBoolean>;
162607
+ declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>, z.ZodBoolean>;
162549
162608
  type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
162550
162609
  declare const FeatureFlag: z.ZodObject<{
162551
162610
  id: z.ZodString;
162552
- feature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
162611
+ feature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
162553
162612
  createdAt: z.ZodDate;
162554
162613
  enabled: z.ZodBoolean;
162555
162614
  designSystemId: z.ZodOptional<z.ZodString>;
162556
162615
  data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
162557
162616
  }, "strip", z.ZodTypeAny, {
162558
- feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
162617
+ feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
162559
162618
  id: string;
162560
162619
  createdAt: Date;
162561
162620
  enabled: boolean;
162562
162621
  data?: Record<string, any> | null | undefined;
162563
162622
  designSystemId?: string | undefined;
162564
162623
  }, {
162565
- feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
162624
+ feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
162566
162625
  id: string;
162567
162626
  createdAt: Date;
162568
162627
  enabled: boolean;
package/dist/index.d.ts CHANGED
@@ -158141,10 +158141,13 @@ declare const ExportJobLogEntry: z.ZodObject<{
158141
158141
  type ExportJobLogEntry = z.infer<typeof ExportJobLogEntry>;
158142
158142
  declare const ExportJobPullRequestDestinationResult: z.ZodObject<{
158143
158143
  pullRequestUrl: z.ZodString;
158144
+ sparseCheckoutUsed: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
158144
158145
  }, "strip", z.ZodTypeAny, {
158145
158146
  pullRequestUrl: string;
158147
+ sparseCheckoutUsed?: boolean | undefined;
158146
158148
  }, {
158147
158149
  pullRequestUrl: string;
158150
+ sparseCheckoutUsed?: boolean | null | undefined;
158148
158151
  }>;
158149
158152
  type ExportJobPullRequestDestinationResult = z.infer<typeof ExportJobPullRequestDestinationResult>;
158150
158153
  declare const ExportJobS3DestinationResult: z.ZodObject<{
@@ -158211,39 +158214,55 @@ declare const ExportJobResult: z.ZodObject<{
158211
158214
  } | null | undefined>;
158212
158215
  github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158213
158216
  pullRequestUrl: string;
158217
+ sparseCheckoutUsed?: boolean | undefined;
158214
158218
  }, z.ZodTypeDef, {
158215
158219
  pullRequestUrl: string;
158220
+ sparseCheckoutUsed?: boolean | null | undefined;
158216
158221
  }>>>, {
158217
158222
  pullRequestUrl: string;
158223
+ sparseCheckoutUsed?: boolean | undefined;
158218
158224
  } | undefined, {
158219
158225
  pullRequestUrl: string;
158226
+ sparseCheckoutUsed?: boolean | null | undefined;
158220
158227
  } | null | undefined>;
158221
158228
  azure: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158222
158229
  pullRequestUrl: string;
158230
+ sparseCheckoutUsed?: boolean | undefined;
158223
158231
  }, z.ZodTypeDef, {
158224
158232
  pullRequestUrl: string;
158233
+ sparseCheckoutUsed?: boolean | null | undefined;
158225
158234
  }>>>, {
158226
158235
  pullRequestUrl: string;
158236
+ sparseCheckoutUsed?: boolean | undefined;
158227
158237
  } | undefined, {
158228
158238
  pullRequestUrl: string;
158239
+ sparseCheckoutUsed?: boolean | null | undefined;
158229
158240
  } | null | undefined>;
158230
158241
  gitlab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158231
158242
  pullRequestUrl: string;
158243
+ sparseCheckoutUsed?: boolean | undefined;
158232
158244
  }, z.ZodTypeDef, {
158233
158245
  pullRequestUrl: string;
158246
+ sparseCheckoutUsed?: boolean | null | undefined;
158234
158247
  }>>>, {
158235
158248
  pullRequestUrl: string;
158249
+ sparseCheckoutUsed?: boolean | undefined;
158236
158250
  } | undefined, {
158237
158251
  pullRequestUrl: string;
158252
+ sparseCheckoutUsed?: boolean | null | undefined;
158238
158253
  } | null | undefined>;
158239
158254
  bitbucket: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158240
158255
  pullRequestUrl: string;
158256
+ sparseCheckoutUsed?: boolean | undefined;
158241
158257
  }, z.ZodTypeDef, {
158242
158258
  pullRequestUrl: string;
158259
+ sparseCheckoutUsed?: boolean | null | undefined;
158243
158260
  }>>>, {
158244
158261
  pullRequestUrl: string;
158262
+ sparseCheckoutUsed?: boolean | undefined;
158245
158263
  } | undefined, {
158246
158264
  pullRequestUrl: string;
158265
+ sparseCheckoutUsed?: boolean | null | undefined;
158247
158266
  } | null | undefined>;
158248
158267
  sndocs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158249
158268
  url: string;
@@ -158279,6 +158298,7 @@ declare const ExportJobResult: z.ZodObject<{
158279
158298
  error?: string | undefined;
158280
158299
  github?: {
158281
158300
  pullRequestUrl: string;
158301
+ sparseCheckoutUsed?: boolean | undefined;
158282
158302
  } | undefined;
158283
158303
  logs?: {
158284
158304
  message: string;
@@ -158288,12 +158308,15 @@ declare const ExportJobResult: z.ZodObject<{
158288
158308
  }[] | undefined;
158289
158309
  azure?: {
158290
158310
  pullRequestUrl: string;
158311
+ sparseCheckoutUsed?: boolean | undefined;
158291
158312
  } | undefined;
158292
158313
  gitlab?: {
158293
158314
  pullRequestUrl: string;
158315
+ sparseCheckoutUsed?: boolean | undefined;
158294
158316
  } | undefined;
158295
158317
  bitbucket?: {
158296
158318
  pullRequestUrl: string;
158319
+ sparseCheckoutUsed?: boolean | undefined;
158297
158320
  } | undefined;
158298
158321
  s3?: {
158299
158322
  path: string;
@@ -158310,6 +158333,7 @@ declare const ExportJobResult: z.ZodObject<{
158310
158333
  error?: string | undefined;
158311
158334
  github?: {
158312
158335
  pullRequestUrl: string;
158336
+ sparseCheckoutUsed?: boolean | null | undefined;
158313
158337
  } | null | undefined;
158314
158338
  logs?: {
158315
158339
  message: string;
@@ -158319,12 +158343,15 @@ declare const ExportJobResult: z.ZodObject<{
158319
158343
  }[] | null | undefined;
158320
158344
  azure?: {
158321
158345
  pullRequestUrl: string;
158346
+ sparseCheckoutUsed?: boolean | null | undefined;
158322
158347
  } | null | undefined;
158323
158348
  gitlab?: {
158324
158349
  pullRequestUrl: string;
158350
+ sparseCheckoutUsed?: boolean | null | undefined;
158325
158351
  } | null | undefined;
158326
158352
  bitbucket?: {
158327
158353
  pullRequestUrl: string;
158354
+ sparseCheckoutUsed?: boolean | null | undefined;
158328
158355
  } | null | undefined;
158329
158356
  s3?: {
158330
158357
  path: string;
@@ -158643,39 +158670,55 @@ declare const ExportJob: z.ZodObject<{
158643
158670
  } | null | undefined>;
158644
158671
  github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158645
158672
  pullRequestUrl: string;
158673
+ sparseCheckoutUsed?: boolean | undefined;
158646
158674
  }, z.ZodTypeDef, {
158647
158675
  pullRequestUrl: string;
158676
+ sparseCheckoutUsed?: boolean | null | undefined;
158648
158677
  }>>>, {
158649
158678
  pullRequestUrl: string;
158679
+ sparseCheckoutUsed?: boolean | undefined;
158650
158680
  } | undefined, {
158651
158681
  pullRequestUrl: string;
158682
+ sparseCheckoutUsed?: boolean | null | undefined;
158652
158683
  } | null | undefined>;
158653
158684
  azure: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158654
158685
  pullRequestUrl: string;
158686
+ sparseCheckoutUsed?: boolean | undefined;
158655
158687
  }, z.ZodTypeDef, {
158656
158688
  pullRequestUrl: string;
158689
+ sparseCheckoutUsed?: boolean | null | undefined;
158657
158690
  }>>>, {
158658
158691
  pullRequestUrl: string;
158692
+ sparseCheckoutUsed?: boolean | undefined;
158659
158693
  } | undefined, {
158660
158694
  pullRequestUrl: string;
158695
+ sparseCheckoutUsed?: boolean | null | undefined;
158661
158696
  } | null | undefined>;
158662
158697
  gitlab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158663
158698
  pullRequestUrl: string;
158699
+ sparseCheckoutUsed?: boolean | undefined;
158664
158700
  }, z.ZodTypeDef, {
158665
158701
  pullRequestUrl: string;
158702
+ sparseCheckoutUsed?: boolean | null | undefined;
158666
158703
  }>>>, {
158667
158704
  pullRequestUrl: string;
158705
+ sparseCheckoutUsed?: boolean | undefined;
158668
158706
  } | undefined, {
158669
158707
  pullRequestUrl: string;
158708
+ sparseCheckoutUsed?: boolean | null | undefined;
158670
158709
  } | null | undefined>;
158671
158710
  bitbucket: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158672
158711
  pullRequestUrl: string;
158712
+ sparseCheckoutUsed?: boolean | undefined;
158673
158713
  }, z.ZodTypeDef, {
158674
158714
  pullRequestUrl: string;
158715
+ sparseCheckoutUsed?: boolean | null | undefined;
158675
158716
  }>>>, {
158676
158717
  pullRequestUrl: string;
158718
+ sparseCheckoutUsed?: boolean | undefined;
158677
158719
  } | undefined, {
158678
158720
  pullRequestUrl: string;
158721
+ sparseCheckoutUsed?: boolean | null | undefined;
158679
158722
  } | null | undefined>;
158680
158723
  sndocs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
158681
158724
  url: string;
@@ -158711,6 +158754,7 @@ declare const ExportJob: z.ZodObject<{
158711
158754
  error?: string | undefined;
158712
158755
  github?: {
158713
158756
  pullRequestUrl: string;
158757
+ sparseCheckoutUsed?: boolean | undefined;
158714
158758
  } | undefined;
158715
158759
  logs?: {
158716
158760
  message: string;
@@ -158720,12 +158764,15 @@ declare const ExportJob: z.ZodObject<{
158720
158764
  }[] | undefined;
158721
158765
  azure?: {
158722
158766
  pullRequestUrl: string;
158767
+ sparseCheckoutUsed?: boolean | undefined;
158723
158768
  } | undefined;
158724
158769
  gitlab?: {
158725
158770
  pullRequestUrl: string;
158771
+ sparseCheckoutUsed?: boolean | undefined;
158726
158772
  } | undefined;
158727
158773
  bitbucket?: {
158728
158774
  pullRequestUrl: string;
158775
+ sparseCheckoutUsed?: boolean | undefined;
158729
158776
  } | undefined;
158730
158777
  s3?: {
158731
158778
  path: string;
@@ -158742,6 +158789,7 @@ declare const ExportJob: z.ZodObject<{
158742
158789
  error?: string | undefined;
158743
158790
  github?: {
158744
158791
  pullRequestUrl: string;
158792
+ sparseCheckoutUsed?: boolean | null | undefined;
158745
158793
  } | null | undefined;
158746
158794
  logs?: {
158747
158795
  message: string;
@@ -158751,12 +158799,15 @@ declare const ExportJob: z.ZodObject<{
158751
158799
  }[] | null | undefined;
158752
158800
  azure?: {
158753
158801
  pullRequestUrl: string;
158802
+ sparseCheckoutUsed?: boolean | null | undefined;
158754
158803
  } | null | undefined;
158755
158804
  gitlab?: {
158756
158805
  pullRequestUrl: string;
158806
+ sparseCheckoutUsed?: boolean | null | undefined;
158757
158807
  } | null | undefined;
158758
158808
  bitbucket?: {
158759
158809
  pullRequestUrl: string;
158810
+ sparseCheckoutUsed?: boolean | null | undefined;
158760
158811
  } | null | undefined;
158761
158812
  s3?: {
158762
158813
  path: string;
@@ -158881,6 +158932,7 @@ declare const ExportJob: z.ZodObject<{
158881
158932
  error?: string | undefined;
158882
158933
  github?: {
158883
158934
  pullRequestUrl: string;
158935
+ sparseCheckoutUsed?: boolean | undefined;
158884
158936
  } | undefined;
158885
158937
  logs?: {
158886
158938
  message: string;
@@ -158890,12 +158942,15 @@ declare const ExportJob: z.ZodObject<{
158890
158942
  }[] | undefined;
158891
158943
  azure?: {
158892
158944
  pullRequestUrl: string;
158945
+ sparseCheckoutUsed?: boolean | undefined;
158893
158946
  } | undefined;
158894
158947
  gitlab?: {
158895
158948
  pullRequestUrl: string;
158949
+ sparseCheckoutUsed?: boolean | undefined;
158896
158950
  } | undefined;
158897
158951
  bitbucket?: {
158898
158952
  pullRequestUrl: string;
158953
+ sparseCheckoutUsed?: boolean | undefined;
158899
158954
  } | undefined;
158900
158955
  s3?: {
158901
158956
  path: string;
@@ -159016,6 +159071,7 @@ declare const ExportJob: z.ZodObject<{
159016
159071
  error?: string | undefined;
159017
159072
  github?: {
159018
159073
  pullRequestUrl: string;
159074
+ sparseCheckoutUsed?: boolean | null | undefined;
159019
159075
  } | null | undefined;
159020
159076
  logs?: {
159021
159077
  message: string;
@@ -159025,12 +159081,15 @@ declare const ExportJob: z.ZodObject<{
159025
159081
  }[] | null | undefined;
159026
159082
  azure?: {
159027
159083
  pullRequestUrl: string;
159084
+ sparseCheckoutUsed?: boolean | null | undefined;
159028
159085
  } | null | undefined;
159029
159086
  gitlab?: {
159030
159087
  pullRequestUrl: string;
159088
+ sparseCheckoutUsed?: boolean | null | undefined;
159031
159089
  } | null | undefined;
159032
159090
  bitbucket?: {
159033
159091
  pullRequestUrl: string;
159092
+ sparseCheckoutUsed?: boolean | null | undefined;
159034
159093
  } | null | undefined;
159035
159094
  s3?: {
159036
159095
  path: string;
@@ -162543,26 +162602,26 @@ type FeatureFlagWithDefaults = keyof typeof FeatureFlagDefaults;
162543
162602
  type FeatureFlagDefaultsTypes = {
162544
162603
  [K in FeatureFlagWithDefaults]: (typeof FeatureFlagDefaults)[K];
162545
162604
  };
162546
- declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
162605
+ declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
162547
162606
  type FlaggedFeature = z.infer<typeof FlaggedFeature>;
162548
- declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>, z.ZodBoolean>;
162607
+ declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>, z.ZodBoolean>;
162549
162608
  type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
162550
162609
  declare const FeatureFlag: z.ZodObject<{
162551
162610
  id: z.ZodString;
162552
- feature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
162611
+ feature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
162553
162612
  createdAt: z.ZodDate;
162554
162613
  enabled: z.ZodBoolean;
162555
162614
  designSystemId: z.ZodOptional<z.ZodString>;
162556
162615
  data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
162557
162616
  }, "strip", z.ZodTypeAny, {
162558
- feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
162617
+ feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
162559
162618
  id: string;
162560
162619
  createdAt: Date;
162561
162620
  enabled: boolean;
162562
162621
  data?: Record<string, any> | null | undefined;
162563
162622
  designSystemId?: string | undefined;
162564
162623
  }, {
162565
- feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
162624
+ feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
162566
162625
  id: string;
162567
162626
  createdAt: Date;
162568
162627
  enabled: boolean;
package/dist/index.js CHANGED
@@ -6074,7 +6074,8 @@ var ExportJobLogEntry = _zod.z.object({
6074
6074
  message: _zod.z.string()
6075
6075
  });
6076
6076
  var ExportJobPullRequestDestinationResult = _zod.z.object({
6077
- pullRequestUrl: _zod.z.string()
6077
+ pullRequestUrl: _zod.z.string(),
6078
+ sparseCheckoutUsed: nullishToOptional(_zod.z.boolean())
6078
6079
  });
6079
6080
  var ExportJobS3DestinationResult = _zod.z.object({
6080
6081
  bucket: _zod.z.string(),
@@ -6168,6 +6169,8 @@ var FlaggedFeature = _zod.z.enum([
6168
6169
  "NonCompatibleTypeChanges",
6169
6170
  "TypographyUseFontStyle",
6170
6171
  "FigmaImporterV3",
6172
+ "SparseCheckoutEnabled",
6173
+ "NoTagsNoBlobsCheckoutEnabled",
6171
6174
  "PulsarDebugMode",
6172
6175
  "PulsarLogSdkNetwork",
6173
6176
  "PulsarCacheSdk",