UNPKG

@hubspot/api-client

Version:

NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files

682 lines 89.9 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.BlogPostsApiResponseProcessor = exports.BlogPostsApiRequestFactory = void 0; const baseapi_1 = require("./baseapi"); const http_1 = require("../http/http"); const ObjectSerializer_1 = require("../models/ObjectSerializer"); const exception_1 = require("./exception"); const util_1 = require("../util"); class BlogPostsApiRequestFactory extends baseapi_1.BaseAPIRequestFactory { archive(objectId, archived, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "archive", "objectId"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.DELETE); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); if (archived !== undefined) { requestContext.setQueryParam("archived", ObjectSerializer_1.ObjectSerializer.serialize(archived, "boolean", "")); } let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } archiveBatch(batchInputString, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (batchInputString === null || batchInputString === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "archiveBatch", "batchInputString"); } const localVarPath = '/cms/v3/blogs/posts/batch/archive'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(batchInputString, "BatchInputString", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } attachToLangGroup(attachToLangPrimaryRequestVNext, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (attachToLangPrimaryRequestVNext === null || attachToLangPrimaryRequestVNext === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "attachToLangGroup", "attachToLangPrimaryRequestVNext"); } const localVarPath = '/cms/v3/blogs/posts/multi-language/attach-to-lang-group'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(attachToLangPrimaryRequestVNext, "AttachToLangPrimaryRequestVNext", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } clone(contentCloneRequestVNext, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (contentCloneRequestVNext === null || contentCloneRequestVNext === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "clone", "contentCloneRequestVNext"); } const localVarPath = '/cms/v3/blogs/posts/clone'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(contentCloneRequestVNext, "ContentCloneRequestVNext", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } create(blogPost, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (blogPost === null || blogPost === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "create", "blogPost"); } const localVarPath = '/cms/v3/blogs/posts'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(blogPost, "BlogPost", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } createBatch(batchInputBlogPost, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (batchInputBlogPost === null || batchInputBlogPost === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "createBatch", "batchInputBlogPost"); } const localVarPath = '/cms/v3/blogs/posts/batch/create'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(batchInputBlogPost, "BatchInputBlogPost", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } createLangVariation(blogPostLanguageCloneRequestVNext, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (blogPostLanguageCloneRequestVNext === null || blogPostLanguageCloneRequestVNext === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "createLangVariation", "blogPostLanguageCloneRequestVNext"); } const localVarPath = '/cms/v3/blogs/posts/multi-language/create-language-variation'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(blogPostLanguageCloneRequestVNext, "BlogPostLanguageCloneRequestVNext", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } detachFromLangGroup(detachFromLangGroupRequestVNext, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (detachFromLangGroupRequestVNext === null || detachFromLangGroupRequestVNext === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "detachFromLangGroup", "detachFromLangGroupRequestVNext"); } const localVarPath = '/cms/v3/blogs/posts/multi-language/detach-from-lang-group'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(detachFromLangGroupRequestVNext, "DetachFromLangGroupRequestVNext", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } getById(objectId, archived, property, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "getById", "objectId"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.GET); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); if (archived !== undefined) { requestContext.setQueryParam("archived", ObjectSerializer_1.ObjectSerializer.serialize(archived, "boolean", "")); } if (property !== undefined) { requestContext.setQueryParam("property", ObjectSerializer_1.ObjectSerializer.serialize(property, "string", "")); } let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } getDraftById(objectId, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "getDraftById", "objectId"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}/draft' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.GET); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } getPage(createdAt, createdAfter, createdBefore, updatedAt, updatedAfter, updatedBefore, sort, after, limit, archived, property, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; const localVarPath = '/cms/v3/blogs/posts'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.GET); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); if (createdAt !== undefined) { requestContext.setQueryParam("createdAt", ObjectSerializer_1.ObjectSerializer.serialize(createdAt, "Date", "date-time")); } if (createdAfter !== undefined) { requestContext.setQueryParam("createdAfter", ObjectSerializer_1.ObjectSerializer.serialize(createdAfter, "Date", "date-time")); } if (createdBefore !== undefined) { requestContext.setQueryParam("createdBefore", ObjectSerializer_1.ObjectSerializer.serialize(createdBefore, "Date", "date-time")); } if (updatedAt !== undefined) { requestContext.setQueryParam("updatedAt", ObjectSerializer_1.ObjectSerializer.serialize(updatedAt, "Date", "date-time")); } if (updatedAfter !== undefined) { requestContext.setQueryParam("updatedAfter", ObjectSerializer_1.ObjectSerializer.serialize(updatedAfter, "Date", "date-time")); } if (updatedBefore !== undefined) { requestContext.setQueryParam("updatedBefore", ObjectSerializer_1.ObjectSerializer.serialize(updatedBefore, "Date", "date-time")); } if (sort !== undefined) { requestContext.setQueryParam("sort", ObjectSerializer_1.ObjectSerializer.serialize(sort, "Array<string>", "")); } if (after !== undefined) { requestContext.setQueryParam("after", ObjectSerializer_1.ObjectSerializer.serialize(after, "string", "")); } if (limit !== undefined) { requestContext.setQueryParam("limit", ObjectSerializer_1.ObjectSerializer.serialize(limit, "number", "int32")); } if (archived !== undefined) { requestContext.setQueryParam("archived", ObjectSerializer_1.ObjectSerializer.serialize(archived, "boolean", "")); } if (property !== undefined) { requestContext.setQueryParam("property", ObjectSerializer_1.ObjectSerializer.serialize(property, "string", "")); } let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } getPreviousVersion(objectId, revisionId, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "getPreviousVersion", "objectId"); } if (revisionId === null || revisionId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "getPreviousVersion", "revisionId"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}/revisions/{revisionId}' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))) .replace('{' + 'revisionId' + '}', encodeURIComponent(String(revisionId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.GET); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } getPreviousVersions(objectId, after, before, limit, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "getPreviousVersions", "objectId"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}/revisions' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.GET); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); if (after !== undefined) { requestContext.setQueryParam("after", ObjectSerializer_1.ObjectSerializer.serialize(after, "string", "")); } if (before !== undefined) { requestContext.setQueryParam("before", ObjectSerializer_1.ObjectSerializer.serialize(before, "string", "")); } if (limit !== undefined) { requestContext.setQueryParam("limit", ObjectSerializer_1.ObjectSerializer.serialize(limit, "number", "int32")); } let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } pushLive(objectId, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "pushLive", "objectId"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}/draft/push-live' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } readBatch(batchInputString, archived, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (batchInputString === null || batchInputString === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "readBatch", "batchInputString"); } const localVarPath = '/cms/v3/blogs/posts/batch/read'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); if (archived !== undefined) { requestContext.setQueryParam("archived", ObjectSerializer_1.ObjectSerializer.serialize(archived, "boolean", "")); } const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(batchInputString, "BatchInputString", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } resetDraft(objectId, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "resetDraft", "objectId"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}/draft/reset' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } restorePreviousVersion(objectId, revisionId, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "restorePreviousVersion", "objectId"); } if (revisionId === null || revisionId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "restorePreviousVersion", "revisionId"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}/revisions/{revisionId}/restore' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))) .replace('{' + 'revisionId' + '}', encodeURIComponent(String(revisionId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } restorePreviousVersionToDraft(objectId, revisionId, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "restorePreviousVersionToDraft", "objectId"); } if (revisionId === null || revisionId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "restorePreviousVersionToDraft", "revisionId"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}/revisions/{revisionId}/restore-to-draft' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))) .replace('{' + 'revisionId' + '}', encodeURIComponent(String(revisionId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } schedule(contentScheduleRequestVNext, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (contentScheduleRequestVNext === null || contentScheduleRequestVNext === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "schedule", "contentScheduleRequestVNext"); } const localVarPath = '/cms/v3/blogs/posts/schedule'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(contentScheduleRequestVNext, "ContentScheduleRequestVNext", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } setLangPrimary(setNewLanguagePrimaryRequestVNext, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (setNewLanguagePrimaryRequestVNext === null || setNewLanguagePrimaryRequestVNext === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "setLangPrimary", "setNewLanguagePrimaryRequestVNext"); } const localVarPath = '/cms/v3/blogs/posts/multi-language/set-new-lang-primary'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.PUT); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(setNewLanguagePrimaryRequestVNext, "SetNewLanguagePrimaryRequestVNext", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } update(objectId, blogPost, archived, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "update", "objectId"); } if (blogPost === null || blogPost === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "update", "blogPost"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.PATCH); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); if (archived !== undefined) { requestContext.setQueryParam("archived", ObjectSerializer_1.ObjectSerializer.serialize(archived, "boolean", "")); } const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(blogPost, "BlogPost", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } updateBatch(batchInputJsonNode, archived, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (batchInputJsonNode === null || batchInputJsonNode === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "updateBatch", "batchInputJsonNode"); } const localVarPath = '/cms/v3/blogs/posts/batch/update'; const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.POST); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); if (archived !== undefined) { requestContext.setQueryParam("archived", ObjectSerializer_1.ObjectSerializer.serialize(archived, "boolean", "")); } const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(batchInputJsonNode, "BatchInputJsonNode", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const defaultAuth = ((_a = _options === null || _options === void 0 ? void 0 : _options.authMethods) === null || _a === void 0 ? void 0 : _a.default) || ((_c = (_b = this.configuration) === null || _b === void 0 ? void 0 : _b.authMethods) === null || _c === void 0 ? void 0 : _c.default); if (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication) { yield (defaultAuth === null || defaultAuth === void 0 ? void 0 : defaultAuth.applySecurityAuthentication(requestContext)); } return requestContext; }); } updateDraft(objectId, blogPost, _options) { var _a, _b, _c; return __awaiter(this, void 0, void 0, function* () { let _config = _options || this.configuration; if (objectId === null || objectId === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "updateDraft", "objectId"); } if (blogPost === null || blogPost === undefined) { throw new baseapi_1.RequiredError("BlogPostsApi", "updateDraft", "blogPost"); } const localVarPath = '/cms/v3/blogs/posts/{objectId}/draft' .replace('{' + 'objectId' + '}', encodeURIComponent(String(objectId))); const requestContext = _config.baseServer.makeRequestContext(localVarPath, http_1.HttpMethod.PATCH); requestContext.setHeaderParam("Accept", "application/json, */*;q=0.8"); const contentType = ObjectSerializer_1.ObjectSerializer.getPreferredMediaType([ "application/json" ]); requestContext.setHeaderParam("Content-Type", contentType); const serializedBody = ObjectSerializer_1.ObjectSerializer.stringify(ObjectSerializer_1.ObjectSerializer.serialize(blogPost, "BlogPost", ""), contentType); requestContext.setBody(serializedBody); let authMethod; authMethod = _config.authMethods["oauth2"]; if (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication) { yield (authMethod === null || authMethod === void 0 ? void 0 : authMethod.applySecurityAuthentication(requestContext)); } const d