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.
- package/dist/api/types.d.ts +1 -1
- package/package.json +1 -1
- package/src/api/types.ts +1 -1
package/dist/api/types.d.ts
CHANGED
|
@@ -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
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
|
|