@arenarium/maps 1.0.177 → 1.0.179
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 +14 -14
- package/dist/index.js +1 -1
- package/dist/main.cjs.js +1 -1
- package/dist/main.d.ts +14 -14
- package/dist/main.es.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ declare const mapConfigurationSchema: z.ZodObject<{
|
|
|
34
34
|
limit?: number | undefined;
|
|
35
35
|
} | undefined;
|
|
36
36
|
}>>;
|
|
37
|
-
api: z.ZodObject<{
|
|
37
|
+
api: z.ZodOptional<z.ZodObject<{
|
|
38
38
|
states: z.ZodOptional<z.ZodObject<{
|
|
39
39
|
url: z.ZodString;
|
|
40
40
|
key: z.ZodString;
|
|
@@ -68,17 +68,8 @@ declare const mapConfigurationSchema: z.ZodObject<{
|
|
|
68
68
|
log?: {
|
|
69
69
|
enabled: boolean;
|
|
70
70
|
} | undefined;
|
|
71
|
-
}
|
|
71
|
+
}>>;
|
|
72
72
|
}, "strip", z.ZodTypeAny, {
|
|
73
|
-
api: {
|
|
74
|
-
states?: {
|
|
75
|
-
url: string;
|
|
76
|
-
key: string;
|
|
77
|
-
} | undefined;
|
|
78
|
-
log?: {
|
|
79
|
-
enabled: boolean;
|
|
80
|
-
} | undefined;
|
|
81
|
-
};
|
|
82
73
|
pin?: {
|
|
83
74
|
fade?: boolean | undefined;
|
|
84
75
|
maxCount?: number | undefined;
|
|
@@ -89,8 +80,7 @@ declare const mapConfigurationSchema: z.ZodObject<{
|
|
|
89
80
|
limit?: number | undefined;
|
|
90
81
|
} | undefined;
|
|
91
82
|
} | undefined;
|
|
92
|
-
|
|
93
|
-
api: {
|
|
83
|
+
api?: {
|
|
94
84
|
states?: {
|
|
95
85
|
url: string;
|
|
96
86
|
key: string;
|
|
@@ -98,7 +88,8 @@ declare const mapConfigurationSchema: z.ZodObject<{
|
|
|
98
88
|
log?: {
|
|
99
89
|
enabled: boolean;
|
|
100
90
|
} | undefined;
|
|
101
|
-
};
|
|
91
|
+
} | undefined;
|
|
92
|
+
}, {
|
|
102
93
|
pin?: {
|
|
103
94
|
fade?: boolean | undefined;
|
|
104
95
|
maxCount?: number | undefined;
|
|
@@ -109,6 +100,15 @@ declare const mapConfigurationSchema: z.ZodObject<{
|
|
|
109
100
|
limit?: number | undefined;
|
|
110
101
|
} | undefined;
|
|
111
102
|
} | undefined;
|
|
103
|
+
api?: {
|
|
104
|
+
states?: {
|
|
105
|
+
url: string;
|
|
106
|
+
key: string;
|
|
107
|
+
} | undefined;
|
|
108
|
+
log?: {
|
|
109
|
+
enabled: boolean;
|
|
110
|
+
} | undefined;
|
|
111
|
+
} | undefined;
|
|
112
112
|
}>;
|
|
113
113
|
export type MapConfiguration = z.infer<typeof mapConfigurationSchema>;
|
|
114
114
|
declare const mapBoundsSchema: z.ZodObject<{
|