attio-js
Version:
Developer-friendly & type-safe JS/TS SDK based on the official OpenAPI spec of Attio.
123 lines • 4.82 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.Thread$ = exports.Thread$outboundSchema = exports.Thread$inboundSchema = exports.ThreadId$ = exports.ThreadId$outboundSchema = exports.ThreadId$inboundSchema = void 0;
exports.threadIdToJSON = threadIdToJSON;
exports.threadIdFromJSON = threadIdFromJSON;
exports.threadToJSON = threadToJSON;
exports.threadFromJSON = threadFromJSON;
const z = __importStar(require("zod"));
const primitives_js_1 = require("../../lib/primitives.js");
const schemas_js_1 = require("../../lib/schemas.js");
const comment_js_1 = require("./comment.js");
/** @internal */
exports.ThreadId$inboundSchema = z.object({
workspace_id: z.string(),
thread_id: z.string(),
}).transform((v) => {
return (0, primitives_js_1.remap)(v, {
"workspace_id": "workspaceId",
"thread_id": "threadId",
});
});
/** @internal */
exports.ThreadId$outboundSchema = z.object({
workspaceId: z.string(),
threadId: z.string(),
}).transform((v) => {
return (0, primitives_js_1.remap)(v, {
workspaceId: "workspace_id",
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 ThreadId$;
(function (ThreadId$) {
/** @deprecated use `ThreadId$inboundSchema` instead. */
ThreadId$.inboundSchema = exports.ThreadId$inboundSchema;
/** @deprecated use `ThreadId$outboundSchema` instead. */
ThreadId$.outboundSchema = exports.ThreadId$outboundSchema;
})(ThreadId$ || (exports.ThreadId$ = ThreadId$ = {}));
function threadIdToJSON(threadId) {
return JSON.stringify(exports.ThreadId$outboundSchema.parse(threadId));
}
function threadIdFromJSON(jsonString) {
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.ThreadId$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ThreadId' from JSON`);
}
/** @internal */
exports.Thread$inboundSchema = z
.object({
id: z.lazy(() => exports.ThreadId$inboundSchema),
comments: z.array(comment_js_1.Comment$inboundSchema),
created_at: z.string(),
}).transform((v) => {
return (0, primitives_js_1.remap)(v, {
"created_at": "createdAt",
});
});
/** @internal */
exports.Thread$outboundSchema = z.object({
id: z.lazy(() => exports.ThreadId$outboundSchema),
comments: z.array(comment_js_1.Comment$outboundSchema),
createdAt: z.string(),
}).transform((v) => {
return (0, primitives_js_1.remap)(v, {
createdAt: "created_at",
});
});
/**
* @internal
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
*/
var Thread$;
(function (Thread$) {
/** @deprecated use `Thread$inboundSchema` instead. */
Thread$.inboundSchema = exports.Thread$inboundSchema;
/** @deprecated use `Thread$outboundSchema` instead. */
Thread$.outboundSchema = exports.Thread$outboundSchema;
})(Thread$ || (exports.Thread$ = Thread$ = {}));
function threadToJSON(thread) {
return JSON.stringify(exports.Thread$outboundSchema.parse(thread));
}
function threadFromJSON(jsonString) {
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Thread$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Thread' from JSON`);
}
//# sourceMappingURL=thread.js.map