@mydoormot/app-types 1.3.3 → 1.3.4
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 +3 -3
- package/CHANGELOG.md +6 -0
- package/dist/index.d.cts +2 -2
- package/package.json +1 -1
- package/src/errand.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @mydoormot/app-types@1.3.
|
|
2
|
+
> @mydoormot/app-types@1.3.3 build /Users/chuksben/Desktop/projects/microservices/mydoormot/packages/app-types
|
|
3
3
|
> tsup src/index.ts --format cjs --dts
|
|
4
4
|
|
|
5
5
|
CLI Building entry: src/index.ts
|
|
@@ -8,7 +8,7 @@ CLI tsup v7.2.0
|
|
|
8
8
|
CLI Target: es2021
|
|
9
9
|
CJS Build start
|
|
10
10
|
CJS dist/index.cjs 5.86 KB
|
|
11
|
-
CJS ⚡️ Build success in
|
|
11
|
+
CJS ⚡️ Build success in 39ms
|
|
12
12
|
DTS Build start
|
|
13
|
-
DTS ⚡️ Build success in
|
|
13
|
+
DTS ⚡️ Build success in 572ms
|
|
14
14
|
DTS dist/index.d.cts 11.53 KB
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -310,7 +310,7 @@ interface Errand {
|
|
|
310
310
|
ownerMobileNumber?: string;
|
|
311
311
|
errandTimeline?: string | ErrandTimeline;
|
|
312
312
|
}
|
|
313
|
-
interface
|
|
313
|
+
interface AggregatedErrand extends Errand {
|
|
314
314
|
parcelSize: `${ParcelSize}`;
|
|
315
315
|
invoiceDetails: Invoice;
|
|
316
316
|
pickupLocation: {
|
|
@@ -483,4 +483,4 @@ declare enum LinkDestination {
|
|
|
483
483
|
}
|
|
484
484
|
type NullOrUndefined = null | undefined;
|
|
485
485
|
|
|
486
|
-
export { AddressDetails, AddressTypes,
|
|
486
|
+
export { AddressDetails, AddressTypes, AggregatedErrand, AuthType, Business, BusinessCategory, City, Coupon, DeliveryStatus, Enterprise, EnterpriseCategoryDoc, EnterpriseSubCategoryDoc, EnterpriseType, Errand, ErrandRating, ErrandStatus, ErrandTimeline, Invoice, InvoiceStatus, LatLng, LinkDestination, Notification, NotificationData, NotificationType, NullOrUndefined, PaginateResult, ParcelSize, PaymentOptions, PendingErrand, Rider, RoleType, State, User, UserAddress, Vehicle, errandTimeline };
|
package/package.json
CHANGED
package/src/errand.ts
CHANGED
|
@@ -141,7 +141,7 @@ export interface Errand {
|
|
|
141
141
|
errandTimeline?: string | ErrandTimeline;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
|
-
export interface
|
|
144
|
+
export interface AggregatedErrand extends Errand {
|
|
145
145
|
parcelSize: `${ParcelSize}`;
|
|
146
146
|
invoiceDetails: Invoice;
|
|
147
147
|
pickupLocation: {
|