@kinevolution/appwrite-functions-shared-utils 0.1.41 → 0.1.43
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/appwrite.d.ts +17 -2
- package/dist/appwrite.js +6 -0
- package/package.json +1 -1
package/dist/appwrite.d.ts
CHANGED
|
@@ -29,7 +29,6 @@ export type Companion = Models.Row & {
|
|
|
29
29
|
export type RadiusZone = Models.Row & {
|
|
30
30
|
core: string;
|
|
31
31
|
label: string;
|
|
32
|
-
priority: number;
|
|
33
32
|
active: boolean;
|
|
34
33
|
radius: number;
|
|
35
34
|
notes: string | null;
|
|
@@ -38,11 +37,22 @@ export type RadiusZone = Models.Row & {
|
|
|
38
37
|
export type PolygonZone = Models.Row & {
|
|
39
38
|
core: string;
|
|
40
39
|
label: string;
|
|
41
|
-
priority: number;
|
|
42
40
|
active: boolean;
|
|
43
41
|
notes: string | null;
|
|
44
42
|
zone: Polygon;
|
|
45
43
|
};
|
|
44
|
+
export type Municipality = Models.Row & {
|
|
45
|
+
'Region-NIS': MunicipalitiesRegionNis;
|
|
46
|
+
'Region-FR': string;
|
|
47
|
+
'Region-NL': string;
|
|
48
|
+
'Region-EN': string;
|
|
49
|
+
'Municipality-NIS': number;
|
|
50
|
+
'Municipality-FR': string;
|
|
51
|
+
'Municipality-NL': string;
|
|
52
|
+
'Municipality-ZIP': number;
|
|
53
|
+
Center: Point;
|
|
54
|
+
Shape: Polygon;
|
|
55
|
+
};
|
|
46
56
|
type Point = [number, number];
|
|
47
57
|
type Polygon = Point[][];
|
|
48
58
|
export declare enum Role {
|
|
@@ -63,4 +73,9 @@ export declare enum Activity {
|
|
|
63
73
|
READING = "reading",
|
|
64
74
|
SHOPPING = "shopping"
|
|
65
75
|
}
|
|
76
|
+
export declare enum MunicipalitiesRegionNis {
|
|
77
|
+
REGION_2000 = "2000",
|
|
78
|
+
REGION_3000 = "3000",
|
|
79
|
+
REGION_4000 = "4000"
|
|
80
|
+
}
|
|
66
81
|
export {};
|
package/dist/appwrite.js
CHANGED
|
@@ -19,3 +19,9 @@ export var Activity;
|
|
|
19
19
|
Activity["READING"] = "reading";
|
|
20
20
|
Activity["SHOPPING"] = "shopping";
|
|
21
21
|
})(Activity || (Activity = {}));
|
|
22
|
+
export var MunicipalitiesRegionNis;
|
|
23
|
+
(function (MunicipalitiesRegionNis) {
|
|
24
|
+
MunicipalitiesRegionNis["REGION_2000"] = "2000";
|
|
25
|
+
MunicipalitiesRegionNis["REGION_3000"] = "3000";
|
|
26
|
+
MunicipalitiesRegionNis["REGION_4000"] = "4000";
|
|
27
|
+
})(MunicipalitiesRegionNis || (MunicipalitiesRegionNis = {}));
|