@caraer/client 2.0.399 → 2.0.401

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 CHANGED
@@ -2236,9 +2236,9 @@ export const EventRsvpRequestScopeEnum = {
2236
2236
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2237
2237
 
2238
2238
  export interface ExistingWidgetSummary {
2239
+ 'yproperty'?: string;
2239
2240
  'xproperty'?: string;
2240
2241
  'ymetric'?: string;
2241
- 'yproperty'?: string;
2242
2242
  'title'?: string;
2243
2243
  'chartType'?: string;
2244
2244
  'xProperty'?: string;
@@ -4497,8 +4497,8 @@ export interface SettingField {
4497
4497
  'hidden'?: boolean;
4498
4498
  'disabled'?: boolean;
4499
4499
  'options'?: Array<SettingOption>;
4500
- 'defaultValue'?: any;
4501
4500
  'value'?: any;
4501
+ 'defaultValue'?: any;
4502
4502
  }
4503
4503
 
4504
4504
  export const SettingFieldTypeEnum = {
package/dist/api.d.ts CHANGED
@@ -2215,9 +2215,9 @@ export declare const EventRsvpRequestScopeEnum: {
2215
2215
  };
2216
2216
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2217
2217
  export interface ExistingWidgetSummary {
2218
+ 'yproperty'?: string;
2218
2219
  'xproperty'?: string;
2219
2220
  'ymetric'?: string;
2220
- 'yproperty'?: string;
2221
2221
  'title'?: string;
2222
2222
  'chartType'?: string;
2223
2223
  'xProperty'?: string;
@@ -4520,8 +4520,8 @@ export interface SettingField {
4520
4520
  'hidden'?: boolean;
4521
4521
  'disabled'?: boolean;
4522
4522
  'options'?: Array<SettingOption>;
4523
- 'defaultValue'?: any;
4524
4523
  'value'?: any;
4524
+ 'defaultValue'?: any;
4525
4525
  }
4526
4526
  export declare const SettingFieldTypeEnum: {
4527
4527
  readonly String: "STRING";
package/dist/esm/api.d.ts CHANGED
@@ -2215,9 +2215,9 @@ export declare const EventRsvpRequestScopeEnum: {
2215
2215
  };
2216
2216
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2217
2217
  export interface ExistingWidgetSummary {
2218
+ 'yproperty'?: string;
2218
2219
  'xproperty'?: string;
2219
2220
  'ymetric'?: string;
2220
- 'yproperty'?: string;
2221
2221
  'title'?: string;
2222
2222
  'chartType'?: string;
2223
2223
  'xProperty'?: string;
@@ -4520,8 +4520,8 @@ export interface SettingField {
4520
4520
  'hidden'?: boolean;
4521
4521
  'disabled'?: boolean;
4522
4522
  'options'?: Array<SettingOption>;
4523
- 'defaultValue'?: any;
4524
4523
  'value'?: any;
4524
+ 'defaultValue'?: any;
4525
4525
  }
4526
4526
  export declare const SettingFieldTypeEnum: {
4527
4527
  readonly String: "STRING";
@@ -5,9 +5,9 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
+ **yproperty** | **string** | | [optional] [default to undefined]
8
9
  **xproperty** | **string** | | [optional] [default to undefined]
9
10
  **ymetric** | **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,
23
24
  xproperty,
24
25
  ymetric,
25
- yproperty,
26
26
  title,
27
27
  chartType,
28
28
  xProperty,
@@ -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&lt;SettingOption&gt;**](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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caraer/client",
3
- "version": "2.0.399",
3
+ "version": "2.0.401",
4
4
  "description": "Generated TypeScript client for the Caraer API",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {