UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

351 lines (350 loc) 11 kB
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 CollaboratorVariableTypeField = 'variable'; export type CollaboratorVariableVariableTypeField = 'user_list' | string; export type CollaboratorVariableVariableValueTypeField = 'user'; export class CollaboratorVariableVariableValueField { /** * The object type. */ readonly type: CollaboratorVariableVariableValueTypeField = 'user' as CollaboratorVariableVariableValueTypeField; /** * User's ID. */ readonly id!: string; readonly rawData?: SerializedData; constructor( fields: Omit<CollaboratorVariableVariableValueField, 'type'> & Partial<Pick<CollaboratorVariableVariableValueField, 'type'>>, ) { if (fields.type !== undefined) { this.type = fields.type; } if (fields.id !== undefined) { this.id = fields.id; } if (fields.rawData !== undefined) { this.rawData = fields.rawData; } } } export interface CollaboratorVariableVariableValueFieldInput { /** * The object type. */ readonly type?: CollaboratorVariableVariableValueTypeField; /** * User's ID. */ readonly id: string; readonly rawData?: SerializedData; } export class CollaboratorVariable { /** * Collaborator * object type. */ readonly type: CollaboratorVariableTypeField = 'variable' as CollaboratorVariableTypeField; /** * Variable type * for the Collaborator * object. */ readonly variableType: CollaboratorVariableVariableTypeField = 'user_list' as CollaboratorVariableVariableTypeField; /** * A list of user IDs. */ readonly variableValue!: readonly CollaboratorVariableVariableValueField[]; readonly rawData?: SerializedData; constructor( fields: Omit<CollaboratorVariable, 'type' | 'variableType'> & Partial<Pick<CollaboratorVariable, 'type' | 'variableType'>>, ) { if (fields.type !== undefined) { this.type = fields.type; } if (fields.variableType !== undefined) { this.variableType = fields.variableType; } if (fields.variableValue !== undefined) { this.variableValue = fields.variableValue; } if (fields.rawData !== undefined) { this.rawData = fields.rawData; } } } export interface CollaboratorVariableInput { /** * Collaborator * object type. */ readonly type?: CollaboratorVariableTypeField; /** * Variable type * for the Collaborator * object. */ readonly variableType?: CollaboratorVariableVariableTypeField; /** * A list of user IDs. */ readonly variableValue: readonly CollaboratorVariableVariableValueField[]; readonly rawData?: SerializedData; } export function serializeCollaboratorVariableTypeField( val: CollaboratorVariableTypeField, ): SerializedData { return val; } export function deserializeCollaboratorVariableTypeField( val: SerializedData, ): CollaboratorVariableTypeField { if (val == 'variable') { return val; } throw new BoxSdkError({ message: "Can't deserialize CollaboratorVariableTypeField", }); } export function serializeCollaboratorVariableVariableTypeField( val: CollaboratorVariableVariableTypeField, ): SerializedData { return val; } export function deserializeCollaboratorVariableVariableTypeField( val: SerializedData, ): CollaboratorVariableVariableTypeField { if (val == 'user_list') { return val; } if (sdIsString(val)) { return val; } throw new BoxSdkError({ message: "Can't deserialize CollaboratorVariableVariableTypeField", }); } export function serializeCollaboratorVariableVariableValueTypeField( val: CollaboratorVariableVariableValueTypeField, ): SerializedData { return val; } export function deserializeCollaboratorVariableVariableValueTypeField( val: SerializedData, ): CollaboratorVariableVariableValueTypeField { if (val == 'user') { return val; } throw new BoxSdkError({ message: "Can't deserialize CollaboratorVariableVariableValueTypeField", }); } export function serializeCollaboratorVariableVariableValueField( val: CollaboratorVariableVariableValueField, ): SerializedData { return { ['type']: serializeCollaboratorVariableVariableValueTypeField(val.type), ['id']: val.id, }; } export function deserializeCollaboratorVariableVariableValueField( val: SerializedData, ): CollaboratorVariableVariableValueField { if (!sdIsMap(val)) { throw new BoxSdkError({ message: 'Expecting a map for "CollaboratorVariableVariableValueField"', }); } if (val.type == void 0) { throw new BoxSdkError({ message: 'Expecting "type" of type "CollaboratorVariableVariableValueField" to be defined', }); } const type: CollaboratorVariableVariableValueTypeField = deserializeCollaboratorVariableVariableValueTypeField(val.type); if (val.id == void 0) { throw new BoxSdkError({ message: 'Expecting "id" of type "CollaboratorVariableVariableValueField" to be defined', }); } if (!sdIsString(val.id)) { throw new BoxSdkError({ message: 'Expecting string for "id" of type "CollaboratorVariableVariableValueField"', }); } const id: string = val.id; return { type: type, id: id, } satisfies CollaboratorVariableVariableValueField; } export function serializeCollaboratorVariableVariableValueFieldInput( val: CollaboratorVariableVariableValueFieldInput, ): SerializedData { return { ['type']: val.type == void 0 ? val.type : serializeCollaboratorVariableVariableValueTypeField(val.type), ['id']: val.id, }; } export function deserializeCollaboratorVariableVariableValueFieldInput( val: SerializedData, ): CollaboratorVariableVariableValueFieldInput { if (!sdIsMap(val)) { throw new BoxSdkError({ message: 'Expecting a map for "CollaboratorVariableVariableValueFieldInput"', }); } const type: undefined | CollaboratorVariableVariableValueTypeField = val.type == void 0 ? void 0 : deserializeCollaboratorVariableVariableValueTypeField(val.type); if (val.id == void 0) { throw new BoxSdkError({ message: 'Expecting "id" of type "CollaboratorVariableVariableValueFieldInput" to be defined', }); } if (!sdIsString(val.id)) { throw new BoxSdkError({ message: 'Expecting string for "id" of type "CollaboratorVariableVariableValueFieldInput"', }); } const id: string = val.id; return { type: type, id: id, } satisfies CollaboratorVariableVariableValueFieldInput; } export function serializeCollaboratorVariable( val: CollaboratorVariable, ): SerializedData { return { ['type']: serializeCollaboratorVariableTypeField(val.type), ['variable_type']: serializeCollaboratorVariableVariableTypeField( val.variableType, ), ['variable_value']: val.variableValue.map(function ( item: CollaboratorVariableVariableValueField, ): SerializedData { return serializeCollaboratorVariableVariableValueField(item); }) as readonly any[], }; } export function deserializeCollaboratorVariable( val: SerializedData, ): CollaboratorVariable { if (!sdIsMap(val)) { throw new BoxSdkError({ message: 'Expecting a map for "CollaboratorVariable"', }); } if (val.type == void 0) { throw new BoxSdkError({ message: 'Expecting "type" of type "CollaboratorVariable" to be defined', }); } const type: CollaboratorVariableTypeField = deserializeCollaboratorVariableTypeField(val.type); if (val.variable_type == void 0) { throw new BoxSdkError({ message: 'Expecting "variable_type" of type "CollaboratorVariable" to be defined', }); } const variableType: CollaboratorVariableVariableTypeField = deserializeCollaboratorVariableVariableTypeField(val.variable_type); if (val.variable_value == void 0) { throw new BoxSdkError({ message: 'Expecting "variable_value" of type "CollaboratorVariable" to be defined', }); } if (!sdIsList(val.variable_value)) { throw new BoxSdkError({ message: 'Expecting array for "variable_value" of type "CollaboratorVariable"', }); } const variableValue: readonly CollaboratorVariableVariableValueField[] = sdIsList(val.variable_value) ? (val.variable_value.map(function ( itm: SerializedData, ): CollaboratorVariableVariableValueField { return deserializeCollaboratorVariableVariableValueField(itm); }) as readonly any[]) : []; return { type: type, variableType: variableType, variableValue: variableValue, } satisfies CollaboratorVariable; } export function serializeCollaboratorVariableInput( val: CollaboratorVariableInput, ): SerializedData { return { ['type']: val.type == void 0 ? val.type : serializeCollaboratorVariableTypeField(val.type), ['variableType']: val.variableType == void 0 ? val.variableType : serializeCollaboratorVariableVariableTypeField(val.variableType), ['variable_value']: val.variableValue.map(function ( item: CollaboratorVariableVariableValueField, ): SerializedData { return serializeCollaboratorVariableVariableValueField(item); }) as readonly any[], }; } export function deserializeCollaboratorVariableInput( val: SerializedData, ): CollaboratorVariableInput { if (!sdIsMap(val)) { throw new BoxSdkError({ message: 'Expecting a map for "CollaboratorVariableInput"', }); } const type: undefined | CollaboratorVariableTypeField = val.type == void 0 ? void 0 : deserializeCollaboratorVariableTypeField(val.type); const variableType: undefined | CollaboratorVariableVariableTypeField = val.variableType == void 0 ? void 0 : deserializeCollaboratorVariableVariableTypeField(val.variableType); if (val.variable_value == void 0) { throw new BoxSdkError({ message: 'Expecting "variable_value" of type "CollaboratorVariableInput" to be defined', }); } if (!sdIsList(val.variable_value)) { throw new BoxSdkError({ message: 'Expecting array for "variable_value" of type "CollaboratorVariableInput"', }); } const variableValue: readonly CollaboratorVariableVariableValueField[] = sdIsList(val.variable_value) ? (val.variable_value.map(function ( itm: SerializedData, ): CollaboratorVariableVariableValueField { return deserializeCollaboratorVariableVariableValueField(itm); }) as readonly any[]) : []; return { type: type, variableType: variableType, variableValue: variableValue, } satisfies CollaboratorVariableInput; }