@kinevolution/appwrite-functions-shared-utils 0.1.43 → 0.1.45
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 +5 -9
- package/dist/appwrite.js +6 -6
- package/package.json +1 -1
package/dist/appwrite.d.ts
CHANGED
|
@@ -42,14 +42,10 @@ export type PolygonZone = Models.Row & {
|
|
|
42
42
|
zone: Polygon;
|
|
43
43
|
};
|
|
44
44
|
export type Municipality = Models.Row & {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
'Municipality-NIS': number;
|
|
50
|
-
'Municipality-FR': string;
|
|
51
|
-
'Municipality-NL': string;
|
|
52
|
-
'Municipality-ZIP': number;
|
|
45
|
+
regionCode: RegionCode;
|
|
46
|
+
zip: number;
|
|
47
|
+
nameFR: string;
|
|
48
|
+
nameNL: string;
|
|
53
49
|
Center: Point;
|
|
54
50
|
Shape: Polygon;
|
|
55
51
|
};
|
|
@@ -73,7 +69,7 @@ export declare enum Activity {
|
|
|
73
69
|
READING = "reading",
|
|
74
70
|
SHOPPING = "shopping"
|
|
75
71
|
}
|
|
76
|
-
export declare enum
|
|
72
|
+
export declare enum RegionCode {
|
|
77
73
|
REGION_2000 = "2000",
|
|
78
74
|
REGION_3000 = "3000",
|
|
79
75
|
REGION_4000 = "4000"
|
package/dist/appwrite.js
CHANGED
|
@@ -19,9 +19,9 @@ export var Activity;
|
|
|
19
19
|
Activity["READING"] = "reading";
|
|
20
20
|
Activity["SHOPPING"] = "shopping";
|
|
21
21
|
})(Activity || (Activity = {}));
|
|
22
|
-
export var
|
|
23
|
-
(function (
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
})(
|
|
22
|
+
export var RegionCode;
|
|
23
|
+
(function (RegionCode) {
|
|
24
|
+
RegionCode["REGION_2000"] = "2000";
|
|
25
|
+
RegionCode["REGION_3000"] = "3000";
|
|
26
|
+
RegionCode["REGION_4000"] = "4000";
|
|
27
|
+
})(RegionCode || (RegionCode = {}));
|