@arenarium/maps 1.0.184 → 1.0.185

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
@@ -36,14 +36,14 @@ declare const mapConfigurationSchema: z.ZodObject<{
36
36
  }>>;
37
37
  api: z.ZodOptional<z.ZodObject<{
38
38
  states: z.ZodOptional<z.ZodObject<{
39
- url: z.ZodString;
39
+ url: z.ZodOptional<z.ZodString>;
40
40
  key: z.ZodString;
41
41
  }, "strip", z.ZodTypeAny, {
42
- url: string;
43
42
  key: string;
43
+ url?: string | undefined;
44
44
  }, {
45
- url: string;
46
45
  key: string;
46
+ url?: string | undefined;
47
47
  }>>;
48
48
  log: z.ZodOptional<z.ZodObject<{
49
49
  enabled: z.ZodBoolean;
@@ -54,16 +54,16 @@ declare const mapConfigurationSchema: z.ZodObject<{
54
54
  }>>;
55
55
  }, "strip", z.ZodTypeAny, {
56
56
  states?: {
57
- url: string;
58
57
  key: string;
58
+ url?: string | undefined;
59
59
  } | undefined;
60
60
  log?: {
61
61
  enabled: boolean;
62
62
  } | undefined;
63
63
  }, {
64
64
  states?: {
65
- url: string;
66
65
  key: string;
66
+ url?: string | undefined;
67
67
  } | undefined;
68
68
  log?: {
69
69
  enabled: boolean;
@@ -82,8 +82,8 @@ declare const mapConfigurationSchema: z.ZodObject<{
82
82
  } | undefined;
83
83
  api?: {
84
84
  states?: {
85
- url: string;
86
85
  key: string;
86
+ url?: string | undefined;
87
87
  } | undefined;
88
88
  log?: {
89
89
  enabled: boolean;
@@ -102,8 +102,8 @@ declare const mapConfigurationSchema: z.ZodObject<{
102
102
  } | undefined;
103
103
  api?: {
104
104
  states?: {
105
- url: string;
106
105
  key: string;
106
+ url?: string | undefined;
107
107
  } | undefined;
108
108
  log?: {
109
109
  enabled: boolean;