UNPKG

attio-js

Version:

Developer-friendly & type-safe JS/TS SDK based on the official OpenAPI spec of Attio.

106 lines 5.16 kB
"use strict"; /* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.GetV2TasksTaskIdResponse$ = exports.GetV2TasksTaskIdResponse$outboundSchema = exports.GetV2TasksTaskIdResponse$inboundSchema = exports.GetV2TasksTaskIdRequest$ = exports.GetV2TasksTaskIdRequest$outboundSchema = exports.GetV2TasksTaskIdRequest$inboundSchema = void 0; exports.getV2TasksTaskIdRequestToJSON = getV2TasksTaskIdRequestToJSON; exports.getV2TasksTaskIdRequestFromJSON = getV2TasksTaskIdRequestFromJSON; exports.getV2TasksTaskIdResponseToJSON = getV2TasksTaskIdResponseToJSON; exports.getV2TasksTaskIdResponseFromJSON = getV2TasksTaskIdResponseFromJSON; const z = __importStar(require("zod")); const primitives_js_1 = require("../../lib/primitives.js"); const schemas_js_1 = require("../../lib/schemas.js"); const task_js_1 = require("../components/task.js"); /** @internal */ exports.GetV2TasksTaskIdRequest$inboundSchema = z.object({ task_id: z.string(), }).transform((v) => { return (0, primitives_js_1.remap)(v, { "task_id": "taskId", }); }); /** @internal */ exports.GetV2TasksTaskIdRequest$outboundSchema = z.object({ taskId: z.string(), }).transform((v) => { return (0, primitives_js_1.remap)(v, { taskId: "task_id", }); }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ var GetV2TasksTaskIdRequest$; (function (GetV2TasksTaskIdRequest$) { /** @deprecated use `GetV2TasksTaskIdRequest$inboundSchema` instead. */ GetV2TasksTaskIdRequest$.inboundSchema = exports.GetV2TasksTaskIdRequest$inboundSchema; /** @deprecated use `GetV2TasksTaskIdRequest$outboundSchema` instead. */ GetV2TasksTaskIdRequest$.outboundSchema = exports.GetV2TasksTaskIdRequest$outboundSchema; })(GetV2TasksTaskIdRequest$ || (exports.GetV2TasksTaskIdRequest$ = GetV2TasksTaskIdRequest$ = {})); function getV2TasksTaskIdRequestToJSON(getV2TasksTaskIdRequest) { return JSON.stringify(exports.GetV2TasksTaskIdRequest$outboundSchema.parse(getV2TasksTaskIdRequest)); } function getV2TasksTaskIdRequestFromJSON(jsonString) { return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetV2TasksTaskIdRequest$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetV2TasksTaskIdRequest' from JSON`); } /** @internal */ exports.GetV2TasksTaskIdResponse$inboundSchema = z.object({ data: task_js_1.Task$inboundSchema, }); /** @internal */ exports.GetV2TasksTaskIdResponse$outboundSchema = z.object({ data: task_js_1.Task$outboundSchema, }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ var GetV2TasksTaskIdResponse$; (function (GetV2TasksTaskIdResponse$) { /** @deprecated use `GetV2TasksTaskIdResponse$inboundSchema` instead. */ GetV2TasksTaskIdResponse$.inboundSchema = exports.GetV2TasksTaskIdResponse$inboundSchema; /** @deprecated use `GetV2TasksTaskIdResponse$outboundSchema` instead. */ GetV2TasksTaskIdResponse$.outboundSchema = exports.GetV2TasksTaskIdResponse$outboundSchema; })(GetV2TasksTaskIdResponse$ || (exports.GetV2TasksTaskIdResponse$ = GetV2TasksTaskIdResponse$ = {})); function getV2TasksTaskIdResponseToJSON(getV2TasksTaskIdResponse) { return JSON.stringify(exports.GetV2TasksTaskIdResponse$outboundSchema.parse(getV2TasksTaskIdResponse)); } function getV2TasksTaskIdResponseFromJSON(jsonString) { return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetV2TasksTaskIdResponse$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetV2TasksTaskIdResponse' from JSON`); } //# sourceMappingURL=getv2taskstaskid.js.map