@openshift-migration-advisor/planner-sdk 0.9.0-a26ff9932eeb → 0.10.0-fa4e0ff47672

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 (61) hide show
  1. package/.openapi-generator/FILES +16 -0
  2. package/README.md +26 -11
  3. package/dist/apis/AccountApi.d.ts +390 -0
  4. package/dist/apis/AccountApi.js +454 -0
  5. package/dist/apis/index.d.ts +1 -0
  6. package/dist/apis/index.js +1 -0
  7. package/dist/esm/apis/AccountApi.d.ts +390 -0
  8. package/dist/esm/apis/AccountApi.js +450 -0
  9. package/dist/esm/apis/index.d.ts +1 -0
  10. package/dist/esm/apis/index.js +1 -0
  11. package/dist/esm/models/Group.d.ts +82 -0
  12. package/dist/esm/models/Group.js +76 -0
  13. package/dist/esm/models/GroupCreate.d.ts +64 -0
  14. package/dist/esm/models/GroupCreate.js +66 -0
  15. package/dist/esm/models/GroupUpdate.d.ts +50 -0
  16. package/dist/esm/models/GroupUpdate.js +47 -0
  17. package/dist/esm/models/Identity.d.ts +60 -0
  18. package/dist/esm/models/Identity.js +60 -0
  19. package/dist/esm/models/Member.d.ts +56 -0
  20. package/dist/esm/models/Member.js +57 -0
  21. package/dist/esm/models/MemberCreate.d.ts +38 -0
  22. package/dist/esm/models/MemberCreate.js +47 -0
  23. package/dist/esm/models/MemberUpdate.d.ts +32 -0
  24. package/dist/esm/models/MemberUpdate.js +41 -0
  25. package/dist/esm/models/index.d.ts +7 -0
  26. package/dist/esm/models/index.js +7 -0
  27. package/dist/models/Group.d.ts +82 -0
  28. package/dist/models/Group.js +84 -0
  29. package/dist/models/GroupCreate.d.ts +64 -0
  30. package/dist/models/GroupCreate.js +74 -0
  31. package/dist/models/GroupUpdate.d.ts +50 -0
  32. package/dist/models/GroupUpdate.js +54 -0
  33. package/dist/models/Identity.d.ts +60 -0
  34. package/dist/models/Identity.js +68 -0
  35. package/dist/models/Member.d.ts +56 -0
  36. package/dist/models/Member.js +64 -0
  37. package/dist/models/MemberCreate.d.ts +38 -0
  38. package/dist/models/MemberCreate.js +54 -0
  39. package/dist/models/MemberUpdate.d.ts +32 -0
  40. package/dist/models/MemberUpdate.js +48 -0
  41. package/dist/models/index.d.ts +7 -0
  42. package/dist/models/index.js +7 -0
  43. package/docs/AccountApi.md +734 -0
  44. package/docs/Group.md +48 -0
  45. package/docs/GroupCreate.md +42 -0
  46. package/docs/GroupUpdate.md +40 -0
  47. package/docs/Identity.md +40 -0
  48. package/docs/Member.md +42 -0
  49. package/docs/MemberCreate.md +36 -0
  50. package/docs/MemberUpdate.md +34 -0
  51. package/package.json +1 -1
  52. package/src/apis/AccountApi.ts +834 -0
  53. package/src/apis/index.ts +1 -0
  54. package/src/models/Group.ts +139 -0
  55. package/src/models/GroupCreate.ts +113 -0
  56. package/src/models/GroupUpdate.ts +89 -0
  57. package/src/models/Identity.ts +104 -0
  58. package/src/models/Member.ts +101 -0
  59. package/src/models/MemberCreate.ts +75 -0
  60. package/src/models/MemberUpdate.ts +65 -0
  61. package/src/models/index.ts +7 -0
package/docs/Group.md ADDED
@@ -0,0 +1,48 @@
1
+
2
+ # Group
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | string
10
+ `name` | string
11
+ `description` | string
12
+ `kind` | string
13
+ `icon` | string
14
+ `company` | string
15
+ `createdAt` | Date
16
+ `updatedAt` | Date
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import type { Group } from '@openshift-migration-advisor/planner-sdk'
22
+
23
+ // TODO: Update the object below with actual values
24
+ const example = {
25
+ "id": null,
26
+ "name": null,
27
+ "description": null,
28
+ "kind": null,
29
+ "icon": null,
30
+ "company": null,
31
+ "createdAt": null,
32
+ "updatedAt": null,
33
+ } satisfies Group
34
+
35
+ console.log(example)
36
+
37
+ // Convert the instance to a JSON string
38
+ const exampleJSON: string = JSON.stringify(example)
39
+ console.log(exampleJSON)
40
+
41
+ // Parse the JSON string back to an object
42
+ const exampleParsed = JSON.parse(exampleJSON) as Group
43
+ console.log(exampleParsed)
44
+ ```
45
+
46
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
47
+
48
+
@@ -0,0 +1,42 @@
1
+
2
+ # GroupCreate
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `name` | string
10
+ `description` | string
11
+ `kind` | string
12
+ `icon` | string
13
+ `company` | string
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { GroupCreate } from '@openshift-migration-advisor/planner-sdk'
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "name": null,
23
+ "description": null,
24
+ "kind": null,
25
+ "icon": null,
26
+ "company": null,
27
+ } satisfies GroupCreate
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as GroupCreate
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,40 @@
1
+
2
+ # GroupUpdate
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `name` | string
10
+ `description` | string
11
+ `icon` | string
12
+ `company` | string
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { GroupUpdate } from '@openshift-migration-advisor/planner-sdk'
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "name": null,
22
+ "description": null,
23
+ "icon": null,
24
+ "company": null,
25
+ } satisfies GroupUpdate
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as GroupUpdate
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
39
+
40
+
@@ -0,0 +1,40 @@
1
+
2
+ # Identity
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `username` | string
10
+ `kind` | string
11
+ `groupId` | string
12
+ `partnerId` | string
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { Identity } from '@openshift-migration-advisor/planner-sdk'
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "username": null,
22
+ "kind": null,
23
+ "groupId": null,
24
+ "partnerId": null,
25
+ } satisfies Identity
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as Identity
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
39
+
40
+
package/docs/Member.md ADDED
@@ -0,0 +1,42 @@
1
+
2
+ # Member
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `username` | string
10
+ `email` | string
11
+ `groupId` | string
12
+ `createdAt` | Date
13
+ `updatedAt` | Date
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { Member } from '@openshift-migration-advisor/planner-sdk'
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "username": null,
23
+ "email": null,
24
+ "groupId": null,
25
+ "createdAt": null,
26
+ "updatedAt": null,
27
+ } satisfies Member
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as Member
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,36 @@
1
+
2
+ # MemberCreate
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `username` | string
10
+ `email` | string
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { MemberCreate } from '@openshift-migration-advisor/planner-sdk'
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "username": null,
20
+ "email": null,
21
+ } satisfies MemberCreate
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as MemberCreate
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
@@ -0,0 +1,34 @@
1
+
2
+ # MemberUpdate
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `email` | string
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { MemberUpdate } from '@openshift-migration-advisor/planner-sdk'
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "email": null,
19
+ } satisfies MemberUpdate
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as MemberUpdate
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openshift-migration-advisor/planner-sdk",
3
- "version": "0.9.0-a26ff9932eeb",
3
+ "version": "0.10.0-fa4e0ff47672",
4
4
  "description": "OpenAPI client for @openshift-migration-advisor/planner-sdk",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {