squarefi-bff-api-module 1.13.2 → 1.13.3

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.
@@ -491,11 +491,11 @@ export declare namespace API {
491
491
  limit?: number;
492
492
  sort_by?: 'created_at' | 'nickname' | 'type' | 'email' | 'phone';
493
493
  sort_order?: SortingDirection;
494
- search?: string;
495
494
  filter?: {
496
495
  type?: CounterpartyDestinationType;
497
496
  nickname?: string;
498
497
  created_at?: string;
498
+ search?: string;
499
499
  };
500
500
  }
501
501
  type Response = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.13.2",
3
+ "version": "1.13.3",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/api/types.ts CHANGED
@@ -591,11 +591,11 @@ export namespace API {
591
591
  limit?: number;
592
592
  sort_by?: 'created_at' | 'nickname' | 'type' | 'email' | 'phone';
593
593
  sort_order?: SortingDirection;
594
- search?: string;
595
594
  filter?: {
596
595
  type?: CounterpartyDestinationType;
597
596
  nickname?: string;
598
597
  created_at?: string;
598
+ search?: string;
599
599
  };
600
600
  }
601
601