@mydoormot/app-types 1.3.0 → 1.3.2

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.2.1 build /Users/chuksben/Desktop/projects/microservices/mydoormot/packages/app-types
2
+ > @mydoormot/app-types@1.3.1 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 48ms
11
+ CJS ⚡️ Build success in 57ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 604ms
14
- DTS dist/index.d.cts 11.48 KB
13
+ DTS ⚡️ Build success in 848ms
14
+ DTS dist/index.d.cts 11.50 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @mydoormot/app-types
2
2
 
3
+ ## 1.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: type originalLogoUrl
8
+
9
+ ## 1.3.1
10
+
11
+ ### Patch Changes
12
+
13
+ - Added Id on business interface
14
+
3
15
  ## 1.3.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.d.cts CHANGED
@@ -420,6 +420,7 @@ type Notification = {
420
420
  };
421
421
 
422
422
  interface Business {
423
+ id: string;
423
424
  pgId: string;
424
425
  seqId: number;
425
426
  userId: string;
@@ -436,7 +437,7 @@ interface Business {
436
437
  registrationCompleted: boolean | NullOrUndefined;
437
438
  stateId: string | NullOrUndefined;
438
439
  cityId: string | NullOrUndefined;
439
- orginalLogoUrl: string | NullOrUndefined;
440
+ originalLogoUrl: string | NullOrUndefined;
440
441
  logoUrl: string | NullOrUndefined;
441
442
  logoBlurHash: string | NullOrUndefined;
442
443
  coverImageUrl: string | NullOrUndefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mydoormot/app-types",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "",
5
5
  "mains": "./dist/index.js",
6
6
  "typess": "./dist/index.d.ts",
package/src/business.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import { NullOrUndefined } from '.';
2
2
 
3
3
  export interface Business {
4
+ id: string;
4
5
  pgId: string;
5
6
  seqId: number;
6
7
  userId: string;
@@ -20,7 +21,7 @@ export interface Business {
20
21
  stateId: string | NullOrUndefined;
21
22
  cityId: string | NullOrUndefined;
22
23
 
23
- orginalLogoUrl: string | NullOrUndefined;
24
+ originalLogoUrl: string | NullOrUndefined;
24
25
  logoUrl: string | NullOrUndefined;
25
26
  logoBlurHash: string | NullOrUndefined;
26
27