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/nerm/api.ts CHANGED
@@ -1888,28 +1888,28 @@ export interface CreateNotificationActionRequestNERM {
1888
1888
  /**
1889
1889
  *
1890
1890
  * @export
1891
- * @interface CreatePageContentRequest1NERM
1891
+ * @interface CreatePageContentRequestNERM
1892
1892
  */
1893
- export interface CreatePageContentRequest1NERM {
1893
+ export interface CreatePageContentRequestNERM {
1894
1894
  /**
1895
1895
  *
1896
- * @type {PageContentTranslation1NERM}
1897
- * @memberof CreatePageContentRequest1NERM
1896
+ * @type {PageContent1NERM}
1897
+ * @memberof CreatePageContentRequestNERM
1898
1898
  */
1899
- 'page_content_translation'?: PageContentTranslation1NERM;
1899
+ 'page_content'?: PageContent1NERM;
1900
1900
  }
1901
1901
  /**
1902
1902
  *
1903
1903
  * @export
1904
- * @interface CreatePageContentRequestNERM
1904
+ * @interface CreatePageContentTranslationRequestNERM
1905
1905
  */
1906
- export interface CreatePageContentRequestNERM {
1906
+ export interface CreatePageContentTranslationRequestNERM {
1907
1907
  /**
1908
1908
  *
1909
- * @type {PageContent1NERM}
1910
- * @memberof CreatePageContentRequestNERM
1909
+ * @type {PageContentTranslation1NERM}
1910
+ * @memberof CreatePageContentTranslationRequestNERM
1911
1911
  */
1912
- 'page_content'?: PageContent1NERM;
1912
+ 'page_content_translation'?: PageContentTranslation1NERM;
1913
1913
  }
1914
1914
  /**
1915
1915
  *
@@ -3077,13 +3077,13 @@ export interface GetJobStatus200ResponseNERM {
3077
3077
  /**
3078
3078
  *
3079
3079
  * @export
3080
- * @interface GetPageContents200Response1NERM
3080
+ * @interface GetPageContentTranslation200ResponseNERM
3081
3081
  */
3082
- export interface GetPageContents200Response1NERM {
3082
+ export interface GetPageContentTranslation200ResponseNERM {
3083
3083
  /**
3084
3084
  *
3085
3085
  * @type {PageContentTranslationNERM}
3086
- * @memberof GetPageContents200Response1NERM
3086
+ * @memberof GetPageContentTranslation200ResponseNERM
3087
3087
  */
3088
3088
  'page_content_translation'?: PageContentTranslationNERM;
3089
3089
  }
@@ -14096,13 +14096,13 @@ export const PageContentTranslationsNERMApiAxiosParamCreator = function (configu
14096
14096
  /**
14097
14097
  * Create a page content translation record.
14098
14098
  * @summary Create page content translation
14099
- * @param {CreatePageContentRequest1NERM} createPageContentRequest1NERM
14099
+ * @param {CreatePageContentTranslationRequestNERM} createPageContentTranslationRequestNERM
14100
14100
  * @param {*} [axiosOptions] Override http request option.
14101
14101
  * @throws {RequiredError}
14102
14102
  */
14103
- createPageContent: async (createPageContentRequest1NERM: CreatePageContentRequest1NERM, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
14104
- // verify required parameter 'createPageContentRequest1NERM' is not null or undefined
14105
- assertParamExists('createPageContent', 'createPageContentRequest1NERM', createPageContentRequest1NERM)
14103
+ createPageContentTranslation: async (createPageContentTranslationRequestNERM: CreatePageContentTranslationRequestNERM, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
14104
+ // verify required parameter 'createPageContentTranslationRequestNERM' is not null or undefined
14105
+ assertParamExists('createPageContentTranslation', 'createPageContentTranslationRequestNERM', createPageContentTranslationRequestNERM)
14106
14106
  const localVarPath = `/page_content_translations`;
14107
14107
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
14108
14108
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -14130,7 +14130,7 @@ export const PageContentTranslationsNERMApiAxiosParamCreator = function (configu
14130
14130
  setSearchParams(localVarUrlObj, localVarQueryParameter);
14131
14131
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
14132
14132
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
14133
- localVarRequestOptions.data = serializeDataIfNeeded(createPageContentRequest1NERM, localVarRequestOptions, configuration)
14133
+ localVarRequestOptions.data = serializeDataIfNeeded(createPageContentTranslationRequestNERM, localVarRequestOptions, configuration)
14134
14134
 
14135
14135
  return {
14136
14136
  url: toPathString(localVarUrlObj),
@@ -14222,17 +14222,13 @@ export const PageContentTranslationsNERMApiAxiosParamCreator = function (configu
14222
14222
  };
14223
14223
  },
14224
14224
  /**
14225
- * Info for a specific page content translation record by Id
14226
- * @summary Find page content translation
14227
- * @param {string} id ID of the object to retrieve, update, or delete
14225
+ * This endpoint can retrieve page content translation data.
14226
+ * @summary Get page contents translation
14228
14227
  * @param {*} [axiosOptions] Override http request option.
14229
14228
  * @throws {RequiredError}
14230
14229
  */
14231
- getPageContentTranslationById: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
14232
- // verify required parameter 'id' is not null or undefined
14233
- assertParamExists('getPageContentTranslationById', 'id', id)
14234
- const localVarPath = `/page_content_translations/{id}`
14235
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
14230
+ getPageContentTranslation: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
14231
+ const localVarPath = `/page_content_translations`;
14236
14232
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
14237
14233
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
14238
14234
  let baseOptions;
@@ -14264,15 +14260,17 @@ export const PageContentTranslationsNERMApiAxiosParamCreator = function (configu
14264
14260
  };
14265
14261
  },
14266
14262
  /**
14267
- * Info for a specific page content translation record by UID (user-specified identifier)
14263
+ * Info for a specific page content translation record by Id
14268
14264
  * @summary Find page content translation
14269
- * @param {string} [uid] UID of the object to retrieve, update, or delete. A UID or \&quot;specified identifier\&quot; is a string typically in \&quot;snake_case\&quot; 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.
14265
+ * @param {string} id ID of the object to retrieve, update, or delete
14270
14266
  * @param {*} [axiosOptions] Override http request option.
14271
14267
  * @throws {RequiredError}
14272
14268
  */
14273
- getPageContentTranslationByUid: async (uid?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
14274
- const localVarPath = `/page_content_translations/{uid}`
14275
- .replace(`{${"uid"}}`, encodeURIComponent(String(uid)));
14269
+ getPageContentTranslationById: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
14270
+ // verify required parameter 'id' is not null or undefined
14271
+ assertParamExists('getPageContentTranslationById', 'id', id)
14272
+ const localVarPath = `/page_content_translations/{id}`
14273
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
14276
14274
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
14277
14275
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
14278
14276
  let baseOptions;
@@ -14304,13 +14302,15 @@ export const PageContentTranslationsNERMApiAxiosParamCreator = function (configu
14304
14302
  };
14305
14303
  },
14306
14304
  /**
14307
- * This endpoint can retrieve page content translation data.
14308
- * @summary Get page contents translation
14305
+ * Info for a specific page content translation record by UID (user-specified identifier)
14306
+ * @summary Find page content translation
14307
+ * @param {string} [uid] UID of the object to retrieve, update, or delete. A UID or \&quot;specified identifier\&quot; is a string typically in \&quot;snake_case\&quot; 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.
14309
14308
  * @param {*} [axiosOptions] Override http request option.
14310
14309
  * @throws {RequiredError}
14311
14310
  */
14312
- getPageContents: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
14313
- const localVarPath = `/page_content_translations`;
14311
+ getPageContentTranslationByUid: async (uid?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
14312
+ const localVarPath = `/page_content_translations/{uid}`
14313
+ .replace(`{${"uid"}}`, encodeURIComponent(String(uid)));
14314
14314
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
14315
14315
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
14316
14316
  let baseOptions;
@@ -14448,14 +14448,14 @@ export const PageContentTranslationsNERMApiFp = function(configuration?: Configu
14448
14448
  /**
14449
14449
  * Create a page content translation record.
14450
14450
  * @summary Create page content translation
14451
- * @param {CreatePageContentRequest1NERM} createPageContentRequest1NERM
14451
+ * @param {CreatePageContentTranslationRequestNERM} createPageContentTranslationRequestNERM
14452
14452
  * @param {*} [axiosOptions] Override http request option.
14453
14453
  * @throws {RequiredError}
14454
14454
  */
14455
- async createPageContent(createPageContentRequest1NERM: CreatePageContentRequest1NERM, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContents200Response1NERM>> {
14456
- const localVarAxiosArgs = await localVarAxiosParamCreator.createPageContent(createPageContentRequest1NERM, axiosOptions);
14455
+ async createPageContentTranslation(createPageContentTranslationRequestNERM: CreatePageContentTranslationRequestNERM, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>> {
14456
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createPageContentTranslation(createPageContentTranslationRequestNERM, axiosOptions);
14457
14457
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
14458
- const localVarOperationServerBasePath = operationServerMap['PageContentTranslationsNERMApi.createPageContent']?.[localVarOperationServerIndex]?.url;
14458
+ const localVarOperationServerBasePath = operationServerMap['PageContentTranslationsNERMApi.createPageContentTranslation']?.[localVarOperationServerIndex]?.url;
14459
14459
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14460
14460
  },
14461
14461
  /**
@@ -14465,7 +14465,7 @@ export const PageContentTranslationsNERMApiFp = function(configuration?: Configu
14465
14465
  * @param {*} [axiosOptions] Override http request option.
14466
14466
  * @throws {RequiredError}
14467
14467
  */
14468
- async deletePageContentTranslationById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContents200Response1NERM>> {
14468
+ async deletePageContentTranslationById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>> {
14469
14469
  const localVarAxiosArgs = await localVarAxiosParamCreator.deletePageContentTranslationById(id, axiosOptions);
14470
14470
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
14471
14471
  const localVarOperationServerBasePath = operationServerMap['PageContentTranslationsNERMApi.deletePageContentTranslationById']?.[localVarOperationServerIndex]?.url;
@@ -14478,12 +14478,24 @@ export const PageContentTranslationsNERMApiFp = function(configuration?: Configu
14478
14478
  * @param {*} [axiosOptions] Override http request option.
14479
14479
  * @throws {RequiredError}
14480
14480
  */
14481
- async deletePageContentTranslationByUid(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContents200Response1NERM>> {
14481
+ async deletePageContentTranslationByUid(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>> {
14482
14482
  const localVarAxiosArgs = await localVarAxiosParamCreator.deletePageContentTranslationByUid(id, axiosOptions);
14483
14483
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
14484
14484
  const localVarOperationServerBasePath = operationServerMap['PageContentTranslationsNERMApi.deletePageContentTranslationByUid']?.[localVarOperationServerIndex]?.url;
14485
14485
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14486
14486
  },
14487
+ /**
14488
+ * This endpoint can retrieve page content translation data.
14489
+ * @summary Get page contents translation
14490
+ * @param {*} [axiosOptions] Override http request option.
14491
+ * @throws {RequiredError}
14492
+ */
14493
+ async getPageContentTranslation(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>> {
14494
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getPageContentTranslation(axiosOptions);
14495
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
14496
+ const localVarOperationServerBasePath = operationServerMap['PageContentTranslationsNERMApi.getPageContentTranslation']?.[localVarOperationServerIndex]?.url;
14497
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14498
+ },
14487
14499
  /**
14488
14500
  * Info for a specific page content translation record by Id
14489
14501
  * @summary Find page content translation
@@ -14491,7 +14503,7 @@ export const PageContentTranslationsNERMApiFp = function(configuration?: Configu
14491
14503
  * @param {*} [axiosOptions] Override http request option.
14492
14504
  * @throws {RequiredError}
14493
14505
  */
14494
- async getPageContentTranslationById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContents200Response1NERM>> {
14506
+ async getPageContentTranslationById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>> {
14495
14507
  const localVarAxiosArgs = await localVarAxiosParamCreator.getPageContentTranslationById(id, axiosOptions);
14496
14508
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
14497
14509
  const localVarOperationServerBasePath = operationServerMap['PageContentTranslationsNERMApi.getPageContentTranslationById']?.[localVarOperationServerIndex]?.url;
@@ -14504,24 +14516,12 @@ export const PageContentTranslationsNERMApiFp = function(configuration?: Configu
14504
14516
  * @param {*} [axiosOptions] Override http request option.
14505
14517
  * @throws {RequiredError}
14506
14518
  */
14507
- async getPageContentTranslationByUid(uid?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContents200Response1NERM>> {
14519
+ async getPageContentTranslationByUid(uid?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>> {
14508
14520
  const localVarAxiosArgs = await localVarAxiosParamCreator.getPageContentTranslationByUid(uid, axiosOptions);
14509
14521
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
14510
14522
  const localVarOperationServerBasePath = operationServerMap['PageContentTranslationsNERMApi.getPageContentTranslationByUid']?.[localVarOperationServerIndex]?.url;
14511
14523
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14512
14524
  },
14513
- /**
14514
- * This endpoint can retrieve page content translation data.
14515
- * @summary Get page contents translation
14516
- * @param {*} [axiosOptions] Override http request option.
14517
- * @throws {RequiredError}
14518
- */
14519
- async getPageContents(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContents200Response1NERM>> {
14520
- const localVarAxiosArgs = await localVarAxiosParamCreator.getPageContents(axiosOptions);
14521
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
14522
- const localVarOperationServerBasePath = operationServerMap['PageContentTranslationsNERMApi.getPageContents']?.[localVarOperationServerIndex]?.url;
14523
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14524
- },
14525
14525
  /**
14526
14526
  * Update info for a specific page content translation record by id
14527
14527
  * @summary Update page content translation
@@ -14530,7 +14530,7 @@ export const PageContentTranslationsNERMApiFp = function(configuration?: Configu
14530
14530
  * @param {*} [axiosOptions] Override http request option.
14531
14531
  * @throws {RequiredError}
14532
14532
  */
14533
- async updatePageContentTranslationById(id: string, updatePageContentTranslationByIdRequestNERM: UpdatePageContentTranslationByIdRequestNERM, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContents200Response1NERM>> {
14533
+ async updatePageContentTranslationById(id: string, updatePageContentTranslationByIdRequestNERM: UpdatePageContentTranslationByIdRequestNERM, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>> {
14534
14534
  const localVarAxiosArgs = await localVarAxiosParamCreator.updatePageContentTranslationById(id, updatePageContentTranslationByIdRequestNERM, axiosOptions);
14535
14535
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
14536
14536
  const localVarOperationServerBasePath = operationServerMap['PageContentTranslationsNERMApi.updatePageContentTranslationById']?.[localVarOperationServerIndex]?.url;
@@ -14544,7 +14544,7 @@ export const PageContentTranslationsNERMApiFp = function(configuration?: Configu
14544
14544
  * @param {*} [axiosOptions] Override http request option.
14545
14545
  * @throws {RequiredError}
14546
14546
  */
14547
- async updatePageContentTranslationByUid(updatePageContentTranslationByIdRequestNERM: UpdatePageContentTranslationByIdRequestNERM, uid?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContents200Response1NERM>> {
14547
+ async updatePageContentTranslationByUid(updatePageContentTranslationByIdRequestNERM: UpdatePageContentTranslationByIdRequestNERM, uid?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>> {
14548
14548
  const localVarAxiosArgs = await localVarAxiosParamCreator.updatePageContentTranslationByUid(updatePageContentTranslationByIdRequestNERM, uid, axiosOptions);
14549
14549
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
14550
14550
  const localVarOperationServerBasePath = operationServerMap['PageContentTranslationsNERMApi.updatePageContentTranslationByUid']?.[localVarOperationServerIndex]?.url;
@@ -14563,12 +14563,12 @@ export const PageContentTranslationsNERMApiFactory = function (configuration?: C
14563
14563
  /**
14564
14564
  * Create a page content translation record.
14565
14565
  * @summary Create page content translation
14566
- * @param {PageContentTranslationsNERMApiCreatePageContentRequest} requestParameters Request parameters.
14566
+ * @param {PageContentTranslationsNERMApiCreatePageContentTranslationRequest} requestParameters Request parameters.
14567
14567
  * @param {*} [axiosOptions] Override http request option.
14568
14568
  * @throws {RequiredError}
14569
14569
  */
14570
- createPageContent(requestParameters: PageContentTranslationsNERMApiCreatePageContentRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContents200Response1NERM> {
14571
- return localVarFp.createPageContent(requestParameters.createPageContentRequest1NERM, axiosOptions).then((request) => request(axios, basePath));
14570
+ createPageContentTranslation(requestParameters: PageContentTranslationsNERMApiCreatePageContentTranslationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM> {
14571
+ return localVarFp.createPageContentTranslation(requestParameters.createPageContentTranslationRequestNERM, axiosOptions).then((request) => request(axios, basePath));
14572
14572
  },
14573
14573
  /**
14574
14574
  * Delete page content translation by id
@@ -14577,7 +14577,7 @@ export const PageContentTranslationsNERMApiFactory = function (configuration?: C
14577
14577
  * @param {*} [axiosOptions] Override http request option.
14578
14578
  * @throws {RequiredError}
14579
14579
  */
14580
- deletePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContents200Response1NERM> {
14580
+ deletePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM> {
14581
14581
  return localVarFp.deletePageContentTranslationById(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
14582
14582
  },
14583
14583
  /**
@@ -14587,9 +14587,18 @@ export const PageContentTranslationsNERMApiFactory = function (configuration?: C
14587
14587
  * @param {*} [axiosOptions] Override http request option.
14588
14588
  * @throws {RequiredError}
14589
14589
  */
14590
- deletePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContents200Response1NERM> {
14590
+ deletePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM> {
14591
14591
  return localVarFp.deletePageContentTranslationByUid(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
14592
14592
  },
14593
+ /**
14594
+ * This endpoint can retrieve page content translation data.
14595
+ * @summary Get page contents translation
14596
+ * @param {*} [axiosOptions] Override http request option.
14597
+ * @throws {RequiredError}
14598
+ */
14599
+ getPageContentTranslation(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM> {
14600
+ return localVarFp.getPageContentTranslation(axiosOptions).then((request) => request(axios, basePath));
14601
+ },
14593
14602
  /**
14594
14603
  * Info for a specific page content translation record by Id
14595
14604
  * @summary Find page content translation
@@ -14597,7 +14606,7 @@ export const PageContentTranslationsNERMApiFactory = function (configuration?: C
14597
14606
  * @param {*} [axiosOptions] Override http request option.
14598
14607
  * @throws {RequiredError}
14599
14608
  */
14600
- getPageContentTranslationById(requestParameters: PageContentTranslationsNERMApiGetPageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContents200Response1NERM> {
14609
+ getPageContentTranslationById(requestParameters: PageContentTranslationsNERMApiGetPageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM> {
14601
14610
  return localVarFp.getPageContentTranslationById(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
14602
14611
  },
14603
14612
  /**
@@ -14607,18 +14616,9 @@ export const PageContentTranslationsNERMApiFactory = function (configuration?: C
14607
14616
  * @param {*} [axiosOptions] Override http request option.
14608
14617
  * @throws {RequiredError}
14609
14618
  */
14610
- getPageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiGetPageContentTranslationByUidRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContents200Response1NERM> {
14619
+ getPageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiGetPageContentTranslationByUidRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM> {
14611
14620
  return localVarFp.getPageContentTranslationByUid(requestParameters.uid, axiosOptions).then((request) => request(axios, basePath));
14612
14621
  },
14613
- /**
14614
- * This endpoint can retrieve page content translation data.
14615
- * @summary Get page contents translation
14616
- * @param {*} [axiosOptions] Override http request option.
14617
- * @throws {RequiredError}
14618
- */
14619
- getPageContents(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContents200Response1NERM> {
14620
- return localVarFp.getPageContents(axiosOptions).then((request) => request(axios, basePath));
14621
- },
14622
14622
  /**
14623
14623
  * Update info for a specific page content translation record by id
14624
14624
  * @summary Update page content translation
@@ -14626,7 +14626,7 @@ export const PageContentTranslationsNERMApiFactory = function (configuration?: C
14626
14626
  * @param {*} [axiosOptions] Override http request option.
14627
14627
  * @throws {RequiredError}
14628
14628
  */
14629
- updatePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContents200Response1NERM> {
14629
+ updatePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM> {
14630
14630
  return localVarFp.updatePageContentTranslationById(requestParameters.id, requestParameters.updatePageContentTranslationByIdRequestNERM, axiosOptions).then((request) => request(axios, basePath));
14631
14631
  },
14632
14632
  /**
@@ -14636,24 +14636,24 @@ export const PageContentTranslationsNERMApiFactory = function (configuration?: C
14636
14636
  * @param {*} [axiosOptions] Override http request option.
14637
14637
  * @throws {RequiredError}
14638
14638
  */
14639
- updatePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContents200Response1NERM> {
14639
+ updatePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM> {
14640
14640
  return localVarFp.updatePageContentTranslationByUid(requestParameters.updatePageContentTranslationByIdRequestNERM, requestParameters.uid, axiosOptions).then((request) => request(axios, basePath));
14641
14641
  },
14642
14642
  };
14643
14643
  };
14644
14644
 
14645
14645
  /**
14646
- * Request parameters for createPageContent operation in PageContentTranslationsNERMApi.
14646
+ * Request parameters for createPageContentTranslation operation in PageContentTranslationsNERMApi.
14647
14647
  * @export
14648
- * @interface PageContentTranslationsNERMApiCreatePageContentRequest
14648
+ * @interface PageContentTranslationsNERMApiCreatePageContentTranslationRequest
14649
14649
  */
14650
- export interface PageContentTranslationsNERMApiCreatePageContentRequest {
14650
+ export interface PageContentTranslationsNERMApiCreatePageContentTranslationRequest {
14651
14651
  /**
14652
14652
  *
14653
- * @type {CreatePageContentRequest1NERM}
14654
- * @memberof PageContentTranslationsNERMApiCreatePageContent
14653
+ * @type {CreatePageContentTranslationRequestNERM}
14654
+ * @memberof PageContentTranslationsNERMApiCreatePageContentTranslation
14655
14655
  */
14656
- readonly createPageContentRequest1NERM: CreatePageContentRequest1NERM
14656
+ readonly createPageContentTranslationRequestNERM: CreatePageContentTranslationRequestNERM
14657
14657
  }
14658
14658
 
14659
14659
  /**
@@ -14764,13 +14764,13 @@ export class PageContentTranslationsNERMApi extends BaseAPI {
14764
14764
  /**
14765
14765
  * Create a page content translation record.
14766
14766
  * @summary Create page content translation
14767
- * @param {PageContentTranslationsNERMApiCreatePageContentRequest} requestParameters Request parameters.
14767
+ * @param {PageContentTranslationsNERMApiCreatePageContentTranslationRequest} requestParameters Request parameters.
14768
14768
  * @param {*} [axiosOptions] Override http request option.
14769
14769
  * @throws {RequiredError}
14770
14770
  * @memberof PageContentTranslationsNERMApi
14771
14771
  */
14772
- public createPageContent(requestParameters: PageContentTranslationsNERMApiCreatePageContentRequest, axiosOptions?: RawAxiosRequestConfig) {
14773
- return PageContentTranslationsNERMApiFp(this.configuration).createPageContent(requestParameters.createPageContentRequest1NERM, axiosOptions).then((request) => request(this.axios, this.basePath));
14772
+ public createPageContentTranslation(requestParameters: PageContentTranslationsNERMApiCreatePageContentTranslationRequest, axiosOptions?: RawAxiosRequestConfig) {
14773
+ return PageContentTranslationsNERMApiFp(this.configuration).createPageContentTranslation(requestParameters.createPageContentTranslationRequestNERM, axiosOptions).then((request) => request(this.axios, this.basePath));
14774
14774
  }
14775
14775
 
14776
14776
  /**
@@ -14797,6 +14797,17 @@ export class PageContentTranslationsNERMApi extends BaseAPI {
14797
14797
  return PageContentTranslationsNERMApiFp(this.configuration).deletePageContentTranslationByUid(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
14798
14798
  }
14799
14799
 
14800
+ /**
14801
+ * This endpoint can retrieve page content translation data.
14802
+ * @summary Get page contents translation
14803
+ * @param {*} [axiosOptions] Override http request option.
14804
+ * @throws {RequiredError}
14805
+ * @memberof PageContentTranslationsNERMApi
14806
+ */
14807
+ public getPageContentTranslation(axiosOptions?: RawAxiosRequestConfig) {
14808
+ return PageContentTranslationsNERMApiFp(this.configuration).getPageContentTranslation(axiosOptions).then((request) => request(this.axios, this.basePath));
14809
+ }
14810
+
14800
14811
  /**
14801
14812
  * Info for a specific page content translation record by Id
14802
14813
  * @summary Find page content translation
@@ -14821,17 +14832,6 @@ export class PageContentTranslationsNERMApi extends BaseAPI {
14821
14832
  return PageContentTranslationsNERMApiFp(this.configuration).getPageContentTranslationByUid(requestParameters.uid, axiosOptions).then((request) => request(this.axios, this.basePath));
14822
14833
  }
14823
14834
 
14824
- /**
14825
- * This endpoint can retrieve page content translation data.
14826
- * @summary Get page contents translation
14827
- * @param {*} [axiosOptions] Override http request option.
14828
- * @throws {RequiredError}
14829
- * @memberof PageContentTranslationsNERMApi
14830
- */
14831
- public getPageContents(axiosOptions?: RawAxiosRequestConfig) {
14832
- return PageContentTranslationsNERMApiFp(this.configuration).getPageContents(axiosOptions).then((request) => request(this.axios, this.basePath));
14833
- }
14834
-
14835
14835
  /**
14836
14836
  * Update info for a specific page content translation record by id
14837
14837
  * @summary Update page content translation
package/nerm/common.ts CHANGED
@@ -146,7 +146,7 @@ export const toPathString = function (url: URL) {
146
146
  export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
- let userAgent = `SailPoint-SDK-TypeScript/1.8.0`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.2`;
150
150
  if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
151
151
  userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
152
152
  }
@@ -154,7 +154,7 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
154
154
  const headers = {
155
155
  ...{'Accept': 'application/json'},
156
156
  ...axiosArgs.axiosOptions.headers,
157
- ...{'X-SailPoint-SDK':'typescript-1.8.0'},
157
+ ...{'X-SailPoint-SDK':'typescript-1.8.2'},
158
158
  ...{'User-Agent': userAgent},
159
159
  }
160
160
 
package/nerm/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-nerm-sdk",
3
- "version": "1.8.0",
3
+ "version": "1.8.2",
4
4
  "description": "OpenAPI client for sailpoint-nerm-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,4 +1,4 @@
1
- ## sailpoint-nerm-sdk@1.8.0
1
+ ## sailpoint-nerm-sdk@1.8.2
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install sailpoint-nerm-sdk@1.8.0 --save
39
+ npm install sailpoint-nerm-sdk@1.8.2 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -146,7 +146,7 @@ export const toPathString = function (url: URL) {
146
146
  export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
- let userAgent = `SailPoint-SDK-TypeScript/1.8.0`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.2`;
150
150
  if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
151
151
  userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
152
152
  }
@@ -154,7 +154,7 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
154
154
  const headers = {
155
155
  ...{'Accept': 'application/json'},
156
156
  ...axiosArgs.axiosOptions.headers,
157
- ...{'X-SailPoint-SDK':'typescript-1.8.0'},
157
+ ...{'X-SailPoint-SDK':'typescript-1.8.2'},
158
158
  ...{'User-Agent': userAgent},
159
159
  }
160
160
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-nerm-sdk",
3
- "version": "1.8.0",
3
+ "version": "1.8.2",
4
4
  "description": "OpenAPI client for sailpoint-nerm-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-api-client",
3
- "version": "1.8.0",
3
+ "version": "1.8.2",
4
4
  "description": "Official library for using the SailPoint API",
5
5
  "author": "SailPoint DevOps",
6
6
  "repository": {
package/v2024/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.0
1
+ ## sailpoint-sdk@1.8.2
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install sailpoint-sdk@1.8.0 --save
39
+ npm install sailpoint-sdk@1.8.2 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v2024/common.ts CHANGED
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
146
146
  export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
- let userAgent = `SailPoint-SDK-TypeScript/1.8.0`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.2`;
150
150
  if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
151
151
  userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
152
152
  }
153
153
  userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
154
154
  const headers = {
155
155
  ...axiosArgs.axiosOptions.headers,
156
- ...{'X-SailPoint-SDK':'typescript-1.8.0'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.2'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.0",
3
+ "version": "1.8.2",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/v2025/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.0
1
+ ## sailpoint-sdk@1.8.2
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install sailpoint-sdk@1.8.0 --save
39
+ npm install sailpoint-sdk@1.8.2 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v2025/common.ts CHANGED
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
146
146
  export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
- let userAgent = `SailPoint-SDK-TypeScript/1.8.0`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.2`;
150
150
  if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
151
151
  userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
152
152
  }
153
153
  userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
154
154
  const headers = {
155
155
  ...axiosArgs.axiosOptions.headers,
156
- ...{'X-SailPoint-SDK':'typescript-1.8.0'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.2'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.0",
3
+ "version": "1.8.2",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/v2026/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.0
1
+ ## sailpoint-sdk@1.8.2
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install sailpoint-sdk@1.8.0 --save
39
+ npm install sailpoint-sdk@1.8.2 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v2026/api.ts CHANGED
@@ -115,12 +115,6 @@ export interface AccessRequestConfigV2026 {
115
115
  * @memberof AccessRequestConfigV2026
116
116
  */
117
117
  'approvalsMustBeExternal'?: boolean;
118
- /**
119
- * If this is true and the requester and reviewer are the same, the request is automatically approved.
120
- * @type {boolean}
121
- * @memberof AccessRequestConfigV2026
122
- */
123
- 'autoApprovalEnabled'?: boolean;
124
118
  /**
125
119
  * If this is true, reauthorization will be enforced for appropriately configured access items. Enablement of this feature is currently in a limited state.
126
120
  * @type {boolean}