@ibiliaze/global-vars 1.209.0 → 1.211.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,10 +463,12 @@ 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;
|
|
469
470
|
orderId: string;
|
|
471
|
+
flowId: Id;
|
|
470
472
|
userId?: Id;
|
|
471
473
|
}
|
|
472
474
|
export interface OccupanceBase<Id, TDate> {
|
|
@@ -526,12 +528,14 @@ export type FlatOccupance<Id, TDate> = {
|
|
|
526
528
|
orderId: string;
|
|
527
529
|
customerId: Id;
|
|
528
530
|
name: string;
|
|
531
|
+
surname: string;
|
|
529
532
|
email: string;
|
|
530
533
|
tel: string;
|
|
531
534
|
seat: number;
|
|
532
535
|
row: number;
|
|
533
536
|
categoryId: Id;
|
|
534
537
|
categoryName: string;
|
|
538
|
+
categoryPrice: number;
|
|
535
539
|
categoryColor?: string;
|
|
536
540
|
seasonId?: Id;
|
|
537
541
|
seasonName?: string;
|
|
@@ -778,6 +782,7 @@ export interface UserBase<Id, TDate> {
|
|
|
778
782
|
password: string;
|
|
779
783
|
tel: string;
|
|
780
784
|
name: string;
|
|
785
|
+
surname: string;
|
|
781
786
|
avatar?: string;
|
|
782
787
|
roles?: Id[];
|
|
783
788
|
flowIds?: Id[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiliaze/global-vars",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.211.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.211.0 -m 'v1.211.0'; git push origin v1.211.0; git push",
|
|
26
26
|
"push": "npm run build; npm run git; npm run pub"
|
|
27
27
|
},
|
|
28
28
|
"author": "Ibi Hasanli",
|