@caraer/client 2.0.401 → 2.0.403
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 +7 -3
- package/dist/api.d.ts +7 -3
- package/dist/esm/api.d.ts +7 -3
- package/docs/ExistingWidgetSummary.md +2 -2
- package/docs/Record.md +2 -2
- package/docs/SettingField.md +2 -2
- package/docs/SubscribeWebhookDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2236,8 +2236,8 @@ export const EventRsvpRequestScopeEnum = {
|
|
|
2236
2236
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2237
2237
|
|
|
2238
2238
|
export interface ExistingWidgetSummary {
|
|
2239
|
-
'yproperty'?: string;
|
|
2240
2239
|
'xproperty'?: string;
|
|
2240
|
+
'yproperty'?: string;
|
|
2241
2241
|
'ymetric'?: string;
|
|
2242
2242
|
'title'?: string;
|
|
2243
2243
|
'chartType'?: string;
|
|
@@ -2982,9 +2982,9 @@ export interface ModelRecord {
|
|
|
2982
2982
|
'deleted'?: boolean;
|
|
2983
2983
|
'complete'?: boolean;
|
|
2984
2984
|
'uuid': string;
|
|
2985
|
-
'user'?: PublicUserDTO;
|
|
2986
2985
|
'properties'?: Array<FilledProperty>;
|
|
2987
2986
|
'objects'?: { [key: string]: any | null; };
|
|
2987
|
+
'user'?: PublicUserDTO;
|
|
2988
2988
|
}
|
|
2989
2989
|
export interface MultiLine extends PropertyFormat {
|
|
2990
2990
|
}
|
|
@@ -4497,8 +4497,8 @@ export interface SettingField {
|
|
|
4497
4497
|
'hidden'?: boolean;
|
|
4498
4498
|
'disabled'?: boolean;
|
|
4499
4499
|
'options'?: Array<SettingOption>;
|
|
4500
|
-
'value'?: any;
|
|
4501
4500
|
'defaultValue'?: any;
|
|
4501
|
+
'value'?: any;
|
|
4502
4502
|
}
|
|
4503
4503
|
|
|
4504
4504
|
export const SettingFieldTypeEnum = {
|
|
@@ -5110,6 +5110,10 @@ export interface SubscribeWebhookDTO {
|
|
|
5110
5110
|
* Delivery mode for this webhook: HTTP (use url) or SERVERLESS (use serverlessFunctionUuid). If omitted, legacy behavior applies based on presence of url/serverlessFunctionUuid.
|
|
5111
5111
|
*/
|
|
5112
5112
|
'deliveryMode'?: string;
|
|
5113
|
+
/**
|
|
5114
|
+
* When true, install or settings save waits for this lifecycle hook to finish and returns the settings it wrote.
|
|
5115
|
+
*/
|
|
5116
|
+
'waitUntilComplete'?: boolean;
|
|
5113
5117
|
/**
|
|
5114
5118
|
* The secret used for webhook validation.
|
|
5115
5119
|
*/
|
package/dist/api.d.ts
CHANGED
|
@@ -2215,8 +2215,8 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2215
2215
|
};
|
|
2216
2216
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2217
2217
|
export interface ExistingWidgetSummary {
|
|
2218
|
-
'yproperty'?: string;
|
|
2219
2218
|
'xproperty'?: string;
|
|
2219
|
+
'yproperty'?: string;
|
|
2220
2220
|
'ymetric'?: string;
|
|
2221
2221
|
'title'?: string;
|
|
2222
2222
|
'chartType'?: string;
|
|
@@ -2975,11 +2975,11 @@ export interface ModelRecord {
|
|
|
2975
2975
|
'deleted'?: boolean;
|
|
2976
2976
|
'complete'?: boolean;
|
|
2977
2977
|
'uuid': string;
|
|
2978
|
-
'user'?: PublicUserDTO;
|
|
2979
2978
|
'properties'?: Array<FilledProperty>;
|
|
2980
2979
|
'objects'?: {
|
|
2981
2980
|
[key: string]: any | null;
|
|
2982
2981
|
};
|
|
2982
|
+
'user'?: PublicUserDTO;
|
|
2983
2983
|
}
|
|
2984
2984
|
export interface MultiLine extends PropertyFormat {
|
|
2985
2985
|
}
|
|
@@ -4520,8 +4520,8 @@ export interface SettingField {
|
|
|
4520
4520
|
'hidden'?: boolean;
|
|
4521
4521
|
'disabled'?: boolean;
|
|
4522
4522
|
'options'?: Array<SettingOption>;
|
|
4523
|
-
'value'?: any;
|
|
4524
4523
|
'defaultValue'?: any;
|
|
4524
|
+
'value'?: any;
|
|
4525
4525
|
}
|
|
4526
4526
|
export declare const SettingFieldTypeEnum: {
|
|
4527
4527
|
readonly String: "STRING";
|
|
@@ -5129,6 +5129,10 @@ export interface SubscribeWebhookDTO {
|
|
|
5129
5129
|
* Delivery mode for this webhook: HTTP (use url) or SERVERLESS (use serverlessFunctionUuid). If omitted, legacy behavior applies based on presence of url/serverlessFunctionUuid.
|
|
5130
5130
|
*/
|
|
5131
5131
|
'deliveryMode'?: string;
|
|
5132
|
+
/**
|
|
5133
|
+
* When true, install or settings save waits for this lifecycle hook to finish and returns the settings it wrote.
|
|
5134
|
+
*/
|
|
5135
|
+
'waitUntilComplete'?: boolean;
|
|
5132
5136
|
/**
|
|
5133
5137
|
* The secret used for webhook validation.
|
|
5134
5138
|
*/
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2215,8 +2215,8 @@ export declare const EventRsvpRequestScopeEnum: {
|
|
|
2215
2215
|
};
|
|
2216
2216
|
export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
|
|
2217
2217
|
export interface ExistingWidgetSummary {
|
|
2218
|
-
'yproperty'?: string;
|
|
2219
2218
|
'xproperty'?: string;
|
|
2219
|
+
'yproperty'?: string;
|
|
2220
2220
|
'ymetric'?: string;
|
|
2221
2221
|
'title'?: string;
|
|
2222
2222
|
'chartType'?: string;
|
|
@@ -2975,11 +2975,11 @@ export interface ModelRecord {
|
|
|
2975
2975
|
'deleted'?: boolean;
|
|
2976
2976
|
'complete'?: boolean;
|
|
2977
2977
|
'uuid': string;
|
|
2978
|
-
'user'?: PublicUserDTO;
|
|
2979
2978
|
'properties'?: Array<FilledProperty>;
|
|
2980
2979
|
'objects'?: {
|
|
2981
2980
|
[key: string]: any | null;
|
|
2982
2981
|
};
|
|
2982
|
+
'user'?: PublicUserDTO;
|
|
2983
2983
|
}
|
|
2984
2984
|
export interface MultiLine extends PropertyFormat {
|
|
2985
2985
|
}
|
|
@@ -4520,8 +4520,8 @@ export interface SettingField {
|
|
|
4520
4520
|
'hidden'?: boolean;
|
|
4521
4521
|
'disabled'?: boolean;
|
|
4522
4522
|
'options'?: Array<SettingOption>;
|
|
4523
|
-
'value'?: any;
|
|
4524
4523
|
'defaultValue'?: any;
|
|
4524
|
+
'value'?: any;
|
|
4525
4525
|
}
|
|
4526
4526
|
export declare const SettingFieldTypeEnum: {
|
|
4527
4527
|
readonly String: "STRING";
|
|
@@ -5129,6 +5129,10 @@ export interface SubscribeWebhookDTO {
|
|
|
5129
5129
|
* Delivery mode for this webhook: HTTP (use url) or SERVERLESS (use serverlessFunctionUuid). If omitted, legacy behavior applies based on presence of url/serverlessFunctionUuid.
|
|
5130
5130
|
*/
|
|
5131
5131
|
'deliveryMode'?: string;
|
|
5132
|
+
/**
|
|
5133
|
+
* When true, install or settings save waits for this lifecycle hook to finish and returns the settings it wrote.
|
|
5134
|
+
*/
|
|
5135
|
+
'waitUntilComplete'?: boolean;
|
|
5132
5136
|
/**
|
|
5133
5137
|
* The secret used for webhook validation.
|
|
5134
5138
|
*/
|
|
@@ -5,8 +5,8 @@
|
|
|
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]
|
|
9
|
+
**yproperty** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**ymetric** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**title** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**chartType** | **string** | | [optional] [default to undefined]
|
|
@@ -20,8 +20,8 @@ Name | Type | Description | Notes
|
|
|
20
20
|
import { ExistingWidgetSummary } from '@caraer/client';
|
|
21
21
|
|
|
22
22
|
const instance: ExistingWidgetSummary = {
|
|
23
|
-
yproperty,
|
|
24
23
|
xproperty,
|
|
24
|
+
yproperty,
|
|
25
25
|
ymetric,
|
|
26
26
|
title,
|
|
27
27
|
chartType,
|
package/docs/Record.md
CHANGED
|
@@ -17,9 +17,9 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**deleted** | **boolean** | | [optional] [default to undefined]
|
|
18
18
|
**complete** | **boolean** | | [optional] [default to undefined]
|
|
19
19
|
**uuid** | **string** | | [default to undefined]
|
|
20
|
-
**user** | [**PublicUserDTO**](PublicUserDTO.md) | | [optional] [default to undefined]
|
|
21
20
|
**properties** | [**Array<FilledProperty>**](FilledProperty.md) | | [optional] [default to undefined]
|
|
22
21
|
**objects** | **{ [key: string]: any | null; }** | | [optional] [default to undefined]
|
|
22
|
+
**user** | [**PublicUserDTO**](PublicUserDTO.md) | | [optional] [default to undefined]
|
|
23
23
|
|
|
24
24
|
## Example
|
|
25
25
|
|
|
@@ -39,9 +39,9 @@ const instance: ModelRecord = {
|
|
|
39
39
|
deleted,
|
|
40
40
|
complete,
|
|
41
41
|
uuid,
|
|
42
|
-
user,
|
|
43
42
|
properties,
|
|
44
43
|
objects,
|
|
44
|
+
user,
|
|
45
45
|
};
|
|
46
46
|
```
|
|
47
47
|
|
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
|
|
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**url** | **string** | The URL of the webhook where requests will be sent. | [optional] [default to undefined]
|
|
10
10
|
**serverlessFunction** | [**ServerlessFunctionDTO**](ServerlessFunctionDTO.md) | UUID of the serverless function to invoke when the webhook is triggered (must belong to the same app). | [optional] [default to undefined]
|
|
11
11
|
**deliveryMode** | **string** | Delivery mode for this webhook: HTTP (use url) or SERVERLESS (use serverlessFunctionUuid). If omitted, legacy behavior applies based on presence of url/serverlessFunctionUuid. | [optional] [default to undefined]
|
|
12
|
+
**waitUntilComplete** | **boolean** | When true, install or settings save waits for this lifecycle hook to finish and returns the settings it wrote. | [optional] [default to undefined]
|
|
12
13
|
**secret** | **string** | The secret used for webhook validation. | [optional] [default to undefined]
|
|
13
14
|
**topic** | **string** | The topic for which the webhook is subscribed. | [optional] [default to undefined]
|
|
14
15
|
**description** | **string** | Optional human-readable description for this webhook | [optional] [default to undefined]
|
|
@@ -46,6 +47,7 @@ const instance: SubscribeWebhookDTO = {
|
|
|
46
47
|
url,
|
|
47
48
|
serverlessFunction,
|
|
48
49
|
deliveryMode,
|
|
50
|
+
waitUntilComplete,
|
|
49
51
|
secret,
|
|
50
52
|
topic,
|
|
51
53
|
description,
|