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.
@@ -10,46 +10,46 @@
10
10
  * Do not edit the file manually.
11
11
  */
12
12
  export interface ConfigurationParameters {
13
- apiKey?: string | ((name: string) => string);
14
- username?: string;
15
- password?: string;
16
- accessToken?: string | ((name: string, scopes?: string[]) => string);
17
- basePath?: string;
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
- * 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);
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
- 'use strict';
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, '__esModule', { value: true });
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
14
  exports.Configuration = void 0;
15
15
  class Configuration {
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
- }
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
@@ -9,5 +9,5 @@
9
9
  * https://github.com/swagger-api/swagger-codegen.git
10
10
  * Do not edit the file manually.
11
11
  */
12
- export * from './api';
13
- export * from './configuration';
12
+ export * from "./api";
13
+ export * from "./configuration";
@@ -1,4 +1,4 @@
1
- 'use strict';
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
- (this && this.__createBinding) ||
15
- (Object.create
16
- ? function (o, m, k, k2) {
17
- if (k2 === undefined) k2 = k;
18
- var desc = Object.getOwnPropertyDescriptor(m, k);
19
- if (!desc || ('get' in desc ? !m.__esModule : desc.writable || desc.configurable)) {
20
- desc = {
21
- enumerable: true,
22
- get: function () {
23
- return m[k];
24
- },
25
- };
26
- }
27
- Object.defineProperty(o, k2, desc);
28
- }
29
- : function (o, m, k, k2) {
30
- if (k2 === undefined) k2 = k;
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