@caraer/client 2.0.368 → 2.0.369
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 +2 -2
- package/dist/api.d.ts +2 -2
- package/dist/esm/api.d.ts +2 -2
- package/docs/Record.md +2 -2
- package/docs/SettingField.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2124,9 +2124,9 @@ export interface ModelRecord {
|
|
|
2124
2124
|
'deleted'?: boolean;
|
|
2125
2125
|
'complete'?: boolean;
|
|
2126
2126
|
'uuid': string;
|
|
2127
|
-
'user'?: PublicUserDTO;
|
|
2128
2127
|
'properties'?: Array<FilledProperty>;
|
|
2129
2128
|
'objects'?: { [key: string]: any | null; };
|
|
2129
|
+
'user'?: PublicUserDTO;
|
|
2130
2130
|
}
|
|
2131
2131
|
/**
|
|
2132
2132
|
* Request to morph a record
|
|
@@ -3546,8 +3546,8 @@ export interface SettingField {
|
|
|
3546
3546
|
'hidden'?: boolean;
|
|
3547
3547
|
'disabled'?: boolean;
|
|
3548
3548
|
'options'?: Array<SettingOption>;
|
|
3549
|
-
'value'?: any;
|
|
3550
3549
|
'defaultValue'?: any;
|
|
3550
|
+
'value'?: any;
|
|
3551
3551
|
}
|
|
3552
3552
|
|
|
3553
3553
|
export const SettingFieldTypeEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -2117,11 +2117,11 @@ export interface ModelRecord {
|
|
|
2117
2117
|
'deleted'?: boolean;
|
|
2118
2118
|
'complete'?: boolean;
|
|
2119
2119
|
'uuid': string;
|
|
2120
|
-
'user'?: PublicUserDTO;
|
|
2121
2120
|
'properties'?: Array<FilledProperty>;
|
|
2122
2121
|
'objects'?: {
|
|
2123
2122
|
[key: string]: any | null;
|
|
2124
2123
|
};
|
|
2124
|
+
'user'?: PublicUserDTO;
|
|
2125
2125
|
}
|
|
2126
2126
|
/**
|
|
2127
2127
|
* Request to morph a record
|
|
@@ -3557,8 +3557,8 @@ export interface SettingField {
|
|
|
3557
3557
|
'hidden'?: boolean;
|
|
3558
3558
|
'disabled'?: boolean;
|
|
3559
3559
|
'options'?: Array<SettingOption>;
|
|
3560
|
-
'value'?: any;
|
|
3561
3560
|
'defaultValue'?: any;
|
|
3561
|
+
'value'?: any;
|
|
3562
3562
|
}
|
|
3563
3563
|
export declare const SettingFieldTypeEnum: {
|
|
3564
3564
|
readonly String: "STRING";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2117,11 +2117,11 @@ export interface ModelRecord {
|
|
|
2117
2117
|
'deleted'?: boolean;
|
|
2118
2118
|
'complete'?: boolean;
|
|
2119
2119
|
'uuid': string;
|
|
2120
|
-
'user'?: PublicUserDTO;
|
|
2121
2120
|
'properties'?: Array<FilledProperty>;
|
|
2122
2121
|
'objects'?: {
|
|
2123
2122
|
[key: string]: any | null;
|
|
2124
2123
|
};
|
|
2124
|
+
'user'?: PublicUserDTO;
|
|
2125
2125
|
}
|
|
2126
2126
|
/**
|
|
2127
2127
|
* Request to morph a record
|
|
@@ -3557,8 +3557,8 @@ export interface SettingField {
|
|
|
3557
3557
|
'hidden'?: boolean;
|
|
3558
3558
|
'disabled'?: boolean;
|
|
3559
3559
|
'options'?: Array<SettingOption>;
|
|
3560
|
-
'value'?: any;
|
|
3561
3560
|
'defaultValue'?: any;
|
|
3561
|
+
'value'?: any;
|
|
3562
3562
|
}
|
|
3563
3563
|
export declare const SettingFieldTypeEnum: {
|
|
3564
3564
|
readonly String: "STRING";
|
package/docs/Record.md
CHANGED
|
@@ -17,9 +17,9 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**deleted** | **boolean** | | [optional] [default to undefined]
|
|
18
18
|
**complete** | **boolean** | | [optional] [default to undefined]
|
|
19
19
|
**uuid** | **string** | | [default to undefined]
|
|
20
|
-
**user** | [**PublicUserDTO**](PublicUserDTO.md) | | [optional] [default to undefined]
|
|
21
20
|
**properties** | [**Array<FilledProperty>**](FilledProperty.md) | | [optional] [default to undefined]
|
|
22
21
|
**objects** | **{ [key: string]: any | null; }** | | [optional] [default to undefined]
|
|
22
|
+
**user** | [**PublicUserDTO**](PublicUserDTO.md) | | [optional] [default to undefined]
|
|
23
23
|
|
|
24
24
|
## Example
|
|
25
25
|
|
|
@@ -39,9 +39,9 @@ const instance: ModelRecord = {
|
|
|
39
39
|
deleted,
|
|
40
40
|
complete,
|
|
41
41
|
uuid,
|
|
42
|
-
user,
|
|
43
42
|
properties,
|
|
44
43
|
objects,
|
|
44
|
+
user,
|
|
45
45
|
};
|
|
46
46
|
```
|
|
47
47
|
|
package/docs/SettingField.md
CHANGED
|
@@ -14,8 +14,8 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**hidden** | **boolean** | | [optional] [default to undefined]
|
|
15
15
|
**disabled** | **boolean** | | [optional] [default to undefined]
|
|
16
16
|
**_options** | [**Array<SettingOption>**](SettingOption.md) | | [optional] [default to undefined]
|
|
17
|
-
**value** | **any** | | [optional] [default to undefined]
|
|
18
17
|
**defaultValue** | **any** | | [optional] [default to undefined]
|
|
18
|
+
**value** | **any** | | [optional] [default to undefined]
|
|
19
19
|
|
|
20
20
|
## Example
|
|
21
21
|
|
|
@@ -32,8 +32,8 @@ const instance: SettingField = {
|
|
|
32
32
|
hidden,
|
|
33
33
|
disabled,
|
|
34
34
|
_options,
|
|
35
|
-
value,
|
|
36
35
|
defaultValue,
|
|
36
|
+
value,
|
|
37
37
|
};
|
|
38
38
|
```
|
|
39
39
|
|