@arenarium/maps 1.0.133 → 1.0.134

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.ts CHANGED
@@ -33,7 +33,13 @@ declare const mapConfigurationSchema: z.ZodObject<{
33
33
  limit?: number | undefined;
34
34
  } | undefined;
35
35
  }>>;
36
- api: z.ZodOptional<z.ZodString>;
36
+ states: z.ZodOptional<z.ZodObject<{
37
+ api: z.ZodOptional<z.ZodString>;
38
+ }, "strip", z.ZodTypeAny, {
39
+ api?: string | undefined;
40
+ }, {
41
+ api?: string | undefined;
42
+ }>>;
37
43
  }, "strip", z.ZodTypeAny, {
38
44
  pin?: {
39
45
  fade?: boolean | undefined;
@@ -45,7 +51,9 @@ declare const mapConfigurationSchema: z.ZodObject<{
45
51
  limit?: number | undefined;
46
52
  } | undefined;
47
53
  } | undefined;
48
- api?: string | undefined;
54
+ states?: {
55
+ api?: string | undefined;
56
+ } | undefined;
49
57
  }, {
50
58
  pin?: {
51
59
  fade?: boolean | undefined;
@@ -57,7 +65,9 @@ declare const mapConfigurationSchema: z.ZodObject<{
57
65
  limit?: number | undefined;
58
66
  } | undefined;
59
67
  } | undefined;
60
- api?: string | undefined;
68
+ states?: {
69
+ api?: string | undefined;
70
+ } | undefined;
61
71
  }>;
62
72
  export type MapConfiguration = z.infer<typeof mapConfigurationSchema>;
63
73
  declare const mapProviderParametersSchema: z.ZodObject<{