@caraer/client 2.0.410 → 2.0.412
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/Record.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2451,9 +2451,9 @@ export const EventRsvpRequestScopeEnum = {
|
|
|
2451
2451
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2452
2452
|
|
|
2453
2453
|
export interface ExistingWidgetSummary {
|
|
2454
|
-
'xproperty'?: string;
|
|
2455
2454
|
'ymetric'?: string;
|
|
2456
2455
|
'yproperty'?: string;
|
|
2456
|
+
'xproperty'?: string;
|
|
2457
2457
|
'title'?: string;
|
|
2458
2458
|
'chartType'?: string;
|
|
2459
2459
|
'xProperty'?: string;
|
|
@@ -3221,9 +3221,9 @@ export interface ModelRecord {
|
|
|
3221
3221
|
'deleted'?: boolean;
|
|
3222
3222
|
'complete'?: boolean;
|
|
3223
3223
|
'uuid': string;
|
|
3224
|
-
'user'?: PublicUserDTO;
|
|
3225
3224
|
'properties'?: Array<FilledProperty>;
|
|
3226
3225
|
'objects'?: { [key: string]: any | null; };
|
|
3226
|
+
'user'?: PublicUserDTO;
|
|
3227
3227
|
}
|
|
3228
3228
|
export interface MultiLine extends PropertyFormat {
|
|
3229
3229
|
}
|
package/dist/api.d.ts
CHANGED
|
@@ -2434,9 +2434,9 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2434
2434
|
};
|
|
2435
2435
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2436
2436
|
export interface ExistingWidgetSummary {
|
|
2437
|
-
'xproperty'?: string;
|
|
2438
2437
|
'ymetric'?: string;
|
|
2439
2438
|
'yproperty'?: string;
|
|
2439
|
+
'xproperty'?: string;
|
|
2440
2440
|
'title'?: string;
|
|
2441
2441
|
'chartType'?: string;
|
|
2442
2442
|
'xProperty'?: string;
|
|
@@ -3218,11 +3218,11 @@ export interface ModelRecord {
|
|
|
3218
3218
|
'deleted'?: boolean;
|
|
3219
3219
|
'complete'?: boolean;
|
|
3220
3220
|
'uuid': string;
|
|
3221
|
-
'user'?: PublicUserDTO;
|
|
3222
3221
|
'properties'?: Array<FilledProperty>;
|
|
3223
3222
|
'objects'?: {
|
|
3224
3223
|
[key: string]: any | null;
|
|
3225
3224
|
};
|
|
3225
|
+
'user'?: PublicUserDTO;
|
|
3226
3226
|
}
|
|
3227
3227
|
export interface MultiLine extends PropertyFormat {
|
|
3228
3228
|
}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2434,9 +2434,9 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2434
2434
|
};
|
|
2435
2435
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2436
2436
|
export interface ExistingWidgetSummary {
|
|
2437
|
-
'xproperty'?: string;
|
|
2438
2437
|
'ymetric'?: string;
|
|
2439
2438
|
'yproperty'?: string;
|
|
2439
|
+
'xproperty'?: string;
|
|
2440
2440
|
'title'?: string;
|
|
2441
2441
|
'chartType'?: string;
|
|
2442
2442
|
'xProperty'?: string;
|
|
@@ -3218,11 +3218,11 @@ export interface ModelRecord {
|
|
|
3218
3218
|
'deleted'?: boolean;
|
|
3219
3219
|
'complete'?: boolean;
|
|
3220
3220
|
'uuid': string;
|
|
3221
|
-
'user'?: PublicUserDTO;
|
|
3222
3221
|
'properties'?: Array<FilledProperty>;
|
|
3223
3222
|
'objects'?: {
|
|
3224
3223
|
[key: string]: any | null;
|
|
3225
3224
|
};
|
|
3225
|
+
'user'?: PublicUserDTO;
|
|
3226
3226
|
}
|
|
3227
3227
|
export interface MultiLine extends PropertyFormat {
|
|
3228
3228
|
}
|
|
@@ -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/Record.md
CHANGED
|
@@ -17,9 +17,9 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**deleted** | **boolean** | | [optional] [default to undefined]
|
|
18
18
|
**complete** | **boolean** | | [optional] [default to undefined]
|
|
19
19
|
**uuid** | **string** | | [default to undefined]
|
|
20
|
-
**user** | [**PublicUserDTO**](PublicUserDTO.md) | | [optional] [default to undefined]
|
|
21
20
|
**properties** | [**Array<FilledProperty>**](FilledProperty.md) | | [optional] [default to undefined]
|
|
22
21
|
**objects** | **{ [key: string]: any | null; }** | | [optional] [default to undefined]
|
|
22
|
+
**user** | [**PublicUserDTO**](PublicUserDTO.md) | | [optional] [default to undefined]
|
|
23
23
|
|
|
24
24
|
## Example
|
|
25
25
|
|
|
@@ -39,9 +39,9 @@ const instance: ModelRecord = {
|
|
|
39
39
|
deleted,
|
|
40
40
|
complete,
|
|
41
41
|
uuid,
|
|
42
|
-
user,
|
|
43
42
|
properties,
|
|
44
43
|
objects,
|
|
44
|
+
user,
|
|
45
45
|
};
|
|
46
46
|
```
|
|
47
47
|
|