@emilgroup/auth-sdk-node 1.4.0 → 1.9.1-beta.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/.openapi-generator/FILES +2 -2
- package/README.md +2 -2
- package/api/authservice-api.ts +29 -29
- package/api/default-api.ts +8 -4
- package/dist/api/authservice-api.d.ts +613 -0
- package/dist/api/authservice-api.js +1069 -0
- package/dist/api/default-api.d.ts +70 -0
- package/dist/api/default-api.js +204 -0
- package/dist/api.d.ts +13 -0
- package/dist/api.js +31 -0
- package/dist/base.d.ts +78 -0
- package/dist/base.js +394 -0
- package/dist/common.d.ts +92 -0
- package/dist/common.js +277 -0
- package/dist/configuration.d.ts +90 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +36 -0
- package/dist/models/create-org-and-user-request-dto.d.ts +84 -0
- package/dist/models/create-org-and-user-request-dto.js +15 -0
- package/dist/models/create-org-and-user-response-class.d.ts +32 -0
- package/dist/models/create-org-and-user-response-class.js +15 -0
- package/dist/models/create-user-request-dto.d.ts +54 -0
- package/dist/models/create-user-request-dto.js +15 -0
- package/dist/models/create-user-response-class.d.ts +25 -0
- package/dist/models/create-user-response-class.js +15 -0
- package/dist/models/custom-schema-class.d.ts +66 -0
- package/dist/models/custom-schema-class.js +15 -0
- package/dist/models/forgot-password-request-dto.d.ts +24 -0
- package/dist/models/forgot-password-request-dto.js +15 -0
- package/dist/models/get-saml-login-link-request-dto.d.ts +24 -0
- package/dist/models/get-saml-login-link-request-dto.js +15 -0
- package/dist/models/index.d.ts +21 -0
- package/dist/models/index.js +37 -0
- package/dist/models/inline-response200.d.ts +54 -0
- package/dist/models/inline-response200.js +15 -0
- package/dist/models/inline-response503.d.ts +54 -0
- package/dist/models/inline-response503.js +15 -0
- package/dist/models/login-by-saml-request-dto.d.ts +30 -0
- package/dist/models/login-by-saml-request-dto.js +15 -0
- package/dist/models/login-class.d.ts +30 -0
- package/dist/models/login-class.js +15 -0
- package/dist/models/login-request-dto.d.ts +30 -0
- package/dist/models/login-request-dto.js +15 -0
- package/dist/models/logout-request-dto.d.ts +24 -0
- package/dist/models/logout-request-dto.js +15 -0
- package/dist/models/org-invitation-class.d.ts +109 -0
- package/dist/models/org-invitation-class.js +15 -0
- package/dist/models/organization-class.d.ts +114 -0
- package/dist/models/organization-class.js +15 -0
- package/dist/models/refresh-token-dto.d.ts +24 -0
- package/dist/models/refresh-token-dto.js +15 -0
- package/dist/models/reset-password-request-dto.d.ts +36 -0
- package/dist/models/reset-password-request-dto.js +15 -0
- package/dist/models/role-class.d.ts +54 -0
- package/dist/models/role-class.js +15 -0
- package/dist/models/user-class.d.ts +85 -0
- package/dist/models/user-class.js +15 -0
- package/dist/models/verify-org-invitation-request-dto.d.ts +24 -0
- package/dist/models/verify-org-invitation-request-dto.js +15 -0
- package/dist/models/verify-org-invitation-response-class.d.ts +32 -0
- package/dist/models/verify-org-invitation-response-class.js +15 -0
- package/models/{get-samllogin-link-request-dto.ts → get-saml-login-link-request-dto.ts} +3 -3
- package/models/index.ts +2 -2
- package/models/inline-response200.ts +6 -6
- package/models/inline-response503.ts +6 -6
- package/models/{login-by-samlrequest-dto.ts → login-by-saml-request-dto.ts} +4 -4
- package/package.json +1 -1
package/dist/common.js
ADDED
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AuthService
|
|
6
|
+
* The EMIL AuthService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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 __assign = (this && this.__assign) || function () {
|
|
16
|
+
__assign = Object.assign || function(t) {
|
|
17
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
18
|
+
s = arguments[i];
|
|
19
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
20
|
+
t[p] = s[p];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
return __assign.apply(this, arguments);
|
|
25
|
+
};
|
|
26
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
27
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
28
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
29
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
30
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
31
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
32
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
33
|
+
});
|
|
34
|
+
};
|
|
35
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
36
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
37
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
38
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
39
|
+
function step(op) {
|
|
40
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
41
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
42
|
+
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;
|
|
43
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
44
|
+
switch (op[0]) {
|
|
45
|
+
case 0: case 1: t = op; break;
|
|
46
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
47
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
48
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
49
|
+
default:
|
|
50
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
51
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
52
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
53
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
54
|
+
if (t[2]) _.ops.pop();
|
|
55
|
+
_.trys.pop(); continue;
|
|
56
|
+
}
|
|
57
|
+
op = body.call(thisArg, _);
|
|
58
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
59
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63
|
+
exports.defaultStorage = exports.LocalStorage = exports.createRequestFunction = exports.toPathString = exports.serializeDataIfNeeded = exports.setSearchParams = exports.setOAuthToObject = exports.setBearerAuthToObject = exports.setBasicAuthToObject = exports.setApiKeyToObject = exports.assertParamExists = exports.DUMMY_BASE_URL = void 0;
|
|
64
|
+
var base_1 = require("./base");
|
|
65
|
+
var url_1 = require("url");
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @export
|
|
69
|
+
*/
|
|
70
|
+
exports.DUMMY_BASE_URL = 'https://example.com';
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @throws {RequiredError}
|
|
74
|
+
* @export
|
|
75
|
+
*/
|
|
76
|
+
var assertParamExists = function (functionName, paramName, paramValue) {
|
|
77
|
+
if (paramValue === null || paramValue === undefined) {
|
|
78
|
+
throw new base_1.RequiredError(paramName, "Required parameter ".concat(paramName, " was null or undefined when calling ").concat(functionName, "."));
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
exports.assertParamExists = assertParamExists;
|
|
82
|
+
/**
|
|
83
|
+
*
|
|
84
|
+
* @export
|
|
85
|
+
*/
|
|
86
|
+
var setApiKeyToObject = function (object, keyParamName, configuration) {
|
|
87
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
88
|
+
var localVarApiKeyValue, _a;
|
|
89
|
+
return __generator(this, function (_b) {
|
|
90
|
+
switch (_b.label) {
|
|
91
|
+
case 0:
|
|
92
|
+
if (!(configuration && configuration.apiKey)) return [3 /*break*/, 5];
|
|
93
|
+
if (!(typeof configuration.apiKey === 'function')) return [3 /*break*/, 2];
|
|
94
|
+
return [4 /*yield*/, configuration.apiKey(keyParamName)];
|
|
95
|
+
case 1:
|
|
96
|
+
_a = _b.sent();
|
|
97
|
+
return [3 /*break*/, 4];
|
|
98
|
+
case 2: return [4 /*yield*/, configuration.apiKey];
|
|
99
|
+
case 3:
|
|
100
|
+
_a = _b.sent();
|
|
101
|
+
_b.label = 4;
|
|
102
|
+
case 4:
|
|
103
|
+
localVarApiKeyValue = _a;
|
|
104
|
+
object[keyParamName] = localVarApiKeyValue;
|
|
105
|
+
_b.label = 5;
|
|
106
|
+
case 5: return [2 /*return*/];
|
|
107
|
+
}
|
|
108
|
+
});
|
|
109
|
+
});
|
|
110
|
+
};
|
|
111
|
+
exports.setApiKeyToObject = setApiKeyToObject;
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @export
|
|
115
|
+
*/
|
|
116
|
+
var setBasicAuthToObject = function (object, configuration) {
|
|
117
|
+
if (configuration && (configuration.username || configuration.password)) {
|
|
118
|
+
object["auth"] = { username: configuration.username, password: configuration.password };
|
|
119
|
+
}
|
|
120
|
+
};
|
|
121
|
+
exports.setBasicAuthToObject = setBasicAuthToObject;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @export
|
|
125
|
+
*/
|
|
126
|
+
var setBearerAuthToObject = function (object, configuration) {
|
|
127
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
128
|
+
var accessToken, _a;
|
|
129
|
+
return __generator(this, function (_b) {
|
|
130
|
+
switch (_b.label) {
|
|
131
|
+
case 0:
|
|
132
|
+
if (!(configuration && configuration.accessToken)) return [3 /*break*/, 5];
|
|
133
|
+
if (!(typeof configuration.accessToken === 'function')) return [3 /*break*/, 2];
|
|
134
|
+
return [4 /*yield*/, configuration.accessToken()];
|
|
135
|
+
case 1:
|
|
136
|
+
_a = _b.sent();
|
|
137
|
+
return [3 /*break*/, 4];
|
|
138
|
+
case 2: return [4 /*yield*/, configuration.accessToken];
|
|
139
|
+
case 3:
|
|
140
|
+
_a = _b.sent();
|
|
141
|
+
_b.label = 4;
|
|
142
|
+
case 4:
|
|
143
|
+
accessToken = _a;
|
|
144
|
+
object["Authorization"] = "Bearer " + accessToken;
|
|
145
|
+
_b.label = 5;
|
|
146
|
+
case 5: return [2 /*return*/];
|
|
147
|
+
}
|
|
148
|
+
});
|
|
149
|
+
});
|
|
150
|
+
};
|
|
151
|
+
exports.setBearerAuthToObject = setBearerAuthToObject;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @export
|
|
155
|
+
*/
|
|
156
|
+
var setOAuthToObject = function (object, name, scopes, configuration) {
|
|
157
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
158
|
+
var localVarAccessTokenValue, _a;
|
|
159
|
+
return __generator(this, function (_b) {
|
|
160
|
+
switch (_b.label) {
|
|
161
|
+
case 0:
|
|
162
|
+
if (!(configuration && configuration.accessToken)) return [3 /*break*/, 5];
|
|
163
|
+
if (!(typeof configuration.accessToken === 'function')) return [3 /*break*/, 2];
|
|
164
|
+
return [4 /*yield*/, configuration.accessToken(name, scopes)];
|
|
165
|
+
case 1:
|
|
166
|
+
_a = _b.sent();
|
|
167
|
+
return [3 /*break*/, 4];
|
|
168
|
+
case 2: return [4 /*yield*/, configuration.accessToken];
|
|
169
|
+
case 3:
|
|
170
|
+
_a = _b.sent();
|
|
171
|
+
_b.label = 4;
|
|
172
|
+
case 4:
|
|
173
|
+
localVarAccessTokenValue = _a;
|
|
174
|
+
object["Authorization"] = "Bearer " + localVarAccessTokenValue;
|
|
175
|
+
_b.label = 5;
|
|
176
|
+
case 5: return [2 /*return*/];
|
|
177
|
+
}
|
|
178
|
+
});
|
|
179
|
+
});
|
|
180
|
+
};
|
|
181
|
+
exports.setOAuthToObject = setOAuthToObject;
|
|
182
|
+
/**
|
|
183
|
+
*
|
|
184
|
+
* @export
|
|
185
|
+
*/
|
|
186
|
+
var setSearchParams = function (url) {
|
|
187
|
+
var objects = [];
|
|
188
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
189
|
+
objects[_i - 1] = arguments[_i];
|
|
190
|
+
}
|
|
191
|
+
var searchParams = new url_1.URLSearchParams(url.search);
|
|
192
|
+
for (var _a = 0, objects_1 = objects; _a < objects_1.length; _a++) {
|
|
193
|
+
var object = objects_1[_a];
|
|
194
|
+
for (var key in object) {
|
|
195
|
+
if (Array.isArray(object[key])) {
|
|
196
|
+
searchParams.delete(key);
|
|
197
|
+
for (var _b = 0, _c = object[key]; _b < _c.length; _b++) {
|
|
198
|
+
var item = _c[_b];
|
|
199
|
+
searchParams.append(key, item);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
else {
|
|
203
|
+
searchParams.set(key, object[key]);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
url.search = searchParams.toString();
|
|
208
|
+
};
|
|
209
|
+
exports.setSearchParams = setSearchParams;
|
|
210
|
+
/**
|
|
211
|
+
*
|
|
212
|
+
* @export
|
|
213
|
+
*/
|
|
214
|
+
var serializeDataIfNeeded = function (value, requestOptions, configuration) {
|
|
215
|
+
var nonString = typeof value !== 'string';
|
|
216
|
+
var needsSerialization = nonString && configuration && configuration.isJsonMime
|
|
217
|
+
? configuration.isJsonMime(requestOptions.headers['Content-Type'])
|
|
218
|
+
: nonString;
|
|
219
|
+
return needsSerialization
|
|
220
|
+
? JSON.stringify(value !== undefined ? value : {})
|
|
221
|
+
: (value || "");
|
|
222
|
+
};
|
|
223
|
+
exports.serializeDataIfNeeded = serializeDataIfNeeded;
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @export
|
|
227
|
+
*/
|
|
228
|
+
var toPathString = function (url) {
|
|
229
|
+
return url.pathname + url.search + url.hash;
|
|
230
|
+
};
|
|
231
|
+
exports.toPathString = toPathString;
|
|
232
|
+
/**
|
|
233
|
+
*
|
|
234
|
+
* @export
|
|
235
|
+
*/
|
|
236
|
+
var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
237
|
+
return function (axios, basePath) {
|
|
238
|
+
if (axios === void 0) { axios = globalAxios; }
|
|
239
|
+
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
240
|
+
var axiosRequestArgs = __assign(__assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
241
|
+
return axios.request(axiosRequestArgs);
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
exports.createRequestFunction = createRequestFunction;
|
|
245
|
+
var LocalStorage = /** @class */ (function () {
|
|
246
|
+
function LocalStorage() {
|
|
247
|
+
this.storage = localStorage;
|
|
248
|
+
}
|
|
249
|
+
LocalStorage.prototype.get = function (key, converter) {
|
|
250
|
+
var jsonValue = this.storage.getItem(key);
|
|
251
|
+
if (jsonValue === null) {
|
|
252
|
+
return null;
|
|
253
|
+
}
|
|
254
|
+
var value = JSON.parse(jsonValue);
|
|
255
|
+
if (converter !== undefined) {
|
|
256
|
+
return converter.fromStorageData(value);
|
|
257
|
+
}
|
|
258
|
+
else {
|
|
259
|
+
return value;
|
|
260
|
+
}
|
|
261
|
+
};
|
|
262
|
+
LocalStorage.prototype.set = function (key, value, converter) {
|
|
263
|
+
var valueToStore = value;
|
|
264
|
+
if (converter !== undefined) {
|
|
265
|
+
valueToStore = converter.toStorageData(value);
|
|
266
|
+
}
|
|
267
|
+
var jsonValue = JSON.stringify(valueToStore);
|
|
268
|
+
this.storage.setItem(key, jsonValue);
|
|
269
|
+
};
|
|
270
|
+
return LocalStorage;
|
|
271
|
+
}());
|
|
272
|
+
exports.LocalStorage = LocalStorage;
|
|
273
|
+
var _defaultStorage = null;
|
|
274
|
+
var defaultStorage = function () {
|
|
275
|
+
return _defaultStorage || (_defaultStorage = new LocalStorage());
|
|
276
|
+
};
|
|
277
|
+
exports.defaultStorage = defaultStorage;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL AuthService
|
|
3
|
+
* The EMIL AuthService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
export interface ConfigurationParameters {
|
|
13
|
+
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
14
|
+
username?: string;
|
|
15
|
+
password?: string;
|
|
16
|
+
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
17
|
+
basePath?: string;
|
|
18
|
+
baseOptions?: any;
|
|
19
|
+
formDataCtor?: new () => any;
|
|
20
|
+
}
|
|
21
|
+
export declare class Configuration {
|
|
22
|
+
/**
|
|
23
|
+
* parameter for apiKey security
|
|
24
|
+
* @param name security name
|
|
25
|
+
* @memberof Configuration
|
|
26
|
+
*/
|
|
27
|
+
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
28
|
+
/**
|
|
29
|
+
* parameter for basic security
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof Configuration
|
|
33
|
+
*/
|
|
34
|
+
username?: string;
|
|
35
|
+
/**
|
|
36
|
+
* parameter for basic security
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof Configuration
|
|
40
|
+
*/
|
|
41
|
+
password?: string;
|
|
42
|
+
/**
|
|
43
|
+
* parameter for oauth2 security
|
|
44
|
+
* @param name security name
|
|
45
|
+
* @param scopes oauth2 scope
|
|
46
|
+
* @memberof Configuration
|
|
47
|
+
*/
|
|
48
|
+
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
49
|
+
/**
|
|
50
|
+
* override base path
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof Configuration
|
|
54
|
+
*/
|
|
55
|
+
basePath?: string;
|
|
56
|
+
/**
|
|
57
|
+
* base options for axios calls
|
|
58
|
+
*
|
|
59
|
+
* @type {any}
|
|
60
|
+
* @memberof Configuration
|
|
61
|
+
*/
|
|
62
|
+
baseOptions?: any;
|
|
63
|
+
/**
|
|
64
|
+
* The FormData constructor that will be used to create multipart form data
|
|
65
|
+
* requests. You can inject this here so that execution environments that
|
|
66
|
+
* do not support the FormData class can still run the generated client.
|
|
67
|
+
*
|
|
68
|
+
* @type {new () => FormData}
|
|
69
|
+
*/
|
|
70
|
+
formDataCtor?: new () => any;
|
|
71
|
+
/**
|
|
72
|
+
* parameter for automatically refreshing access token for oauth2 security
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof Configuration
|
|
76
|
+
*/
|
|
77
|
+
refreshToken?: string;
|
|
78
|
+
constructor(param?: ConfigurationParameters);
|
|
79
|
+
/**
|
|
80
|
+
* Check if the given MIME is a JSON MIME.
|
|
81
|
+
* JSON MIME examples:
|
|
82
|
+
* application/json
|
|
83
|
+
* application/json; charset=UTF8
|
|
84
|
+
* APPLICATION/JSON
|
|
85
|
+
* application/vnd.company+json
|
|
86
|
+
* @param mime - MIME (Multipurpose Internet Mail Extensions)
|
|
87
|
+
* @return True if the given MIME is JSON, false otherwise.
|
|
88
|
+
*/
|
|
89
|
+
isJsonMime(mime: string): boolean;
|
|
90
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AuthService
|
|
6
|
+
* The EMIL AuthService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.Configuration = void 0;
|
|
17
|
+
var Configuration = /** @class */ (function () {
|
|
18
|
+
function Configuration(param) {
|
|
19
|
+
if (param === void 0) { param = {}; }
|
|
20
|
+
this.apiKey = param.apiKey;
|
|
21
|
+
this.username = param.username;
|
|
22
|
+
this.password = param.password;
|
|
23
|
+
this.accessToken = param.accessToken;
|
|
24
|
+
this.basePath = param.basePath;
|
|
25
|
+
this.baseOptions = param.baseOptions;
|
|
26
|
+
this.formDataCtor = param.formDataCtor;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Check if the given MIME is a JSON MIME.
|
|
30
|
+
* JSON MIME examples:
|
|
31
|
+
* application/json
|
|
32
|
+
* application/json; charset=UTF8
|
|
33
|
+
* APPLICATION/JSON
|
|
34
|
+
* application/vnd.company+json
|
|
35
|
+
* @param mime - MIME (Multipurpose Internet Mail Extensions)
|
|
36
|
+
* @return True if the given MIME is JSON, false otherwise.
|
|
37
|
+
*/
|
|
38
|
+
Configuration.prototype.isJsonMime = function (mime) {
|
|
39
|
+
var jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
|
|
40
|
+
return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
|
|
41
|
+
};
|
|
42
|
+
return Configuration;
|
|
43
|
+
}());
|
|
44
|
+
exports.Configuration = Configuration;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL AuthService
|
|
3
|
+
* The EMIL AuthService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
export { Environment, BaseAPI } from "./base";
|
|
13
|
+
export * from "./api";
|
|
14
|
+
export * from "./configuration";
|
|
15
|
+
export * from "./models";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AuthService
|
|
6
|
+
* The EMIL AuthService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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 __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
20
|
+
}
|
|
21
|
+
Object.defineProperty(o, k2, desc);
|
|
22
|
+
}) : (function(o, m, k, k2) {
|
|
23
|
+
if (k2 === undefined) k2 = k;
|
|
24
|
+
o[k2] = m[k];
|
|
25
|
+
}));
|
|
26
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
27
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
28
|
+
};
|
|
29
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
|
+
exports.BaseAPI = exports.Environment = void 0;
|
|
31
|
+
var base_1 = require("./base");
|
|
32
|
+
Object.defineProperty(exports, "Environment", { enumerable: true, get: function () { return base_1.Environment; } });
|
|
33
|
+
Object.defineProperty(exports, "BaseAPI", { enumerable: true, get: function () { return base_1.BaseAPI; } });
|
|
34
|
+
__exportStar(require("./api"), exports);
|
|
35
|
+
__exportStar(require("./configuration"), exports);
|
|
36
|
+
__exportStar(require("./models"), exports);
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL AuthService
|
|
3
|
+
* The EMIL AuthService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreateOrgAndUserRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateOrgAndUserRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Organization\'s street name.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'street': string;
|
|
24
|
+
/**
|
|
25
|
+
* Organization\'s house number.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'houseNumber': string;
|
|
30
|
+
/**
|
|
31
|
+
* City of the organization.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'city': string;
|
|
36
|
+
/**
|
|
37
|
+
* Country of the organization.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'country': string;
|
|
42
|
+
/**
|
|
43
|
+
* Custom fields of the organization
|
|
44
|
+
* @type {object}
|
|
45
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'customFields'?: object;
|
|
48
|
+
/**
|
|
49
|
+
* User\'s first name
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'firstName': string;
|
|
54
|
+
/**
|
|
55
|
+
* Organization invitation token
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'invitationToken': string;
|
|
60
|
+
/**
|
|
61
|
+
* if user accepts end user license agreement
|
|
62
|
+
* @type {boolean}
|
|
63
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'isEulaAccepted': boolean;
|
|
66
|
+
/**
|
|
67
|
+
* User\'s last name
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'lastName': string;
|
|
72
|
+
/**
|
|
73
|
+
* User\'s password
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'password': string;
|
|
78
|
+
/**
|
|
79
|
+
* Zip code of the organization.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'zipCode': string;
|
|
84
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AuthService
|
|
6
|
+
* The EMIL AuthService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL AuthService
|
|
3
|
+
* The EMIL AuthService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
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 { OrganizationClass } from './organization-class';
|
|
13
|
+
import { UserClass } from './user-class';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface CreateOrgAndUserResponseClass
|
|
18
|
+
*/
|
|
19
|
+
export interface CreateOrgAndUserResponseClass {
|
|
20
|
+
/**
|
|
21
|
+
* Organization
|
|
22
|
+
* @type {OrganizationClass}
|
|
23
|
+
* @memberof CreateOrgAndUserResponseClass
|
|
24
|
+
*/
|
|
25
|
+
'organization': OrganizationClass;
|
|
26
|
+
/**
|
|
27
|
+
* User
|
|
28
|
+
* @type {UserClass}
|
|
29
|
+
* @memberof CreateOrgAndUserResponseClass
|
|
30
|
+
*/
|
|
31
|
+
'user': UserClass;
|
|
32
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AuthService
|
|
6
|
+
* The EMIL AuthService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL AuthService
|
|
3
|
+
* The EMIL AuthService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreateUserRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateUserRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* User\'s email address.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateUserRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'email': string;
|
|
24
|
+
/**
|
|
25
|
+
* User\'s invite token.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateUserRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'inviteToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* User\'s first name.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateUserRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'firstName': string;
|
|
36
|
+
/**
|
|
37
|
+
* User\'s last name.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateUserRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'lastName': string;
|
|
42
|
+
/**
|
|
43
|
+
* User\'s password.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateUserRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'password': string;
|
|
48
|
+
/**
|
|
49
|
+
* True if user accepts end user license agreement.
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof CreateUserRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'isEulaAccepted': boolean;
|
|
54
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AuthService
|
|
6
|
+
* The EMIL AuthService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|