@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @mydoormot/app-types@1.1.8 build /Users/chuksben/Desktop/projects/microservices/mydoormot/packages/app-types
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.51 KB
11
- CJS ⚡️ Build success in 57ms
10
+ CJS dist/index.js 5.55 KB
11
+ CJS ⚡️ Build success in 64ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 737ms
14
- DTS dist/index.d.ts 10.04 KB
13
+ DTS ⚡️ Build success in 536ms
14
+ DTS dist/index.d.ts 10.09 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @mydoormot/app-types
2
2
 
3
+ ## 1.1.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Modified app types
8
+
3
9
  ## 1.1.9
4
10
 
5
11
  ### Patch Changes
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mydoormot/app-types",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "",
5
5
  "mains": "./dist/index.js",
6
6
  "typess": "./dist/index.d.ts",
package/src/enterprise.ts CHANGED
@@ -13,6 +13,7 @@ export type Enterprise = {
13
13
  name: string;
14
14
  city: string;
15
15
  verified: boolean;
16
+ mobileNumber?: string;
16
17
  enterpriseType: EnterpriseType | `${EnterpriseType}`;
17
18
  deleted: boolean;
18
19
  updatedAt: Date;
package/src/invoice.ts CHANGED
@@ -2,6 +2,7 @@ import { EnterpriseType } from './enterprise';
2
2
 
3
3
  export enum InvoiceStatus {
4
4
  Pending = 'pending',
5
+ Processing = 'processing',
5
6
  Paid = 'paid',
6
7
  Cancelled = 'cancelled',
7
8
  Failed = 'failed',