@d19n/youfibre-odin-sdk 2.0.78 → 2.0.81
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/SendDirectDebitCreatedEmailDto.d.ts +8 -1
- package/dist/actions-v2/SendDirectDebitFailedEmailDto.d.ts +121 -0
- package/dist/actions-v2/SendDirectDebitFailedEmailDto.js +59 -0
- package/dist/actions-v2/SendDirectDebitSetupConfirmationEmailDto.d.ts +8 -1
- package/dist/actions-v2/SendRefundTransactionEmailDto.d.ts +8 -1
- package/dist/api-sdk-v2/FileApi.d.ts +122 -122
- package/dist/api-sdk-v2/FileApi.js +247 -247
- package/dist/api-sdk-v2/ProductApi.d.ts +2 -2
- package/dist/api-sdk-v2/ProductApi.js +6 -6
- package/dist/api-sdk-v2/ServiceApi.d.ts +2 -2
- package/dist/api-sdk-v2/ServiceApi.js +6 -6
- package/dist/db-sdk-v2/FileDb.d.ts +122 -122
- package/dist/db-sdk-v2/FileDb.js +247 -247
- package/dist/db-sdk-v2/ProductDb.d.ts +2 -2
- package/dist/db-sdk-v2/ProductDb.js +6 -6
- package/dist/db-sdk-v2/ServiceDb.d.ts +2 -2
- package/dist/db-sdk-v2/ServiceDb.js +6 -6
- package/dist/entities-v2/File.d.ts +6 -0
- package/dist/entities-v2/File.js +5 -1
- package/dist/entities-v2/PaymentMethod.d.ts +10 -1
- package/dist/entities-v2/PaymentMethod.js +2 -0
- package/dist/entities-v2/Product.d.ts +7 -7
- package/dist/entities-v2/Product.js +6 -6
- package/dist/entities-v2/Service.d.ts +2 -2
- package/dist/records-v2/EmailRecord.d.ts +29 -0
- package/dist/records-v2/EmailRecord.js +36 -0
- package/dist/records-v2/ProductRecord.d.ts +20 -20
- package/dist/records-v2/ProductRecord.js +33 -33
- package/dist/records-v2/ServiceRecord.d.ts +19 -19
- package/dist/records-v2/ServiceRecord.js +32 -32
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -351,7 +351,7 @@ This SDK includes **163** entities across **12** modules.
|
|
|
351
351
|
|
|
352
352
|
## Actions
|
|
353
353
|
|
|
354
|
-
This SDK includes **
|
|
354
|
+
This SDK includes **605** actions.
|
|
355
355
|
|
|
356
356
|
### Action Types
|
|
357
357
|
|
|
@@ -1206,6 +1206,7 @@ This SDK includes **604** actions.
|
|
|
1206
1206
|
| `CreateOrderReferralReferrerQualifiedEmail` | CREATE | k1.t-hEOJjsDb.NotificationModule.Email.Create.CreateOrderReferralReferrerQualifiedEmail |
|
|
1207
1207
|
| `CreateTransactionalEmail` | CREATE | k1.t-hEOJjsDb.NotificationModule.Email.Create.CreateTransactionalEmail |
|
|
1208
1208
|
| `SendDirectDebitCreatedEmail` | CREATE | k1.t-hEOJjsDb.NotificationModule.Email.Create.SendDirectDebitCreatedEmail |
|
|
1209
|
+
| `SendDirectDebitFailedEmail` | CREATE | k1.t-hEOJjsDb.NotificationModule.Email.Create.SendDirectDebitFailedEmail |
|
|
1209
1210
|
| `SendDirectDebitSetupConfirmationEmail` | CREATE | k1.t-hEOJjsDb.NotificationModule.Email.Create.SendDirectDebitSetupConfirmationEmail |
|
|
1210
1211
|
| `SendRefundTransactionEmail` | CREATE | k1.t-hEOJjsDb.NotificationModule.Email.Create.SendRefundTransactionEmail |
|
|
1211
1212
|
| `SendTlosNinjaCaseEmail` | CREATE | k1.t-hEOJjsDb.NotificationModule.Email.Create.SendTlosNinjaCaseEmail |
|
|
@@ -23,7 +23,7 @@ export interface SendDirectDebitCreatedEmailMessage extends OdinRecordCreatedEve
|
|
|
23
23
|
* Properties for SendDirectDebitCreatedEmail action
|
|
24
24
|
*
|
|
25
25
|
* @property Required fields: 0
|
|
26
|
-
* @property Optional fields:
|
|
26
|
+
* @property Optional fields: 8
|
|
27
27
|
*/
|
|
28
28
|
export interface SendDirectDebitCreatedEmailProperties {
|
|
29
29
|
/**
|
|
@@ -75,6 +75,13 @@ export interface SendDirectDebitCreatedEmailProperties {
|
|
|
75
75
|
* @type {JSON}
|
|
76
76
|
*/
|
|
77
77
|
DynamicData?: string | null;
|
|
78
|
+
/**
|
|
79
|
+
* Title
|
|
80
|
+
*
|
|
81
|
+
* Used for title
|
|
82
|
+
* @type {TEXT}
|
|
83
|
+
*/
|
|
84
|
+
Title?: string | null;
|
|
78
85
|
}
|
|
79
86
|
/**
|
|
80
87
|
* SendDirectDebitCreatedEmail
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SendDirectDebitFailedEmail Action DTO
|
|
3
|
+
*
|
|
4
|
+
* Send Email when Payment method setup failed
|
|
5
|
+
*
|
|
6
|
+
* @module NotificationModule
|
|
7
|
+
* @entity Email
|
|
8
|
+
* @entityType TRANSACTIONAL
|
|
9
|
+
* @actionKey SendDirectDebitFailedEmail
|
|
10
|
+
* @event k1.t-hEOJjsDb.NotificationModule.Email.Create.SendDirectDebitFailedEmail
|
|
11
|
+
*
|
|
12
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
13
|
+
*/
|
|
14
|
+
import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/dist/core';
|
|
15
|
+
/**
|
|
16
|
+
* RabbitMQ message payload for SendDirectDebitFailedEmail created events
|
|
17
|
+
*
|
|
18
|
+
* @event k1.t-hEOJjsDb.NotificationModule.Email.Create.SendDirectDebitFailedEmail
|
|
19
|
+
*/
|
|
20
|
+
export interface SendDirectDebitFailedEmailMessage extends OdinRecordCreatedEvent<SendDirectDebitFailedEmailDto, SendDirectDebitFailedEmailProperties> {
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Properties for SendDirectDebitFailedEmail action
|
|
24
|
+
*
|
|
25
|
+
* @property Required fields: 0
|
|
26
|
+
* @property Optional fields: 8
|
|
27
|
+
*/
|
|
28
|
+
export interface SendDirectDebitFailedEmailProperties {
|
|
29
|
+
/**
|
|
30
|
+
* Date
|
|
31
|
+
*
|
|
32
|
+
* Date field for Email records. Used by Communications team.
|
|
33
|
+
* @type {DATE_TIME}
|
|
34
|
+
*/
|
|
35
|
+
Date?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
* EmailingService
|
|
38
|
+
*
|
|
39
|
+
* The provider we use to send email (eg. Sendgrid)
|
|
40
|
+
* @type {ENUM}
|
|
41
|
+
*/
|
|
42
|
+
EmailingService?: string | null;
|
|
43
|
+
/**
|
|
44
|
+
* ContactId
|
|
45
|
+
*
|
|
46
|
+
* The related Contact to send the email
|
|
47
|
+
* @type {LOOKUP}
|
|
48
|
+
*/
|
|
49
|
+
ContactId?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
* TemplateLabel
|
|
52
|
+
*
|
|
53
|
+
* The template label from email templates engine
|
|
54
|
+
* @type {TEXT}
|
|
55
|
+
*/
|
|
56
|
+
TemplateLabel?: string | null;
|
|
57
|
+
/**
|
|
58
|
+
* MessageId
|
|
59
|
+
*
|
|
60
|
+
* SMTP Message Id (Communications - Email)
|
|
61
|
+
* @type {TEXT}
|
|
62
|
+
*/
|
|
63
|
+
MessageId?: string | null;
|
|
64
|
+
/**
|
|
65
|
+
* EmailSenderId
|
|
66
|
+
*
|
|
67
|
+
* The Email Sender related entity
|
|
68
|
+
* @type {LOOKUP}
|
|
69
|
+
*/
|
|
70
|
+
EmailSenderId?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* DynamicData
|
|
73
|
+
*
|
|
74
|
+
* Data will pass to emailing service (variables)
|
|
75
|
+
* @type {JSON}
|
|
76
|
+
*/
|
|
77
|
+
DynamicData?: string | null;
|
|
78
|
+
/**
|
|
79
|
+
* Title
|
|
80
|
+
*
|
|
81
|
+
* Used for title
|
|
82
|
+
* @type {TEXT}
|
|
83
|
+
*/
|
|
84
|
+
Title?: string | null;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* SendDirectDebitFailedEmail
|
|
88
|
+
*
|
|
89
|
+
* Send Email when Payment method setup failed
|
|
90
|
+
*
|
|
91
|
+
* @actionType CREATE - Creates a new Email record
|
|
92
|
+
* @module NotificationModule
|
|
93
|
+
* @entity Email
|
|
94
|
+
* @entityType TRANSACTIONAL (TRANSACTIONAL)
|
|
95
|
+
* @event k1.t-hEOJjsDb.NotificationModule.Email.Create.SendDirectDebitFailedEmail
|
|
96
|
+
* @permission schema.action.senddirectdebitfailedemail.trigger
|
|
97
|
+
* @benchmark This action is tracked for performance benchmarks
|
|
98
|
+
*/
|
|
99
|
+
export declare class SendDirectDebitFailedEmailDto extends OdinRecordCreateDto<SendDirectDebitFailedEmailProperties> {
|
|
100
|
+
/** Used by SDK generators to identify action type */
|
|
101
|
+
static readonly ACTION_TYPE = "CREATE";
|
|
102
|
+
static readonly ACTION_KEY = "SendDirectDebitFailedEmail";
|
|
103
|
+
static readonly MODULE_NAME = "NotificationModule";
|
|
104
|
+
static readonly ENTITIES: string[];
|
|
105
|
+
static readonly ENTITY_TYPE = "TRANSACTIONAL";
|
|
106
|
+
static readonly EVENT_NAME = "k1.t-hEOJjsDb.NotificationModule.Email.Create.SendDirectDebitFailedEmail";
|
|
107
|
+
static readonly PERMISSION = "schema.action.senddirectdebitfailedemail.trigger";
|
|
108
|
+
/** Step metadata - entity this action targets */
|
|
109
|
+
static readonly STEP_ENTITY = "NotificationModule:Email";
|
|
110
|
+
static readonly STEP_SCHEMA_ID = "cb37958c-d72f-44aa-975a-a8fae42b1b72";
|
|
111
|
+
static readonly STEP_SCHEMA_ACTION_ID = "3e331ae2-76ac-49a5-9759-ecbb9cde0da0";
|
|
112
|
+
static readonly STEP_SCHEMA_TYPE_ID = "14042940-a388-44c7-87fe-3a4105d92e94";
|
|
113
|
+
static readonly STEP_TYPE = "TRANSACTIONAL";
|
|
114
|
+
static readonly AUTO_LINK_PARENT = true;
|
|
115
|
+
readonly actionName: string;
|
|
116
|
+
readonly schemaActionId: string;
|
|
117
|
+
readonly entity: string;
|
|
118
|
+
constructor(properties: SendDirectDebitFailedEmailProperties, options?: {
|
|
119
|
+
journeyId?: string;
|
|
120
|
+
});
|
|
121
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* SendDirectDebitFailedEmail Action DTO
|
|
4
|
+
*
|
|
5
|
+
* Send Email when Payment method setup failed
|
|
6
|
+
*
|
|
7
|
+
* @module NotificationModule
|
|
8
|
+
* @entity Email
|
|
9
|
+
* @entityType TRANSACTIONAL
|
|
10
|
+
* @actionKey SendDirectDebitFailedEmail
|
|
11
|
+
* @event k1.t-hEOJjsDb.NotificationModule.Email.Create.SendDirectDebitFailedEmail
|
|
12
|
+
*
|
|
13
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.SendDirectDebitFailedEmailDto = void 0;
|
|
17
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
18
|
+
/**
|
|
19
|
+
* SendDirectDebitFailedEmail
|
|
20
|
+
*
|
|
21
|
+
* Send Email when Payment method setup failed
|
|
22
|
+
*
|
|
23
|
+
* @actionType CREATE - Creates a new Email record
|
|
24
|
+
* @module NotificationModule
|
|
25
|
+
* @entity Email
|
|
26
|
+
* @entityType TRANSACTIONAL (TRANSACTIONAL)
|
|
27
|
+
* @event k1.t-hEOJjsDb.NotificationModule.Email.Create.SendDirectDebitFailedEmail
|
|
28
|
+
* @permission schema.action.senddirectdebitfailedemail.trigger
|
|
29
|
+
* @benchmark This action is tracked for performance benchmarks
|
|
30
|
+
*/
|
|
31
|
+
class SendDirectDebitFailedEmailDto extends core_1.OdinRecordCreateDto {
|
|
32
|
+
constructor(properties, options) {
|
|
33
|
+
super({
|
|
34
|
+
entity: 'NotificationModule:Email',
|
|
35
|
+
type: 'TRANSACTIONAL',
|
|
36
|
+
properties,
|
|
37
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
38
|
+
});
|
|
39
|
+
this.actionName = 'SendDirectDebitFailedEmail';
|
|
40
|
+
this.schemaActionId = '3e331ae2-76ac-49a5-9759-ecbb9cde0da0';
|
|
41
|
+
this.entity = 'NotificationModule:Email';
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.SendDirectDebitFailedEmailDto = SendDirectDebitFailedEmailDto;
|
|
45
|
+
/** Used by SDK generators to identify action type */
|
|
46
|
+
SendDirectDebitFailedEmailDto.ACTION_TYPE = 'CREATE';
|
|
47
|
+
SendDirectDebitFailedEmailDto.ACTION_KEY = 'SendDirectDebitFailedEmail';
|
|
48
|
+
SendDirectDebitFailedEmailDto.MODULE_NAME = 'NotificationModule';
|
|
49
|
+
SendDirectDebitFailedEmailDto.ENTITIES = ['Email'];
|
|
50
|
+
SendDirectDebitFailedEmailDto.ENTITY_TYPE = 'TRANSACTIONAL';
|
|
51
|
+
SendDirectDebitFailedEmailDto.EVENT_NAME = 'k1.t-hEOJjsDb.NotificationModule.Email.Create.SendDirectDebitFailedEmail';
|
|
52
|
+
SendDirectDebitFailedEmailDto.PERMISSION = 'schema.action.senddirectdebitfailedemail.trigger';
|
|
53
|
+
/** Step metadata - entity this action targets */
|
|
54
|
+
SendDirectDebitFailedEmailDto.STEP_ENTITY = 'NotificationModule:Email';
|
|
55
|
+
SendDirectDebitFailedEmailDto.STEP_SCHEMA_ID = 'cb37958c-d72f-44aa-975a-a8fae42b1b72';
|
|
56
|
+
SendDirectDebitFailedEmailDto.STEP_SCHEMA_ACTION_ID = '3e331ae2-76ac-49a5-9759-ecbb9cde0da0';
|
|
57
|
+
SendDirectDebitFailedEmailDto.STEP_SCHEMA_TYPE_ID = '14042940-a388-44c7-87fe-3a4105d92e94';
|
|
58
|
+
SendDirectDebitFailedEmailDto.STEP_TYPE = 'TRANSACTIONAL';
|
|
59
|
+
SendDirectDebitFailedEmailDto.AUTO_LINK_PARENT = true;
|
|
@@ -23,7 +23,7 @@ export interface SendDirectDebitSetupConfirmationEmailMessage extends OdinRecord
|
|
|
23
23
|
* Properties for SendDirectDebitSetupConfirmationEmail action
|
|
24
24
|
*
|
|
25
25
|
* @property Required fields: 0
|
|
26
|
-
* @property Optional fields:
|
|
26
|
+
* @property Optional fields: 8
|
|
27
27
|
*/
|
|
28
28
|
export interface SendDirectDebitSetupConfirmationEmailProperties {
|
|
29
29
|
/**
|
|
@@ -75,6 +75,13 @@ export interface SendDirectDebitSetupConfirmationEmailProperties {
|
|
|
75
75
|
* @type {JSON}
|
|
76
76
|
*/
|
|
77
77
|
DynamicData?: string | null;
|
|
78
|
+
/**
|
|
79
|
+
* Title
|
|
80
|
+
*
|
|
81
|
+
* Used for title
|
|
82
|
+
* @type {TEXT}
|
|
83
|
+
*/
|
|
84
|
+
Title?: string | null;
|
|
78
85
|
}
|
|
79
86
|
/**
|
|
80
87
|
* SendDirectDebitSetupConfirmationEmail
|
|
@@ -22,7 +22,7 @@ export interface SendRefundTransactionEmailMessage extends OdinRecordCreatedEven
|
|
|
22
22
|
* Properties for SendRefundTransactionEmail action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 0
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 8
|
|
26
26
|
*/
|
|
27
27
|
export interface SendRefundTransactionEmailProperties {
|
|
28
28
|
/**
|
|
@@ -74,6 +74,13 @@ export interface SendRefundTransactionEmailProperties {
|
|
|
74
74
|
* @type {JSON}
|
|
75
75
|
*/
|
|
76
76
|
DynamicData?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
* Title
|
|
79
|
+
*
|
|
80
|
+
* Used for title
|
|
81
|
+
* @type {TEXT}
|
|
82
|
+
*/
|
|
83
|
+
Title?: string | null;
|
|
77
84
|
}
|
|
78
85
|
/**
|
|
79
86
|
* SendRefundTransactionEmail
|
|
@@ -17,131 +17,131 @@ export declare class FileApi extends ApiProvider {
|
|
|
17
17
|
private readonly moduleName;
|
|
18
18
|
private readonly entityName;
|
|
19
19
|
private sourceRecord;
|
|
20
|
-
private
|
|
21
|
-
private
|
|
22
|
-
private
|
|
23
|
-
private
|
|
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 _file__note?;
|
|
20
|
+
private _servicevisitaudit__file?;
|
|
21
|
+
private _blockagea55_file?;
|
|
22
|
+
private _netomniaftth2stageinstallaudit__file?;
|
|
23
|
+
private _netomniaftth1stageinstallaudit__file?;
|
|
24
|
+
private _overlayreala55_file?;
|
|
25
|
+
private _appointment__file?;
|
|
26
|
+
private _ugexternalaudit_file?;
|
|
27
|
+
private _billingrequest__file?;
|
|
28
|
+
private _transaction__file?;
|
|
29
|
+
private _creditnote__file?;
|
|
30
|
+
private _address__file?;
|
|
31
|
+
private _changereason__file?;
|
|
32
|
+
private _discount__file?;
|
|
33
|
+
private _paymentmethodrefund__file?;
|
|
34
|
+
private _serviceappointment__file?;
|
|
35
|
+
private _customerdevicerouter__file?;
|
|
36
|
+
private _visit__file?;
|
|
37
|
+
private _fingerprint__file?;
|
|
38
|
+
private _yftoolaudit_file?;
|
|
39
|
+
private _wayleaveaudit_file?;
|
|
40
|
+
private _workorder__file?;
|
|
41
|
+
private _orderitem__file?;
|
|
42
|
+
private _internalinstallaudit_file?;
|
|
43
|
+
private _knowledgearticle__file?;
|
|
44
|
+
private _case__file?;
|
|
45
|
+
private _activity__file?;
|
|
46
|
+
private _netomniaftthservicevisitsheet__file?;
|
|
47
|
+
private _yfstockcount__file?;
|
|
48
|
+
private _onetouchswitch_file?;
|
|
49
|
+
private _remediationrequiredreason__file?;
|
|
50
|
+
private _invoice__file?;
|
|
51
|
+
private _yfvanaudit_file?;
|
|
52
|
+
private _uginstallationaudit__file?;
|
|
53
|
+
private _ohinstallationaudit__file?;
|
|
54
|
+
private _ugauditofinstallation__file?;
|
|
56
55
|
private _note__file?;
|
|
57
|
-
private
|
|
58
|
-
private
|
|
59
|
-
private
|
|
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
|
|
56
|
+
private _yfequipmentcollection__file?;
|
|
57
|
+
private _lead__file?;
|
|
58
|
+
private _account__file?;
|
|
59
|
+
private _paymentmethod__file?;
|
|
60
|
+
private _sweepermaintenanceaudit__file?;
|
|
61
|
+
private _blockagereporta55__file?;
|
|
62
|
+
private _ohauditofinstallation__file?;
|
|
63
|
+
private _ohinprogressaudit_file?;
|
|
64
|
+
private _contractbuyout__file?;
|
|
65
|
+
private _sitespecificriskassessmentoutcomeform__file?;
|
|
66
|
+
private _remediationoutcomeform_file?;
|
|
67
|
+
private _order__file?;
|
|
68
|
+
private _call__file?;
|
|
69
|
+
private _ohexternalaudit_file?;
|
|
70
|
+
private _customerdeviceont__file?;
|
|
71
|
+
private _yffieldservicevisit__file?;
|
|
72
|
+
private _billingadjustment__file?;
|
|
73
|
+
private _contact__file?;
|
|
74
|
+
private _message_file?;
|
|
75
|
+
private _netomniainstallverification__file?;
|
|
76
|
+
private _attachments?;
|
|
77
|
+
private _ugretroaudit__file?;
|
|
78
|
+
private _ohretroaudit__file?;
|
|
79
|
+
private _uginprogressaudit_file?;
|
|
80
|
+
private _pgdirectdebitfile__file?;
|
|
81
|
+
private _note?;
|
|
82
82
|
constructor(authParams?: OauthParams, authToken?: string);
|
|
83
|
-
get
|
|
84
|
-
get
|
|
85
|
-
get
|
|
86
|
-
get
|
|
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 file__note(): ApiRecordLinkManager;
|
|
83
|
+
get servicevisitaudit__file(): ApiRecordLinkManager;
|
|
84
|
+
get blockagea55_file(): ApiRecordLinkManager;
|
|
85
|
+
get netomniaftth2stageinstallaudit__file(): ApiRecordLinkManager;
|
|
86
|
+
get netomniaftth1stageinstallaudit__file(): ApiRecordLinkManager;
|
|
87
|
+
get overlayreala55_file(): ApiRecordLinkManager;
|
|
88
|
+
get appointment__file(): ApiRecordLinkManager;
|
|
89
|
+
get ugexternalaudit_file(): ApiRecordLinkManager;
|
|
90
|
+
get billingrequest__file(): ApiRecordLinkManager;
|
|
91
|
+
get transaction__file(): ApiRecordLinkManager;
|
|
92
|
+
get creditnote__file(): ApiRecordLinkManager;
|
|
93
|
+
get address__file(): ApiRecordLinkManager;
|
|
94
|
+
get changereason__file(): ApiRecordLinkManager;
|
|
95
|
+
get discount__file(): ApiRecordLinkManager;
|
|
96
|
+
get paymentmethodrefund__file(): ApiRecordLinkManager;
|
|
97
|
+
get serviceappointment__file(): ApiRecordLinkManager;
|
|
98
|
+
get customerdevicerouter__file(): ApiRecordLinkManager;
|
|
99
|
+
get visit__file(): ApiRecordLinkManager;
|
|
100
|
+
get fingerprint__file(): ApiRecordLinkManager;
|
|
101
|
+
get yftoolaudit_file(): ApiRecordLinkManager;
|
|
102
|
+
get wayleaveaudit_file(): ApiRecordLinkManager;
|
|
103
|
+
get workorder__file(): ApiRecordLinkManager;
|
|
104
|
+
get orderitem__file(): ApiRecordLinkManager;
|
|
105
|
+
get internalinstallaudit_file(): ApiRecordLinkManager;
|
|
106
|
+
get knowledgearticle__file(): ApiRecordLinkManager;
|
|
107
|
+
get case__file(): ApiRecordLinkManager;
|
|
108
|
+
get activity__file(): ApiRecordLinkManager;
|
|
109
|
+
get netomniaftthservicevisitsheet__file(): ApiRecordLinkManager;
|
|
110
|
+
get yfstockcount__file(): ApiRecordLinkManager;
|
|
111
|
+
get onetouchswitch_file(): ApiRecordLinkManager;
|
|
112
|
+
get remediationrequiredreason__file(): ApiRecordLinkManager;
|
|
113
|
+
get invoice__file(): ApiRecordLinkManager;
|
|
114
|
+
get yfvanaudit_file(): ApiRecordLinkManager;
|
|
115
|
+
get uginstallationaudit__file(): ApiRecordLinkManager;
|
|
116
|
+
get ohinstallationaudit__file(): ApiRecordLinkManager;
|
|
117
|
+
get ugauditofinstallation__file(): ApiRecordLinkManager;
|
|
119
118
|
get note__file(): ApiRecordLinkManager;
|
|
120
|
-
get
|
|
121
|
-
get
|
|
122
|
-
get
|
|
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
|
|
119
|
+
get yfequipmentcollection__file(): ApiRecordLinkManager;
|
|
120
|
+
get lead__file(): ApiRecordLinkManager;
|
|
121
|
+
get account__file(): ApiRecordLinkManager;
|
|
122
|
+
get paymentmethod__file(): ApiRecordLinkManager;
|
|
123
|
+
get sweepermaintenanceaudit__file(): ApiRecordLinkManager;
|
|
124
|
+
get blockagereporta55__file(): ApiRecordLinkManager;
|
|
125
|
+
get ohauditofinstallation__file(): ApiRecordLinkManager;
|
|
126
|
+
get ohinprogressaudit_file(): ApiRecordLinkManager;
|
|
127
|
+
get contractbuyout__file(): ApiRecordLinkManager;
|
|
128
|
+
get sitespecificriskassessmentoutcomeform__file(): ApiRecordLinkManager;
|
|
129
|
+
get remediationoutcomeform_file(): ApiRecordLinkManager;
|
|
130
|
+
get order__file(): ApiRecordLinkManager;
|
|
131
|
+
get call__file(): ApiRecordLinkManager;
|
|
132
|
+
get ohexternalaudit_file(): ApiRecordLinkManager;
|
|
133
|
+
get customerdeviceont__file(): ApiRecordLinkManager;
|
|
134
|
+
get yffieldservicevisit__file(): ApiRecordLinkManager;
|
|
135
|
+
get billingadjustment__file(): ApiRecordLinkManager;
|
|
136
|
+
get contact__file(): ApiRecordLinkManager;
|
|
137
|
+
get message_file(): ApiRecordLinkManager;
|
|
138
|
+
get netomniainstallverification__file(): ApiRecordLinkManager;
|
|
139
|
+
get attachments(): ApiRecordLinkManager;
|
|
140
|
+
get ugretroaudit__file(): ApiRecordLinkManager;
|
|
141
|
+
get ohretroaudit__file(): ApiRecordLinkManager;
|
|
142
|
+
get uginprogressaudit_file(): ApiRecordLinkManager;
|
|
143
|
+
get pgdirectdebitfile__file(): ApiRecordLinkManager;
|
|
144
|
+
get note(): ApiRecordLinkManager;
|
|
145
145
|
setRecord(sourceRecord: any): void;
|
|
146
146
|
schema(): Promise<import("@d19n/odin-types/dist/core").OdinSchema>;
|
|
147
147
|
search(params: Partial<OdinSearchV2>): Promise<import("@d19n/odin-sdk-generator/dist/odin-sdk-types").OdinSearchResponse<import("@d19n/odin-types/dist/core").OdinRecord<FileProperties>>>;
|