@medipass/web-sdk 11.64.16-feature-create-support-user.3 → 11.64.16-feature-create-support-user.5

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.
@@ -1,4 +1,4 @@
1
- import type { MedipassRequestOpts } from '../types';
1
+ import type { MedipassRequestOpts, PaginatedResponse } from '../types';
2
2
  import type { Application } from 'types/application';
3
3
  /**
4
4
  * Get self application
@@ -10,7 +10,7 @@ export declare const getSelfApplication: (opts?: MedipassRequestOpts) => Promise
10
10
  * @param {Object} query - Query parameters
11
11
  * @param {Object} opts - Additional options
12
12
  */
13
- export declare const getApplications: (query?: Record<string, any>, opts?: MedipassRequestOpts) => Promise<Application>;
13
+ export declare const getApplications: (query?: Record<string, any>, opts?: MedipassRequestOpts) => Promise<PaginatedResponse<Application>>;
14
14
  /**
15
15
  * Get application
16
16
  * @param {String} applicationId - Application ID
@@ -1,8 +1,8 @@
1
- import type { MedipassRequestOpts } from '../types';
1
+ import type { MedipassRequestOpts, PaginatedResponse } from '../types';
2
2
  import type { Organisation } from 'types/organisation';
3
3
  /**
4
4
  * Get organisations
5
5
  * @param {Object} query - Query parameters
6
6
  * @param {Object} opts - Additional options
7
7
  */
8
- export declare const getOrganisations: (query?: Record<string, any>, opts?: MedipassRequestOpts) => Promise<Organisation>;
8
+ export declare const getOrganisations: (query?: Record<string, any>, opts?: MedipassRequestOpts) => Promise<PaginatedResponse<Organisation>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/web-sdk",
3
- "version": "11.64.16-feature-create-support-user.3",
3
+ "version": "11.64.16-feature-create-support-user.5",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -57,5 +57,5 @@
57
57
  "resolutions": {
58
58
  "react-scripts/**/@typescript-eslint/eslint-plugin": "5.32.0"
59
59
  },
60
- "gitHead": "439661329fd5f799c8a16d1441f3306cbb5f9b72"
60
+ "gitHead": "6f2a80570feab1b1cd5441aa60f82a793285751c"
61
61
  }