@vrplatform/api 1.3.0-stage.1153 → 1.3.0-stage.1155

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
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.0-stage.1153",
6
+ "version": "1.3.0-stage.1155",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -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 {
@@ -2349,8 +2366,6 @@ export interface components {
2349
2366
  total: number;
2350
2367
  values: components["schemas"]["ProfitAndLossValueCell"][];
2351
2368
  };
2352
- /** @description Collection of settings returned by GET routes with normalized { id, name, type } value payloads. */
2353
- FlowSettingItemsGet: components["schemas"]["FlowSettingItemGet"][];
2354
2369
  /** @description Setting representation returned from GET routes with normalized { id, name, type } value payload. */
2355
2370
  FlowSettingItemGet: {
2356
2371
  /** Format: uuid */
@@ -24557,7 +24572,7 @@ export interface operations {
24557
24572
  description: string | null;
24558
24573
  /** @enum {string} */
24559
24574
  status: "active" | "inactive";
24560
- settings: components["schemas"]["FlowSettingItemsGet"];
24575
+ settings: components["schemas"]["FlowSettingItemGet"][];
24561
24576
  };
24562
24577
  };
24563
24578
  };
@@ -24644,7 +24659,7 @@ export interface operations {
24644
24659
  description: string | null;
24645
24660
  /** @enum {string} */
24646
24661
  status: "active" | "inactive";
24647
- settings: components["schemas"]["FlowSettingItemsGet"];
24662
+ settings: components["schemas"]["FlowSettingItemGet"][];
24648
24663
  };
24649
24664
  };
24650
24665
  };
@@ -24770,8 +24785,8 @@ export interface operations {
24770
24785
  };
24771
24786
  getFlowMapping: {
24772
24787
  parameters: {
24773
- query: {
24774
- sourceId: string;
24788
+ query?: {
24789
+ sourceId?: string;
24775
24790
  limit?: number;
24776
24791
  page?: number;
24777
24792
  };
@@ -25131,9 +25146,7 @@ export interface operations {
25131
25146
  };
25132
25147
  getFlowSetting: {
25133
25148
  parameters: {
25134
- query?: {
25135
- search?: string;
25136
- };
25149
+ query?: never;
25137
25150
  header?: {
25138
25151
  "X-Team-Id"?: string;
25139
25152
  };
@@ -25289,4 +25302,93 @@ export interface operations {
25289
25302
  };
25290
25303
  };
25291
25304
  };
25305
+ getFlowSettingOptions: {
25306
+ parameters: {
25307
+ query?: {
25308
+ search?: string;
25309
+ limit?: number;
25310
+ page?: number;
25311
+ };
25312
+ header?: {
25313
+ "X-Team-Id"?: string;
25314
+ };
25315
+ path: {
25316
+ id: string;
25317
+ connectionId: string;
25318
+ settingKey: string;
25319
+ };
25320
+ cookie?: never;
25321
+ };
25322
+ requestBody?: never;
25323
+ responses: {
25324
+ /** @description Successful response */
25325
+ 200: {
25326
+ headers: {
25327
+ [name: string]: unknown;
25328
+ };
25329
+ content: {
25330
+ "application/json": {
25331
+ data: {
25332
+ id: string;
25333
+ name: string;
25334
+ }[];
25335
+ pagination: {
25336
+ /** @default 100 */
25337
+ limit: number;
25338
+ /** @default 1 */
25339
+ page: number;
25340
+ total: number;
25341
+ totalPage: number;
25342
+ nextPage?: number;
25343
+ };
25344
+ };
25345
+ };
25346
+ };
25347
+ /** @description Invalid input data */
25348
+ 400: {
25349
+ headers: {
25350
+ [name: string]: unknown;
25351
+ };
25352
+ content: {
25353
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
25354
+ };
25355
+ };
25356
+ /** @description Authorization not provided */
25357
+ 401: {
25358
+ headers: {
25359
+ [name: string]: unknown;
25360
+ };
25361
+ content: {
25362
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
25363
+ };
25364
+ };
25365
+ /** @description Insufficient access */
25366
+ 403: {
25367
+ headers: {
25368
+ [name: string]: unknown;
25369
+ };
25370
+ content: {
25371
+ "application/json": components["schemas"]["error.FORBIDDEN"];
25372
+ };
25373
+ };
25374
+ /** @description Not found */
25375
+ 404: {
25376
+ headers: {
25377
+ [name: string]: unknown;
25378
+ };
25379
+ content: {
25380
+ "application/json": components["schemas"]["error.NOT_FOUND"];
25381
+ };
25382
+ };
25383
+ /** @description Internal server error */
25384
+ 500: {
25385
+ headers: {
25386
+ [name: string]: unknown;
25387
+ };
25388
+ content: {
25389
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
25390
+ };
25391
+ };
25392
+ };
25393
+ };
25292
25394
  }