@kinevolution/appwrite-functions-shared-utils 0.1.23 → 0.1.25
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 +8 -8
- package/package.json +1 -1
package/dist/appwrite.d.ts
CHANGED
|
@@ -21,26 +21,26 @@ export type ProfilesRequester = Models.Row & {
|
|
|
21
21
|
phone: string;
|
|
22
22
|
contactByPhone: boolean;
|
|
23
23
|
approxLocationLabel: string;
|
|
24
|
-
homeLocation:
|
|
24
|
+
homeLocation: [number, number];
|
|
25
25
|
notesForCompanions: string | null;
|
|
26
26
|
emergencyContactName: string | null;
|
|
27
27
|
emergencyContactPhone: string | null;
|
|
28
|
-
user:
|
|
28
|
+
user: string;
|
|
29
29
|
};
|
|
30
30
|
export type ProfilesCompanion = Models.Row & {
|
|
31
31
|
hasVehicle: boolean;
|
|
32
32
|
ratingCount: number;
|
|
33
33
|
ratingAvg: number;
|
|
34
|
-
user:
|
|
34
|
+
user: string;
|
|
35
35
|
};
|
|
36
36
|
export type CompanionZones = Models.Row & {
|
|
37
37
|
label: string;
|
|
38
38
|
priority: number;
|
|
39
39
|
active: boolean;
|
|
40
40
|
notes: string | null;
|
|
41
|
-
zone:
|
|
42
|
-
profilesCompanion:
|
|
43
|
-
center:
|
|
41
|
+
zone: [number, number][][] | null;
|
|
42
|
+
profilesCompanion: string;
|
|
43
|
+
center: [number, number] | null;
|
|
44
44
|
radius: number | null;
|
|
45
45
|
};
|
|
46
46
|
export type Roles = Models.Row & {
|
|
@@ -48,7 +48,7 @@ export type Roles = Models.Row & {
|
|
|
48
48
|
role: Role;
|
|
49
49
|
};
|
|
50
50
|
export type ProfilesExtras = Models.Row & {
|
|
51
|
-
user:
|
|
51
|
+
user: string;
|
|
52
52
|
bio: string | null;
|
|
53
53
|
photoIds: string[] | null;
|
|
54
54
|
activities: Activities[] | null;
|
|
@@ -63,5 +63,5 @@ export type ProfilesCore = Models.Row & {
|
|
|
63
63
|
firstName: string;
|
|
64
64
|
lastName: string;
|
|
65
65
|
sex: Sex;
|
|
66
|
-
user:
|
|
66
|
+
user: string;
|
|
67
67
|
};
|