@captureid/datatypes 1.0.31 → 1.0.32

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
@@ -91,7 +91,8 @@ export declare enum DataType {
91
91
  ADVERTISEMENT = 89,
92
92
  REALTIMESUBSCRIPTION = 90,
93
93
  STORE = 91,
94
- CALENDAR = 92
94
+ CALENDAR = 92,
95
+ TENANT = 93
95
96
  }
96
97
  export declare enum BookingType {
97
98
  UNKNOWN = 0,
@@ -0,0 +1,28 @@
1
+ import { DataObject } from "../data-object";
2
+ import { ShelfLabel } from "../esl/esl-object";
3
+ import { EmailTemplates, WebTemplates } from "./client-object";
4
+ import { Company } from "./company-object";
5
+ import { User } from "./user-object";
6
+ export interface Tenant {
7
+ id?: string;
8
+ orderid: number;
9
+ parentid: string;
10
+ children: Tenant[];
11
+ company: Company;
12
+ companies: Company[];
13
+ url: string;
14
+ theme: string;
15
+ logo: string;
16
+ webtemplates: WebTemplates[];
17
+ emailtemplates: EmailTemplates[];
18
+ shelflabels: ShelfLabel[];
19
+ users: User[];
20
+ }
21
+ export declare class Tenant implements Tenant {
22
+ }
23
+ export interface TenantObject {
24
+ data: Tenant[];
25
+ }
26
+ export declare class TenantObject extends DataObject implements TenantObject {
27
+ constructor(data: Tenant[]);
28
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captureid/datatypes",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0",
6
6
  "@angular/core": ">=17.0.0"
package/public-api.d.ts CHANGED
@@ -36,6 +36,7 @@ export * from './lib/model/common/faq-object';
36
36
  export * from './lib/model/common/farmingmethod-object';
37
37
  export * from './lib/model/common/chat-object';
38
38
  export * from './lib/model/common/ticket-object';
39
+ export * from './lib/model/common/tenant-object';
39
40
  export * from './lib/model/common/fileimport-object';
40
41
  export * from './lib/model/common/buildingaccess-object';
41
42
  export * from './lib/model/common/store-object';