simplelogin-client 0.0.1 → 0.1.6
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/package.json +16 -5
- package/tscBuild/index.js +23 -40
- package/tscBuild/sdk/api.d.ts +1732 -1801
- package/tscBuild/sdk/api.js +2129 -2252
- package/tscBuild/sdk/configuration.d.ts +40 -40
- package/tscBuild/sdk/configuration.js +44 -44
- package/tscBuild/sdk/index.d.ts +2 -2
- package/tscBuild/sdk/index.js +19 -31
|
@@ -10,46 +10,46 @@
|
|
|
10
10
|
* Do not edit the file manually.
|
|
11
11
|
*/
|
|
12
12
|
export interface ConfigurationParameters {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
apiKey?: string | ((name: string) => string);
|
|
14
|
+
username?: string;
|
|
15
|
+
password?: string;
|
|
16
|
+
accessToken?: string | ((name: string, scopes?: string[]) => string);
|
|
17
|
+
basePath?: string;
|
|
18
18
|
}
|
|
19
19
|
export declare class Configuration {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
20
|
+
/**
|
|
21
|
+
* parameter for apiKey security
|
|
22
|
+
* @param name security name
|
|
23
|
+
* @memberof Configuration
|
|
24
|
+
*/
|
|
25
|
+
apiKey?: string | ((name: string) => string);
|
|
26
|
+
/**
|
|
27
|
+
* parameter for basic security
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof Configuration
|
|
31
|
+
*/
|
|
32
|
+
username?: string;
|
|
33
|
+
/**
|
|
34
|
+
* parameter for basic security
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof Configuration
|
|
38
|
+
*/
|
|
39
|
+
password?: string;
|
|
40
|
+
/**
|
|
41
|
+
* parameter for oauth2 security
|
|
42
|
+
* @param name security name
|
|
43
|
+
* @param scopes oauth2 scope
|
|
44
|
+
* @memberof Configuration
|
|
45
|
+
*/
|
|
46
|
+
accessToken?: string | ((name: string, scopes?: string[]) => string);
|
|
47
|
+
/**
|
|
48
|
+
* override base path
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof Configuration
|
|
52
|
+
*/
|
|
53
|
+
basePath?: string;
|
|
54
|
+
constructor(param?: ConfigurationParameters);
|
|
55
55
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* SimpleLogin (unofficial)
|
|
4
4
|
* The unofficial SimpleLogin API docs as OpenAPI 3.0.0 spec. This is based on the official markdown based docs, but written in OpenAPI to allow for easier integration with other tools and generation of client SDKs. Please do not contact the SimpleLogin team for support or issues with this API documentation.
|
|
@@ -10,50 +10,50 @@
|
|
|
10
10
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
11
11
|
* Do not edit the file manually.
|
|
12
12
|
*/
|
|
13
|
-
Object.defineProperty(exports,
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
14
|
exports.Configuration = void 0;
|
|
15
15
|
class Configuration {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
16
|
+
/**
|
|
17
|
+
* parameter for apiKey security
|
|
18
|
+
* @param name security name
|
|
19
|
+
* @memberof Configuration
|
|
20
|
+
*/
|
|
21
|
+
apiKey;
|
|
22
|
+
/**
|
|
23
|
+
* parameter for basic security
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof Configuration
|
|
27
|
+
*/
|
|
28
|
+
username;
|
|
29
|
+
/**
|
|
30
|
+
* parameter for basic security
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof Configuration
|
|
34
|
+
*/
|
|
35
|
+
password;
|
|
36
|
+
/**
|
|
37
|
+
* parameter for oauth2 security
|
|
38
|
+
* @param name security name
|
|
39
|
+
* @param scopes oauth2 scope
|
|
40
|
+
* @memberof Configuration
|
|
41
|
+
*/
|
|
42
|
+
accessToken;
|
|
43
|
+
/**
|
|
44
|
+
* override base path
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof Configuration
|
|
48
|
+
*/
|
|
49
|
+
basePath;
|
|
50
|
+
constructor(param = {}) {
|
|
51
|
+
this.apiKey = param.apiKey;
|
|
52
|
+
this.username = param.username;
|
|
53
|
+
this.password = param.password;
|
|
54
|
+
this.accessToken = param.accessToken;
|
|
55
|
+
this.basePath = param.basePath;
|
|
56
|
+
}
|
|
57
57
|
}
|
|
58
58
|
exports.Configuration = Configuration;
|
|
59
|
-
//# sourceMappingURL=configuration.js.map
|
|
59
|
+
//# sourceMappingURL=configuration.js.map
|
package/tscBuild/sdk/index.d.ts
CHANGED
package/tscBuild/sdk/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* SimpleLogin (unofficial)
|
|
4
4
|
* The unofficial SimpleLogin API docs as OpenAPI 3.0.0 spec. This is based on the official markdown based docs, but written in OpenAPI to allow for easier integration with other tools and generation of client SDKs. Please do not contact the SimpleLogin team for support or issues with this API documentation.
|
|
@@ -10,33 +10,21 @@
|
|
|
10
10
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
11
11
|
* Do not edit the file manually.
|
|
12
12
|
*/
|
|
13
|
-
var __createBinding =
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
o[k2] = m[k];
|
|
32
|
-
});
|
|
33
|
-
var __exportStar =
|
|
34
|
-
(this && this.__exportStar) ||
|
|
35
|
-
function (m, exports) {
|
|
36
|
-
for (var p in m)
|
|
37
|
-
if (p !== 'default' && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
38
|
-
};
|
|
39
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
40
|
-
__exportStar(require('./api'), exports);
|
|
41
|
-
__exportStar(require('./configuration'), exports);
|
|
42
|
-
//# sourceMappingURL=index.js.map
|
|
13
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
25
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
__exportStar(require("./api"), exports);
|
|
29
|
+
__exportStar(require("./configuration"), exports);
|
|
30
|
+
//# sourceMappingURL=index.js.map
|