@caraer/client 2.0.394 → 2.0.395
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
|
@@ -2222,8 +2222,8 @@ export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof t
|
|
|
2222
2222
|
|
|
2223
2223
|
export interface ExistingWidgetSummary {
|
|
2224
2224
|
'ymetric'?: string;
|
|
2225
|
-
'yproperty'?: string;
|
|
2226
2225
|
'xproperty'?: string;
|
|
2226
|
+
'yproperty'?: string;
|
|
2227
2227
|
'title'?: string;
|
|
2228
2228
|
'chartType'?: string;
|
|
2229
2229
|
'xProperty'?: string;
|
|
@@ -2959,9 +2959,9 @@ export interface ModelRecord {
|
|
|
2959
2959
|
'deleted'?: boolean;
|
|
2960
2960
|
'complete'?: boolean;
|
|
2961
2961
|
'uuid': string;
|
|
2962
|
+
'user'?: PublicUserDTO;
|
|
2962
2963
|
'properties'?: Array<FilledProperty>;
|
|
2963
2964
|
'objects'?: { [key: string]: any | null; };
|
|
2964
|
-
'user'?: PublicUserDTO;
|
|
2965
2965
|
}
|
|
2966
2966
|
export interface MultiLine extends PropertyFormat {
|
|
2967
2967
|
}
|
package/dist/api.d.ts
CHANGED
|
@@ -2201,8 +2201,8 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2201
2201
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2202
2202
|
export interface ExistingWidgetSummary {
|
|
2203
2203
|
'ymetric'?: string;
|
|
2204
|
-
'yproperty'?: string;
|
|
2205
2204
|
'xproperty'?: string;
|
|
2205
|
+
'yproperty'?: string;
|
|
2206
2206
|
'title'?: string;
|
|
2207
2207
|
'chartType'?: string;
|
|
2208
2208
|
'xProperty'?: string;
|
|
@@ -2952,11 +2952,11 @@ export interface ModelRecord {
|
|
|
2952
2952
|
'deleted'?: boolean;
|
|
2953
2953
|
'complete'?: boolean;
|
|
2954
2954
|
'uuid': string;
|
|
2955
|
+
'user'?: PublicUserDTO;
|
|
2955
2956
|
'properties'?: Array<FilledProperty>;
|
|
2956
2957
|
'objects'?: {
|
|
2957
2958
|
[key: string]: any | null;
|
|
2958
2959
|
};
|
|
2959
|
-
'user'?: PublicUserDTO;
|
|
2960
2960
|
}
|
|
2961
2961
|
export interface MultiLine extends PropertyFormat {
|
|
2962
2962
|
}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2201,8 +2201,8 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2201
2201
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2202
2202
|
export interface ExistingWidgetSummary {
|
|
2203
2203
|
'ymetric'?: string;
|
|
2204
|
-
'yproperty'?: string;
|
|
2205
2204
|
'xproperty'?: string;
|
|
2205
|
+
'yproperty'?: string;
|
|
2206
2206
|
'title'?: string;
|
|
2207
2207
|
'chartType'?: string;
|
|
2208
2208
|
'xProperty'?: string;
|
|
@@ -2952,11 +2952,11 @@ export interface ModelRecord {
|
|
|
2952
2952
|
'deleted'?: boolean;
|
|
2953
2953
|
'complete'?: boolean;
|
|
2954
2954
|
'uuid': string;
|
|
2955
|
+
'user'?: PublicUserDTO;
|
|
2955
2956
|
'properties'?: Array<FilledProperty>;
|
|
2956
2957
|
'objects'?: {
|
|
2957
2958
|
[key: string]: any | null;
|
|
2958
2959
|
};
|
|
2959
|
-
'user'?: PublicUserDTO;
|
|
2960
2960
|
}
|
|
2961
2961
|
export interface MultiLine extends PropertyFormat {
|
|
2962
2962
|
}
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**ymetric** | **string** | | [optional] [default to undefined]
|
|
9
|
-
**yproperty** | **string** | | [optional] [default to undefined]
|
|
10
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]
|
|
@@ -21,8 +21,8 @@ import { ExistingWidgetSummary } from '@caraer/client';
|
|
|
21
21
|
|
|
22
22
|
const instance: ExistingWidgetSummary = {
|
|
23
23
|
ymetric,
|
|
24
|
-
yproperty,
|
|
25
24
|
xproperty,
|
|
25
|
+
yproperty,
|
|
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]
|
|
20
21
|
**properties** | [**Array<FilledProperty>**](FilledProperty.md) | | [optional] [default to undefined]
|
|
21
22
|
**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,
|
|
42
43
|
properties,
|
|
43
44
|
objects,
|
|
44
|
-
user,
|
|
45
45
|
};
|
|
46
46
|
```
|
|
47
47
|
|