box-node-sdk
Version:
Official SDK for Box Platform APIs
202 lines (201 loc) • 7.72 kB
text/typescript
import { serializeAiSingleAgentResponseTypeField } from './aiSingleAgentResponse';
import { deserializeAiSingleAgentResponseTypeField } from './aiSingleAgentResponse';
import { serializeUserBase } from './userBase';
import { deserializeUserBase } from './userBase';
import { serializeDateTime } from '../internal/utils';
import { deserializeDateTime } from '../internal/utils';
import { serializeGroupBase } from './groupBase';
import { deserializeGroupBase } from './groupBase';
import { serializeAiAgentAllowedEntity } from './aiAgentAllowedEntity';
import { deserializeAiAgentAllowedEntity } from './aiAgentAllowedEntity';
import { serializeAiSingleAgentResponse } from './aiSingleAgentResponse';
import { deserializeAiSingleAgentResponse } from './aiSingleAgentResponse';
import { serializeAiStudioAgentAskResponse } from './aiStudioAgentAskResponse';
import { deserializeAiStudioAgentAskResponse } from './aiStudioAgentAskResponse';
import { serializeAiStudioAgentTextGenResponse } from './aiStudioAgentTextGenResponse';
import { deserializeAiStudioAgentTextGenResponse } from './aiStudioAgentTextGenResponse';
import { serializeAiStudioAgentExtractResponse } from './aiStudioAgentExtractResponse';
import { deserializeAiStudioAgentExtractResponse } from './aiStudioAgentExtractResponse';
import { AiSingleAgentResponseTypeField } from './aiSingleAgentResponse';
import { UserBase } from './userBase';
import { DateTime } from '../internal/utils';
import { GroupBase } from './groupBase';
import { AiAgentAllowedEntity } from './aiAgentAllowedEntity';
import { AiSingleAgentResponse } from './aiSingleAgentResponse';
import { AiStudioAgentAskResponse } from './aiStudioAgentAskResponse';
import { AiStudioAgentTextGenResponse } from './aiStudioAgentTextGenResponse';
import { AiStudioAgentExtractResponse } from './aiStudioAgentExtractResponse';
import { BoxSdkError } from '../box/errors';
import { SerializedData } from '../serialization/json';
import { sdIsEmpty } from '../serialization/json';
import { sdIsBoolean } from '../serialization/json';
import { sdIsNumber } from '../serialization/json';
import { sdIsString } from '../serialization/json';
import { sdIsList } from '../serialization/json';
import { sdIsMap } from '../serialization/json';
export type AiSingleAgentResponseFull = AiSingleAgentResponse & {
readonly ask?: AiStudioAgentAskResponse;
readonly textGen?: AiStudioAgentTextGenResponse;
readonly extract?: AiStudioAgentExtractResponse;
};
export function serializeAiSingleAgentResponseFull(
val: AiSingleAgentResponseFull,
): SerializedData {
const base: any = serializeAiSingleAgentResponse(val);
if (!sdIsMap(base)) {
throw new BoxSdkError({
message: 'Expecting a map for "AiSingleAgentResponseFull"',
});
}
return {
...base,
...{
['ask']:
val.ask == void 0
? val.ask
: serializeAiStudioAgentAskResponse(val.ask),
['text_gen']:
val.textGen == void 0
? val.textGen
: serializeAiStudioAgentTextGenResponse(val.textGen),
['extract']:
val.extract == void 0
? val.extract
: serializeAiStudioAgentExtractResponse(val.extract),
},
};
}
export function deserializeAiSingleAgentResponseFull(
val: SerializedData,
): AiSingleAgentResponseFull {
if (!sdIsMap(val)) {
throw new BoxSdkError({
message: 'Expecting a map for "AiSingleAgentResponseFull"',
});
}
const ask: undefined | AiStudioAgentAskResponse =
val.ask == void 0 ? void 0 : deserializeAiStudioAgentAskResponse(val.ask);
const textGen: undefined | AiStudioAgentTextGenResponse =
val.text_gen == void 0
? void 0
: deserializeAiStudioAgentTextGenResponse(val.text_gen);
const extract: undefined | AiStudioAgentExtractResponse =
val.extract == void 0
? void 0
: deserializeAiStudioAgentExtractResponse(val.extract);
if (val.id == void 0) {
throw new BoxSdkError({
message:
'Expecting "id" of type "AiSingleAgentResponseFull" to be defined',
});
}
if (!sdIsString(val.id)) {
throw new BoxSdkError({
message: 'Expecting string for "id" of type "AiSingleAgentResponseFull"',
});
}
const id: string = val.id;
const type: undefined | AiSingleAgentResponseTypeField =
val.type == void 0
? void 0
: deserializeAiSingleAgentResponseTypeField(val.type);
if (val.origin == void 0) {
throw new BoxSdkError({
message:
'Expecting "origin" of type "AiSingleAgentResponseFull" to be defined',
});
}
if (!sdIsString(val.origin)) {
throw new BoxSdkError({
message:
'Expecting string for "origin" of type "AiSingleAgentResponseFull"',
});
}
const origin: string = val.origin;
if (val.name == void 0) {
throw new BoxSdkError({
message:
'Expecting "name" of type "AiSingleAgentResponseFull" to be defined',
});
}
if (!sdIsString(val.name)) {
throw new BoxSdkError({
message:
'Expecting string for "name" of type "AiSingleAgentResponseFull"',
});
}
const name: string = val.name;
if (val.access_state == void 0) {
throw new BoxSdkError({
message:
'Expecting "access_state" of type "AiSingleAgentResponseFull" to be defined',
});
}
if (!sdIsString(val.access_state)) {
throw new BoxSdkError({
message:
'Expecting string for "access_state" of type "AiSingleAgentResponseFull"',
});
}
const accessState: string = val.access_state;
const createdBy: undefined | UserBase =
val.created_by == void 0 ? void 0 : deserializeUserBase(val.created_by);
if (!(val.created_at == void 0) && !sdIsString(val.created_at)) {
throw new BoxSdkError({
message:
'Expecting string for "created_at" of type "AiSingleAgentResponseFull"',
});
}
const createdAt: undefined | DateTime =
val.created_at == void 0 ? void 0 : deserializeDateTime(val.created_at);
const modifiedBy: undefined | UserBase =
val.modified_by == void 0 ? void 0 : deserializeUserBase(val.modified_by);
if (!(val.modified_at == void 0) && !sdIsString(val.modified_at)) {
throw new BoxSdkError({
message:
'Expecting string for "modified_at" of type "AiSingleAgentResponseFull"',
});
}
const modifiedAt: undefined | DateTime =
val.modified_at == void 0 ? void 0 : deserializeDateTime(val.modified_at);
if (!(val.icon_reference == void 0) && !sdIsString(val.icon_reference)) {
throw new BoxSdkError({
message:
'Expecting string for "icon_reference" of type "AiSingleAgentResponseFull"',
});
}
const iconReference: undefined | string =
val.icon_reference == void 0 ? void 0 : val.icon_reference;
if (!(val.allowed_entities == void 0) && !sdIsList(val.allowed_entities)) {
throw new BoxSdkError({
message:
'Expecting array for "allowed_entities" of type "AiSingleAgentResponseFull"',
});
}
const allowedEntities: undefined | readonly AiAgentAllowedEntity[] =
val.allowed_entities == void 0
? void 0
: sdIsList(val.allowed_entities)
? (val.allowed_entities.map(function (
itm: SerializedData,
): AiAgentAllowedEntity {
return deserializeAiAgentAllowedEntity(itm);
}) as readonly any[])
: [];
return {
ask: ask,
textGen: textGen,
extract: extract,
id: id,
type: type,
origin: origin,
name: name,
accessState: accessState,
createdBy: createdBy,
createdAt: createdAt,
modifiedBy: modifiedBy,
modifiedAt: modifiedAt,
iconReference: iconReference,
allowedEntities: allowedEntities,
} satisfies AiSingleAgentResponseFull;
}