@mydoormot/app-types 1.1.9 → 1.1.10
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 +5 -5
- package/CHANGELOG.md +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/src/enterprise.ts +1 -0
- package/src/invoice.ts +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @mydoormot/app-types@1.1.
|
|
2
|
+
> @mydoormot/app-types@1.1.9 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
|
|
@@ -7,8 +7,8 @@ CLI Using tsconfig: tsconfig.json
|
|
|
7
7
|
CLI tsup v7.2.0
|
|
8
8
|
CLI Target: node16
|
|
9
9
|
CJS Build start
|
|
10
|
-
CJS dist/index.js 5.
|
|
11
|
-
CJS ⚡️ Build success in
|
|
10
|
+
CJS dist/index.js 5.55 KB
|
|
11
|
+
CJS ⚡️ Build success in 64ms
|
|
12
12
|
DTS Build start
|
|
13
|
-
DTS ⚡️ Build success in
|
|
14
|
-
DTS dist/index.d.ts 10.
|
|
13
|
+
DTS ⚡️ Build success in 536ms
|
|
14
|
+
DTS dist/index.d.ts 10.09 KB
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -107,6 +107,7 @@ type Enterprise = {
|
|
|
107
107
|
name: string;
|
|
108
108
|
city: string;
|
|
109
109
|
verified: boolean;
|
|
110
|
+
mobileNumber?: string;
|
|
110
111
|
enterpriseType: EnterpriseType | `${EnterpriseType}`;
|
|
111
112
|
deleted: boolean;
|
|
112
113
|
updatedAt: Date;
|
|
@@ -151,6 +152,7 @@ interface EnterpriseSubCategoryDoc {
|
|
|
151
152
|
|
|
152
153
|
declare enum InvoiceStatus {
|
|
153
154
|
Pending = "pending",
|
|
155
|
+
Processing = "processing",
|
|
154
156
|
Paid = "paid",
|
|
155
157
|
Cancelled = "cancelled",
|
|
156
158
|
Failed = "failed"
|
package/dist/index.js
CHANGED
|
@@ -114,6 +114,7 @@ var ParcelSize = /* @__PURE__ */ ((ParcelSize2) => {
|
|
|
114
114
|
// src/invoice.ts
|
|
115
115
|
var InvoiceStatus = /* @__PURE__ */ ((InvoiceStatus2) => {
|
|
116
116
|
InvoiceStatus2["Pending"] = "pending";
|
|
117
|
+
InvoiceStatus2["Processing"] = "processing";
|
|
117
118
|
InvoiceStatus2["Paid"] = "paid";
|
|
118
119
|
InvoiceStatus2["Cancelled"] = "cancelled";
|
|
119
120
|
InvoiceStatus2["Failed"] = "failed";
|
package/package.json
CHANGED
package/src/enterprise.ts
CHANGED