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