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