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/beta/README.md +2 -2
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/api.d.ts +74 -74
- package/dist/nerm/api.js +68 -68
- package/dist/nerm/api.js.map +1 -1
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +0 -6
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/api.ts +95 -95
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +0 -6
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/beta/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
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.
|
|
39
|
+
npm install sailpoint-sdk@1.8.2 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/beta/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.
|
|
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.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.2'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/beta/package.json
CHANGED
package/dist/beta/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.2";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.2' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/nerm/api.d.ts
CHANGED
|
@@ -1821,28 +1821,28 @@ export interface CreateNotificationActionRequestNERM {
|
|
|
1821
1821
|
/**
|
|
1822
1822
|
*
|
|
1823
1823
|
* @export
|
|
1824
|
-
* @interface
|
|
1824
|
+
* @interface CreatePageContentRequestNERM
|
|
1825
1825
|
*/
|
|
1826
|
-
export interface
|
|
1826
|
+
export interface CreatePageContentRequestNERM {
|
|
1827
1827
|
/**
|
|
1828
1828
|
*
|
|
1829
|
-
* @type {
|
|
1830
|
-
* @memberof
|
|
1829
|
+
* @type {PageContent1NERM}
|
|
1830
|
+
* @memberof CreatePageContentRequestNERM
|
|
1831
1831
|
*/
|
|
1832
|
-
'
|
|
1832
|
+
'page_content'?: PageContent1NERM;
|
|
1833
1833
|
}
|
|
1834
1834
|
/**
|
|
1835
1835
|
*
|
|
1836
1836
|
* @export
|
|
1837
|
-
* @interface
|
|
1837
|
+
* @interface CreatePageContentTranslationRequestNERM
|
|
1838
1838
|
*/
|
|
1839
|
-
export interface
|
|
1839
|
+
export interface CreatePageContentTranslationRequestNERM {
|
|
1840
1840
|
/**
|
|
1841
1841
|
*
|
|
1842
|
-
* @type {
|
|
1843
|
-
* @memberof
|
|
1842
|
+
* @type {PageContentTranslation1NERM}
|
|
1843
|
+
* @memberof CreatePageContentTranslationRequestNERM
|
|
1844
1844
|
*/
|
|
1845
|
-
'
|
|
1845
|
+
'page_content_translation'?: PageContentTranslation1NERM;
|
|
1846
1846
|
}
|
|
1847
1847
|
/**
|
|
1848
1848
|
*
|
|
@@ -2992,13 +2992,13 @@ export interface GetJobStatus200ResponseNERM {
|
|
|
2992
2992
|
/**
|
|
2993
2993
|
*
|
|
2994
2994
|
* @export
|
|
2995
|
-
* @interface
|
|
2995
|
+
* @interface GetPageContentTranslation200ResponseNERM
|
|
2996
2996
|
*/
|
|
2997
|
-
export interface
|
|
2997
|
+
export interface GetPageContentTranslation200ResponseNERM {
|
|
2998
2998
|
/**
|
|
2999
2999
|
*
|
|
3000
3000
|
* @type {PageContentTranslationNERM}
|
|
3001
|
-
* @memberof
|
|
3001
|
+
* @memberof GetPageContentTranslation200ResponseNERM
|
|
3002
3002
|
*/
|
|
3003
3003
|
'page_content_translation'?: PageContentTranslationNERM;
|
|
3004
3004
|
}
|
|
@@ -11089,11 +11089,11 @@ export declare const PageContentTranslationsNERMApiAxiosParamCreator: (configura
|
|
|
11089
11089
|
/**
|
|
11090
11090
|
* Create a page content translation record.
|
|
11091
11091
|
* @summary Create page content translation
|
|
11092
|
-
* @param {
|
|
11092
|
+
* @param {CreatePageContentTranslationRequestNERM} createPageContentTranslationRequestNERM
|
|
11093
11093
|
* @param {*} [axiosOptions] Override http request option.
|
|
11094
11094
|
* @throws {RequiredError}
|
|
11095
11095
|
*/
|
|
11096
|
-
|
|
11096
|
+
createPageContentTranslation: (createPageContentTranslationRequestNERM: CreatePageContentTranslationRequestNERM, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11097
11097
|
/**
|
|
11098
11098
|
* Delete page content translation by id
|
|
11099
11099
|
* @summary Delete page content translation
|
|
@@ -11110,6 +11110,13 @@ export declare const PageContentTranslationsNERMApiAxiosParamCreator: (configura
|
|
|
11110
11110
|
* @throws {RequiredError}
|
|
11111
11111
|
*/
|
|
11112
11112
|
deletePageContentTranslationByUid: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11113
|
+
/**
|
|
11114
|
+
* This endpoint can retrieve page content translation data.
|
|
11115
|
+
* @summary Get page contents translation
|
|
11116
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
11117
|
+
* @throws {RequiredError}
|
|
11118
|
+
*/
|
|
11119
|
+
getPageContentTranslation: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11113
11120
|
/**
|
|
11114
11121
|
* Info for a specific page content translation record by Id
|
|
11115
11122
|
* @summary Find page content translation
|
|
@@ -11126,13 +11133,6 @@ export declare const PageContentTranslationsNERMApiAxiosParamCreator: (configura
|
|
|
11126
11133
|
* @throws {RequiredError}
|
|
11127
11134
|
*/
|
|
11128
11135
|
getPageContentTranslationByUid: (uid?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11129
|
-
/**
|
|
11130
|
-
* This endpoint can retrieve page content translation data.
|
|
11131
|
-
* @summary Get page contents translation
|
|
11132
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
11133
|
-
* @throws {RequiredError}
|
|
11134
|
-
*/
|
|
11135
|
-
getPageContents: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11136
11136
|
/**
|
|
11137
11137
|
* Update info for a specific page content translation record by id
|
|
11138
11138
|
* @summary Update page content translation
|
|
@@ -11160,11 +11160,11 @@ export declare const PageContentTranslationsNERMApiFp: (configuration?: Configur
|
|
|
11160
11160
|
/**
|
|
11161
11161
|
* Create a page content translation record.
|
|
11162
11162
|
* @summary Create page content translation
|
|
11163
|
-
* @param {
|
|
11163
|
+
* @param {CreatePageContentTranslationRequestNERM} createPageContentTranslationRequestNERM
|
|
11164
11164
|
* @param {*} [axiosOptions] Override http request option.
|
|
11165
11165
|
* @throws {RequiredError}
|
|
11166
11166
|
*/
|
|
11167
|
-
|
|
11167
|
+
createPageContentTranslation(createPageContentTranslationRequestNERM: CreatePageContentTranslationRequestNERM, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>>;
|
|
11168
11168
|
/**
|
|
11169
11169
|
* Delete page content translation by id
|
|
11170
11170
|
* @summary Delete page content translation
|
|
@@ -11172,7 +11172,7 @@ export declare const PageContentTranslationsNERMApiFp: (configuration?: Configur
|
|
|
11172
11172
|
* @param {*} [axiosOptions] Override http request option.
|
|
11173
11173
|
* @throws {RequiredError}
|
|
11174
11174
|
*/
|
|
11175
|
-
deletePageContentTranslationById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11175
|
+
deletePageContentTranslationById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>>;
|
|
11176
11176
|
/**
|
|
11177
11177
|
* Delete page content translation by UID (user-specified identifier)
|
|
11178
11178
|
* @summary Delete page content translation
|
|
@@ -11180,7 +11180,14 @@ export declare const PageContentTranslationsNERMApiFp: (configuration?: Configur
|
|
|
11180
11180
|
* @param {*} [axiosOptions] Override http request option.
|
|
11181
11181
|
* @throws {RequiredError}
|
|
11182
11182
|
*/
|
|
11183
|
-
deletePageContentTranslationByUid(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11183
|
+
deletePageContentTranslationByUid(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>>;
|
|
11184
|
+
/**
|
|
11185
|
+
* This endpoint can retrieve page content translation data.
|
|
11186
|
+
* @summary Get page contents translation
|
|
11187
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
11188
|
+
* @throws {RequiredError}
|
|
11189
|
+
*/
|
|
11190
|
+
getPageContentTranslation(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>>;
|
|
11184
11191
|
/**
|
|
11185
11192
|
* Info for a specific page content translation record by Id
|
|
11186
11193
|
* @summary Find page content translation
|
|
@@ -11188,7 +11195,7 @@ export declare const PageContentTranslationsNERMApiFp: (configuration?: Configur
|
|
|
11188
11195
|
* @param {*} [axiosOptions] Override http request option.
|
|
11189
11196
|
* @throws {RequiredError}
|
|
11190
11197
|
*/
|
|
11191
|
-
getPageContentTranslationById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11198
|
+
getPageContentTranslationById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>>;
|
|
11192
11199
|
/**
|
|
11193
11200
|
* Info for a specific page content translation record by UID (user-specified identifier)
|
|
11194
11201
|
* @summary Find page content translation
|
|
@@ -11196,14 +11203,7 @@ export declare const PageContentTranslationsNERMApiFp: (configuration?: Configur
|
|
|
11196
11203
|
* @param {*} [axiosOptions] Override http request option.
|
|
11197
11204
|
* @throws {RequiredError}
|
|
11198
11205
|
*/
|
|
11199
|
-
getPageContentTranslationByUid(uid?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11200
|
-
/**
|
|
11201
|
-
* This endpoint can retrieve page content translation data.
|
|
11202
|
-
* @summary Get page contents translation
|
|
11203
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
11204
|
-
* @throws {RequiredError}
|
|
11205
|
-
*/
|
|
11206
|
-
getPageContents(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContents200Response1NERM>>;
|
|
11206
|
+
getPageContentTranslationByUid(uid?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>>;
|
|
11207
11207
|
/**
|
|
11208
11208
|
* Update info for a specific page content translation record by id
|
|
11209
11209
|
* @summary Update page content translation
|
|
@@ -11212,7 +11212,7 @@ export declare const PageContentTranslationsNERMApiFp: (configuration?: Configur
|
|
|
11212
11212
|
* @param {*} [axiosOptions] Override http request option.
|
|
11213
11213
|
* @throws {RequiredError}
|
|
11214
11214
|
*/
|
|
11215
|
-
updatePageContentTranslationById(id: string, updatePageContentTranslationByIdRequestNERM: UpdatePageContentTranslationByIdRequestNERM, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11215
|
+
updatePageContentTranslationById(id: string, updatePageContentTranslationByIdRequestNERM: UpdatePageContentTranslationByIdRequestNERM, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>>;
|
|
11216
11216
|
/**
|
|
11217
11217
|
* Update info for a specific page content translation record by UID (user-specified identifier)
|
|
11218
11218
|
* @summary Update page content translation
|
|
@@ -11221,7 +11221,7 @@ export declare const PageContentTranslationsNERMApiFp: (configuration?: Configur
|
|
|
11221
11221
|
* @param {*} [axiosOptions] Override http request option.
|
|
11222
11222
|
* @throws {RequiredError}
|
|
11223
11223
|
*/
|
|
11224
|
-
updatePageContentTranslationByUid(updatePageContentTranslationByIdRequestNERM: UpdatePageContentTranslationByIdRequestNERM, uid?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11224
|
+
updatePageContentTranslationByUid(updatePageContentTranslationByIdRequestNERM: UpdatePageContentTranslationByIdRequestNERM, uid?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPageContentTranslation200ResponseNERM>>;
|
|
11225
11225
|
};
|
|
11226
11226
|
/**
|
|
11227
11227
|
* PageContentTranslationsNERMApi - factory interface
|
|
@@ -11231,11 +11231,11 @@ export declare const PageContentTranslationsNERMApiFactory: (configuration?: Con
|
|
|
11231
11231
|
/**
|
|
11232
11232
|
* Create a page content translation record.
|
|
11233
11233
|
* @summary Create page content translation
|
|
11234
|
-
* @param {
|
|
11234
|
+
* @param {PageContentTranslationsNERMApiCreatePageContentTranslationRequest} requestParameters Request parameters.
|
|
11235
11235
|
* @param {*} [axiosOptions] Override http request option.
|
|
11236
11236
|
* @throws {RequiredError}
|
|
11237
11237
|
*/
|
|
11238
|
-
|
|
11238
|
+
createPageContentTranslation(requestParameters: PageContentTranslationsNERMApiCreatePageContentTranslationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM>;
|
|
11239
11239
|
/**
|
|
11240
11240
|
* Delete page content translation by id
|
|
11241
11241
|
* @summary Delete page content translation
|
|
@@ -11243,7 +11243,7 @@ export declare const PageContentTranslationsNERMApiFactory: (configuration?: Con
|
|
|
11243
11243
|
* @param {*} [axiosOptions] Override http request option.
|
|
11244
11244
|
* @throws {RequiredError}
|
|
11245
11245
|
*/
|
|
11246
|
-
deletePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<
|
|
11246
|
+
deletePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM>;
|
|
11247
11247
|
/**
|
|
11248
11248
|
* Delete page content translation by UID (user-specified identifier)
|
|
11249
11249
|
* @summary Delete page content translation
|
|
@@ -11251,7 +11251,14 @@ export declare const PageContentTranslationsNERMApiFactory: (configuration?: Con
|
|
|
11251
11251
|
* @param {*} [axiosOptions] Override http request option.
|
|
11252
11252
|
* @throws {RequiredError}
|
|
11253
11253
|
*/
|
|
11254
|
-
deletePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<
|
|
11254
|
+
deletePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM>;
|
|
11255
|
+
/**
|
|
11256
|
+
* This endpoint can retrieve page content translation data.
|
|
11257
|
+
* @summary Get page contents translation
|
|
11258
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
11259
|
+
* @throws {RequiredError}
|
|
11260
|
+
*/
|
|
11261
|
+
getPageContentTranslation(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM>;
|
|
11255
11262
|
/**
|
|
11256
11263
|
* Info for a specific page content translation record by Id
|
|
11257
11264
|
* @summary Find page content translation
|
|
@@ -11259,7 +11266,7 @@ export declare const PageContentTranslationsNERMApiFactory: (configuration?: Con
|
|
|
11259
11266
|
* @param {*} [axiosOptions] Override http request option.
|
|
11260
11267
|
* @throws {RequiredError}
|
|
11261
11268
|
*/
|
|
11262
|
-
getPageContentTranslationById(requestParameters: PageContentTranslationsNERMApiGetPageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<
|
|
11269
|
+
getPageContentTranslationById(requestParameters: PageContentTranslationsNERMApiGetPageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM>;
|
|
11263
11270
|
/**
|
|
11264
11271
|
* Info for a specific page content translation record by UID (user-specified identifier)
|
|
11265
11272
|
* @summary Find page content translation
|
|
@@ -11267,14 +11274,7 @@ export declare const PageContentTranslationsNERMApiFactory: (configuration?: Con
|
|
|
11267
11274
|
* @param {*} [axiosOptions] Override http request option.
|
|
11268
11275
|
* @throws {RequiredError}
|
|
11269
11276
|
*/
|
|
11270
|
-
getPageContentTranslationByUid(requestParameters?: PageContentTranslationsNERMApiGetPageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<
|
|
11271
|
-
/**
|
|
11272
|
-
* This endpoint can retrieve page content translation data.
|
|
11273
|
-
* @summary Get page contents translation
|
|
11274
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
11275
|
-
* @throws {RequiredError}
|
|
11276
|
-
*/
|
|
11277
|
-
getPageContents(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContents200Response1NERM>;
|
|
11277
|
+
getPageContentTranslationByUid(requestParameters?: PageContentTranslationsNERMApiGetPageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM>;
|
|
11278
11278
|
/**
|
|
11279
11279
|
* Update info for a specific page content translation record by id
|
|
11280
11280
|
* @summary Update page content translation
|
|
@@ -11282,7 +11282,7 @@ export declare const PageContentTranslationsNERMApiFactory: (configuration?: Con
|
|
|
11282
11282
|
* @param {*} [axiosOptions] Override http request option.
|
|
11283
11283
|
* @throws {RequiredError}
|
|
11284
11284
|
*/
|
|
11285
|
-
updatePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<
|
|
11285
|
+
updatePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM>;
|
|
11286
11286
|
/**
|
|
11287
11287
|
* Update info for a specific page content translation record by UID (user-specified identifier)
|
|
11288
11288
|
* @summary Update page content translation
|
|
@@ -11290,20 +11290,20 @@ export declare const PageContentTranslationsNERMApiFactory: (configuration?: Con
|
|
|
11290
11290
|
* @param {*} [axiosOptions] Override http request option.
|
|
11291
11291
|
* @throws {RequiredError}
|
|
11292
11292
|
*/
|
|
11293
|
-
updatePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<
|
|
11293
|
+
updatePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetPageContentTranslation200ResponseNERM>;
|
|
11294
11294
|
};
|
|
11295
11295
|
/**
|
|
11296
|
-
* Request parameters for
|
|
11296
|
+
* Request parameters for createPageContentTranslation operation in PageContentTranslationsNERMApi.
|
|
11297
11297
|
* @export
|
|
11298
|
-
* @interface
|
|
11298
|
+
* @interface PageContentTranslationsNERMApiCreatePageContentTranslationRequest
|
|
11299
11299
|
*/
|
|
11300
|
-
export interface
|
|
11300
|
+
export interface PageContentTranslationsNERMApiCreatePageContentTranslationRequest {
|
|
11301
11301
|
/**
|
|
11302
11302
|
*
|
|
11303
|
-
* @type {
|
|
11304
|
-
* @memberof
|
|
11303
|
+
* @type {CreatePageContentTranslationRequestNERM}
|
|
11304
|
+
* @memberof PageContentTranslationsNERMApiCreatePageContentTranslation
|
|
11305
11305
|
*/
|
|
11306
|
-
readonly
|
|
11306
|
+
readonly createPageContentTranslationRequestNERM: CreatePageContentTranslationRequestNERM;
|
|
11307
11307
|
}
|
|
11308
11308
|
/**
|
|
11309
11309
|
* Request parameters for deletePageContentTranslationById operation in PageContentTranslationsNERMApi.
|
|
@@ -11405,12 +11405,12 @@ export declare class PageContentTranslationsNERMApi extends BaseAPI {
|
|
|
11405
11405
|
/**
|
|
11406
11406
|
* Create a page content translation record.
|
|
11407
11407
|
* @summary Create page content translation
|
|
11408
|
-
* @param {
|
|
11408
|
+
* @param {PageContentTranslationsNERMApiCreatePageContentTranslationRequest} requestParameters Request parameters.
|
|
11409
11409
|
* @param {*} [axiosOptions] Override http request option.
|
|
11410
11410
|
* @throws {RequiredError}
|
|
11411
11411
|
* @memberof PageContentTranslationsNERMApi
|
|
11412
11412
|
*/
|
|
11413
|
-
|
|
11413
|
+
createPageContentTranslation(requestParameters: PageContentTranslationsNERMApiCreatePageContentTranslationRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPageContentTranslation200ResponseNERM, any>>;
|
|
11414
11414
|
/**
|
|
11415
11415
|
* Delete page content translation by id
|
|
11416
11416
|
* @summary Delete page content translation
|
|
@@ -11419,7 +11419,7 @@ export declare class PageContentTranslationsNERMApi extends BaseAPI {
|
|
|
11419
11419
|
* @throws {RequiredError}
|
|
11420
11420
|
* @memberof PageContentTranslationsNERMApi
|
|
11421
11421
|
*/
|
|
11422
|
-
deletePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11422
|
+
deletePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPageContentTranslation200ResponseNERM, any>>;
|
|
11423
11423
|
/**
|
|
11424
11424
|
* Delete page content translation by UID (user-specified identifier)
|
|
11425
11425
|
* @summary Delete page content translation
|
|
@@ -11428,33 +11428,33 @@ export declare class PageContentTranslationsNERMApi extends BaseAPI {
|
|
|
11428
11428
|
* @throws {RequiredError}
|
|
11429
11429
|
* @memberof PageContentTranslationsNERMApi
|
|
11430
11430
|
*/
|
|
11431
|
-
deletePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11431
|
+
deletePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiDeletePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPageContentTranslation200ResponseNERM, any>>;
|
|
11432
11432
|
/**
|
|
11433
|
-
*
|
|
11434
|
-
* @summary
|
|
11435
|
-
* @param {PageContentTranslationsNERMApiGetPageContentTranslationByIdRequest} requestParameters Request parameters.
|
|
11433
|
+
* This endpoint can retrieve page content translation data.
|
|
11434
|
+
* @summary Get page contents translation
|
|
11436
11435
|
* @param {*} [axiosOptions] Override http request option.
|
|
11437
11436
|
* @throws {RequiredError}
|
|
11438
11437
|
* @memberof PageContentTranslationsNERMApi
|
|
11439
11438
|
*/
|
|
11440
|
-
|
|
11439
|
+
getPageContentTranslation(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPageContentTranslation200ResponseNERM, any>>;
|
|
11441
11440
|
/**
|
|
11442
|
-
* Info for a specific page content translation record by
|
|
11441
|
+
* Info for a specific page content translation record by Id
|
|
11443
11442
|
* @summary Find page content translation
|
|
11444
|
-
* @param {
|
|
11443
|
+
* @param {PageContentTranslationsNERMApiGetPageContentTranslationByIdRequest} requestParameters Request parameters.
|
|
11445
11444
|
* @param {*} [axiosOptions] Override http request option.
|
|
11446
11445
|
* @throws {RequiredError}
|
|
11447
11446
|
* @memberof PageContentTranslationsNERMApi
|
|
11448
11447
|
*/
|
|
11449
|
-
|
|
11448
|
+
getPageContentTranslationById(requestParameters: PageContentTranslationsNERMApiGetPageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPageContentTranslation200ResponseNERM, any>>;
|
|
11450
11449
|
/**
|
|
11451
|
-
*
|
|
11452
|
-
* @summary
|
|
11450
|
+
* Info for a specific page content translation record by UID (user-specified identifier)
|
|
11451
|
+
* @summary Find page content translation
|
|
11452
|
+
* @param {PageContentTranslationsNERMApiGetPageContentTranslationByUidRequest} requestParameters Request parameters.
|
|
11453
11453
|
* @param {*} [axiosOptions] Override http request option.
|
|
11454
11454
|
* @throws {RequiredError}
|
|
11455
11455
|
* @memberof PageContentTranslationsNERMApi
|
|
11456
11456
|
*/
|
|
11457
|
-
|
|
11457
|
+
getPageContentTranslationByUid(requestParameters?: PageContentTranslationsNERMApiGetPageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPageContentTranslation200ResponseNERM, any>>;
|
|
11458
11458
|
/**
|
|
11459
11459
|
* Update info for a specific page content translation record by id
|
|
11460
11460
|
* @summary Update page content translation
|
|
@@ -11463,7 +11463,7 @@ export declare class PageContentTranslationsNERMApi extends BaseAPI {
|
|
|
11463
11463
|
* @throws {RequiredError}
|
|
11464
11464
|
* @memberof PageContentTranslationsNERMApi
|
|
11465
11465
|
*/
|
|
11466
|
-
updatePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11466
|
+
updatePageContentTranslationById(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPageContentTranslation200ResponseNERM, any>>;
|
|
11467
11467
|
/**
|
|
11468
11468
|
* Update info for a specific page content translation record by UID (user-specified identifier)
|
|
11469
11469
|
* @summary Update page content translation
|
|
@@ -11472,7 +11472,7 @@ export declare class PageContentTranslationsNERMApi extends BaseAPI {
|
|
|
11472
11472
|
* @throws {RequiredError}
|
|
11473
11473
|
* @memberof PageContentTranslationsNERMApi
|
|
11474
11474
|
*/
|
|
11475
|
-
updatePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11475
|
+
updatePageContentTranslationByUid(requestParameters: PageContentTranslationsNERMApiUpdatePageContentTranslationByUidRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPageContentTranslation200ResponseNERM, any>>;
|
|
11476
11476
|
}
|
|
11477
11477
|
/**
|
|
11478
11478
|
* PageContentsNERMApi - axios parameter creator
|