@emilgroup/auth-sdk-node 1.0.0 → 1.2.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.
Files changed (40) hide show
  1. package/.openapi-generator/FILES +7 -0
  2. package/README.md +2 -2
  3. package/api/authservice-api.ts +88 -0
  4. package/api/default-api.ts +124 -0
  5. package/api.ts +2 -0
  6. package/base.ts +2 -1
  7. package/dist/api/authservice-api.d.ts +47 -0
  8. package/dist/api/authservice-api.js +78 -0
  9. package/dist/api/default-api.d.ts +66 -0
  10. package/dist/api/default-api.js +200 -0
  11. package/dist/api.d.ts +1 -0
  12. package/dist/api.js +1 -0
  13. package/dist/base.d.ts +2 -1
  14. package/dist/base.js +2 -1
  15. package/dist/models/create-org-and-user-request-dto.d.ts +17 -11
  16. package/dist/models/custom-schema-class.d.ts +66 -0
  17. package/dist/models/custom-schema-class.js +15 -0
  18. package/dist/models/index.d.ts +6 -0
  19. package/dist/models/index.js +6 -0
  20. package/dist/models/inline-response200.d.ts +54 -0
  21. package/dist/models/inline-response200.js +15 -0
  22. package/dist/models/inline-response503.d.ts +54 -0
  23. package/dist/models/inline-response503.js +15 -0
  24. package/dist/models/org-invitation-class.d.ts +109 -0
  25. package/dist/models/org-invitation-class.js +15 -0
  26. package/dist/models/organization-class.d.ts +7 -1
  27. package/dist/models/verify-org-invitation-request-dto.d.ts +24 -0
  28. package/dist/models/verify-org-invitation-request-dto.js +15 -0
  29. package/dist/models/verify-org-invitation-response-class.d.ts +32 -0
  30. package/dist/models/verify-org-invitation-response-class.js +15 -0
  31. package/models/create-org-and-user-request-dto.ts +17 -11
  32. package/models/custom-schema-class.ts +72 -0
  33. package/models/index.ts +6 -0
  34. package/models/inline-response200.ts +48 -0
  35. package/models/inline-response503.ts +48 -0
  36. package/models/org-invitation-class.ts +115 -0
  37. package/models/organization-class.ts +7 -1
  38. package/models/verify-org-invitation-request-dto.ts +30 -0
  39. package/models/verify-org-invitation-response-class.ts +38 -0
  40. package/package.json +2 -2
@@ -0,0 +1,38 @@
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
+ import { CustomSchemaClass } from './custom-schema-class';
17
+ import { OrgInvitationClass } from './org-invitation-class';
18
+
19
+ /**
20
+ *
21
+ * @export
22
+ * @interface VerifyOrgInvitationResponseClass
23
+ */
24
+ export interface VerifyOrgInvitationResponseClass {
25
+ /**
26
+ * Invitation object identified by the token.
27
+ * @type {OrgInvitationClass}
28
+ * @memberof VerifyOrgInvitationResponseClass
29
+ */
30
+ 'invitation': OrgInvitationClass;
31
+ /**
32
+ * Custom schema associated for the invitation process
33
+ * @type {CustomSchemaClass}
34
+ * @memberof VerifyOrgInvitationResponseClass
35
+ */
36
+ 'customSchema': CustomSchemaClass;
37
+ }
38
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/auth-sdk-node",
3
- "version": "1.0.0",
3
+ "version": "1.2.0",
4
4
  "description": "OpenAPI client for @emilgroup/auth-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -23,7 +23,7 @@
23
23
  "url": "^0.11.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@types/node": "^12.11.5",
26
+ "@types/node": "^12.11.5",
27
27
  "typescript": "^4.0"
28
28
  }
29
29
  }