@d19n/youfibre-odin-sdk 2.0.61 → 2.0.63
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/README.md +8 -7
- package/dist/actions-v2/CreateUserDto.d.ts +151 -0
- package/dist/actions-v2/CreateUserDto.js +54 -0
- package/dist/entities-v2/User.d.ts +7 -1
- package/dist/entities-v2/User.js +2 -0
- package/dist/records-v2/UserRecord.d.ts +29 -0
- package/dist/records-v2/UserRecord.js +39 -0
- package/dist/records-v2/index.d.ts +1 -1
- package/dist/records-v2/index.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -350,7 +350,7 @@ This SDK includes **162** entities across **12** modules.
|
|
|
350
350
|
|
|
351
351
|
## Actions
|
|
352
352
|
|
|
353
|
-
This SDK includes **
|
|
353
|
+
This SDK includes **597** actions.
|
|
354
354
|
|
|
355
355
|
### Action Types
|
|
356
356
|
|
|
@@ -1676,6 +1676,13 @@ This SDK includes **596** actions.
|
|
|
1676
1676
|
| `CreateTimeSlot` | CREATE | k1.t-hEOJjsDb.IdentityModule.TimeSlot.Create.CreateTimeSlot |
|
|
1677
1677
|
| `UpdateTimeSlot` | UPDATE | k1.t-hEOJjsDb.IdentityModule.TimeSlot.Update.UpdateTimeSlot |
|
|
1678
1678
|
|
|
1679
|
+
#### User
|
|
1680
|
+
|
|
1681
|
+
| Action | Type | Event |
|
|
1682
|
+
|--------|------|-------|
|
|
1683
|
+
| `CreateUser` | CREATE | k1.t-hEOJjsDb.IdentityModule.User.Create.CreateUser |
|
|
1684
|
+
| `UpdateUser` | UPDATE | k1.t-hEOJjsDb.IdentityModule.User.Update.UpdateUser |
|
|
1685
|
+
|
|
1679
1686
|
#### WayleaveAudit
|
|
1680
1687
|
|
|
1681
1688
|
| Action | Type | Event |
|
|
@@ -1815,12 +1822,6 @@ This SDK includes **596** actions.
|
|
|
1815
1822
|
|--------|------|-------|
|
|
1816
1823
|
| `UpdateService` | UPDATE | k1.t-hEOJjsDb.ServiceModule.Service.Update.UpdateService |
|
|
1817
1824
|
|
|
1818
|
-
#### User
|
|
1819
|
-
|
|
1820
|
-
| Action | Type | Event |
|
|
1821
|
-
|--------|------|-------|
|
|
1822
|
-
| `UpdateUser` | UPDATE | k1.t-hEOJjsDb.IdentityModule.User.Update.UpdateUser |
|
|
1823
|
-
|
|
1824
1825
|
#### Visit
|
|
1825
1826
|
|
|
1826
1827
|
| Action | Type | Event |
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CreateUser Action DTO
|
|
3
|
+
*
|
|
4
|
+
* Create new user
|
|
5
|
+
*
|
|
6
|
+
* @module IdentityModule
|
|
7
|
+
* @entity User
|
|
8
|
+
* @actionKey CreateUser
|
|
9
|
+
* @event k1.t-hEOJjsDb.IdentityModule.User.Create.CreateUser
|
|
10
|
+
*
|
|
11
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
12
|
+
*/
|
|
13
|
+
import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/dist/core';
|
|
14
|
+
/**
|
|
15
|
+
* RabbitMQ message payload for CreateUser created events
|
|
16
|
+
*
|
|
17
|
+
* @event k1.t-hEOJjsDb.IdentityModule.User.Create.CreateUser
|
|
18
|
+
*/
|
|
19
|
+
export interface CreateUserMessage extends OdinRecordCreatedEvent<CreateUserDto, CreateUserProperties> {
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Properties for CreateUser action
|
|
23
|
+
*
|
|
24
|
+
* @property Required fields: 0
|
|
25
|
+
* @property Optional fields: 13
|
|
26
|
+
*/
|
|
27
|
+
export interface CreateUserProperties {
|
|
28
|
+
/**
|
|
29
|
+
* TwilioWorkerStatus
|
|
30
|
+
*
|
|
31
|
+
* TwilioWorkerStatus (IT Security - User)
|
|
32
|
+
* @type {TEXT}
|
|
33
|
+
*/
|
|
34
|
+
TwilioWorkerStatus?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* UseResponseId
|
|
37
|
+
*
|
|
38
|
+
* use response Id (IT Security - User)
|
|
39
|
+
* @type {NUMBER}
|
|
40
|
+
*/
|
|
41
|
+
UseResponseId?: number | null;
|
|
42
|
+
/**
|
|
43
|
+
* StartingAddress
|
|
44
|
+
*
|
|
45
|
+
* the address the user is starting their day from (IT Security - User)
|
|
46
|
+
* @type {LOOKUP}
|
|
47
|
+
*/
|
|
48
|
+
StartingAddress?: string | null;
|
|
49
|
+
/**
|
|
50
|
+
* JobTitle
|
|
51
|
+
*
|
|
52
|
+
* the users job title (IT Security - User)
|
|
53
|
+
* @type {TEXT}
|
|
54
|
+
*/
|
|
55
|
+
JobTitle?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* AircallId
|
|
58
|
+
*
|
|
59
|
+
* the ID of the user in Air call (IT Security - User)
|
|
60
|
+
* @type {NUMBER}
|
|
61
|
+
*/
|
|
62
|
+
AircallId?: number | null;
|
|
63
|
+
/**
|
|
64
|
+
* Accredited
|
|
65
|
+
*
|
|
66
|
+
* Can they climb a ladder ? (IT Security - User)
|
|
67
|
+
* @type {ENUM}
|
|
68
|
+
*/
|
|
69
|
+
Accredited?: string | null;
|
|
70
|
+
/**
|
|
71
|
+
* TeamId
|
|
72
|
+
*
|
|
73
|
+
* Reference identifier for User relationships. Used for data integrity.
|
|
74
|
+
* @type {LOOKUP}
|
|
75
|
+
*/
|
|
76
|
+
TeamId?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
* WorkingArea
|
|
79
|
+
*
|
|
80
|
+
* The working area is aligned with an (EX polygon ID) (IT Security - User)
|
|
81
|
+
* @type {NUMBER}
|
|
82
|
+
*/
|
|
83
|
+
WorkingArea?: number | null;
|
|
84
|
+
/**
|
|
85
|
+
* TwilioWorker
|
|
86
|
+
*
|
|
87
|
+
* TwilioWorker (IT Security - User)
|
|
88
|
+
* @type {BOOLEAN}
|
|
89
|
+
*/
|
|
90
|
+
TwilioWorker?: boolean | null;
|
|
91
|
+
/**
|
|
92
|
+
* Team
|
|
93
|
+
*
|
|
94
|
+
* the team name (IT Security - User)
|
|
95
|
+
* @type {TEXT}
|
|
96
|
+
*/
|
|
97
|
+
Team?: string | null;
|
|
98
|
+
/**
|
|
99
|
+
* TwilioSid
|
|
100
|
+
*
|
|
101
|
+
* Reference identifier for User relationships. Used for data integrity.
|
|
102
|
+
* @type {TEXT}
|
|
103
|
+
*/
|
|
104
|
+
TwilioSid?: string | null;
|
|
105
|
+
/**
|
|
106
|
+
* EmailAddress
|
|
107
|
+
*
|
|
108
|
+
* email address (IT Security - User)
|
|
109
|
+
* @type {TEXT}
|
|
110
|
+
*/
|
|
111
|
+
EmailAddress?: string | null;
|
|
112
|
+
/**
|
|
113
|
+
* FullName
|
|
114
|
+
*
|
|
115
|
+
* FullName used as
|
|
116
|
+
* @type {TEXT}
|
|
117
|
+
*/
|
|
118
|
+
FullName?: string | null;
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* CreateUser
|
|
122
|
+
*
|
|
123
|
+
* Create new user
|
|
124
|
+
*
|
|
125
|
+
* @actionType CREATE - Creates a new User record
|
|
126
|
+
* @module IdentityModule
|
|
127
|
+
* @entity User
|
|
128
|
+
* @event k1.t-hEOJjsDb.IdentityModule.User.Create.CreateUser
|
|
129
|
+
* @permission schema.action.createuser.trigger
|
|
130
|
+
* @benchmark This action is tracked for performance benchmarks
|
|
131
|
+
*/
|
|
132
|
+
export declare class CreateUserDto extends OdinRecordCreateDto<CreateUserProperties> {
|
|
133
|
+
/** Used by SDK generators to identify action type */
|
|
134
|
+
static readonly ACTION_TYPE = "CREATE";
|
|
135
|
+
static readonly ACTION_KEY = "CreateUser";
|
|
136
|
+
static readonly MODULE_NAME = "IdentityModule";
|
|
137
|
+
static readonly ENTITIES: string[];
|
|
138
|
+
static readonly EVENT_NAME = "k1.t-hEOJjsDb.IdentityModule.User.Create.CreateUser";
|
|
139
|
+
static readonly PERMISSION = "schema.action.createuser.trigger";
|
|
140
|
+
/** Step metadata - entity this action targets */
|
|
141
|
+
static readonly STEP_ENTITY = "IdentityModule:User";
|
|
142
|
+
static readonly STEP_SCHEMA_ID = "d393741a-e493-4ea6-a9d9-30d461c1f329";
|
|
143
|
+
static readonly STEP_SCHEMA_ACTION_ID = "6ac88953-57e2-42aa-878a-74e4f245658d";
|
|
144
|
+
static readonly AUTO_LINK_PARENT = true;
|
|
145
|
+
readonly actionName: string;
|
|
146
|
+
readonly schemaActionId: string;
|
|
147
|
+
readonly entity: string;
|
|
148
|
+
constructor(properties: CreateUserProperties, options?: {
|
|
149
|
+
journeyId?: string;
|
|
150
|
+
});
|
|
151
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* CreateUser Action DTO
|
|
4
|
+
*
|
|
5
|
+
* Create new user
|
|
6
|
+
*
|
|
7
|
+
* @module IdentityModule
|
|
8
|
+
* @entity User
|
|
9
|
+
* @actionKey CreateUser
|
|
10
|
+
* @event k1.t-hEOJjsDb.IdentityModule.User.Create.CreateUser
|
|
11
|
+
*
|
|
12
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.CreateUserDto = void 0;
|
|
16
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
17
|
+
/**
|
|
18
|
+
* CreateUser
|
|
19
|
+
*
|
|
20
|
+
* Create new user
|
|
21
|
+
*
|
|
22
|
+
* @actionType CREATE - Creates a new User record
|
|
23
|
+
* @module IdentityModule
|
|
24
|
+
* @entity User
|
|
25
|
+
* @event k1.t-hEOJjsDb.IdentityModule.User.Create.CreateUser
|
|
26
|
+
* @permission schema.action.createuser.trigger
|
|
27
|
+
* @benchmark This action is tracked for performance benchmarks
|
|
28
|
+
*/
|
|
29
|
+
class CreateUserDto extends core_1.OdinRecordCreateDto {
|
|
30
|
+
constructor(properties, options) {
|
|
31
|
+
super({
|
|
32
|
+
entity: 'IdentityModule:User',
|
|
33
|
+
type: undefined,
|
|
34
|
+
properties,
|
|
35
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
36
|
+
});
|
|
37
|
+
this.actionName = 'CreateUser';
|
|
38
|
+
this.schemaActionId = '6ac88953-57e2-42aa-878a-74e4f245658d';
|
|
39
|
+
this.entity = 'IdentityModule:User';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
exports.CreateUserDto = CreateUserDto;
|
|
43
|
+
/** Used by SDK generators to identify action type */
|
|
44
|
+
CreateUserDto.ACTION_TYPE = 'CREATE';
|
|
45
|
+
CreateUserDto.ACTION_KEY = 'CreateUser';
|
|
46
|
+
CreateUserDto.MODULE_NAME = 'IdentityModule';
|
|
47
|
+
CreateUserDto.ENTITIES = ['User'];
|
|
48
|
+
CreateUserDto.EVENT_NAME = 'k1.t-hEOJjsDb.IdentityModule.User.Create.CreateUser';
|
|
49
|
+
CreateUserDto.PERMISSION = 'schema.action.createuser.trigger';
|
|
50
|
+
/** Step metadata - entity this action targets */
|
|
51
|
+
CreateUserDto.STEP_ENTITY = 'IdentityModule:User';
|
|
52
|
+
CreateUserDto.STEP_SCHEMA_ID = 'd393741a-e493-4ea6-a9d9-30d461c1f329';
|
|
53
|
+
CreateUserDto.STEP_SCHEMA_ACTION_ID = '6ac88953-57e2-42aa-878a-74e4f245658d';
|
|
54
|
+
CreateUserDto.AUTO_LINK_PARENT = true;
|
|
@@ -95,6 +95,8 @@ export declare enum UserPropertyKeys {
|
|
|
95
95
|
UseResponseId = "UseResponseId",
|
|
96
96
|
/** TwilioWorkerStatus (IT Security - User) */
|
|
97
97
|
TwilioWorkerStatus = "TwilioWorkerStatus",
|
|
98
|
+
/** FullName used as */
|
|
99
|
+
FullName = "FullName",
|
|
98
100
|
/** email address (IT Security - User) */
|
|
99
101
|
EmailAddress = "EmailAddress"
|
|
100
102
|
}
|
|
@@ -209,11 +211,15 @@ export interface UserProperties {
|
|
|
209
211
|
* @type {TEXT}
|
|
210
212
|
*/
|
|
211
213
|
TwilioWorkerStatus: string;
|
|
214
|
+
/** FullName used as
|
|
215
|
+
*
|
|
216
|
+
* @type {TEXT}
|
|
217
|
+
*/
|
|
218
|
+
FullName: string;
|
|
212
219
|
/** email address (IT Security - User)
|
|
213
220
|
*
|
|
214
221
|
* @type {TEXT}
|
|
215
222
|
* @pii This field contains personally identifiable information
|
|
216
|
-
* @hidden This field is hidden in the UI
|
|
217
223
|
*/
|
|
218
224
|
EmailAddress: string;
|
|
219
225
|
}
|
package/dist/entities-v2/User.js
CHANGED
|
@@ -80,6 +80,8 @@ var UserPropertyKeys;
|
|
|
80
80
|
UserPropertyKeys["UseResponseId"] = "UseResponseId";
|
|
81
81
|
/** TwilioWorkerStatus (IT Security - User) */
|
|
82
82
|
UserPropertyKeys["TwilioWorkerStatus"] = "TwilioWorkerStatus";
|
|
83
|
+
/** FullName used as */
|
|
84
|
+
UserPropertyKeys["FullName"] = "FullName";
|
|
83
85
|
/** email address (IT Security - User) */
|
|
84
86
|
UserPropertyKeys["EmailAddress"] = "EmailAddress";
|
|
85
87
|
})(UserPropertyKeys = exports.UserPropertyKeys || (exports.UserPropertyKeys = {}));
|
|
@@ -21,6 +21,7 @@ import { IDbRecordCreateUpdateRes } from '@d19n/odin-types/dist/core/interfaces/
|
|
|
21
21
|
import { IOdinProvider } from '@d19n/odin-sdk-generator/dist/odin-sdk-types';
|
|
22
22
|
import { RecordLinkManager } from '@d19n/odin-sdk-generator/dist/record-link-manager';
|
|
23
23
|
import { UserProperties } from '../entities-v2/User';
|
|
24
|
+
import { CreateUserProperties } from '../actions-v2/CreateUserDto';
|
|
24
25
|
import { UpdateUserProperties } from '../actions-v2/UpdateUserDto';
|
|
25
26
|
import { BlockageA55Record } from './BlockageA55Record';
|
|
26
27
|
import { TimeSlotRecord } from './TimeSlotRecord';
|
|
@@ -471,6 +472,34 @@ export declare class UserRecord<TProps = UserProperties> {
|
|
|
471
472
|
unlink(target: OdinRecord<any> | {
|
|
472
473
|
id: string;
|
|
473
474
|
} | string): Promise<void>;
|
|
475
|
+
/**
|
|
476
|
+
* CreateUser
|
|
477
|
+
*
|
|
478
|
+
* Creates a new User record with the specified properties.
|
|
479
|
+
* Returns an ActionBuilder - call .execute() to create or .dryRun() for debugging.
|
|
480
|
+
*
|
|
481
|
+
* @param properties - The properties for the new record
|
|
482
|
+
* @param options - Optional settings
|
|
483
|
+
* @param options.type - Override the record type
|
|
484
|
+
* @param options.journeyId - Associate with a journey
|
|
485
|
+
* @param options.stageKey - Set initial pipeline stage
|
|
486
|
+
* @returns ActionBuilder - call .execute() to create or .dryRun() for payload
|
|
487
|
+
*
|
|
488
|
+
* @example
|
|
489
|
+
* ```typescript
|
|
490
|
+
* // Create with properties
|
|
491
|
+
* const record = odinClient.users.new();
|
|
492
|
+
* await record.createUser({ ... }).execute();
|
|
493
|
+
*
|
|
494
|
+
* // Dry run (for debugging)
|
|
495
|
+
* const payload = record.createUser({ ... }).dryRun();
|
|
496
|
+
* ```
|
|
497
|
+
*/
|
|
498
|
+
createUser(properties?: CreateUserProperties, options?: {
|
|
499
|
+
type?: string;
|
|
500
|
+
journeyId?: string;
|
|
501
|
+
stageKey?: string;
|
|
502
|
+
}): ActionBuilder;
|
|
474
503
|
/**
|
|
475
504
|
* UpdateUser
|
|
476
505
|
*
|
|
@@ -703,6 +703,45 @@ class UserRecord {
|
|
|
703
703
|
});
|
|
704
704
|
}
|
|
705
705
|
// ============================================
|
|
706
|
+
// CREATE ACTIONS (no existing record required)
|
|
707
|
+
// ============================================
|
|
708
|
+
/**
|
|
709
|
+
* CreateUser
|
|
710
|
+
*
|
|
711
|
+
* Creates a new User record with the specified properties.
|
|
712
|
+
* Returns an ActionBuilder - call .execute() to create or .dryRun() for debugging.
|
|
713
|
+
*
|
|
714
|
+
* @param properties - The properties for the new record
|
|
715
|
+
* @param options - Optional settings
|
|
716
|
+
* @param options.type - Override the record type
|
|
717
|
+
* @param options.journeyId - Associate with a journey
|
|
718
|
+
* @param options.stageKey - Set initial pipeline stage
|
|
719
|
+
* @returns ActionBuilder - call .execute() to create or .dryRun() for payload
|
|
720
|
+
*
|
|
721
|
+
* @example
|
|
722
|
+
* ```typescript
|
|
723
|
+
* // Create with properties
|
|
724
|
+
* const record = odinClient.users.new();
|
|
725
|
+
* await record.createUser({ ... }).execute();
|
|
726
|
+
*
|
|
727
|
+
* // Dry run (for debugging)
|
|
728
|
+
* const payload = record.createUser({ ... }).dryRun();
|
|
729
|
+
* ```
|
|
730
|
+
*/
|
|
731
|
+
createUser(properties, options) {
|
|
732
|
+
var _a, _b;
|
|
733
|
+
const payload = {
|
|
734
|
+
entity: 'IdentityModule:User',
|
|
735
|
+
type: (_a = options === null || options === void 0 ? void 0 : options.type) !== null && _a !== void 0 ? _a : (_b = this._record) === null || _b === void 0 ? void 0 : _b.type,
|
|
736
|
+
actionName: 'CreateUser',
|
|
737
|
+
properties: properties || {},
|
|
738
|
+
associations: this._pendingLinks.length > 0 ? this._pendingLinks : undefined,
|
|
739
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
740
|
+
stageKey: options === null || options === void 0 ? void 0 : options.stageKey,
|
|
741
|
+
};
|
|
742
|
+
return new ActionBuilder(this._provider, 'IdentityModule', 'User', payload, () => { this._pendingLinks = []; });
|
|
743
|
+
}
|
|
744
|
+
// ============================================
|
|
706
745
|
// UPDATE ACTIONS (require existing record)
|
|
707
746
|
// ============================================
|
|
708
747
|
/**
|
|
@@ -97,6 +97,7 @@ export { VoiceConfigurationRecord, isVoiceConfigurationRecord } from './VoiceCon
|
|
|
97
97
|
export { SalesTerritoryRecord, isSalesTerritoryRecord } from './SalesTerritoryRecord';
|
|
98
98
|
export { TeamRecord, isTeamRecord } from './TeamRecord';
|
|
99
99
|
export { TimeSlotRecord, isTimeSlotRecord } from './TimeSlotRecord';
|
|
100
|
+
export { UserRecord, isUserRecord } from './UserRecord';
|
|
100
101
|
export { WayleaveAuditRecord, isWayleaveAuditRecord } from './WayleaveAuditRecord';
|
|
101
102
|
export { WorkOrderStatusUpdateRecord, isWorkOrderStatusUpdateRecord } from './WorkOrderStatusUpdateRecord';
|
|
102
103
|
export { CreditNoteRecord, isCreditNoteRecord } from './CreditNoteRecord';
|
|
@@ -116,6 +117,5 @@ export { ScheduleSlotRecord, isScheduleSlotRecord } from './ScheduleSlotRecord';
|
|
|
116
117
|
export { CallLegRecord, isCallLegRecord } from './CallLegRecord';
|
|
117
118
|
export { CallRecord, isCallRecord } from './CallRecord';
|
|
118
119
|
export { ServiceRecord, isServiceRecord } from './ServiceRecord';
|
|
119
|
-
export { UserRecord, isUserRecord } from './UserRecord';
|
|
120
120
|
export { VisitRecord, isVisitRecord } from './VisitRecord';
|
|
121
121
|
export { CustomerPhonePortingRecord, isCustomerPhonePortingRecord } from './CustomerPhonePortingRecord';
|
package/dist/records-v2/index.js
CHANGED
|
@@ -14,8 +14,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
14
14
|
exports.isOhInProgressAuditRecord = exports.OhInProgressAuditRecord = exports.isOhAuditOfInstallationRecord = exports.OhAuditOfInstallationRecord = exports.isUgRetroAuditRecord = exports.UgRetroAuditRecord = exports.isUgInProgressAuditRecord = exports.UgInProgressAuditRecord = exports.isUgInstallationAuditRecord = exports.UgInstallationAuditRecord = exports.isUgAuditOfInstallationRecord = exports.UgAuditOfInstallationRecord = exports.isConversationRecord = exports.ConversationRecord = exports.isOntReplacementApprovalRecord = exports.OntReplacementApprovalRecord = exports.isAccountRecord = exports.AccountRecord = exports.isPermissionToFailRecord = exports.PermissionToFailRecord = exports.isTransactionRecord = exports.TransactionRecord = exports.isPaymentRecord = exports.PaymentRecord = exports.isPICRequestRecord = exports.PICRequestRecord = exports.isChangeReasonRecord = exports.ChangeReasonRecord = exports.isChurnRequestRecord = exports.ChurnRequestRecord = exports.isBillingRequestRecord = exports.BillingRequestRecord = exports.isBillingAdjustmentRecord = exports.BillingAdjustmentRecord = exports.isServiceAppointmentConfigRecord = exports.ServiceAppointmentConfigRecord = exports.isCrmDatasetRecord = exports.CrmDatasetRecord = exports.isNoteRecord = exports.NoteRecord = exports.isContractBuyOutRecord = exports.ContractBuyOutRecord = exports.isCaseRecord = exports.CaseRecord = exports.isAddressRecord = exports.AddressRecord = exports.isWorkOrderRecord = exports.WorkOrderRecord = exports.isOrderRecord = exports.OrderRecord = void 0;
|
|
15
15
|
exports.isConfigRecord = exports.ConfigRecord = exports.isEmailRecord = exports.EmailRecord = exports.isRewardRecord = exports.RewardRecord = exports.isContactRecord = exports.ContactRecord = exports.isCallTransferRecord = exports.CallTransferRecord = exports.isCallEventRecord = exports.CallEventRecord = exports.isProductRecord = exports.ProductRecord = exports.isBrskEntityMigrationErrorRecord = exports.BrskEntityMigrationErrorRecord = exports.isBngProvisionRecord = exports.BngProvisionRecord = exports.isPgFileAllocationRecord = exports.PgFileAllocationRecord = exports.isAppointmentRecord = exports.AppointmentRecord = exports.isAffiliateCodeRecord = exports.AffiliateCodeRecord = exports.isActivityLogRecord = exports.ActivityLogRecord = exports.isAccountCreditRecord = exports.AccountCreditRecord = exports.isServiceVisitAuditRecord = exports.ServiceVisitAuditRecord = exports.isYfFieldServiceVisitRecord = exports.YfFieldServiceVisitRecord = exports.isRemediationOutcomeFormRecord = exports.RemediationOutcomeFormRecord = exports.isOhExternalAuditRecord = exports.OhExternalAuditRecord = exports.isUgExternalAuditRecord = exports.UgExternalAuditRecord = exports.isPaymentMethodRefundRecord = exports.PaymentMethodRefundRecord = exports.isInternalInstallAuditRecord = exports.InternalInstallAuditRecord = exports.isSweeperMaintenanceAuditRecord = exports.SweeperMaintenanceAuditRecord = exports.isBlockageA55Record = exports.BlockageA55Record = exports.isOhRetroAuditRecord = exports.OhRetroAuditRecord = exports.isOhInstallationAuditRecord = exports.OhInstallationAuditRecord = void 0;
|
|
16
16
|
exports.isPgPaymentMethodRecord = exports.PgPaymentMethodRecord = exports.isPgLogRecord = exports.PgLogRecord = exports.isPgDisputeRecord = exports.PgDisputeRecord = exports.isPgContactRecord = exports.PgContactRecord = exports.isPaymentMethodRecord = exports.PaymentMethodRecord = exports.isSmsMessageRecord = exports.SmsMessageRecord = exports.isReferralRecord = exports.ReferralRecord = exports.isOrderKciRecord = exports.OrderKciRecord = exports.isOrderCheckRecord = exports.OrderCheckRecord = exports.isCampaignRecord = exports.CampaignRecord = exports.isOneTouchSwitchRecord = exports.OneTouchSwitchRecord = exports.isReturnsRecord = exports.ReturnsRecord = exports.isNetworkDeviceRecord = exports.NetworkDeviceRecord = exports.isMessageRecord = exports.MessageRecord = exports.isLeadRecord = exports.LeadRecord = exports.isInvoiceItemRecord = exports.InvoiceItemRecord = exports.isImpersonationTrackerRecord = exports.ImpersonationTrackerRecord = exports.isActivityRecord = exports.ActivityRecord = exports.isFieldServiceProductRecord = exports.FieldServiceProductRecord = exports.isFieldServiceDispatchedProductRecord = exports.FieldServiceDispatchedProductRecord = exports.isExchangeRecord = exports.ExchangeRecord = exports.isEmailTemplateRecord = exports.EmailTemplateRecord = exports.isEmailSenderRecord = exports.EmailSenderRecord = exports.isCustomerDeviceOntRecord = exports.CustomerDeviceOntRecord = exports.isCustomerDeviceConfigurationRecord = exports.CustomerDeviceConfigurationRecord = void 0;
|
|
17
|
-
exports.
|
|
18
|
-
exports.isCustomerPhonePortingRecord = exports.CustomerPhonePortingRecord = exports.isVisitRecord = exports.VisitRecord = exports.
|
|
17
|
+
exports.isOutageRecord = exports.OutageRecord = exports.isSiteSpecificRiskAssessmentOutcomeFormRecord = exports.SiteSpecificRiskAssessmentOutcomeFormRecord = exports.isRemediationRequiredReasonRecord = exports.RemediationRequiredReasonRecord = exports.isKnowledgeArticleRecord = exports.KnowledgeArticleRecord = exports.isInvoiceRecord = exports.InvoiceRecord = exports.isDiscountRecord = exports.DiscountRecord = exports.isCustomerDeviceRouterRecord = exports.CustomerDeviceRouterRecord = exports.isCustomerDeviceAtaRecord = exports.CustomerDeviceAtaRecord = exports.isCreditNoteRecord = exports.CreditNoteRecord = exports.isWorkOrderStatusUpdateRecord = exports.WorkOrderStatusUpdateRecord = exports.isWayleaveAuditRecord = exports.WayleaveAuditRecord = exports.isUserRecord = exports.UserRecord = exports.isTimeSlotRecord = exports.TimeSlotRecord = exports.isTeamRecord = exports.TeamRecord = exports.isSalesTerritoryRecord = exports.SalesTerritoryRecord = exports.isVoiceConfigurationRecord = exports.VoiceConfigurationRecord = exports.isOrderItemRecord = exports.OrderItemRecord = exports.isPushNotificationRecord = exports.PushNotificationRecord = exports.isPgWebhookRecord = exports.PgWebhookRecord = exports.isPgWebhookAttemptRecord = exports.PgWebhookAttemptRecord = exports.isPgAccountValidationRecord = exports.PgAccountValidationRecord = exports.isPgTransactionRecord = exports.PgTransactionRecord = exports.isPgSortCodeSubstitutionRecord = exports.PgSortCodeSubstitutionRecord = exports.isPgVocalinkRecord = exports.PgVocalinkRecord = exports.isPgDirectDebitFileRecord = exports.PgDirectDebitFileRecord = void 0;
|
|
18
|
+
exports.isCustomerPhonePortingRecord = exports.CustomerPhonePortingRecord = exports.isVisitRecord = exports.VisitRecord = exports.isServiceRecord = exports.ServiceRecord = exports.isCallRecord = exports.CallRecord = exports.isCallLegRecord = exports.CallLegRecord = exports.isScheduleSlotRecord = exports.ScheduleSlotRecord = exports.isPriceBookRecord = exports.PriceBookRecord = exports.isOverlayRealA55Record = exports.OverlayRealA55Record = exports.isOfferRecord = exports.OfferRecord = exports.isServiceAppointmentRecord = exports.ServiceAppointmentRecord = void 0;
|
|
19
19
|
var OrderRecord_1 = require("./OrderRecord");
|
|
20
20
|
Object.defineProperty(exports, "OrderRecord", { enumerable: true, get: function () { return OrderRecord_1.OrderRecord; } });
|
|
21
21
|
Object.defineProperty(exports, "isOrderRecord", { enumerable: true, get: function () { return OrderRecord_1.isOrderRecord; } });
|
|
@@ -280,6 +280,9 @@ Object.defineProperty(exports, "isTeamRecord", { enumerable: true, get: function
|
|
|
280
280
|
var TimeSlotRecord_1 = require("./TimeSlotRecord");
|
|
281
281
|
Object.defineProperty(exports, "TimeSlotRecord", { enumerable: true, get: function () { return TimeSlotRecord_1.TimeSlotRecord; } });
|
|
282
282
|
Object.defineProperty(exports, "isTimeSlotRecord", { enumerable: true, get: function () { return TimeSlotRecord_1.isTimeSlotRecord; } });
|
|
283
|
+
var UserRecord_1 = require("./UserRecord");
|
|
284
|
+
Object.defineProperty(exports, "UserRecord", { enumerable: true, get: function () { return UserRecord_1.UserRecord; } });
|
|
285
|
+
Object.defineProperty(exports, "isUserRecord", { enumerable: true, get: function () { return UserRecord_1.isUserRecord; } });
|
|
283
286
|
var WayleaveAuditRecord_1 = require("./WayleaveAuditRecord");
|
|
284
287
|
Object.defineProperty(exports, "WayleaveAuditRecord", { enumerable: true, get: function () { return WayleaveAuditRecord_1.WayleaveAuditRecord; } });
|
|
285
288
|
Object.defineProperty(exports, "isWayleaveAuditRecord", { enumerable: true, get: function () { return WayleaveAuditRecord_1.isWayleaveAuditRecord; } });
|
|
@@ -337,9 +340,6 @@ Object.defineProperty(exports, "isCallRecord", { enumerable: true, get: function
|
|
|
337
340
|
var ServiceRecord_1 = require("./ServiceRecord");
|
|
338
341
|
Object.defineProperty(exports, "ServiceRecord", { enumerable: true, get: function () { return ServiceRecord_1.ServiceRecord; } });
|
|
339
342
|
Object.defineProperty(exports, "isServiceRecord", { enumerable: true, get: function () { return ServiceRecord_1.isServiceRecord; } });
|
|
340
|
-
var UserRecord_1 = require("./UserRecord");
|
|
341
|
-
Object.defineProperty(exports, "UserRecord", { enumerable: true, get: function () { return UserRecord_1.UserRecord; } });
|
|
342
|
-
Object.defineProperty(exports, "isUserRecord", { enumerable: true, get: function () { return UserRecord_1.isUserRecord; } });
|
|
343
343
|
var VisitRecord_1 = require("./VisitRecord");
|
|
344
344
|
Object.defineProperty(exports, "VisitRecord", { enumerable: true, get: function () { return VisitRecord_1.VisitRecord; } });
|
|
345
345
|
Object.defineProperty(exports, "isVisitRecord", { enumerable: true, get: function () { return VisitRecord_1.isVisitRecord; } });
|