@vrplatform/api 1.3.1-stage.2459 → 1.3.1-stage.2461
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/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -807,8 +807,7 @@ export interface paths {
|
|
|
807
807
|
};
|
|
808
808
|
/** @description Get flow configuration for a connection */
|
|
809
809
|
get: operations["getFlowConnection"];
|
|
810
|
-
|
|
811
|
-
put: operations["setFlowStatus"];
|
|
810
|
+
put?: never;
|
|
812
811
|
post?: never;
|
|
813
812
|
delete?: never;
|
|
814
813
|
options?: never;
|
|
@@ -13049,150 +13048,6 @@ export interface operations {
|
|
|
13049
13048
|
connectionId: string;
|
|
13050
13049
|
title: string;
|
|
13051
13050
|
description: string | null;
|
|
13052
|
-
/** @enum {string} */
|
|
13053
|
-
status: "active" | "inactive";
|
|
13054
|
-
settings: {
|
|
13055
|
-
/** Format: uuid */
|
|
13056
|
-
id: string;
|
|
13057
|
-
/** Format: uuid */
|
|
13058
|
-
flowId: string;
|
|
13059
|
-
/** Format: uuid */
|
|
13060
|
-
connectionId: string;
|
|
13061
|
-
settingKey: string;
|
|
13062
|
-
title: string | null;
|
|
13063
|
-
description: string | null;
|
|
13064
|
-
type?: ("listing" | "account" | "bank_account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_boolean" | "value_percentage" | "value_string" | "value_currency" | "value_date") | null;
|
|
13065
|
-
filter: string | null;
|
|
13066
|
-
/** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
|
|
13067
|
-
value: {
|
|
13068
|
-
id: string | number;
|
|
13069
|
-
name: string;
|
|
13070
|
-
/**
|
|
13071
|
-
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
13072
|
-
* @enum {string}
|
|
13073
|
-
*/
|
|
13074
|
-
type: "listing" | "account" | "bank_account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_boolean" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
13075
|
-
};
|
|
13076
|
-
}[];
|
|
13077
|
-
};
|
|
13078
|
-
};
|
|
13079
|
-
};
|
|
13080
|
-
/** @description Bad request */
|
|
13081
|
-
400: {
|
|
13082
|
-
headers: {
|
|
13083
|
-
[name: string]: unknown;
|
|
13084
|
-
};
|
|
13085
|
-
content: {
|
|
13086
|
-
"application/json": {
|
|
13087
|
-
code: string;
|
|
13088
|
-
message: string;
|
|
13089
|
-
issues?: {
|
|
13090
|
-
message: string;
|
|
13091
|
-
}[];
|
|
13092
|
-
context?: unknown;
|
|
13093
|
-
};
|
|
13094
|
-
};
|
|
13095
|
-
};
|
|
13096
|
-
/** @description Unauthorized */
|
|
13097
|
-
401: {
|
|
13098
|
-
headers: {
|
|
13099
|
-
[name: string]: unknown;
|
|
13100
|
-
};
|
|
13101
|
-
content: {
|
|
13102
|
-
"application/json": {
|
|
13103
|
-
code: string;
|
|
13104
|
-
message: string;
|
|
13105
|
-
issues?: {
|
|
13106
|
-
message: string;
|
|
13107
|
-
}[];
|
|
13108
|
-
context?: unknown;
|
|
13109
|
-
};
|
|
13110
|
-
};
|
|
13111
|
-
};
|
|
13112
|
-
/** @description Forbidden */
|
|
13113
|
-
403: {
|
|
13114
|
-
headers: {
|
|
13115
|
-
[name: string]: unknown;
|
|
13116
|
-
};
|
|
13117
|
-
content: {
|
|
13118
|
-
"application/json": {
|
|
13119
|
-
code: string;
|
|
13120
|
-
message: string;
|
|
13121
|
-
issues?: {
|
|
13122
|
-
message: string;
|
|
13123
|
-
}[];
|
|
13124
|
-
context?: unknown;
|
|
13125
|
-
};
|
|
13126
|
-
};
|
|
13127
|
-
};
|
|
13128
|
-
/** @description Not found */
|
|
13129
|
-
404: {
|
|
13130
|
-
headers: {
|
|
13131
|
-
[name: string]: unknown;
|
|
13132
|
-
};
|
|
13133
|
-
content: {
|
|
13134
|
-
"application/json": {
|
|
13135
|
-
code: string;
|
|
13136
|
-
message: string;
|
|
13137
|
-
issues?: {
|
|
13138
|
-
message: string;
|
|
13139
|
-
}[];
|
|
13140
|
-
context?: unknown;
|
|
13141
|
-
};
|
|
13142
|
-
};
|
|
13143
|
-
};
|
|
13144
|
-
/** @description Internal server error */
|
|
13145
|
-
500: {
|
|
13146
|
-
headers: {
|
|
13147
|
-
[name: string]: unknown;
|
|
13148
|
-
};
|
|
13149
|
-
content: {
|
|
13150
|
-
"application/json": {
|
|
13151
|
-
code: string;
|
|
13152
|
-
message: string;
|
|
13153
|
-
issues?: {
|
|
13154
|
-
message: string;
|
|
13155
|
-
}[];
|
|
13156
|
-
context?: unknown;
|
|
13157
|
-
};
|
|
13158
|
-
};
|
|
13159
|
-
};
|
|
13160
|
-
};
|
|
13161
|
-
};
|
|
13162
|
-
setFlowStatus: {
|
|
13163
|
-
parameters: {
|
|
13164
|
-
query?: never;
|
|
13165
|
-
header?: never;
|
|
13166
|
-
path: {
|
|
13167
|
-
id: string;
|
|
13168
|
-
connectionId: string;
|
|
13169
|
-
};
|
|
13170
|
-
cookie?: never;
|
|
13171
|
-
};
|
|
13172
|
-
requestBody?: {
|
|
13173
|
-
content: {
|
|
13174
|
-
"application/json": {
|
|
13175
|
-
/** @enum {string} */
|
|
13176
|
-
status: "active" | "inactive";
|
|
13177
|
-
};
|
|
13178
|
-
};
|
|
13179
|
-
};
|
|
13180
|
-
responses: {
|
|
13181
|
-
/** @description Successful response */
|
|
13182
|
-
200: {
|
|
13183
|
-
headers: {
|
|
13184
|
-
[name: string]: unknown;
|
|
13185
|
-
};
|
|
13186
|
-
content: {
|
|
13187
|
-
"application/json": {
|
|
13188
|
-
/** Format: uuid */
|
|
13189
|
-
id: string;
|
|
13190
|
-
/** Format: uuid */
|
|
13191
|
-
connectionId: string;
|
|
13192
|
-
title: string;
|
|
13193
|
-
description: string | null;
|
|
13194
|
-
/** @enum {string} */
|
|
13195
|
-
status: "active" | "inactive";
|
|
13196
13051
|
settings: {
|
|
13197
13052
|
/** Format: uuid */
|
|
13198
13053
|
id: string;
|