@captureid/datatypes 1.0.19 → 1.0.21

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.
package/lib/enums.d.ts CHANGED
@@ -126,7 +126,13 @@ export declare enum BookingType {
126
126
  DONATION = 101,//Spende
127
127
  GIFT = 111,//Geschenk
128
128
  GIFTCARD = 112,//Geschenkkarte
129
- GIFTVOUCHER = 113
129
+ GIFTVOUCHER = 113,//Gutschein
130
+ SCAN = 121,
131
+ CARTADD = 122,//Warenkorbzuschlag
132
+ CARTREMOVE = 123,//Warenkorbabzug
133
+ CARTUPDATE = 124,//Warenkorbanpassung
134
+ CARTFINALIZE = 125,//Warenkorbabschluss
135
+ CARTCANCEL = 126
130
136
  }
131
137
  export declare enum Operators {
132
138
  UNKNOWN = 0,
@@ -1,7 +1,7 @@
1
1
  import { DataObject } from '../data-object';
2
2
  import { Topic } from './topic-object';
3
3
  export interface Notification {
4
- id: string;
4
+ id?: string;
5
5
  name: string;
6
6
  description: string;
7
7
  icon: string;
@@ -2,7 +2,7 @@ import { User } from "../common/user-object";
2
2
  import { DataObject } from "../data-object";
3
3
  import { Topic } from "./topic-object";
4
4
  export interface Subscription {
5
- id: string;
5
+ id?: string;
6
6
  user: User;
7
7
  token: string;
8
8
  topics: Topic[];
@@ -1,6 +1,6 @@
1
1
  import { DataObject } from "../data-object";
2
2
  export interface Topic {
3
- id: string;
3
+ id?: string;
4
4
  name: string;
5
5
  description: string;
6
6
  active: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captureid/datatypes",
3
- "version": "1.0.19",
3
+ "version": "1.0.21",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0",
6
6
  "@angular/core": ">=17.0.0"