@emilgroup/auth-sdk-node 1.13.0 → 1.15.1-beta.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.
@@ -16,7 +16,6 @@ models/create-user-request-dto.ts
16
16
  models/create-user-response-class.ts
17
17
  models/custom-schema-class.ts
18
18
  models/forgot-password-request-dto.ts
19
- models/get-saml-login-link-request-dto.ts
20
19
  models/index.ts
21
20
  models/inline-response200.ts
22
21
  models/inline-response503.ts
@@ -30,7 +29,6 @@ models/refresh-token-dto.ts
30
29
  models/reset-password-request-dto.ts
31
30
  models/role-class.ts
32
31
  models/user-class.ts
33
- models/verify-org-invitation-request-dto.ts
34
32
  models/verify-org-invitation-response-class.ts
35
33
  package.json
36
34
  tsconfig.json
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/auth-sdk-node@1.13.0 --save
20
+ npm install @emilgroup/auth-sdk-node@1.15.1-beta.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/auth-sdk-node@1.13.0
24
+ yarn add @emilgroup/auth-sdk-node@1.15.1-beta.0
25
25
  ```
26
26
 
27
27
  And then you can import ``.
@@ -35,7 +35,7 @@ const FormData = require('form-data');
35
35
  export const DefaultApiAxiosParamCreator = function (configuration?: Configuration) {
36
36
  return {
37
37
  /**
38
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
38
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
39
39
  * @summary Health Check
40
40
  * @param {*} [options] Override http request option.
41
41
  * @throws {RequiredError}
@@ -77,7 +77,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
77
77
  const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration)
78
78
  return {
79
79
  /**
80
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
80
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
81
81
  * @summary Health Check
82
82
  * @param {*} [options] Override http request option.
83
83
  * @throws {RequiredError}
@@ -97,7 +97,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
97
97
  const localVarFp = DefaultApiFp(configuration)
98
98
  return {
99
99
  /**
100
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
100
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
101
101
  * @summary Health Check
102
102
  * @param {*} [options] Override http request option.
103
103
  * @throws {RequiredError}
@@ -116,7 +116,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
116
116
  */
117
117
  export class DefaultApi extends BaseAPI {
118
118
  /**
119
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
119
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
120
120
  * @summary Health Check
121
121
  * @param {*} [options] Override http request option.
122
122
  * @throws {RequiredError}
package/base.ts CHANGED
@@ -47,6 +47,7 @@ export interface LoginClass {
47
47
  export enum Environment {
48
48
  Production = 'https://apiv2.emil.de',
49
49
  Test = 'https://apiv2-test.emil.de',
50
+ Staging = 'https://apiv2-staging.emil.de',
50
51
  Development = 'https://apiv2-dev.emil.de',
51
52
  ProductionZurich = 'https://eu-central-2.apiv2.emil.de',
52
53
  }
@@ -19,7 +19,7 @@ import { InlineResponse200 } from '../models';
19
19
  */
20
20
  export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
21
21
  /**
22
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
22
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
23
23
  * @summary Health Check
24
24
  * @param {*} [options] Override http request option.
25
25
  * @throws {RequiredError}
@@ -32,7 +32,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
32
32
  */
33
33
  export declare const DefaultApiFp: (configuration?: Configuration) => {
34
34
  /**
35
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
35
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
36
36
  * @summary Health Check
37
37
  * @param {*} [options] Override http request option.
38
38
  * @throws {RequiredError}
@@ -45,7 +45,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
45
45
  */
46
46
  export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
47
47
  /**
48
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
48
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
49
49
  * @summary Health Check
50
50
  * @param {*} [options] Override http request option.
51
51
  * @throws {RequiredError}
@@ -60,7 +60,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
60
60
  */
61
61
  export declare class DefaultApi extends BaseAPI {
62
62
  /**
63
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
63
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
64
64
  * @summary Health Check
65
65
  * @param {*} [options] Override http request option.
66
66
  * @throws {RequiredError}
@@ -97,7 +97,7 @@ var DefaultApiAxiosParamCreator = function (configuration) {
97
97
  var _this = this;
98
98
  return {
99
99
  /**
100
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
100
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
101
101
  * @summary Health Check
102
102
  * @param {*} [options] Override http request option.
103
103
  * @throws {RequiredError}
@@ -137,7 +137,7 @@ var DefaultApiFp = function (configuration) {
137
137
  var localVarAxiosParamCreator = (0, exports.DefaultApiAxiosParamCreator)(configuration);
138
138
  return {
139
139
  /**
140
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
140
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
141
141
  * @summary Health Check
142
142
  * @param {*} [options] Override http request option.
143
143
  * @throws {RequiredError}
@@ -166,7 +166,7 @@ var DefaultApiFactory = function (configuration, basePath, axios) {
166
166
  var localVarFp = (0, exports.DefaultApiFp)(configuration);
167
167
  return {
168
168
  /**
169
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
169
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
170
170
  * @summary Health Check
171
171
  * @param {*} [options] Override http request option.
172
172
  * @throws {RequiredError}
@@ -189,7 +189,7 @@ var DefaultApi = /** @class */ (function (_super) {
189
189
  return _super !== null && _super.apply(this, arguments) || this;
190
190
  }
191
191
  /**
192
- * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
192
+ * Returns the health status of the auth service. This endpoint is used to monitor the operational status of the auth service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
193
193
  * @summary Health Check
194
194
  * @param {*} [options] Override http request option.
195
195
  * @throws {RequiredError}
package/dist/base.d.ts CHANGED
@@ -29,6 +29,7 @@ export interface LoginClass {
29
29
  export declare enum Environment {
30
30
  Production = "https://apiv2.emil.de",
31
31
  Test = "https://apiv2-test.emil.de",
32
+ Staging = "https://apiv2-staging.emil.de",
32
33
  Development = "https://apiv2-dev.emil.de",
33
34
  ProductionZurich = "https://eu-central-2.apiv2.emil.de"
34
35
  }
package/dist/base.js CHANGED
@@ -129,6 +129,7 @@ var Environment;
129
129
  (function (Environment) {
130
130
  Environment["Production"] = "https://apiv2.emil.de";
131
131
  Environment["Test"] = "https://apiv2-test.emil.de";
132
+ Environment["Staging"] = "https://apiv2-staging.emil.de";
132
133
  Environment["Development"] = "https://apiv2-dev.emil.de";
133
134
  Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
134
135
  })(Environment = exports.Environment || (exports.Environment = {}));
@@ -4,7 +4,6 @@ export * from './create-user-request-dto';
4
4
  export * from './create-user-response-class';
5
5
  export * from './custom-schema-class';
6
6
  export * from './forgot-password-request-dto';
7
- export * from './get-saml-login-link-request-dto';
8
7
  export * from './inline-response200';
9
8
  export * from './inline-response503';
10
9
  export * from './login-by-saml-request-dto';
@@ -17,5 +16,4 @@ export * from './refresh-token-dto';
17
16
  export * from './reset-password-request-dto';
18
17
  export * from './role-class';
19
18
  export * from './user-class';
20
- export * from './verify-org-invitation-request-dto';
21
19
  export * from './verify-org-invitation-response-class';
@@ -20,7 +20,6 @@ __exportStar(require("./create-user-request-dto"), exports);
20
20
  __exportStar(require("./create-user-response-class"), exports);
21
21
  __exportStar(require("./custom-schema-class"), exports);
22
22
  __exportStar(require("./forgot-password-request-dto"), exports);
23
- __exportStar(require("./get-saml-login-link-request-dto"), exports);
24
23
  __exportStar(require("./inline-response200"), exports);
25
24
  __exportStar(require("./inline-response503"), exports);
26
25
  __exportStar(require("./login-by-saml-request-dto"), exports);
@@ -33,5 +32,4 @@ __exportStar(require("./refresh-token-dto"), exports);
33
32
  __exportStar(require("./reset-password-request-dto"), exports);
34
33
  __exportStar(require("./role-class"), exports);
35
34
  __exportStar(require("./user-class"), exports);
36
- __exportStar(require("./verify-org-invitation-request-dto"), exports);
37
35
  __exportStar(require("./verify-org-invitation-response-class"), exports);
package/models/index.ts CHANGED
@@ -4,7 +4,6 @@ export * from './create-user-request-dto';
4
4
  export * from './create-user-response-class';
5
5
  export * from './custom-schema-class';
6
6
  export * from './forgot-password-request-dto';
7
- export * from './get-saml-login-link-request-dto';
8
7
  export * from './inline-response200';
9
8
  export * from './inline-response503';
10
9
  export * from './login-by-saml-request-dto';
@@ -17,5 +16,4 @@ export * from './refresh-token-dto';
17
16
  export * from './reset-password-request-dto';
18
17
  export * from './role-class';
19
18
  export * from './user-class';
20
- export * from './verify-org-invitation-request-dto';
21
19
  export * from './verify-org-invitation-response-class';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/auth-sdk-node",
3
- "version": "1.13.0",
3
+ "version": "1.15.1-beta.0",
4
4
  "description": "OpenAPI client for @emilgroup/auth-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -1,24 +0,0 @@
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 GetSamlLoginLinkRequestDto
16
- */
17
- export interface GetSamlLoginLinkRequestDto {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof GetSamlLoginLinkRequestDto
22
- */
23
- 'tenantSlug': string;
24
- }
@@ -1,15 +0,0 @@
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 });
@@ -1,24 +0,0 @@
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 VerifyOrgInvitationRequestDto
16
- */
17
- export interface VerifyOrgInvitationRequestDto {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof VerifyOrgInvitationRequestDto
22
- */
23
- 'invitationToken': string;
24
- }
@@ -1,15 +0,0 @@
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 });
@@ -1,30 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL AuthService
5
- * The EMIL AuthService API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
-
16
-
17
- /**
18
- *
19
- * @export
20
- * @interface GetSamlLoginLinkRequestDto
21
- */
22
- export interface GetSamlLoginLinkRequestDto {
23
- /**
24
- *
25
- * @type {string}
26
- * @memberof GetSamlLoginLinkRequestDto
27
- */
28
- 'tenantSlug': string;
29
- }
30
-
@@ -1,30 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL AuthService
5
- * The EMIL AuthService API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
-
16
-
17
- /**
18
- *
19
- * @export
20
- * @interface VerifyOrgInvitationRequestDto
21
- */
22
- export interface VerifyOrgInvitationRequestDto {
23
- /**
24
- *
25
- * @type {string}
26
- * @memberof VerifyOrgInvitationRequestDto
27
- */
28
- 'invitationToken': string;
29
- }
30
-