@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.
Files changed (32) hide show
  1. package/README.md +2 -1
  2. package/dist/actions-v2/SendDirectDebitCreatedEmailDto.d.ts +8 -1
  3. package/dist/actions-v2/SendDirectDebitFailedEmailDto.d.ts +121 -0
  4. package/dist/actions-v2/SendDirectDebitFailedEmailDto.js +59 -0
  5. package/dist/actions-v2/SendDirectDebitSetupConfirmationEmailDto.d.ts +8 -1
  6. package/dist/actions-v2/SendRefundTransactionEmailDto.d.ts +8 -1
  7. package/dist/api-sdk-v2/FileApi.d.ts +122 -122
  8. package/dist/api-sdk-v2/FileApi.js +247 -247
  9. package/dist/api-sdk-v2/ProductApi.d.ts +2 -2
  10. package/dist/api-sdk-v2/ProductApi.js +6 -6
  11. package/dist/api-sdk-v2/ServiceApi.d.ts +2 -2
  12. package/dist/api-sdk-v2/ServiceApi.js +6 -6
  13. package/dist/db-sdk-v2/FileDb.d.ts +122 -122
  14. package/dist/db-sdk-v2/FileDb.js +247 -247
  15. package/dist/db-sdk-v2/ProductDb.d.ts +2 -2
  16. package/dist/db-sdk-v2/ProductDb.js +6 -6
  17. package/dist/db-sdk-v2/ServiceDb.d.ts +2 -2
  18. package/dist/db-sdk-v2/ServiceDb.js +6 -6
  19. package/dist/entities-v2/File.d.ts +6 -0
  20. package/dist/entities-v2/File.js +5 -1
  21. package/dist/entities-v2/PaymentMethod.d.ts +10 -1
  22. package/dist/entities-v2/PaymentMethod.js +2 -0
  23. package/dist/entities-v2/Product.d.ts +7 -7
  24. package/dist/entities-v2/Product.js +6 -6
  25. package/dist/entities-v2/Service.d.ts +2 -2
  26. package/dist/records-v2/EmailRecord.d.ts +29 -0
  27. package/dist/records-v2/EmailRecord.js +36 -0
  28. package/dist/records-v2/ProductRecord.d.ts +20 -20
  29. package/dist/records-v2/ProductRecord.js +33 -33
  30. package/dist/records-v2/ServiceRecord.d.ts +19 -19
  31. package/dist/records-v2/ServiceRecord.js +32 -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 **604** actions.
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: 7
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: 7
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: 7
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 _servicevisitaudit?;
21
- private _blockagea55?;
22
- private _netomniaftth2stageinstallaudit?;
23
- private _netomniaftth1stageinstallaudit?;
24
- private _overlayreala55?;
25
- private _appointment?;
26
- private _ugexternalaudit?;
27
- private _billingrequest?;
28
- private _transaction?;
29
- private _creditnote?;
30
- private _address?;
31
- private _changereason?;
32
- private _discount?;
33
- private _paymentmethodrefund?;
34
- private _serviceappointment?;
35
- private _customerdevicerouter?;
36
- private _visit?;
37
- private _fingerprint?;
38
- private _yftoolaudit?;
39
- private _wayleaveaudit?;
40
- private _workorder?;
41
- private _orderitem?;
42
- private _internalinstallaudit?;
43
- private _knowledgearticle?;
44
- private _case?;
45
- private _activity?;
46
- private _netomniaftthservicevisitsheet?;
47
- private _yfstockcount?;
48
- private _onetouchswitch?;
49
- private _remediationrequiredreason?;
50
- private _invoice?;
51
- private _yfvanaudit?;
52
- private _uginstallationaudit?;
53
- private _ohinstallationaudit?;
54
- private _ugauditofinstallation?;
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 _yfequipmentcollection?;
58
- private _lead?;
59
- private _account?;
60
- private _paymentmethod?;
61
- private _sweepermaintenanceaudit?;
62
- private _blockagereporta55?;
63
- private _ohauditofinstallation?;
64
- private _ohinprogressaudit?;
65
- private _contractbuyout?;
66
- private _sitespecificriskassessmentoutcomeform?;
67
- private _remediationoutcomeform?;
68
- private _order?;
69
- private _call?;
70
- private _ohexternalaudit?;
71
- private _customerdeviceont?;
72
- private _yffieldservicevisit?;
73
- private _billingadjustment?;
74
- private _contact?;
75
- private _message?;
76
- private _netomniainstallverification?;
77
- private _email?;
78
- private _ugretroaudit?;
79
- private _ohretroaudit?;
80
- private _uginprogressaudit?;
81
- private _pgdirectdebitfile?;
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 servicevisitaudit(): ApiRecordLinkManager;
84
- get blockagea55(): ApiRecordLinkManager;
85
- get netomniaftth2stageinstallaudit(): ApiRecordLinkManager;
86
- get netomniaftth1stageinstallaudit(): ApiRecordLinkManager;
87
- get overlayreala55(): ApiRecordLinkManager;
88
- get appointment(): ApiRecordLinkManager;
89
- get ugexternalaudit(): ApiRecordLinkManager;
90
- get billingrequest(): ApiRecordLinkManager;
91
- get transaction(): ApiRecordLinkManager;
92
- get creditnote(): ApiRecordLinkManager;
93
- get address(): ApiRecordLinkManager;
94
- get changereason(): ApiRecordLinkManager;
95
- get discount(): ApiRecordLinkManager;
96
- get paymentmethodrefund(): ApiRecordLinkManager;
97
- get serviceappointment(): ApiRecordLinkManager;
98
- get customerdevicerouter(): ApiRecordLinkManager;
99
- get visit(): ApiRecordLinkManager;
100
- get fingerprint(): ApiRecordLinkManager;
101
- get yftoolaudit(): ApiRecordLinkManager;
102
- get wayleaveaudit(): ApiRecordLinkManager;
103
- get workorder(): ApiRecordLinkManager;
104
- get orderitem(): ApiRecordLinkManager;
105
- get internalinstallaudit(): ApiRecordLinkManager;
106
- get knowledgearticle(): ApiRecordLinkManager;
107
- get case(): ApiRecordLinkManager;
108
- get activity(): ApiRecordLinkManager;
109
- get netomniaftthservicevisitsheet(): ApiRecordLinkManager;
110
- get yfstockcount(): ApiRecordLinkManager;
111
- get onetouchswitch(): ApiRecordLinkManager;
112
- get remediationrequiredreason(): ApiRecordLinkManager;
113
- get invoice(): ApiRecordLinkManager;
114
- get yfvanaudit(): ApiRecordLinkManager;
115
- get uginstallationaudit(): ApiRecordLinkManager;
116
- get ohinstallationaudit(): ApiRecordLinkManager;
117
- get ugauditofinstallation(): ApiRecordLinkManager;
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 yfequipmentcollection(): ApiRecordLinkManager;
121
- get lead(): ApiRecordLinkManager;
122
- get account(): ApiRecordLinkManager;
123
- get paymentmethod(): ApiRecordLinkManager;
124
- get sweepermaintenanceaudit(): ApiRecordLinkManager;
125
- get blockagereporta55(): ApiRecordLinkManager;
126
- get ohauditofinstallation(): ApiRecordLinkManager;
127
- get ohinprogressaudit(): ApiRecordLinkManager;
128
- get contractbuyout(): ApiRecordLinkManager;
129
- get sitespecificriskassessmentoutcomeform(): ApiRecordLinkManager;
130
- get remediationoutcomeform(): ApiRecordLinkManager;
131
- get order(): ApiRecordLinkManager;
132
- get call(): ApiRecordLinkManager;
133
- get ohexternalaudit(): ApiRecordLinkManager;
134
- get customerdeviceont(): ApiRecordLinkManager;
135
- get yffieldservicevisit(): ApiRecordLinkManager;
136
- get billingadjustment(): ApiRecordLinkManager;
137
- get contact(): ApiRecordLinkManager;
138
- get message(): ApiRecordLinkManager;
139
- get netomniainstallverification(): ApiRecordLinkManager;
140
- get email(): ApiRecordLinkManager;
141
- get ugretroaudit(): ApiRecordLinkManager;
142
- get ohretroaudit(): ApiRecordLinkManager;
143
- get uginprogressaudit(): ApiRecordLinkManager;
144
- get pgdirectdebitfile(): ApiRecordLinkManager;
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>>>;