@d19n/youfibre-odin-sdk 2.0.163 → 2.0.165

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -354,7 +354,7 @@ This SDK includes **166** entities across **12** modules.
354
354
 
355
355
  ## Actions
356
356
 
357
- This SDK includes **681** actions.
357
+ This SDK includes **682** actions.
358
358
 
359
359
  ### Action Types
360
360
 
@@ -1434,6 +1434,7 @@ This SDK includes **681** actions.
1434
1434
  |--------|------|-------|
1435
1435
  | `CreateInboundCallEvent` | CREATE | k1.t-hEOJjsDb.NotificationModule.TwilioCallEvent.Create.CreateInboundCallEvent |
1436
1436
  | `CreateOutboundCallEvent` | CREATE | k1.t-hEOJjsDb.NotificationModule.TwilioCallEvent.Create.CreateOutboundCallEvent |
1437
+ | `UpdateCallEventAfterProcessing` | UPDATE | k1.t-hEOJjsDb.NotificationModule.TwilioCallEvent.Update.UpdateCallEventAfterProcessing |
1437
1438
 
1438
1439
  #### InvoiceItem
1439
1440
 
@@ -22,66 +22,71 @@ export interface CreateInboundCallEventMessage extends OdinRecordCreatedEvent<Cr
22
22
  /**
23
23
  * Properties for CreateInboundCallEvent action
24
24
  *
25
- * @property Required fields: 7
26
- * @property Optional fields: 0
25
+ * @property Required fields: 5
26
+ * @property Optional fields: 3
27
27
  */
28
28
  export interface CreateInboundCallEventProperties {
29
29
  /**
30
- * Body
30
+ * WebhookSource
31
31
  *
32
- * Body of the request received from Twilio
33
- * @type {JSON}
32
+ * Source of the captured event
33
+ * @type {ENUM}
34
34
  * @required
35
35
  */
36
- Body: string;
36
+ WebhookSource: string;
37
37
  /**
38
- * CallId
38
+ * ReceivedAt
39
39
  *
40
- * Reference of the call record
41
- * @type {LOOKUP}
40
+ * Moment of storing the event in odin
41
+ * @type {DATE_TIME}
42
42
  * @required
43
43
  */
44
- CallId: string;
44
+ ReceivedAt: string;
45
45
  /**
46
- * CallSid
46
+ * Query
47
47
  *
48
- * Twilio id of the call
49
- * @type {TEXT}
48
+ * Query parameters of the request received from Twilio
49
+ * @type {JSON}
50
50
  * @required
51
51
  */
52
- CallSid: string;
52
+ Query: string;
53
53
  /**
54
- * Query
54
+ * Body
55
55
  *
56
- * Query parameters of the request received from Twilio
56
+ * Body of the request received from Twilio
57
57
  * @type {JSON}
58
58
  * @required
59
59
  */
60
- Query: string;
60
+ Body: string;
61
61
  /**
62
- * ReceivedAt
62
+ * ProcessingStatus
63
63
  *
64
- * Moment of storing the event in odin
65
- * @type {DATE_TIME}
64
+ * Processing status in background
65
+ * @type {ENUM}
66
66
  * @required
67
67
  */
68
- ReceivedAt: string;
68
+ ProcessingStatus: string;
69
69
  /**
70
- * Title
70
+ * CallId
71
71
  *
72
- * Title of twilio call event record
72
+ * Reference of the call record
73
+ * @type {LOOKUP}
74
+ */
75
+ CallId?: string | null;
76
+ /**
77
+ * CallSid
78
+ *
79
+ * Twilio id of the call
73
80
  * @type {TEXT}
74
- * @required
75
81
  */
76
- Title: string;
82
+ CallSid?: string | null;
77
83
  /**
78
- * WebhookSource
84
+ * Title
79
85
  *
80
- * Source of the captured event
81
- * @type {ENUM}
82
- * @required
86
+ * Title of twilio call event record
87
+ * @type {TEXT}
83
88
  */
84
- WebhookSource: string;
89
+ Title?: string | null;
85
90
  }
86
91
  /**
87
92
  * CreateInboundCallEvent
@@ -22,66 +22,71 @@ export interface CreateOutboundCallEventMessage extends OdinRecordCreatedEvent<C
22
22
  /**
23
23
  * Properties for CreateOutboundCallEvent action
24
24
  *
25
- * @property Required fields: 7
26
- * @property Optional fields: 0
25
+ * @property Required fields: 5
26
+ * @property Optional fields: 3
27
27
  */
28
28
  export interface CreateOutboundCallEventProperties {
29
29
  /**
30
- * Body
30
+ * WebhookSource
31
31
  *
32
- * Body of the request received from Twilio
33
- * @type {JSON}
32
+ * Source of the captured event
33
+ * @type {ENUM}
34
34
  * @required
35
35
  */
36
- Body: string;
36
+ WebhookSource: string;
37
37
  /**
38
- * CallId
38
+ * ReceivedAt
39
39
  *
40
- * Reference of the call record
41
- * @type {LOOKUP}
40
+ * Moment of storing the event in odin
41
+ * @type {DATE_TIME}
42
42
  * @required
43
43
  */
44
- CallId: string;
44
+ ReceivedAt: string;
45
45
  /**
46
- * CallSid
46
+ * Query
47
47
  *
48
- * Twilio id of the call
49
- * @type {TEXT}
48
+ * Query parameters of the request received from Twilio
49
+ * @type {JSON}
50
50
  * @required
51
51
  */
52
- CallSid: string;
52
+ Query: string;
53
53
  /**
54
- * Query
54
+ * Body
55
55
  *
56
- * Query parameters of the request received from Twilio
56
+ * Body of the request received from Twilio
57
57
  * @type {JSON}
58
58
  * @required
59
59
  */
60
- Query: string;
60
+ Body: string;
61
61
  /**
62
- * ReceivedAt
62
+ * ProcessingStatus
63
63
  *
64
- * Moment of storing the event in odin
65
- * @type {DATE_TIME}
64
+ * Processing status in background
65
+ * @type {ENUM}
66
66
  * @required
67
67
  */
68
- ReceivedAt: string;
68
+ ProcessingStatus: string;
69
69
  /**
70
- * Title
70
+ * CallId
71
71
  *
72
- * Title of twilio call event record
72
+ * Reference of the call record
73
+ * @type {LOOKUP}
74
+ */
75
+ CallId?: string | null;
76
+ /**
77
+ * CallSid
78
+ *
79
+ * Twilio id of the call
73
80
  * @type {TEXT}
74
- * @required
75
81
  */
76
- Title: string;
82
+ CallSid?: string | null;
77
83
  /**
78
- * WebhookSource
84
+ * Title
79
85
  *
80
- * Source of the captured event
81
- * @type {ENUM}
82
- * @required
86
+ * Title of twilio call event record
87
+ * @type {TEXT}
83
88
  */
84
- WebhookSource: string;
89
+ Title?: string | null;
85
90
  }
86
91
  /**
87
92
  * CreateOutboundCallEvent
@@ -0,0 +1,103 @@
1
+ /**
2
+ * UpdateCallEventAfterProcessing Action DTO
3
+ *
4
+ * Update call event after processing
5
+ *
6
+ * @module NotificationModule
7
+ * @entity TwilioCallEvent
8
+ * @actionKey UpdateCallEventAfterProcessing
9
+ * @event k1.t-hEOJjsDb.NotificationModule.TwilioCallEvent.Update.UpdateCallEventAfterProcessing
10
+ *
11
+ * AUTO-GENERATED - DO NOT EDIT DIRECTLY
12
+ */
13
+ import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
14
+ /**
15
+ * RabbitMQ message payload for UpdateCallEventAfterProcessing updated events
16
+ *
17
+ * @event k1.t-hEOJjsDb.NotificationModule.TwilioCallEvent.Update.UpdateCallEventAfterProcessing
18
+ */
19
+ export interface UpdateCallEventAfterProcessingMessage extends OdinRecordUpdatedEvent<UpdateCallEventAfterProcessingDto, UpdateCallEventAfterProcessingProperties> {
20
+ }
21
+ /**
22
+ * Properties for UpdateCallEventAfterProcessing action
23
+ *
24
+ * @property Required fields: 3
25
+ * @property Optional fields: 2
26
+ */
27
+ export interface UpdateCallEventAfterProcessingProperties {
28
+ /**
29
+ * ProcessedAt
30
+ *
31
+ * Time of processing in odin system
32
+ * @type {DATE_TIME}
33
+ * @required
34
+ */
35
+ ProcessedAt: string;
36
+ /**
37
+ * ProcessingStatus
38
+ *
39
+ * Processing status in background
40
+ * @type {ENUM}
41
+ * @required
42
+ */
43
+ ProcessingStatus: string;
44
+ /**
45
+ * Title
46
+ *
47
+ * Title of twilio call event record
48
+ * @type {TEXT}
49
+ * @required
50
+ */
51
+ Title: string;
52
+ /**
53
+ * CallId
54
+ *
55
+ * Reference of the call record
56
+ * @type {LOOKUP}
57
+ */
58
+ CallId?: string | null;
59
+ /**
60
+ * CallSid
61
+ *
62
+ * Twilio id of the call
63
+ * @type {TEXT}
64
+ */
65
+ CallSid?: string | null;
66
+ }
67
+ /**
68
+ * UpdateCallEventAfterProcessing
69
+ *
70
+ * Update call event after processing
71
+ *
72
+ * @actionType UPDATE - Updates an existing TwilioCallEvent record
73
+ * @module NotificationModule
74
+ * @entity TwilioCallEvent
75
+ * @event k1.t-hEOJjsDb.NotificationModule.TwilioCallEvent.Update.UpdateCallEventAfterProcessing
76
+ * @permission schema.action.updatecalleventafterprocessing.trigger
77
+ * @benchmark This action is tracked for performance benchmarks
78
+ */
79
+ export declare class UpdateCallEventAfterProcessingDto extends OdinRecordUpdateDto<UpdateCallEventAfterProcessingProperties> {
80
+ /** Used by SDK generators to identify action type */
81
+ static readonly ACTION_TYPE = "UPDATE";
82
+ static readonly ACTION_KEY = "UpdateCallEventAfterProcessing";
83
+ static readonly MODULE_NAME = "NotificationModule";
84
+ static readonly ENTITIES: string[];
85
+ static readonly EVENT_NAME = "k1.t-hEOJjsDb.NotificationModule.TwilioCallEvent.Update.UpdateCallEventAfterProcessing";
86
+ static readonly PERMISSION = "schema.action.updatecalleventafterprocessing.trigger";
87
+ /** Step metadata - entity this action targets */
88
+ static readonly STEP_ENTITY = "NotificationModule:TwilioCallEvent";
89
+ static readonly STEP_SCHEMA_ID = "52cc16be-2010-453f-a1c9-142ca95f9a54";
90
+ static readonly STEP_SCHEMA_ACTION_ID = "a019e00f-da19-4086-85e3-c299b671cf87";
91
+ static readonly AUTO_LINK_PARENT = false;
92
+ readonly actionName: string;
93
+ readonly schemaActionId: string;
94
+ readonly entity: string;
95
+ constructor(record: OdinRecord<any> | {
96
+ id: string;
97
+ entity: string;
98
+ type?: string;
99
+ }, properties: UpdateCallEventAfterProcessingProperties, options?: {
100
+ journeyId?: string;
101
+ stageKey?: string;
102
+ });
103
+ }
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ /**
3
+ * UpdateCallEventAfterProcessing Action DTO
4
+ *
5
+ * Update call event after processing
6
+ *
7
+ * @module NotificationModule
8
+ * @entity TwilioCallEvent
9
+ * @actionKey UpdateCallEventAfterProcessing
10
+ * @event k1.t-hEOJjsDb.NotificationModule.TwilioCallEvent.Update.UpdateCallEventAfterProcessing
11
+ *
12
+ * AUTO-GENERATED - DO NOT EDIT DIRECTLY
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.UpdateCallEventAfterProcessingDto = void 0;
16
+ const core_1 = require("@d19n/odin-types/dist/core");
17
+ /**
18
+ * UpdateCallEventAfterProcessing
19
+ *
20
+ * Update call event after processing
21
+ *
22
+ * @actionType UPDATE - Updates an existing TwilioCallEvent record
23
+ * @module NotificationModule
24
+ * @entity TwilioCallEvent
25
+ * @event k1.t-hEOJjsDb.NotificationModule.TwilioCallEvent.Update.UpdateCallEventAfterProcessing
26
+ * @permission schema.action.updatecalleventafterprocessing.trigger
27
+ * @benchmark This action is tracked for performance benchmarks
28
+ */
29
+ class UpdateCallEventAfterProcessingDto extends core_1.OdinRecordUpdateDto {
30
+ constructor(record, properties, options) {
31
+ super({
32
+ id: record.id,
33
+ entity: record.entity,
34
+ type: record.type,
35
+ properties,
36
+ journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
37
+ stageKey: options === null || options === void 0 ? void 0 : options.stageKey,
38
+ });
39
+ this.actionName = 'UpdateCallEventAfterProcessing';
40
+ this.schemaActionId = 'a019e00f-da19-4086-85e3-c299b671cf87';
41
+ this.entity = 'NotificationModule:TwilioCallEvent';
42
+ }
43
+ }
44
+ exports.UpdateCallEventAfterProcessingDto = UpdateCallEventAfterProcessingDto;
45
+ /** Used by SDK generators to identify action type */
46
+ UpdateCallEventAfterProcessingDto.ACTION_TYPE = 'UPDATE';
47
+ UpdateCallEventAfterProcessingDto.ACTION_KEY = 'UpdateCallEventAfterProcessing';
48
+ UpdateCallEventAfterProcessingDto.MODULE_NAME = 'NotificationModule';
49
+ UpdateCallEventAfterProcessingDto.ENTITIES = ['TwilioCallEvent'];
50
+ UpdateCallEventAfterProcessingDto.EVENT_NAME = 'k1.t-hEOJjsDb.NotificationModule.TwilioCallEvent.Update.UpdateCallEventAfterProcessing';
51
+ UpdateCallEventAfterProcessingDto.PERMISSION = 'schema.action.updatecalleventafterprocessing.trigger';
52
+ /** Step metadata - entity this action targets */
53
+ UpdateCallEventAfterProcessingDto.STEP_ENTITY = 'NotificationModule:TwilioCallEvent';
54
+ UpdateCallEventAfterProcessingDto.STEP_SCHEMA_ID = '52cc16be-2010-453f-a1c9-142ca95f9a54';
55
+ UpdateCallEventAfterProcessingDto.STEP_SCHEMA_ACTION_ID = 'a019e00f-da19-4086-85e3-c299b671cf87';
56
+ UpdateCallEventAfterProcessingDto.AUTO_LINK_PARENT = false;
@@ -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>>>;