squarefi-bff-api-module 1.17.21 → 1.17.22

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.
@@ -99,7 +99,7 @@ export declare namespace API {
99
99
  namespace Config {
100
100
  type IssuingProgramOrderType = {
101
101
  id: string;
102
- order_types_id: string;
102
+ order_types_id: OrderType | string;
103
103
  issuing_programs_id: string;
104
104
  };
105
105
  interface Program {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.17.21",
3
+ "version": "1.17.22",
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
@@ -128,7 +128,7 @@ export namespace API {
128
128
  export namespace Config {
129
129
  export type IssuingProgramOrderType = {
130
130
  id: string;
131
- order_types_id: string;
131
+ order_types_id: OrderType | string;
132
132
  issuing_programs_id: string;
133
133
  };
134
134
  export interface Program {