squarefi-bff-api-module 1.36.12 → 1.36.13

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.
@@ -1312,10 +1312,7 @@ export interface paths {
1312
1312
  /** Delete destination */
1313
1313
  delete: {
1314
1314
  parameters: {
1315
- query: {
1316
- /** @description OTP verification request ID */
1317
- request_id: string;
1318
- };
1315
+ query?: never;
1319
1316
  header?: never;
1320
1317
  path: {
1321
1318
  id: string;
@@ -1340,7 +1337,7 @@ export interface paths {
1340
1337
  };
1341
1338
  };
1342
1339
  };
1343
- /** @description Access denied or verification failed */
1340
+ /** @description Access denied */
1344
1341
  403: {
1345
1342
  headers: {
1346
1343
  [name: string]: unknown;
@@ -7695,6 +7692,13 @@ export interface paths {
7695
7692
  };
7696
7693
  content?: never;
7697
7694
  };
7695
+ /** @description Operation already in progress — a concurrent accept/decline for this invite code is being processed */
7696
+ 409: {
7697
+ headers: {
7698
+ [name: string]: unknown;
7699
+ };
7700
+ content?: never;
7701
+ };
7698
7702
  };
7699
7703
  };
7700
7704
  delete?: never;
@@ -7777,6 +7781,13 @@ export interface paths {
7777
7781
  };
7778
7782
  content?: never;
7779
7783
  };
7784
+ /** @description Operation already in progress — a concurrent accept/decline for this invite code is being processed */
7785
+ 409: {
7786
+ headers: {
7787
+ [name: string]: unknown;
7788
+ };
7789
+ content?: never;
7790
+ };
7780
7791
  };
7781
7792
  };
7782
7793
  delete?: never;
@@ -9875,6 +9886,13 @@ export interface paths {
9875
9886
  };
9876
9887
  content?: never;
9877
9888
  };
9889
+ /** @description Operation already in progress — a concurrent invite for the same email is being processed */
9890
+ 409: {
9891
+ headers: {
9892
+ [name: string]: unknown;
9893
+ };
9894
+ content?: never;
9895
+ };
9878
9896
  };
9879
9897
  };
9880
9898
  delete?: never;
@@ -9992,6 +10010,13 @@ export interface paths {
9992
10010
  };
9993
10011
  content?: never;
9994
10012
  };
10013
+ /** @description Operation already in progress — a concurrent cancel for this invite is being processed */
10014
+ 409: {
10015
+ headers: {
10016
+ [name: string]: unknown;
10017
+ };
10018
+ content?: never;
10019
+ };
9995
10020
  };
9996
10021
  };
9997
10022
  options?: never;
@@ -595,11 +595,6 @@ export interface paths {
595
595
  requestBody: {
596
596
  content: {
597
597
  "application/json": {
598
- /**
599
- * Format: uuid
600
- * @description OTP verification request ID
601
- */
602
- request_id: string;
603
598
  /** Format: uuid */
604
599
  counterparty_account_id: string;
605
600
  /** @enum {string} */
@@ -730,10 +725,7 @@ export interface paths {
730
725
  /** Delete destination */
731
726
  delete: {
732
727
  parameters: {
733
- query: {
734
- /** @description OTP verification request ID */
735
- request_id: string;
736
- };
728
+ query?: never;
737
729
  header?: never;
738
730
  path: {
739
731
  id: string;
@@ -449,8 +449,9 @@ export declare namespace API {
449
449
  type Response = Detail.DestinationDetailItem;
450
450
  }
451
451
  namespace Delete {
452
- type Request = NonNullable<pathsV1Frontend['/frontend/counterparty/destinations/{id}']['delete']['parameters']['query']> & {
452
+ type Request = {
453
453
  counterparty_destination_id: string;
454
+ request_id?: string;
454
455
  wallet_id?: string;
455
456
  counterparty_account_id?: string;
456
457
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.36.12",
3
+ "version": "1.36.13",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",