squarefi-bff-api-module 1.10.8 → 1.10.9
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 +3 -3
- package/package.json +1 -1
- package/src/api/types.ts +3 -3
package/dist/api/types.d.ts
CHANGED
|
@@ -352,10 +352,10 @@ export declare namespace API {
|
|
|
352
352
|
namespace Counterparties {
|
|
353
353
|
interface Counterparty {
|
|
354
354
|
id: string;
|
|
355
|
-
email?: string;
|
|
356
|
-
phone?: string;
|
|
355
|
+
email?: string | null;
|
|
356
|
+
phone?: string | null;
|
|
357
357
|
name: string;
|
|
358
|
-
nickname?: string;
|
|
358
|
+
nickname?: string | null;
|
|
359
359
|
type: CounterpartyType | string;
|
|
360
360
|
created_at: string;
|
|
361
361
|
}
|
package/package.json
CHANGED
package/src/api/types.ts
CHANGED
|
@@ -411,10 +411,10 @@ export namespace API {
|
|
|
411
411
|
export namespace Counterparties {
|
|
412
412
|
export interface Counterparty {
|
|
413
413
|
id: string;
|
|
414
|
-
email?: string;
|
|
415
|
-
phone?: string;
|
|
414
|
+
email?: string | null;
|
|
415
|
+
phone?: string | null;
|
|
416
416
|
name: string;
|
|
417
|
-
nickname?: string;
|
|
417
|
+
nickname?: string | null;
|
|
418
418
|
type: CounterpartyType | string;
|
|
419
419
|
created_at: string;
|
|
420
420
|
}
|