@caraer/client 2.0.347 → 2.0.349
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/FilledProperty.md +2 -2
- package/docs/SettingField.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1502,10 +1502,10 @@ export interface FeedDTO {
|
|
|
1502
1502
|
'active'?: boolean;
|
|
1503
1503
|
}
|
|
1504
1504
|
export interface FilledProperty {
|
|
1505
|
-
'icon'?: string;
|
|
1506
1505
|
'name'?: string;
|
|
1507
1506
|
'value'?: any;
|
|
1508
1507
|
'type'?: string;
|
|
1508
|
+
'icon'?: string;
|
|
1509
1509
|
'label'?: string;
|
|
1510
1510
|
}
|
|
1511
1511
|
/**
|
|
@@ -3546,8 +3546,8 @@ export interface SettingField {
|
|
|
3546
3546
|
'hidden'?: boolean;
|
|
3547
3547
|
'disabled'?: boolean;
|
|
3548
3548
|
'options'?: Array<SettingOption>;
|
|
3549
|
-
'defaultValue'?: any;
|
|
3550
3549
|
'value'?: any;
|
|
3550
|
+
'defaultValue'?: any;
|
|
3551
3551
|
}
|
|
3552
3552
|
|
|
3553
3553
|
export const SettingFieldTypeEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -1483,10 +1483,10 @@ export interface FeedDTO {
|
|
|
1483
1483
|
'active'?: boolean;
|
|
1484
1484
|
}
|
|
1485
1485
|
export interface FilledProperty {
|
|
1486
|
-
'icon'?: string;
|
|
1487
1486
|
'name'?: string;
|
|
1488
1487
|
'value'?: any;
|
|
1489
1488
|
'type'?: string;
|
|
1489
|
+
'icon'?: string;
|
|
1490
1490
|
'label'?: string;
|
|
1491
1491
|
}
|
|
1492
1492
|
/**
|
|
@@ -3557,8 +3557,8 @@ export interface SettingField {
|
|
|
3557
3557
|
'hidden'?: boolean;
|
|
3558
3558
|
'disabled'?: boolean;
|
|
3559
3559
|
'options'?: Array<SettingOption>;
|
|
3560
|
-
'defaultValue'?: any;
|
|
3561
3560
|
'value'?: any;
|
|
3561
|
+
'defaultValue'?: any;
|
|
3562
3562
|
}
|
|
3563
3563
|
export declare const SettingFieldTypeEnum: {
|
|
3564
3564
|
readonly String: "STRING";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1483,10 +1483,10 @@ export interface FeedDTO {
|
|
|
1483
1483
|
'active'?: boolean;
|
|
1484
1484
|
}
|
|
1485
1485
|
export interface FilledProperty {
|
|
1486
|
-
'icon'?: string;
|
|
1487
1486
|
'name'?: string;
|
|
1488
1487
|
'value'?: any;
|
|
1489
1488
|
'type'?: string;
|
|
1489
|
+
'icon'?: string;
|
|
1490
1490
|
'label'?: string;
|
|
1491
1491
|
}
|
|
1492
1492
|
/**
|
|
@@ -3557,8 +3557,8 @@ export interface SettingField {
|
|
|
3557
3557
|
'hidden'?: boolean;
|
|
3558
3558
|
'disabled'?: boolean;
|
|
3559
3559
|
'options'?: Array<SettingOption>;
|
|
3560
|
-
'defaultValue'?: any;
|
|
3561
3560
|
'value'?: any;
|
|
3561
|
+
'defaultValue'?: any;
|
|
3562
3562
|
}
|
|
3563
3563
|
export declare const SettingFieldTypeEnum: {
|
|
3564
3564
|
readonly String: "STRING";
|
package/docs/FilledProperty.md
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**icon** | **string** | | [optional] [default to undefined]
|
|
9
8
|
**name** | **string** | | [optional] [default to undefined]
|
|
10
9
|
**value** | **any** | | [optional] [default to undefined]
|
|
11
10
|
**type** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**icon** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**label** | **string** | | [optional] [default to undefined]
|
|
13
13
|
|
|
14
14
|
## Example
|
|
@@ -17,10 +17,10 @@ Name | Type | Description | Notes
|
|
|
17
17
|
import { FilledProperty } from '@caraer/client';
|
|
18
18
|
|
|
19
19
|
const instance: FilledProperty = {
|
|
20
|
-
icon,
|
|
21
20
|
name,
|
|
22
21
|
value,
|
|
23
22
|
type,
|
|
23
|
+
icon,
|
|
24
24
|
label,
|
|
25
25
|
};
|
|
26
26
|
```
|
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
|
-
**defaultValue** | **any** | | [optional] [default to undefined]
|
|
18
17
|
**value** | **any** | | [optional] [default to undefined]
|
|
18
|
+
**defaultValue** | **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
|
-
defaultValue,
|
|
36
35
|
value,
|
|
36
|
+
defaultValue,
|
|
37
37
|
};
|
|
38
38
|
```
|
|
39
39
|
|