@caraer/client 2.0.394 → 2.0.396
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/.openapi-generator/FILES +1 -0
- package/api.ts +8 -2
- package/dist/api.d.ts +8 -2
- package/dist/esm/api.d.ts +8 -2
- package/docs/AppSettingCondition.md +24 -0
- package/docs/AppSettingFieldSchema.md +2 -0
- package/docs/ExistingWidgetSummary.md +2 -2
- package/docs/SettingField.md +2 -2
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
package/api.ts
CHANGED
|
@@ -1017,6 +1017,11 @@ export interface AppScheduleDTO {
|
|
|
1017
1017
|
'payloadTemplate'?: string;
|
|
1018
1018
|
'serverlessFunction'?: ServerlessFunctionRefDTO;
|
|
1019
1019
|
}
|
|
1020
|
+
export interface AppSettingCondition {
|
|
1021
|
+
'field'?: string;
|
|
1022
|
+
'operator'?: string;
|
|
1023
|
+
'value'?: any;
|
|
1024
|
+
}
|
|
1020
1025
|
export interface AppSettingFieldMappingStructure {
|
|
1021
1026
|
'objectName'?: string;
|
|
1022
1027
|
'items'?: Array<AppSettingFieldMappingStructureItem>;
|
|
@@ -1040,6 +1045,7 @@ export interface AppSettingFieldSchema {
|
|
|
1040
1045
|
'optionsSource'?: AppSettingOptionsSource;
|
|
1041
1046
|
'defaultValue'?: any;
|
|
1042
1047
|
'hidden'?: boolean;
|
|
1048
|
+
'visibleWhen'?: Array<AppSettingCondition>;
|
|
1043
1049
|
'value'?: any;
|
|
1044
1050
|
'hasValue'?: boolean;
|
|
1045
1051
|
'mappingValue'?: AppSettingFieldMappingStructure;
|
|
@@ -2221,9 +2227,9 @@ export const EventRsvpRequestScopeEnum = {
|
|
|
2221
2227
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2222
2228
|
|
|
2223
2229
|
export interface ExistingWidgetSummary {
|
|
2230
|
+
'xproperty'?: string;
|
|
2224
2231
|
'ymetric'?: string;
|
|
2225
2232
|
'yproperty'?: string;
|
|
2226
|
-
'xproperty'?: string;
|
|
2227
2233
|
'title'?: string;
|
|
2228
2234
|
'chartType'?: string;
|
|
2229
2235
|
'xProperty'?: string;
|
|
@@ -4474,8 +4480,8 @@ export interface SettingField {
|
|
|
4474
4480
|
'hidden'?: boolean;
|
|
4475
4481
|
'disabled'?: boolean;
|
|
4476
4482
|
'options'?: Array<SettingOption>;
|
|
4477
|
-
'value'?: any;
|
|
4478
4483
|
'defaultValue'?: any;
|
|
4484
|
+
'value'?: any;
|
|
4479
4485
|
}
|
|
4480
4486
|
|
|
4481
4487
|
export const SettingFieldTypeEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -1007,6 +1007,11 @@ export interface AppScheduleDTO {
|
|
|
1007
1007
|
'payloadTemplate'?: string;
|
|
1008
1008
|
'serverlessFunction'?: ServerlessFunctionRefDTO;
|
|
1009
1009
|
}
|
|
1010
|
+
export interface AppSettingCondition {
|
|
1011
|
+
'field'?: string;
|
|
1012
|
+
'operator'?: string;
|
|
1013
|
+
'value'?: any;
|
|
1014
|
+
}
|
|
1010
1015
|
export interface AppSettingFieldMappingStructure {
|
|
1011
1016
|
'objectName'?: string;
|
|
1012
1017
|
'items'?: Array<AppSettingFieldMappingStructureItem>;
|
|
@@ -1030,6 +1035,7 @@ export interface AppSettingFieldSchema {
|
|
|
1030
1035
|
'optionsSource'?: AppSettingOptionsSource;
|
|
1031
1036
|
'defaultValue'?: any;
|
|
1032
1037
|
'hidden'?: boolean;
|
|
1038
|
+
'visibleWhen'?: Array<AppSettingCondition>;
|
|
1033
1039
|
'value'?: any;
|
|
1034
1040
|
'hasValue'?: boolean;
|
|
1035
1041
|
'mappingValue'?: AppSettingFieldMappingStructure;
|
|
@@ -2200,9 +2206,9 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2200
2206
|
};
|
|
2201
2207
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2202
2208
|
export interface ExistingWidgetSummary {
|
|
2209
|
+
'xproperty'?: string;
|
|
2203
2210
|
'ymetric'?: string;
|
|
2204
2211
|
'yproperty'?: string;
|
|
2205
|
-
'xproperty'?: string;
|
|
2206
2212
|
'title'?: string;
|
|
2207
2213
|
'chartType'?: string;
|
|
2208
2214
|
'xProperty'?: string;
|
|
@@ -4497,8 +4503,8 @@ export interface SettingField {
|
|
|
4497
4503
|
'hidden'?: boolean;
|
|
4498
4504
|
'disabled'?: boolean;
|
|
4499
4505
|
'options'?: Array<SettingOption>;
|
|
4500
|
-
'value'?: any;
|
|
4501
4506
|
'defaultValue'?: any;
|
|
4507
|
+
'value'?: any;
|
|
4502
4508
|
}
|
|
4503
4509
|
export declare const SettingFieldTypeEnum: {
|
|
4504
4510
|
readonly String: "STRING";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1007,6 +1007,11 @@ export interface AppScheduleDTO {
|
|
|
1007
1007
|
'payloadTemplate'?: string;
|
|
1008
1008
|
'serverlessFunction'?: ServerlessFunctionRefDTO;
|
|
1009
1009
|
}
|
|
1010
|
+
export interface AppSettingCondition {
|
|
1011
|
+
'field'?: string;
|
|
1012
|
+
'operator'?: string;
|
|
1013
|
+
'value'?: any;
|
|
1014
|
+
}
|
|
1010
1015
|
export interface AppSettingFieldMappingStructure {
|
|
1011
1016
|
'objectName'?: string;
|
|
1012
1017
|
'items'?: Array<AppSettingFieldMappingStructureItem>;
|
|
@@ -1030,6 +1035,7 @@ export interface AppSettingFieldSchema {
|
|
|
1030
1035
|
'optionsSource'?: AppSettingOptionsSource;
|
|
1031
1036
|
'defaultValue'?: any;
|
|
1032
1037
|
'hidden'?: boolean;
|
|
1038
|
+
'visibleWhen'?: Array<AppSettingCondition>;
|
|
1033
1039
|
'value'?: any;
|
|
1034
1040
|
'hasValue'?: boolean;
|
|
1035
1041
|
'mappingValue'?: AppSettingFieldMappingStructure;
|
|
@@ -2200,9 +2206,9 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2200
2206
|
};
|
|
2201
2207
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2202
2208
|
export interface ExistingWidgetSummary {
|
|
2209
|
+
'xproperty'?: string;
|
|
2203
2210
|
'ymetric'?: string;
|
|
2204
2211
|
'yproperty'?: string;
|
|
2205
|
-
'xproperty'?: string;
|
|
2206
2212
|
'title'?: string;
|
|
2207
2213
|
'chartType'?: string;
|
|
2208
2214
|
'xProperty'?: string;
|
|
@@ -4497,8 +4503,8 @@ export interface SettingField {
|
|
|
4497
4503
|
'hidden'?: boolean;
|
|
4498
4504
|
'disabled'?: boolean;
|
|
4499
4505
|
'options'?: Array<SettingOption>;
|
|
4500
|
-
'value'?: any;
|
|
4501
4506
|
'defaultValue'?: any;
|
|
4507
|
+
'value'?: any;
|
|
4502
4508
|
}
|
|
4503
4509
|
export declare const SettingFieldTypeEnum: {
|
|
4504
4510
|
readonly String: "STRING";
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# AppSettingCondition
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**field** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**operator** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**value** | **any** | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { AppSettingCondition } from '@caraer/client';
|
|
16
|
+
|
|
17
|
+
const instance: AppSettingCondition = {
|
|
18
|
+
field,
|
|
19
|
+
operator,
|
|
20
|
+
value,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**optionsSource** | [**AppSettingOptionsSource**](AppSettingOptionsSource.md) | | [optional] [default to undefined]
|
|
15
15
|
**defaultValue** | **any** | | [optional] [default to undefined]
|
|
16
16
|
**hidden** | **boolean** | | [optional] [default to undefined]
|
|
17
|
+
**visibleWhen** | [**Array<AppSettingCondition>**](AppSettingCondition.md) | | [optional] [default to undefined]
|
|
17
18
|
**value** | **any** | | [optional] [default to undefined]
|
|
18
19
|
**hasValue** | **boolean** | | [optional] [default to undefined]
|
|
19
20
|
**mappingValue** | [**AppSettingFieldMappingStructure**](AppSettingFieldMappingStructure.md) | | [optional] [default to undefined]
|
|
@@ -34,6 +35,7 @@ const instance: AppSettingFieldSchema = {
|
|
|
34
35
|
optionsSource,
|
|
35
36
|
defaultValue,
|
|
36
37
|
hidden,
|
|
38
|
+
visibleWhen,
|
|
37
39
|
value,
|
|
38
40
|
hasValue,
|
|
39
41
|
mappingValue,
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**xproperty** | **string** | | [optional] [default to undefined]
|
|
8
9
|
**ymetric** | **string** | | [optional] [default to undefined]
|
|
9
10
|
**yproperty** | **string** | | [optional] [default to undefined]
|
|
10
|
-
**xproperty** | **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
|
+
xproperty,
|
|
23
24
|
ymetric,
|
|
24
25
|
yproperty,
|
|
25
|
-
xproperty,
|
|
26
26
|
title,
|
|
27
27
|
chartType,
|
|
28
28
|
xProperty,
|
package/docs/SettingField.md
CHANGED
|
@@ -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<SettingOption>**](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
|
|