@d19n/youfibre-odin-sdk 2.0.316 → 2.0.317

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.
@@ -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
28
  /** the name of the app this config relates to (Platform - Config) */
27
29
  AppName = "AppName",
28
30
  /** object of { key: value } mappings (Platform - Config) */
29
- Mappings = "Mappings",
30
- /** Data field for Config records. Used by Platform team. */
31
- Test = "Test"
31
+ Mappings = "Mappings"
32
32
  }
33
33
  /**
34
34
  * Properties for Config records
@@ -36,6 +36,11 @@ 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.
40
+ *
41
+ * @type {TEXT}
42
+ */
43
+ Test: string;
39
44
  /** the name of the app this config relates to (Platform - Config)
40
45
  *
41
46
  * @type {TEXT}
@@ -46,11 +51,6 @@ export interface ConfigProperties {
46
51
  * @type {JSON}
47
52
  */
48
53
  Mappings: string;
49
- /** Data field for Config records. Used by Platform team.
50
- *
51
- * @type {TEXT}
52
- */
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";
31
33
  /** the name of the app this config relates to (Platform - Config) */
32
34
  ConfigPropertyKeys["AppName"] = "AppName";
33
35
  /** object of { key: value } mappings (Platform - Config) */
34
36
  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
@@ -43,24 +43,24 @@ export declare enum QaReportChannel {
43
43
  * Use these constants instead of string literals for type safety
44
44
  */
45
45
  export declare enum QaReportPropertyKeys {
46
- /** The case this report scores. This is the real link; it holds a uuid, so it is not shown in tables — the same choice Note.Case and ConversationSummaryFeedback.ConversationId make. The readable reference is the Case column below. */
47
- CaseId = "CaseId",
48
46
  /** Total score the rubric awarded, 0-100, parsed out of the report. Stored separately so QA can be reported on without parsing HTML. */
49
47
  Score = "Score",
50
48
  /** Channel of the scored case. Copied from the case so QA can be filtered by channel without joining back. */
51
49
  Channel = "Channel",
52
- /** Identity user id of the agent scored, from the case RAssignedOrgUserId. Not a LOOKUP: users live in IdentityModule and there is no association to bind to. */
53
- AgentId = "AgentId",
54
50
  /** Display name of the agent at the time of scoring. Point-in-time on purpose, so the assessment still reads correctly if the person is renamed or leaves. */
55
51
  AgentName = "AgentName",
56
- /** Returned by the Databricks endpoint. The only thread tying this record to the matching inference row on the Databricks side — without it you are matching on timestamp and hoping. */
57
- CorrelationId = "CorrelationId",
58
52
  /** Which model produced the report, e.g. system.ai.gpt-5-4. Needed to compare scores once the rubric or the model changes. */
59
53
  LlmEndpointUsed = "LlmEndpointUsed",
60
54
  /** S3 URL of the scorecard HTML returned by the Databricks quality_assurance_report endpoint. Uploaded through Odin, so it lands in the org files bucket and also exists as a SchemaModule:File. */
61
55
  ReportUrl = "ReportUrl",
62
56
  /** Record number of the case this report scores, e.g. SC6490. */
63
- Case = "Case"
57
+ Case = "Case",
58
+ /** Identity user id of the agent scored, from the case RAssignedOrgUserId. Not a LOOKUP: users live in IdentityModule and there is no association to bind to. */
59
+ AgentId = "AgentId",
60
+ /** Returned by the Databricks endpoint. The only thread tying this record to the matching inference row on the Databricks side — without it you are matching on timestamp and hoping. */
61
+ CorrelationId = "CorrelationId",
62
+ /** The case this report scores. This is the real link; it holds a uuid, so it is not shown in tables — the same choice Note.Case and ConversationSummaryFeedback.ConversationId make. The readable reference is the Case column below. */
63
+ CaseId = "CaseId"
64
64
  }
65
65
  /**
66
66
  * Properties for QaReport records
@@ -68,12 +68,6 @@ export declare enum QaReportPropertyKeys {
68
68
  * @see SupportModule:QaReport
69
69
  */
70
70
  export interface QaReportProperties {
71
- /** The case this report scores. This is the real link; it holds a uuid, so it is not shown in tables — the same choice Note.Case and ConversationSummaryFeedback.ConversationId make. The readable reference is the Case column below.
72
- *
73
- * @type {LOOKUP}
74
- * @default
75
- */
76
- CaseId: string;
77
71
  /** Total score the rubric awarded, 0-100, parsed out of the report. Stored separately so QA can be reported on without parsing HTML.
78
72
  *
79
73
  * @type {NUMBER}
@@ -87,24 +81,12 @@ export interface QaReportProperties {
87
81
  * @enum {QaReportChannel}
88
82
  */
89
83
  Channel: QaReportChannel;
90
- /** Identity user id of the agent scored, from the case RAssignedOrgUserId. Not a LOOKUP: users live in IdentityModule and there is no association to bind to.
91
- *
92
- * @type {TEXT}
93
- * @default
94
- */
95
- AgentId: string;
96
84
  /** Display name of the agent at the time of scoring. Point-in-time on purpose, so the assessment still reads correctly if the person is renamed or leaves.
97
85
  *
98
86
  * @type {TEXT}
99
87
  * @default
100
88
  */
101
89
  AgentName: string;
102
- /** Returned by the Databricks endpoint. The only thread tying this record to the matching inference row on the Databricks side — without it you are matching on timestamp and hoping.
103
- *
104
- * @type {TEXT}
105
- * @default
106
- */
107
- CorrelationId: string;
108
90
  /** Which model produced the report, e.g. system.ai.gpt-5-4. Needed to compare scores once the rubric or the model changes.
109
91
  *
110
92
  * @type {TEXT}
@@ -123,6 +105,24 @@ export interface QaReportProperties {
123
105
  * @default
124
106
  */
125
107
  Case: string;
108
+ /** Identity user id of the agent scored, from the case RAssignedOrgUserId. Not a LOOKUP: users live in IdentityModule and there is no association to bind to.
109
+ *
110
+ * @type {TEXT}
111
+ * @default
112
+ */
113
+ AgentId: string;
114
+ /** Returned by the Databricks endpoint. The only thread tying this record to the matching inference row on the Databricks side — without it you are matching on timestamp and hoping.
115
+ *
116
+ * @type {TEXT}
117
+ * @default
118
+ */
119
+ CorrelationId: string;
120
+ /** The case this report scores. This is the real link; it holds a uuid, so it is not shown in tables — the same choice Note.Case and ConversationSummaryFeedback.ConversationId make. The readable reference is the Case column below.
121
+ *
122
+ * @type {LOOKUP}
123
+ * @default
124
+ */
125
+ CaseId: string;
126
126
  }
127
127
  /**
128
128
  * QaReport entity from SupportModule
@@ -48,24 +48,24 @@ var QaReportChannel;
48
48
  */
49
49
  var QaReportPropertyKeys;
50
50
  (function (QaReportPropertyKeys) {
51
- /** The case this report scores. This is the real link; it holds a uuid, so it is not shown in tables — the same choice Note.Case and ConversationSummaryFeedback.ConversationId make. The readable reference is the Case column below. */
52
- QaReportPropertyKeys["CaseId"] = "CaseId";
53
51
  /** Total score the rubric awarded, 0-100, parsed out of the report. Stored separately so QA can be reported on without parsing HTML. */
54
52
  QaReportPropertyKeys["Score"] = "Score";
55
53
  /** Channel of the scored case. Copied from the case so QA can be filtered by channel without joining back. */
56
54
  QaReportPropertyKeys["Channel"] = "Channel";
57
- /** Identity user id of the agent scored, from the case RAssignedOrgUserId. Not a LOOKUP: users live in IdentityModule and there is no association to bind to. */
58
- QaReportPropertyKeys["AgentId"] = "AgentId";
59
55
  /** Display name of the agent at the time of scoring. Point-in-time on purpose, so the assessment still reads correctly if the person is renamed or leaves. */
60
56
  QaReportPropertyKeys["AgentName"] = "AgentName";
61
- /** Returned by the Databricks endpoint. The only thread tying this record to the matching inference row on the Databricks side — without it you are matching on timestamp and hoping. */
62
- QaReportPropertyKeys["CorrelationId"] = "CorrelationId";
63
57
  /** Which model produced the report, e.g. system.ai.gpt-5-4. Needed to compare scores once the rubric or the model changes. */
64
58
  QaReportPropertyKeys["LlmEndpointUsed"] = "LlmEndpointUsed";
65
59
  /** S3 URL of the scorecard HTML returned by the Databricks quality_assurance_report endpoint. Uploaded through Odin, so it lands in the org files bucket and also exists as a SchemaModule:File. */
66
60
  QaReportPropertyKeys["ReportUrl"] = "ReportUrl";
67
61
  /** Record number of the case this report scores, e.g. SC6490. */
68
62
  QaReportPropertyKeys["Case"] = "Case";
63
+ /** Identity user id of the agent scored, from the case RAssignedOrgUserId. Not a LOOKUP: users live in IdentityModule and there is no association to bind to. */
64
+ QaReportPropertyKeys["AgentId"] = "AgentId";
65
+ /** Returned by the Databricks endpoint. The only thread tying this record to the matching inference row on the Databricks side — without it you are matching on timestamp and hoping. */
66
+ QaReportPropertyKeys["CorrelationId"] = "CorrelationId";
67
+ /** The case this report scores. This is the real link; it holds a uuid, so it is not shown in tables — the same choice Note.Case and ConversationSummaryFeedback.ConversationId make. The readable reference is the Case column below. */
68
+ QaReportPropertyKeys["CaseId"] = "CaseId";
69
69
  })(QaReportPropertyKeys = exports.QaReportPropertyKeys || (exports.QaReportPropertyKeys = {}));
70
70
  /**
71
71
  * QaReport entity from SupportModule
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d19n/youfibre-odin-sdk",
3
- "version": "2.0.316",
3
+ "version": "2.0.317",
4
4
  "description": "",
5
5
  "author": "@d19n",
6
6
  "license": "UNLICENSED",