UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

75 lines 2.4 kB
import { serializeUser } from './user.js'; import { deserializeUser } from './user.js'; import { serializeEventSource } from './eventSource.js'; import { deserializeEventSource } from './eventSource.js'; import { serializeFile } from './file.js'; import { deserializeFile } from './file.js'; import { serializeFolder } from './folder.js'; import { deserializeFolder } from './folder.js'; import { serializeGenericSource } from './genericSource.js'; import { deserializeGenericSource } from './genericSource.js'; import { serializeAppItemEventSource } from './appItemEventSource.js'; import { deserializeAppItemEventSource } from './appItemEventSource.js'; import { BoxSdkError } from '../box/errors.js'; import { sdIsMap } from '../serialization/json.js'; export function serializeEventSourceResource(val) { if (val.type == 'user') { return serializeUser(val); } if (val.type == 'file') { return serializeFile(val); } if (val.type == 'folder') { return serializeFolder(val); } if (val.type == 'app_item') { return serializeAppItemEventSource(val); } if (val.itemType == 'file') { return serializeEventSource(val); } if (val.itemType == 'folder') { return serializeEventSource(val); } return serializeGenericSource(val); } export function deserializeEventSourceResource(val) { if (!sdIsMap(val)) { throw new BoxSdkError({ message: 'Expecting a map for "EventSourceResource"', }); } if (val.type == 'user') { return deserializeUser(val); } if (val.type == 'file') { return deserializeFile(val); } if (val.type == 'folder') { return deserializeFolder(val); } if (val.type == 'app_item') { return deserializeAppItemEventSource(val); } if (!sdIsMap(val)) { throw new BoxSdkError({ message: 'Expecting a map for "EventSourceResource"', }); } if (val.item_type == 'file') { return deserializeEventSource(val); } if (val.item_type == 'folder') { return deserializeEventSource(val); } try { return deserializeGenericSource(val); } catch (error) { void 0; } finally { } throw new BoxSdkError({ message: "Can't deserialize EventSourceResource" }); } //# sourceMappingURL=eventSourceResource.js.map