@mydoormot/app-types 1.4.0 → 1.4.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @mydoormot/app-types@1.3.5 build /Users/chuksben/Desktop/projects/microservices/mydoormot/packages/app-types
2
+ > @mydoormot/app-types@1.4.0 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 6.10 KB
11
- CJS ⚡️ Build success in 54ms
11
+ CJS ⚡️ Build success in 77ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 582ms
14
- DTS dist/index.d.cts 11.76 KB
13
+ DTS ⚡️ Build success in 578ms
14
+ DTS dist/index.d.cts 11.79 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @mydoormot/app-types
2
2
 
3
+ ## 1.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Added city and state to search query
8
+
3
9
  ## 1.4.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.d.cts CHANGED
@@ -470,6 +470,8 @@ interface Customer {
470
470
  address: string;
471
471
  landmark?: string;
472
472
  errandsCount?: number;
473
+ city?: City;
474
+ state?: State;
473
475
  }
474
476
 
475
477
  interface PaginateResult<T> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mydoormot/app-types",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "",
5
5
  "mains": "./dist/index.js",
6
6
  "typess": "./dist/index.d.ts",
package/src/customer.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Business } from '.';
1
+ import { Business, City, State } from '.';
2
2
 
3
3
  export interface Customer {
4
4
  id: string;
@@ -11,4 +11,6 @@ export interface Customer {
11
11
 
12
12
  // From aggregation
13
13
  errandsCount?: number;
14
+ city?: City;
15
+ state?: State;
14
16
  }