sailpoint-api-client 1.8.0 → 1.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/nerm/api.js CHANGED
@@ -6874,19 +6874,19 @@ var PageContentTranslationsNERMApiAxiosParamCreator = function (configuration) {
6874
6874
  /**
6875
6875
  * Create a page content translation record.
6876
6876
  * @summary Create page content translation
6877
- * @param {CreatePageContentRequest1NERM} createPageContentRequest1NERM
6877
+ * @param {CreatePageContentTranslationRequestNERM} createPageContentTranslationRequestNERM
6878
6878
  * @param {*} [axiosOptions] Override http request option.
6879
6879
  * @throws {RequiredError}
6880
6880
  */
6881
- createPageContent: function (createPageContentRequest1NERM, axiosOptions) {
6881
+ createPageContentTranslation: function (createPageContentTranslationRequestNERM, axiosOptions) {
6882
6882
  if (axiosOptions === void 0) { axiosOptions = {}; }
6883
6883
  return __awaiter(_this, void 0, void 0, function () {
6884
6884
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
6885
6885
  return __generator(this, function (_a) {
6886
6886
  switch (_a.label) {
6887
6887
  case 0:
6888
- // verify required parameter 'createPageContentRequest1NERM' is not null or undefined
6889
- (0, common_1.assertParamExists)('createPageContent', 'createPageContentRequest1NERM', createPageContentRequest1NERM);
6888
+ // verify required parameter 'createPageContentTranslationRequestNERM' is not null or undefined
6889
+ (0, common_1.assertParamExists)('createPageContentTranslation', 'createPageContentTranslationRequestNERM', createPageContentTranslationRequestNERM);
6890
6890
  localVarPath = "/page_content_translations";
6891
6891
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
6892
6892
  if (configuration) {
@@ -6916,7 +6916,7 @@ var PageContentTranslationsNERMApiAxiosParamCreator = function (configuration) {
6916
6916
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
6917
6917
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
6918
6918
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
6919
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createPageContentRequest1NERM, localVarRequestOptions, configuration);
6919
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createPageContentTranslationRequestNERM, localVarRequestOptions, configuration);
6920
6920
  return [2 /*return*/, {
6921
6921
  url: (0, common_1.toPathString)(localVarUrlObj),
6922
6922
  axiosOptions: localVarRequestOptions,
@@ -7032,23 +7032,19 @@ var PageContentTranslationsNERMApiAxiosParamCreator = function (configuration) {
7032
7032
  });
7033
7033
  },
7034
7034
  /**
7035
- * Info for a specific page content translation record by Id
7036
- * @summary Find page content translation
7037
- * @param {string} id ID of the object to retrieve, update, or delete
7035
+ * This endpoint can retrieve page content translation data.
7036
+ * @summary Get page contents translation
7038
7037
  * @param {*} [axiosOptions] Override http request option.
7039
7038
  * @throws {RequiredError}
7040
7039
  */
7041
- getPageContentTranslationById: function (id, axiosOptions) {
7040
+ getPageContentTranslation: function (axiosOptions) {
7042
7041
  if (axiosOptions === void 0) { axiosOptions = {}; }
7043
7042
  return __awaiter(_this, void 0, void 0, function () {
7044
7043
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
7045
7044
  return __generator(this, function (_a) {
7046
7045
  switch (_a.label) {
7047
7046
  case 0:
7048
- // verify required parameter 'id' is not null or undefined
7049
- (0, common_1.assertParamExists)('getPageContentTranslationById', 'id', id);
7050
- localVarPath = "/page_content_translations/{id}"
7051
- .replace("{".concat("id", "}"), encodeURIComponent(String(id)));
7047
+ localVarPath = "/page_content_translations";
7052
7048
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
7053
7049
  if (configuration) {
7054
7050
  baseOptions = configuration.baseOptions;
@@ -7085,21 +7081,23 @@ var PageContentTranslationsNERMApiAxiosParamCreator = function (configuration) {
7085
7081
  });
7086
7082
  },
7087
7083
  /**
7088
- * Info for a specific page content translation record by UID (user-specified identifier)
7084
+ * Info for a specific page content translation record by Id
7089
7085
  * @summary Find page content translation
7090
- * @param {string} [uid] UID of the object to retrieve, update, or delete. A UID or \"specified identifier\" is a string typically in \"snake_case\" format that provides a human-readable description of the record. They are commonly used to ensure sandbox, qa, staging and production tenants have the identical configuration items loaded. Every record has a UID assigned when persisted. When not specified the system assigns one by default. A default value looks like a 32 character string of random hexadecimal characters.
7086
+ * @param {string} id ID of the object to retrieve, update, or delete
7091
7087
  * @param {*} [axiosOptions] Override http request option.
7092
7088
  * @throws {RequiredError}
7093
7089
  */
7094
- getPageContentTranslationByUid: function (uid, axiosOptions) {
7090
+ getPageContentTranslationById: function (id, axiosOptions) {
7095
7091
  if (axiosOptions === void 0) { axiosOptions = {}; }
7096
7092
  return __awaiter(_this, void 0, void 0, function () {
7097
7093
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
7098
7094
  return __generator(this, function (_a) {
7099
7095
  switch (_a.label) {
7100
7096
  case 0:
7101
- localVarPath = "/page_content_translations/{uid}"
7102
- .replace("{".concat("uid", "}"), encodeURIComponent(String(uid)));
7097
+ // verify required parameter 'id' is not null or undefined
7098
+ (0, common_1.assertParamExists)('getPageContentTranslationById', 'id', id);
7099
+ localVarPath = "/page_content_translations/{id}"
7100
+ .replace("{".concat("id", "}"), encodeURIComponent(String(id)));
7103
7101
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
7104
7102
  if (configuration) {
7105
7103
  baseOptions = configuration.baseOptions;
@@ -7136,19 +7134,21 @@ var PageContentTranslationsNERMApiAxiosParamCreator = function (configuration) {
7136
7134
  });
7137
7135
  },
7138
7136
  /**
7139
- * This endpoint can retrieve page content translation data.
7140
- * @summary Get page contents translation
7137
+ * Info for a specific page content translation record by UID (user-specified identifier)
7138
+ * @summary Find page content translation
7139
+ * @param {string} [uid] UID of the object to retrieve, update, or delete. A UID or \"specified identifier\" is a string typically in \"snake_case\" format that provides a human-readable description of the record. They are commonly used to ensure sandbox, qa, staging and production tenants have the identical configuration items loaded. Every record has a UID assigned when persisted. When not specified the system assigns one by default. A default value looks like a 32 character string of random hexadecimal characters.
7141
7140
  * @param {*} [axiosOptions] Override http request option.
7142
7141
  * @throws {RequiredError}
7143
7142
  */
7144
- getPageContents: function (axiosOptions) {
7143
+ getPageContentTranslationByUid: function (uid, axiosOptions) {
7145
7144
  if (axiosOptions === void 0) { axiosOptions = {}; }
7146
7145
  return __awaiter(_this, void 0, void 0, function () {
7147
7146
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
7148
7147
  return __generator(this, function (_a) {
7149
7148
  switch (_a.label) {
7150
7149
  case 0:
7151
- localVarPath = "/page_content_translations";
7150
+ localVarPath = "/page_content_translations/{uid}"
7151
+ .replace("{".concat("uid", "}"), encodeURIComponent(String(uid)));
7152
7152
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
7153
7153
  if (configuration) {
7154
7154
  baseOptions = configuration.baseOptions;
@@ -7311,21 +7311,21 @@ var PageContentTranslationsNERMApiFp = function (configuration) {
7311
7311
  /**
7312
7312
  * Create a page content translation record.
7313
7313
  * @summary Create page content translation
7314
- * @param {CreatePageContentRequest1NERM} createPageContentRequest1NERM
7314
+ * @param {CreatePageContentTranslationRequestNERM} createPageContentTranslationRequestNERM
7315
7315
  * @param {*} [axiosOptions] Override http request option.
7316
7316
  * @throws {RequiredError}
7317
7317
  */
7318
- createPageContent: function (createPageContentRequest1NERM, axiosOptions) {
7318
+ createPageContentTranslation: function (createPageContentTranslationRequestNERM, axiosOptions) {
7319
7319
  var _a, _b, _c;
7320
7320
  return __awaiter(this, void 0, void 0, function () {
7321
7321
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
7322
7322
  return __generator(this, function (_d) {
7323
7323
  switch (_d.label) {
7324
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.createPageContent(createPageContentRequest1NERM, axiosOptions)];
7324
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.createPageContentTranslation(createPageContentTranslationRequestNERM, axiosOptions)];
7325
7325
  case 1:
7326
7326
  localVarAxiosArgs = _d.sent();
7327
7327
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
7328
- localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PageContentTranslationsNERMApi.createPageContent']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7328
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PageContentTranslationsNERMApi.createPageContentTranslation']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7329
7329
  return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
7330
7330
  }
7331
7331
  });
@@ -7378,68 +7378,68 @@ var PageContentTranslationsNERMApiFp = function (configuration) {
7378
7378
  });
7379
7379
  },
7380
7380
  /**
7381
- * Info for a specific page content translation record by Id
7382
- * @summary Find page content translation
7383
- * @param {string} id ID of the object to retrieve, update, or delete
7381
+ * This endpoint can retrieve page content translation data.
7382
+ * @summary Get page contents translation
7384
7383
  * @param {*} [axiosOptions] Override http request option.
7385
7384
  * @throws {RequiredError}
7386
7385
  */
7387
- getPageContentTranslationById: function (id, axiosOptions) {
7386
+ getPageContentTranslation: function (axiosOptions) {
7388
7387
  var _a, _b, _c;
7389
7388
  return __awaiter(this, void 0, void 0, function () {
7390
7389
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
7391
7390
  return __generator(this, function (_d) {
7392
7391
  switch (_d.label) {
7393
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.getPageContentTranslationById(id, axiosOptions)];
7392
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getPageContentTranslation(axiosOptions)];
7394
7393
  case 1:
7395
7394
  localVarAxiosArgs = _d.sent();
7396
7395
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
7397
- localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PageContentTranslationsNERMApi.getPageContentTranslationById']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7396
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PageContentTranslationsNERMApi.getPageContentTranslation']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7398
7397
  return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
7399
7398
  }
7400
7399
  });
7401
7400
  });
7402
7401
  },
7403
7402
  /**
7404
- * Info for a specific page content translation record by UID (user-specified identifier)
7403
+ * Info for a specific page content translation record by Id
7405
7404
  * @summary Find page content translation
7406
- * @param {string} [uid] UID of the object to retrieve, update, or delete. A UID or \"specified identifier\" is a string typically in \"snake_case\" format that provides a human-readable description of the record. They are commonly used to ensure sandbox, qa, staging and production tenants have the identical configuration items loaded. Every record has a UID assigned when persisted. When not specified the system assigns one by default. A default value looks like a 32 character string of random hexadecimal characters.
7405
+ * @param {string} id ID of the object to retrieve, update, or delete
7407
7406
  * @param {*} [axiosOptions] Override http request option.
7408
7407
  * @throws {RequiredError}
7409
7408
  */
7410
- getPageContentTranslationByUid: function (uid, axiosOptions) {
7409
+ getPageContentTranslationById: function (id, axiosOptions) {
7411
7410
  var _a, _b, _c;
7412
7411
  return __awaiter(this, void 0, void 0, function () {
7413
7412
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
7414
7413
  return __generator(this, function (_d) {
7415
7414
  switch (_d.label) {
7416
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.getPageContentTranslationByUid(uid, axiosOptions)];
7415
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getPageContentTranslationById(id, axiosOptions)];
7417
7416
  case 1:
7418
7417
  localVarAxiosArgs = _d.sent();
7419
7418
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
7420
- localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PageContentTranslationsNERMApi.getPageContentTranslationByUid']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7419
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PageContentTranslationsNERMApi.getPageContentTranslationById']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7421
7420
  return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
7422
7421
  }
7423
7422
  });
7424
7423
  });
7425
7424
  },
7426
7425
  /**
7427
- * This endpoint can retrieve page content translation data.
7428
- * @summary Get page contents translation
7426
+ * Info for a specific page content translation record by UID (user-specified identifier)
7427
+ * @summary Find page content translation
7428
+ * @param {string} [uid] UID of the object to retrieve, update, or delete. A UID or \"specified identifier\" is a string typically in \"snake_case\" format that provides a human-readable description of the record. They are commonly used to ensure sandbox, qa, staging and production tenants have the identical configuration items loaded. Every record has a UID assigned when persisted. When not specified the system assigns one by default. A default value looks like a 32 character string of random hexadecimal characters.
7429
7429
  * @param {*} [axiosOptions] Override http request option.
7430
7430
  * @throws {RequiredError}
7431
7431
  */
7432
- getPageContents: function (axiosOptions) {
7432
+ getPageContentTranslationByUid: function (uid, axiosOptions) {
7433
7433
  var _a, _b, _c;
7434
7434
  return __awaiter(this, void 0, void 0, function () {
7435
7435
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
7436
7436
  return __generator(this, function (_d) {
7437
7437
  switch (_d.label) {
7438
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.getPageContents(axiosOptions)];
7438
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getPageContentTranslationByUid(uid, axiosOptions)];
7439
7439
  case 1:
7440
7440
  localVarAxiosArgs = _d.sent();
7441
7441
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
7442
- localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PageContentTranslationsNERMApi.getPageContents']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7442
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PageContentTranslationsNERMApi.getPageContentTranslationByUid']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7443
7443
  return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
7444
7444
  }
7445
7445
  });
@@ -7506,12 +7506,12 @@ var PageContentTranslationsNERMApiFactory = function (configuration, basePath, a
7506
7506
  /**
7507
7507
  * Create a page content translation record.
7508
7508
  * @summary Create page content translation
7509
- * @param {PageContentTranslationsNERMApiCreatePageContentRequest} requestParameters Request parameters.
7509
+ * @param {PageContentTranslationsNERMApiCreatePageContentTranslationRequest} requestParameters Request parameters.
7510
7510
  * @param {*} [axiosOptions] Override http request option.
7511
7511
  * @throws {RequiredError}
7512
7512
  */
7513
- createPageContent: function (requestParameters, axiosOptions) {
7514
- return localVarFp.createPageContent(requestParameters.createPageContentRequest1NERM, axiosOptions).then(function (request) { return request(axios, basePath); });
7513
+ createPageContentTranslation: function (requestParameters, axiosOptions) {
7514
+ return localVarFp.createPageContentTranslation(requestParameters.createPageContentTranslationRequestNERM, axiosOptions).then(function (request) { return request(axios, basePath); });
7515
7515
  },
7516
7516
  /**
7517
7517
  * Delete page content translation by id
@@ -7533,6 +7533,15 @@ var PageContentTranslationsNERMApiFactory = function (configuration, basePath, a
7533
7533
  deletePageContentTranslationByUid: function (requestParameters, axiosOptions) {
7534
7534
  return localVarFp.deletePageContentTranslationByUid(requestParameters.id, axiosOptions).then(function (request) { return request(axios, basePath); });
7535
7535
  },
7536
+ /**
7537
+ * This endpoint can retrieve page content translation data.
7538
+ * @summary Get page contents translation
7539
+ * @param {*} [axiosOptions] Override http request option.
7540
+ * @throws {RequiredError}
7541
+ */
7542
+ getPageContentTranslation: function (axiosOptions) {
7543
+ return localVarFp.getPageContentTranslation(axiosOptions).then(function (request) { return request(axios, basePath); });
7544
+ },
7536
7545
  /**
7537
7546
  * Info for a specific page content translation record by Id
7538
7547
  * @summary Find page content translation
@@ -7554,15 +7563,6 @@ var PageContentTranslationsNERMApiFactory = function (configuration, basePath, a
7554
7563
  if (requestParameters === void 0) { requestParameters = {}; }
7555
7564
  return localVarFp.getPageContentTranslationByUid(requestParameters.uid, axiosOptions).then(function (request) { return request(axios, basePath); });
7556
7565
  },
7557
- /**
7558
- * This endpoint can retrieve page content translation data.
7559
- * @summary Get page contents translation
7560
- * @param {*} [axiosOptions] Override http request option.
7561
- * @throws {RequiredError}
7562
- */
7563
- getPageContents: function (axiosOptions) {
7564
- return localVarFp.getPageContents(axiosOptions).then(function (request) { return request(axios, basePath); });
7565
- },
7566
7566
  /**
7567
7567
  * Update info for a specific page content translation record by id
7568
7568
  * @summary Update page content translation
@@ -7600,14 +7600,14 @@ var PageContentTranslationsNERMApi = /** @class */ (function (_super) {
7600
7600
  /**
7601
7601
  * Create a page content translation record.
7602
7602
  * @summary Create page content translation
7603
- * @param {PageContentTranslationsNERMApiCreatePageContentRequest} requestParameters Request parameters.
7603
+ * @param {PageContentTranslationsNERMApiCreatePageContentTranslationRequest} requestParameters Request parameters.
7604
7604
  * @param {*} [axiosOptions] Override http request option.
7605
7605
  * @throws {RequiredError}
7606
7606
  * @memberof PageContentTranslationsNERMApi
7607
7607
  */
7608
- PageContentTranslationsNERMApi.prototype.createPageContent = function (requestParameters, axiosOptions) {
7608
+ PageContentTranslationsNERMApi.prototype.createPageContentTranslation = function (requestParameters, axiosOptions) {
7609
7609
  var _this = this;
7610
- return (0, exports.PageContentTranslationsNERMApiFp)(this.configuration).createPageContent(requestParameters.createPageContentRequest1NERM, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
7610
+ return (0, exports.PageContentTranslationsNERMApiFp)(this.configuration).createPageContentTranslation(requestParameters.createPageContentTranslationRequestNERM, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
7611
7611
  };
7612
7612
  /**
7613
7613
  * Delete page content translation by id
@@ -7633,6 +7633,17 @@ var PageContentTranslationsNERMApi = /** @class */ (function (_super) {
7633
7633
  var _this = this;
7634
7634
  return (0, exports.PageContentTranslationsNERMApiFp)(this.configuration).deletePageContentTranslationByUid(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
7635
7635
  };
7636
+ /**
7637
+ * This endpoint can retrieve page content translation data.
7638
+ * @summary Get page contents translation
7639
+ * @param {*} [axiosOptions] Override http request option.
7640
+ * @throws {RequiredError}
7641
+ * @memberof PageContentTranslationsNERMApi
7642
+ */
7643
+ PageContentTranslationsNERMApi.prototype.getPageContentTranslation = function (axiosOptions) {
7644
+ var _this = this;
7645
+ return (0, exports.PageContentTranslationsNERMApiFp)(this.configuration).getPageContentTranslation(axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
7646
+ };
7636
7647
  /**
7637
7648
  * Info for a specific page content translation record by Id
7638
7649
  * @summary Find page content translation
@@ -7658,17 +7669,6 @@ var PageContentTranslationsNERMApi = /** @class */ (function (_super) {
7658
7669
  if (requestParameters === void 0) { requestParameters = {}; }
7659
7670
  return (0, exports.PageContentTranslationsNERMApiFp)(this.configuration).getPageContentTranslationByUid(requestParameters.uid, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
7660
7671
  };
7661
- /**
7662
- * This endpoint can retrieve page content translation data.
7663
- * @summary Get page contents translation
7664
- * @param {*} [axiosOptions] Override http request option.
7665
- * @throws {RequiredError}
7666
- * @memberof PageContentTranslationsNERMApi
7667
- */
7668
- PageContentTranslationsNERMApi.prototype.getPageContents = function (axiosOptions) {
7669
- var _this = this;
7670
- return (0, exports.PageContentTranslationsNERMApiFp)(this.configuration).getPageContents(axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
7671
- };
7672
7672
  /**
7673
7673
  * Update info for a specific page content translation record by id
7674
7674
  * @summary Update page content translation