@caraer/client 2.0.475 → 2.0.477
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 +4 -4
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2215,9 +2215,9 @@ export const EventRsvpRequestScopeEnum = {
|
|
|
2215
2215
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2216
2216
|
|
|
2217
2217
|
export interface ExistingWidgetSummary {
|
|
2218
|
-
'yproperty'?: string;
|
|
2219
|
-
'xproperty'?: string;
|
|
2220
2218
|
'ymetric'?: string;
|
|
2219
|
+
'xproperty'?: string;
|
|
2220
|
+
'yproperty'?: string;
|
|
2221
2221
|
'title'?: string;
|
|
2222
2222
|
'chartType'?: string;
|
|
2223
2223
|
'xProperty'?: string;
|
package/dist/api.d.ts
CHANGED
|
@@ -2193,9 +2193,9 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2193
2193
|
};
|
|
2194
2194
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2195
2195
|
export interface ExistingWidgetSummary {
|
|
2196
|
-
'yproperty'?: string;
|
|
2197
|
-
'xproperty'?: string;
|
|
2198
2196
|
'ymetric'?: string;
|
|
2197
|
+
'xproperty'?: string;
|
|
2198
|
+
'yproperty'?: string;
|
|
2199
2199
|
'title'?: string;
|
|
2200
2200
|
'chartType'?: string;
|
|
2201
2201
|
'xProperty'?: string;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2193,9 +2193,9 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2193
2193
|
};
|
|
2194
2194
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2195
2195
|
export interface ExistingWidgetSummary {
|
|
2196
|
-
'yproperty'?: string;
|
|
2197
|
-
'xproperty'?: string;
|
|
2198
2196
|
'ymetric'?: string;
|
|
2197
|
+
'xproperty'?: string;
|
|
2198
|
+
'yproperty'?: string;
|
|
2199
2199
|
'title'?: string;
|
|
2200
2200
|
'chartType'?: string;
|
|
2201
2201
|
'xProperty'?: string;
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**yproperty** | **string** | | [optional] [default to undefined]
|
|
9
|
-
**xproperty** | **string** | | [optional] [default to undefined]
|
|
10
8
|
**ymetric** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**xproperty** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**yproperty** | **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
|
-
yproperty,
|
|
24
|
-
xproperty,
|
|
25
23
|
ymetric,
|
|
24
|
+
xproperty,
|
|
25
|
+
yproperty,
|
|
26
26
|
title,
|
|
27
27
|
chartType,
|
|
28
28
|
xProperty,
|