@vrplatform/api 1.3.0-stage.1153 → 1.3.0-stage.1154
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
|
@@ -1996,7 +1996,7 @@ export interface paths {
|
|
|
1996
1996
|
path?: never;
|
|
1997
1997
|
cookie?: never;
|
|
1998
1998
|
};
|
|
1999
|
-
/** @description List flow mapping entry for a specific key */
|
|
1999
|
+
/** @description List flow mapping entry for a specific key or get a specific mapping entry by sourceId */
|
|
2000
2000
|
get: operations["getFlowMapping"];
|
|
2001
2001
|
put?: never;
|
|
2002
2002
|
/** @description Create, update or delete a flow mapping entry */
|
|
@@ -2059,6 +2059,23 @@ export interface paths {
|
|
|
2059
2059
|
patch?: never;
|
|
2060
2060
|
trace?: never;
|
|
2061
2061
|
};
|
|
2062
|
+
"/flows/{id}/{connectionId}/settings/{settingKey}/options": {
|
|
2063
|
+
parameters: {
|
|
2064
|
+
query?: never;
|
|
2065
|
+
header?: never;
|
|
2066
|
+
path?: never;
|
|
2067
|
+
cookie?: never;
|
|
2068
|
+
};
|
|
2069
|
+
/** @description List available options for a flow setting */
|
|
2070
|
+
get: operations["getFlowSettingOptions"];
|
|
2071
|
+
put?: never;
|
|
2072
|
+
post?: never;
|
|
2073
|
+
delete?: never;
|
|
2074
|
+
options?: never;
|
|
2075
|
+
head?: never;
|
|
2076
|
+
patch?: never;
|
|
2077
|
+
trace?: never;
|
|
2078
|
+
};
|
|
2062
2079
|
}
|
|
2063
2080
|
export type webhooks = Record<string, never>;
|
|
2064
2081
|
export interface components {
|
|
@@ -24770,8 +24787,8 @@ export interface operations {
|
|
|
24770
24787
|
};
|
|
24771
24788
|
getFlowMapping: {
|
|
24772
24789
|
parameters: {
|
|
24773
|
-
query
|
|
24774
|
-
sourceId
|
|
24790
|
+
query?: {
|
|
24791
|
+
sourceId?: string;
|
|
24775
24792
|
limit?: number;
|
|
24776
24793
|
page?: number;
|
|
24777
24794
|
};
|
|
@@ -25131,9 +25148,7 @@ export interface operations {
|
|
|
25131
25148
|
};
|
|
25132
25149
|
getFlowSetting: {
|
|
25133
25150
|
parameters: {
|
|
25134
|
-
query?:
|
|
25135
|
-
search?: string;
|
|
25136
|
-
};
|
|
25151
|
+
query?: never;
|
|
25137
25152
|
header?: {
|
|
25138
25153
|
"X-Team-Id"?: string;
|
|
25139
25154
|
};
|
|
@@ -25289,4 +25304,93 @@ export interface operations {
|
|
|
25289
25304
|
};
|
|
25290
25305
|
};
|
|
25291
25306
|
};
|
|
25307
|
+
getFlowSettingOptions: {
|
|
25308
|
+
parameters: {
|
|
25309
|
+
query?: {
|
|
25310
|
+
search?: string;
|
|
25311
|
+
limit?: number;
|
|
25312
|
+
page?: number;
|
|
25313
|
+
};
|
|
25314
|
+
header?: {
|
|
25315
|
+
"X-Team-Id"?: string;
|
|
25316
|
+
};
|
|
25317
|
+
path: {
|
|
25318
|
+
id: string;
|
|
25319
|
+
connectionId: string;
|
|
25320
|
+
settingKey: string;
|
|
25321
|
+
};
|
|
25322
|
+
cookie?: never;
|
|
25323
|
+
};
|
|
25324
|
+
requestBody?: never;
|
|
25325
|
+
responses: {
|
|
25326
|
+
/** @description Successful response */
|
|
25327
|
+
200: {
|
|
25328
|
+
headers: {
|
|
25329
|
+
[name: string]: unknown;
|
|
25330
|
+
};
|
|
25331
|
+
content: {
|
|
25332
|
+
"application/json": {
|
|
25333
|
+
data: {
|
|
25334
|
+
id: string;
|
|
25335
|
+
name: string;
|
|
25336
|
+
}[];
|
|
25337
|
+
pagination: {
|
|
25338
|
+
/** @default 100 */
|
|
25339
|
+
limit: number;
|
|
25340
|
+
/** @default 1 */
|
|
25341
|
+
page: number;
|
|
25342
|
+
total: number;
|
|
25343
|
+
totalPage: number;
|
|
25344
|
+
nextPage?: number;
|
|
25345
|
+
};
|
|
25346
|
+
};
|
|
25347
|
+
};
|
|
25348
|
+
};
|
|
25349
|
+
/** @description Invalid input data */
|
|
25350
|
+
400: {
|
|
25351
|
+
headers: {
|
|
25352
|
+
[name: string]: unknown;
|
|
25353
|
+
};
|
|
25354
|
+
content: {
|
|
25355
|
+
"application/json": components["schemas"]["error.BAD_REQUEST"];
|
|
25356
|
+
};
|
|
25357
|
+
};
|
|
25358
|
+
/** @description Authorization not provided */
|
|
25359
|
+
401: {
|
|
25360
|
+
headers: {
|
|
25361
|
+
[name: string]: unknown;
|
|
25362
|
+
};
|
|
25363
|
+
content: {
|
|
25364
|
+
"application/json": components["schemas"]["error.UNAUTHORIZED"];
|
|
25365
|
+
};
|
|
25366
|
+
};
|
|
25367
|
+
/** @description Insufficient access */
|
|
25368
|
+
403: {
|
|
25369
|
+
headers: {
|
|
25370
|
+
[name: string]: unknown;
|
|
25371
|
+
};
|
|
25372
|
+
content: {
|
|
25373
|
+
"application/json": components["schemas"]["error.FORBIDDEN"];
|
|
25374
|
+
};
|
|
25375
|
+
};
|
|
25376
|
+
/** @description Not found */
|
|
25377
|
+
404: {
|
|
25378
|
+
headers: {
|
|
25379
|
+
[name: string]: unknown;
|
|
25380
|
+
};
|
|
25381
|
+
content: {
|
|
25382
|
+
"application/json": components["schemas"]["error.NOT_FOUND"];
|
|
25383
|
+
};
|
|
25384
|
+
};
|
|
25385
|
+
/** @description Internal server error */
|
|
25386
|
+
500: {
|
|
25387
|
+
headers: {
|
|
25388
|
+
[name: string]: unknown;
|
|
25389
|
+
};
|
|
25390
|
+
content: {
|
|
25391
|
+
"application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
|
|
25392
|
+
};
|
|
25393
|
+
};
|
|
25394
|
+
};
|
|
25395
|
+
};
|
|
25292
25396
|
}
|