@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 CHANGED
@@ -354,7 +354,7 @@ This SDK includes **166** entities across **12** modules.
354
354
 
355
355
  ## Actions
356
356
 
357
- This SDK includes **682** actions.
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 _lead__offer?;
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 lead__offer(): ApiRecordLinkManager;
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 lead__offer() {
37
- if (!this._lead__offer) {
38
- this._lead__offer = new api_record_link_manager_1.ApiRecordLinkManager(this.authParams, 'CrmModule:Lead', 'ProductModule:Offer', 'Lead__Offer');
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._lead__offer;
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 _servicevisitaudit__file?;
25
- private _blockagea55_file?;
26
- private _netomniaftth2stageinstallaudit__file?;
27
- private _netomniaftth1stageinstallaudit__file?;
28
- private _overlayreala55_file?;
29
- private _appointment__file?;
30
- private _ugexternalaudit_file?;
31
- private _billingrequest__file?;
32
- private _transaction__file?;
33
- private _creditnote__file?;
34
- private _address__file?;
35
- private _changereason__file?;
36
- private _discount__file?;
37
- private _paymentmethodrefund__file?;
38
- private _serviceappointment__file?;
39
- private _customerdevicerouter__file?;
40
- private _visit__file?;
41
- private _fingerprint__file?;
42
- private _yftoolaudit_file?;
43
- private _wayleaveaudit_file?;
44
- private _workorder__file?;
45
- private _orderitem__file?;
46
- private _internalinstallaudit_file?;
47
- private _knowledgearticle__file?;
48
- private _case__file?;
49
- private _activity__file?;
50
- private _netomniaftthservicevisitsheet__file?;
51
- private _yfstockcount__file?;
52
- private _onetouchswitch_file?;
53
- private _remediationrequiredreason__file?;
54
- private _invoice__file?;
55
- private _yfvanaudit_file?;
56
- private _uginstallationaudit__file?;
57
- private _ohinstallationaudit__file?;
58
- private _ugauditofinstallation__file?;
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 _yfequipmentcollection__file?;
61
- private _lead__file?;
62
- private _account__file?;
63
- private _paymentmethod__file?;
64
- private _sweepermaintenanceaudit__file?;
65
- private _blockagereporta55__file?;
66
- private _ohauditofinstallation__file?;
67
- private _ohinprogressaudit_file?;
68
- private _contractbuyout__file?;
69
- private _sitespecificriskassessmentoutcomeform__file?;
70
- private _remediationoutcomeform_file?;
71
- private _order__file?;
72
- private _call__file?;
73
- private _ohexternalaudit_file?;
74
- private _customerdeviceont__file?;
75
- private _yffieldservicevisit__file?;
76
- private _billingadjustment__file?;
77
- private _contact__file?;
78
- private _message_file?;
79
- private _netomniainstallverification__file?;
80
- private _attachments?;
81
- private _ugretroaudit__file?;
82
- private _ohretroaudit__file?;
83
- private _uginprogressaudit_file?;
84
- private _pgdirectdebitfile__file?;
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 servicevisitaudit__file(): DbRecordLinkManager;
88
- get blockagea55_file(): DbRecordLinkManager;
89
- get netomniaftth2stageinstallaudit__file(): DbRecordLinkManager;
90
- get netomniaftth1stageinstallaudit__file(): DbRecordLinkManager;
91
- get overlayreala55_file(): DbRecordLinkManager;
92
- get appointment__file(): DbRecordLinkManager;
93
- get ugexternalaudit_file(): DbRecordLinkManager;
94
- get billingrequest__file(): DbRecordLinkManager;
95
- get transaction__file(): DbRecordLinkManager;
96
- get creditnote__file(): DbRecordLinkManager;
97
- get address__file(): DbRecordLinkManager;
98
- get changereason__file(): DbRecordLinkManager;
99
- get discount__file(): DbRecordLinkManager;
100
- get paymentmethodrefund__file(): DbRecordLinkManager;
101
- get serviceappointment__file(): DbRecordLinkManager;
102
- get customerdevicerouter__file(): DbRecordLinkManager;
103
- get visit__file(): DbRecordLinkManager;
104
- get fingerprint__file(): DbRecordLinkManager;
105
- get yftoolaudit_file(): DbRecordLinkManager;
106
- get wayleaveaudit_file(): DbRecordLinkManager;
107
- get workorder__file(): DbRecordLinkManager;
108
- get orderitem__file(): DbRecordLinkManager;
109
- get internalinstallaudit_file(): DbRecordLinkManager;
110
- get knowledgearticle__file(): DbRecordLinkManager;
111
- get case__file(): DbRecordLinkManager;
112
- get activity__file(): DbRecordLinkManager;
113
- get netomniaftthservicevisitsheet__file(): DbRecordLinkManager;
114
- get yfstockcount__file(): DbRecordLinkManager;
115
- get onetouchswitch_file(): DbRecordLinkManager;
116
- get remediationrequiredreason__file(): DbRecordLinkManager;
117
- get invoice__file(): DbRecordLinkManager;
118
- get yfvanaudit_file(): DbRecordLinkManager;
119
- get uginstallationaudit__file(): DbRecordLinkManager;
120
- get ohinstallationaudit__file(): DbRecordLinkManager;
121
- get ugauditofinstallation__file(): DbRecordLinkManager;
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 yfequipmentcollection__file(): DbRecordLinkManager;
124
- get lead__file(): DbRecordLinkManager;
125
- get account__file(): DbRecordLinkManager;
126
- get paymentmethod__file(): DbRecordLinkManager;
127
- get sweepermaintenanceaudit__file(): DbRecordLinkManager;
128
- get blockagereporta55__file(): DbRecordLinkManager;
129
- get ohauditofinstallation__file(): DbRecordLinkManager;
130
- get ohinprogressaudit_file(): DbRecordLinkManager;
131
- get contractbuyout__file(): DbRecordLinkManager;
132
- get sitespecificriskassessmentoutcomeform__file(): DbRecordLinkManager;
133
- get remediationoutcomeform_file(): DbRecordLinkManager;
134
- get order__file(): DbRecordLinkManager;
135
- get call__file(): DbRecordLinkManager;
136
- get ohexternalaudit_file(): DbRecordLinkManager;
137
- get customerdeviceont__file(): DbRecordLinkManager;
138
- get yffieldservicevisit__file(): DbRecordLinkManager;
139
- get billingadjustment__file(): DbRecordLinkManager;
140
- get contact__file(): DbRecordLinkManager;
141
- get message_file(): DbRecordLinkManager;
142
- get netomniainstallverification__file(): DbRecordLinkManager;
143
- get attachments(): DbRecordLinkManager;
144
- get ugretroaudit__file(): DbRecordLinkManager;
145
- get ohretroaudit__file(): DbRecordLinkManager;
146
- get uginprogressaudit_file(): DbRecordLinkManager;
147
- get pgdirectdebitfile__file(): DbRecordLinkManager;
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