@vrplatform/api 1.3.1-stage.2406 → 1.3.1-stage.2408

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.1-stage.2406",
6
+ "version": "1.3.1-stage.2408",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -279,6 +279,23 @@ export interface paths {
279
279
  patch?: never;
280
280
  trace?: never;
281
281
  };
282
+ "/bank-accounts": {
283
+ parameters: {
284
+ query?: never;
285
+ header?: never;
286
+ path?: never;
287
+ cookie?: never;
288
+ };
289
+ /** @description List bank accounts for the current team */
290
+ get: operations["getBankAccounts"];
291
+ put?: never;
292
+ post?: never;
293
+ delete?: never;
294
+ options?: never;
295
+ head?: never;
296
+ patch?: never;
297
+ trace?: never;
298
+ };
282
299
  "/bank-accounts/batch": {
283
300
  parameters: {
284
301
  query?: never;
@@ -6918,6 +6935,148 @@ export interface operations {
6918
6935
  };
6919
6936
  };
6920
6937
  };
6938
+ getBankAccounts: {
6939
+ parameters: {
6940
+ query?: {
6941
+ status?: "active" | "inactive";
6942
+ connectionId?: string;
6943
+ search?: string;
6944
+ };
6945
+ header?: never;
6946
+ path?: never;
6947
+ cookie?: never;
6948
+ };
6949
+ requestBody?: never;
6950
+ responses: {
6951
+ /** @description Successful response */
6952
+ 200: {
6953
+ headers: {
6954
+ [name: string]: unknown;
6955
+ };
6956
+ content: {
6957
+ "application/json": {
6958
+ data: {
6959
+ /** Format: uuid */
6960
+ id: string;
6961
+ name?: string | null;
6962
+ type?: ("deposit" | "creditCard") | null;
6963
+ category?: ("trust" | "operating" | "external") | null;
6964
+ uniqueRef?: string | null;
6965
+ currency?: string | null;
6966
+ lastDigits?: string | null;
6967
+ /** @enum {string} */
6968
+ status: "active" | "inactive";
6969
+ startDate?: string | null;
6970
+ account?: {
6971
+ id: string;
6972
+ name: string;
6973
+ uniqueRef?: string | null;
6974
+ /** @enum {string} */
6975
+ status: "active" | "inactive";
6976
+ } | null;
6977
+ connection?: {
6978
+ /** Format: uuid */
6979
+ id: string;
6980
+ name: string;
6981
+ /** @enum {string} */
6982
+ status: "active" | "inactive";
6983
+ uniqueRef?: string | null;
6984
+ appId: string;
6985
+ } | null;
6986
+ source?: {
6987
+ /** Format: uuid */
6988
+ id: string;
6989
+ type: string;
6990
+ status?: ("active" | "inactive") | null;
6991
+ appId?: string | null;
6992
+ appIcon?: string | null;
6993
+ } | null;
6994
+ }[];
6995
+ };
6996
+ };
6997
+ };
6998
+ /** @description Bad request */
6999
+ 400: {
7000
+ headers: {
7001
+ [name: string]: unknown;
7002
+ };
7003
+ content: {
7004
+ "application/json": {
7005
+ code: string;
7006
+ message: string;
7007
+ issues?: {
7008
+ message: string;
7009
+ }[];
7010
+ context?: unknown;
7011
+ };
7012
+ };
7013
+ };
7014
+ /** @description Unauthorized */
7015
+ 401: {
7016
+ headers: {
7017
+ [name: string]: unknown;
7018
+ };
7019
+ content: {
7020
+ "application/json": {
7021
+ code: string;
7022
+ message: string;
7023
+ issues?: {
7024
+ message: string;
7025
+ }[];
7026
+ context?: unknown;
7027
+ };
7028
+ };
7029
+ };
7030
+ /** @description Forbidden */
7031
+ 403: {
7032
+ headers: {
7033
+ [name: string]: unknown;
7034
+ };
7035
+ content: {
7036
+ "application/json": {
7037
+ code: string;
7038
+ message: string;
7039
+ issues?: {
7040
+ message: string;
7041
+ }[];
7042
+ context?: unknown;
7043
+ };
7044
+ };
7045
+ };
7046
+ /** @description Not found */
7047
+ 404: {
7048
+ headers: {
7049
+ [name: string]: unknown;
7050
+ };
7051
+ content: {
7052
+ "application/json": {
7053
+ code: string;
7054
+ message: string;
7055
+ issues?: {
7056
+ message: string;
7057
+ }[];
7058
+ context?: unknown;
7059
+ };
7060
+ };
7061
+ };
7062
+ /** @description Internal server error */
7063
+ 500: {
7064
+ headers: {
7065
+ [name: string]: unknown;
7066
+ };
7067
+ content: {
7068
+ "application/json": {
7069
+ code: string;
7070
+ message: string;
7071
+ issues?: {
7072
+ message: string;
7073
+ }[];
7074
+ context?: unknown;
7075
+ };
7076
+ };
7077
+ };
7078
+ };
7079
+ };
6921
7080
  batchBankAccounts: {
6922
7081
  parameters: {
6923
7082
  query?: never;