@d19n/youfibre-odin-sdk 2.0.48 → 2.0.50
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/DeleteAffiliateCodeDto.d.ts +13 -0
- package/dist/actions-v2/DeleteAffiliateCodeDto.js +14 -0
- package/dist/entities-v2/PaymentMethod.d.ts +17 -15
- package/dist/entities-v2/PaymentMethod.js +4 -4
- package/dist/entities-v2/Team.d.ts +6 -6
- package/dist/entities-v2/Team.js +6 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -352,7 +352,7 @@ This SDK includes **164** entities across **12** modules.
|
|
|
352
352
|
|
|
353
353
|
## Actions
|
|
354
354
|
|
|
355
|
-
This SDK includes **
|
|
355
|
+
This SDK includes **595** actions.
|
|
356
356
|
|
|
357
357
|
### Action Types
|
|
358
358
|
|
|
@@ -1718,6 +1718,7 @@ This SDK includes **594** actions.
|
|
|
1718
1718
|
|
|
1719
1719
|
| Action | Type | Event |
|
|
1720
1720
|
|--------|------|-------|
|
|
1721
|
+
| `DeleteAffiliateCode` | UPDATE | - |
|
|
1721
1722
|
| `DeleteOffer` | UPDATE | - |
|
|
1722
1723
|
| `DeleteProduct` | UPDATE | - |
|
|
1723
1724
|
| `DeleteTeam` | UPDATE | - |
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DeleteAffiliateCode Action DTO
|
|
3
|
+
*
|
|
4
|
+
* Delete affiliate code
|
|
5
|
+
*
|
|
6
|
+
* @module CrmModule
|
|
7
|
+
* @entity AffiliateCode
|
|
8
|
+
* @actionKey DeleteAffiliateCode
|
|
9
|
+
* @event k1.t-hEOJjsDb.CrmModule.AffiliateCode.Delete.DeleteAffiliateCode
|
|
10
|
+
*
|
|
11
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
12
|
+
*/
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DeleteAffiliateCode Action DTO
|
|
4
|
+
*
|
|
5
|
+
* Delete affiliate code
|
|
6
|
+
*
|
|
7
|
+
* @module CrmModule
|
|
8
|
+
* @entity AffiliateCode
|
|
9
|
+
* @actionKey DeleteAffiliateCode
|
|
10
|
+
* @event k1.t-hEOJjsDb.CrmModule.AffiliateCode.Delete.DeleteAffiliateCode
|
|
11
|
+
*
|
|
12
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -127,14 +127,14 @@ export declare enum PaymentMethodPropertyKeys {
|
|
|
127
127
|
BankName = "BankName",
|
|
128
128
|
/** Related Contact to the Payment Method (Finance - PaymentMethod) */
|
|
129
129
|
ContactId = "ContactId",
|
|
130
|
-
/** This is a private field used for creating a new payment method, no data is stored here. (Finance - PaymentMethod) */
|
|
131
|
-
BranchCode = "_BranchCode",
|
|
132
130
|
/** payment provider (Finance - PaymentMethod) */
|
|
133
131
|
Provider = "Provider",
|
|
134
|
-
/** Private field use for forms creating the payment method. No data is stored here. (Finance - PaymentMethod) */
|
|
135
|
-
AccountNumber = "_AccountNumber",
|
|
136
132
|
/** 2 or 4 ending digits of the bank account number (Finance - PaymentMethod) */
|
|
137
|
-
BankAccountNumberEnding = "BankAccountNumberEnding"
|
|
133
|
+
BankAccountNumberEnding = "BankAccountNumberEnding",
|
|
134
|
+
/** This is a private field used for creating a new payment method, no data is stored here. (Finance - PaymentMethod) */
|
|
135
|
+
BranchCode = "_BranchCode",
|
|
136
|
+
/** Private field use for forms creating the payment method. No data is stored here. (Finance - PaymentMethod) */
|
|
137
|
+
AccountNumber = "_AccountNumber"
|
|
138
138
|
}
|
|
139
139
|
/**
|
|
140
140
|
* Properties for PaymentMethod records
|
|
@@ -207,12 +207,6 @@ export interface PaymentMethodProperties {
|
|
|
207
207
|
* @type {LOOKUP}
|
|
208
208
|
*/
|
|
209
209
|
ContactId: string;
|
|
210
|
-
/** This is a private field used for creating a new payment method, no data is stored here. (Finance - PaymentMethod)
|
|
211
|
-
*
|
|
212
|
-
* @type {TEXT}
|
|
213
|
-
* @hidden This field is hidden in the UI
|
|
214
|
-
*/
|
|
215
|
-
BranchCode: string;
|
|
216
210
|
/** payment provider (Finance - PaymentMethod)
|
|
217
211
|
*
|
|
218
212
|
* @type {ENUM}
|
|
@@ -220,19 +214,27 @@ export interface PaymentMethodProperties {
|
|
|
220
214
|
* @hidden This field is hidden in the UI
|
|
221
215
|
*/
|
|
222
216
|
Provider: PaymentMethodProvider;
|
|
223
|
-
/**
|
|
217
|
+
/** 2 or 4 ending digits of the bank account number (Finance - PaymentMethod)
|
|
224
218
|
*
|
|
225
219
|
* @type {TEXT}
|
|
220
|
+
* @pii This field contains personally identifiable information
|
|
226
221
|
* @hidden This field is hidden in the UI
|
|
227
222
|
*/
|
|
228
|
-
|
|
229
|
-
/**
|
|
223
|
+
BankAccountNumberEnding: string;
|
|
224
|
+
/** This is a private field used for creating a new payment method, no data is stored here. (Finance - PaymentMethod)
|
|
230
225
|
*
|
|
231
226
|
* @type {TEXT}
|
|
232
227
|
* @pii This field contains personally identifiable information
|
|
233
228
|
* @hidden This field is hidden in the UI
|
|
234
229
|
*/
|
|
235
|
-
|
|
230
|
+
BranchCode: string;
|
|
231
|
+
/** Private field use for forms creating the payment method. No data is stored here. (Finance - PaymentMethod)
|
|
232
|
+
*
|
|
233
|
+
* @type {TEXT}
|
|
234
|
+
* @pii This field contains personally identifiable information
|
|
235
|
+
* @hidden This field is hidden in the UI
|
|
236
|
+
*/
|
|
237
|
+
AccountNumber: string;
|
|
236
238
|
}
|
|
237
239
|
/**
|
|
238
240
|
* PaymentMethod entity from BillingModule
|
|
@@ -128,14 +128,14 @@ var PaymentMethodPropertyKeys;
|
|
|
128
128
|
PaymentMethodPropertyKeys["BankName"] = "BankName";
|
|
129
129
|
/** Related Contact to the Payment Method (Finance - PaymentMethod) */
|
|
130
130
|
PaymentMethodPropertyKeys["ContactId"] = "ContactId";
|
|
131
|
-
/** This is a private field used for creating a new payment method, no data is stored here. (Finance - PaymentMethod) */
|
|
132
|
-
PaymentMethodPropertyKeys["BranchCode"] = "_BranchCode";
|
|
133
131
|
/** payment provider (Finance - PaymentMethod) */
|
|
134
132
|
PaymentMethodPropertyKeys["Provider"] = "Provider";
|
|
135
|
-
/** Private field use for forms creating the payment method. No data is stored here. (Finance - PaymentMethod) */
|
|
136
|
-
PaymentMethodPropertyKeys["AccountNumber"] = "_AccountNumber";
|
|
137
133
|
/** 2 or 4 ending digits of the bank account number (Finance - PaymentMethod) */
|
|
138
134
|
PaymentMethodPropertyKeys["BankAccountNumberEnding"] = "BankAccountNumberEnding";
|
|
135
|
+
/** This is a private field used for creating a new payment method, no data is stored here. (Finance - PaymentMethod) */
|
|
136
|
+
PaymentMethodPropertyKeys["BranchCode"] = "_BranchCode";
|
|
137
|
+
/** Private field use for forms creating the payment method. No data is stored here. (Finance - PaymentMethod) */
|
|
138
|
+
PaymentMethodPropertyKeys["AccountNumber"] = "_AccountNumber";
|
|
139
139
|
})(PaymentMethodPropertyKeys = exports.PaymentMethodPropertyKeys || (exports.PaymentMethodPropertyKeys = {}));
|
|
140
140
|
/**
|
|
141
141
|
* PaymentMethod entity from BillingModule
|
|
@@ -111,14 +111,14 @@ export declare enum TeamSupportTeam {
|
|
|
111
111
|
* Domain
|
|
112
112
|
*
|
|
113
113
|
* @remarks Available options:
|
|
114
|
-
* - `Brsk
|
|
115
|
-
* - `Joint support
|
|
116
|
-
* - `YouFibre
|
|
114
|
+
* - `BRSK` - Brsk
|
|
115
|
+
* - `JOINT_SUPPORT` - Joint support
|
|
116
|
+
* - `YOUFIBRE` - YouFibre
|
|
117
117
|
*/
|
|
118
118
|
export declare enum TeamDomain {
|
|
119
|
-
BRSK = "
|
|
120
|
-
JOINT_SUPPORT = "
|
|
121
|
-
YOU_FIBRE = "
|
|
119
|
+
BRSK = "BRSK",
|
|
120
|
+
JOINT_SUPPORT = "JOINT_SUPPORT",
|
|
121
|
+
YOU_FIBRE = "YOUFIBRE"
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
124
|
* Property keys for Team
|
package/dist/entities-v2/Team.js
CHANGED
|
@@ -116,15 +116,15 @@ var TeamSupportTeam;
|
|
|
116
116
|
* Domain
|
|
117
117
|
*
|
|
118
118
|
* @remarks Available options:
|
|
119
|
-
* - `Brsk
|
|
120
|
-
* - `Joint support
|
|
121
|
-
* - `YouFibre
|
|
119
|
+
* - `BRSK` - Brsk
|
|
120
|
+
* - `JOINT_SUPPORT` - Joint support
|
|
121
|
+
* - `YOUFIBRE` - YouFibre
|
|
122
122
|
*/
|
|
123
123
|
var TeamDomain;
|
|
124
124
|
(function (TeamDomain) {
|
|
125
|
-
TeamDomain["BRSK"] = "
|
|
126
|
-
TeamDomain["JOINT_SUPPORT"] = "
|
|
127
|
-
TeamDomain["YOU_FIBRE"] = "
|
|
125
|
+
TeamDomain["BRSK"] = "BRSK";
|
|
126
|
+
TeamDomain["JOINT_SUPPORT"] = "JOINT_SUPPORT";
|
|
127
|
+
TeamDomain["YOU_FIBRE"] = "YOUFIBRE";
|
|
128
128
|
})(TeamDomain = exports.TeamDomain || (exports.TeamDomain = {}));
|
|
129
129
|
/**
|
|
130
130
|
* Property keys for Team
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d19n/youfibre-odin-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.50",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "@d19n",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"typescript": "4.8.4"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@d19n/odin-sdk-generator": "^3.0.
|
|
14
|
+
"@d19n/odin-sdk-generator": "^3.0.235",
|
|
15
15
|
"@d19n/odin-types": "^3.0.31"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|