@d19n/youfibre-odin-sdk 2.0.26 → 2.0.28

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
@@ -352,7 +352,7 @@ This SDK includes **164** entities across **12** modules.
352
352
 
353
353
  ## Actions
354
354
 
355
- This SDK includes **589** actions.
355
+ This SDK includes **590** actions.
356
356
 
357
357
  ### Action Types
358
358
 
@@ -1712,6 +1712,7 @@ This SDK includes **589** actions.
1712
1712
  |--------|------|-------|
1713
1713
  | `DeleteOffer` | UPDATE | - |
1714
1714
  | `DeleteProduct` | UPDATE | - |
1715
+ | `DeleteTeam` | UPDATE | - |
1715
1716
  | `PriceBookDelete` | UPDATE | - |
1716
1717
 
1717
1718
  #### Discount
@@ -0,0 +1,13 @@
1
+ /**
2
+ * DeleteTeam Action DTO
3
+ *
4
+ * Delete a team
5
+ *
6
+ * @module IdentityModule
7
+ * @entity Team
8
+ * @actionKey DeleteTeam
9
+ * @event k1.t-t-hEOJjsDb.IdentityModule.Team.Delete.DeleteTeam
10
+ *
11
+ * AUTO-GENERATED - DO NOT EDIT DIRECTLY
12
+ */
13
+ export {};
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ /**
3
+ * DeleteTeam Action DTO
4
+ *
5
+ * Delete a team
6
+ *
7
+ * @module IdentityModule
8
+ * @entity Team
9
+ * @actionKey DeleteTeam
10
+ * @event k1.t-t-hEOJjsDb.IdentityModule.Team.Delete.DeleteTeam
11
+ *
12
+ * AUTO-GENERATED - DO NOT EDIT DIRECTLY
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -81,11 +81,11 @@ export declare enum AccountCreditSource {
81
81
  * Reason
82
82
  *
83
83
  * @remarks Available options:
84
- * - `FOURTEEN_DAY_TERMINATION_CREDIT` - 14 Day Termination Credit
85
84
  * - `BAD_DEBT_CREDIT` - Bad Debt Credit
86
85
  * - `BILLING_DAY_CHANGE_CREDIT` - Billing Day Change Credit
87
86
  * - `COMPLAINTS_CREDIT` - Complaints Credit
88
87
  * - `DOWNTIME_CREDIT` - Downtime Credit
88
+ * - `FOURTEEN_DAY_TERMINATION_CREDIT` - Fourteen Day Termination Credit
89
89
  * - `IN_CONTRACT_BUYOUT` - In Contract Buyout
90
90
  * - `INCORRECTLY_BILLED` - Incorrectly Billed
91
91
  * - `MANUAL_CREDIT` - Manual Credit
@@ -103,6 +103,7 @@ export declare enum AccountCreditReason {
103
103
  BILLING_DAY_CHANGE_CREDIT = "BILLING_DAY_CHANGE_CREDIT",
104
104
  COMPLAINTS_CREDIT = "COMPLAINTS_CREDIT",
105
105
  DOWNTIME_CREDIT = "DOWNTIME_CREDIT",
106
+ FOURTEEN_DAY_TERMINATION_CREDIT = "FOURTEEN_DAY_TERMINATION_CREDIT",
106
107
  IN_CONTRACT_BUYOUT = "IN_CONTRACT_BUYOUT",
107
108
  INCORRECTLY_BILLED = "INCORRECTLY_BILLED",
108
109
  MANUAL_CREDIT = "MANUAL_CREDIT",
@@ -85,11 +85,11 @@ var AccountCreditSource;
85
85
  * Reason
86
86
  *
87
87
  * @remarks Available options:
88
- * - `FOURTEEN_DAY_TERMINATION_CREDIT` - 14 Day Termination Credit
89
88
  * - `BAD_DEBT_CREDIT` - Bad Debt Credit
90
89
  * - `BILLING_DAY_CHANGE_CREDIT` - Billing Day Change Credit
91
90
  * - `COMPLAINTS_CREDIT` - Complaints Credit
92
91
  * - `DOWNTIME_CREDIT` - Downtime Credit
92
+ * - `FOURTEEN_DAY_TERMINATION_CREDIT` - Fourteen Day Termination Credit
93
93
  * - `IN_CONTRACT_BUYOUT` - In Contract Buyout
94
94
  * - `INCORRECTLY_BILLED` - Incorrectly Billed
95
95
  * - `MANUAL_CREDIT` - Manual Credit
@@ -108,6 +108,7 @@ var AccountCreditReason;
108
108
  AccountCreditReason["BILLING_DAY_CHANGE_CREDIT"] = "BILLING_DAY_CHANGE_CREDIT";
109
109
  AccountCreditReason["COMPLAINTS_CREDIT"] = "COMPLAINTS_CREDIT";
110
110
  AccountCreditReason["DOWNTIME_CREDIT"] = "DOWNTIME_CREDIT";
111
+ AccountCreditReason["FOURTEEN_DAY_TERMINATION_CREDIT"] = "FOURTEEN_DAY_TERMINATION_CREDIT";
111
112
  AccountCreditReason["IN_CONTRACT_BUYOUT"] = "IN_CONTRACT_BUYOUT";
112
113
  AccountCreditReason["INCORRECTLY_BILLED"] = "INCORRECTLY_BILLED";
113
114
  AccountCreditReason["MANUAL_CREDIT"] = "MANUAL_CREDIT";
@@ -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
- /** Data field for Config records. Used by Platform team. */
27
- Test = "Test",
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
- /** the name of the app this config relates to (Platform - Config) */
31
- AppName = "AppName"
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
- /** Data field for Config records. Used by Platform team.
39
+ /** the name of the app this config relates to (Platform - Config)
40
40
  *
41
41
  * @type {TEXT}
42
42
  */
43
- Test: string;
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
- /** the name of the app this config relates to (Platform - Config)
49
+ /** Data field for Config records. Used by Platform team.
50
50
  *
51
51
  * @type {TEXT}
52
52
  */
53
- AppName: string;
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d19n/youfibre-odin-sdk",
3
- "version": "2.0.26",
3
+ "version": "2.0.28",
4
4
  "description": "",
5
5
  "author": "@d19n",
6
6
  "license": "UNLICENSED",