@caraer/client 2.0.471 → 2.0.473

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
@@ -973,6 +973,7 @@ export interface AppSettingFieldSchema {
973
973
  'actionSource'?: AppSettingActionSource;
974
974
  'defaultValue'?: any;
975
975
  'hidden'?: boolean;
976
+ 'filterTraits'?: Array<string>;
976
977
  'visibleWhen'?: Array<AppSettingCondition>;
977
978
  'value'?: any;
978
979
  'hasValue'?: boolean;
@@ -2214,9 +2215,9 @@ export const EventRsvpRequestScopeEnum = {
2214
2215
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2215
2216
 
2216
2217
  export interface ExistingWidgetSummary {
2218
+ 'ymetric'?: string;
2217
2219
  'xproperty'?: string;
2218
2220
  'yproperty'?: string;
2219
- 'ymetric'?: string;
2220
2221
  'title'?: string;
2221
2222
  'chartType'?: string;
2222
2223
  'xProperty'?: string;
@@ -5191,8 +5192,8 @@ export interface SettingField {
5191
5192
  'hidden'?: boolean;
5192
5193
  'disabled'?: boolean;
5193
5194
  'options'?: Array<SettingOption>;
5194
- 'defaultValue'?: any;
5195
5195
  'value'?: any;
5196
+ 'defaultValue'?: any;
5196
5197
  }
5197
5198
 
5198
5199
  export const SettingFieldTypeEnum = {
package/dist/api.d.ts CHANGED
@@ -963,6 +963,7 @@ export interface AppSettingFieldSchema {
963
963
  'actionSource'?: AppSettingActionSource;
964
964
  'defaultValue'?: any;
965
965
  'hidden'?: boolean;
966
+ 'filterTraits'?: Array<string>;
966
967
  'visibleWhen'?: Array<AppSettingCondition>;
967
968
  'value'?: any;
968
969
  'hasValue'?: boolean;
@@ -2192,9 +2193,9 @@ export declare const EventRsvpRequestScopeEnum: {
2192
2193
  };
2193
2194
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2194
2195
  export interface ExistingWidgetSummary {
2196
+ 'ymetric'?: string;
2195
2197
  'xproperty'?: string;
2196
2198
  'yproperty'?: string;
2197
- 'ymetric'?: string;
2198
2199
  'title'?: string;
2199
2200
  'chartType'?: string;
2200
2201
  'xProperty'?: string;
@@ -5223,8 +5224,8 @@ export interface SettingField {
5223
5224
  'hidden'?: boolean;
5224
5225
  'disabled'?: boolean;
5225
5226
  'options'?: Array<SettingOption>;
5226
- 'defaultValue'?: any;
5227
5227
  'value'?: any;
5228
+ 'defaultValue'?: any;
5228
5229
  }
5229
5230
  export declare const SettingFieldTypeEnum: {
5230
5231
  readonly String: "STRING";
package/dist/esm/api.d.ts CHANGED
@@ -963,6 +963,7 @@ export interface AppSettingFieldSchema {
963
963
  'actionSource'?: AppSettingActionSource;
964
964
  'defaultValue'?: any;
965
965
  'hidden'?: boolean;
966
+ 'filterTraits'?: Array<string>;
966
967
  'visibleWhen'?: Array<AppSettingCondition>;
967
968
  'value'?: any;
968
969
  'hasValue'?: boolean;
@@ -2192,9 +2193,9 @@ export declare const EventRsvpRequestScopeEnum: {
2192
2193
  };
2193
2194
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2194
2195
  export interface ExistingWidgetSummary {
2196
+ 'ymetric'?: string;
2195
2197
  'xproperty'?: string;
2196
2198
  'yproperty'?: string;
2197
- 'ymetric'?: string;
2198
2199
  'title'?: string;
2199
2200
  'chartType'?: string;
2200
2201
  'xProperty'?: string;
@@ -5223,8 +5224,8 @@ export interface SettingField {
5223
5224
  'hidden'?: boolean;
5224
5225
  'disabled'?: boolean;
5225
5226
  'options'?: Array<SettingOption>;
5226
- 'defaultValue'?: any;
5227
5227
  'value'?: any;
5228
+ 'defaultValue'?: any;
5228
5229
  }
5229
5230
  export declare const SettingFieldTypeEnum: {
5230
5231
  readonly String: "STRING";
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
  **actionSource** | [**AppSettingActionSource**](AppSettingActionSource.md) | | [optional] [default to undefined]
16
16
  **defaultValue** | **any** | | [optional] [default to undefined]
17
17
  **hidden** | **boolean** | | [optional] [default to undefined]
18
+ **filterTraits** | **Array&lt;string&gt;** | | [optional] [default to undefined]
18
19
  **visibleWhen** | [**Array&lt;AppSettingCondition&gt;**](AppSettingCondition.md) | | [optional] [default to undefined]
19
20
  **value** | **any** | | [optional] [default to undefined]
20
21
  **hasValue** | **boolean** | | [optional] [default to undefined]
@@ -38,6 +39,7 @@ const instance: AppSettingFieldSchema = {
38
39
  actionSource,
39
40
  defaultValue,
40
41
  hidden,
42
+ filterTraits,
41
43
  visibleWhen,
42
44
  value,
43
45
  hasValue,
@@ -5,9 +5,9 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
+ **ymetric** | **string** | | [optional] [default to undefined]
8
9
  **xproperty** | **string** | | [optional] [default to undefined]
9
10
  **yproperty** | **string** | | [optional] [default to undefined]
10
- **ymetric** | **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
+ ymetric,
23
24
  xproperty,
24
25
  yproperty,
25
- ymetric,
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.471",
3
+ "version": "2.0.473",
4
4
  "description": "Generated TypeScript client for the Caraer API",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {