@caraer/client 2.0.423 → 2.0.424
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/ExistingWidgetSummary.md +2 -2
- package/docs/SettingField.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2097,9 +2097,9 @@ export const EventRsvpRequestScopeEnum = {
|
|
|
2097
2097
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2098
2098
|
|
|
2099
2099
|
export interface ExistingWidgetSummary {
|
|
2100
|
-
'xproperty'?: string;
|
|
2101
2100
|
'ymetric'?: string;
|
|
2102
2101
|
'yproperty'?: string;
|
|
2102
|
+
'xproperty'?: string;
|
|
2103
2103
|
'title'?: string;
|
|
2104
2104
|
'chartType'?: string;
|
|
2105
2105
|
'xProperty'?: string;
|
|
@@ -4374,8 +4374,8 @@ export interface SettingField {
|
|
|
4374
4374
|
'hidden'?: boolean;
|
|
4375
4375
|
'disabled'?: boolean;
|
|
4376
4376
|
'options'?: Array<SettingOption>;
|
|
4377
|
-
'defaultValue'?: any;
|
|
4378
4377
|
'value'?: any;
|
|
4378
|
+
'defaultValue'?: any;
|
|
4379
4379
|
}
|
|
4380
4380
|
|
|
4381
4381
|
export const SettingFieldTypeEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -2076,9 +2076,9 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2076
2076
|
};
|
|
2077
2077
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2078
2078
|
export interface ExistingWidgetSummary {
|
|
2079
|
-
'xproperty'?: string;
|
|
2080
2079
|
'ymetric'?: string;
|
|
2081
2080
|
'yproperty'?: string;
|
|
2081
|
+
'xproperty'?: string;
|
|
2082
2082
|
'title'?: string;
|
|
2083
2083
|
'chartType'?: string;
|
|
2084
2084
|
'xProperty'?: string;
|
|
@@ -4397,8 +4397,8 @@ export interface SettingField {
|
|
|
4397
4397
|
'hidden'?: boolean;
|
|
4398
4398
|
'disabled'?: boolean;
|
|
4399
4399
|
'options'?: Array<SettingOption>;
|
|
4400
|
-
'defaultValue'?: any;
|
|
4401
4400
|
'value'?: any;
|
|
4401
|
+
'defaultValue'?: any;
|
|
4402
4402
|
}
|
|
4403
4403
|
export declare const SettingFieldTypeEnum: {
|
|
4404
4404
|
readonly String: "STRING";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2076,9 +2076,9 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2076
2076
|
};
|
|
2077
2077
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2078
2078
|
export interface ExistingWidgetSummary {
|
|
2079
|
-
'xproperty'?: string;
|
|
2080
2079
|
'ymetric'?: string;
|
|
2081
2080
|
'yproperty'?: string;
|
|
2081
|
+
'xproperty'?: string;
|
|
2082
2082
|
'title'?: string;
|
|
2083
2083
|
'chartType'?: string;
|
|
2084
2084
|
'xProperty'?: string;
|
|
@@ -4397,8 +4397,8 @@ export interface SettingField {
|
|
|
4397
4397
|
'hidden'?: boolean;
|
|
4398
4398
|
'disabled'?: boolean;
|
|
4399
4399
|
'options'?: Array<SettingOption>;
|
|
4400
|
-
'defaultValue'?: any;
|
|
4401
4400
|
'value'?: any;
|
|
4401
|
+
'defaultValue'?: any;
|
|
4402
4402
|
}
|
|
4403
4403
|
export declare const SettingFieldTypeEnum: {
|
|
4404
4404
|
readonly String: "STRING";
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**xproperty** | **string** | | [optional] [default to undefined]
|
|
9
8
|
**ymetric** | **string** | | [optional] [default to undefined]
|
|
10
9
|
**yproperty** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**xproperty** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**title** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**chartType** | **string** | | [optional] [default to undefined]
|
|
13
13
|
**xProperty** | **string** | | [optional] [default to undefined]
|
|
@@ -20,9 +20,9 @@ Name | Type | Description | Notes
|
|
|
20
20
|
import { ExistingWidgetSummary } from '@caraer/client';
|
|
21
21
|
|
|
22
22
|
const instance: ExistingWidgetSummary = {
|
|
23
|
-
xproperty,
|
|
24
23
|
ymetric,
|
|
25
24
|
yproperty,
|
|
25
|
+
xproperty,
|
|
26
26
|
title,
|
|
27
27
|
chartType,
|
|
28
28
|
xProperty,
|
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
|
|