@medipass/web-sdk 11.49.4-feature-healthpoint-upload-endpoints.2 → 11.49.4-feature-healthpoint-upload-endpoints.4
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/lib/index.d.ts +8 -8
- package/lib/index.js +2 -2
- package/lib/{regions-0da90c43.js → regions-5bf75df6.js} +2 -1
- package/lib/resources/abr.js +2 -2
- package/lib/resources/accounts.js +2 -2
- package/lib/resources/actions.js +2 -2
- package/lib/resources/api-keys.js +2 -2
- package/lib/resources/applications.js +2 -2
- package/lib/resources/attachments.js +2 -2
- package/lib/resources/auth.js +2 -2
- package/lib/resources/blacklist.js +2 -2
- package/lib/resources/bulk-submits.js +2 -2
- package/lib/resources/bulk-uploads.js +2 -2
- package/lib/resources/business-profiles.js +2 -2
- package/lib/resources/businesses.js +2 -2
- package/lib/resources/claim-items.js +2 -2
- package/lib/resources/devices.js +2 -2
- package/lib/resources/doc-accounts.js +2 -2
- package/lib/resources/documents.js +2 -2
- package/lib/resources/emails.js +2 -2
- package/lib/resources/filter-options.js +2 -2
- package/lib/resources/form-application-templates.js +2 -2
- package/lib/resources/form-applications.js +2 -2
- package/lib/resources/forms.js +2 -2
- package/lib/resources/funder-services.js +2 -2
- package/lib/resources/funder-settings.js +2 -2
- package/lib/resources/funder-values.js +2 -2
- package/lib/resources/funders.js +2 -2
- package/lib/resources/futures.js +2 -2
- package/lib/resources/health-fund-accounts.js +2 -2
- package/lib/resources/health-fund-settings.js +2 -2
- package/lib/resources/healthfunds.js +2 -2
- package/lib/resources/icditems.js +2 -2
- package/lib/resources/invoice-scans.js +2 -2
- package/lib/resources/jhcs.js +2 -2
- package/lib/resources/kyc.js +2 -2
- package/lib/resources/logs.js +2 -2
- package/lib/resources/members.js +2 -2
- package/lib/resources/message-mappings.js +2 -2
- package/lib/resources/minions.js +2 -2
- package/lib/resources/modalities.js +2 -2
- package/lib/resources/notes.js +2 -2
- package/lib/resources/onboarding-applications.js +2 -2
- package/lib/resources/onboarding-requests.js +2 -2
- package/lib/resources/ops.js +2 -2
- package/lib/resources/organisations.js +2 -2
- package/lib/resources/partners.js +2 -2
- package/lib/resources/patients.js +2 -2
- package/lib/resources/payments.d.ts +1 -1
- package/lib/resources/payments.js +2 -2
- package/lib/resources/pms.js +2 -2
- package/lib/resources/practice-profiles.js +2 -2
- package/lib/resources/practice-types.js +2 -2
- package/lib/resources/practices.js +2 -2
- package/lib/resources/products.js +2 -2
- package/lib/resources/professional-categories.js +2 -2
- package/lib/resources/provider-number-types.js +2 -2
- package/lib/resources/provider-registration-types.js +2 -2
- package/lib/resources/provider-requests.js +2 -2
- package/lib/resources/provider-types.js +2 -2
- package/lib/resources/ref-sources.js +2 -2
- package/lib/resources/risk.js +2 -2
- package/lib/resources/rnas.js +2 -2
- package/lib/resources/roles.js +2 -2
- package/lib/resources/self-checkout-sessions.d.ts +3 -3
- package/lib/resources/self-checkout-sessions.js +2 -2
- package/lib/resources/services.js +2 -2
- package/lib/resources/settlements.js +2 -2
- package/lib/resources/sign-up.js +2 -2
- package/lib/resources/specialties.js +2 -2
- package/lib/resources/staff-profiles.js +2 -2
- package/lib/resources/staff.js +2 -2
- package/lib/resources/statistics.js +2 -2
- package/lib/resources/subscriptions.js +2 -2
- package/lib/resources/terminals.js +2 -2
- package/lib/resources/transaction-export.js +2 -2
- package/lib/resources/transactions.js +2 -2
- package/lib/resources/triggers.js +2 -2
- package/lib/resources/vendors.js +2 -2
- package/lib/resources/verify.js +2 -2
- package/lib/resources/workers.js +2 -2
- package/lib/resources/workflow-exceptions.js +2 -2
- package/lib/services/aws.js +2 -2
- package/lib/services/storage.js +9 -1
- package/lib/services/version.js +2 -2
- package/lib/{staff-1620f06c.js → staff-85bee763.js} +347 -179
- package/lib/types/provider-registration.d.ts +4 -4
- package/lib/types/provider-set-item.d.ts +5 -5
- package/lib/utils/application.js +2 -2
- package/lib/utils/does-param-exist.d.ts +1 -1
- package/lib/utils/professions.d.ts +3 -3
- package/lib/utils/professions.js +2 -2
- package/lib/utils/regions.js +1 -1
- package/lib/utils/request.js +2 -2
- package/lib/utils/staff.d.ts +5 -5
- package/lib/utils/staff.js +2 -2
- package/package.json +2 -2
- package/tsconfig.json +2 -1
|
@@ -6,12 +6,12 @@ export interface ProviderRegistration {
|
|
|
6
6
|
providerNumber: string;
|
|
7
7
|
}
|
|
8
8
|
export interface ParsedProviderRegistration {
|
|
9
|
-
providerNumberType
|
|
9
|
+
providerNumberType?: ProviderNumberType | undefined;
|
|
10
10
|
practice: Practice;
|
|
11
11
|
funder: Funder;
|
|
12
|
-
professionalCategory
|
|
13
|
-
specialties
|
|
14
|
-
providerRegistrationType
|
|
12
|
+
professionalCategory?: ProfessionalCategory | undefined;
|
|
13
|
+
specialties?: (Specialty | undefined)[] | undefined;
|
|
14
|
+
providerRegistrationType?: ProviderRegistrationType | undefined;
|
|
15
15
|
specialtyIds: string[];
|
|
16
16
|
providerRegistrationTypeId: string;
|
|
17
17
|
professionalCategoryId: string;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import type { ProviderNumberType, Practice, ProfessionalCategory, Specialty, Funder, ProviderRegistrationType } from 'types';
|
|
2
2
|
export interface ParsedProviderSetItem {
|
|
3
|
-
providerNumberType
|
|
3
|
+
providerNumberType?: ProviderNumberType | undefined;
|
|
4
4
|
practice: Practice;
|
|
5
5
|
funder: Funder;
|
|
6
|
-
professionalCategory
|
|
7
|
-
specialties
|
|
8
|
-
providerRegistrationType
|
|
6
|
+
professionalCategory?: ProfessionalCategory | undefined;
|
|
7
|
+
specialties?: (Specialty | undefined)[] | undefined;
|
|
8
|
+
providerRegistrationType?: ProviderRegistrationType | undefined;
|
|
9
9
|
created: string;
|
|
10
10
|
funderId: string;
|
|
11
11
|
healthFundOverrides: string[];
|
|
12
12
|
practiceId: string;
|
|
13
13
|
professionalCategoryId: string;
|
|
14
14
|
providerNumber: string;
|
|
15
|
-
providerNumberTypeId?: string;
|
|
15
|
+
providerNumberTypeId?: string | undefined;
|
|
16
16
|
specialtyIds: string[];
|
|
17
17
|
status: string;
|
|
18
18
|
statusHistory: string[];
|
package/lib/utils/application.js
CHANGED
|
@@ -14,7 +14,7 @@ require('lodash/forOwn');
|
|
|
14
14
|
require('lodash/get');
|
|
15
15
|
require('@medipass/utils/sentry');
|
|
16
16
|
require('./get-axios-error.js');
|
|
17
|
-
var request = require('../staff-
|
|
17
|
+
var request = require('../staff-85bee763.js');
|
|
18
18
|
require('@babel/runtime/helpers/inheritsLoose');
|
|
19
19
|
require('@babel/runtime/helpers/wrapNativeSuper');
|
|
20
20
|
require('./param-error.js');
|
|
@@ -42,7 +42,7 @@ require('./base-urls/risk.js');
|
|
|
42
42
|
require('./base-urls/index.js');
|
|
43
43
|
require('lodash/flatten');
|
|
44
44
|
require('js-cookie');
|
|
45
|
-
require('../regions-
|
|
45
|
+
require('../regions-5bf75df6.js');
|
|
46
46
|
|
|
47
47
|
|
|
48
48
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const doesParamExist: (params: Record<string, any>, hyperMediaEndpoint?: string | null | undefined, opts?: Record<string, any>) =>
|
|
1
|
+
declare const doesParamExist: (params: Record<string, any>, hyperMediaEndpoint?: string | null | undefined, opts?: Record<string, any>) => null;
|
|
2
2
|
export default doesParamExist;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { PaginatedResponse, StaffMember, ProviderRegistrationType, Specialty, ProfessionalCategory } from 'types';
|
|
2
2
|
export declare type ParseProfessionsResponse = {
|
|
3
|
-
professionalCategory: ProfessionalCategory;
|
|
4
|
-
specialties: Specialty[];
|
|
3
|
+
professionalCategory: ProfessionalCategory | undefined;
|
|
4
|
+
specialties: (Specialty | undefined)[];
|
|
5
5
|
providerRegistrationType: ProviderRegistrationType;
|
|
6
|
-
}[];
|
|
6
|
+
}[] | undefined;
|
|
7
7
|
export declare function parseProfessions(registration: StaffMember['providerSet'] | StaffMember['providerRegistrations'], { providerRegistrationTypes }?: {
|
|
8
8
|
providerRegistrationTypes?: PaginatedResponse<ProviderRegistrationType>;
|
|
9
9
|
}): Promise<ParseProfessionsResponse>;
|
package/lib/utils/professions.js
CHANGED
|
@@ -14,7 +14,7 @@ require('lodash/forOwn');
|
|
|
14
14
|
require('lodash/get');
|
|
15
15
|
require('@medipass/utils/sentry');
|
|
16
16
|
require('./get-axios-error.js');
|
|
17
|
-
var request = require('../staff-
|
|
17
|
+
var request = require('../staff-85bee763.js');
|
|
18
18
|
require('@babel/runtime/helpers/inheritsLoose');
|
|
19
19
|
require('@babel/runtime/helpers/wrapNativeSuper');
|
|
20
20
|
require('./param-error.js');
|
|
@@ -42,7 +42,7 @@ require('./base-urls/risk.js');
|
|
|
42
42
|
require('./base-urls/index.js');
|
|
43
43
|
require('lodash/flatten');
|
|
44
44
|
require('js-cookie');
|
|
45
|
-
require('../regions-
|
|
45
|
+
require('../regions-5bf75df6.js');
|
|
46
46
|
|
|
47
47
|
|
|
48
48
|
|
package/lib/utils/regions.js
CHANGED
package/lib/utils/request.js
CHANGED
|
@@ -14,7 +14,7 @@ require('lodash/forOwn');
|
|
|
14
14
|
require('lodash/get');
|
|
15
15
|
require('@medipass/utils/sentry');
|
|
16
16
|
require('./get-axios-error.js');
|
|
17
|
-
var request = require('../staff-
|
|
17
|
+
var request = require('../staff-85bee763.js');
|
|
18
18
|
require('@babel/runtime/helpers/inheritsLoose');
|
|
19
19
|
require('@babel/runtime/helpers/wrapNativeSuper');
|
|
20
20
|
require('./param-error.js');
|
|
@@ -42,7 +42,7 @@ require('./base-urls/risk.js');
|
|
|
42
42
|
require('./base-urls/index.js');
|
|
43
43
|
require('lodash/flatten');
|
|
44
44
|
require('js-cookie');
|
|
45
|
-
require('../regions-
|
|
45
|
+
require('../regions-5bf75df6.js');
|
|
46
46
|
|
|
47
47
|
|
|
48
48
|
|
package/lib/utils/staff.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as professionsUtils from './professions';
|
|
2
2
|
import type { Funder, PaginatedResponse, StaffMember, ProviderRegistrationType, ProviderNumberType, ProviderRegistration, ParsedProviderSetItem, ParsedProviderRegistration } from 'types';
|
|
3
|
-
export declare function parseProviderSet(providerSet: StaffMember['providerSet'] | StaffMember['providerRegistrations'], { businessId, funders, providerRegistrationTypes, providerNumberTypes: _providerNumberTypes, parseProviderNumberType }
|
|
3
|
+
export declare function parseProviderSet(providerSet: StaffMember['providerSet'] | StaffMember['providerRegistrations'], { businessId, funders, providerRegistrationTypes, providerNumberTypes: _providerNumberTypes, parseProviderNumberType }: {
|
|
4
4
|
businessId: string;
|
|
5
|
-
funders
|
|
5
|
+
funders?: Funder[];
|
|
6
6
|
providerRegistrationTypes: PaginatedResponse<ProviderRegistrationType>;
|
|
7
|
-
providerNumberTypes
|
|
8
|
-
parseProviderNumberType
|
|
9
|
-
}): Promise<(ParsedProviderSetItem | ParsedProviderRegistration)[]>;
|
|
7
|
+
providerNumberTypes?: ProviderNumberType[];
|
|
8
|
+
parseProviderNumberType?: boolean;
|
|
9
|
+
}): Promise<(ParsedProviderSetItem | ParsedProviderRegistration)[] | undefined>;
|
|
10
10
|
export declare function parseProviderRegistrations(providerRegistrations: StaffMember['providerRegistrations'], opts?: {}): Promise<ProviderRegistration[] & professionsUtils.ParseProfessionsResponse>;
|
package/lib/utils/staff.js
CHANGED
|
@@ -14,7 +14,7 @@ require('lodash/forOwn');
|
|
|
14
14
|
require('lodash/get');
|
|
15
15
|
require('@medipass/utils/sentry');
|
|
16
16
|
require('./get-axios-error.js');
|
|
17
|
-
var request = require('../staff-
|
|
17
|
+
var request = require('../staff-85bee763.js');
|
|
18
18
|
require('@babel/runtime/helpers/inheritsLoose');
|
|
19
19
|
require('@babel/runtime/helpers/wrapNativeSuper');
|
|
20
20
|
require('./param-error.js');
|
|
@@ -42,7 +42,7 @@ require('./base-urls/risk.js');
|
|
|
42
42
|
require('./base-urls/index.js');
|
|
43
43
|
require('lodash/flatten');
|
|
44
44
|
require('js-cookie');
|
|
45
|
-
require('../regions-
|
|
45
|
+
require('../regions-5bf75df6.js');
|
|
46
46
|
|
|
47
47
|
|
|
48
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "11.49.4-feature-healthpoint-upload-endpoints.
|
|
3
|
+
"version": "11.49.4-feature-healthpoint-upload-endpoints.4",
|
|
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": "
|
|
60
|
+
"gitHead": "0f3abaf9702348d6e477ac73b0111e79d174243e"
|
|
61
61
|
}
|
package/tsconfig.json
CHANGED