@caraer/client 2.0.422 → 2.0.423

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
@@ -455,7 +455,7 @@ export interface AppDTO {
455
455
  */
456
456
  'privateApp'?: boolean;
457
457
  /**
458
- * Whether to hide the API token field in app settings UI. Defaults to true when omitted.
458
+ * Whether to hide the API token field in marketplace installer UI. Defaults to true when omitted. Private apps show the key regardless.
459
459
  */
460
460
  'hideApiKeyField'?: boolean;
461
461
  /**
@@ -2097,9 +2097,9 @@ export const EventRsvpRequestScopeEnum = {
2097
2097
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2098
2098
 
2099
2099
  export interface ExistingWidgetSummary {
2100
- 'yproperty'?: string;
2101
2100
  'xproperty'?: string;
2102
2101
  'ymetric'?: string;
2102
+ 'yproperty'?: string;
2103
2103
  'title'?: string;
2104
2104
  'chartType'?: string;
2105
2105
  'xProperty'?: string;
@@ -4374,8 +4374,8 @@ export interface SettingField {
4374
4374
  'hidden'?: boolean;
4375
4375
  'disabled'?: boolean;
4376
4376
  'options'?: Array<SettingOption>;
4377
- 'value'?: any;
4378
4377
  'defaultValue'?: any;
4378
+ 'value'?: any;
4379
4379
  }
4380
4380
 
4381
4381
  export const SettingFieldTypeEnum = {
package/dist/api.d.ts CHANGED
@@ -448,7 +448,7 @@ export interface AppDTO {
448
448
  */
449
449
  'privateApp'?: boolean;
450
450
  /**
451
- * Whether to hide the API token field in app settings UI. Defaults to true when omitted.
451
+ * Whether to hide the API token field in marketplace installer UI. Defaults to true when omitted. Private apps show the key regardless.
452
452
  */
453
453
  'hideApiKeyField'?: boolean;
454
454
  /**
@@ -2076,9 +2076,9 @@ export declare const EventRsvpRequestScopeEnum: {
2076
2076
  };
2077
2077
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2078
2078
  export interface ExistingWidgetSummary {
2079
- 'yproperty'?: string;
2080
2079
  'xproperty'?: string;
2081
2080
  'ymetric'?: string;
2081
+ 'yproperty'?: string;
2082
2082
  'title'?: string;
2083
2083
  'chartType'?: string;
2084
2084
  'xProperty'?: string;
@@ -4397,8 +4397,8 @@ export interface SettingField {
4397
4397
  'hidden'?: boolean;
4398
4398
  'disabled'?: boolean;
4399
4399
  'options'?: Array<SettingOption>;
4400
- 'value'?: any;
4401
4400
  'defaultValue'?: any;
4401
+ 'value'?: any;
4402
4402
  }
4403
4403
  export declare const SettingFieldTypeEnum: {
4404
4404
  readonly String: "STRING";
package/dist/esm/api.d.ts CHANGED
@@ -448,7 +448,7 @@ export interface AppDTO {
448
448
  */
449
449
  'privateApp'?: boolean;
450
450
  /**
451
- * Whether to hide the API token field in app settings UI. Defaults to true when omitted.
451
+ * Whether to hide the API token field in marketplace installer UI. Defaults to true when omitted. Private apps show the key regardless.
452
452
  */
453
453
  'hideApiKeyField'?: boolean;
454
454
  /**
@@ -2076,9 +2076,9 @@ export declare const EventRsvpRequestScopeEnum: {
2076
2076
  };
2077
2077
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2078
2078
  export interface ExistingWidgetSummary {
2079
- 'yproperty'?: string;
2080
2079
  'xproperty'?: string;
2081
2080
  'ymetric'?: string;
2081
+ 'yproperty'?: string;
2082
2082
  'title'?: string;
2083
2083
  'chartType'?: string;
2084
2084
  'xProperty'?: string;
@@ -4397,8 +4397,8 @@ export interface SettingField {
4397
4397
  'hidden'?: boolean;
4398
4398
  'disabled'?: boolean;
4399
4399
  'options'?: Array<SettingOption>;
4400
- 'value'?: any;
4401
4400
  'defaultValue'?: any;
4401
+ 'value'?: any;
4402
4402
  }
4403
4403
  export declare const SettingFieldTypeEnum: {
4404
4404
  readonly String: "STRING";
package/docs/AppDTO.md CHANGED
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
17
17
  **deletedBy** | [**ModelRecord**](ModelRecord.md) | Identifier of the user who deleted the entity | [optional] [default to undefined]
18
18
  **index** | **number** | Index number for ordering entities | [optional] [default to undefined]
19
19
  **privateApp** | **boolean** | Indicates whether this app is private (only available to the creator\&#39;s company) | [optional] [default to undefined]
20
- **hideApiKeyField** | **boolean** | Whether to hide the API token field in app settings UI. Defaults to true when omitted. | [optional] [default to undefined]
20
+ **hideApiKeyField** | **boolean** | Whether to hide the API token field in marketplace installer UI. Defaults to true when omitted. Private apps show the key regardless. | [optional] [default to undefined]
21
21
  **details** | [**AppDetailsDTO**](AppDetailsDTO.md) | Additional details and specifications about the application | [optional] [default to undefined]
22
22
  **appBars** | [**Array&lt;AppBarDTO&gt;**](AppBarDTO.md) | App bars (location-specific configuration and actions) | [optional] [default to undefined]
23
23
  **serverlessFunctions** | [**Array&lt;ServerlessFunctionDTO&gt;**](ServerlessFunctionDTO.md) | Serverless functions owned by this app | [optional] [default to undefined]
@@ -5,9 +5,9 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **yproperty** | **string** | | [optional] [default to undefined]
9
8
  **xproperty** | **string** | | [optional] [default to undefined]
10
9
  **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,
24
23
  xproperty,
25
24
  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
- **value** | **any** | | [optional] [default to undefined]
18
17
  **defaultValue** | **any** | | [optional] [default to undefined]
18
+ **value** | **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
- value,
36
35
  defaultValue,
36
+ value,
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.422",
3
+ "version": "2.0.423",
4
4
  "description": "Generated TypeScript client for the Caraer API",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {