@vrplatform/api 1.3.1-stage.1973 → 1.3.1-stage.1974

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.1973",
6
+ "version": "1.3.1-stage.1974",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -2482,6 +2482,23 @@ export interface paths {
2482
2482
  patch: operations["patchTransactionAttachmentsByAttachmentId"];
2483
2483
  trace?: never;
2484
2484
  };
2485
+ "/transaction-attachments/{attachmentId}/download": {
2486
+ parameters: {
2487
+ query?: never;
2488
+ header?: never;
2489
+ path?: never;
2490
+ cookie?: never;
2491
+ };
2492
+ /** @description Download an expense attachment */
2493
+ get: operations["getTransactionAttachmentsByAttachmentIdDownload"];
2494
+ put?: never;
2495
+ post?: never;
2496
+ delete?: never;
2497
+ options?: never;
2498
+ head?: never;
2499
+ patch?: never;
2500
+ trace?: never;
2501
+ };
2485
2502
  "/transactions": {
2486
2503
  parameters: {
2487
2504
  query?: never;
@@ -34746,6 +34763,111 @@ export interface operations {
34746
34763
  };
34747
34764
  };
34748
34765
  };
34766
+ getTransactionAttachmentsByAttachmentIdDownload: {
34767
+ parameters: {
34768
+ query?: never;
34769
+ header?: never;
34770
+ path: {
34771
+ attachmentId: string;
34772
+ };
34773
+ cookie?: never;
34774
+ };
34775
+ requestBody?: never;
34776
+ responses: {
34777
+ /** @description Successful response */
34778
+ 200: {
34779
+ headers: {
34780
+ [name: string]: unknown;
34781
+ };
34782
+ content: {
34783
+ "application/json": {
34784
+ /** Format: uuid */
34785
+ id: string;
34786
+ };
34787
+ };
34788
+ };
34789
+ /** @description Bad request */
34790
+ 400: {
34791
+ headers: {
34792
+ [name: string]: unknown;
34793
+ };
34794
+ content: {
34795
+ "application/json": {
34796
+ code: string;
34797
+ message: string;
34798
+ issues?: {
34799
+ message: string;
34800
+ }[];
34801
+ context?: unknown;
34802
+ };
34803
+ };
34804
+ };
34805
+ /** @description Unauthorized */
34806
+ 401: {
34807
+ headers: {
34808
+ [name: string]: unknown;
34809
+ };
34810
+ content: {
34811
+ "application/json": {
34812
+ code: string;
34813
+ message: string;
34814
+ issues?: {
34815
+ message: string;
34816
+ }[];
34817
+ context?: unknown;
34818
+ };
34819
+ };
34820
+ };
34821
+ /** @description Forbidden */
34822
+ 403: {
34823
+ headers: {
34824
+ [name: string]: unknown;
34825
+ };
34826
+ content: {
34827
+ "application/json": {
34828
+ code: string;
34829
+ message: string;
34830
+ issues?: {
34831
+ message: string;
34832
+ }[];
34833
+ context?: unknown;
34834
+ };
34835
+ };
34836
+ };
34837
+ /** @description Not found */
34838
+ 404: {
34839
+ headers: {
34840
+ [name: string]: unknown;
34841
+ };
34842
+ content: {
34843
+ "application/json": {
34844
+ code: string;
34845
+ message: string;
34846
+ issues?: {
34847
+ message: string;
34848
+ }[];
34849
+ context?: unknown;
34850
+ };
34851
+ };
34852
+ };
34853
+ /** @description Internal server error */
34854
+ 500: {
34855
+ headers: {
34856
+ [name: string]: unknown;
34857
+ };
34858
+ content: {
34859
+ "application/json": {
34860
+ code: string;
34861
+ message: string;
34862
+ issues?: {
34863
+ message: string;
34864
+ }[];
34865
+ context?: unknown;
34866
+ };
34867
+ };
34868
+ };
34869
+ };
34870
+ };
34749
34871
  getTransactions: {
34750
34872
  parameters: {
34751
34873
  query?: {