@ibiliaze/global-vars 1.209.0 → 1.210.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.
|
@@ -463,6 +463,7 @@ export interface NotificationBase<Id, TDate> {
|
|
|
463
463
|
}
|
|
464
464
|
export interface OccupanceSaleBase<Id> {
|
|
465
465
|
name: string;
|
|
466
|
+
surname: string;
|
|
466
467
|
customerId: Id;
|
|
467
468
|
email: string;
|
|
468
469
|
tel: string;
|
|
@@ -526,12 +527,14 @@ export type FlatOccupance<Id, TDate> = {
|
|
|
526
527
|
orderId: string;
|
|
527
528
|
customerId: Id;
|
|
528
529
|
name: string;
|
|
530
|
+
surname: string;
|
|
529
531
|
email: string;
|
|
530
532
|
tel: string;
|
|
531
533
|
seat: number;
|
|
532
534
|
row: number;
|
|
533
535
|
categoryId: Id;
|
|
534
536
|
categoryName: string;
|
|
537
|
+
categoryPrice: number;
|
|
535
538
|
categoryColor?: string;
|
|
536
539
|
seasonId?: Id;
|
|
537
540
|
seasonName?: string;
|
|
@@ -778,6 +781,7 @@ export interface UserBase<Id, TDate> {
|
|
|
778
781
|
password: string;
|
|
779
782
|
tel: string;
|
|
780
783
|
name: string;
|
|
784
|
+
surname: string;
|
|
781
785
|
avatar?: string;
|
|
782
786
|
roles?: Id[];
|
|
783
787
|
flowIds?: Id[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiliaze/global-vars",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.210.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.
|
|
25
|
+
"git": "git add .; git commit -m 'changes'; git tag -a v1.210.0 -m 'v1.210.0'; git push origin v1.210.0; git push",
|
|
26
26
|
"push": "npm run build; npm run git; npm run pub"
|
|
27
27
|
},
|
|
28
28
|
"author": "Ibi Hasanli",
|