attio-js
Version:
Developer-friendly & type-safe JS/TS SDK based on the official OpenAPI spec of Attio.
106 lines • 5.4 kB
JavaScript
;
/*
* 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.GetV2ThreadsThreadIdResponse$ = exports.GetV2ThreadsThreadIdResponse$outboundSchema = exports.GetV2ThreadsThreadIdResponse$inboundSchema = exports.GetV2ThreadsThreadIdRequest$ = exports.GetV2ThreadsThreadIdRequest$outboundSchema = exports.GetV2ThreadsThreadIdRequest$inboundSchema = void 0;
exports.getV2ThreadsThreadIdRequestToJSON = getV2ThreadsThreadIdRequestToJSON;
exports.getV2ThreadsThreadIdRequestFromJSON = getV2ThreadsThreadIdRequestFromJSON;
exports.getV2ThreadsThreadIdResponseToJSON = getV2ThreadsThreadIdResponseToJSON;
exports.getV2ThreadsThreadIdResponseFromJSON = getV2ThreadsThreadIdResponseFromJSON;
const z = __importStar(require("zod"));
const primitives_js_1 = require("../../lib/primitives.js");
const schemas_js_1 = require("../../lib/schemas.js");
const thread_js_1 = require("../components/thread.js");
/** @internal */
exports.GetV2ThreadsThreadIdRequest$inboundSchema = z.object({
thread_id: z.string(),
}).transform((v) => {
return (0, primitives_js_1.remap)(v, {
"thread_id": "threadId",
});
});
/** @internal */
exports.GetV2ThreadsThreadIdRequest$outboundSchema = z.object({
threadId: z.string(),
}).transform((v) => {
return (0, primitives_js_1.remap)(v, {
threadId: "thread_id",
});
});
/**
* @internal
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
*/
var GetV2ThreadsThreadIdRequest$;
(function (GetV2ThreadsThreadIdRequest$) {
/** @deprecated use `GetV2ThreadsThreadIdRequest$inboundSchema` instead. */
GetV2ThreadsThreadIdRequest$.inboundSchema = exports.GetV2ThreadsThreadIdRequest$inboundSchema;
/** @deprecated use `GetV2ThreadsThreadIdRequest$outboundSchema` instead. */
GetV2ThreadsThreadIdRequest$.outboundSchema = exports.GetV2ThreadsThreadIdRequest$outboundSchema;
})(GetV2ThreadsThreadIdRequest$ || (exports.GetV2ThreadsThreadIdRequest$ = GetV2ThreadsThreadIdRequest$ = {}));
function getV2ThreadsThreadIdRequestToJSON(getV2ThreadsThreadIdRequest) {
return JSON.stringify(exports.GetV2ThreadsThreadIdRequest$outboundSchema.parse(getV2ThreadsThreadIdRequest));
}
function getV2ThreadsThreadIdRequestFromJSON(jsonString) {
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetV2ThreadsThreadIdRequest$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetV2ThreadsThreadIdRequest' from JSON`);
}
/** @internal */
exports.GetV2ThreadsThreadIdResponse$inboundSchema = z.object({
data: thread_js_1.Thread$inboundSchema,
});
/** @internal */
exports.GetV2ThreadsThreadIdResponse$outboundSchema = z.object({
data: thread_js_1.Thread$outboundSchema,
});
/**
* @internal
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
*/
var GetV2ThreadsThreadIdResponse$;
(function (GetV2ThreadsThreadIdResponse$) {
/** @deprecated use `GetV2ThreadsThreadIdResponse$inboundSchema` instead. */
GetV2ThreadsThreadIdResponse$.inboundSchema = exports.GetV2ThreadsThreadIdResponse$inboundSchema;
/** @deprecated use `GetV2ThreadsThreadIdResponse$outboundSchema` instead. */
GetV2ThreadsThreadIdResponse$.outboundSchema = exports.GetV2ThreadsThreadIdResponse$outboundSchema;
})(GetV2ThreadsThreadIdResponse$ || (exports.GetV2ThreadsThreadIdResponse$ = GetV2ThreadsThreadIdResponse$ = {}));
function getV2ThreadsThreadIdResponseToJSON(getV2ThreadsThreadIdResponse) {
return JSON.stringify(exports.GetV2ThreadsThreadIdResponse$outboundSchema.parse(getV2ThreadsThreadIdResponse));
}
function getV2ThreadsThreadIdResponseFromJSON(jsonString) {
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetV2ThreadsThreadIdResponse$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetV2ThreadsThreadIdResponse' from JSON`);
}
//# sourceMappingURL=getv2threadsthreadid.js.map