iracing-data-client 0.2.0 → 0.2.2

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/lib/index.mjs CHANGED
@@ -779,7 +779,23 @@ var IRacingClient = class {
779
779
  this.tokenManager.clearTokens();
780
780
  }
781
781
  };
782
- var CarAssets = z6.record(z6.string(), z6.unknown());
782
+ var CarAssets = z6.record(z6.string(), z6.object({
783
+ carId: z6.optional(z6.nullable(z6.number())),
784
+ carRules: z6.optional(z6.nullable(z6.array(z6.unknown()))),
785
+ detailCopy: z6.optional(z6.nullable(z6.string())),
786
+ detailScreenShotImages: z6.optional(z6.nullable(z6.string())),
787
+ detailTechspecsCopy: z6.optional(z6.nullable(z6.string())),
788
+ folder: z6.optional(z6.nullable(z6.string())),
789
+ galleryImages: z6.optional(z6.nullable(z6.string())),
790
+ galleryPrefix: z6.optional(z6.nullable(z6.string())),
791
+ groupImage: z6.optional(z6.nullable(z6.string())),
792
+ groupName: z6.optional(z6.nullable(z6.string())),
793
+ largeImage: z6.optional(z6.nullable(z6.string())),
794
+ logo: z6.optional(z6.nullable(z6.string())),
795
+ smallImage: z6.optional(z6.nullable(z6.string())),
796
+ sponsorLogo: z6.optional(z6.nullable(z6.string())),
797
+ templatePath: z6.optional(z6.nullable(z6.string()))
798
+ }));
783
799
  var CarGet = z6.array(z6.object({
784
800
  aiEnabled: z6.boolean(),
785
801
  allowNumberColors: z6.boolean(),