@d19n/youfibre-odin-sdk 2.0.68-beta.0 → 2.0.69

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.
@@ -22,9 +22,37 @@ export interface CreateTeamMessage extends OdinRecordCreatedEvent<CreateTeamDto,
22
22
  * Properties for CreateTeam action
23
23
  *
24
24
  * @property Required fields: 0
25
- * @property Optional fields: 1
25
+ * @property Optional fields: 11
26
26
  */
27
27
  export interface CreateTeamProperties {
28
+ /**
29
+ * TeamId
30
+ *
31
+ * Reference to pg-db team id
32
+ * @type {UUID}
33
+ */
34
+ TeamId?: string | null;
35
+ /**
36
+ * WorksCases
37
+ *
38
+ * Works Cases
39
+ * @type {ENUM}
40
+ */
41
+ WorksCases?: string | null;
42
+ /**
43
+ * ReadableName
44
+ *
45
+ * This property is for translations into more readable names for use within schema actions (IT Security - Team)
46
+ * @type {TEXT}
47
+ */
48
+ ReadableName?: string | null;
49
+ /**
50
+ * SupportTeam
51
+ *
52
+ * Flags if this is a support team (IT Security - Team)
53
+ * @type {ENUM}
54
+ */
55
+ SupportTeam?: string | null;
28
56
  /**
29
57
  * Description
30
58
  *
@@ -32,6 +60,48 @@ export interface CreateTeamProperties {
32
60
  * @type {TEXT_LONG}
33
61
  */
34
62
  Description?: string | null;
63
+ /**
64
+ * TwilioSupport
65
+ *
66
+ * TwilioSupport (IT Security - Team)
67
+ * @type {BOOLEAN}
68
+ */
69
+ TwilioSupport?: boolean | null;
70
+ /**
71
+ * CanEscalateTo
72
+ *
73
+ * Can escalate to
74
+ * @type {ENUM}
75
+ */
76
+ CanEscalateTo?: string | null;
77
+ /**
78
+ * Name
79
+ *
80
+ * Display name/title for Team records. Primary identifier for IT Security team.
81
+ * @type {TEXT}
82
+ */
83
+ Name?: string | null;
84
+ /**
85
+ * PrimaryChannel
86
+ *
87
+ * Primary Channel - Cases
88
+ * @type {ENUM}
89
+ */
90
+ PrimaryChannel?: string | null;
91
+ /**
92
+ * SecondaryChannel
93
+ *
94
+ * Secondary Channel
95
+ * @type {ENUM}
96
+ */
97
+ SecondaryChannel?: string | null;
98
+ /**
99
+ * Domain
100
+ *
101
+ * Domain
102
+ * @type {ENUM}
103
+ */
104
+ Domain?: string | null;
35
105
  }
36
106
  /**
37
107
  * CreateTeam
@@ -22,7 +22,7 @@ export interface UpdateTeamMessage extends OdinRecordUpdatedEvent<UpdateTeamDto,
22
22
  * Properties for UpdateTeam action
23
23
  *
24
24
  * @property Required fields: 0
25
- * @property Optional fields: 11
25
+ * @property Optional fields: 10
26
26
  */
27
27
  export interface UpdateTeamProperties {
28
28
  /**
@@ -33,26 +33,40 @@ export interface UpdateTeamProperties {
33
33
  */
34
34
  Domain?: string | null;
35
35
  /**
36
- * Works Cases
36
+ * SecondaryChannel
37
37
  *
38
- * Works Cases
38
+ * Secondary Channel
39
39
  * @type {ENUM}
40
40
  */
41
- WorksCases?: string | null;
41
+ SecondaryChannel?: string | null;
42
42
  /**
43
- * Can escalate to
43
+ * PrimaryChannel
44
+ *
45
+ * Primary Channel - Cases
46
+ * @type {ENUM}
47
+ */
48
+ PrimaryChannel?: string | null;
49
+ /**
50
+ * Name
51
+ *
52
+ * Display name/title for Team records. Primary identifier for IT Security team.
53
+ * @type {TEXT}
54
+ */
55
+ Name?: string | null;
56
+ /**
57
+ * CanEscalateTo
44
58
  *
45
59
  * Can escalate to
46
60
  * @type {ENUM}
47
61
  */
48
62
  CanEscalateTo?: string | null;
49
63
  /**
50
- * SupportTeam
64
+ * TwilioSupport
51
65
  *
52
- * Flags if this is a support team (IT Security - Team)
53
- * @type {ENUM}
66
+ * TwilioSupport (IT Security - Team)
67
+ * @type {BOOLEAN}
54
68
  */
55
- SupportTeam?: string | null;
69
+ TwilioSupport?: boolean | null;
56
70
  /**
57
71
  * Description
58
72
  *
@@ -61,40 +75,26 @@ export interface UpdateTeamProperties {
61
75
  */
62
76
  Description?: string | null;
63
77
  /**
64
- * Readable Name
78
+ * SupportTeam
65
79
  *
66
- * This property is for translations into more readable names for use within schema actions (IT Security - Team)
67
- * @type {TEXT}
80
+ * Flags if this is a support team (IT Security - Team)
81
+ * @type {ENUM}
68
82
  */
69
- ReadableName?: string | null;
83
+ SupportTeam?: string | null;
70
84
  /**
71
- * Name
85
+ * ReadableName
72
86
  *
73
- * Display name/title for Team records. Primary identifier for IT Security team.
87
+ * This property is for translations into more readable names for use within schema actions (IT Security - Team)
74
88
  * @type {TEXT}
75
89
  */
76
- Name?: string | null;
77
- /**
78
- * PrimaryChannel
79
- *
80
- * Primary Channel - Cases
81
- * @type {ENUM}
82
- */
83
- PrimaryChannel?: string | null;
90
+ ReadableName?: string | null;
84
91
  /**
85
- * SecondaryChannel
92
+ * WorksCases
86
93
  *
87
- * Secondary Channel
94
+ * Works Cases
88
95
  * @type {ENUM}
89
96
  */
90
- SecondaryChannel?: string | null;
91
- /**
92
- * TwilioSupport
93
- *
94
- * TwilioSupport (IT Security - Team)
95
- * @type {BOOLEAN}
96
- */
97
- TwilioSupport?: boolean | null;
97
+ WorksCases?: string | null;
98
98
  }
99
99
  /**
100
100
  * UpdateTeam
@@ -130,7 +130,9 @@ export declare enum TeamPropertyKeys {
130
130
  /** This property is for translations into more readable names for use within schema actions (IT Security - Team) */
131
131
  ReadableName = "ReadableName",
132
132
  /** Works Cases */
133
- WorksCases = "WorksCases"
133
+ WorksCases = "WorksCases",
134
+ /** Reference to pg-db team id */
135
+ TeamId = "TeamId"
134
136
  }
135
137
  /**
136
138
  * Properties for Team records
@@ -194,6 +196,11 @@ export interface TeamProperties {
194
196
  * @enum {TeamWorksCases}
195
197
  */
196
198
  WorksCases: TeamWorksCases;
199
+ /** Reference to pg-db team id
200
+ *
201
+ * @type {UUID}
202
+ */
203
+ TeamId: string;
197
204
  }
198
205
  /**
199
206
  * Team entity from IdentityModule
@@ -138,6 +138,8 @@ var TeamPropertyKeys;
138
138
  TeamPropertyKeys["ReadableName"] = "ReadableName";
139
139
  /** Works Cases */
140
140
  TeamPropertyKeys["WorksCases"] = "WorksCases";
141
+ /** Reference to pg-db team id */
142
+ TeamPropertyKeys["TeamId"] = "TeamId";
141
143
  })(TeamPropertyKeys = exports.TeamPropertyKeys || (exports.TeamPropertyKeys = {}));
142
144
  /**
143
145
  * Team entity from IdentityModule
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d19n/youfibre-odin-sdk",
3
- "version": "2.0.68-beta.0",
3
+ "version": "2.0.69",
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.239",
14
+ "@d19n/odin-sdk-generator": "^3.0.240",
15
15
  "@d19n/odin-types": "^3.0.32"
16
16
  },
17
17
  "scripts": {