@caraer/client 2.0.422 → 2.0.424
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/AppDTO.md +1 -1
- package/docs/ExistingWidgetSummary.md +2 -2
- package/package.json +1 -1
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
|
|
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
|
+
'ymetric'?: string;
|
|
2100
2101
|
'yproperty'?: string;
|
|
2101
2102
|
'xproperty'?: string;
|
|
2102
|
-
'ymetric'?: string;
|
|
2103
2103
|
'title'?: string;
|
|
2104
2104
|
'chartType'?: string;
|
|
2105
2105
|
'xProperty'?: string;
|
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
|
|
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
|
+
'ymetric'?: string;
|
|
2079
2080
|
'yproperty'?: string;
|
|
2080
2081
|
'xproperty'?: string;
|
|
2081
|
-
'ymetric'?: string;
|
|
2082
2082
|
'title'?: string;
|
|
2083
2083
|
'chartType'?: string;
|
|
2084
2084
|
'xProperty'?: 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
|
|
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
|
+
'ymetric'?: string;
|
|
2079
2080
|
'yproperty'?: string;
|
|
2080
2081
|
'xproperty'?: string;
|
|
2081
|
-
'ymetric'?: string;
|
|
2082
2082
|
'title'?: string;
|
|
2083
2083
|
'chartType'?: string;
|
|
2084
2084
|
'xProperty'?: 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\'s company) | [optional] [default to undefined]
|
|
20
|
-
**hideApiKeyField** | **boolean** | Whether to hide the API token field in
|
|
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<AppBarDTO>**](AppBarDTO.md) | App bars (location-specific configuration and actions) | [optional] [default to undefined]
|
|
23
23
|
**serverlessFunctions** | [**Array<ServerlessFunctionDTO>**](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
|
+
**ymetric** | **string** | | [optional] [default to undefined]
|
|
8
9
|
**yproperty** | **string** | | [optional] [default to undefined]
|
|
9
10
|
**xproperty** | **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
|
yproperty,
|
|
24
25
|
xproperty,
|
|
25
|
-
ymetric,
|
|
26
26
|
title,
|
|
27
27
|
chartType,
|
|
28
28
|
xProperty,
|