@caraer/client 2.0.383 → 2.0.385
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
|
@@ -2219,8 +2219,8 @@ export const EventRsvpRequestScopeEnum = {
|
|
|
2219
2219
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2220
2220
|
|
|
2221
2221
|
export interface ExistingWidgetSummary {
|
|
2222
|
-
'ymetric'?: string;
|
|
2223
2222
|
'xproperty'?: string;
|
|
2223
|
+
'ymetric'?: string;
|
|
2224
2224
|
'yproperty'?: string;
|
|
2225
2225
|
'title'?: string;
|
|
2226
2226
|
'chartType'?: string;
|
|
@@ -4472,8 +4472,8 @@ export interface SettingField {
|
|
|
4472
4472
|
'hidden'?: boolean;
|
|
4473
4473
|
'disabled'?: boolean;
|
|
4474
4474
|
'options'?: Array<SettingOption>;
|
|
4475
|
-
'defaultValue'?: any;
|
|
4476
4475
|
'value'?: any;
|
|
4476
|
+
'defaultValue'?: any;
|
|
4477
4477
|
}
|
|
4478
4478
|
|
|
4479
4479
|
export const SettingFieldTypeEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -2198,8 +2198,8 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2198
2198
|
};
|
|
2199
2199
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2200
2200
|
export interface ExistingWidgetSummary {
|
|
2201
|
-
'ymetric'?: string;
|
|
2202
2201
|
'xproperty'?: string;
|
|
2202
|
+
'ymetric'?: string;
|
|
2203
2203
|
'yproperty'?: string;
|
|
2204
2204
|
'title'?: string;
|
|
2205
2205
|
'chartType'?: string;
|
|
@@ -4495,8 +4495,8 @@ export interface SettingField {
|
|
|
4495
4495
|
'hidden'?: boolean;
|
|
4496
4496
|
'disabled'?: boolean;
|
|
4497
4497
|
'options'?: Array<SettingOption>;
|
|
4498
|
-
'defaultValue'?: any;
|
|
4499
4498
|
'value'?: any;
|
|
4499
|
+
'defaultValue'?: any;
|
|
4500
4500
|
}
|
|
4501
4501
|
export declare const SettingFieldTypeEnum: {
|
|
4502
4502
|
readonly String: "STRING";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2198,8 +2198,8 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2198
2198
|
};
|
|
2199
2199
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2200
2200
|
export interface ExistingWidgetSummary {
|
|
2201
|
-
'ymetric'?: string;
|
|
2202
2201
|
'xproperty'?: string;
|
|
2202
|
+
'ymetric'?: string;
|
|
2203
2203
|
'yproperty'?: string;
|
|
2204
2204
|
'title'?: string;
|
|
2205
2205
|
'chartType'?: string;
|
|
@@ -4495,8 +4495,8 @@ export interface SettingField {
|
|
|
4495
4495
|
'hidden'?: boolean;
|
|
4496
4496
|
'disabled'?: boolean;
|
|
4497
4497
|
'options'?: Array<SettingOption>;
|
|
4498
|
-
'defaultValue'?: any;
|
|
4499
4498
|
'value'?: any;
|
|
4499
|
+
'defaultValue'?: any;
|
|
4500
4500
|
}
|
|
4501
4501
|
export declare const SettingFieldTypeEnum: {
|
|
4502
4502
|
readonly String: "STRING";
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**ymetric** | **string** | | [optional] [default to undefined]
|
|
9
8
|
**xproperty** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**ymetric** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**yproperty** | **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
|
-
ymetric,
|
|
24
23
|
xproperty,
|
|
24
|
+
ymetric,
|
|
25
25
|
yproperty,
|
|
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
|
-
**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
|
|