@remnawave/subscription-page-types 0.0.3 → 0.0.4

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.
@@ -447,7 +447,7 @@ declare const PlatformSchema: z.ZodObject<{
447
447
  fa?: string | undefined;
448
448
  fr?: string | undefined;
449
449
  }>;
450
- svgIcon: z.ZodString;
450
+ svgIconKey: z.ZodString;
451
451
  apps: z.ZodArray<z.ZodObject<{
452
452
  name: z.ZodString;
453
453
  featured: z.ZodBoolean;
@@ -665,7 +665,7 @@ declare const PlatformSchema: z.ZodObject<{
665
665
  }[];
666
666
  }>, "many">;
667
667
  }, "strip", z.ZodTypeAny, {
668
- svgIcon: string;
668
+ svgIconKey: string;
669
669
  displayName: {
670
670
  en: string;
671
671
  ru?: string | undefined;
@@ -708,7 +708,7 @@ declare const PlatformSchema: z.ZodObject<{
708
708
  }[];
709
709
  }[];
710
710
  }, {
711
- svgIcon: string;
711
+ svgIconKey: string;
712
712
  displayName: {
713
713
  en: string;
714
714
  ru?: string | undefined;
@@ -1065,7 +1065,7 @@ export declare const SubscriptionPageRawConfigSchema: z.ZodEffects<z.ZodObject<{
1065
1065
  fa?: string | undefined;
1066
1066
  fr?: string | undefined;
1067
1067
  }>;
1068
- svgIcon: z.ZodString;
1068
+ svgIconKey: z.ZodString;
1069
1069
  apps: z.ZodArray<z.ZodObject<{
1070
1070
  name: z.ZodString;
1071
1071
  featured: z.ZodBoolean;
@@ -1283,7 +1283,7 @@ export declare const SubscriptionPageRawConfigSchema: z.ZodEffects<z.ZodObject<{
1283
1283
  }[];
1284
1284
  }>, "many">;
1285
1285
  }, "strip", z.ZodTypeAny, {
1286
- svgIcon: string;
1286
+ svgIconKey: string;
1287
1287
  displayName: {
1288
1288
  en: string;
1289
1289
  ru?: string | undefined;
@@ -1326,7 +1326,7 @@ export declare const SubscriptionPageRawConfigSchema: z.ZodEffects<z.ZodObject<{
1326
1326
  }[];
1327
1327
  }[];
1328
1328
  }, {
1329
- svgIcon: string;
1329
+ svgIconKey: string;
1330
1330
  displayName: {
1331
1331
  en: string;
1332
1332
  ru?: string | undefined;
@@ -1371,7 +1371,7 @@ export declare const SubscriptionPageRawConfigSchema: z.ZodEffects<z.ZodObject<{
1371
1371
  }>>;
1372
1372
  }, "strip", z.ZodTypeAny, {
1373
1373
  platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1374
- svgIcon: string;
1374
+ svgIconKey: string;
1375
1375
  displayName: {
1376
1376
  en: string;
1377
1377
  ru?: string | undefined;
@@ -1447,7 +1447,7 @@ export declare const SubscriptionPageRawConfigSchema: z.ZodEffects<z.ZodObject<{
1447
1447
  svgLibrary: Record<string, string>;
1448
1448
  }, {
1449
1449
  platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1450
- svgIcon: string;
1450
+ svgIconKey: string;
1451
1451
  displayName: {
1452
1452
  en: string;
1453
1453
  ru?: string | undefined;
@@ -1523,7 +1523,7 @@ export declare const SubscriptionPageRawConfigSchema: z.ZodEffects<z.ZodObject<{
1523
1523
  svgLibrary: Record<string, string>;
1524
1524
  }>, {
1525
1525
  platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1526
- svgIcon: string;
1526
+ svgIconKey: string;
1527
1527
  displayName: {
1528
1528
  en: string;
1529
1529
  ru?: string | undefined;
@@ -1599,7 +1599,7 @@ export declare const SubscriptionPageRawConfigSchema: z.ZodEffects<z.ZodObject<{
1599
1599
  svgLibrary: Record<string, string>;
1600
1600
  }, {
1601
1601
  platforms: Partial<Record<"ios" | "android" | "linux" | "macos" | "windows" | "androidTV" | "appleTV", {
1602
- svgIcon: string;
1602
+ svgIconKey: string;
1603
1603
  displayName: {
1604
1604
  en: string;
1605
1605
  ru?: string | undefined;
@@ -51,7 +51,7 @@ const PlatformAppSchema = zod_1.z.object({
51
51
  });
52
52
  const PlatformSchema = zod_1.z.object({
53
53
  displayName: exports.LocalizedTextSchema,
54
- svgIcon: zod_1.z.string(),
54
+ svgIconKey: zod_1.z.string(),
55
55
  apps: zod_1.z.array(PlatformAppSchema),
56
56
  });
57
57
  const BrandingSettingsSchema = zod_1.z.object({
@@ -51,7 +51,7 @@ const PlatformAppSchema = zod_1.z.object({
51
51
  });
52
52
  const PlatformSchema = zod_1.z.object({
53
53
  displayName: exports.LocalizedTextSchema,
54
- svgIcon: zod_1.z.string(),
54
+ svgIconKey: zod_1.z.string(),
55
55
  apps: zod_1.z.array(PlatformAppSchema),
56
56
  });
57
57
  const BrandingSettingsSchema = zod_1.z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnawave/subscription-page-types",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "public": true,
5
5
  "license": "AGPL-3.0-only",
6
6
  "description": "A types library for Remnawave Subscription Page.",