mavenagi 1.2.46 → 1.2.48
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/BaseClient.js +2 -2
- package/api/resources/commons/types/ResolutionStatus.d.ts +1 -0
- package/api/resources/commons/types/ResolutionStatus.js +1 -0
- package/package.json +1 -1
- package/serialization/resources/commons/types/ResolutionStatus.d.ts +1 -1
- package/serialization/resources/commons/types/ResolutionStatus.js +1 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/BaseClient.js
CHANGED
|
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
|
|
|
43
43
|
const headers = (0, headers_1.mergeHeaders)({
|
|
44
44
|
"X-Fern-Language": "JavaScript",
|
|
45
45
|
"X-Fern-SDK-Name": "mavenagi",
|
|
46
|
-
"X-Fern-SDK-Version": "1.2.
|
|
47
|
-
"User-Agent": "mavenagi/1.2.
|
|
46
|
+
"X-Fern-SDK-Version": "1.2.48",
|
|
47
|
+
"User-Agent": "mavenagi/1.2.48",
|
|
48
48
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
49
49
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
50
50
|
"X-Organization-Id": options === null || options === void 0 ? void 0 : options.organizationId,
|
|
@@ -4,6 +4,7 @@ export declare const ResolutionStatus: {
|
|
|
4
4
|
readonly InProgress: "IN_PROGRESS";
|
|
5
5
|
readonly Resolved: "RESOLVED";
|
|
6
6
|
readonly Escalated: "ESCALATED";
|
|
7
|
+
readonly Incomplete: "INCOMPLETE";
|
|
7
8
|
readonly NegativeFeedback: "NEGATIVE_FEEDBACK";
|
|
8
9
|
readonly ContentSafetyFlagged: "CONTENT_SAFETY_FLAGGED";
|
|
9
10
|
readonly PromptAttackFlagged: "PROMPT_ATTACK_FLAGGED";
|
|
@@ -8,6 +8,7 @@ exports.ResolutionStatus = {
|
|
|
8
8
|
InProgress: "IN_PROGRESS",
|
|
9
9
|
Resolved: "RESOLVED",
|
|
10
10
|
Escalated: "ESCALATED",
|
|
11
|
+
Incomplete: "INCOMPLETE",
|
|
11
12
|
NegativeFeedback: "NEGATIVE_FEEDBACK",
|
|
12
13
|
ContentSafetyFlagged: "CONTENT_SAFETY_FLAGGED",
|
|
13
14
|
PromptAttackFlagged: "PROMPT_ATTACK_FLAGGED",
|
package/package.json
CHANGED
|
@@ -3,5 +3,5 @@ import * as core from "../../../../core";
|
|
|
3
3
|
import type * as serializers from "../../../index";
|
|
4
4
|
export declare const ResolutionStatus: core.serialization.Schema<serializers.ResolutionStatus.Raw, MavenAGI.ResolutionStatus>;
|
|
5
5
|
export declare namespace ResolutionStatus {
|
|
6
|
-
type Raw = "UNKNOWN" | "ERROR" | "IN_PROGRESS" | "RESOLVED" | "ESCALATED" | "NEGATIVE_FEEDBACK" | "CONTENT_SAFETY_FLAGGED" | "PROMPT_ATTACK_FLAGGED" | "HANGUP" | "INELIGIBLE";
|
|
6
|
+
type Raw = "UNKNOWN" | "ERROR" | "IN_PROGRESS" | "RESOLVED" | "ESCALATED" | "INCOMPLETE" | "NEGATIVE_FEEDBACK" | "CONTENT_SAFETY_FLAGGED" | "PROMPT_ATTACK_FLAGGED" | "HANGUP" | "INELIGIBLE";
|
|
7
7
|
}
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.2.
|
|
1
|
+
export declare const SDK_VERSION = "1.2.48";
|
package/version.js
CHANGED