mavenagi 1.2.34 → 1.2.36
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/Client.js +2 -2
- package/api/resources/actions/client/Client.d.ts +5 -0
- package/api/resources/actions/client/Client.js +40 -0
- package/api/resources/agents/client/Client.d.ts +6 -0
- package/api/resources/agents/client/Client.js +48 -0
- package/api/resources/analytics/client/Client.d.ts +7 -0
- package/api/resources/analytics/client/Client.js +56 -0
- package/api/resources/appSettings/client/Client.d.ts +3 -0
- package/api/resources/appSettings/client/Client.js +24 -0
- package/api/resources/assets/client/Client.d.ts +2 -0
- package/api/resources/assets/client/Client.js +16 -0
- package/api/resources/assets/types/CommitAssetUploadRequest.d.ts +1 -1
- package/api/resources/commons/errors/PayloadTooLargeError.d.ts +6 -0
- package/api/resources/commons/errors/PayloadTooLargeError.js +50 -0
- package/api/resources/commons/errors/index.d.ts +1 -0
- package/api/resources/commons/errors/index.js +1 -0
- package/api/resources/commons/types/ConversationPreconditionResponse.d.ts +22 -0
- package/api/resources/commons/types/ConversationPreconditionResponse.js +3 -0
- package/api/resources/commons/types/IntelligentFieldPreconditionResponse.d.ts +13 -0
- package/api/resources/commons/types/IntelligentFieldPreconditionResponse.js +3 -0
- package/api/resources/commons/types/IntelligentFieldValueResponse.d.ts +1 -1
- package/api/resources/commons/types/PreconditionGroupResponse.d.ts +5 -0
- package/api/resources/commons/types/PreconditionGroupResponse.js +3 -0
- package/api/resources/commons/types/PreconditionResponse.d.ts +28 -0
- package/api/resources/commons/types/PreconditionResponse.js +3 -0
- package/api/resources/commons/types/index.d.ts +4 -0
- package/api/resources/commons/types/index.js +4 -0
- package/api/resources/conversation/client/Client.d.ts +15 -0
- package/api/resources/conversation/client/Client.js +127 -0
- package/api/resources/customers/client/Client.d.ts +4 -0
- package/api/resources/customers/client/Client.js +32 -0
- package/api/resources/events/client/Client.d.ts +4 -0
- package/api/resources/events/client/Client.js +32 -0
- package/api/resources/inbox/client/Client.d.ts +8 -0
- package/api/resources/inbox/client/Client.js +64 -0
- package/api/resources/integrations/client/Client.d.ts +1 -0
- package/api/resources/integrations/client/Client.js +8 -0
- package/api/resources/knowledge/client/Client.d.ts +14 -0
- package/api/resources/knowledge/client/Client.js +112 -0
- package/api/resources/organizations/client/Client.d.ts +6 -0
- package/api/resources/organizations/client/Client.js +48 -0
- package/api/resources/segments/client/Client.d.ts +5 -0
- package/api/resources/segments/client/Client.js +40 -0
- package/api/resources/segments/types/SegmentBase.d.ts +0 -3
- package/api/resources/segments/types/SegmentRequest.d.ts +2 -0
- package/api/resources/segments/types/SegmentResponse.d.ts +2 -0
- package/api/resources/translations/client/Client.d.ts +1 -0
- package/api/resources/translations/client/Client.js +8 -0
- package/api/resources/triggers/client/Client.d.ts +5 -0
- package/api/resources/triggers/client/Client.js +40 -0
- package/api/resources/users/client/Client.d.ts +5 -0
- package/api/resources/users/client/Client.js +40 -0
- package/api/resources/voice/client/Client.d.ts +1 -0
- package/api/resources/voice/client/Client.js +8 -0
- package/dist/Client.js +2 -2
- package/dist/api/resources/actions/client/Client.d.ts +5 -0
- package/dist/api/resources/actions/client/Client.js +40 -0
- package/dist/api/resources/agents/client/Client.d.ts +6 -0
- package/dist/api/resources/agents/client/Client.js +48 -0
- package/dist/api/resources/analytics/client/Client.d.ts +7 -0
- package/dist/api/resources/analytics/client/Client.js +56 -0
- package/dist/api/resources/appSettings/client/Client.d.ts +3 -0
- package/dist/api/resources/appSettings/client/Client.js +24 -0
- package/dist/api/resources/assets/client/Client.d.ts +2 -0
- package/dist/api/resources/assets/client/Client.js +16 -0
- package/dist/api/resources/assets/types/CommitAssetUploadRequest.d.ts +1 -1
- package/dist/api/resources/commons/errors/PayloadTooLargeError.d.ts +6 -0
- package/dist/api/resources/commons/errors/PayloadTooLargeError.js +50 -0
- package/dist/api/resources/commons/errors/index.d.ts +1 -0
- package/dist/api/resources/commons/errors/index.js +1 -0
- package/dist/api/resources/commons/types/ConversationPreconditionResponse.d.ts +22 -0
- package/dist/api/resources/commons/types/ConversationPreconditionResponse.js +3 -0
- package/dist/api/resources/commons/types/IntelligentFieldPreconditionResponse.d.ts +13 -0
- package/dist/api/resources/commons/types/IntelligentFieldPreconditionResponse.js +3 -0
- package/dist/api/resources/commons/types/IntelligentFieldValueResponse.d.ts +1 -1
- package/dist/api/resources/commons/types/PreconditionGroupResponse.d.ts +5 -0
- package/dist/api/resources/commons/types/PreconditionGroupResponse.js +3 -0
- package/dist/api/resources/commons/types/PreconditionResponse.d.ts +28 -0
- package/dist/api/resources/commons/types/PreconditionResponse.js +3 -0
- package/dist/api/resources/commons/types/index.d.ts +4 -0
- package/dist/api/resources/commons/types/index.js +4 -0
- package/dist/api/resources/conversation/client/Client.d.ts +15 -0
- package/dist/api/resources/conversation/client/Client.js +127 -0
- package/dist/api/resources/customers/client/Client.d.ts +4 -0
- package/dist/api/resources/customers/client/Client.js +32 -0
- package/dist/api/resources/events/client/Client.d.ts +4 -0
- package/dist/api/resources/events/client/Client.js +32 -0
- package/dist/api/resources/inbox/client/Client.d.ts +8 -0
- package/dist/api/resources/inbox/client/Client.js +64 -0
- package/dist/api/resources/integrations/client/Client.d.ts +1 -0
- package/dist/api/resources/integrations/client/Client.js +8 -0
- package/dist/api/resources/knowledge/client/Client.d.ts +14 -0
- package/dist/api/resources/knowledge/client/Client.js +112 -0
- package/dist/api/resources/organizations/client/Client.d.ts +6 -0
- package/dist/api/resources/organizations/client/Client.js +48 -0
- package/dist/api/resources/segments/client/Client.d.ts +5 -0
- package/dist/api/resources/segments/client/Client.js +40 -0
- package/dist/api/resources/segments/types/SegmentBase.d.ts +0 -3
- package/dist/api/resources/segments/types/SegmentRequest.d.ts +2 -0
- package/dist/api/resources/segments/types/SegmentResponse.d.ts +2 -0
- package/dist/api/resources/translations/client/Client.d.ts +1 -0
- package/dist/api/resources/translations/client/Client.js +8 -0
- package/dist/api/resources/triggers/client/Client.d.ts +5 -0
- package/dist/api/resources/triggers/client/Client.js +40 -0
- package/dist/api/resources/users/client/Client.d.ts +5 -0
- package/dist/api/resources/users/client/Client.js +40 -0
- package/dist/api/resources/voice/client/Client.d.ts +1 -0
- package/dist/api/resources/voice/client/Client.js +8 -0
- package/dist/serialization/resources/commons/types/ConversationPreconditionResponse.d.ts +31 -0
- package/dist/serialization/resources/commons/types/ConversationPreconditionResponse.js +57 -0
- package/dist/serialization/resources/commons/types/IntelligentFieldPreconditionResponse.d.ts +13 -0
- package/dist/serialization/resources/commons/types/IntelligentFieldPreconditionResponse.js +45 -0
- package/dist/serialization/resources/commons/types/PreconditionGroupResponse.d.ts +11 -0
- package/dist/serialization/resources/commons/types/PreconditionGroupResponse.js +44 -0
- package/dist/serialization/resources/commons/types/PreconditionResponse.d.ts +19 -0
- package/dist/serialization/resources/commons/types/PreconditionResponse.js +53 -0
- package/dist/serialization/resources/commons/types/index.d.ts +4 -0
- package/dist/serialization/resources/commons/types/index.js +4 -0
- package/dist/serialization/resources/segments/types/SegmentBase.d.ts +1 -2
- package/dist/serialization/resources/segments/types/SegmentBase.js +0 -2
- package/dist/serialization/resources/segments/types/SegmentRequest.d.ts +2 -1
- package/dist/serialization/resources/segments/types/SegmentRequest.js +2 -0
- package/dist/serialization/resources/segments/types/SegmentResponse.d.ts +2 -1
- package/dist/serialization/resources/segments/types/SegmentResponse.js +2 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/serialization/resources/commons/types/ConversationPreconditionResponse.d.ts +31 -0
- package/serialization/resources/commons/types/ConversationPreconditionResponse.js +57 -0
- package/serialization/resources/commons/types/IntelligentFieldPreconditionResponse.d.ts +13 -0
- package/serialization/resources/commons/types/IntelligentFieldPreconditionResponse.js +45 -0
- package/serialization/resources/commons/types/PreconditionGroupResponse.d.ts +11 -0
- package/serialization/resources/commons/types/PreconditionGroupResponse.js +44 -0
- package/serialization/resources/commons/types/PreconditionResponse.d.ts +19 -0
- package/serialization/resources/commons/types/PreconditionResponse.js +53 -0
- package/serialization/resources/commons/types/index.d.ts +4 -0
- package/serialization/resources/commons/types/index.js +4 -0
- package/serialization/resources/segments/types/SegmentBase.d.ts +1 -2
- package/serialization/resources/segments/types/SegmentBase.js +0 -2
- package/serialization/resources/segments/types/SegmentRequest.d.ts +2 -1
- package/serialization/resources/segments/types/SegmentRequest.js +2 -0
- package/serialization/resources/segments/types/SegmentResponse.d.ts +2 -1
- package/serialization/resources/segments/types/SegmentResponse.js +2 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -63,6 +63,7 @@ class Assets {
|
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link MavenAGI.NotFoundError}
|
|
65
65
|
* @throws {@link MavenAGI.BadRequestError}
|
|
66
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
66
67
|
* @throws {@link MavenAGI.ServerError}
|
|
67
68
|
*
|
|
68
69
|
* @example
|
|
@@ -120,6 +121,13 @@ class Assets {
|
|
|
120
121
|
allowUnrecognizedEnumValues: true,
|
|
121
122
|
breadcrumbsPrefix: ["response"],
|
|
122
123
|
}), _response.rawResponse);
|
|
124
|
+
case 413:
|
|
125
|
+
throw new MavenAGI.PayloadTooLargeError(serializers.ErrorMessage.parseOrThrow(_response.error.body, {
|
|
126
|
+
unrecognizedObjectKeys: "passthrough",
|
|
127
|
+
allowUnrecognizedUnionMembers: true,
|
|
128
|
+
allowUnrecognizedEnumValues: true,
|
|
129
|
+
breadcrumbsPrefix: ["response"],
|
|
130
|
+
}), _response.rawResponse);
|
|
123
131
|
case 500:
|
|
124
132
|
throw new MavenAGI.ServerError(serializers.ErrorMessage.parseOrThrow(_response.error.body, {
|
|
125
133
|
unrecognizedObjectKeys: "passthrough",
|
|
@@ -162,6 +170,7 @@ class Assets {
|
|
|
162
170
|
*
|
|
163
171
|
* @throws {@link MavenAGI.NotFoundError}
|
|
164
172
|
* @throws {@link MavenAGI.BadRequestError}
|
|
173
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
165
174
|
* @throws {@link MavenAGI.ServerError}
|
|
166
175
|
*
|
|
167
176
|
* @example
|
|
@@ -209,6 +218,13 @@ class Assets {
|
|
|
209
218
|
allowUnrecognizedEnumValues: true,
|
|
210
219
|
breadcrumbsPrefix: ["response"],
|
|
211
220
|
}), _response.rawResponse);
|
|
221
|
+
case 413:
|
|
222
|
+
throw new MavenAGI.PayloadTooLargeError(serializers.ErrorMessage.parseOrThrow(_response.error.body, {
|
|
223
|
+
unrecognizedObjectKeys: "passthrough",
|
|
224
|
+
allowUnrecognizedUnionMembers: true,
|
|
225
|
+
allowUnrecognizedEnumValues: true,
|
|
226
|
+
breadcrumbsPrefix: ["response"],
|
|
227
|
+
}), _response.rawResponse);
|
|
212
228
|
case 500:
|
|
213
229
|
throw new MavenAGI.ServerError(serializers.ErrorMessage.parseOrThrow(_response.error.body, {
|
|
214
230
|
unrecognizedObjectKeys: "passthrough",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export interface CommitAssetUploadRequest {
|
|
2
|
-
/** MD5 hex digest of the uploaded file.
|
|
2
|
+
/** MD5 hex digest of the uploaded file. When provided, used to verify blob integrity. */
|
|
3
3
|
checksum?: string;
|
|
4
4
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type * as core from "../../../../core";
|
|
2
|
+
import * as errors from "../../../../errors/index";
|
|
3
|
+
import type * as MavenAGI from "../../../index";
|
|
4
|
+
export declare class PayloadTooLargeError extends errors.MavenAGIError {
|
|
5
|
+
constructor(body: MavenAGI.ErrorMessage, rawResponse?: core.RawResponse);
|
|
6
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
15
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
16
|
+
}) : function(o, v) {
|
|
17
|
+
o["default"] = v;
|
|
18
|
+
});
|
|
19
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
20
|
+
var ownKeys = function(o) {
|
|
21
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
22
|
+
var ar = [];
|
|
23
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
24
|
+
return ar;
|
|
25
|
+
};
|
|
26
|
+
return ownKeys(o);
|
|
27
|
+
};
|
|
28
|
+
return function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
})();
|
|
36
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
+
exports.PayloadTooLargeError = void 0;
|
|
38
|
+
const errors = __importStar(require("../../../../errors/index"));
|
|
39
|
+
class PayloadTooLargeError extends errors.MavenAGIError {
|
|
40
|
+
constructor(body, rawResponse) {
|
|
41
|
+
super({
|
|
42
|
+
message: "PayloadTooLargeError",
|
|
43
|
+
statusCode: 413,
|
|
44
|
+
body: body,
|
|
45
|
+
rawResponse: rawResponse,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, PayloadTooLargeError.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
exports.PayloadTooLargeError = PayloadTooLargeError;
|
|
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./BadRequestError"), exports);
|
|
18
18
|
__exportStar(require("./NotFoundError"), exports);
|
|
19
|
+
__exportStar(require("./PayloadTooLargeError"), exports);
|
|
19
20
|
__exportStar(require("./ServerError"), exports);
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type * as MavenAGI from "../../../index";
|
|
2
|
+
export type ConversationPreconditionResponse = MavenAGI.ConversationPreconditionResponse.Tags | MavenAGI.ConversationPreconditionResponse.Metadata | MavenAGI.ConversationPreconditionResponse.ActionExecuted | MavenAGI.ConversationPreconditionResponse.ResponseConfig | MavenAGI.ConversationPreconditionResponse.App | MavenAGI.ConversationPreconditionResponse.IntelligentField;
|
|
3
|
+
export declare namespace ConversationPreconditionResponse {
|
|
4
|
+
interface Tags extends MavenAGI.TagsPrecondition {
|
|
5
|
+
conversationPreconditionType: "tags";
|
|
6
|
+
}
|
|
7
|
+
interface Metadata extends MavenAGI.MetadataPrecondition {
|
|
8
|
+
conversationPreconditionType: "metadata";
|
|
9
|
+
}
|
|
10
|
+
interface ActionExecuted extends MavenAGI.ConversationExecutedActionPrecondition {
|
|
11
|
+
conversationPreconditionType: "actionExecuted";
|
|
12
|
+
}
|
|
13
|
+
interface ResponseConfig extends MavenAGI.ResponseConfigPrecondition {
|
|
14
|
+
conversationPreconditionType: "responseConfig";
|
|
15
|
+
}
|
|
16
|
+
interface App extends MavenAGI.AppPrecondition {
|
|
17
|
+
conversationPreconditionType: "app";
|
|
18
|
+
}
|
|
19
|
+
interface IntelligentField extends MavenAGI.IntelligentFieldPreconditionResponse {
|
|
20
|
+
conversationPreconditionType: "intelligentField";
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type * as MavenAGI from "../../../index";
|
|
2
|
+
/**
|
|
3
|
+
* Response variant of IntelligentFieldPrecondition.
|
|
4
|
+
* Includes the resolved display name of the intelligent field.
|
|
5
|
+
*/
|
|
6
|
+
export interface IntelligentFieldPreconditionResponse {
|
|
7
|
+
/** The ID of the intelligent field. */
|
|
8
|
+
fieldIdWithoutAgent: MavenAGI.EntityIdWithoutAgent;
|
|
9
|
+
/** Human-readable display name of the intelligent field. Resolved server-side. */
|
|
10
|
+
name?: string;
|
|
11
|
+
/** The condition to evaluate against the field's value. */
|
|
12
|
+
fieldCondition: MavenAGI.IntelligentFieldCondition;
|
|
13
|
+
}
|
|
@@ -9,7 +9,7 @@ import type * as MavenAGI from "../../../index";
|
|
|
9
9
|
* appId: "zendesk",
|
|
10
10
|
* organizationId: "acme",
|
|
11
11
|
* agentId: "support",
|
|
12
|
-
* type: MavenAGI.EntityType.
|
|
12
|
+
* type: MavenAGI.EntityType.IntelligentField
|
|
13
13
|
* },
|
|
14
14
|
* name: "Ticket Priority",
|
|
15
15
|
* entityId: {
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type * as MavenAGI from "../../../index";
|
|
2
|
+
/**
|
|
3
|
+
* @example
|
|
4
|
+
* {
|
|
5
|
+
* preconditionType: "group",
|
|
6
|
+
* operator: MavenAGI.PreconditionGroupOperator.And,
|
|
7
|
+
* preconditions: [{
|
|
8
|
+
* preconditionType: "user",
|
|
9
|
+
* key: "userKey"
|
|
10
|
+
* }, {
|
|
11
|
+
* preconditionType: "user",
|
|
12
|
+
* key: "userKey2"
|
|
13
|
+
* }]
|
|
14
|
+
* }
|
|
15
|
+
*/
|
|
16
|
+
export type PreconditionResponse = MavenAGI.PreconditionResponse.User | MavenAGI.PreconditionResponse.Conversation | MavenAGI.PreconditionResponse.Group;
|
|
17
|
+
export declare namespace PreconditionResponse {
|
|
18
|
+
interface User extends MavenAGI.MetadataPrecondition {
|
|
19
|
+
preconditionType: "user";
|
|
20
|
+
}
|
|
21
|
+
interface Conversation {
|
|
22
|
+
preconditionType: "conversation";
|
|
23
|
+
value: MavenAGI.ConversationPreconditionResponse;
|
|
24
|
+
}
|
|
25
|
+
interface Group extends MavenAGI.PreconditionGroupResponse {
|
|
26
|
+
preconditionType: "group";
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -61,6 +61,7 @@ export * from "./ConversationInformation";
|
|
|
61
61
|
export * from "./ConversationMessageBase";
|
|
62
62
|
export * from "./ConversationMessageResponse";
|
|
63
63
|
export * from "./ConversationPrecondition";
|
|
64
|
+
export * from "./ConversationPreconditionResponse";
|
|
64
65
|
export * from "./ConversationPreview";
|
|
65
66
|
export * from "./ConversationResponse";
|
|
66
67
|
export * from "./ConversationSummary";
|
|
@@ -108,6 +109,7 @@ export * from "./InboxItemStatus";
|
|
|
108
109
|
export * from "./InboxItemType";
|
|
109
110
|
export * from "./IntelligentFieldCondition";
|
|
110
111
|
export * from "./IntelligentFieldPrecondition";
|
|
112
|
+
export * from "./IntelligentFieldPreconditionResponse";
|
|
111
113
|
export * from "./IntelligentFieldValueResponse";
|
|
112
114
|
export * from "./IpInfo";
|
|
113
115
|
export * from "./KnowledgeContextByEntities";
|
|
@@ -141,7 +143,9 @@ export * from "./Precondition";
|
|
|
141
143
|
export * from "./PreconditionBase";
|
|
142
144
|
export * from "./PreconditionGroup";
|
|
143
145
|
export * from "./PreconditionGroupOperator";
|
|
146
|
+
export * from "./PreconditionGroupResponse";
|
|
144
147
|
export * from "./PreconditionOperator";
|
|
148
|
+
export * from "./PreconditionResponse";
|
|
145
149
|
export * from "./Quality";
|
|
146
150
|
export * from "./QualityReason";
|
|
147
151
|
export * from "./ResponseConfig";
|
|
@@ -77,6 +77,7 @@ __exportStar(require("./ConversationInformation"), exports);
|
|
|
77
77
|
__exportStar(require("./ConversationMessageBase"), exports);
|
|
78
78
|
__exportStar(require("./ConversationMessageResponse"), exports);
|
|
79
79
|
__exportStar(require("./ConversationPrecondition"), exports);
|
|
80
|
+
__exportStar(require("./ConversationPreconditionResponse"), exports);
|
|
80
81
|
__exportStar(require("./ConversationPreview"), exports);
|
|
81
82
|
__exportStar(require("./ConversationResponse"), exports);
|
|
82
83
|
__exportStar(require("./ConversationSummary"), exports);
|
|
@@ -124,6 +125,7 @@ __exportStar(require("./InboxItemStatus"), exports);
|
|
|
124
125
|
__exportStar(require("./InboxItemType"), exports);
|
|
125
126
|
__exportStar(require("./IntelligentFieldCondition"), exports);
|
|
126
127
|
__exportStar(require("./IntelligentFieldPrecondition"), exports);
|
|
128
|
+
__exportStar(require("./IntelligentFieldPreconditionResponse"), exports);
|
|
127
129
|
__exportStar(require("./IntelligentFieldValueResponse"), exports);
|
|
128
130
|
__exportStar(require("./IpInfo"), exports);
|
|
129
131
|
__exportStar(require("./KnowledgeContextByEntities"), exports);
|
|
@@ -157,7 +159,9 @@ __exportStar(require("./Precondition"), exports);
|
|
|
157
159
|
__exportStar(require("./PreconditionBase"), exports);
|
|
158
160
|
__exportStar(require("./PreconditionGroup"), exports);
|
|
159
161
|
__exportStar(require("./PreconditionGroupOperator"), exports);
|
|
162
|
+
__exportStar(require("./PreconditionGroupResponse"), exports);
|
|
160
163
|
__exportStar(require("./PreconditionOperator"), exports);
|
|
164
|
+
__exportStar(require("./PreconditionResponse"), exports);
|
|
161
165
|
__exportStar(require("./Quality"), exports);
|
|
162
166
|
__exportStar(require("./QualityReason"), exports);
|
|
163
167
|
__exportStar(require("./ResponseConfig"), exports);
|
|
@@ -25,6 +25,7 @@ export declare class Conversation {
|
|
|
25
25
|
*
|
|
26
26
|
* @throws {@link MavenAGI.NotFoundError}
|
|
27
27
|
* @throws {@link MavenAGI.BadRequestError}
|
|
28
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
28
29
|
* @throws {@link MavenAGI.ServerError}
|
|
29
30
|
*
|
|
30
31
|
* @example
|
|
@@ -67,6 +68,7 @@ export declare class Conversation {
|
|
|
67
68
|
*
|
|
68
69
|
* @throws {@link MavenAGI.NotFoundError}
|
|
69
70
|
* @throws {@link MavenAGI.BadRequestError}
|
|
71
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
70
72
|
* @throws {@link MavenAGI.ServerError}
|
|
71
73
|
*
|
|
72
74
|
* @example
|
|
@@ -85,6 +87,7 @@ export declare class Conversation {
|
|
|
85
87
|
*
|
|
86
88
|
* @throws {@link MavenAGI.NotFoundError}
|
|
87
89
|
* @throws {@link MavenAGI.BadRequestError}
|
|
90
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
88
91
|
* @throws {@link MavenAGI.ServerError}
|
|
89
92
|
*
|
|
90
93
|
* @example
|
|
@@ -110,6 +113,7 @@ export declare class Conversation {
|
|
|
110
113
|
*
|
|
111
114
|
* @throws {@link MavenAGI.NotFoundError}
|
|
112
115
|
* @throws {@link MavenAGI.BadRequestError}
|
|
116
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
113
117
|
* @throws {@link MavenAGI.ServerError}
|
|
114
118
|
*
|
|
115
119
|
* @example
|
|
@@ -128,6 +132,7 @@ export declare class Conversation {
|
|
|
128
132
|
*
|
|
129
133
|
* @throws {@link MavenAGI.NotFoundError}
|
|
130
134
|
* @throws {@link MavenAGI.BadRequestError}
|
|
135
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
131
136
|
* @throws {@link MavenAGI.ServerError}
|
|
132
137
|
*
|
|
133
138
|
* @example
|
|
@@ -170,6 +175,7 @@ export declare class Conversation {
|
|
|
170
175
|
*
|
|
171
176
|
* @throws {@link MavenAGI.NotFoundError}
|
|
172
177
|
* @throws {@link MavenAGI.BadRequestError}
|
|
178
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
173
179
|
* @throws {@link MavenAGI.ServerError}
|
|
174
180
|
*
|
|
175
181
|
* @example
|
|
@@ -219,6 +225,7 @@ export declare class Conversation {
|
|
|
219
225
|
*
|
|
220
226
|
* @throws {@link MavenAGI.NotFoundError}
|
|
221
227
|
* @throws {@link MavenAGI.BadRequestError}
|
|
228
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
222
229
|
* @throws {@link MavenAGI.ServerError}
|
|
223
230
|
*
|
|
224
231
|
* @example
|
|
@@ -234,6 +241,7 @@ export declare class Conversation {
|
|
|
234
241
|
*
|
|
235
242
|
* @throws {@link MavenAGI.NotFoundError}
|
|
236
243
|
* @throws {@link MavenAGI.BadRequestError}
|
|
244
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
237
245
|
* @throws {@link MavenAGI.ServerError}
|
|
238
246
|
*
|
|
239
247
|
* @example
|
|
@@ -269,6 +277,7 @@ export declare class Conversation {
|
|
|
269
277
|
*
|
|
270
278
|
* @throws {@link MavenAGI.NotFoundError}
|
|
271
279
|
* @throws {@link MavenAGI.BadRequestError}
|
|
280
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
272
281
|
* @throws {@link MavenAGI.ServerError}
|
|
273
282
|
*
|
|
274
283
|
* @example
|
|
@@ -294,6 +303,7 @@ export declare class Conversation {
|
|
|
294
303
|
*
|
|
295
304
|
* @throws {@link MavenAGI.NotFoundError}
|
|
296
305
|
* @throws {@link MavenAGI.BadRequestError}
|
|
306
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
297
307
|
* @throws {@link MavenAGI.ServerError}
|
|
298
308
|
*
|
|
299
309
|
* @example
|
|
@@ -318,6 +328,7 @@ export declare class Conversation {
|
|
|
318
328
|
*
|
|
319
329
|
* @throws {@link MavenAGI.NotFoundError}
|
|
320
330
|
* @throws {@link MavenAGI.BadRequestError}
|
|
331
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
321
332
|
* @throws {@link MavenAGI.ServerError}
|
|
322
333
|
*
|
|
323
334
|
* @example
|
|
@@ -338,6 +349,7 @@ export declare class Conversation {
|
|
|
338
349
|
*
|
|
339
350
|
* @throws {@link MavenAGI.NotFoundError}
|
|
340
351
|
* @throws {@link MavenAGI.BadRequestError}
|
|
352
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
341
353
|
* @throws {@link MavenAGI.ServerError}
|
|
342
354
|
*
|
|
343
355
|
* @example
|
|
@@ -354,6 +366,7 @@ export declare class Conversation {
|
|
|
354
366
|
* The CSV format may change over time and should not be relied upon by code consumers.
|
|
355
367
|
* @throws {@link MavenAGI.NotFoundError}
|
|
356
368
|
* @throws {@link MavenAGI.BadRequestError}
|
|
369
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
357
370
|
* @throws {@link MavenAGI.ServerError}
|
|
358
371
|
*/
|
|
359
372
|
export(request: MavenAGI.ConversationsSearchRequest, requestOptions?: Conversation.RequestOptions): core.HttpResponsePromise<core.BinaryResponse>;
|
|
@@ -373,6 +386,7 @@ export declare class Conversation {
|
|
|
373
386
|
*
|
|
374
387
|
* @throws {@link MavenAGI.NotFoundError}
|
|
375
388
|
* @throws {@link MavenAGI.BadRequestError}
|
|
389
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
376
390
|
* @throws {@link MavenAGI.ServerError}
|
|
377
391
|
*/
|
|
378
392
|
importSimulations(file: core.file.Uploadable, request: MavenAGI.SimulationImportRequest, requestOptions?: Conversation.RequestOptions): core.HttpResponsePromise<void>;
|
|
@@ -390,6 +404,7 @@ export declare class Conversation {
|
|
|
390
404
|
*
|
|
391
405
|
* @throws {@link MavenAGI.NotFoundError}
|
|
392
406
|
* @throws {@link MavenAGI.BadRequestError}
|
|
407
|
+
* @throws {@link MavenAGI.PayloadTooLargeError}
|
|
393
408
|
* @throws {@link MavenAGI.ServerError}
|
|
394
409
|
*
|
|
395
410
|
* @example
|