@vrplatform/api 1.3.1-stage.2493 → 1.3.1-stage.2496

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.2493",
6
+ "version": "1.3.1-stage.2496",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -410,7 +410,8 @@ export interface paths {
410
410
  /** @description Update bank record */
411
411
  put: operations["putBankRecordsById"];
412
412
  post?: never;
413
- delete?: never;
413
+ /** @description Permanently delete an unreconciled CSV-source bank record */
414
+ delete: operations["deleteBankRecordsById"];
414
415
  options?: never;
415
416
  head?: never;
416
417
  patch?: never;
@@ -8482,6 +8483,117 @@ export interface operations {
8482
8483
  };
8483
8484
  };
8484
8485
  };
8486
+ deleteBankRecordsById: {
8487
+ parameters: {
8488
+ query?: {
8489
+ dryRun?: boolean;
8490
+ };
8491
+ header?: never;
8492
+ path: {
8493
+ id: string;
8494
+ };
8495
+ cookie?: never;
8496
+ };
8497
+ requestBody?: {
8498
+ content: {
8499
+ "application/json": Record<string, never>;
8500
+ };
8501
+ };
8502
+ responses: {
8503
+ /** @description Successful response */
8504
+ 200: {
8505
+ headers: {
8506
+ [name: string]: unknown;
8507
+ };
8508
+ content: {
8509
+ "application/json": {
8510
+ /** @constant */
8511
+ status: "deleted";
8512
+ };
8513
+ };
8514
+ };
8515
+ /** @description Bad request */
8516
+ 400: {
8517
+ headers: {
8518
+ [name: string]: unknown;
8519
+ };
8520
+ content: {
8521
+ "application/json": {
8522
+ code: string;
8523
+ message: string;
8524
+ issues?: {
8525
+ message: string;
8526
+ }[];
8527
+ context?: unknown;
8528
+ };
8529
+ };
8530
+ };
8531
+ /** @description Unauthorized */
8532
+ 401: {
8533
+ headers: {
8534
+ [name: string]: unknown;
8535
+ };
8536
+ content: {
8537
+ "application/json": {
8538
+ code: string;
8539
+ message: string;
8540
+ issues?: {
8541
+ message: string;
8542
+ }[];
8543
+ context?: unknown;
8544
+ };
8545
+ };
8546
+ };
8547
+ /** @description Forbidden */
8548
+ 403: {
8549
+ headers: {
8550
+ [name: string]: unknown;
8551
+ };
8552
+ content: {
8553
+ "application/json": {
8554
+ code: string;
8555
+ message: string;
8556
+ issues?: {
8557
+ message: string;
8558
+ }[];
8559
+ context?: unknown;
8560
+ };
8561
+ };
8562
+ };
8563
+ /** @description Not found */
8564
+ 404: {
8565
+ headers: {
8566
+ [name: string]: unknown;
8567
+ };
8568
+ content: {
8569
+ "application/json": {
8570
+ code: string;
8571
+ message: string;
8572
+ issues?: {
8573
+ message: string;
8574
+ }[];
8575
+ context?: unknown;
8576
+ };
8577
+ };
8578
+ };
8579
+ /** @description Internal server error */
8580
+ 500: {
8581
+ headers: {
8582
+ [name: string]: unknown;
8583
+ };
8584
+ content: {
8585
+ "application/json": {
8586
+ code: string;
8587
+ message: string;
8588
+ issues?: {
8589
+ message: string;
8590
+ }[];
8591
+ context?: unknown;
8592
+ };
8593
+ };
8594
+ };
8595
+ };
8596
+ };
8485
8597
  getBankRules: {
8486
8598
  parameters: {
8487
8599
  query?: {