@d19n/youfibre-odin-sdk 2.0.164 → 2.0.166
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/actions-v2/UpdateCallEventAfterProcessingDto.d.ts +3 -4
- 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/entities-v2/File.d.ts +0 -6
- package/dist/entities-v2/File.js +1 -5
- package/dist/entities-v2/TwilioCallEvent.d.ts +11 -0
- package/dist/entities-v2/TwilioCallEvent.js +8 -0
- package/package.json +1 -1
|
@@ -21,8 +21,8 @@ export interface UpdateCallEventAfterProcessingMessage extends OdinRecordUpdated
|
|
|
21
21
|
/**
|
|
22
22
|
* Properties for UpdateCallEventAfterProcessing action
|
|
23
23
|
*
|
|
24
|
-
* @property Required fields:
|
|
25
|
-
* @property Optional fields:
|
|
24
|
+
* @property Required fields: 2
|
|
25
|
+
* @property Optional fields: 3
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateCallEventAfterProcessingProperties {
|
|
28
28
|
/**
|
|
@@ -46,9 +46,8 @@ export interface UpdateCallEventAfterProcessingProperties {
|
|
|
46
46
|
*
|
|
47
47
|
* Title of twilio call event record
|
|
48
48
|
* @type {TEXT}
|
|
49
|
-
* @required
|
|
50
49
|
*/
|
|
51
|
-
Title
|
|
50
|
+
Title?: string | null;
|
|
52
51
|
/**
|
|
53
52
|
* CallId
|
|
54
53
|
*
|
|
@@ -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
|
|
59
|
-
private _file__note?;
|
|
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?;
|
|
60
59
|
private _note__file?;
|
|
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
|
|
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?;
|
|
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
|
|
122
|
-
get file__note(): DbRecordLinkManager;
|
|
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;
|
|
123
122
|
get note__file(): DbRecordLinkManager;
|
|
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
|
|
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;
|
|
149
149
|
setRecord(sourceRecord: any): void;
|
|
150
150
|
/**
|
|
151
151
|
* Search records with manual pagination control
|
package/dist/db-sdk-v2/FileDb.js
CHANGED
|
@@ -38,377 +38,377 @@ class FileDb extends db_provider_1.DbProvider {
|
|
|
38
38
|
// LAZY-LOADED LINK MANAGERS (Public Getters)
|
|
39
39
|
// ============================================
|
|
40
40
|
// Usage remains identical: db.address.list(recordId)
|
|
41
|
-
get
|
|
42
|
-
if (!this.
|
|
43
|
-
this.
|
|
41
|
+
get servicevisitaudit__file() {
|
|
42
|
+
if (!this._servicevisitaudit__file) {
|
|
43
|
+
this._servicevisitaudit__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:ServiceVisitAudit', 'SchemaModule:File', 'ServiceVisitAudit__File');
|
|
44
44
|
}
|
|
45
|
-
return this.
|
|
45
|
+
return this._servicevisitaudit__file;
|
|
46
46
|
}
|
|
47
|
-
get
|
|
48
|
-
if (!this.
|
|
49
|
-
this.
|
|
47
|
+
get blockagea55_file() {
|
|
48
|
+
if (!this._blockagea55_file) {
|
|
49
|
+
this._blockagea55_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:BlockageA55', 'SchemaModule:File', 'BlockageA55_File');
|
|
50
50
|
}
|
|
51
|
-
return this.
|
|
51
|
+
return this._blockagea55_file;
|
|
52
52
|
}
|
|
53
|
-
get
|
|
54
|
-
if (!this.
|
|
55
|
-
this.
|
|
53
|
+
get netomniaftth2stageinstallaudit__file() {
|
|
54
|
+
if (!this._netomniaftth2stageinstallaudit__file) {
|
|
55
|
+
this._netomniaftth2stageinstallaudit__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:NetomniaFtth2StageInstallAudit', 'SchemaModule:File', 'NetomniaFtth2StageInstallAudit__File');
|
|
56
56
|
}
|
|
57
|
-
return this.
|
|
57
|
+
return this._netomniaftth2stageinstallaudit__file;
|
|
58
58
|
}
|
|
59
|
-
get
|
|
60
|
-
if (!this.
|
|
61
|
-
this.
|
|
59
|
+
get netomniaftth1stageinstallaudit__file() {
|
|
60
|
+
if (!this._netomniaftth1stageinstallaudit__file) {
|
|
61
|
+
this._netomniaftth1stageinstallaudit__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:NetomniaFtth1StageInstallAudit', 'SchemaModule:File', 'NetomniaFtth1StageInstallAudit__File');
|
|
62
62
|
}
|
|
63
|
-
return this.
|
|
63
|
+
return this._netomniaftth1stageinstallaudit__file;
|
|
64
64
|
}
|
|
65
|
-
get
|
|
66
|
-
if (!this.
|
|
67
|
-
this.
|
|
65
|
+
get overlayreala55_file() {
|
|
66
|
+
if (!this._overlayreala55_file) {
|
|
67
|
+
this._overlayreala55_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:OverlayRealA55', 'SchemaModule:File', 'OverlayRealA55_File');
|
|
68
68
|
}
|
|
69
|
-
return this.
|
|
69
|
+
return this._overlayreala55_file;
|
|
70
70
|
}
|
|
71
|
-
get
|
|
72
|
-
if (!this.
|
|
73
|
-
this.
|
|
71
|
+
get appointment__file() {
|
|
72
|
+
if (!this._appointment__file) {
|
|
73
|
+
this._appointment__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'CrmModule:Appointment', 'SchemaModule:File', 'Appointment__File');
|
|
74
74
|
}
|
|
75
|
-
return this.
|
|
75
|
+
return this._appointment__file;
|
|
76
76
|
}
|
|
77
|
-
get
|
|
78
|
-
if (!this.
|
|
79
|
-
this.
|
|
77
|
+
get ugexternalaudit_file() {
|
|
78
|
+
if (!this._ugexternalaudit_file) {
|
|
79
|
+
this._ugexternalaudit_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:UgExternalAudit', 'SchemaModule:File', 'UgExternalAudit_File');
|
|
80
80
|
}
|
|
81
|
-
return this.
|
|
81
|
+
return this._ugexternalaudit_file;
|
|
82
82
|
}
|
|
83
|
-
get
|
|
84
|
-
if (!this.
|
|
85
|
-
this.
|
|
83
|
+
get billingrequest__file() {
|
|
84
|
+
if (!this._billingrequest__file) {
|
|
85
|
+
this._billingrequest__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'BillingModule:BillingRequest', 'SchemaModule:File', 'BillingRequest__File');
|
|
86
86
|
}
|
|
87
|
-
return this.
|
|
87
|
+
return this._billingrequest__file;
|
|
88
88
|
}
|
|
89
|
-
get
|
|
90
|
-
if (!this.
|
|
91
|
-
this.
|
|
89
|
+
get transaction__file() {
|
|
90
|
+
if (!this._transaction__file) {
|
|
91
|
+
this._transaction__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'BillingModule:Transaction', 'SchemaModule:File', 'Transaction__File');
|
|
92
92
|
}
|
|
93
|
-
return this.
|
|
93
|
+
return this._transaction__file;
|
|
94
94
|
}
|
|
95
|
-
get
|
|
96
|
-
if (!this.
|
|
97
|
-
this.
|
|
95
|
+
get creditnote__file() {
|
|
96
|
+
if (!this._creditnote__file) {
|
|
97
|
+
this._creditnote__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'BillingModule:CreditNote', 'SchemaModule:File', 'CreditNote__File');
|
|
98
98
|
}
|
|
99
|
-
return this.
|
|
99
|
+
return this._creditnote__file;
|
|
100
100
|
}
|
|
101
|
-
get
|
|
102
|
-
if (!this.
|
|
103
|
-
this.
|
|
101
|
+
get address__file() {
|
|
102
|
+
if (!this._address__file) {
|
|
103
|
+
this._address__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'CrmModule:Address', 'SchemaModule:File', 'Address__File');
|
|
104
104
|
}
|
|
105
|
-
return this.
|
|
105
|
+
return this._address__file;
|
|
106
106
|
}
|
|
107
|
-
get
|
|
108
|
-
if (!this.
|
|
109
|
-
this.
|
|
107
|
+
get changereason__file() {
|
|
108
|
+
if (!this._changereason__file) {
|
|
109
|
+
this._changereason__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:ChangeReason', 'SchemaModule:File', 'ChangeReason__File');
|
|
110
110
|
}
|
|
111
|
-
return this.
|
|
111
|
+
return this._changereason__file;
|
|
112
112
|
}
|
|
113
|
-
get
|
|
114
|
-
if (!this.
|
|
115
|
-
this.
|
|
113
|
+
get discount__file() {
|
|
114
|
+
if (!this._discount__file) {
|
|
115
|
+
this._discount__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'ProductModule:Discount', 'SchemaModule:File', 'Discount__File');
|
|
116
116
|
}
|
|
117
|
-
return this.
|
|
117
|
+
return this._discount__file;
|
|
118
118
|
}
|
|
119
|
-
get
|
|
120
|
-
if (!this.
|
|
121
|
-
this.
|
|
119
|
+
get paymentmethodrefund__file() {
|
|
120
|
+
if (!this._paymentmethodrefund__file) {
|
|
121
|
+
this._paymentmethodrefund__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'BillingModule:PaymentMethodRefund', 'SchemaModule:File', 'PaymentMethodRefund__File');
|
|
122
122
|
}
|
|
123
|
-
return this.
|
|
123
|
+
return this._paymentmethodrefund__file;
|
|
124
124
|
}
|
|
125
|
-
get
|
|
126
|
-
if (!this.
|
|
127
|
-
this.
|
|
125
|
+
get serviceappointment__file() {
|
|
126
|
+
if (!this._serviceappointment__file) {
|
|
127
|
+
this._serviceappointment__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:ServiceAppointment', 'SchemaModule:File', 'ServiceAppointment__File');
|
|
128
128
|
}
|
|
129
|
-
return this.
|
|
129
|
+
return this._serviceappointment__file;
|
|
130
130
|
}
|
|
131
|
-
get
|
|
132
|
-
if (!this.
|
|
133
|
-
this.
|
|
131
|
+
get customerdevicerouter__file() {
|
|
132
|
+
if (!this._customerdevicerouter__file) {
|
|
133
|
+
this._customerdevicerouter__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'ServiceModule:CustomerDeviceRouter', 'SchemaModule:File', 'CustomerDeviceRouter__File');
|
|
134
134
|
}
|
|
135
|
-
return this.
|
|
135
|
+
return this._customerdevicerouter__file;
|
|
136
136
|
}
|
|
137
|
-
get
|
|
138
|
-
if (!this.
|
|
139
|
-
this.
|
|
137
|
+
get visit__file() {
|
|
138
|
+
if (!this._visit__file) {
|
|
139
|
+
this._visit__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'CrmModule:Visit', 'SchemaModule:File', 'Visit__File');
|
|
140
140
|
}
|
|
141
|
-
return this.
|
|
141
|
+
return this._visit__file;
|
|
142
142
|
}
|
|
143
|
-
get
|
|
144
|
-
if (!this.
|
|
145
|
-
this.
|
|
143
|
+
get fingerprint__file() {
|
|
144
|
+
if (!this._fingerprint__file) {
|
|
145
|
+
this._fingerprint__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'CrmModule:Fingerprint', 'SchemaModule:File', 'Fingerprint__File');
|
|
146
146
|
}
|
|
147
|
-
return this.
|
|
147
|
+
return this._fingerprint__file;
|
|
148
148
|
}
|
|
149
|
-
get
|
|
150
|
-
if (!this.
|
|
151
|
-
this.
|
|
149
|
+
get yftoolaudit_file() {
|
|
150
|
+
if (!this._yftoolaudit_file) {
|
|
151
|
+
this._yftoolaudit_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:YfToolAudit', 'SchemaModule:File', 'YfToolAudit_File');
|
|
152
152
|
}
|
|
153
|
-
return this.
|
|
153
|
+
return this._yftoolaudit_file;
|
|
154
154
|
}
|
|
155
|
-
get
|
|
156
|
-
if (!this.
|
|
157
|
-
this.
|
|
155
|
+
get wayleaveaudit_file() {
|
|
156
|
+
if (!this._wayleaveaudit_file) {
|
|
157
|
+
this._wayleaveaudit_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:WayleaveAudit', 'SchemaModule:File', 'WayleaveAudit_File');
|
|
158
158
|
}
|
|
159
|
-
return this.
|
|
159
|
+
return this._wayleaveaudit_file;
|
|
160
160
|
}
|
|
161
|
-
get
|
|
162
|
-
if (!this.
|
|
163
|
-
this.
|
|
161
|
+
get workorder__file() {
|
|
162
|
+
if (!this._workorder__file) {
|
|
163
|
+
this._workorder__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:WorkOrder', 'SchemaModule:File', 'WorkOrder__File');
|
|
164
164
|
}
|
|
165
|
-
return this.
|
|
165
|
+
return this._workorder__file;
|
|
166
166
|
}
|
|
167
|
-
get
|
|
168
|
-
if (!this.
|
|
169
|
-
this.
|
|
167
|
+
get orderitem__file() {
|
|
168
|
+
if (!this._orderitem__file) {
|
|
169
|
+
this._orderitem__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'OrderModule:OrderItem', 'SchemaModule:File', 'OrderItem__File');
|
|
170
170
|
}
|
|
171
|
-
return this.
|
|
171
|
+
return this._orderitem__file;
|
|
172
172
|
}
|
|
173
|
-
get
|
|
174
|
-
if (!this.
|
|
175
|
-
this.
|
|
173
|
+
get internalinstallaudit_file() {
|
|
174
|
+
if (!this._internalinstallaudit_file) {
|
|
175
|
+
this._internalinstallaudit_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:InternalInstallAudit', 'SchemaModule:File', 'InternalInstallAudit_File');
|
|
176
176
|
}
|
|
177
|
-
return this.
|
|
177
|
+
return this._internalinstallaudit_file;
|
|
178
178
|
}
|
|
179
|
-
get
|
|
180
|
-
if (!this.
|
|
181
|
-
this.
|
|
179
|
+
get knowledgearticle__file() {
|
|
180
|
+
if (!this._knowledgearticle__file) {
|
|
181
|
+
this._knowledgearticle__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'SupportModule:KnowledgeArticle', 'SchemaModule:File', 'KnowledgeArticle__File');
|
|
182
182
|
}
|
|
183
|
-
return this.
|
|
183
|
+
return this._knowledgearticle__file;
|
|
184
184
|
}
|
|
185
|
-
get
|
|
186
|
-
if (!this.
|
|
187
|
-
this.
|
|
185
|
+
get case__file() {
|
|
186
|
+
if (!this._case__file) {
|
|
187
|
+
this._case__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'SupportModule:Case', 'SchemaModule:File', 'Case__File');
|
|
188
188
|
}
|
|
189
|
-
return this.
|
|
189
|
+
return this._case__file;
|
|
190
190
|
}
|
|
191
|
-
get
|
|
192
|
-
if (!this.
|
|
193
|
-
this.
|
|
191
|
+
get activity__file() {
|
|
192
|
+
if (!this._activity__file) {
|
|
193
|
+
this._activity__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'SchemaModule:Activity', 'SchemaModule:File', 'Activity__File');
|
|
194
194
|
}
|
|
195
|
-
return this.
|
|
195
|
+
return this._activity__file;
|
|
196
196
|
}
|
|
197
|
-
get
|
|
198
|
-
if (!this.
|
|
199
|
-
this.
|
|
197
|
+
get netomniaftthservicevisitsheet__file() {
|
|
198
|
+
if (!this._netomniaftthservicevisitsheet__file) {
|
|
199
|
+
this._netomniaftthservicevisitsheet__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:NetomniaFtthServiceVisitSheet', 'SchemaModule:File', 'NetomniaFtthServiceVisitSheet__File');
|
|
200
200
|
}
|
|
201
|
-
return this.
|
|
201
|
+
return this._netomniaftthservicevisitsheet__file;
|
|
202
202
|
}
|
|
203
|
-
get
|
|
204
|
-
if (!this.
|
|
205
|
-
this.
|
|
203
|
+
get yfstockcount__file() {
|
|
204
|
+
if (!this._yfstockcount__file) {
|
|
205
|
+
this._yfstockcount__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:YfStockCount', 'SchemaModule:File', 'YfStockCount__File');
|
|
206
206
|
}
|
|
207
|
-
return this.
|
|
207
|
+
return this._yfstockcount__file;
|
|
208
208
|
}
|
|
209
|
-
get
|
|
210
|
-
if (!this.
|
|
211
|
-
this.
|
|
209
|
+
get onetouchswitch_file() {
|
|
210
|
+
if (!this._onetouchswitch_file) {
|
|
211
|
+
this._onetouchswitch_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'OrderModule:OneTouchSwitch', 'SchemaModule:File', 'OneTouchSwitch_File');
|
|
212
212
|
}
|
|
213
|
-
return this.
|
|
213
|
+
return this._onetouchswitch_file;
|
|
214
214
|
}
|
|
215
|
-
get
|
|
216
|
-
if (!this.
|
|
217
|
-
this.
|
|
215
|
+
get remediationrequiredreason__file() {
|
|
216
|
+
if (!this._remediationrequiredreason__file) {
|
|
217
|
+
this._remediationrequiredreason__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:RemediationRequiredReason', 'SchemaModule:File', 'RemediationRequiredReason__File');
|
|
218
218
|
}
|
|
219
|
-
return this.
|
|
219
|
+
return this._remediationrequiredreason__file;
|
|
220
220
|
}
|
|
221
|
-
get
|
|
222
|
-
if (!this.
|
|
223
|
-
this.
|
|
221
|
+
get invoice__file() {
|
|
222
|
+
if (!this._invoice__file) {
|
|
223
|
+
this._invoice__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'BillingModule:Invoice', 'SchemaModule:File', 'Invoice__File');
|
|
224
224
|
}
|
|
225
|
-
return this.
|
|
225
|
+
return this._invoice__file;
|
|
226
226
|
}
|
|
227
|
-
get
|
|
228
|
-
if (!this.
|
|
229
|
-
this.
|
|
227
|
+
get yfvanaudit_file() {
|
|
228
|
+
if (!this._yfvanaudit_file) {
|
|
229
|
+
this._yfvanaudit_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:YfVanAudit', 'SchemaModule:File', 'YfVanAudit_File');
|
|
230
230
|
}
|
|
231
|
-
return this.
|
|
231
|
+
return this._yfvanaudit_file;
|
|
232
232
|
}
|
|
233
|
-
get
|
|
234
|
-
if (!this.
|
|
235
|
-
this.
|
|
233
|
+
get uginstallationaudit__file() {
|
|
234
|
+
if (!this._uginstallationaudit__file) {
|
|
235
|
+
this._uginstallationaudit__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:UgInstallationAudit', 'SchemaModule:File', 'UgInstallationAudit__File');
|
|
236
236
|
}
|
|
237
|
-
return this.
|
|
237
|
+
return this._uginstallationaudit__file;
|
|
238
238
|
}
|
|
239
|
-
get
|
|
240
|
-
if (!this.
|
|
241
|
-
this.
|
|
239
|
+
get ohinstallationaudit__file() {
|
|
240
|
+
if (!this._ohinstallationaudit__file) {
|
|
241
|
+
this._ohinstallationaudit__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:OhInstallationAudit', 'SchemaModule:File', 'OhInstallationAudit__File');
|
|
242
242
|
}
|
|
243
|
-
return this.
|
|
243
|
+
return this._ohinstallationaudit__file;
|
|
244
244
|
}
|
|
245
|
-
get
|
|
246
|
-
if (!this.
|
|
247
|
-
this.
|
|
245
|
+
get ugauditofinstallation__file() {
|
|
246
|
+
if (!this._ugauditofinstallation__file) {
|
|
247
|
+
this._ugauditofinstallation__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:UgAuditOfInstallation', 'SchemaModule:File', 'UgAuditOfInstallation__File');
|
|
248
248
|
}
|
|
249
|
-
return this.
|
|
250
|
-
}
|
|
251
|
-
get file__note() {
|
|
252
|
-
if (!this._file__note) {
|
|
253
|
-
this._file__note = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'SchemaModule:File', 'SupportModule:Note', 'File__Note');
|
|
254
|
-
}
|
|
255
|
-
return this._file__note;
|
|
249
|
+
return this._ugauditofinstallation__file;
|
|
256
250
|
}
|
|
257
251
|
get note__file() {
|
|
258
252
|
if (!this._note__file) {
|
|
259
|
-
this._note__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, '
|
|
253
|
+
this._note__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'SupportModule:Note', 'SchemaModule:File', 'Note__File');
|
|
260
254
|
}
|
|
261
255
|
return this._note__file;
|
|
262
256
|
}
|
|
263
|
-
get
|
|
264
|
-
if (!this.
|
|
265
|
-
this.
|
|
257
|
+
get yfequipmentcollection__file() {
|
|
258
|
+
if (!this._yfequipmentcollection__file) {
|
|
259
|
+
this._yfequipmentcollection__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:YfEquipmentCollection', 'SchemaModule:File', 'YfEquipmentCollection__File');
|
|
260
|
+
}
|
|
261
|
+
return this._yfequipmentcollection__file;
|
|
262
|
+
}
|
|
263
|
+
get lead__file() {
|
|
264
|
+
if (!this._lead__file) {
|
|
265
|
+
this._lead__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'CrmModule:Lead', 'SchemaModule:File', 'Lead__File');
|
|
266
266
|
}
|
|
267
|
-
return this.
|
|
267
|
+
return this._lead__file;
|
|
268
268
|
}
|
|
269
|
-
get
|
|
270
|
-
if (!this.
|
|
271
|
-
this.
|
|
269
|
+
get account__file() {
|
|
270
|
+
if (!this._account__file) {
|
|
271
|
+
this._account__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'CrmModule:Account', 'SchemaModule:File', 'Account__File');
|
|
272
272
|
}
|
|
273
|
-
return this.
|
|
273
|
+
return this._account__file;
|
|
274
274
|
}
|
|
275
|
-
get
|
|
276
|
-
if (!this.
|
|
277
|
-
this.
|
|
275
|
+
get paymentmethod__file() {
|
|
276
|
+
if (!this._paymentmethod__file) {
|
|
277
|
+
this._paymentmethod__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'BillingModule:PaymentMethod', 'SchemaModule:File', 'PaymentMethod__File');
|
|
278
278
|
}
|
|
279
|
-
return this.
|
|
279
|
+
return this._paymentmethod__file;
|
|
280
280
|
}
|
|
281
|
-
get
|
|
282
|
-
if (!this.
|
|
283
|
-
this.
|
|
281
|
+
get sweepermaintenanceaudit__file() {
|
|
282
|
+
if (!this._sweepermaintenanceaudit__file) {
|
|
283
|
+
this._sweepermaintenanceaudit__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:SweeperMaintenanceAudit', 'SchemaModule:File', 'SweeperMaintenanceAudit__File');
|
|
284
284
|
}
|
|
285
|
-
return this.
|
|
285
|
+
return this._sweepermaintenanceaudit__file;
|
|
286
286
|
}
|
|
287
|
-
get
|
|
288
|
-
if (!this.
|
|
289
|
-
this.
|
|
287
|
+
get blockagereporta55__file() {
|
|
288
|
+
if (!this._blockagereporta55__file) {
|
|
289
|
+
this._blockagereporta55__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:BlockageReportA55', 'SchemaModule:File', 'BlockageReportA55__File');
|
|
290
290
|
}
|
|
291
|
-
return this.
|
|
291
|
+
return this._blockagereporta55__file;
|
|
292
292
|
}
|
|
293
|
-
get
|
|
294
|
-
if (!this.
|
|
295
|
-
this.
|
|
293
|
+
get ohauditofinstallation__file() {
|
|
294
|
+
if (!this._ohauditofinstallation__file) {
|
|
295
|
+
this._ohauditofinstallation__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:OhAuditOfInstallation', 'SchemaModule:File', 'OhAuditOfInstallation__File');
|
|
296
296
|
}
|
|
297
|
-
return this.
|
|
297
|
+
return this._ohauditofinstallation__file;
|
|
298
298
|
}
|
|
299
|
-
get
|
|
300
|
-
if (!this.
|
|
301
|
-
this.
|
|
299
|
+
get ohinprogressaudit_file() {
|
|
300
|
+
if (!this._ohinprogressaudit_file) {
|
|
301
|
+
this._ohinprogressaudit_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:OhInProgressAudit', 'SchemaModule:File', 'OhInProgressAudit_File');
|
|
302
302
|
}
|
|
303
|
-
return this.
|
|
303
|
+
return this._ohinprogressaudit_file;
|
|
304
304
|
}
|
|
305
|
-
get
|
|
306
|
-
if (!this.
|
|
307
|
-
this.
|
|
305
|
+
get contractbuyout__file() {
|
|
306
|
+
if (!this._contractbuyout__file) {
|
|
307
|
+
this._contractbuyout__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'OrderModule:ContractBuyOut', 'SchemaModule:File', 'ContractBuyOut__File');
|
|
308
308
|
}
|
|
309
|
-
return this.
|
|
309
|
+
return this._contractbuyout__file;
|
|
310
310
|
}
|
|
311
|
-
get
|
|
312
|
-
if (!this.
|
|
313
|
-
this.
|
|
311
|
+
get sitespecificriskassessmentoutcomeform__file() {
|
|
312
|
+
if (!this._sitespecificriskassessmentoutcomeform__file) {
|
|
313
|
+
this._sitespecificriskassessmentoutcomeform__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:SiteSpecificRiskAssessmentOutcomeForm', 'SchemaModule:File', 'SiteSpecificRiskAssessmentOutcomeForm__File');
|
|
314
314
|
}
|
|
315
|
-
return this.
|
|
315
|
+
return this._sitespecificriskassessmentoutcomeform__file;
|
|
316
316
|
}
|
|
317
|
-
get
|
|
318
|
-
if (!this.
|
|
319
|
-
this.
|
|
317
|
+
get remediationoutcomeform_file() {
|
|
318
|
+
if (!this._remediationoutcomeform_file) {
|
|
319
|
+
this._remediationoutcomeform_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:RemediationOutcomeForm', 'SchemaModule:File', 'RemediationOutcomeForm_File');
|
|
320
320
|
}
|
|
321
|
-
return this.
|
|
321
|
+
return this._remediationoutcomeform_file;
|
|
322
322
|
}
|
|
323
|
-
get
|
|
324
|
-
if (!this.
|
|
325
|
-
this.
|
|
323
|
+
get order__file() {
|
|
324
|
+
if (!this._order__file) {
|
|
325
|
+
this._order__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'OrderModule:Order', 'SchemaModule:File', 'Order__File');
|
|
326
326
|
}
|
|
327
|
-
return this.
|
|
327
|
+
return this._order__file;
|
|
328
328
|
}
|
|
329
|
-
get
|
|
330
|
-
if (!this.
|
|
331
|
-
this.
|
|
329
|
+
get call__file() {
|
|
330
|
+
if (!this._call__file) {
|
|
331
|
+
this._call__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'NotificationModule:Call', 'SchemaModule:File', 'Call__File');
|
|
332
332
|
}
|
|
333
|
-
return this.
|
|
333
|
+
return this._call__file;
|
|
334
334
|
}
|
|
335
|
-
get
|
|
336
|
-
if (!this.
|
|
337
|
-
this.
|
|
335
|
+
get ohexternalaudit_file() {
|
|
336
|
+
if (!this._ohexternalaudit_file) {
|
|
337
|
+
this._ohexternalaudit_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:OhExternalAudit', 'SchemaModule:File', 'OhExternalAudit_File');
|
|
338
338
|
}
|
|
339
|
-
return this.
|
|
339
|
+
return this._ohexternalaudit_file;
|
|
340
340
|
}
|
|
341
|
-
get
|
|
342
|
-
if (!this.
|
|
343
|
-
this.
|
|
341
|
+
get customerdeviceont__file() {
|
|
342
|
+
if (!this._customerdeviceont__file) {
|
|
343
|
+
this._customerdeviceont__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'ServiceModule:CustomerDeviceOnt', 'SchemaModule:File', 'CustomerDeviceOnt__File');
|
|
344
344
|
}
|
|
345
|
-
return this.
|
|
345
|
+
return this._customerdeviceont__file;
|
|
346
346
|
}
|
|
347
|
-
get
|
|
348
|
-
if (!this.
|
|
349
|
-
this.
|
|
347
|
+
get yffieldservicevisit__file() {
|
|
348
|
+
if (!this._yffieldservicevisit__file) {
|
|
349
|
+
this._yffieldservicevisit__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:YfFieldServiceVisit', 'SchemaModule:File', 'YfFieldServiceVisit__File');
|
|
350
350
|
}
|
|
351
|
-
return this.
|
|
351
|
+
return this._yffieldservicevisit__file;
|
|
352
352
|
}
|
|
353
|
-
get
|
|
354
|
-
if (!this.
|
|
355
|
-
this.
|
|
353
|
+
get billingadjustment__file() {
|
|
354
|
+
if (!this._billingadjustment__file) {
|
|
355
|
+
this._billingadjustment__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'OrderModule:BillingAdjustment', 'SchemaModule:File', 'BillingAdjustment__File');
|
|
356
356
|
}
|
|
357
|
-
return this.
|
|
357
|
+
return this._billingadjustment__file;
|
|
358
358
|
}
|
|
359
|
-
get
|
|
360
|
-
if (!this.
|
|
361
|
-
this.
|
|
359
|
+
get contact__file() {
|
|
360
|
+
if (!this._contact__file) {
|
|
361
|
+
this._contact__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'CrmModule:Contact', 'SchemaModule:File', 'Contact__File');
|
|
362
362
|
}
|
|
363
|
-
return this.
|
|
363
|
+
return this._contact__file;
|
|
364
364
|
}
|
|
365
|
-
get
|
|
366
|
-
if (!this.
|
|
367
|
-
this.
|
|
365
|
+
get message_file() {
|
|
366
|
+
if (!this._message_file) {
|
|
367
|
+
this._message_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'NotificationModule:Message', 'SchemaModule:File', 'Message_File');
|
|
368
368
|
}
|
|
369
|
-
return this.
|
|
369
|
+
return this._message_file;
|
|
370
370
|
}
|
|
371
|
-
get
|
|
372
|
-
if (!this.
|
|
373
|
-
this.
|
|
371
|
+
get netomniainstallverification__file() {
|
|
372
|
+
if (!this._netomniainstallverification__file) {
|
|
373
|
+
this._netomniainstallverification__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:NetomniaInstallVerification', 'SchemaModule:File', 'NetomniaInstallVerification__File');
|
|
374
374
|
}
|
|
375
|
-
return this.
|
|
375
|
+
return this._netomniainstallverification__file;
|
|
376
376
|
}
|
|
377
|
-
get
|
|
378
|
-
if (!this.
|
|
379
|
-
this.
|
|
377
|
+
get attachments() {
|
|
378
|
+
if (!this._attachments) {
|
|
379
|
+
this._attachments = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'NotificationModule:Email', 'SchemaModule:File', 'Attachments');
|
|
380
380
|
}
|
|
381
|
-
return this.
|
|
381
|
+
return this._attachments;
|
|
382
382
|
}
|
|
383
|
-
get
|
|
384
|
-
if (!this.
|
|
385
|
-
this.
|
|
383
|
+
get ugretroaudit__file() {
|
|
384
|
+
if (!this._ugretroaudit__file) {
|
|
385
|
+
this._ugretroaudit__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:UgRetroAudit', 'SchemaModule:File', 'UgRetroAudit__File');
|
|
386
386
|
}
|
|
387
|
-
return this.
|
|
387
|
+
return this._ugretroaudit__file;
|
|
388
388
|
}
|
|
389
|
-
get
|
|
390
|
-
if (!this.
|
|
391
|
-
this.
|
|
389
|
+
get ohretroaudit__file() {
|
|
390
|
+
if (!this._ohretroaudit__file) {
|
|
391
|
+
this._ohretroaudit__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:OhRetroAudit', 'SchemaModule:File', 'OhRetroAudit__File');
|
|
392
392
|
}
|
|
393
|
-
return this.
|
|
393
|
+
return this._ohretroaudit__file;
|
|
394
394
|
}
|
|
395
|
-
get
|
|
396
|
-
if (!this.
|
|
397
|
-
this.
|
|
395
|
+
get uginprogressaudit_file() {
|
|
396
|
+
if (!this._uginprogressaudit_file) {
|
|
397
|
+
this._uginprogressaudit_file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'FieldServiceModule:UgInProgressAudit', 'SchemaModule:File', 'UgInProgressAudit_File');
|
|
398
398
|
}
|
|
399
|
-
return this.
|
|
399
|
+
return this._uginprogressaudit_file;
|
|
400
400
|
}
|
|
401
|
-
get
|
|
402
|
-
if (!this.
|
|
403
|
-
this.
|
|
401
|
+
get pgdirectdebitfile__file() {
|
|
402
|
+
if (!this._pgdirectdebitfile__file) {
|
|
403
|
+
this._pgdirectdebitfile__file = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'BillingModule:PgDirectDebitFile', 'SchemaModule:File', 'PgDirectDebitFile__File');
|
|
404
404
|
}
|
|
405
|
-
return this.
|
|
405
|
+
return this._pgdirectdebitfile__file;
|
|
406
406
|
}
|
|
407
|
-
get
|
|
408
|
-
if (!this.
|
|
409
|
-
this.
|
|
407
|
+
get note() {
|
|
408
|
+
if (!this._note) {
|
|
409
|
+
this._note = new db_record_link_manager_1.DbRecordLinkManager(this.principal, this.dbService, 'SchemaModule:File', 'SupportModule:Note', 'File__Note');
|
|
410
410
|
}
|
|
411
|
-
return this.
|
|
411
|
+
return this._note;
|
|
412
412
|
}
|
|
413
413
|
// ============================================
|
|
414
414
|
// STANDARD METHODS
|
|
@@ -768,8 +768,6 @@ export declare class File extends OdinRecord<FileProperties> {
|
|
|
768
768
|
type: FileEntityTypes;
|
|
769
769
|
schemaId: '74510906-4af8-479c-862e-04a1bae015d7';
|
|
770
770
|
properties: FileProperties;
|
|
771
|
-
/** Linked File records (ServiceVisitAudit__File) */
|
|
772
|
-
File: OdinLink<LinkedOdinRecord<FileProperties>>;
|
|
773
771
|
/** Linked ServiceVisitAudit records (ServiceVisitAudit__File) */
|
|
774
772
|
ServiceVisitAudit: OdinLink<LinkedOdinRecord<ServiceVisitAuditProperties>>;
|
|
775
773
|
/** Linked BlockageA55 records (BlockageA55_File) */
|
|
@@ -957,10 +955,6 @@ export declare const ROUTING_KEY_FILE_OTDR_CREATED = "SchemaModule.File.OTDR.Sub
|
|
|
957
955
|
export declare const ROUTING_KEY_FILE_OTDR_UPDATED = "SchemaModule.File.OTDR.SubDbRecordUpdated";
|
|
958
956
|
/** OTDR evidence for L1 and L2 closures deleted */
|
|
959
957
|
export declare const ROUTING_KEY_FILE_OTDR_DELETED = "SchemaModule.File.OTDR.SubDbRecordDeleted";
|
|
960
|
-
/** Event: ServiceVisitAudit__File link created */
|
|
961
|
-
export declare const ROUTING_KEY_LINK_SERVICE_VISIT_AUDIT_FILE_CREATED = "SchemaModule.File.File.SubDbRecordAssociationCreated";
|
|
962
|
-
/** Event: ServiceVisitAudit__File link deleted */
|
|
963
|
-
export declare const ROUTING_KEY_LINK_SERVICE_VISIT_AUDIT_FILE_DELETED = "SchemaModule.File.File.SubDbRecordAssociationDeleted";
|
|
964
958
|
/** Event: File__Note link created */
|
|
965
959
|
export declare const ROUTING_KEY_LINK_FILE_NOTE_CREATED = "SchemaModule.File.Note.SubDbRecordAssociationCreated";
|
|
966
960
|
/** Event: File__Note link deleted */
|
package/dist/entities-v2/File.js
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Generated from Odin schema definition
|
|
13
13
|
*/
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.ROUTING_KEY_LINK_FILE_NOTE_DELETED = exports.ROUTING_KEY_LINK_FILE_NOTE_CREATED = exports.
|
|
15
|
+
exports.ROUTING_KEY_LINK_FILE_NOTE_DELETED = exports.ROUTING_KEY_LINK_FILE_NOTE_CREATED = exports.ROUTING_KEY_FILE_OTDR_DELETED = exports.ROUTING_KEY_FILE_OTDR_UPDATED = exports.ROUTING_KEY_FILE_OTDR_CREATED = exports.ROUTING_KEY_FILE_OPENREACH_A55_DELETED = exports.ROUTING_KEY_FILE_OPENREACH_A55_UPDATED = exports.ROUTING_KEY_FILE_OPENREACH_A55_CREATED = exports.ROUTING_KEY_FILE_NA_SOLUTION_EVIDENCE_DELETED = exports.ROUTING_KEY_FILE_NA_SOLUTION_EVIDENCE_UPDATED = exports.ROUTING_KEY_FILE_NA_SOLUTION_EVIDENCE_CREATED = exports.ROUTING_KEY_FILE_NA_PROBLEM_EVIDENCE_DELETED = exports.ROUTING_KEY_FILE_NA_PROBLEM_EVIDENCE_UPDATED = exports.ROUTING_KEY_FILE_NA_PROBLEM_EVIDENCE_CREATED = exports.ROUTING_KEY_FILE_INVOICE_DELETED = exports.ROUTING_KEY_FILE_INVOICE_UPDATED = exports.ROUTING_KEY_FILE_INVOICE_CREATED = exports.ROUTING_KEY_FILE_EMAIL_DELETED = exports.ROUTING_KEY_FILE_EMAIL_UPDATED = exports.ROUTING_KEY_FILE_EMAIL_CREATED = exports.ROUTING_KEY_FILE_DEFAULT_DELETED = exports.ROUTING_KEY_FILE_DEFAULT_UPDATED = exports.ROUTING_KEY_FILE_DEFAULT_CREATED = exports.ROUTING_KEY_FILE_CSV_DELETED = exports.ROUTING_KEY_FILE_CSV_UPDATED = exports.ROUTING_KEY_FILE_CSV_CREATED = exports.ROUTING_KEY_FILE_AFP_INVOICE_DELETED = exports.ROUTING_KEY_FILE_AFP_INVOICE_UPDATED = exports.ROUTING_KEY_FILE_AFP_INVOICE_CREATED = exports.ROUTING_KEY_FILE_DELETED = exports.ROUTING_KEY_FILE_UPDATED = exports.ROUTING_KEY_FILE_CREATED = exports.File = exports.FilePropertyKeys = exports.FileCategory = exports.FileDevice = exports.FileDataStore = exports.FileEntityTypes = void 0;
|
|
16
16
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
17
17
|
/**
|
|
18
18
|
* Available types for File records
|
|
@@ -186,10 +186,6 @@ exports.ROUTING_KEY_FILE_OTDR_CREATED = 'SchemaModule.File.OTDR.SubDbRecordCreat
|
|
|
186
186
|
exports.ROUTING_KEY_FILE_OTDR_UPDATED = 'SchemaModule.File.OTDR.SubDbRecordUpdated';
|
|
187
187
|
/** OTDR evidence for L1 and L2 closures deleted */
|
|
188
188
|
exports.ROUTING_KEY_FILE_OTDR_DELETED = 'SchemaModule.File.OTDR.SubDbRecordDeleted';
|
|
189
|
-
/** Event: ServiceVisitAudit__File link created */
|
|
190
|
-
exports.ROUTING_KEY_LINK_SERVICE_VISIT_AUDIT_FILE_CREATED = 'SchemaModule.File.File.SubDbRecordAssociationCreated';
|
|
191
|
-
/** Event: ServiceVisitAudit__File link deleted */
|
|
192
|
-
exports.ROUTING_KEY_LINK_SERVICE_VISIT_AUDIT_FILE_DELETED = 'SchemaModule.File.File.SubDbRecordAssociationDeleted';
|
|
193
189
|
/** Event: File__Note link created */
|
|
194
190
|
exports.ROUTING_KEY_LINK_FILE_NOTE_CREATED = 'SchemaModule.File.Note.SubDbRecordAssociationCreated';
|
|
195
191
|
/** Event: File__Note link deleted */
|
|
@@ -42,8 +42,16 @@ export declare enum TwilioCallEventWebhookSource {
|
|
|
42
42
|
* Valid values for TwilioCallEvent.ProcessingStatus
|
|
43
43
|
*
|
|
44
44
|
* Processing status in background
|
|
45
|
+
*
|
|
46
|
+
* @remarks Available options:
|
|
47
|
+
* - `Failed`
|
|
48
|
+
* - `Pending`
|
|
49
|
+
* - `Success`
|
|
45
50
|
*/
|
|
46
51
|
export declare enum TwilioCallEventProcessingStatus {
|
|
52
|
+
FAILED = "Failed",
|
|
53
|
+
PENDING = "Pending",
|
|
54
|
+
SUCCESS = "Success"
|
|
47
55
|
}
|
|
48
56
|
/**
|
|
49
57
|
* Property keys for TwilioCallEvent
|
|
@@ -119,6 +127,7 @@ export interface TwilioCallEventProperties {
|
|
|
119
127
|
/** Processing status in background
|
|
120
128
|
*
|
|
121
129
|
* @type {ENUM}
|
|
130
|
+
* @enum {TwilioCallEventProcessingStatus}
|
|
122
131
|
*/
|
|
123
132
|
ProcessingStatus: TwilioCallEventProcessingStatus;
|
|
124
133
|
}
|
|
@@ -172,6 +181,7 @@ export interface InboundCallEventTwilioCallEventProperties {
|
|
|
172
181
|
/** Processing status in background
|
|
173
182
|
*
|
|
174
183
|
* @type {ENUM}
|
|
184
|
+
* @enum {TwilioCallEventProcessingStatus}
|
|
175
185
|
*/
|
|
176
186
|
ProcessingStatus: TwilioCallEventProcessingStatus;
|
|
177
187
|
}
|
|
@@ -225,6 +235,7 @@ export interface OutboundCallEventTwilioCallEventProperties {
|
|
|
225
235
|
/** Processing status in background
|
|
226
236
|
*
|
|
227
237
|
* @type {ENUM}
|
|
238
|
+
* @enum {TwilioCallEventProcessingStatus}
|
|
228
239
|
*/
|
|
229
240
|
ProcessingStatus: TwilioCallEventProcessingStatus;
|
|
230
241
|
}
|
|
@@ -46,9 +46,17 @@ var TwilioCallEventWebhookSource;
|
|
|
46
46
|
* Valid values for TwilioCallEvent.ProcessingStatus
|
|
47
47
|
*
|
|
48
48
|
* Processing status in background
|
|
49
|
+
*
|
|
50
|
+
* @remarks Available options:
|
|
51
|
+
* - `Failed`
|
|
52
|
+
* - `Pending`
|
|
53
|
+
* - `Success`
|
|
49
54
|
*/
|
|
50
55
|
var TwilioCallEventProcessingStatus;
|
|
51
56
|
(function (TwilioCallEventProcessingStatus) {
|
|
57
|
+
TwilioCallEventProcessingStatus["FAILED"] = "Failed";
|
|
58
|
+
TwilioCallEventProcessingStatus["PENDING"] = "Pending";
|
|
59
|
+
TwilioCallEventProcessingStatus["SUCCESS"] = "Success";
|
|
52
60
|
})(TwilioCallEventProcessingStatus = exports.TwilioCallEventProcessingStatus || (exports.TwilioCallEventProcessingStatus = {}));
|
|
53
61
|
/**
|
|
54
62
|
* Property keys for TwilioCallEvent
|