@d19n/youfibre-odin-sdk 1.0.229 → 1.0.231
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/ChangeBillingModeDto.d.ts +81 -0
- package/dist/actions-v2/ChangeBillingModeDto.js +58 -0
- package/dist/api-sdk-v2/FileApi.d.ts +120 -120
- package/dist/api-sdk-v2/FileApi.js +244 -244
- package/dist/entities-v2/Account.d.ts +39 -3
- package/dist/entities-v2/Account.js +23 -3
- package/dist/entities-v2/BillingAdjustment.d.ts +67 -67
- package/dist/entities-v2/BillingAdjustment.js +43 -43
- package/dist/entities-v2/BusinessAccount.d.ts +36 -0
- package/dist/entities-v2/BusinessAccount.js +21 -1
- package/dist/entities-v2/CreditNote.d.ts +19 -19
- package/dist/entities-v2/CreditNote.js +6 -6
- package/dist/entities-v2/File.d.ts +0 -6
- package/dist/entities-v2/File.js +1 -5
- package/dist/entities-v2/Invoice.d.ts +44 -8
- package/dist/entities-v2/Invoice.js +23 -3
- package/dist/entities-v2/InvoiceItem.d.ts +28 -0
- package/dist/entities-v2/InvoiceItem.js +8 -0
- package/dist/entities-v2/MultipleAccount.d.ts +36 -0
- package/dist/entities-v2/MultipleAccount.js +21 -1
- package/dist/entities-v2/OhInstallationAudit.d.ts +71 -71
- package/dist/entities-v2/OhInstallationAudit.js +43 -43
- package/dist/entities-v2/OutcomeFormBlockageA55.d.ts +114 -114
- package/dist/entities-v2/OutcomeFormBlockageA55.js +78 -78
- package/dist/entities-v2/PrimaryAccount.d.ts +36 -0
- package/dist/entities-v2/PrimaryAccount.js +21 -1
- package/dist/entities-v2/ResellerAccount.d.ts +36 -0
- package/dist/entities-v2/ResellerAccount.js +21 -1
- package/dist/entities-v2/ServiceAccount.d.ts +274 -0
- package/dist/entities-v2/ServiceAccount.js +174 -0
- package/dist/records-v2/AccountRecord.d.ts +31 -7
- package/dist/records-v2/AccountRecord.js +42 -6
- package/dist/records-v2/index.d.ts +1 -1
- package/dist/records-v2/index.js +4 -4
- package/package.json +1 -1
- package/src/README.md +15 -13
- package/src/actions-v2/ChangeBillingModeDto.ts +102 -0
- package/src/api-sdk-v2/FileApi.ts +378 -378
- package/src/entities-v2/Account.ts +38 -2
- package/src/entities-v2/BillingAdjustment.ts +66 -66
- package/src/entities-v2/BusinessAccount.ts +36 -0
- package/src/entities-v2/CreditNote.ts +19 -19
- package/src/entities-v2/File.ts +0 -6
- package/src/entities-v2/Invoice.ts +44 -8
- package/src/entities-v2/InvoiceItem.ts +28 -0
- package/src/entities-v2/MultipleAccount.ts +36 -0
- package/src/entities-v2/OhInstallationAudit.ts +70 -70
- package/src/entities-v2/OutcomeFormBlockageA55.ts +114 -114
- package/src/entities-v2/PrimaryAccount.ts +36 -0
- package/src/entities-v2/ResellerAccount.ts +36 -0
- package/src/entities-v2/ServiceAccount.ts +295 -0
- package/src/records-v2/AccountRecord.ts +58 -8
- package/src/records-v2/index.ts +1 -1
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ChangeBillingMode Action DTO
|
|
3
|
+
*
|
|
4
|
+
* Change the account billing mode between ORDER and ACCOUNT
|
|
5
|
+
*
|
|
6
|
+
* @module CrmModule
|
|
7
|
+
* @entity Account
|
|
8
|
+
* @actionKey ChangeBillingMode
|
|
9
|
+
* @event AccountBillingModelChanged
|
|
10
|
+
*
|
|
11
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
12
|
+
*/
|
|
13
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
14
|
+
/**
|
|
15
|
+
* Properties for ChangeBillingMode action
|
|
16
|
+
*
|
|
17
|
+
* @property Required fields: 0
|
|
18
|
+
* @property Optional fields: 2
|
|
19
|
+
*/
|
|
20
|
+
export interface ChangeBillingModeProperties {
|
|
21
|
+
/**
|
|
22
|
+
* BillingMode
|
|
23
|
+
*
|
|
24
|
+
* Controls how invoices are generated for this account. ORDER (default): each order generates its own invoice on its own billing cycle. ACCOUNT: all orders are consolidated into a single invoice on the account billing day.
|
|
25
|
+
* @type {ENUM}
|
|
26
|
+
*/
|
|
27
|
+
BillingMode?: string;
|
|
28
|
+
/**
|
|
29
|
+
* BillingDay
|
|
30
|
+
*
|
|
31
|
+
* Day of month when consolidated invoices are generated. Required when BillingMode is ACCOUNT. Must be 1-28 to avoid end-of-month date issues.
|
|
32
|
+
* @type {NUMBER}
|
|
33
|
+
*/
|
|
34
|
+
BillingDay?: number;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* ChangeBillingMode
|
|
38
|
+
*
|
|
39
|
+
* Change the account billing mode between ORDER and ACCOUNT
|
|
40
|
+
*
|
|
41
|
+
* @actionType UPDATE - Updates an existing Account record
|
|
42
|
+
* @module CrmModule
|
|
43
|
+
* @entity Account
|
|
44
|
+
* @event AccountBillingModelChanged
|
|
45
|
+
* @permission schema.action.changebillingmode.trigger
|
|
46
|
+
* @benchmark This action is tracked for performance benchmarks
|
|
47
|
+
*/
|
|
48
|
+
export declare class ChangeBillingModeDto extends OdinRecordUpdateDto<ChangeBillingModeProperties> {
|
|
49
|
+
/** Used by SDK generators to identify action type */
|
|
50
|
+
static readonly ACTION_TYPE = "UPDATE";
|
|
51
|
+
static readonly ACTION_KEY = "ChangeBillingMode";
|
|
52
|
+
static readonly MODULE_NAME = "CrmModule";
|
|
53
|
+
static readonly ENTITIES: string[];
|
|
54
|
+
static readonly EVENT_NAME = "AccountBillingModelChanged";
|
|
55
|
+
static readonly PERMISSION = "schema.action.changebillingmode.trigger";
|
|
56
|
+
readonly actionName: string;
|
|
57
|
+
readonly schemaActionId: string;
|
|
58
|
+
readonly entity: string;
|
|
59
|
+
constructor(record: OdinRecord<any> | {
|
|
60
|
+
id: string;
|
|
61
|
+
entity: string;
|
|
62
|
+
type?: string;
|
|
63
|
+
}, properties: ChangeBillingModeProperties, options?: {
|
|
64
|
+
journeyId?: string;
|
|
65
|
+
stageKey?: string;
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* RabbitMQ message payload for ChangeBillingMode updated events
|
|
70
|
+
*
|
|
71
|
+
* @event AccountBillingModelChanged
|
|
72
|
+
*/
|
|
73
|
+
export interface ChangeBillingModeMessage extends OdinRecordUpdatedEvent<ChangeBillingModeDto, ChangeBillingModeProperties> {
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* RabbitMQ routing key for ChangeBillingMode events
|
|
77
|
+
*
|
|
78
|
+
* Subscribe to this key to receive notifications when this action completes.
|
|
79
|
+
* @event AccountBillingModelChanged
|
|
80
|
+
*/
|
|
81
|
+
export declare const ROUTING_KEY_ACCOUNT_BILLING_MODEL_CHANGED = "AccountBillingModelChanged";
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* ChangeBillingMode Action DTO
|
|
4
|
+
*
|
|
5
|
+
* Change the account billing mode between ORDER and ACCOUNT
|
|
6
|
+
*
|
|
7
|
+
* @module CrmModule
|
|
8
|
+
* @entity Account
|
|
9
|
+
* @actionKey ChangeBillingMode
|
|
10
|
+
* @event AccountBillingModelChanged
|
|
11
|
+
*
|
|
12
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.ROUTING_KEY_ACCOUNT_BILLING_MODEL_CHANGED = exports.ChangeBillingModeDto = void 0;
|
|
16
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
17
|
+
/**
|
|
18
|
+
* ChangeBillingMode
|
|
19
|
+
*
|
|
20
|
+
* Change the account billing mode between ORDER and ACCOUNT
|
|
21
|
+
*
|
|
22
|
+
* @actionType UPDATE - Updates an existing Account record
|
|
23
|
+
* @module CrmModule
|
|
24
|
+
* @entity Account
|
|
25
|
+
* @event AccountBillingModelChanged
|
|
26
|
+
* @permission schema.action.changebillingmode.trigger
|
|
27
|
+
* @benchmark This action is tracked for performance benchmarks
|
|
28
|
+
*/
|
|
29
|
+
class ChangeBillingModeDto 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 = 'ChangeBillingMode';
|
|
40
|
+
this.schemaActionId = '805e0261-bc3b-41e3-8a69-79d4152613ab';
|
|
41
|
+
this.entity = 'CrmModule:Account';
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.ChangeBillingModeDto = ChangeBillingModeDto;
|
|
45
|
+
/** Used by SDK generators to identify action type */
|
|
46
|
+
ChangeBillingModeDto.ACTION_TYPE = 'UPDATE';
|
|
47
|
+
ChangeBillingModeDto.ACTION_KEY = 'ChangeBillingMode';
|
|
48
|
+
ChangeBillingModeDto.MODULE_NAME = 'CrmModule';
|
|
49
|
+
ChangeBillingModeDto.ENTITIES = ['Account'];
|
|
50
|
+
ChangeBillingModeDto.EVENT_NAME = 'AccountBillingModelChanged';
|
|
51
|
+
ChangeBillingModeDto.PERMISSION = 'schema.action.changebillingmode.trigger';
|
|
52
|
+
/**
|
|
53
|
+
* RabbitMQ routing key for ChangeBillingMode events
|
|
54
|
+
*
|
|
55
|
+
* Subscribe to this key to receive notifications when this action completes.
|
|
56
|
+
* @event AccountBillingModelChanged
|
|
57
|
+
*/
|
|
58
|
+
exports.ROUTING_KEY_ACCOUNT_BILLING_MODEL_CHANGED = 'AccountBillingModelChanged';
|
|
@@ -17,129 +17,129 @@ 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 _orderitem__file?;
|
|
26
|
-
private _order__file?;
|
|
27
|
-
private _internalinstallaudit_file?;
|
|
28
|
-
private _lead__file?;
|
|
29
|
-
private _contact__file?;
|
|
30
|
-
private _knowledgearticle__file?;
|
|
31
|
-
private _case__file?;
|
|
32
|
-
private _billingrequest__file?;
|
|
33
|
-
private _transaction__file?;
|
|
34
|
-
private _call__file?;
|
|
35
|
-
private _paymentmethod__file?;
|
|
36
|
-
private _customerdeviceont__file?;
|
|
37
|
-
private _creditnote__file?;
|
|
38
|
-
private _address__file?;
|
|
39
|
-
private _changereason__file?;
|
|
40
|
-
private _discount__file?;
|
|
41
|
-
private _paymentmethodrefund__file?;
|
|
42
|
-
private _serviceappointment__file?;
|
|
43
|
-
private _billingadjustment__file?;
|
|
44
|
-
private _activity__file?;
|
|
45
|
-
private _netomniainstallverification__file?;
|
|
46
|
-
private _netomniaftthservicevisitsheet__file?;
|
|
47
|
-
private _netomniaftth1stageinstallaudit__file?;
|
|
48
|
-
private _customerdevicerouter__file?;
|
|
49
|
-
private _visit__file?;
|
|
50
|
-
private _netomniaftth2stageinstallaudit__file?;
|
|
51
|
-
private _yfstockcount__file?;
|
|
52
|
-
private _yfequipmentcollection__file?;
|
|
53
|
-
private _onetouchswitch_file?;
|
|
54
|
-
private _yffieldservicevisit__file?;
|
|
55
|
-
private _remediationrequiredreason__file?;
|
|
56
|
-
private _invoice__file?;
|
|
57
|
-
private _yfvanaudit_file?;
|
|
58
|
-
private _fingerprint__file?;
|
|
20
|
+
private _appointment?;
|
|
21
|
+
private _ugexternalaudit?;
|
|
22
|
+
private _yftoolaudit?;
|
|
23
|
+
private _wayleaveaudit?;
|
|
24
|
+
private _file__note?;
|
|
59
25
|
private _note__file?;
|
|
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
|
|
26
|
+
private _workorder?;
|
|
27
|
+
private _orderitem?;
|
|
28
|
+
private _order?;
|
|
29
|
+
private _internalinstallaudit?;
|
|
30
|
+
private _lead?;
|
|
31
|
+
private _contact?;
|
|
32
|
+
private _knowledgearticle?;
|
|
33
|
+
private _case?;
|
|
34
|
+
private _billingrequest?;
|
|
35
|
+
private _transaction?;
|
|
36
|
+
private _call?;
|
|
37
|
+
private _paymentmethod?;
|
|
38
|
+
private _customerdeviceont?;
|
|
39
|
+
private _creditnote?;
|
|
40
|
+
private _address?;
|
|
41
|
+
private _changereason?;
|
|
42
|
+
private _discount?;
|
|
43
|
+
private _paymentmethodrefund?;
|
|
44
|
+
private _serviceappointment?;
|
|
45
|
+
private _billingadjustment?;
|
|
46
|
+
private _activity?;
|
|
47
|
+
private _netomniainstallverification?;
|
|
48
|
+
private _netomniaftthservicevisitsheet?;
|
|
49
|
+
private _netomniaftth1stageinstallaudit?;
|
|
50
|
+
private _customerdevicerouter?;
|
|
51
|
+
private _visit?;
|
|
52
|
+
private _netomniaftth2stageinstallaudit?;
|
|
53
|
+
private _yfstockcount?;
|
|
54
|
+
private _yfequipmentcollection?;
|
|
55
|
+
private _onetouchswitch?;
|
|
56
|
+
private _yffieldservicevisit?;
|
|
57
|
+
private _remediationrequiredreason?;
|
|
58
|
+
private _invoice?;
|
|
59
|
+
private _yfvanaudit?;
|
|
60
|
+
private _fingerprint?;
|
|
61
|
+
private _sweepermaintenanceaudit?;
|
|
62
|
+
private _blockagereporta55?;
|
|
63
|
+
private _uginstallationaudit?;
|
|
64
|
+
private _ohinstallationaudit?;
|
|
65
|
+
private _servicevisitaudit?;
|
|
66
|
+
private _ohauditofinstallation?;
|
|
67
|
+
private _ugauditofinstallation?;
|
|
68
|
+
private _ugretroaudit?;
|
|
69
|
+
private _ohretroaudit?;
|
|
70
|
+
private _remediationoutcomeform?;
|
|
71
|
+
private _uginprogressaudit?;
|
|
72
|
+
private _ohinprogressaudit?;
|
|
73
|
+
private _blockagea55?;
|
|
74
|
+
private _overlayreala55?;
|
|
75
|
+
private _ohexternalaudit?;
|
|
76
|
+
private _email?;
|
|
77
|
+
private _message?;
|
|
78
|
+
private _contractbuyout?;
|
|
79
|
+
private _account?;
|
|
80
|
+
private _sitespecificriskassessmentoutcomeform?;
|
|
81
81
|
constructor(authParams?: OauthParams, authToken?: string);
|
|
82
|
-
get
|
|
83
|
-
get
|
|
84
|
-
get
|
|
85
|
-
get
|
|
86
|
-
get
|
|
87
|
-
get orderitem__file(): ApiRecordLinkManager;
|
|
88
|
-
get order__file(): ApiRecordLinkManager;
|
|
89
|
-
get internalinstallaudit_file(): ApiRecordLinkManager;
|
|
90
|
-
get lead__file(): ApiRecordLinkManager;
|
|
91
|
-
get contact__file(): ApiRecordLinkManager;
|
|
92
|
-
get knowledgearticle__file(): ApiRecordLinkManager;
|
|
93
|
-
get case__file(): ApiRecordLinkManager;
|
|
94
|
-
get billingrequest__file(): ApiRecordLinkManager;
|
|
95
|
-
get transaction__file(): ApiRecordLinkManager;
|
|
96
|
-
get call__file(): ApiRecordLinkManager;
|
|
97
|
-
get paymentmethod__file(): ApiRecordLinkManager;
|
|
98
|
-
get customerdeviceont__file(): ApiRecordLinkManager;
|
|
99
|
-
get creditnote__file(): ApiRecordLinkManager;
|
|
100
|
-
get address__file(): ApiRecordLinkManager;
|
|
101
|
-
get changereason__file(): ApiRecordLinkManager;
|
|
102
|
-
get discount__file(): ApiRecordLinkManager;
|
|
103
|
-
get paymentmethodrefund__file(): ApiRecordLinkManager;
|
|
104
|
-
get serviceappointment__file(): ApiRecordLinkManager;
|
|
105
|
-
get billingadjustment__file(): ApiRecordLinkManager;
|
|
106
|
-
get activity__file(): ApiRecordLinkManager;
|
|
107
|
-
get netomniainstallverification__file(): ApiRecordLinkManager;
|
|
108
|
-
get netomniaftthservicevisitsheet__file(): ApiRecordLinkManager;
|
|
109
|
-
get netomniaftth1stageinstallaudit__file(): ApiRecordLinkManager;
|
|
110
|
-
get customerdevicerouter__file(): ApiRecordLinkManager;
|
|
111
|
-
get visit__file(): ApiRecordLinkManager;
|
|
112
|
-
get netomniaftth2stageinstallaudit__file(): ApiRecordLinkManager;
|
|
113
|
-
get yfstockcount__file(): ApiRecordLinkManager;
|
|
114
|
-
get yfequipmentcollection__file(): ApiRecordLinkManager;
|
|
115
|
-
get onetouchswitch_file(): ApiRecordLinkManager;
|
|
116
|
-
get yffieldservicevisit__file(): ApiRecordLinkManager;
|
|
117
|
-
get remediationrequiredreason__file(): ApiRecordLinkManager;
|
|
118
|
-
get invoice__file(): ApiRecordLinkManager;
|
|
119
|
-
get yfvanaudit_file(): ApiRecordLinkManager;
|
|
120
|
-
get fingerprint__file(): ApiRecordLinkManager;
|
|
82
|
+
get appointment(): ApiRecordLinkManager;
|
|
83
|
+
get ugexternalaudit(): ApiRecordLinkManager;
|
|
84
|
+
get yftoolaudit(): ApiRecordLinkManager;
|
|
85
|
+
get wayleaveaudit(): ApiRecordLinkManager;
|
|
86
|
+
get file__note(): ApiRecordLinkManager;
|
|
121
87
|
get note__file(): ApiRecordLinkManager;
|
|
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
|
|
88
|
+
get workorder(): ApiRecordLinkManager;
|
|
89
|
+
get orderitem(): ApiRecordLinkManager;
|
|
90
|
+
get order(): ApiRecordLinkManager;
|
|
91
|
+
get internalinstallaudit(): ApiRecordLinkManager;
|
|
92
|
+
get lead(): ApiRecordLinkManager;
|
|
93
|
+
get contact(): ApiRecordLinkManager;
|
|
94
|
+
get knowledgearticle(): ApiRecordLinkManager;
|
|
95
|
+
get case(): ApiRecordLinkManager;
|
|
96
|
+
get billingrequest(): ApiRecordLinkManager;
|
|
97
|
+
get transaction(): ApiRecordLinkManager;
|
|
98
|
+
get call(): ApiRecordLinkManager;
|
|
99
|
+
get paymentmethod(): ApiRecordLinkManager;
|
|
100
|
+
get customerdeviceont(): ApiRecordLinkManager;
|
|
101
|
+
get creditnote(): ApiRecordLinkManager;
|
|
102
|
+
get address(): ApiRecordLinkManager;
|
|
103
|
+
get changereason(): ApiRecordLinkManager;
|
|
104
|
+
get discount(): ApiRecordLinkManager;
|
|
105
|
+
get paymentmethodrefund(): ApiRecordLinkManager;
|
|
106
|
+
get serviceappointment(): ApiRecordLinkManager;
|
|
107
|
+
get billingadjustment(): ApiRecordLinkManager;
|
|
108
|
+
get activity(): ApiRecordLinkManager;
|
|
109
|
+
get netomniainstallverification(): ApiRecordLinkManager;
|
|
110
|
+
get netomniaftthservicevisitsheet(): ApiRecordLinkManager;
|
|
111
|
+
get netomniaftth1stageinstallaudit(): ApiRecordLinkManager;
|
|
112
|
+
get customerdevicerouter(): ApiRecordLinkManager;
|
|
113
|
+
get visit(): ApiRecordLinkManager;
|
|
114
|
+
get netomniaftth2stageinstallaudit(): ApiRecordLinkManager;
|
|
115
|
+
get yfstockcount(): ApiRecordLinkManager;
|
|
116
|
+
get yfequipmentcollection(): ApiRecordLinkManager;
|
|
117
|
+
get onetouchswitch(): ApiRecordLinkManager;
|
|
118
|
+
get yffieldservicevisit(): ApiRecordLinkManager;
|
|
119
|
+
get remediationrequiredreason(): ApiRecordLinkManager;
|
|
120
|
+
get invoice(): ApiRecordLinkManager;
|
|
121
|
+
get yfvanaudit(): ApiRecordLinkManager;
|
|
122
|
+
get fingerprint(): ApiRecordLinkManager;
|
|
123
|
+
get sweepermaintenanceaudit(): ApiRecordLinkManager;
|
|
124
|
+
get blockagereporta55(): ApiRecordLinkManager;
|
|
125
|
+
get uginstallationaudit(): ApiRecordLinkManager;
|
|
126
|
+
get ohinstallationaudit(): ApiRecordLinkManager;
|
|
127
|
+
get servicevisitaudit(): ApiRecordLinkManager;
|
|
128
|
+
get ohauditofinstallation(): ApiRecordLinkManager;
|
|
129
|
+
get ugauditofinstallation(): ApiRecordLinkManager;
|
|
130
|
+
get ugretroaudit(): ApiRecordLinkManager;
|
|
131
|
+
get ohretroaudit(): ApiRecordLinkManager;
|
|
132
|
+
get remediationoutcomeform(): ApiRecordLinkManager;
|
|
133
|
+
get uginprogressaudit(): ApiRecordLinkManager;
|
|
134
|
+
get ohinprogressaudit(): ApiRecordLinkManager;
|
|
135
|
+
get blockagea55(): ApiRecordLinkManager;
|
|
136
|
+
get overlayreala55(): ApiRecordLinkManager;
|
|
137
|
+
get ohexternalaudit(): ApiRecordLinkManager;
|
|
138
|
+
get email(): ApiRecordLinkManager;
|
|
139
|
+
get message(): ApiRecordLinkManager;
|
|
140
|
+
get contractbuyout(): ApiRecordLinkManager;
|
|
141
|
+
get account(): ApiRecordLinkManager;
|
|
142
|
+
get sitespecificriskassessmentoutcomeform(): ApiRecordLinkManager;
|
|
143
143
|
setRecord(sourceRecord: any): void;
|
|
144
144
|
schema(): Promise<import("@d19n/odin-types/dist/core").OdinSchema>;
|
|
145
145
|
search(params: Partial<OdinSearchV2>): Promise<import("@d19n/odin-types/dist/core/interfaces/v2.db.interfaces").OdinSearchResponse<import("@d19n/odin-types/dist/core").OdinRecord<FileProperties>>>;
|