@la-main-verte/shared-types 1.0.53 → 1.0.54
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/package.json +1 -1
- package/src/alert.d.ts +1 -0
- package/src/device.d.ts +6 -2
- package/src/gardenMap.d.ts +1 -0
- package/src/index.ts +3 -0
- package/src/users.api.d.ts +2 -0
package/package.json
CHANGED
package/src/alert.d.ts
CHANGED
package/src/device.d.ts
CHANGED
|
@@ -7,12 +7,16 @@ export interface DeviceDataI {
|
|
|
7
7
|
id: string
|
|
8
8
|
/** Identifier for the user associated with the device (UUID) */
|
|
9
9
|
memberId: string
|
|
10
|
-
/**
|
|
10
|
+
/** Expo Push Notification Key */
|
|
11
11
|
pushKey?: string
|
|
12
|
+
/** Apple Push Notification Service Token */
|
|
13
|
+
apnsToken?: string
|
|
14
|
+
/** Firebase (Android) Cloud Messaging Token */
|
|
15
|
+
fcmToken?: string
|
|
12
16
|
/** Unique identifier for the device (UUID) */
|
|
13
17
|
uuid: string
|
|
14
18
|
/** RAW User agent string from the device */
|
|
15
|
-
userAgent
|
|
19
|
+
userAgent?: string
|
|
16
20
|
/** Optional platform (e.g., 'ios', 'android', 'windows') */
|
|
17
21
|
platform?: 'ios' | 'android' | 'windows'
|
|
18
22
|
/** Optional version of the device */
|
package/src/gardenMap.d.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -8,6 +8,9 @@ export * from './apiError'
|
|
|
8
8
|
export * from './gardenMap'
|
|
9
9
|
export * from './alert'
|
|
10
10
|
export * from './image'
|
|
11
|
+
export * from './note'
|
|
12
|
+
export * from './taggedItem'
|
|
13
|
+
export * from './fertilizer'
|
|
11
14
|
import * as PlantsAPI from './plants.api'
|
|
12
15
|
import * as UsersAPI from './users.api'
|
|
13
16
|
|
package/src/users.api.d.ts
CHANGED