@caraer/client 2.0.470 → 2.0.471
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
|
@@ -2214,8 +2214,8 @@ export const EventRsvpRequestScopeEnum = {
|
|
|
2214
2214
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2215
2215
|
|
|
2216
2216
|
export interface ExistingWidgetSummary {
|
|
2217
|
-
'yproperty'?: string;
|
|
2218
2217
|
'xproperty'?: string;
|
|
2218
|
+
'yproperty'?: string;
|
|
2219
2219
|
'ymetric'?: string;
|
|
2220
2220
|
'title'?: string;
|
|
2221
2221
|
'chartType'?: string;
|
|
@@ -5191,8 +5191,8 @@ export interface SettingField {
|
|
|
5191
5191
|
'hidden'?: boolean;
|
|
5192
5192
|
'disabled'?: boolean;
|
|
5193
5193
|
'options'?: Array<SettingOption>;
|
|
5194
|
-
'value'?: any;
|
|
5195
5194
|
'defaultValue'?: any;
|
|
5195
|
+
'value'?: any;
|
|
5196
5196
|
}
|
|
5197
5197
|
|
|
5198
5198
|
export const SettingFieldTypeEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -2192,8 +2192,8 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2192
2192
|
};
|
|
2193
2193
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2194
2194
|
export interface ExistingWidgetSummary {
|
|
2195
|
-
'yproperty'?: string;
|
|
2196
2195
|
'xproperty'?: string;
|
|
2196
|
+
'yproperty'?: string;
|
|
2197
2197
|
'ymetric'?: string;
|
|
2198
2198
|
'title'?: string;
|
|
2199
2199
|
'chartType'?: string;
|
|
@@ -5223,8 +5223,8 @@ export interface SettingField {
|
|
|
5223
5223
|
'hidden'?: boolean;
|
|
5224
5224
|
'disabled'?: boolean;
|
|
5225
5225
|
'options'?: Array<SettingOption>;
|
|
5226
|
-
'value'?: any;
|
|
5227
5226
|
'defaultValue'?: any;
|
|
5227
|
+
'value'?: any;
|
|
5228
5228
|
}
|
|
5229
5229
|
export declare const SettingFieldTypeEnum: {
|
|
5230
5230
|
readonly String: "STRING";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2192,8 +2192,8 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2192
2192
|
};
|
|
2193
2193
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2194
2194
|
export interface ExistingWidgetSummary {
|
|
2195
|
-
'yproperty'?: string;
|
|
2196
2195
|
'xproperty'?: string;
|
|
2196
|
+
'yproperty'?: string;
|
|
2197
2197
|
'ymetric'?: string;
|
|
2198
2198
|
'title'?: string;
|
|
2199
2199
|
'chartType'?: string;
|
|
@@ -5223,8 +5223,8 @@ export interface SettingField {
|
|
|
5223
5223
|
'hidden'?: boolean;
|
|
5224
5224
|
'disabled'?: boolean;
|
|
5225
5225
|
'options'?: Array<SettingOption>;
|
|
5226
|
-
'value'?: any;
|
|
5227
5226
|
'defaultValue'?: any;
|
|
5227
|
+
'value'?: any;
|
|
5228
5228
|
}
|
|
5229
5229
|
export declare const SettingFieldTypeEnum: {
|
|
5230
5230
|
readonly String: "STRING";
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**yproperty** | **string** | | [optional] [default to undefined]
|
|
9
8
|
**xproperty** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**yproperty** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**ymetric** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**title** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**chartType** | **string** | | [optional] [default to undefined]
|
|
@@ -20,8 +20,8 @@ Name | Type | Description | Notes
|
|
|
20
20
|
import { ExistingWidgetSummary } from '@caraer/client';
|
|
21
21
|
|
|
22
22
|
const instance: ExistingWidgetSummary = {
|
|
23
|
-
yproperty,
|
|
24
23
|
xproperty,
|
|
24
|
+
yproperty,
|
|
25
25
|
ymetric,
|
|
26
26
|
title,
|
|
27
27
|
chartType,
|
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
|
|