sailpoint-api-client 1.7.31 → 1.8.0
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 +8 -3
- package/beta/package.json +1 -1
- package/configuration.ts +40 -4
- package/dist/beta/common.js +6 -1
- package/dist/beta/common.js.map +1 -1
- package/dist/configuration.d.ts +25 -0
- package/dist/configuration.js +11 -3
- package/dist/configuration.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +9 -3
- package/dist/index.js.map +1 -1
- package/dist/nerm/api.d.ts +19169 -0
- package/dist/nerm/api.js +22633 -0
- package/dist/nerm/api.js.map +1 -0
- package/dist/nerm/base.d.ts +66 -0
- package/dist/nerm/base.js +89 -0
- package/dist/nerm/base.js.map +1 -0
- package/dist/nerm/common.d.ts +65 -0
- package/dist/nerm/common.js +271 -0
- package/dist/nerm/common.js.map +1 -0
- package/dist/nerm/configuration.d.ts +91 -0
- package/dist/nerm/configuration.js +46 -0
- package/dist/nerm/configuration.js.map +1 -0
- package/dist/nerm/index.d.ts +13 -0
- package/dist/nerm/index.js +32 -0
- package/dist/nerm/index.js.map +1 -0
- package/dist/nermv2025/api.d.ts +653 -0
- package/dist/nermv2025/api.js +556 -0
- package/dist/nermv2025/api.js.map +1 -0
- package/dist/nermv2025/base.d.ts +66 -0
- package/dist/nermv2025/base.js +89 -0
- package/dist/nermv2025/base.js.map +1 -0
- package/dist/nermv2025/common.d.ts +65 -0
- package/dist/nermv2025/common.js +271 -0
- package/dist/nermv2025/common.js.map +1 -0
- package/dist/nermv2025/configuration.d.ts +91 -0
- package/dist/nermv2025/configuration.js +46 -0
- package/dist/nermv2025/configuration.js.map +1 -0
- package/dist/nermv2025/index.d.ts +13 -0
- package/dist/nermv2025/index.js +32 -0
- package/dist/nermv2025/index.js.map +1 -0
- package/dist/v2024/common.js +6 -1
- package/dist/v2024/common.js.map +1 -1
- package/dist/v2025/common.js +6 -1
- package/dist/v2025/common.js.map +1 -1
- package/dist/v2026/common.js +6 -1
- package/dist/v2026/common.js.map +1 -1
- package/dist/v3/common.js +6 -1
- package/dist/v3/common.js.map +1 -1
- package/index.ts +8 -1
- package/nerm/.openapi-generator/FILES +12 -0
- package/nerm/.openapi-generator/VERSION +1 -0
- package/nerm/.openapi-generator-ignore +23 -0
- package/nerm/README.md +46 -0
- package/nerm/api.ts +29579 -0
- package/nerm/base.ts +86 -0
- package/nerm/common.ts +171 -0
- package/nerm/configuration.ts +110 -0
- package/nerm/git_push.sh +57 -0
- package/nerm/index.ts +18 -0
- package/nerm/package.json +34 -0
- package/nerm/tsconfig.json +21 -0
- package/nermv2025/.openapi-generator/FILES +12 -0
- package/nermv2025/.openapi-generator/VERSION +1 -0
- package/nermv2025/.openapi-generator-ignore +23 -0
- package/nermv2025/README.md +46 -0
- package/nermv2025/api.ts +896 -0
- package/nermv2025/base.ts +86 -0
- package/nermv2025/common.ts +171 -0
- package/nermv2025/configuration.ts +110 -0
- package/nermv2025/git_push.sh +57 -0
- package/nermv2025/index.ts +18 -0
- package/nermv2025/package.json +34 -0
- package/nermv2025/tsconfig.json +21 -0
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/common.ts +8 -3
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/common.ts +8 -3
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/common.ts +8 -3
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/common.ts +8 -3
- package/v3/package.json +1 -1
|
@@ -0,0 +1,556 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* NERM API v2025
|
|
6
|
+
* The NERM API v2025 accesss and modifies resources in your environment.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
var __extends = (this && this.__extends) || (function () {
|
|
16
|
+
var extendStatics = function (d, b) {
|
|
17
|
+
extendStatics = Object.setPrototypeOf ||
|
|
18
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
19
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
20
|
+
return extendStatics(d, b);
|
|
21
|
+
};
|
|
22
|
+
return function (d, b) {
|
|
23
|
+
if (typeof b !== "function" && b !== null)
|
|
24
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
25
|
+
extendStatics(d, b);
|
|
26
|
+
function __() { this.constructor = d; }
|
|
27
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
28
|
+
};
|
|
29
|
+
})();
|
|
30
|
+
var __assign = (this && this.__assign) || function () {
|
|
31
|
+
__assign = Object.assign || function(t) {
|
|
32
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
33
|
+
s = arguments[i];
|
|
34
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
35
|
+
t[p] = s[p];
|
|
36
|
+
}
|
|
37
|
+
return t;
|
|
38
|
+
};
|
|
39
|
+
return __assign.apply(this, arguments);
|
|
40
|
+
};
|
|
41
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
42
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
43
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
44
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
45
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
46
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
47
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
51
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
52
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
53
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
54
|
+
function step(op) {
|
|
55
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
56
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
57
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
58
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
59
|
+
switch (op[0]) {
|
|
60
|
+
case 0: case 1: t = op; break;
|
|
61
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
62
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
63
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
64
|
+
default:
|
|
65
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
66
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
67
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
68
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
69
|
+
if (t[2]) _.ops.pop();
|
|
70
|
+
_.trys.pop(); continue;
|
|
71
|
+
}
|
|
72
|
+
op = body.call(thisArg, _);
|
|
73
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
74
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
78
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
79
|
+
};
|
|
80
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81
|
+
exports.DelegationsNERMV2025Api = exports.DelegationsNERMV2025ApiFactory = exports.DelegationsNERMV2025ApiFp = exports.DelegationsNERMV2025ApiAxiosParamCreator = void 0;
|
|
82
|
+
var axios_1 = __importDefault(require("axios"));
|
|
83
|
+
// Some imports not used depending on template conditions
|
|
84
|
+
// @ts-ignore
|
|
85
|
+
var common_1 = require("./common");
|
|
86
|
+
// @ts-ignore
|
|
87
|
+
var base_1 = require("./base");
|
|
88
|
+
/**
|
|
89
|
+
* DelegationsNERMV2025Api - axios parameter creator
|
|
90
|
+
* @export
|
|
91
|
+
*/
|
|
92
|
+
var DelegationsNERMV2025ApiAxiosParamCreator = function (configuration) {
|
|
93
|
+
var _this = this;
|
|
94
|
+
return {
|
|
95
|
+
/**
|
|
96
|
+
* Returns a list of delegation records, optionally filtered by delegate, delegator, or expiration status.
|
|
97
|
+
* @summary List delegations
|
|
98
|
+
* @param {string} [delegateId] Filter by delegate ID
|
|
99
|
+
* @param {string} [delegatorId] Filter by delegator ID
|
|
100
|
+
* @param {boolean} [expired] Filter by expiration status (true for expired, false for not expired)
|
|
101
|
+
* @param {number} [limit] The maximum number of items to return.
|
|
102
|
+
* @param {number} [offset] The number of items to skip before starting to collect the result set.
|
|
103
|
+
* @param {string} [include] Include related resources body. For example, \'include=delegator,delegate\'.
|
|
104
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
105
|
+
* @throws {RequiredError}
|
|
106
|
+
*/
|
|
107
|
+
delegationsGet: function (delegateId, delegatorId, expired, limit, offset, include, axiosOptions) {
|
|
108
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
109
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
110
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
111
|
+
return __generator(this, function (_a) {
|
|
112
|
+
localVarPath = "/delegations";
|
|
113
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
114
|
+
if (configuration) {
|
|
115
|
+
baseOptions = configuration.baseOptions;
|
|
116
|
+
}
|
|
117
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
118
|
+
localVarHeaderParameter = {};
|
|
119
|
+
localVarQueryParameter = {};
|
|
120
|
+
if (delegateId !== undefined) {
|
|
121
|
+
localVarQueryParameter['delegate_id'] = delegateId;
|
|
122
|
+
}
|
|
123
|
+
if (delegatorId !== undefined) {
|
|
124
|
+
localVarQueryParameter['delegator_id'] = delegatorId;
|
|
125
|
+
}
|
|
126
|
+
if (expired !== undefined) {
|
|
127
|
+
localVarQueryParameter['expired'] = expired;
|
|
128
|
+
}
|
|
129
|
+
if (limit !== undefined) {
|
|
130
|
+
localVarQueryParameter['limit'] = limit;
|
|
131
|
+
}
|
|
132
|
+
if (offset !== undefined) {
|
|
133
|
+
localVarQueryParameter['offset'] = offset;
|
|
134
|
+
}
|
|
135
|
+
if (include !== undefined) {
|
|
136
|
+
localVarQueryParameter['include'] = include;
|
|
137
|
+
}
|
|
138
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
139
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
140
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
141
|
+
return [2 /*return*/, {
|
|
142
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
143
|
+
axiosOptions: localVarRequestOptions,
|
|
144
|
+
}];
|
|
145
|
+
});
|
|
146
|
+
});
|
|
147
|
+
},
|
|
148
|
+
/**
|
|
149
|
+
* Delete an existing delegation record.
|
|
150
|
+
* @summary Delete a delegation
|
|
151
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
152
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
153
|
+
* @throws {RequiredError}
|
|
154
|
+
*/
|
|
155
|
+
delegationsIdDelete: function (id, axiosOptions) {
|
|
156
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
157
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
158
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
159
|
+
return __generator(this, function (_a) {
|
|
160
|
+
// verify required parameter 'id' is not null or undefined
|
|
161
|
+
(0, common_1.assertParamExists)('delegationsIdDelete', 'id', id);
|
|
162
|
+
localVarPath = "/delegations/{id}"
|
|
163
|
+
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
164
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
165
|
+
if (configuration) {
|
|
166
|
+
baseOptions = configuration.baseOptions;
|
|
167
|
+
}
|
|
168
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), axiosOptions);
|
|
169
|
+
localVarHeaderParameter = {};
|
|
170
|
+
localVarQueryParameter = {};
|
|
171
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
172
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
173
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
174
|
+
return [2 /*return*/, {
|
|
175
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
176
|
+
axiosOptions: localVarRequestOptions,
|
|
177
|
+
}];
|
|
178
|
+
});
|
|
179
|
+
});
|
|
180
|
+
},
|
|
181
|
+
/**
|
|
182
|
+
* Returns a single delegation record by its ID.
|
|
183
|
+
* @summary Get a single delegation
|
|
184
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
185
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
186
|
+
* @throws {RequiredError}
|
|
187
|
+
*/
|
|
188
|
+
delegationsIdGet: function (id, axiosOptions) {
|
|
189
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
190
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
191
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
192
|
+
return __generator(this, function (_a) {
|
|
193
|
+
// verify required parameter 'id' is not null or undefined
|
|
194
|
+
(0, common_1.assertParamExists)('delegationsIdGet', 'id', id);
|
|
195
|
+
localVarPath = "/delegations/{id}"
|
|
196
|
+
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
197
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
198
|
+
if (configuration) {
|
|
199
|
+
baseOptions = configuration.baseOptions;
|
|
200
|
+
}
|
|
201
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
202
|
+
localVarHeaderParameter = {};
|
|
203
|
+
localVarQueryParameter = {};
|
|
204
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
205
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
206
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
207
|
+
return [2 /*return*/, {
|
|
208
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
209
|
+
axiosOptions: localVarRequestOptions,
|
|
210
|
+
}];
|
|
211
|
+
});
|
|
212
|
+
});
|
|
213
|
+
},
|
|
214
|
+
/**
|
|
215
|
+
* Update an existing delegation record.
|
|
216
|
+
* @summary Update a delegation
|
|
217
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
218
|
+
* @param {DelegationsPostRequestNERMV2025} delegationsPostRequestNERMV2025
|
|
219
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
220
|
+
* @throws {RequiredError}
|
|
221
|
+
*/
|
|
222
|
+
delegationsIdPatch: function (id, delegationsPostRequestNERMV2025, axiosOptions) {
|
|
223
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
224
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
225
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
226
|
+
return __generator(this, function (_a) {
|
|
227
|
+
// verify required parameter 'id' is not null or undefined
|
|
228
|
+
(0, common_1.assertParamExists)('delegationsIdPatch', 'id', id);
|
|
229
|
+
// verify required parameter 'delegationsPostRequestNERMV2025' is not null or undefined
|
|
230
|
+
(0, common_1.assertParamExists)('delegationsIdPatch', 'delegationsPostRequestNERMV2025', delegationsPostRequestNERMV2025);
|
|
231
|
+
localVarPath = "/delegations/{id}"
|
|
232
|
+
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
233
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
234
|
+
if (configuration) {
|
|
235
|
+
baseOptions = configuration.baseOptions;
|
|
236
|
+
}
|
|
237
|
+
localVarRequestOptions = __assign(__assign({ method: 'PATCH' }, baseOptions), axiosOptions);
|
|
238
|
+
localVarHeaderParameter = {};
|
|
239
|
+
localVarQueryParameter = {};
|
|
240
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
241
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
242
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
243
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
244
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(delegationsPostRequestNERMV2025, localVarRequestOptions, configuration);
|
|
245
|
+
return [2 /*return*/, {
|
|
246
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
247
|
+
axiosOptions: localVarRequestOptions,
|
|
248
|
+
}];
|
|
249
|
+
});
|
|
250
|
+
});
|
|
251
|
+
},
|
|
252
|
+
/**
|
|
253
|
+
* Create a new delegation record.
|
|
254
|
+
* @summary Create a delegation
|
|
255
|
+
* @param {DelegationsPostRequestNERMV2025} delegationsPostRequestNERMV2025
|
|
256
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
257
|
+
* @throws {RequiredError}
|
|
258
|
+
*/
|
|
259
|
+
delegationsPost: function (delegationsPostRequestNERMV2025, axiosOptions) {
|
|
260
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
261
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
262
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
263
|
+
return __generator(this, function (_a) {
|
|
264
|
+
// verify required parameter 'delegationsPostRequestNERMV2025' is not null or undefined
|
|
265
|
+
(0, common_1.assertParamExists)('delegationsPost', 'delegationsPostRequestNERMV2025', delegationsPostRequestNERMV2025);
|
|
266
|
+
localVarPath = "/delegations";
|
|
267
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
268
|
+
if (configuration) {
|
|
269
|
+
baseOptions = configuration.baseOptions;
|
|
270
|
+
}
|
|
271
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), axiosOptions);
|
|
272
|
+
localVarHeaderParameter = {};
|
|
273
|
+
localVarQueryParameter = {};
|
|
274
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
275
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
276
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
277
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
278
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(delegationsPostRequestNERMV2025, localVarRequestOptions, configuration);
|
|
279
|
+
return [2 /*return*/, {
|
|
280
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
281
|
+
axiosOptions: localVarRequestOptions,
|
|
282
|
+
}];
|
|
283
|
+
});
|
|
284
|
+
});
|
|
285
|
+
},
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
exports.DelegationsNERMV2025ApiAxiosParamCreator = DelegationsNERMV2025ApiAxiosParamCreator;
|
|
289
|
+
/**
|
|
290
|
+
* DelegationsNERMV2025Api - functional programming interface
|
|
291
|
+
* @export
|
|
292
|
+
*/
|
|
293
|
+
var DelegationsNERMV2025ApiFp = function (configuration) {
|
|
294
|
+
var localVarAxiosParamCreator = (0, exports.DelegationsNERMV2025ApiAxiosParamCreator)(configuration);
|
|
295
|
+
return {
|
|
296
|
+
/**
|
|
297
|
+
* Returns a list of delegation records, optionally filtered by delegate, delegator, or expiration status.
|
|
298
|
+
* @summary List delegations
|
|
299
|
+
* @param {string} [delegateId] Filter by delegate ID
|
|
300
|
+
* @param {string} [delegatorId] Filter by delegator ID
|
|
301
|
+
* @param {boolean} [expired] Filter by expiration status (true for expired, false for not expired)
|
|
302
|
+
* @param {number} [limit] The maximum number of items to return.
|
|
303
|
+
* @param {number} [offset] The number of items to skip before starting to collect the result set.
|
|
304
|
+
* @param {string} [include] Include related resources body. For example, \'include=delegator,delegate\'.
|
|
305
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
306
|
+
* @throws {RequiredError}
|
|
307
|
+
*/
|
|
308
|
+
delegationsGet: function (delegateId, delegatorId, expired, limit, offset, include, axiosOptions) {
|
|
309
|
+
var _a, _b, _c;
|
|
310
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
311
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
312
|
+
return __generator(this, function (_d) {
|
|
313
|
+
switch (_d.label) {
|
|
314
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.delegationsGet(delegateId, delegatorId, expired, limit, offset, include, axiosOptions)];
|
|
315
|
+
case 1:
|
|
316
|
+
localVarAxiosArgs = _d.sent();
|
|
317
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
318
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DelegationsNERMV2025Api.delegationsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
319
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
320
|
+
}
|
|
321
|
+
});
|
|
322
|
+
});
|
|
323
|
+
},
|
|
324
|
+
/**
|
|
325
|
+
* Delete an existing delegation record.
|
|
326
|
+
* @summary Delete a delegation
|
|
327
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
328
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
329
|
+
* @throws {RequiredError}
|
|
330
|
+
*/
|
|
331
|
+
delegationsIdDelete: function (id, axiosOptions) {
|
|
332
|
+
var _a, _b, _c;
|
|
333
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
334
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
335
|
+
return __generator(this, function (_d) {
|
|
336
|
+
switch (_d.label) {
|
|
337
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.delegationsIdDelete(id, axiosOptions)];
|
|
338
|
+
case 1:
|
|
339
|
+
localVarAxiosArgs = _d.sent();
|
|
340
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
341
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DelegationsNERMV2025Api.delegationsIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
342
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
343
|
+
}
|
|
344
|
+
});
|
|
345
|
+
});
|
|
346
|
+
},
|
|
347
|
+
/**
|
|
348
|
+
* Returns a single delegation record by its ID.
|
|
349
|
+
* @summary Get a single delegation
|
|
350
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
351
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
352
|
+
* @throws {RequiredError}
|
|
353
|
+
*/
|
|
354
|
+
delegationsIdGet: function (id, axiosOptions) {
|
|
355
|
+
var _a, _b, _c;
|
|
356
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
357
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
358
|
+
return __generator(this, function (_d) {
|
|
359
|
+
switch (_d.label) {
|
|
360
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.delegationsIdGet(id, axiosOptions)];
|
|
361
|
+
case 1:
|
|
362
|
+
localVarAxiosArgs = _d.sent();
|
|
363
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
364
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DelegationsNERMV2025Api.delegationsIdGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
365
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
366
|
+
}
|
|
367
|
+
});
|
|
368
|
+
});
|
|
369
|
+
},
|
|
370
|
+
/**
|
|
371
|
+
* Update an existing delegation record.
|
|
372
|
+
* @summary Update a delegation
|
|
373
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
374
|
+
* @param {DelegationsPostRequestNERMV2025} delegationsPostRequestNERMV2025
|
|
375
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
376
|
+
* @throws {RequiredError}
|
|
377
|
+
*/
|
|
378
|
+
delegationsIdPatch: function (id, delegationsPostRequestNERMV2025, axiosOptions) {
|
|
379
|
+
var _a, _b, _c;
|
|
380
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
381
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
382
|
+
return __generator(this, function (_d) {
|
|
383
|
+
switch (_d.label) {
|
|
384
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.delegationsIdPatch(id, delegationsPostRequestNERMV2025, axiosOptions)];
|
|
385
|
+
case 1:
|
|
386
|
+
localVarAxiosArgs = _d.sent();
|
|
387
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
388
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DelegationsNERMV2025Api.delegationsIdPatch']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
389
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
390
|
+
}
|
|
391
|
+
});
|
|
392
|
+
});
|
|
393
|
+
},
|
|
394
|
+
/**
|
|
395
|
+
* Create a new delegation record.
|
|
396
|
+
* @summary Create a delegation
|
|
397
|
+
* @param {DelegationsPostRequestNERMV2025} delegationsPostRequestNERMV2025
|
|
398
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
399
|
+
* @throws {RequiredError}
|
|
400
|
+
*/
|
|
401
|
+
delegationsPost: function (delegationsPostRequestNERMV2025, axiosOptions) {
|
|
402
|
+
var _a, _b, _c;
|
|
403
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
404
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
405
|
+
return __generator(this, function (_d) {
|
|
406
|
+
switch (_d.label) {
|
|
407
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.delegationsPost(delegationsPostRequestNERMV2025, axiosOptions)];
|
|
408
|
+
case 1:
|
|
409
|
+
localVarAxiosArgs = _d.sent();
|
|
410
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
411
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DelegationsNERMV2025Api.delegationsPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
412
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
413
|
+
}
|
|
414
|
+
});
|
|
415
|
+
});
|
|
416
|
+
},
|
|
417
|
+
};
|
|
418
|
+
};
|
|
419
|
+
exports.DelegationsNERMV2025ApiFp = DelegationsNERMV2025ApiFp;
|
|
420
|
+
/**
|
|
421
|
+
* DelegationsNERMV2025Api - factory interface
|
|
422
|
+
* @export
|
|
423
|
+
*/
|
|
424
|
+
var DelegationsNERMV2025ApiFactory = function (configuration, basePath, axios) {
|
|
425
|
+
var localVarFp = (0, exports.DelegationsNERMV2025ApiFp)(configuration);
|
|
426
|
+
return {
|
|
427
|
+
/**
|
|
428
|
+
* Returns a list of delegation records, optionally filtered by delegate, delegator, or expiration status.
|
|
429
|
+
* @summary List delegations
|
|
430
|
+
* @param {DelegationsNERMV2025ApiDelegationsGetRequest} requestParameters Request parameters.
|
|
431
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
432
|
+
* @throws {RequiredError}
|
|
433
|
+
*/
|
|
434
|
+
delegationsGet: function (requestParameters, axiosOptions) {
|
|
435
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
436
|
+
return localVarFp.delegationsGet(requestParameters.delegateId, requestParameters.delegatorId, requestParameters.expired, requestParameters.limit, requestParameters.offset, requestParameters.include, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
437
|
+
},
|
|
438
|
+
/**
|
|
439
|
+
* Delete an existing delegation record.
|
|
440
|
+
* @summary Delete a delegation
|
|
441
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdDeleteRequest} requestParameters Request parameters.
|
|
442
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
443
|
+
* @throws {RequiredError}
|
|
444
|
+
*/
|
|
445
|
+
delegationsIdDelete: function (requestParameters, axiosOptions) {
|
|
446
|
+
return localVarFp.delegationsIdDelete(requestParameters.id, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
447
|
+
},
|
|
448
|
+
/**
|
|
449
|
+
* Returns a single delegation record by its ID.
|
|
450
|
+
* @summary Get a single delegation
|
|
451
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdGetRequest} requestParameters Request parameters.
|
|
452
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
453
|
+
* @throws {RequiredError}
|
|
454
|
+
*/
|
|
455
|
+
delegationsIdGet: function (requestParameters, axiosOptions) {
|
|
456
|
+
return localVarFp.delegationsIdGet(requestParameters.id, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
457
|
+
},
|
|
458
|
+
/**
|
|
459
|
+
* Update an existing delegation record.
|
|
460
|
+
* @summary Update a delegation
|
|
461
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdPatchRequest} requestParameters Request parameters.
|
|
462
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
463
|
+
* @throws {RequiredError}
|
|
464
|
+
*/
|
|
465
|
+
delegationsIdPatch: function (requestParameters, axiosOptions) {
|
|
466
|
+
return localVarFp.delegationsIdPatch(requestParameters.id, requestParameters.delegationsPostRequestNERMV2025, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
467
|
+
},
|
|
468
|
+
/**
|
|
469
|
+
* Create a new delegation record.
|
|
470
|
+
* @summary Create a delegation
|
|
471
|
+
* @param {DelegationsNERMV2025ApiDelegationsPostRequest} requestParameters Request parameters.
|
|
472
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
473
|
+
* @throws {RequiredError}
|
|
474
|
+
*/
|
|
475
|
+
delegationsPost: function (requestParameters, axiosOptions) {
|
|
476
|
+
return localVarFp.delegationsPost(requestParameters.delegationsPostRequestNERMV2025, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
477
|
+
},
|
|
478
|
+
};
|
|
479
|
+
};
|
|
480
|
+
exports.DelegationsNERMV2025ApiFactory = DelegationsNERMV2025ApiFactory;
|
|
481
|
+
/**
|
|
482
|
+
* DelegationsNERMV2025Api - object-oriented interface
|
|
483
|
+
* @export
|
|
484
|
+
* @class DelegationsNERMV2025Api
|
|
485
|
+
* @extends {BaseAPI}
|
|
486
|
+
*/
|
|
487
|
+
var DelegationsNERMV2025Api = /** @class */ (function (_super) {
|
|
488
|
+
__extends(DelegationsNERMV2025Api, _super);
|
|
489
|
+
function DelegationsNERMV2025Api() {
|
|
490
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
491
|
+
}
|
|
492
|
+
/**
|
|
493
|
+
* Returns a list of delegation records, optionally filtered by delegate, delegator, or expiration status.
|
|
494
|
+
* @summary List delegations
|
|
495
|
+
* @param {DelegationsNERMV2025ApiDelegationsGetRequest} requestParameters Request parameters.
|
|
496
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
497
|
+
* @throws {RequiredError}
|
|
498
|
+
* @memberof DelegationsNERMV2025Api
|
|
499
|
+
*/
|
|
500
|
+
DelegationsNERMV2025Api.prototype.delegationsGet = function (requestParameters, axiosOptions) {
|
|
501
|
+
var _this = this;
|
|
502
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
503
|
+
return (0, exports.DelegationsNERMV2025ApiFp)(this.configuration).delegationsGet(requestParameters.delegateId, requestParameters.delegatorId, requestParameters.expired, requestParameters.limit, requestParameters.offset, requestParameters.include, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
504
|
+
};
|
|
505
|
+
/**
|
|
506
|
+
* Delete an existing delegation record.
|
|
507
|
+
* @summary Delete a delegation
|
|
508
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdDeleteRequest} requestParameters Request parameters.
|
|
509
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
510
|
+
* @throws {RequiredError}
|
|
511
|
+
* @memberof DelegationsNERMV2025Api
|
|
512
|
+
*/
|
|
513
|
+
DelegationsNERMV2025Api.prototype.delegationsIdDelete = function (requestParameters, axiosOptions) {
|
|
514
|
+
var _this = this;
|
|
515
|
+
return (0, exports.DelegationsNERMV2025ApiFp)(this.configuration).delegationsIdDelete(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
516
|
+
};
|
|
517
|
+
/**
|
|
518
|
+
* Returns a single delegation record by its ID.
|
|
519
|
+
* @summary Get a single delegation
|
|
520
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdGetRequest} requestParameters Request parameters.
|
|
521
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
522
|
+
* @throws {RequiredError}
|
|
523
|
+
* @memberof DelegationsNERMV2025Api
|
|
524
|
+
*/
|
|
525
|
+
DelegationsNERMV2025Api.prototype.delegationsIdGet = function (requestParameters, axiosOptions) {
|
|
526
|
+
var _this = this;
|
|
527
|
+
return (0, exports.DelegationsNERMV2025ApiFp)(this.configuration).delegationsIdGet(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
528
|
+
};
|
|
529
|
+
/**
|
|
530
|
+
* Update an existing delegation record.
|
|
531
|
+
* @summary Update a delegation
|
|
532
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdPatchRequest} requestParameters Request parameters.
|
|
533
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
534
|
+
* @throws {RequiredError}
|
|
535
|
+
* @memberof DelegationsNERMV2025Api
|
|
536
|
+
*/
|
|
537
|
+
DelegationsNERMV2025Api.prototype.delegationsIdPatch = function (requestParameters, axiosOptions) {
|
|
538
|
+
var _this = this;
|
|
539
|
+
return (0, exports.DelegationsNERMV2025ApiFp)(this.configuration).delegationsIdPatch(requestParameters.id, requestParameters.delegationsPostRequestNERMV2025, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
540
|
+
};
|
|
541
|
+
/**
|
|
542
|
+
* Create a new delegation record.
|
|
543
|
+
* @summary Create a delegation
|
|
544
|
+
* @param {DelegationsNERMV2025ApiDelegationsPostRequest} requestParameters Request parameters.
|
|
545
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
546
|
+
* @throws {RequiredError}
|
|
547
|
+
* @memberof DelegationsNERMV2025Api
|
|
548
|
+
*/
|
|
549
|
+
DelegationsNERMV2025Api.prototype.delegationsPost = function (requestParameters, axiosOptions) {
|
|
550
|
+
var _this = this;
|
|
551
|
+
return (0, exports.DelegationsNERMV2025ApiFp)(this.configuration).delegationsPost(requestParameters.delegationsPostRequestNERMV2025, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
552
|
+
};
|
|
553
|
+
return DelegationsNERMV2025Api;
|
|
554
|
+
}(base_1.BaseAPI));
|
|
555
|
+
exports.DelegationsNERMV2025Api = DelegationsNERMV2025Api;
|
|
556
|
+
//# sourceMappingURL=api.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../nermv2025/api.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NERM API v2025
|
|
3
|
+
* The NERM API v2025 accesss and modifies resources in your environment.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from '../configuration';
|
|
13
|
+
import type { AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
export declare const BASE_PATH: string;
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
*/
|
|
19
|
+
export declare const COLLECTION_FORMATS: {
|
|
20
|
+
csv: string;
|
|
21
|
+
ssv: string;
|
|
22
|
+
tsv: string;
|
|
23
|
+
pipes: string;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @export
|
|
28
|
+
* @interface RequestArgs
|
|
29
|
+
*/
|
|
30
|
+
export interface RequestArgs {
|
|
31
|
+
url: string;
|
|
32
|
+
axiosOptions: RawAxiosRequestConfig;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @export
|
|
37
|
+
* @class BaseAPI
|
|
38
|
+
*/
|
|
39
|
+
export declare class BaseAPI {
|
|
40
|
+
protected basePath: string;
|
|
41
|
+
protected axios: AxiosInstance;
|
|
42
|
+
protected configuration: Configuration | undefined;
|
|
43
|
+
constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @export
|
|
48
|
+
* @class RequiredError
|
|
49
|
+
* @extends {Error}
|
|
50
|
+
*/
|
|
51
|
+
export declare class RequiredError extends Error {
|
|
52
|
+
field: string;
|
|
53
|
+
constructor(field: string, msg?: string);
|
|
54
|
+
}
|
|
55
|
+
interface ServerMap {
|
|
56
|
+
[key: string]: {
|
|
57
|
+
url: string;
|
|
58
|
+
description: string;
|
|
59
|
+
}[];
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @export
|
|
64
|
+
*/
|
|
65
|
+
export declare const operationServerMap: ServerMap;
|
|
66
|
+
export {};
|