@kinevolution/appwrite-functions-shared-utils 0.1.42 → 0.1.44

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.
@@ -41,6 +41,14 @@ export type PolygonZone = Models.Row & {
41
41
  notes: string | null;
42
42
  zone: Polygon;
43
43
  };
44
+ export type Municipalities = Models.Row & {
45
+ regionCode: RegionCode;
46
+ zip: number;
47
+ nameFR: string;
48
+ nameNL: string;
49
+ Center: Point;
50
+ Shape: Polygon;
51
+ };
44
52
  type Point = [number, number];
45
53
  type Polygon = Point[][];
46
54
  export declare enum Role {
@@ -61,4 +69,9 @@ export declare enum Activity {
61
69
  READING = "reading",
62
70
  SHOPPING = "shopping"
63
71
  }
72
+ export declare enum RegionCode {
73
+ REGION_2000 = "2000",
74
+ REGION_3000 = "3000",
75
+ REGION_4000 = "4000"
76
+ }
64
77
  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 RegionCode;
23
+ (function (RegionCode) {
24
+ RegionCode["REGION_2000"] = "2000";
25
+ RegionCode["REGION_3000"] = "3000";
26
+ RegionCode["REGION_4000"] = "4000";
27
+ })(RegionCode || (RegionCode = {}));
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.42",
6
+ "version": "0.1.44",
7
7
  "license": "ISC",
8
8
  "author": "Nicolas Forêt <nicolas4@gmail.com>",
9
9
  "description": "Shared utilities for Appwrite functions",