@mydoormot/app-types 1.1.0 → 1.1.1
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 +4 -4
- package/CHANGELOG.md +6 -0
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/location.ts +2 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,8 +6,8 @@ CLI tsup v7.2.0
|
|
|
6
6
|
CLI Target: node16
|
|
7
7
|
CJS Build start
|
|
8
8
|
CJS dist/index.js 4.42 KB
|
|
9
|
-
CJS ⚡️ Build success in
|
|
9
|
+
CJS ⚡️ Build success in 141ms
|
|
10
10
|
DTS Build start
|
|
11
|
-
DTS ⚡️ Build success in
|
|
12
|
-
DTS dist/index.d.ts 7.
|
|
13
|
-
Done in
|
|
11
|
+
DTS ⚡️ Build success in 2013ms
|
|
12
|
+
DTS dist/index.d.ts 7.71 KB
|
|
13
|
+
Done in 4.06s.
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -323,6 +323,7 @@ type State = {
|
|
|
323
323
|
updatedAt: Date;
|
|
324
324
|
createdAt: Date;
|
|
325
325
|
};
|
|
326
|
+
type LatLng = `${number},${number}`;
|
|
326
327
|
|
|
327
328
|
interface PaginateResult<T> {
|
|
328
329
|
docs: T[];
|
|
@@ -340,4 +341,4 @@ interface PaginateResult<T> {
|
|
|
340
341
|
[customLabel: string]: T[] | number | boolean | null | undefined;
|
|
341
342
|
}
|
|
342
343
|
|
|
343
|
-
export { ActiveRider, AddressDetails, AddressTypes, AggragatedErrand, AuthType, City, DeliveryStatus, Errand, ErrandRating, ErrandStatus, ErrandTimeline, Invoice, InvoiceStatus, PaginateResult, ParcelSize, PaymentOptions, PendingErrand, Rider, RoleType, State, User, UserAddress, errandTimeline };
|
|
344
|
+
export { ActiveRider, AddressDetails, AddressTypes, AggragatedErrand, AuthType, City, DeliveryStatus, Errand, ErrandRating, ErrandStatus, ErrandTimeline, Invoice, InvoiceStatus, LatLng, PaginateResult, ParcelSize, PaymentOptions, PendingErrand, Rider, RoleType, State, User, UserAddress, errandTimeline };
|
package/package.json
CHANGED