@handsondigital/idplugger-admin 2.2.1 → 2.2.2
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/.openapi-generator/FILES +1 -1
- package/README.md +3 -3
- package/api.ts +9 -9
- package/dist/api.d.ts +9 -9
- package/docs/UserRegister200Response.md +1 -1
- package/docs/UserRegister200ResponseUser.md +28 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -104,7 +104,7 @@ docs/UserGrantPermissions200ResponseUserInner.md
|
|
|
104
104
|
docs/UserGrantPermissions500Response.md
|
|
105
105
|
docs/UserGrantPermissionsRequest.md
|
|
106
106
|
docs/UserRegister200Response.md
|
|
107
|
-
docs/
|
|
107
|
+
docs/UserRegister200ResponseUser.md
|
|
108
108
|
docs/UserRegister500Response.md
|
|
109
109
|
docs/UserRegisterRequest.md
|
|
110
110
|
docs/UserResetPassword200Response.md
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @handsondigital/idplugger-admin@2.2.
|
|
1
|
+
## @handsondigital/idplugger-admin@2.2.2
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @handsondigital/idplugger-admin@2.2.
|
|
39
|
+
npm install @handsondigital/idplugger-admin@2.2.2 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -185,7 +185,7 @@ Class | Method | HTTP request | Description
|
|
|
185
185
|
- [UserGrantPermissions500Response](docs/UserGrantPermissions500Response.md)
|
|
186
186
|
- [UserGrantPermissionsRequest](docs/UserGrantPermissionsRequest.md)
|
|
187
187
|
- [UserRegister200Response](docs/UserRegister200Response.md)
|
|
188
|
-
- [
|
|
188
|
+
- [UserRegister200ResponseUser](docs/UserRegister200ResponseUser.md)
|
|
189
189
|
- [UserRegister500Response](docs/UserRegister500Response.md)
|
|
190
190
|
- [UserRegisterRequest](docs/UserRegisterRequest.md)
|
|
191
191
|
- [UserResetPassword200Response](docs/UserResetPassword200Response.md)
|
package/api.ts
CHANGED
|
@@ -2724,45 +2724,45 @@ export interface UserRegister200Response {
|
|
|
2724
2724
|
'message'?: string;
|
|
2725
2725
|
/**
|
|
2726
2726
|
*
|
|
2727
|
-
* @type {
|
|
2727
|
+
* @type {UserRegister200ResponseUser}
|
|
2728
2728
|
* @memberof UserRegister200Response
|
|
2729
2729
|
*/
|
|
2730
|
-
'user'?:
|
|
2730
|
+
'user'?: UserRegister200ResponseUser;
|
|
2731
2731
|
}
|
|
2732
2732
|
/**
|
|
2733
2733
|
*
|
|
2734
2734
|
* @export
|
|
2735
|
-
* @interface
|
|
2735
|
+
* @interface UserRegister200ResponseUser
|
|
2736
2736
|
*/
|
|
2737
|
-
export interface
|
|
2737
|
+
export interface UserRegister200ResponseUser {
|
|
2738
2738
|
/**
|
|
2739
2739
|
*
|
|
2740
2740
|
* @type {string}
|
|
2741
|
-
* @memberof
|
|
2741
|
+
* @memberof UserRegister200ResponseUser
|
|
2742
2742
|
*/
|
|
2743
2743
|
'password'?: string;
|
|
2744
2744
|
/**
|
|
2745
2745
|
*
|
|
2746
2746
|
* @type {string}
|
|
2747
|
-
* @memberof
|
|
2747
|
+
* @memberof UserRegister200ResponseUser
|
|
2748
2748
|
*/
|
|
2749
2749
|
'username'?: string;
|
|
2750
2750
|
/**
|
|
2751
2751
|
*
|
|
2752
2752
|
* @type {string}
|
|
2753
|
-
* @memberof
|
|
2753
|
+
* @memberof UserRegister200ResponseUser
|
|
2754
2754
|
*/
|
|
2755
2755
|
'name'?: string;
|
|
2756
2756
|
/**
|
|
2757
2757
|
*
|
|
2758
2758
|
* @type {string}
|
|
2759
|
-
* @memberof
|
|
2759
|
+
* @memberof UserRegister200ResponseUser
|
|
2760
2760
|
*/
|
|
2761
2761
|
'email'?: string;
|
|
2762
2762
|
/**
|
|
2763
2763
|
*
|
|
2764
2764
|
* @type {string}
|
|
2765
|
-
* @memberof
|
|
2765
|
+
* @memberof UserRegister200ResponseUser
|
|
2766
2766
|
*/
|
|
2767
2767
|
'uuid'?: string;
|
|
2768
2768
|
}
|
package/dist/api.d.ts
CHANGED
|
@@ -2716,45 +2716,45 @@ export interface UserRegister200Response {
|
|
|
2716
2716
|
'message'?: string;
|
|
2717
2717
|
/**
|
|
2718
2718
|
*
|
|
2719
|
-
* @type {
|
|
2719
|
+
* @type {UserRegister200ResponseUser}
|
|
2720
2720
|
* @memberof UserRegister200Response
|
|
2721
2721
|
*/
|
|
2722
|
-
'user'?:
|
|
2722
|
+
'user'?: UserRegister200ResponseUser;
|
|
2723
2723
|
}
|
|
2724
2724
|
/**
|
|
2725
2725
|
*
|
|
2726
2726
|
* @export
|
|
2727
|
-
* @interface
|
|
2727
|
+
* @interface UserRegister200ResponseUser
|
|
2728
2728
|
*/
|
|
2729
|
-
export interface
|
|
2729
|
+
export interface UserRegister200ResponseUser {
|
|
2730
2730
|
/**
|
|
2731
2731
|
*
|
|
2732
2732
|
* @type {string}
|
|
2733
|
-
* @memberof
|
|
2733
|
+
* @memberof UserRegister200ResponseUser
|
|
2734
2734
|
*/
|
|
2735
2735
|
'password'?: string;
|
|
2736
2736
|
/**
|
|
2737
2737
|
*
|
|
2738
2738
|
* @type {string}
|
|
2739
|
-
* @memberof
|
|
2739
|
+
* @memberof UserRegister200ResponseUser
|
|
2740
2740
|
*/
|
|
2741
2741
|
'username'?: string;
|
|
2742
2742
|
/**
|
|
2743
2743
|
*
|
|
2744
2744
|
* @type {string}
|
|
2745
|
-
* @memberof
|
|
2745
|
+
* @memberof UserRegister200ResponseUser
|
|
2746
2746
|
*/
|
|
2747
2747
|
'name'?: string;
|
|
2748
2748
|
/**
|
|
2749
2749
|
*
|
|
2750
2750
|
* @type {string}
|
|
2751
|
-
* @memberof
|
|
2751
|
+
* @memberof UserRegister200ResponseUser
|
|
2752
2752
|
*/
|
|
2753
2753
|
'email'?: string;
|
|
2754
2754
|
/**
|
|
2755
2755
|
*
|
|
2756
2756
|
* @type {string}
|
|
2757
|
-
* @memberof
|
|
2757
|
+
* @memberof UserRegister200ResponseUser
|
|
2758
2758
|
*/
|
|
2759
2759
|
'uuid'?: string;
|
|
2760
2760
|
}
|
|
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**action** | **string** | | [optional] [default to undefined]
|
|
9
9
|
**result** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**message** | **string** | | [optional] [default to undefined]
|
|
11
|
-
**user** | [**
|
|
11
|
+
**user** | [**UserRegister200ResponseUser**](UserRegister200ResponseUser.md) | | [optional] [default to undefined]
|
|
12
12
|
|
|
13
13
|
## Example
|
|
14
14
|
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# UserRegister200ResponseUser
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**password** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**username** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**name** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**email** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**uuid** | **string** | | [optional] [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { UserRegister200ResponseUser } from '@handsondigital/idplugger-admin';
|
|
18
|
+
|
|
19
|
+
const instance: UserRegister200ResponseUser = {
|
|
20
|
+
password,
|
|
21
|
+
username,
|
|
22
|
+
name,
|
|
23
|
+
email,
|
|
24
|
+
uuid,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|