evo360-types 1.3.41 → 1.3.43

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.
@@ -13,6 +13,7 @@ export declare const zTenantSchema: z.ZodObject<z.objectUtil.extendShape<{
13
13
  }, {
14
14
  name: z.ZodString;
15
15
  url_alias: z.ZodString;
16
+ base_tenant: z.ZodOptional<z.ZodString>;
16
17
  date_format: z.ZodOptional<z.ZodString>;
17
18
  language: z.ZodOptional<z.ZodEnum<["ptBR", "en"]>>;
18
19
  status: z.ZodEnum<["draft", "published", "archived"]>;
@@ -29,6 +30,7 @@ export declare const zTenantSchema: z.ZodObject<z.objectUtil.extendShape<{
29
30
  created_at?: Date | null | undefined;
30
31
  updated_at?: Date | null | undefined;
31
32
  deleted_at?: Date | null | undefined;
33
+ base_tenant?: string | undefined;
32
34
  date_format?: string | undefined;
33
35
  language?: "ptBR" | "en" | undefined;
34
36
  timezone?: string | undefined;
@@ -44,6 +46,7 @@ export declare const zTenantSchema: z.ZodObject<z.objectUtil.extendShape<{
44
46
  created_at?: Date | null | undefined;
45
47
  updated_at?: Date | null | undefined;
46
48
  deleted_at?: Date | null | undefined;
49
+ base_tenant?: string | undefined;
47
50
  date_format?: string | undefined;
48
51
  language?: "ptBR" | "en" | undefined;
49
52
  timezone?: string | undefined;
@@ -14,6 +14,7 @@ exports.zTenantSchema = zod_schemas_1.zFireDocSchema // Extend from FireDocSchem
14
14
  .extend({
15
15
  name: zod_1.z.string().min(1).max(255),
16
16
  url_alias: zod_1.z.string().min(1).max(255),
17
+ base_tenant: zod_1.z.string().optional(),
17
18
  date_format: zod_1.z.string().optional(),
18
19
  language: exports.zTenantLanguageSchema.optional(),
19
20
  status: exports.zTenantStatusSchema,
@@ -15,6 +15,7 @@ export const zTenantSchema = zFireDocSchema // Extend from FireDocSchema
15
15
  .extend({
16
16
  name: z.string().min(1).max(255),
17
17
  url_alias: z.string().min(1).max(255),
18
+ base_tenant: z.string().optional(),
18
19
  date_format: z.string().optional(),
19
20
  language: zTenantLanguageSchema.optional(),
20
21
  status: zTenantStatusSchema,
@@ -19,6 +19,7 @@ export declare enum ITenantStatus {
19
19
  }
20
20
  export interface ITenant extends IFireDoc {
21
21
  name: string;
22
+ base_tenant?: string;
22
23
  url_alias: string;
23
24
  date_format?: string;
24
25
  language?: TenantLanguage;
@@ -26,6 +26,7 @@ export enum ITenantStatus {
26
26
 
27
27
  export interface ITenant extends IFireDoc {
28
28
  name: string;
29
+ base_tenant?: string;
29
30
  url_alias: string;
30
31
  date_format?: string;
31
32
  language?: TenantLanguage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.41",
3
+ "version": "1.3.43",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",