@mydoormot/app-types 1.7.4 → 1.7.6
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +12 -0
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
- package/src/location.ts +2 -2
- package/src/rider.ts +5 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @mydoormot/app-types@1.7.
|
|
2
|
+
> @mydoormot/app-types@1.7.5 build /Users/chuksben/Desktop/projects/microservices/mydoormot/packages/app-types
|
|
3
3
|
> tsup src/index.ts --format esm,cjs --dts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
[34mCLI[39m Target: es2021
|
|
9
9
|
[34mESM[39m Build start
|
|
10
10
|
[34mCJS[39m Build start
|
|
11
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m7.84 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 56ms
|
|
11
13
|
[32mESM[39m [1mdist/index.js [22m[32m6.17 KB[39m
|
|
12
14
|
[32mESM[39m ⚡️ Build success in 57ms
|
|
13
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m7.84 KB[39m
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in 58ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m17.
|
|
18
|
-
[32mDTS[39m [1mdist/index.d.cts [22m[32m17.
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 626ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m17.57 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m17.57 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type City = {
|
|
2
2
|
id: string;
|
|
3
|
-
|
|
3
|
+
stateId: string;
|
|
4
|
+
stateDetails?: State;
|
|
4
5
|
name: string;
|
|
5
6
|
slug: string;
|
|
6
7
|
location: {
|
|
@@ -217,12 +218,11 @@ interface InvoiceItem {
|
|
|
217
218
|
|
|
218
219
|
type Rider = {
|
|
219
220
|
id: string;
|
|
220
|
-
|
|
221
|
-
|
|
221
|
+
userId: string;
|
|
222
|
+
vehicleId: string;
|
|
222
223
|
currLocation: {
|
|
223
224
|
coordinates: number[];
|
|
224
225
|
};
|
|
225
|
-
vehicle: string | Vehicle;
|
|
226
226
|
vehicleNumber: string;
|
|
227
227
|
verified: boolean;
|
|
228
228
|
active: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type City = {
|
|
2
2
|
id: string;
|
|
3
|
-
|
|
3
|
+
stateId: string;
|
|
4
|
+
stateDetails?: State;
|
|
4
5
|
name: string;
|
|
5
6
|
slug: string;
|
|
6
7
|
location: {
|
|
@@ -217,12 +218,11 @@ interface InvoiceItem {
|
|
|
217
218
|
|
|
218
219
|
type Rider = {
|
|
219
220
|
id: string;
|
|
220
|
-
|
|
221
|
-
|
|
221
|
+
userId: string;
|
|
222
|
+
vehicleId: string;
|
|
222
223
|
currLocation: {
|
|
223
224
|
coordinates: number[];
|
|
224
225
|
};
|
|
225
|
-
vehicle: string | Vehicle;
|
|
226
226
|
vehicleNumber: string;
|
|
227
227
|
verified: boolean;
|
|
228
228
|
active: boolean;
|
package/package.json
CHANGED
package/src/location.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type City = {
|
|
2
2
|
id: string;
|
|
3
|
-
|
|
3
|
+
stateId: string;
|
|
4
|
+
stateDetails?: State;
|
|
4
5
|
name: string;
|
|
5
6
|
slug: string;
|
|
6
7
|
location: {
|
|
@@ -13,7 +14,6 @@ export type City = {
|
|
|
13
14
|
version: number;
|
|
14
15
|
isRiderActive: boolean;
|
|
15
16
|
isPropertyActive: boolean;
|
|
16
|
-
|
|
17
17
|
errandPrice?: number;
|
|
18
18
|
};
|
|
19
19
|
|
package/src/rider.ts
CHANGED
|
@@ -5,12 +5,14 @@ import { User } from './user';
|
|
|
5
5
|
|
|
6
6
|
export type Rider = {
|
|
7
7
|
id: string;
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
userId: string;
|
|
9
|
+
vehicleId: string;
|
|
10
|
+
|
|
11
|
+
// city: string | City;
|
|
10
12
|
currLocation: {
|
|
11
13
|
coordinates: number[];
|
|
12
14
|
};
|
|
13
|
-
vehicle: string | Vehicle;
|
|
15
|
+
// vehicle: string | Vehicle;
|
|
14
16
|
vehicleNumber: string;
|
|
15
17
|
verified: boolean;
|
|
16
18
|
active: boolean;
|