@d19n/youfibre-odin-sdk 2.0.10-beta.6 → 2.0.10
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 +9 -1
- package/dist/actions-v2/CreateBacsPgSubmissionAllocationDto.d.ts +3 -3
- package/dist/actions-v2/DeleteOfferDto.d.ts +13 -0
- package/dist/actions-v2/DeleteOfferDto.js +14 -0
- package/dist/actions-v2/DeleteProductDto.d.ts +13 -0
- package/dist/actions-v2/DeleteProductDto.js +14 -0
- package/dist/actions-v2/PriceBookDeleteDto.d.ts +13 -0
- package/dist/actions-v2/PriceBookDeleteDto.js +14 -0
- package/dist/entities-v2/Config.d.ts +8 -8
- package/dist/entities-v2/Config.js +4 -4
- package/dist/entities-v2/Lead.d.ts +7 -0
- package/dist/entities-v2/Lead.js +2 -0
- package/package.json +1 -1
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 **577** actions.
|
|
356
356
|
|
|
357
357
|
### Action Types
|
|
358
358
|
|
|
@@ -1677,6 +1677,14 @@ This SDK includes **574** actions.
|
|
|
1677
1677
|
|--------|------|-------|
|
|
1678
1678
|
| `CustomerDeviceAtaUpdate` | UPDATE | k1.t-hEOJjsDb.ServiceModule.CustomerDeviceAta.Update.CustomerDeviceAtaUpdate |
|
|
1679
1679
|
|
|
1680
|
+
#### Unknown
|
|
1681
|
+
|
|
1682
|
+
| Action | Type | Event |
|
|
1683
|
+
|--------|------|-------|
|
|
1684
|
+
| `DeleteOffer` | UPDATE | - |
|
|
1685
|
+
| `DeleteProduct` | UPDATE | - |
|
|
1686
|
+
| `PriceBookDelete` | UPDATE | - |
|
|
1687
|
+
|
|
1680
1688
|
#### Discount
|
|
1681
1689
|
|
|
1682
1690
|
| Action | Type | Event |
|
|
@@ -35,13 +35,13 @@ export interface CreateBacsPgSubmissionAllocationProperties {
|
|
|
35
35
|
*/
|
|
36
36
|
SubmissionFile: string;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Transaction
|
|
39
39
|
*
|
|
40
|
-
*
|
|
40
|
+
* Transaction
|
|
41
41
|
* @type {LOOKUP}
|
|
42
42
|
* @required
|
|
43
43
|
*/
|
|
44
|
-
|
|
44
|
+
Transaction: string;
|
|
45
45
|
/**
|
|
46
46
|
* SubmissionFileLineNumber
|
|
47
47
|
*
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DeleteOffer Action DTO
|
|
3
|
+
*
|
|
4
|
+
* DeleteOffer
|
|
5
|
+
*
|
|
6
|
+
* @module ProductModule
|
|
7
|
+
* @entity Offer
|
|
8
|
+
* @actionKey DeleteOffer
|
|
9
|
+
* @event k1.t-t-hEOJjsDb.ProductModule.Offer.Delete.DeleteOffer
|
|
10
|
+
*
|
|
11
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
12
|
+
*/
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DeleteOffer Action DTO
|
|
4
|
+
*
|
|
5
|
+
* DeleteOffer
|
|
6
|
+
*
|
|
7
|
+
* @module ProductModule
|
|
8
|
+
* @entity Offer
|
|
9
|
+
* @actionKey DeleteOffer
|
|
10
|
+
* @event k1.t-t-hEOJjsDb.ProductModule.Offer.Delete.DeleteOffer
|
|
11
|
+
*
|
|
12
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DeleteProduct Action DTO
|
|
3
|
+
*
|
|
4
|
+
* DeleteProduct
|
|
5
|
+
*
|
|
6
|
+
* @module ProductModule
|
|
7
|
+
* @entity Product
|
|
8
|
+
* @actionKey DeleteProduct
|
|
9
|
+
* @event k1.t-t-hEOJjsDb.ProductModule.Product.Delete.DeleteProduct
|
|
10
|
+
*
|
|
11
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
12
|
+
*/
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DeleteProduct Action DTO
|
|
4
|
+
*
|
|
5
|
+
* DeleteProduct
|
|
6
|
+
*
|
|
7
|
+
* @module ProductModule
|
|
8
|
+
* @entity Product
|
|
9
|
+
* @actionKey DeleteProduct
|
|
10
|
+
* @event k1.t-t-hEOJjsDb.ProductModule.Product.Delete.DeleteProduct
|
|
11
|
+
*
|
|
12
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* PriceBookDelete Action DTO
|
|
3
|
+
*
|
|
4
|
+
* DeletePriceBook
|
|
5
|
+
*
|
|
6
|
+
* @module ProductModule
|
|
7
|
+
* @entity PriceBook
|
|
8
|
+
* @actionKey PriceBookDelete
|
|
9
|
+
* @event k1.t-t-hEOJjsDb.ProductModule.PriceBook.Delete.PriceBookDelete
|
|
10
|
+
*
|
|
11
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
12
|
+
*/
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* PriceBookDelete Action DTO
|
|
4
|
+
*
|
|
5
|
+
* DeletePriceBook
|
|
6
|
+
*
|
|
7
|
+
* @module ProductModule
|
|
8
|
+
* @entity PriceBook
|
|
9
|
+
* @actionKey PriceBookDelete
|
|
10
|
+
* @event k1.t-t-hEOJjsDb.ProductModule.PriceBook.Delete.PriceBookDelete
|
|
11
|
+
*
|
|
12
|
+
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -23,12 +23,12 @@ export declare enum ConfigEntityTypes {
|
|
|
23
23
|
* Use these constants instead of string literals for type safety
|
|
24
24
|
*/
|
|
25
25
|
export declare enum ConfigPropertyKeys {
|
|
26
|
-
/**
|
|
27
|
-
|
|
26
|
+
/** the name of the app this config relates to (Platform - Config) */
|
|
27
|
+
AppName = "AppName",
|
|
28
28
|
/** object of { key: value } mappings (Platform - Config) */
|
|
29
29
|
Mappings = "Mappings",
|
|
30
|
-
/**
|
|
31
|
-
|
|
30
|
+
/** Data field for Config records. Used by Platform team. */
|
|
31
|
+
Test = "Test"
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
34
|
* Properties for Config records
|
|
@@ -36,21 +36,21 @@ export declare enum ConfigPropertyKeys {
|
|
|
36
36
|
* @see SchemaModule:Config
|
|
37
37
|
*/
|
|
38
38
|
export interface ConfigProperties {
|
|
39
|
-
/**
|
|
39
|
+
/** the name of the app this config relates to (Platform - Config)
|
|
40
40
|
*
|
|
41
41
|
* @type {TEXT}
|
|
42
42
|
*/
|
|
43
|
-
|
|
43
|
+
AppName: string;
|
|
44
44
|
/** object of { key: value } mappings (Platform - Config)
|
|
45
45
|
*
|
|
46
46
|
* @type {JSON}
|
|
47
47
|
*/
|
|
48
48
|
Mappings: string;
|
|
49
|
-
/**
|
|
49
|
+
/** Data field for Config records. Used by Platform team.
|
|
50
50
|
*
|
|
51
51
|
* @type {TEXT}
|
|
52
52
|
*/
|
|
53
|
-
|
|
53
|
+
Test: string;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
56
|
* Config entity from SchemaModule
|
|
@@ -28,12 +28,12 @@ var ConfigEntityTypes;
|
|
|
28
28
|
*/
|
|
29
29
|
var ConfigPropertyKeys;
|
|
30
30
|
(function (ConfigPropertyKeys) {
|
|
31
|
-
/** Data field for Config records. Used by Platform team. */
|
|
32
|
-
ConfigPropertyKeys["Test"] = "Test";
|
|
33
|
-
/** object of { key: value } mappings (Platform - Config) */
|
|
34
|
-
ConfigPropertyKeys["Mappings"] = "Mappings";
|
|
35
31
|
/** the name of the app this config relates to (Platform - Config) */
|
|
36
32
|
ConfigPropertyKeys["AppName"] = "AppName";
|
|
33
|
+
/** object of { key: value } mappings (Platform - Config) */
|
|
34
|
+
ConfigPropertyKeys["Mappings"] = "Mappings";
|
|
35
|
+
/** Data field for Config records. Used by Platform team. */
|
|
36
|
+
ConfigPropertyKeys["Test"] = "Test";
|
|
37
37
|
})(ConfigPropertyKeys = exports.ConfigPropertyKeys || (exports.ConfigPropertyKeys = {}));
|
|
38
38
|
/**
|
|
39
39
|
* Config entity from SchemaModule
|
|
@@ -201,6 +201,8 @@ export declare enum LeadPropertyKeys {
|
|
|
201
201
|
CompanyPosition = "CompanyPosition",
|
|
202
202
|
/** Data field for Lead records. Used by Sales team. */
|
|
203
203
|
Vat = "VAT",
|
|
204
|
+
/** TitleName */
|
|
205
|
+
TitleName = "TitleName",
|
|
204
206
|
/** External Reference */
|
|
205
207
|
ExternalReference = "ExternalReference",
|
|
206
208
|
/** Address */
|
|
@@ -408,6 +410,11 @@ export interface LeadProperties {
|
|
|
408
410
|
* @hidden This field is hidden in the UI
|
|
409
411
|
*/
|
|
410
412
|
Vat: number;
|
|
413
|
+
/** TitleName
|
|
414
|
+
*
|
|
415
|
+
* @type {TEXT}
|
|
416
|
+
*/
|
|
417
|
+
TitleName: string;
|
|
411
418
|
/** External Reference
|
|
412
419
|
*
|
|
413
420
|
* @type {TEXT}
|
package/dist/entities-v2/Lead.js
CHANGED
|
@@ -195,6 +195,8 @@ var LeadPropertyKeys;
|
|
|
195
195
|
LeadPropertyKeys["CompanyPosition"] = "CompanyPosition";
|
|
196
196
|
/** Data field for Lead records. Used by Sales team. */
|
|
197
197
|
LeadPropertyKeys["Vat"] = "VAT";
|
|
198
|
+
/** TitleName */
|
|
199
|
+
LeadPropertyKeys["TitleName"] = "TitleName";
|
|
198
200
|
/** External Reference */
|
|
199
201
|
LeadPropertyKeys["ExternalReference"] = "ExternalReference";
|
|
200
202
|
/** Address */
|