yellowgrid-api-ts 3.1.17-dev.0 → 3.1.18-dev.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.
- package/api.ts +12 -0
- package/dist/api.d.ts +12 -0
- package/docs/AdminUserModel.md +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -778,6 +778,18 @@ export interface AdminUserModel {
|
|
|
778
778
|
* @memberof AdminUserModel
|
|
779
779
|
*/
|
|
780
780
|
'email'?: string | null;
|
|
781
|
+
/**
|
|
782
|
+
* Primary Colour
|
|
783
|
+
* @type {string}
|
|
784
|
+
* @memberof AdminUserModel
|
|
785
|
+
*/
|
|
786
|
+
'primaryHex'?: string | null;
|
|
787
|
+
/**
|
|
788
|
+
* Secondary Colour
|
|
789
|
+
* @type {string}
|
|
790
|
+
* @memberof AdminUserModel
|
|
791
|
+
*/
|
|
792
|
+
'secondaryHex'?: string | null;
|
|
781
793
|
}
|
|
782
794
|
|
|
783
795
|
export const AdminUserModelRoleEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -768,6 +768,18 @@ export interface AdminUserModel {
|
|
|
768
768
|
* @memberof AdminUserModel
|
|
769
769
|
*/
|
|
770
770
|
'email'?: string | null;
|
|
771
|
+
/**
|
|
772
|
+
* Primary Colour
|
|
773
|
+
* @type {string}
|
|
774
|
+
* @memberof AdminUserModel
|
|
775
|
+
*/
|
|
776
|
+
'primaryHex'?: string | null;
|
|
777
|
+
/**
|
|
778
|
+
* Secondary Colour
|
|
779
|
+
* @type {string}
|
|
780
|
+
* @memberof AdminUserModel
|
|
781
|
+
*/
|
|
782
|
+
'secondaryHex'?: string | null;
|
|
771
783
|
}
|
|
772
784
|
export declare const AdminUserModelRoleEnum: {
|
|
773
785
|
readonly NUMBER_0: 0;
|
package/docs/AdminUserModel.md
CHANGED
|
@@ -11,6 +11,8 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**avatar** | **string** | Avatar | [optional] [default to undefined]
|
|
12
12
|
**role** | **number** | Role | [optional] [default to undefined]
|
|
13
13
|
**email** | **string** | Email | [optional] [default to undefined]
|
|
14
|
+
**primaryHex** | **string** | Primary Colour | [optional] [default to undefined]
|
|
15
|
+
**secondaryHex** | **string** | Secondary Colour | [optional] [default to undefined]
|
|
14
16
|
|
|
15
17
|
## Example
|
|
16
18
|
|
|
@@ -23,6 +25,8 @@ const instance: AdminUserModel = {
|
|
|
23
25
|
avatar,
|
|
24
26
|
role,
|
|
25
27
|
email,
|
|
28
|
+
primaryHex,
|
|
29
|
+
secondaryHex,
|
|
26
30
|
};
|
|
27
31
|
```
|
|
28
32
|
|