@d19n/youfibre-odin-sdk 2.0.169 → 2.0.170
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 +2 -1
- package/dist/actions-v2/UpdateAgentCallLegOnOutboundCallEndDto.d.ts +73 -0
- package/dist/actions-v2/UpdateAgentCallLegOnOutboundCallEndDto.js +56 -0
- package/dist/api-sdk-v2/OfferApi.d.ts +8 -8
- package/dist/api-sdk-v2/OfferApi.js +22 -22
- package/dist/db-sdk-v2/FileDb.d.ts +122 -122
- package/dist/db-sdk-v2/FileDb.js +247 -247
- package/dist/db-sdk-v2/OfferDb.d.ts +8 -8
- package/dist/db-sdk-v2/OfferDb.js +22 -22
- package/dist/entities-v2/WorkOrder.d.ts +98 -0
- package/dist/entities-v2/WorkOrder.js +2 -0
- package/dist/records-v2/CallLegRecord.d.ts +27 -0
- package/dist/records-v2/CallLegRecord.js +29 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -354,7 +354,7 @@ This SDK includes **166** entities across **12** modules.
|
|
|
354
354
|
|
|
355
355
|
## Actions
|
|
356
356
|
|
|
357
|
-
This SDK includes **
|
|
357
|
+
This SDK includes **683** actions.
|
|
358
358
|
|
|
359
359
|
### Action Types
|
|
360
360
|
|
|
@@ -1209,6 +1209,7 @@ This SDK includes **682** actions.
|
|
|
1209
1209
|
| `UpdateAgentCallLegOnIncomingCallNoAnswer` | UPDATE | k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnIncomingCallNoAnswer |
|
|
1210
1210
|
| `UpdateAgentCallLegOnIncomingCallRinging` | UPDATE | k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnIncomingCallRinging |
|
|
1211
1211
|
| `UpdateAgentCallLegOnOutboundCallAnswered` | UPDATE | k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundCallAnswered |
|
|
1212
|
+
| `UpdateAgentCallLegOnOutboundCallEnd` | UPDATE | k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundCallEnd |
|
|
1212
1213
|
| `UpdateAgentCallLegOnOutboundCallRinging` | UPDATE | k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundCallRinging |
|
|
1213
1214
|
| `UpdateAgentCallLegOnOutboundDialAction` | UPDATE | k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundDialAction |
|
|
1214
1215
|
| `UpdateCall` | UPDATE | k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateCall |
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UpdateAgentCallLegOnOutboundCallEnd Action DTO
|
|
3
|
+
*
|
|
4
|
+
* Update agent call leg on outbound call end
|
|
5
|
+
*
|
|
6
|
+
* @module NotificationModule
|
|
7
|
+
* @entity CallLeg
|
|
8
|
+
* @actionKey UpdateAgentCallLegOnOutboundCallEnd
|
|
9
|
+
* @event k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundCallEnd
|
|
10
|
+
*
|
|
11
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
12
|
+
*/
|
|
13
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
14
|
+
/**
|
|
15
|
+
* RabbitMQ message payload for UpdateAgentCallLegOnOutboundCallEnd updated events
|
|
16
|
+
*
|
|
17
|
+
* @event k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundCallEnd
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdateAgentCallLegOnOutboundCallEndMessage extends OdinRecordUpdatedEvent<UpdateAgentCallLegOnOutboundCallEndDto, UpdateAgentCallLegOnOutboundCallEndProperties> {
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Properties for UpdateAgentCallLegOnOutboundCallEnd action
|
|
23
|
+
*
|
|
24
|
+
* @property Required fields: 1
|
|
25
|
+
* @property Optional fields: 0
|
|
26
|
+
*/
|
|
27
|
+
export interface UpdateAgentCallLegOnOutboundCallEndProperties {
|
|
28
|
+
/**
|
|
29
|
+
* EndedAt
|
|
30
|
+
*
|
|
31
|
+
* Data field for CallLeg records. Used by Communications team.
|
|
32
|
+
* @type {DATE_TIME}
|
|
33
|
+
* @required
|
|
34
|
+
*/
|
|
35
|
+
EndedAt: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* UpdateAgentCallLegOnOutboundCallEnd
|
|
39
|
+
*
|
|
40
|
+
* Update agent call leg on outbound call end
|
|
41
|
+
*
|
|
42
|
+
* @actionType UPDATE - Updates an existing CallLeg record
|
|
43
|
+
* @module NotificationModule
|
|
44
|
+
* @entity CallLeg
|
|
45
|
+
* @event k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundCallEnd
|
|
46
|
+
* @permission schema.action.updateagentcalllegonoutboundcallend.trigger
|
|
47
|
+
* @benchmark This action is tracked for performance benchmarks
|
|
48
|
+
*/
|
|
49
|
+
export declare class UpdateAgentCallLegOnOutboundCallEndDto extends OdinRecordUpdateDto<UpdateAgentCallLegOnOutboundCallEndProperties> {
|
|
50
|
+
/** Used by SDK generators to identify action type */
|
|
51
|
+
static readonly ACTION_TYPE = "UPDATE";
|
|
52
|
+
static readonly ACTION_KEY = "UpdateAgentCallLegOnOutboundCallEnd";
|
|
53
|
+
static readonly MODULE_NAME = "NotificationModule";
|
|
54
|
+
static readonly ENTITIES: string[];
|
|
55
|
+
static readonly EVENT_NAME = "k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundCallEnd";
|
|
56
|
+
static readonly PERMISSION = "schema.action.updateagentcalllegonoutboundcallend.trigger";
|
|
57
|
+
/** Step metadata - entity this action targets */
|
|
58
|
+
static readonly STEP_ENTITY = "NotificationModule:CallLeg";
|
|
59
|
+
static readonly STEP_SCHEMA_ID = "75c59745-35fb-44b9-b3f2-7563101fdcec";
|
|
60
|
+
static readonly STEP_SCHEMA_ACTION_ID = "622b8bf3-5d9b-41ac-ab48-82bbcbd1a1ab";
|
|
61
|
+
static readonly AUTO_LINK_PARENT = false;
|
|
62
|
+
readonly actionName: string;
|
|
63
|
+
readonly schemaActionId: string;
|
|
64
|
+
readonly entity: string;
|
|
65
|
+
constructor(record: OdinRecord<any> | {
|
|
66
|
+
id: string;
|
|
67
|
+
entity: string;
|
|
68
|
+
type?: string;
|
|
69
|
+
}, properties: UpdateAgentCallLegOnOutboundCallEndProperties, options?: {
|
|
70
|
+
journeyId?: string;
|
|
71
|
+
stageKey?: string;
|
|
72
|
+
});
|
|
73
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* UpdateAgentCallLegOnOutboundCallEnd Action DTO
|
|
4
|
+
*
|
|
5
|
+
* Update agent call leg on outbound call end
|
|
6
|
+
*
|
|
7
|
+
* @module NotificationModule
|
|
8
|
+
* @entity CallLeg
|
|
9
|
+
* @actionKey UpdateAgentCallLegOnOutboundCallEnd
|
|
10
|
+
* @event k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundCallEnd
|
|
11
|
+
*
|
|
12
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.UpdateAgentCallLegOnOutboundCallEndDto = void 0;
|
|
16
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
17
|
+
/**
|
|
18
|
+
* UpdateAgentCallLegOnOutboundCallEnd
|
|
19
|
+
*
|
|
20
|
+
* Update agent call leg on outbound call end
|
|
21
|
+
*
|
|
22
|
+
* @actionType UPDATE - Updates an existing CallLeg record
|
|
23
|
+
* @module NotificationModule
|
|
24
|
+
* @entity CallLeg
|
|
25
|
+
* @event k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundCallEnd
|
|
26
|
+
* @permission schema.action.updateagentcalllegonoutboundcallend.trigger
|
|
27
|
+
* @benchmark This action is tracked for performance benchmarks
|
|
28
|
+
*/
|
|
29
|
+
class UpdateAgentCallLegOnOutboundCallEndDto extends core_1.OdinRecordUpdateDto {
|
|
30
|
+
constructor(record, properties, options) {
|
|
31
|
+
super({
|
|
32
|
+
id: record.id,
|
|
33
|
+
entity: record.entity,
|
|
34
|
+
type: record.type,
|
|
35
|
+
properties,
|
|
36
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
37
|
+
stageKey: options === null || options === void 0 ? void 0 : options.stageKey,
|
|
38
|
+
});
|
|
39
|
+
this.actionName = 'UpdateAgentCallLegOnOutboundCallEnd';
|
|
40
|
+
this.schemaActionId = '622b8bf3-5d9b-41ac-ab48-82bbcbd1a1ab';
|
|
41
|
+
this.entity = 'NotificationModule:CallLeg';
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.UpdateAgentCallLegOnOutboundCallEndDto = UpdateAgentCallLegOnOutboundCallEndDto;
|
|
45
|
+
/** Used by SDK generators to identify action type */
|
|
46
|
+
UpdateAgentCallLegOnOutboundCallEndDto.ACTION_TYPE = 'UPDATE';
|
|
47
|
+
UpdateAgentCallLegOnOutboundCallEndDto.ACTION_KEY = 'UpdateAgentCallLegOnOutboundCallEnd';
|
|
48
|
+
UpdateAgentCallLegOnOutboundCallEndDto.MODULE_NAME = 'NotificationModule';
|
|
49
|
+
UpdateAgentCallLegOnOutboundCallEndDto.ENTITIES = ['CallLeg'];
|
|
50
|
+
UpdateAgentCallLegOnOutboundCallEndDto.EVENT_NAME = 'k1.t-hEOJjsDb.NotificationModule.CallLeg.Update.UpdateAgentCallLegOnOutboundCallEnd';
|
|
51
|
+
UpdateAgentCallLegOnOutboundCallEndDto.PERMISSION = 'schema.action.updateagentcalllegonoutboundcallend.trigger';
|
|
52
|
+
/** Step metadata - entity this action targets */
|
|
53
|
+
UpdateAgentCallLegOnOutboundCallEndDto.STEP_ENTITY = 'NotificationModule:CallLeg';
|
|
54
|
+
UpdateAgentCallLegOnOutboundCallEndDto.STEP_SCHEMA_ID = '75c59745-35fb-44b9-b3f2-7563101fdcec';
|
|
55
|
+
UpdateAgentCallLegOnOutboundCallEndDto.STEP_SCHEMA_ACTION_ID = '622b8bf3-5d9b-41ac-ab48-82bbcbd1a1ab';
|
|
56
|
+
UpdateAgentCallLegOnOutboundCallEndDto.AUTO_LINK_PARENT = false;
|
|
@@ -17,19 +17,19 @@ export declare class OfferApi extends ApiProvider {
|
|
|
17
17
|
private readonly moduleName;
|
|
18
18
|
private readonly entityName;
|
|
19
19
|
private sourceRecord;
|
|
20
|
-
private
|
|
21
|
-
private _orderitem__offer?;
|
|
22
|
-
private _offer__offer?;
|
|
23
|
-
private _pricebook__offer?;
|
|
20
|
+
private _lead?;
|
|
24
21
|
private _discount?;
|
|
22
|
+
private _orderitem?;
|
|
25
23
|
private _product?;
|
|
24
|
+
private _offer?;
|
|
25
|
+
private _pricebook?;
|
|
26
26
|
constructor(authParams?: OauthParams, authToken?: string);
|
|
27
|
-
get
|
|
28
|
-
get orderitem__offer(): ApiRecordLinkManager;
|
|
29
|
-
get offer__offer(): ApiRecordLinkManager;
|
|
30
|
-
get pricebook__offer(): ApiRecordLinkManager;
|
|
27
|
+
get lead(): ApiRecordLinkManager;
|
|
31
28
|
get discount(): ApiRecordLinkManager;
|
|
29
|
+
get orderitem(): ApiRecordLinkManager;
|
|
32
30
|
get product(): ApiRecordLinkManager;
|
|
31
|
+
get offer(): ApiRecordLinkManager;
|
|
32
|
+
get pricebook(): ApiRecordLinkManager;
|
|
33
33
|
setRecord(sourceRecord: any): void;
|
|
34
34
|
schema(): Promise<import("@d19n/odin-types/dist/core").OdinSchema>;
|
|
35
35
|
search(params: Partial<OdinSearchV2>): Promise<import("@d19n/odin-sdk-generator/dist/odin-sdk-types").OdinSearchResponse<import("@d19n/odin-types/dist/core").OdinRecord<OfferProperties>>>;
|
|
@@ -33,29 +33,11 @@ class OfferApi extends api_provider_1.ApiProvider {
|
|
|
33
33
|
// LAZY-LOADED LINK MANAGERS (Public Getters)
|
|
34
34
|
// ============================================
|
|
35
35
|
// Usage remains identical: api.address.list(recordId)
|
|
36
|
-
get
|
|
37
|
-
if (!this.
|
|
38
|
-
this.
|
|
36
|
+
get lead() {
|
|
37
|
+
if (!this._lead) {
|
|
38
|
+
this._lead = new api_record_link_manager_1.ApiRecordLinkManager(this.authParams, 'ProductModule:Offer', 'CrmModule:Lead', 'Lead__Offer');
|
|
39
39
|
}
|
|
40
|
-
return this.
|
|
41
|
-
}
|
|
42
|
-
get orderitem__offer() {
|
|
43
|
-
if (!this._orderitem__offer) {
|
|
44
|
-
this._orderitem__offer = new api_record_link_manager_1.ApiRecordLinkManager(this.authParams, 'OrderModule:OrderItem', 'ProductModule:Offer', 'OrderItem__Offer');
|
|
45
|
-
}
|
|
46
|
-
return this._orderitem__offer;
|
|
47
|
-
}
|
|
48
|
-
get offer__offer() {
|
|
49
|
-
if (!this._offer__offer) {
|
|
50
|
-
this._offer__offer = new api_record_link_manager_1.ApiRecordLinkManager(this.authParams, 'ProductModule:Offer', 'ProductModule:Offer', 'Offer__Offer');
|
|
51
|
-
}
|
|
52
|
-
return this._offer__offer;
|
|
53
|
-
}
|
|
54
|
-
get pricebook__offer() {
|
|
55
|
-
if (!this._pricebook__offer) {
|
|
56
|
-
this._pricebook__offer = new api_record_link_manager_1.ApiRecordLinkManager(this.authParams, 'ProductModule:PriceBook', 'ProductModule:Offer', 'PriceBook__Offer');
|
|
57
|
-
}
|
|
58
|
-
return this._pricebook__offer;
|
|
40
|
+
return this._lead;
|
|
59
41
|
}
|
|
60
42
|
get discount() {
|
|
61
43
|
if (!this._discount) {
|
|
@@ -63,12 +45,30 @@ class OfferApi extends api_provider_1.ApiProvider {
|
|
|
63
45
|
}
|
|
64
46
|
return this._discount;
|
|
65
47
|
}
|
|
48
|
+
get orderitem() {
|
|
49
|
+
if (!this._orderitem) {
|
|
50
|
+
this._orderitem = new api_record_link_manager_1.ApiRecordLinkManager(this.authParams, 'ProductModule:Offer', 'OrderModule:OrderItem', 'OrderItem__Offer');
|
|
51
|
+
}
|
|
52
|
+
return this._orderitem;
|
|
53
|
+
}
|
|
66
54
|
get product() {
|
|
67
55
|
if (!this._product) {
|
|
68
56
|
this._product = new api_record_link_manager_1.ApiRecordLinkManager(this.authParams, 'ProductModule:Offer', 'ProductModule:Product', 'Offer__Product');
|
|
69
57
|
}
|
|
70
58
|
return this._product;
|
|
71
59
|
}
|
|
60
|
+
get offer() {
|
|
61
|
+
if (!this._offer) {
|
|
62
|
+
this._offer = new api_record_link_manager_1.ApiRecordLinkManager(this.authParams, 'ProductModule:Offer', 'ProductModule:Offer', 'Offer__Offer');
|
|
63
|
+
}
|
|
64
|
+
return this._offer;
|
|
65
|
+
}
|
|
66
|
+
get pricebook() {
|
|
67
|
+
if (!this._pricebook) {
|
|
68
|
+
this._pricebook = new api_record_link_manager_1.ApiRecordLinkManager(this.authParams, 'ProductModule:Offer', 'ProductModule:PriceBook', 'PriceBook__Offer');
|
|
69
|
+
}
|
|
70
|
+
return this._pricebook;
|
|
71
|
+
}
|
|
72
72
|
// ============================================
|
|
73
73
|
// STANDARD METHODS (Unchanged API)
|
|
74
74
|
// ============================================
|
|
@@ -21,131 +21,131 @@ export declare class FileDb extends DbProvider {
|
|
|
21
21
|
private readonly moduleName;
|
|
22
22
|
private readonly entityName;
|
|
23
23
|
private sourceRecord;
|
|
24
|
-
private
|
|
25
|
-
private
|
|
26
|
-
private
|
|
27
|
-
private
|
|
28
|
-
private
|
|
29
|
-
private
|
|
30
|
-
private
|
|
31
|
-
private
|
|
32
|
-
private
|
|
33
|
-
private
|
|
34
|
-
private
|
|
35
|
-
private
|
|
36
|
-
private
|
|
37
|
-
private
|
|
38
|
-
private
|
|
39
|
-
private
|
|
40
|
-
private
|
|
41
|
-
private
|
|
42
|
-
private
|
|
43
|
-
private
|
|
44
|
-
private
|
|
45
|
-
private
|
|
46
|
-
private
|
|
47
|
-
private
|
|
48
|
-
private
|
|
49
|
-
private
|
|
50
|
-
private
|
|
51
|
-
private
|
|
52
|
-
private
|
|
53
|
-
private
|
|
54
|
-
private
|
|
55
|
-
private
|
|
56
|
-
private
|
|
57
|
-
private
|
|
58
|
-
private
|
|
24
|
+
private _servicevisitaudit?;
|
|
25
|
+
private _blockagea55?;
|
|
26
|
+
private _netomniaftth2stageinstallaudit?;
|
|
27
|
+
private _netomniaftth1stageinstallaudit?;
|
|
28
|
+
private _overlayreala55?;
|
|
29
|
+
private _appointment?;
|
|
30
|
+
private _ugexternalaudit?;
|
|
31
|
+
private _billingrequest?;
|
|
32
|
+
private _transaction?;
|
|
33
|
+
private _creditnote?;
|
|
34
|
+
private _address?;
|
|
35
|
+
private _changereason?;
|
|
36
|
+
private _discount?;
|
|
37
|
+
private _paymentmethodrefund?;
|
|
38
|
+
private _serviceappointment?;
|
|
39
|
+
private _customerdevicerouter?;
|
|
40
|
+
private _visit?;
|
|
41
|
+
private _fingerprint?;
|
|
42
|
+
private _yftoolaudit?;
|
|
43
|
+
private _wayleaveaudit?;
|
|
44
|
+
private _workorder?;
|
|
45
|
+
private _orderitem?;
|
|
46
|
+
private _internalinstallaudit?;
|
|
47
|
+
private _knowledgearticle?;
|
|
48
|
+
private _case?;
|
|
49
|
+
private _activity?;
|
|
50
|
+
private _netomniaftthservicevisitsheet?;
|
|
51
|
+
private _yfstockcount?;
|
|
52
|
+
private _onetouchswitch?;
|
|
53
|
+
private _remediationrequiredreason?;
|
|
54
|
+
private _invoice?;
|
|
55
|
+
private _yfvanaudit?;
|
|
56
|
+
private _uginstallationaudit?;
|
|
57
|
+
private _ohinstallationaudit?;
|
|
58
|
+
private _ugauditofinstallation?;
|
|
59
|
+
private _file__note?;
|
|
59
60
|
private _note__file?;
|
|
60
|
-
private
|
|
61
|
-
private
|
|
62
|
-
private
|
|
63
|
-
private
|
|
64
|
-
private
|
|
65
|
-
private
|
|
66
|
-
private
|
|
67
|
-
private
|
|
68
|
-
private
|
|
69
|
-
private
|
|
70
|
-
private
|
|
71
|
-
private
|
|
72
|
-
private
|
|
73
|
-
private
|
|
74
|
-
private
|
|
75
|
-
private
|
|
76
|
-
private
|
|
77
|
-
private
|
|
78
|
-
private
|
|
79
|
-
private
|
|
80
|
-
private
|
|
81
|
-
private
|
|
82
|
-
private
|
|
83
|
-
private
|
|
84
|
-
private
|
|
85
|
-
private _note?;
|
|
61
|
+
private _yfequipmentcollection?;
|
|
62
|
+
private _lead?;
|
|
63
|
+
private _account?;
|
|
64
|
+
private _paymentmethod?;
|
|
65
|
+
private _sweepermaintenanceaudit?;
|
|
66
|
+
private _blockagereporta55?;
|
|
67
|
+
private _ohauditofinstallation?;
|
|
68
|
+
private _ohinprogressaudit?;
|
|
69
|
+
private _contractbuyout?;
|
|
70
|
+
private _sitespecificriskassessmentoutcomeform?;
|
|
71
|
+
private _remediationoutcomeform?;
|
|
72
|
+
private _order?;
|
|
73
|
+
private _call?;
|
|
74
|
+
private _ohexternalaudit?;
|
|
75
|
+
private _customerdeviceont?;
|
|
76
|
+
private _yffieldservicevisit?;
|
|
77
|
+
private _billingadjustment?;
|
|
78
|
+
private _contact?;
|
|
79
|
+
private _message?;
|
|
80
|
+
private _netomniainstallverification?;
|
|
81
|
+
private _email?;
|
|
82
|
+
private _ugretroaudit?;
|
|
83
|
+
private _ohretroaudit?;
|
|
84
|
+
private _uginprogressaudit?;
|
|
85
|
+
private _pgdirectdebitfile?;
|
|
86
86
|
constructor(principal: any, dbService: any, defaultOptions?: DbProviderOptions);
|
|
87
|
-
get
|
|
88
|
-
get
|
|
89
|
-
get
|
|
90
|
-
get
|
|
91
|
-
get
|
|
92
|
-
get
|
|
93
|
-
get
|
|
94
|
-
get
|
|
95
|
-
get
|
|
96
|
-
get
|
|
97
|
-
get
|
|
98
|
-
get
|
|
99
|
-
get
|
|
100
|
-
get
|
|
101
|
-
get
|
|
102
|
-
get
|
|
103
|
-
get
|
|
104
|
-
get
|
|
105
|
-
get
|
|
106
|
-
get
|
|
107
|
-
get
|
|
108
|
-
get
|
|
109
|
-
get
|
|
110
|
-
get
|
|
111
|
-
get
|
|
112
|
-
get
|
|
113
|
-
get
|
|
114
|
-
get
|
|
115
|
-
get
|
|
116
|
-
get
|
|
117
|
-
get
|
|
118
|
-
get
|
|
119
|
-
get
|
|
120
|
-
get
|
|
121
|
-
get
|
|
87
|
+
get servicevisitaudit(): DbRecordLinkManager;
|
|
88
|
+
get blockagea55(): DbRecordLinkManager;
|
|
89
|
+
get netomniaftth2stageinstallaudit(): DbRecordLinkManager;
|
|
90
|
+
get netomniaftth1stageinstallaudit(): DbRecordLinkManager;
|
|
91
|
+
get overlayreala55(): DbRecordLinkManager;
|
|
92
|
+
get appointment(): DbRecordLinkManager;
|
|
93
|
+
get ugexternalaudit(): DbRecordLinkManager;
|
|
94
|
+
get billingrequest(): DbRecordLinkManager;
|
|
95
|
+
get transaction(): DbRecordLinkManager;
|
|
96
|
+
get creditnote(): DbRecordLinkManager;
|
|
97
|
+
get address(): DbRecordLinkManager;
|
|
98
|
+
get changereason(): DbRecordLinkManager;
|
|
99
|
+
get discount(): DbRecordLinkManager;
|
|
100
|
+
get paymentmethodrefund(): DbRecordLinkManager;
|
|
101
|
+
get serviceappointment(): DbRecordLinkManager;
|
|
102
|
+
get customerdevicerouter(): DbRecordLinkManager;
|
|
103
|
+
get visit(): DbRecordLinkManager;
|
|
104
|
+
get fingerprint(): DbRecordLinkManager;
|
|
105
|
+
get yftoolaudit(): DbRecordLinkManager;
|
|
106
|
+
get wayleaveaudit(): DbRecordLinkManager;
|
|
107
|
+
get workorder(): DbRecordLinkManager;
|
|
108
|
+
get orderitem(): DbRecordLinkManager;
|
|
109
|
+
get internalinstallaudit(): DbRecordLinkManager;
|
|
110
|
+
get knowledgearticle(): DbRecordLinkManager;
|
|
111
|
+
get case(): DbRecordLinkManager;
|
|
112
|
+
get activity(): DbRecordLinkManager;
|
|
113
|
+
get netomniaftthservicevisitsheet(): DbRecordLinkManager;
|
|
114
|
+
get yfstockcount(): DbRecordLinkManager;
|
|
115
|
+
get onetouchswitch(): DbRecordLinkManager;
|
|
116
|
+
get remediationrequiredreason(): DbRecordLinkManager;
|
|
117
|
+
get invoice(): DbRecordLinkManager;
|
|
118
|
+
get yfvanaudit(): DbRecordLinkManager;
|
|
119
|
+
get uginstallationaudit(): DbRecordLinkManager;
|
|
120
|
+
get ohinstallationaudit(): DbRecordLinkManager;
|
|
121
|
+
get ugauditofinstallation(): DbRecordLinkManager;
|
|
122
|
+
get file__note(): DbRecordLinkManager;
|
|
122
123
|
get note__file(): DbRecordLinkManager;
|
|
123
|
-
get
|
|
124
|
-
get
|
|
125
|
-
get
|
|
126
|
-
get
|
|
127
|
-
get
|
|
128
|
-
get
|
|
129
|
-
get
|
|
130
|
-
get
|
|
131
|
-
get
|
|
132
|
-
get
|
|
133
|
-
get
|
|
134
|
-
get
|
|
135
|
-
get
|
|
136
|
-
get
|
|
137
|
-
get
|
|
138
|
-
get
|
|
139
|
-
get
|
|
140
|
-
get
|
|
141
|
-
get
|
|
142
|
-
get
|
|
143
|
-
get
|
|
144
|
-
get
|
|
145
|
-
get
|
|
146
|
-
get
|
|
147
|
-
get
|
|
148
|
-
get note(): DbRecordLinkManager;
|
|
124
|
+
get yfequipmentcollection(): DbRecordLinkManager;
|
|
125
|
+
get lead(): DbRecordLinkManager;
|
|
126
|
+
get account(): DbRecordLinkManager;
|
|
127
|
+
get paymentmethod(): DbRecordLinkManager;
|
|
128
|
+
get sweepermaintenanceaudit(): DbRecordLinkManager;
|
|
129
|
+
get blockagereporta55(): DbRecordLinkManager;
|
|
130
|
+
get ohauditofinstallation(): DbRecordLinkManager;
|
|
131
|
+
get ohinprogressaudit(): DbRecordLinkManager;
|
|
132
|
+
get contractbuyout(): DbRecordLinkManager;
|
|
133
|
+
get sitespecificriskassessmentoutcomeform(): DbRecordLinkManager;
|
|
134
|
+
get remediationoutcomeform(): DbRecordLinkManager;
|
|
135
|
+
get order(): DbRecordLinkManager;
|
|
136
|
+
get call(): DbRecordLinkManager;
|
|
137
|
+
get ohexternalaudit(): DbRecordLinkManager;
|
|
138
|
+
get customerdeviceont(): DbRecordLinkManager;
|
|
139
|
+
get yffieldservicevisit(): DbRecordLinkManager;
|
|
140
|
+
get billingadjustment(): DbRecordLinkManager;
|
|
141
|
+
get contact(): DbRecordLinkManager;
|
|
142
|
+
get message(): DbRecordLinkManager;
|
|
143
|
+
get netomniainstallverification(): DbRecordLinkManager;
|
|
144
|
+
get email(): DbRecordLinkManager;
|
|
145
|
+
get ugretroaudit(): DbRecordLinkManager;
|
|
146
|
+
get ohretroaudit(): DbRecordLinkManager;
|
|
147
|
+
get uginprogressaudit(): DbRecordLinkManager;
|
|
148
|
+
get pgdirectdebitfile(): DbRecordLinkManager;
|
|
149
149
|
setRecord(sourceRecord: any): void;
|
|
150
150
|
/**
|
|
151
151
|
* Search records with manual pagination control
|