mavenagi 1.2.43 → 1.2.44
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.44",
|
|
47
|
+
"User-Agent": "mavenagi/1.2.44",
|
|
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,
|
|
@@ -7,6 +7,7 @@ export declare const ResolutionStatus: {
|
|
|
7
7
|
readonly NegativeFeedback: "NEGATIVE_FEEDBACK";
|
|
8
8
|
readonly ContentSafetyFlagged: "CONTENT_SAFETY_FLAGGED";
|
|
9
9
|
readonly PromptAttackFlagged: "PROMPT_ATTACK_FLAGGED";
|
|
10
|
+
readonly Hangup: "HANGUP";
|
|
10
11
|
readonly Ineligible: "INELIGIBLE";
|
|
11
12
|
};
|
|
12
13
|
export type ResolutionStatus = (typeof ResolutionStatus)[keyof typeof ResolutionStatus] | string;
|
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" | "INELIGIBLE";
|
|
6
|
+
type Raw = "UNKNOWN" | "ERROR" | "IN_PROGRESS" | "RESOLVED" | "ESCALATED" | "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.44";
|
package/version.js
CHANGED