evo360-types 1.3.306 → 1.3.311
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/dist/apps/evo-activity/zod-schemas.d.ts +6 -6
- package/dist/apps/evo-chat/contact/zod-schemas.d.ts +6 -6
- package/dist/apps/evo-chat/message/zod-schemas.d.ts +6 -6
- package/dist/apps/evo-chat/waba-template/zod-schemas.d.ts +1557 -0
- package/dist/apps/evo-chat/waba-template/zod-schemas.js +55 -0
- package/dist/apps/evo-chat/waba-template/zod-schemas.ts +57 -0
- package/dist/apps/evo-crm/dic/zod-schemas.d.ts +18 -18
- package/dist/apps/evo-crm/lead/zod-schemas.d.ts +6 -6
- package/dist/apps/evo-finops/zod-schemas.d.ts +60 -9
- package/dist/apps/evo-finops/zod-schemas.js +2 -0
- package/dist/apps/evo-finops/zod-schemas.ts +2 -0
- package/dist/apps/evo-med/appointment/zod-schemas.d.ts +6 -6
- package/dist/apps/evo-med/calendar/zod-schemas.d.ts +6 -6
- package/dist/apps/evo-med/dic/zod-schemas.d.ts +6 -6
- package/dist/apps/evo-med/insurance/zod-schemas.d.ts +6 -6
- package/dist/apps/evo-med/people/zod-schemas.d.ts +12 -12
- package/dist/apps/evo-med/procedure/zod-schemas.d.ts +12 -12
- package/dist/apps/evo-notifications/zod-schemas.d.ts +39 -39
- package/dist/apps/evo-people/zod-schemas.d.ts +24 -24
- package/dist/apps/evo-survey/zod-schemas.d.ts +58 -58
- package/dist/apps/evo-task/zod-schemas.d.ts +71 -71
- package/dist/apps/evo-task/zod-schemas.js +3 -0
- package/dist/apps/evo-task/zod-schemas.ts +3 -0
- package/dist/apps/shared/zod-schemas.d.ts +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.ts +1 -0
- package/dist/types/evo-chat/fb_collections.d.ts +3 -0
- package/dist/types/evo-chat/fb_collections.js +5 -1
- package/dist/types/evo-chat/fb_collections.ts +5 -0
- package/dist/types/evo-chat/index.d.ts +1 -0
- package/dist/types/evo-chat/index.js +1 -0
- package/dist/types/evo-chat/index.ts +1 -0
- package/dist/types/evo-chat/waba-template/index.d.ts +93 -0
- package/dist/types/evo-chat/waba-template/index.js +39 -0
- package/dist/types/evo-chat/waba-template/index.ts +108 -0
- package/dist/types/evo-finops/payment-links/index.d.ts +4 -1
- package/dist/types/evo-finops/payment-links/index.ts +5 -1
- package/dist/types/evo-notifications/index.d.ts +1 -0
- package/dist/types/evo-notifications/index.ts +1 -0
- package/dist/types/shared/external-links.d.ts +4 -0
- package/dist/types/shared/external-links.js +4 -0
- package/dist/types/shared/external-links.ts +4 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.INBOXES_COLLECTION = exports.TICKETS_COLLECTION = exports.THREAD_MESSAGES_COLLECTION = exports.THREADS_COLLECTION = exports.CHANNELS_COLLECTION = exports.CHATBEE_CHANNELS_COLLECTION = exports.HSM_MESSAGES_COLLECTION = exports.PROTOCOLS_COLLECTION = exports.CONTACTS_COLLECTION = exports.EVO_CHAT_APP = void 0;
|
|
3
|
+
exports.HubWabaCollections = exports.INBOXES_COLLECTION = exports.TICKETS_COLLECTION = exports.THREAD_MESSAGES_COLLECTION = exports.THREADS_COLLECTION = exports.CHANNELS_COLLECTION = exports.CHATBEE_CHANNELS_COLLECTION = exports.HSM_MESSAGES_COLLECTION = exports.PROTOCOLS_COLLECTION = exports.CONTACTS_COLLECTION = exports.EVO_CHAT_APP = void 0;
|
|
4
4
|
//EVO Chat Application Doc
|
|
5
5
|
exports.EVO_CHAT_APP = "evo-chat";
|
|
6
6
|
//contacts collection
|
|
@@ -17,3 +17,7 @@ exports.THREADS_COLLECTION = "threads";
|
|
|
17
17
|
exports.THREAD_MESSAGES_COLLECTION = "messages"; // subcollection de threads
|
|
18
18
|
exports.TICKETS_COLLECTION = "tickets";
|
|
19
19
|
exports.INBOXES_COLLECTION = "inboxes";
|
|
20
|
+
// hub-waba template subcollection (under channels)
|
|
21
|
+
exports.HubWabaCollections = {
|
|
22
|
+
TEMPLATES: 'waba-templates',
|
|
23
|
+
};
|
|
@@ -19,3 +19,8 @@ export const THREADS_COLLECTION = "threads";
|
|
|
19
19
|
export const THREAD_MESSAGES_COLLECTION = "messages"; // subcollection de threads
|
|
20
20
|
export const TICKETS_COLLECTION = "tickets";
|
|
21
21
|
export const INBOXES_COLLECTION = "inboxes";
|
|
22
|
+
|
|
23
|
+
// hub-waba template subcollection (under channels)
|
|
24
|
+
export const HubWabaCollections = {
|
|
25
|
+
TEMPLATES: 'waba-templates',
|
|
26
|
+
} as const;
|
|
@@ -7,6 +7,7 @@ export * from "./thread";
|
|
|
7
7
|
export * from "./thread-message";
|
|
8
8
|
export * from "./ticket";
|
|
9
9
|
export * from "./inbox";
|
|
10
|
+
export * from "./waba-template";
|
|
10
11
|
export declare const EvoChatPermissions: {
|
|
11
12
|
readonly Read: "evo_chat_read";
|
|
12
13
|
readonly Write: "evo_chat_write";
|
|
@@ -24,6 +24,7 @@ __exportStar(require("./thread"), exports);
|
|
|
24
24
|
__exportStar(require("./thread-message"), exports);
|
|
25
25
|
__exportStar(require("./ticket"), exports);
|
|
26
26
|
__exportStar(require("./inbox"), exports);
|
|
27
|
+
__exportStar(require("./waba-template"), exports);
|
|
27
28
|
// Permissões para o evo-chat
|
|
28
29
|
exports.EvoChatPermissions = {
|
|
29
30
|
Read: "evo_chat_read",
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { IFireDoc } from '../../shared';
|
|
2
|
+
export declare const WabaTemplateStatusEnum: {
|
|
3
|
+
readonly Draft: "DRAFT";
|
|
4
|
+
readonly Approved: "APPROVED";
|
|
5
|
+
readonly Pending: "PENDING";
|
|
6
|
+
readonly Rejected: "REJECTED";
|
|
7
|
+
readonly Disabled: "DISABLED";
|
|
8
|
+
readonly Paused: "PAUSED";
|
|
9
|
+
};
|
|
10
|
+
export type WabaTemplateStatus = (typeof WabaTemplateStatusEnum)[keyof typeof WabaTemplateStatusEnum];
|
|
11
|
+
export declare const WabaTemplateCategoryEnum: {
|
|
12
|
+
readonly Authentication: "AUTHENTICATION";
|
|
13
|
+
readonly Marketing: "MARKETING";
|
|
14
|
+
readonly Utility: "UTILITY";
|
|
15
|
+
};
|
|
16
|
+
export type WabaTemplateCategory = (typeof WabaTemplateCategoryEnum)[keyof typeof WabaTemplateCategoryEnum];
|
|
17
|
+
export declare const WabaTemplateComponentTypeEnum: {
|
|
18
|
+
readonly Header: "HEADER";
|
|
19
|
+
readonly Body: "BODY";
|
|
20
|
+
readonly Footer: "FOOTER";
|
|
21
|
+
readonly Buttons: "BUTTONS";
|
|
22
|
+
};
|
|
23
|
+
export type WabaTemplateComponentType = (typeof WabaTemplateComponentTypeEnum)[keyof typeof WabaTemplateComponentTypeEnum];
|
|
24
|
+
export declare const WabaTemplateHeaderFormatEnum: {
|
|
25
|
+
readonly Text: "TEXT";
|
|
26
|
+
readonly Image: "IMAGE";
|
|
27
|
+
readonly Video: "VIDEO";
|
|
28
|
+
readonly Document: "DOCUMENT";
|
|
29
|
+
readonly Location: "LOCATION";
|
|
30
|
+
};
|
|
31
|
+
export type WabaTemplateHeaderFormat = (typeof WabaTemplateHeaderFormatEnum)[keyof typeof WabaTemplateHeaderFormatEnum];
|
|
32
|
+
export declare const WabaTemplateButtonTypeEnum: {
|
|
33
|
+
readonly QuickReply: "QUICK_REPLY";
|
|
34
|
+
readonly Url: "URL";
|
|
35
|
+
readonly PhoneNumber: "PHONE_NUMBER";
|
|
36
|
+
};
|
|
37
|
+
export type WabaTemplateButtonType = (typeof WabaTemplateButtonTypeEnum)[keyof typeof WabaTemplateButtonTypeEnum];
|
|
38
|
+
export declare const WabaTemplateParameterFormatEnum: {
|
|
39
|
+
readonly Named: "NAMED";
|
|
40
|
+
readonly Positional: "POSITIONAL";
|
|
41
|
+
};
|
|
42
|
+
export type WabaTemplateParameterFormat = (typeof WabaTemplateParameterFormatEnum)[keyof typeof WabaTemplateParameterFormatEnum];
|
|
43
|
+
export interface IWabaTemplateButton {
|
|
44
|
+
type: WabaTemplateButtonType;
|
|
45
|
+
text: string;
|
|
46
|
+
url?: string;
|
|
47
|
+
phone_number?: string;
|
|
48
|
+
example?: string[];
|
|
49
|
+
}
|
|
50
|
+
export interface IWabaTemplateComponent {
|
|
51
|
+
type: WabaTemplateComponentType;
|
|
52
|
+
format?: WabaTemplateHeaderFormat;
|
|
53
|
+
text?: string;
|
|
54
|
+
buttons?: IWabaTemplateButton[];
|
|
55
|
+
example?: {
|
|
56
|
+
header_text?: string[];
|
|
57
|
+
header_handle?: string[];
|
|
58
|
+
body_text?: string[][];
|
|
59
|
+
body_text_named_params?: Array<{
|
|
60
|
+
param_name: string;
|
|
61
|
+
example: string;
|
|
62
|
+
}>;
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
export interface IWabaTemplateDraftSource {
|
|
66
|
+
meta_id: string;
|
|
67
|
+
name: string;
|
|
68
|
+
}
|
|
69
|
+
export interface IWabaTemplate extends IFireDoc {
|
|
70
|
+
meta_id?: string;
|
|
71
|
+
name: string;
|
|
72
|
+
status: WabaTemplateStatus;
|
|
73
|
+
category: WabaTemplateCategory;
|
|
74
|
+
language: string;
|
|
75
|
+
components: IWabaTemplateComponent[];
|
|
76
|
+
parameter_format?: WabaTemplateParameterFormat;
|
|
77
|
+
quality_score?: {
|
|
78
|
+
score: string;
|
|
79
|
+
date: number;
|
|
80
|
+
};
|
|
81
|
+
rejected_reason?: string;
|
|
82
|
+
waba_id: string;
|
|
83
|
+
synced_at?: Date | null;
|
|
84
|
+
is_draft: boolean;
|
|
85
|
+
draft_source?: IWabaTemplateDraftSource;
|
|
86
|
+
}
|
|
87
|
+
export interface IWabaTemplateCreateRequest {
|
|
88
|
+
name: string;
|
|
89
|
+
category: WabaTemplateCategory;
|
|
90
|
+
language: string;
|
|
91
|
+
parameter_format?: WabaTemplateParameterFormat;
|
|
92
|
+
components: IWabaTemplateComponent[];
|
|
93
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WabaTemplateParameterFormatEnum = exports.WabaTemplateButtonTypeEnum = exports.WabaTemplateHeaderFormatEnum = exports.WabaTemplateComponentTypeEnum = exports.WabaTemplateCategoryEnum = exports.WabaTemplateStatusEnum = void 0;
|
|
4
|
+
// ── Enums ──
|
|
5
|
+
exports.WabaTemplateStatusEnum = {
|
|
6
|
+
Draft: 'DRAFT',
|
|
7
|
+
Approved: 'APPROVED',
|
|
8
|
+
Pending: 'PENDING',
|
|
9
|
+
Rejected: 'REJECTED',
|
|
10
|
+
Disabled: 'DISABLED',
|
|
11
|
+
Paused: 'PAUSED',
|
|
12
|
+
};
|
|
13
|
+
exports.WabaTemplateCategoryEnum = {
|
|
14
|
+
Authentication: 'AUTHENTICATION',
|
|
15
|
+
Marketing: 'MARKETING',
|
|
16
|
+
Utility: 'UTILITY',
|
|
17
|
+
};
|
|
18
|
+
exports.WabaTemplateComponentTypeEnum = {
|
|
19
|
+
Header: 'HEADER',
|
|
20
|
+
Body: 'BODY',
|
|
21
|
+
Footer: 'FOOTER',
|
|
22
|
+
Buttons: 'BUTTONS',
|
|
23
|
+
};
|
|
24
|
+
exports.WabaTemplateHeaderFormatEnum = {
|
|
25
|
+
Text: 'TEXT',
|
|
26
|
+
Image: 'IMAGE',
|
|
27
|
+
Video: 'VIDEO',
|
|
28
|
+
Document: 'DOCUMENT',
|
|
29
|
+
Location: 'LOCATION',
|
|
30
|
+
};
|
|
31
|
+
exports.WabaTemplateButtonTypeEnum = {
|
|
32
|
+
QuickReply: 'QUICK_REPLY',
|
|
33
|
+
Url: 'URL',
|
|
34
|
+
PhoneNumber: 'PHONE_NUMBER',
|
|
35
|
+
};
|
|
36
|
+
exports.WabaTemplateParameterFormatEnum = {
|
|
37
|
+
Named: 'NAMED',
|
|
38
|
+
Positional: 'POSITIONAL',
|
|
39
|
+
};
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { IFireDoc } from '../../shared';
|
|
2
|
+
|
|
3
|
+
// ── Enums ──
|
|
4
|
+
|
|
5
|
+
export const WabaTemplateStatusEnum = {
|
|
6
|
+
Draft: 'DRAFT',
|
|
7
|
+
Approved: 'APPROVED',
|
|
8
|
+
Pending: 'PENDING',
|
|
9
|
+
Rejected: 'REJECTED',
|
|
10
|
+
Disabled: 'DISABLED',
|
|
11
|
+
Paused: 'PAUSED',
|
|
12
|
+
} as const;
|
|
13
|
+
export type WabaTemplateStatus = (typeof WabaTemplateStatusEnum)[keyof typeof WabaTemplateStatusEnum];
|
|
14
|
+
|
|
15
|
+
export const WabaTemplateCategoryEnum = {
|
|
16
|
+
Authentication: 'AUTHENTICATION',
|
|
17
|
+
Marketing: 'MARKETING',
|
|
18
|
+
Utility: 'UTILITY',
|
|
19
|
+
} as const;
|
|
20
|
+
export type WabaTemplateCategory = (typeof WabaTemplateCategoryEnum)[keyof typeof WabaTemplateCategoryEnum];
|
|
21
|
+
|
|
22
|
+
export const WabaTemplateComponentTypeEnum = {
|
|
23
|
+
Header: 'HEADER',
|
|
24
|
+
Body: 'BODY',
|
|
25
|
+
Footer: 'FOOTER',
|
|
26
|
+
Buttons: 'BUTTONS',
|
|
27
|
+
} as const;
|
|
28
|
+
export type WabaTemplateComponentType = (typeof WabaTemplateComponentTypeEnum)[keyof typeof WabaTemplateComponentTypeEnum];
|
|
29
|
+
|
|
30
|
+
export const WabaTemplateHeaderFormatEnum = {
|
|
31
|
+
Text: 'TEXT',
|
|
32
|
+
Image: 'IMAGE',
|
|
33
|
+
Video: 'VIDEO',
|
|
34
|
+
Document: 'DOCUMENT',
|
|
35
|
+
Location: 'LOCATION',
|
|
36
|
+
} as const;
|
|
37
|
+
export type WabaTemplateHeaderFormat = (typeof WabaTemplateHeaderFormatEnum)[keyof typeof WabaTemplateHeaderFormatEnum];
|
|
38
|
+
|
|
39
|
+
export const WabaTemplateButtonTypeEnum = {
|
|
40
|
+
QuickReply: 'QUICK_REPLY',
|
|
41
|
+
Url: 'URL',
|
|
42
|
+
PhoneNumber: 'PHONE_NUMBER',
|
|
43
|
+
} as const;
|
|
44
|
+
export type WabaTemplateButtonType = (typeof WabaTemplateButtonTypeEnum)[keyof typeof WabaTemplateButtonTypeEnum];
|
|
45
|
+
|
|
46
|
+
export const WabaTemplateParameterFormatEnum = {
|
|
47
|
+
Named: 'NAMED',
|
|
48
|
+
Positional: 'POSITIONAL',
|
|
49
|
+
} as const;
|
|
50
|
+
export type WabaTemplateParameterFormat = (typeof WabaTemplateParameterFormatEnum)[keyof typeof WabaTemplateParameterFormatEnum];
|
|
51
|
+
|
|
52
|
+
// ── Component types ──
|
|
53
|
+
|
|
54
|
+
export interface IWabaTemplateButton {
|
|
55
|
+
type: WabaTemplateButtonType;
|
|
56
|
+
text: string;
|
|
57
|
+
url?: string;
|
|
58
|
+
phone_number?: string;
|
|
59
|
+
example?: string[];
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export interface IWabaTemplateComponent {
|
|
63
|
+
type: WabaTemplateComponentType;
|
|
64
|
+
format?: WabaTemplateHeaderFormat;
|
|
65
|
+
text?: string;
|
|
66
|
+
buttons?: IWabaTemplateButton[];
|
|
67
|
+
example?: {
|
|
68
|
+
header_text?: string[];
|
|
69
|
+
header_handle?: string[];
|
|
70
|
+
body_text?: string[][];
|
|
71
|
+
body_text_named_params?: Array<{ param_name: string; example: string }>;
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// ── Draft source ──
|
|
76
|
+
|
|
77
|
+
export interface IWabaTemplateDraftSource {
|
|
78
|
+
meta_id: string;
|
|
79
|
+
name: string;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// ── Documento principal ──
|
|
83
|
+
|
|
84
|
+
export interface IWabaTemplate extends IFireDoc {
|
|
85
|
+
meta_id?: string;
|
|
86
|
+
name: string;
|
|
87
|
+
status: WabaTemplateStatus;
|
|
88
|
+
category: WabaTemplateCategory;
|
|
89
|
+
language: string;
|
|
90
|
+
components: IWabaTemplateComponent[];
|
|
91
|
+
parameter_format?: WabaTemplateParameterFormat;
|
|
92
|
+
quality_score?: { score: string; date: number };
|
|
93
|
+
rejected_reason?: string;
|
|
94
|
+
waba_id: string;
|
|
95
|
+
synced_at?: Date | null;
|
|
96
|
+
is_draft: boolean;
|
|
97
|
+
draft_source?: IWabaTemplateDraftSource;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// ── Request types ──
|
|
101
|
+
|
|
102
|
+
export interface IWabaTemplateCreateRequest {
|
|
103
|
+
name: string;
|
|
104
|
+
category: WabaTemplateCategory;
|
|
105
|
+
language: string;
|
|
106
|
+
parameter_format?: WabaTemplateParameterFormat;
|
|
107
|
+
components: IWabaTemplateComponent[];
|
|
108
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { IFireDoc } from "../../shared";
|
|
1
|
+
import type { IFireDoc, IExternalLink } from "../../shared";
|
|
2
2
|
import type { IInvoiceTakerRef } from "../invoices";
|
|
3
3
|
/** Asaas `billingType` for payment links */
|
|
4
4
|
export declare enum AsaasPaymentLinkBillingTypeEnum {
|
|
@@ -66,6 +66,9 @@ export interface IPaymentLink extends IFireDoc {
|
|
|
66
66
|
checkout_url?: string;
|
|
67
67
|
callback?: IAsaasPaymentLinkCallbackSnapshot;
|
|
68
68
|
is_address_required?: boolean;
|
|
69
|
+
/** Cross-module references (e.g. nex_billing), same pattern as service invoices. */
|
|
70
|
+
externalLinks?: IExternalLink[];
|
|
71
|
+
externalLinkKeys?: string[];
|
|
69
72
|
/** Last payment activity from webhook (optional). */
|
|
70
73
|
last_payment_webhook_event?: string;
|
|
71
74
|
last_payment_id?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Nexus / FinOps — Payment links (Asaas) persisted in Firestore
|
|
2
2
|
|
|
3
|
-
import type { IFireDoc } from "../../shared";
|
|
3
|
+
import type { IFireDoc, IExternalLink } from "../../shared";
|
|
4
4
|
import type { IInvoiceTakerRef } from "../invoices";
|
|
5
5
|
|
|
6
6
|
/** Asaas `billingType` for payment links */
|
|
@@ -81,6 +81,10 @@ export interface IPaymentLink extends IFireDoc {
|
|
|
81
81
|
callback?: IAsaasPaymentLinkCallbackSnapshot;
|
|
82
82
|
is_address_required?: boolean;
|
|
83
83
|
|
|
84
|
+
/** Cross-module references (e.g. nex_billing), same pattern as service invoices. */
|
|
85
|
+
externalLinks?: IExternalLink[];
|
|
86
|
+
externalLinkKeys?: string[];
|
|
87
|
+
|
|
84
88
|
/** Last payment activity from webhook (optional). */
|
|
85
89
|
last_payment_webhook_event?: string;
|
|
86
90
|
last_payment_id?: string;
|
|
@@ -133,6 +133,7 @@ export interface INotificationChannelRef {
|
|
|
133
133
|
type: NotificationChannelType;
|
|
134
134
|
channel_id: string; // reference to channel config in CHAT module
|
|
135
135
|
sender_id?: string; // optional (e.g., whatsapp business number, email sender id)
|
|
136
|
+
provider_name?: string; // e.g., 'chatbee', 'hub-waba', 'smtp' — used to select provider implementation
|
|
136
137
|
[key: string]: unknown;
|
|
137
138
|
}
|
|
138
139
|
|
|
@@ -5,6 +5,10 @@ export declare const ExternalObjectTypeEnum: {
|
|
|
5
5
|
readonly MedProfessional: "med_professional";
|
|
6
6
|
readonly MedAppointment: "med_appointment";
|
|
7
7
|
readonly ChatContact: "chat_contact";
|
|
8
|
+
/** Nexus FinOps billing document */
|
|
9
|
+
readonly NexBilling: "nex_billing";
|
|
10
|
+
readonly NexContract: "nex_contract";
|
|
11
|
+
readonly NexCustomer: "nex_customer";
|
|
8
12
|
};
|
|
9
13
|
export type ExternalObjectType = (typeof ExternalObjectTypeEnum)[keyof typeof ExternalObjectTypeEnum];
|
|
10
14
|
export interface IExternalLink {
|
|
@@ -9,4 +9,8 @@ exports.ExternalObjectTypeEnum = {
|
|
|
9
9
|
MedProfessional: "med_professional",
|
|
10
10
|
MedAppointment: "med_appointment",
|
|
11
11
|
ChatContact: "chat_contact",
|
|
12
|
+
/** Nexus FinOps billing document */
|
|
13
|
+
NexBilling: "nex_billing",
|
|
14
|
+
NexContract: "nex_contract",
|
|
15
|
+
NexCustomer: "nex_customer",
|
|
12
16
|
};
|
|
@@ -9,6 +9,10 @@ export const ExternalObjectTypeEnum = {
|
|
|
9
9
|
MedProfessional: "med_professional",
|
|
10
10
|
MedAppointment: "med_appointment",
|
|
11
11
|
ChatContact: "chat_contact",
|
|
12
|
+
/** Nexus FinOps billing document */
|
|
13
|
+
NexBilling: "nex_billing",
|
|
14
|
+
NexContract: "nex_contract",
|
|
15
|
+
NexCustomer: "nex_customer",
|
|
12
16
|
} as const;
|
|
13
17
|
|
|
14
18
|
export type ExternalObjectType =
|