@ibiliaze/global-vars 1.187.0 → 1.188.0

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.
@@ -730,7 +730,8 @@ export interface SaleBase<Id, TDate> {
730
730
  customerId: Id;
731
731
  email: string;
732
732
  saleName?: string;
733
- customerName?: string;
733
+ name?: string;
734
+ surname?: string;
734
735
  tel?: string;
735
736
  address?: string;
736
737
  promoCode?: string;
@@ -817,7 +818,7 @@ export interface CustomerTokenBase<Id> {
817
818
  export interface CustomerBase<Id, TDate> {
818
819
  _id?: Id;
819
820
  email: string;
820
- customername: string;
821
+ username: string;
821
822
  password: string;
822
823
  tel: string;
823
824
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiliaze/global-vars",
3
- "version": "1.187.0",
3
+ "version": "1.188.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": false,
@@ -22,7 +22,7 @@
22
22
  "scripts": {
23
23
  "build": "tsc",
24
24
  "pub": "npm publish --access public",
25
- "git": "git add .; git commit -m 'changes'; git tag -a v1.187.0 -m 'v1.187.0'; git push origin v1.187.0; git push",
25
+ "git": "git add .; git commit -m 'changes'; git tag -a v1.188.0 -m 'v1.188.0'; git push origin v1.188.0; git push",
26
26
  "push": "npm run build; npm run git; npm run pub"
27
27
  },
28
28
  "author": "Ibi Hasanli",