@nomalism-com/api 0.48.0 → 0.48.2

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/index.js CHANGED
@@ -922,6 +922,12 @@ var Repository25 = class {
922
922
  );
923
923
  return response.data;
924
924
  }
925
+ async find() {
926
+ const response = await this.api.get(
927
+ this.route
928
+ );
929
+ return response.data;
930
+ }
925
931
  };
926
932
 
927
933
  // src/modules/integration/googleFilePermission.ts
@@ -6,4 +6,5 @@ export default class Repository implements Nomalism.EuPago.IApi {
6
6
  constructor({ api, route }: IModuleConstructor);
7
7
  generate(data: Nomalism.EuPago.ICreatePendingPaymentRequest): Promise<Nomalism.EuPago.Entity>;
8
8
  chooseMethod({ id, ...body }: Nomalism.EuPago.IChooseMethodRequest): Promise<Nomalism.EuPago.Entity>;
9
+ find(): Promise<Nomalism.EuPago.IFindResponse[]>;
9
10
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nomalism-com/api",
3
3
  "description": "A nomalism API package for performing HTTP requests on API endpoints",
4
- "version": "0.48.0",
4
+ "version": "0.48.2",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",
@@ -24,7 +24,7 @@
24
24
  "prepare": "husky"
25
25
  },
26
26
  "dependencies": {
27
- "@nomalism-com/types": "^0.48.0",
27
+ "@nomalism-com/types": "^0.48.2",
28
28
  "axios": "^1.18.1"
29
29
  },
30
30
  "devDependencies": {