@teja-app/api-client 0.0.1-dev.20260115141101.2e5949c → 0.0.1-dev.20260119083131.d47acb2
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/errors.d.ts.map +1 -1
- package/dist/errors.js +2 -1
- package/dist/errors.js.map +1 -1
- package/dist/generated/index.d.ts +1 -1
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/generated/index.js +1 -1
- package/dist/generated/index.js.map +1 -1
- package/dist/generated/services/AdminService.d.ts +34 -6
- package/dist/generated/services/AdminService.d.ts.map +1 -1
- package/dist/generated/services/AdminService.js +6 -0
- package/dist/generated/services/AdminService.js.map +1 -1
- package/dist/generated/services/AuthService.d.ts +11 -5
- package/dist/generated/services/AuthService.d.ts.map +1 -1
- package/dist/generated/services/AuthService.js.map +1 -1
- package/dist/generated/services/ClientPortalPaymentsService.d.ts +35 -0
- package/dist/generated/services/ClientPortalPaymentsService.d.ts.map +1 -0
- package/dist/generated/services/{DefaultService.js → ClientPortalPaymentsService.js} +8 -2
- package/dist/generated/services/ClientPortalPaymentsService.js.map +1 -0
- package/dist/generated/services/ClientPortalService.d.ts +30 -5
- package/dist/generated/services/ClientPortalService.d.ts.map +1 -1
- package/dist/generated/services/ClientPortalService.js +5 -0
- package/dist/generated/services/ClientPortalService.js.map +1 -1
- package/dist/generated/services/ClientsService.d.ts +304 -15
- package/dist/generated/services/ClientsService.d.ts.map +1 -1
- package/dist/generated/services/ClientsService.js +15 -0
- package/dist/generated/services/ClientsService.js.map +1 -1
- package/dist/generated/services/DiagnosesService.d.ts +30 -5
- package/dist/generated/services/DiagnosesService.d.ts.map +1 -1
- package/dist/generated/services/DiagnosesService.js +5 -0
- package/dist/generated/services/DiagnosesService.js.map +1 -1
- package/dist/generated/services/GoldenThreadService.d.ts +6 -84
- package/dist/generated/services/GoldenThreadService.d.ts.map +1 -1
- package/dist/generated/services/GoldenThreadService.js +0 -6
- package/dist/generated/services/GoldenThreadService.js.map +1 -1
- package/dist/generated/services/InvitationService.d.ts +27 -2
- package/dist/generated/services/InvitationService.d.ts.map +1 -1
- package/dist/generated/services/InvitationService.js +2 -0
- package/dist/generated/services/InvitationService.js.map +1 -1
- package/dist/generated/services/RecordingsService.d.ts +31 -5
- package/dist/generated/services/RecordingsService.d.ts.map +1 -1
- package/dist/generated/services/RecordingsService.js +5 -0
- package/dist/generated/services/RecordingsService.js.map +1 -1
- package/dist/generated/services/ReferenceDataService.d.ts +35 -5
- package/dist/generated/services/ReferenceDataService.d.ts.map +1 -1
- package/dist/generated/services/ReferenceDataService.js +5 -0
- package/dist/generated/services/ReferenceDataService.js.map +1 -1
- package/dist/generated/services/SettingsService.d.ts +48 -8
- package/dist/generated/services/SettingsService.d.ts.map +1 -1
- package/dist/generated/services/SettingsService.js +8 -0
- package/dist/generated/services/SettingsService.js.map +1 -1
- package/dist/generated/services/SuperbillCodesService.d.ts +29 -5
- package/dist/generated/services/SuperbillCodesService.d.ts.map +1 -1
- package/dist/generated/services/SuperbillCodesService.js +5 -0
- package/dist/generated/services/SuperbillCodesService.js.map +1 -1
- package/dist/generated/services/SuperbillsService.d.ts +66 -11
- package/dist/generated/services/SuperbillsService.d.ts.map +1 -1
- package/dist/generated/services/SuperbillsService.js +11 -0
- package/dist/generated/services/SuperbillsService.js.map +1 -1
- package/dist/generated/services/UserManagementService.d.ts +77 -6
- package/dist/generated/services/UserManagementService.d.ts.map +1 -1
- package/dist/generated/services/UserManagementService.js +6 -0
- package/dist/generated/services/UserManagementService.js.map +1 -1
- package/package.json +1 -1
- package/dist/generated/services/DefaultService.d.ts +0 -20
- package/dist/generated/services/DefaultService.d.ts.map +0 -1
- package/dist/generated/services/DefaultService.js.map +0 -1
|
@@ -3,38 +3,68 @@ export declare class ReferenceDataService {
|
|
|
3
3
|
/**
|
|
4
4
|
* List all therapy modalities
|
|
5
5
|
* Returns all available therapy modalities (CBT, DBT, EMDR, etc.)
|
|
6
|
+
* @returns any Response for status 200
|
|
6
7
|
* @throws ApiError
|
|
7
8
|
*/
|
|
8
|
-
static getReferenceDataModalities(): CancelablePromise<
|
|
9
|
+
static getReferenceDataModalities(): CancelablePromise<{
|
|
10
|
+
success: boolean;
|
|
11
|
+
data?: any;
|
|
12
|
+
count: number;
|
|
13
|
+
error?: string;
|
|
14
|
+
}>;
|
|
9
15
|
/**
|
|
10
16
|
* List all CPT billing codes
|
|
11
17
|
* Returns all CPT codes used for therapy billing
|
|
18
|
+
* @returns any Response for status 200
|
|
12
19
|
* @throws ApiError
|
|
13
20
|
*/
|
|
14
|
-
static getReferenceDataBillingCodes(): CancelablePromise<
|
|
21
|
+
static getReferenceDataBillingCodes(): CancelablePromise<{
|
|
22
|
+
success: boolean;
|
|
23
|
+
data?: any;
|
|
24
|
+
count: number;
|
|
25
|
+
error?: string;
|
|
26
|
+
}>;
|
|
15
27
|
/**
|
|
16
28
|
* Search ICD-10 diagnosis codes with relevance ranking
|
|
17
29
|
* Returns diagnosis codes ordered by relevance: exact code match, code starts with, description starts with, code contains, description contains
|
|
30
|
+
* @returns any Response for status 200
|
|
18
31
|
* @throws ApiError
|
|
19
32
|
*/
|
|
20
33
|
static getReferenceDataDiagnosisCodesSearch({ q, limit, }: {
|
|
21
34
|
q: string;
|
|
22
35
|
limit?: string;
|
|
23
|
-
}): CancelablePromise<
|
|
36
|
+
}): CancelablePromise<{
|
|
37
|
+
success: boolean;
|
|
38
|
+
data?: any;
|
|
39
|
+
count: number;
|
|
40
|
+
error?: string;
|
|
41
|
+
}>;
|
|
24
42
|
/**
|
|
25
43
|
* List ICD-10 diagnosis codes
|
|
26
44
|
* Returns diagnosis codes with optional search by code or description, or filter by category
|
|
45
|
+
* @returns any Response for status 200
|
|
27
46
|
* @throws ApiError
|
|
28
47
|
*/
|
|
29
48
|
static getReferenceDataDiagnosisCodes({ search, category, }: {
|
|
30
49
|
search?: string;
|
|
31
50
|
category?: string;
|
|
32
|
-
}): CancelablePromise<
|
|
51
|
+
}): CancelablePromise<{
|
|
52
|
+
success: boolean;
|
|
53
|
+
data?: any;
|
|
54
|
+
count: number;
|
|
55
|
+
error?: string;
|
|
56
|
+
}>;
|
|
33
57
|
/**
|
|
34
58
|
* List all note templates
|
|
35
59
|
* Returns all available progress note templates (SOAP, DAP, BIRP, etc.)
|
|
60
|
+
* @returns any Response for status 200
|
|
36
61
|
* @throws ApiError
|
|
37
62
|
*/
|
|
38
|
-
static getReferenceDataNoteTemplates(): CancelablePromise<
|
|
63
|
+
static getReferenceDataNoteTemplates(): CancelablePromise<{
|
|
64
|
+
success: boolean;
|
|
65
|
+
data?: any;
|
|
66
|
+
count: number;
|
|
67
|
+
error?: string;
|
|
68
|
+
}>;
|
|
39
69
|
}
|
|
40
70
|
//# sourceMappingURL=ReferenceDataService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReferenceDataService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/ReferenceDataService.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAGnE,qBAAa,oBAAoB;IAC7B
|
|
1
|
+
{"version":3,"file":"ReferenceDataService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/ReferenceDataService.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAGnE,qBAAa,oBAAoB;IAC7B;;;;;OAKG;WACW,0BAA0B,IAAI,iBAAiB,CAAC;QAC1D,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,CAAC,EAAE,GAAG,CAAC;QACX,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAMF;;;;;OAKG;WACW,4BAA4B,IAAI,iBAAiB,CAAC;QAC5D,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,CAAC,EAAE,GAAG,CAAC;QACX,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAMF;;;;;OAKG;WACW,oCAAoC,CAAC,EAC/C,CAAC,EACD,KAAK,GACR,EAAE;QACC,CAAC,EAAE,MAAM,CAAC;QACV,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,GAAG,iBAAiB,CAAC;QAClB,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,CAAC,EAAE,GAAG,CAAC;QACX,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAUF;;;;;OAKG;WACW,8BAA8B,CAAC,EACzC,MAAM,EACN,QAAQ,GACX,EAAE;QACC,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;KACrB,GAAG,iBAAiB,CAAC;QAClB,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,CAAC,EAAE,GAAG,CAAC;QACX,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAUF;;;;;OAKG;WACW,6BAA6B,IAAI,iBAAiB,CAAC;QAC7D,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,CAAC,EAAE,GAAG,CAAC;QACX,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;CAML"}
|
|
@@ -4,6 +4,7 @@ export class ReferenceDataService {
|
|
|
4
4
|
/**
|
|
5
5
|
* List all therapy modalities
|
|
6
6
|
* Returns all available therapy modalities (CBT, DBT, EMDR, etc.)
|
|
7
|
+
* @returns any Response for status 200
|
|
7
8
|
* @throws ApiError
|
|
8
9
|
*/
|
|
9
10
|
static getReferenceDataModalities() {
|
|
@@ -15,6 +16,7 @@ export class ReferenceDataService {
|
|
|
15
16
|
/**
|
|
16
17
|
* List all CPT billing codes
|
|
17
18
|
* Returns all CPT codes used for therapy billing
|
|
19
|
+
* @returns any Response for status 200
|
|
18
20
|
* @throws ApiError
|
|
19
21
|
*/
|
|
20
22
|
static getReferenceDataBillingCodes() {
|
|
@@ -26,6 +28,7 @@ export class ReferenceDataService {
|
|
|
26
28
|
/**
|
|
27
29
|
* Search ICD-10 diagnosis codes with relevance ranking
|
|
28
30
|
* Returns diagnosis codes ordered by relevance: exact code match, code starts with, description starts with, code contains, description contains
|
|
31
|
+
* @returns any Response for status 200
|
|
29
32
|
* @throws ApiError
|
|
30
33
|
*/
|
|
31
34
|
static getReferenceDataDiagnosisCodesSearch({ q, limit, }) {
|
|
@@ -41,6 +44,7 @@ export class ReferenceDataService {
|
|
|
41
44
|
/**
|
|
42
45
|
* List ICD-10 diagnosis codes
|
|
43
46
|
* Returns diagnosis codes with optional search by code or description, or filter by category
|
|
47
|
+
* @returns any Response for status 200
|
|
44
48
|
* @throws ApiError
|
|
45
49
|
*/
|
|
46
50
|
static getReferenceDataDiagnosisCodes({ search, category, }) {
|
|
@@ -56,6 +60,7 @@ export class ReferenceDataService {
|
|
|
56
60
|
/**
|
|
57
61
|
* List all note templates
|
|
58
62
|
* Returns all available progress note templates (SOAP, DAP, BIRP, etc.)
|
|
63
|
+
* @returns any Response for status 200
|
|
59
64
|
* @throws ApiError
|
|
60
65
|
*/
|
|
61
66
|
static getReferenceDataNoteTemplates() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReferenceDataService.js","sourceRoot":"","sources":["../../../src/generated/services/ReferenceDataService.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,MAAM,OAAO,oBAAoB;IAC7B
|
|
1
|
+
{"version":3,"file":"ReferenceDataService.js","sourceRoot":"","sources":["../../../src/generated/services/ReferenceDataService.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,MAAM,OAAO,oBAAoB;IAC7B;;;;;OAKG;IACI,MAAM,CAAC,0BAA0B;QAMpC,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,4BAA4B;SACpC,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,4BAA4B;QAMtC,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,+BAA+B;SACvC,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,oCAAoC,CAAC,EAC/C,CAAC,EACD,KAAK,GAIR;QAMG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,wCAAwC;YAC7C,KAAK,EAAE;gBACH,GAAG,EAAE,CAAC;gBACN,OAAO,EAAE,KAAK;aACjB;SACJ,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,8BAA8B,CAAC,EACzC,MAAM,EACN,QAAQ,GAIX;QAMG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,iCAAiC;YACtC,KAAK,EAAE;gBACH,QAAQ,EAAE,MAAM;gBAChB,UAAU,EAAE,QAAQ;aACvB;SACJ,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,6BAA6B;QAMvC,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,gCAAgC;SACxC,CAAC,CAAC;IACP,CAAC;CACJ"}
|
|
@@ -3,12 +3,18 @@ export declare class SettingsService {
|
|
|
3
3
|
/**
|
|
4
4
|
* Get profile
|
|
5
5
|
* Get user profile information (name, email, credentials)
|
|
6
|
+
* @returns any Response for status 200
|
|
6
7
|
* @throws ApiError
|
|
7
8
|
*/
|
|
8
|
-
static getSettingsProfile(): CancelablePromise<
|
|
9
|
+
static getSettingsProfile(): CancelablePromise<{
|
|
10
|
+
success: boolean;
|
|
11
|
+
data?: any;
|
|
12
|
+
error?: string;
|
|
13
|
+
}>;
|
|
9
14
|
/**
|
|
10
15
|
* Update profile
|
|
11
16
|
* Update user profile information (name, credentials)
|
|
17
|
+
* @returns any Response for status 200
|
|
12
18
|
* @throws ApiError
|
|
13
19
|
*/
|
|
14
20
|
static patchSettingsProfile({ requestBody, }: {
|
|
@@ -17,16 +23,26 @@ export declare class SettingsService {
|
|
|
17
23
|
lastName?: string;
|
|
18
24
|
credentials?: (string | null);
|
|
19
25
|
};
|
|
20
|
-
}): CancelablePromise<
|
|
26
|
+
}): CancelablePromise<{
|
|
27
|
+
success: boolean;
|
|
28
|
+
data?: any;
|
|
29
|
+
error?: string;
|
|
30
|
+
}>;
|
|
21
31
|
/**
|
|
22
32
|
* Get practice
|
|
23
33
|
* Get practice settings including tenant-level and user-level fields
|
|
34
|
+
* @returns any Response for status 200
|
|
24
35
|
* @throws ApiError
|
|
25
36
|
*/
|
|
26
|
-
static getSettingsPractice(): CancelablePromise<
|
|
37
|
+
static getSettingsPractice(): CancelablePromise<{
|
|
38
|
+
success: boolean;
|
|
39
|
+
data?: any;
|
|
40
|
+
error?: string;
|
|
41
|
+
}>;
|
|
27
42
|
/**
|
|
28
43
|
* Update practice
|
|
29
44
|
* Update practice settings. Tenant-level fields require MANAGE_TENANT_SETTINGS permission.
|
|
45
|
+
* @returns any Response for status 200
|
|
30
46
|
* @throws ApiError
|
|
31
47
|
*/
|
|
32
48
|
static patchSettingsPractice({ requestBody, }: {
|
|
@@ -47,16 +63,26 @@ export declare class SettingsService {
|
|
|
47
63
|
populations?: Array<string>;
|
|
48
64
|
languages?: Array<string>;
|
|
49
65
|
};
|
|
50
|
-
}): CancelablePromise<
|
|
66
|
+
}): CancelablePromise<{
|
|
67
|
+
success: boolean;
|
|
68
|
+
data?: any;
|
|
69
|
+
error?: string;
|
|
70
|
+
}>;
|
|
51
71
|
/**
|
|
52
72
|
* Get availability
|
|
53
73
|
* Get working hours, session duration, and breaks
|
|
74
|
+
* @returns any Response for status 200
|
|
54
75
|
* @throws ApiError
|
|
55
76
|
*/
|
|
56
|
-
static getSettingsAvailability(): CancelablePromise<
|
|
77
|
+
static getSettingsAvailability(): CancelablePromise<{
|
|
78
|
+
success: boolean;
|
|
79
|
+
data?: any;
|
|
80
|
+
error?: string;
|
|
81
|
+
}>;
|
|
57
82
|
/**
|
|
58
83
|
* Update availability
|
|
59
84
|
* Update working hours, session duration, and breaks
|
|
85
|
+
* @returns any Response for status 200
|
|
60
86
|
* @throws ApiError
|
|
61
87
|
*/
|
|
62
88
|
static patchSettingsAvailability({ requestBody, }: {
|
|
@@ -73,16 +99,26 @@ export declare class SettingsService {
|
|
|
73
99
|
end: string;
|
|
74
100
|
} | null);
|
|
75
101
|
};
|
|
76
|
-
}): CancelablePromise<
|
|
102
|
+
}): CancelablePromise<{
|
|
103
|
+
success: boolean;
|
|
104
|
+
data?: any;
|
|
105
|
+
error?: string;
|
|
106
|
+
}>;
|
|
77
107
|
/**
|
|
78
108
|
* Get notifications
|
|
79
109
|
* Get notification preferences for email, SMS, and quiet hours
|
|
110
|
+
* @returns any Response for status 200
|
|
80
111
|
* @throws ApiError
|
|
81
112
|
*/
|
|
82
|
-
static getSettingsNotifications(): CancelablePromise<
|
|
113
|
+
static getSettingsNotifications(): CancelablePromise<{
|
|
114
|
+
success: boolean;
|
|
115
|
+
data?: any;
|
|
116
|
+
error?: string;
|
|
117
|
+
}>;
|
|
83
118
|
/**
|
|
84
119
|
* Update notifications
|
|
85
120
|
* Update notification preferences for email, SMS, and quiet hours
|
|
121
|
+
* @returns any Response for status 200
|
|
86
122
|
* @throws ApiError
|
|
87
123
|
*/
|
|
88
124
|
static patchSettingsNotifications({ requestBody, }: {
|
|
@@ -102,6 +138,10 @@ export declare class SettingsService {
|
|
|
102
138
|
quietHoursStart?: (string | null);
|
|
103
139
|
quietHoursEnd?: (string | null);
|
|
104
140
|
};
|
|
105
|
-
}): CancelablePromise<
|
|
141
|
+
}): CancelablePromise<{
|
|
142
|
+
success: boolean;
|
|
143
|
+
data?: any;
|
|
144
|
+
error?: string;
|
|
145
|
+
}>;
|
|
106
146
|
}
|
|
107
147
|
//# sourceMappingURL=SettingsService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SettingsService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/SettingsService.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAGnE,qBAAa,eAAe;IACxB
|
|
1
|
+
{"version":3,"file":"SettingsService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/SettingsService.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,6 +4,7 @@ export class SettingsService {
|
|
|
4
4
|
/**
|
|
5
5
|
* Get profile
|
|
6
6
|
* Get user profile information (name, email, credentials)
|
|
7
|
+
* @returns any Response for status 200
|
|
7
8
|
* @throws ApiError
|
|
8
9
|
*/
|
|
9
10
|
static getSettingsProfile() {
|
|
@@ -15,6 +16,7 @@ export class SettingsService {
|
|
|
15
16
|
/**
|
|
16
17
|
* Update profile
|
|
17
18
|
* Update user profile information (name, credentials)
|
|
19
|
+
* @returns any Response for status 200
|
|
18
20
|
* @throws ApiError
|
|
19
21
|
*/
|
|
20
22
|
static patchSettingsProfile({ requestBody, }) {
|
|
@@ -28,6 +30,7 @@ export class SettingsService {
|
|
|
28
30
|
/**
|
|
29
31
|
* Get practice
|
|
30
32
|
* Get practice settings including tenant-level and user-level fields
|
|
33
|
+
* @returns any Response for status 200
|
|
31
34
|
* @throws ApiError
|
|
32
35
|
*/
|
|
33
36
|
static getSettingsPractice() {
|
|
@@ -39,6 +42,7 @@ export class SettingsService {
|
|
|
39
42
|
/**
|
|
40
43
|
* Update practice
|
|
41
44
|
* Update practice settings. Tenant-level fields require MANAGE_TENANT_SETTINGS permission.
|
|
45
|
+
* @returns any Response for status 200
|
|
42
46
|
* @throws ApiError
|
|
43
47
|
*/
|
|
44
48
|
static patchSettingsPractice({ requestBody, }) {
|
|
@@ -52,6 +56,7 @@ export class SettingsService {
|
|
|
52
56
|
/**
|
|
53
57
|
* Get availability
|
|
54
58
|
* Get working hours, session duration, and breaks
|
|
59
|
+
* @returns any Response for status 200
|
|
55
60
|
* @throws ApiError
|
|
56
61
|
*/
|
|
57
62
|
static getSettingsAvailability() {
|
|
@@ -63,6 +68,7 @@ export class SettingsService {
|
|
|
63
68
|
/**
|
|
64
69
|
* Update availability
|
|
65
70
|
* Update working hours, session duration, and breaks
|
|
71
|
+
* @returns any Response for status 200
|
|
66
72
|
* @throws ApiError
|
|
67
73
|
*/
|
|
68
74
|
static patchSettingsAvailability({ requestBody, }) {
|
|
@@ -76,6 +82,7 @@ export class SettingsService {
|
|
|
76
82
|
/**
|
|
77
83
|
* Get notifications
|
|
78
84
|
* Get notification preferences for email, SMS, and quiet hours
|
|
85
|
+
* @returns any Response for status 200
|
|
79
86
|
* @throws ApiError
|
|
80
87
|
*/
|
|
81
88
|
static getSettingsNotifications() {
|
|
@@ -87,6 +94,7 @@ export class SettingsService {
|
|
|
87
94
|
/**
|
|
88
95
|
* Update notifications
|
|
89
96
|
* Update notification preferences for email, SMS, and quiet hours
|
|
97
|
+
* @returns any Response for status 200
|
|
90
98
|
* @throws ApiError
|
|
91
99
|
*/
|
|
92
100
|
static patchSettingsNotifications({ requestBody, }) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SettingsService.js","sourceRoot":"","sources":["../../../src/generated/services/SettingsService.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,MAAM,OAAO,eAAe;IACxB
|
|
1
|
+
{"version":3,"file":"SettingsService.js","sourceRoot":"","sources":["../../../src/generated/services/SettingsService.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,MAAM,OAAO,eAAe;IACxB;;;;;OAKG;IACI,MAAM,CAAC,kBAAkB;QAK5B,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,mBAAmB;SAC3B,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,oBAAoB,CAAC,EAC/B,WAAW,GAOd;QAKG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,OAAO;YACf,GAAG,EAAE,mBAAmB;YACxB,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,kBAAkB;SAChC,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,mBAAmB;QAK7B,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oBAAoB;SAC5B,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,qBAAqB,CAAC,EAChC,WAAW,GAmBd;QAKG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,OAAO;YACf,GAAG,EAAE,oBAAoB;YACzB,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,kBAAkB;SAChC,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,uBAAuB;QAKjC,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,wBAAwB;SAChC,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,yBAAyB,CAAC,EACpC,WAAW,GAed;QAKG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,OAAO;YACf,GAAG,EAAE,wBAAwB;YAC7B,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,kBAAkB;SAChC,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,wBAAwB;QAKlC,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,yBAAyB;SACjC,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,0BAA0B,CAAC,EACrC,WAAW,GAkBd;QAKG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,OAAO;YACf,GAAG,EAAE,yBAAyB;YAC9B,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,kBAAkB;SAChC,CAAC,CAAC;IACP,CAAC;CACJ"}
|
|
@@ -3,16 +3,22 @@ export declare class SuperbillCodesService {
|
|
|
3
3
|
/**
|
|
4
4
|
* List superbill codes
|
|
5
5
|
* List therapist's configured superbill codes
|
|
6
|
+
* @returns any Response for status 200
|
|
6
7
|
* @throws ApiError
|
|
7
8
|
*/
|
|
8
9
|
static getSuperbillCodes({ codeType, category, activeOnly, }: {
|
|
9
10
|
codeType?: 'CPT4' | 'ICD10' | 'HCPCS';
|
|
10
11
|
category?: string;
|
|
11
12
|
activeOnly?: string;
|
|
12
|
-
}): CancelablePromise<
|
|
13
|
+
}): CancelablePromise<{
|
|
14
|
+
success: boolean;
|
|
15
|
+
data?: any;
|
|
16
|
+
error?: string;
|
|
17
|
+
}>;
|
|
13
18
|
/**
|
|
14
19
|
* Configure superbill code
|
|
15
20
|
* Add a new superbill code configuration
|
|
21
|
+
* @returns any Response for status 200
|
|
16
22
|
* @throws ApiError
|
|
17
23
|
*/
|
|
18
24
|
static postSuperbillCodes({ requestBody, }: {
|
|
@@ -24,19 +30,29 @@ export declare class SuperbillCodesService {
|
|
|
24
30
|
defaultFee?: number;
|
|
25
31
|
displayOrder?: (string | number);
|
|
26
32
|
};
|
|
27
|
-
}): CancelablePromise<
|
|
33
|
+
}): CancelablePromise<{
|
|
34
|
+
success: boolean;
|
|
35
|
+
data?: any;
|
|
36
|
+
error?: string;
|
|
37
|
+
}>;
|
|
28
38
|
/**
|
|
29
39
|
* Search ICD-10 codes
|
|
30
40
|
* Search ICD-10 diagnosis codes
|
|
41
|
+
* @returns any Response for status 200
|
|
31
42
|
* @throws ApiError
|
|
32
43
|
*/
|
|
33
44
|
static getSuperbillCodesSearchIcd10({ q, limit, }: {
|
|
34
45
|
q?: string;
|
|
35
46
|
limit?: string;
|
|
36
|
-
}): CancelablePromise<
|
|
47
|
+
}): CancelablePromise<{
|
|
48
|
+
success: boolean;
|
|
49
|
+
data?: any;
|
|
50
|
+
error?: string;
|
|
51
|
+
}>;
|
|
37
52
|
/**
|
|
38
53
|
* Update superbill code
|
|
39
54
|
* Update an existing superbill code
|
|
55
|
+
* @returns any Response for status 200
|
|
40
56
|
* @throws ApiError
|
|
41
57
|
*/
|
|
42
58
|
static patchSuperbillCodesById({ id, requestBody, }: {
|
|
@@ -47,14 +63,22 @@ export declare class SuperbillCodesService {
|
|
|
47
63
|
displayOrder?: (string | number);
|
|
48
64
|
active?: boolean;
|
|
49
65
|
};
|
|
50
|
-
}): CancelablePromise<
|
|
66
|
+
}): CancelablePromise<{
|
|
67
|
+
success: boolean;
|
|
68
|
+
data?: any;
|
|
69
|
+
error?: string;
|
|
70
|
+
}>;
|
|
51
71
|
/**
|
|
52
72
|
* Delete superbill code
|
|
53
73
|
* Delete a superbill code
|
|
74
|
+
* @returns any Response for status 200
|
|
54
75
|
* @throws ApiError
|
|
55
76
|
*/
|
|
56
77
|
static deleteSuperbillCodesById({ id, }: {
|
|
57
78
|
id: string;
|
|
58
|
-
}): CancelablePromise<
|
|
79
|
+
}): CancelablePromise<{
|
|
80
|
+
success: boolean;
|
|
81
|
+
message: string;
|
|
82
|
+
}>;
|
|
59
83
|
}
|
|
60
84
|
//# sourceMappingURL=SuperbillCodesService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SuperbillCodesService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/SuperbillCodesService.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAGnE,qBAAa,qBAAqB;IAC9B
|
|
1
|
+
{"version":3,"file":"SuperbillCodesService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/SuperbillCodesService.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAGnE,qBAAa,qBAAqB;IAC9B;;;;;OAKG;WACW,iBAAiB,CAAC,EAC5B,QAAQ,EACR,QAAQ,EACR,UAAU,GACb,EAAE;QACC,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,OAAO,CAAC;QACtC,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,UAAU,CAAC,EAAE,MAAM,CAAC;KACvB,GAAG,iBAAiB,CAAC;QAClB,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,CAAC,EAAE,GAAG,CAAC;QACX,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAWF;;;;;OAKG;WACW,kBAAkB,CAAC,EAC7B,WAAW,GACd,EAAE;QACC,WAAW,EAAE;YACT,QAAQ,EAAE,MAAM,GAAG,OAAO,GAAG,OAAO,CAAC;YACrC,IAAI,EAAE,MAAM,CAAC;YACb,WAAW,EAAE,MAAM,CAAC;YACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;YAClB,UAAU,CAAC,EAAE,MAAM,CAAC;YACpB,YAAY,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;SACpC,CAAC;KACL,GAAG,iBAAiB,CAAC;QAClB,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,CAAC,EAAE,GAAG,CAAC;QACX,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAQF;;;;;OAKG;WACW,4BAA4B,CAAC,EACvC,CAAC,EACD,KAAK,GACR,EAAE;QACC,CAAC,CAAC,EAAE,MAAM,CAAC;QACX,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,GAAG,iBAAiB,CAAC;QAClB,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,CAAC,EAAE,GAAG,CAAC;QACX,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAUF;;;;;OAKG;WACW,uBAAuB,CAAC,EAClC,EAAE,EACF,WAAW,GACd,EAAE;QACC,EAAE,EAAE,MAAM,CAAC;QACX,WAAW,EAAE;YACT,UAAU,CAAC,EAAE,MAAM,CAAC;YACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;YAClB,YAAY,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;YACjC,MAAM,CAAC,EAAE,OAAO,CAAC;SACpB,CAAC;KACL,GAAG,iBAAiB,CAAC;QAClB,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,CAAC,EAAE,GAAG,CAAC;QACX,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAWF;;;;;OAKG;WACW,wBAAwB,CAAC,EACnC,EAAE,GACL,EAAE;QACC,EAAE,EAAE,MAAM,CAAC;KACd,GAAG,iBAAiB,CAAC;QAClB,OAAO,EAAE,OAAO,CAAC;QACjB,OAAO,EAAE,MAAM,CAAC;KACnB,CAAC;CASL"}
|
|
@@ -4,6 +4,7 @@ export class SuperbillCodesService {
|
|
|
4
4
|
/**
|
|
5
5
|
* List superbill codes
|
|
6
6
|
* List therapist's configured superbill codes
|
|
7
|
+
* @returns any Response for status 200
|
|
7
8
|
* @throws ApiError
|
|
8
9
|
*/
|
|
9
10
|
static getSuperbillCodes({ codeType, category, activeOnly, }) {
|
|
@@ -20,6 +21,7 @@ export class SuperbillCodesService {
|
|
|
20
21
|
/**
|
|
21
22
|
* Configure superbill code
|
|
22
23
|
* Add a new superbill code configuration
|
|
24
|
+
* @returns any Response for status 200
|
|
23
25
|
* @throws ApiError
|
|
24
26
|
*/
|
|
25
27
|
static postSuperbillCodes({ requestBody, }) {
|
|
@@ -33,6 +35,7 @@ export class SuperbillCodesService {
|
|
|
33
35
|
/**
|
|
34
36
|
* Search ICD-10 codes
|
|
35
37
|
* Search ICD-10 diagnosis codes
|
|
38
|
+
* @returns any Response for status 200
|
|
36
39
|
* @throws ApiError
|
|
37
40
|
*/
|
|
38
41
|
static getSuperbillCodesSearchIcd10({ q, limit, }) {
|
|
@@ -48,6 +51,7 @@ export class SuperbillCodesService {
|
|
|
48
51
|
/**
|
|
49
52
|
* Update superbill code
|
|
50
53
|
* Update an existing superbill code
|
|
54
|
+
* @returns any Response for status 200
|
|
51
55
|
* @throws ApiError
|
|
52
56
|
*/
|
|
53
57
|
static patchSuperbillCodesById({ id, requestBody, }) {
|
|
@@ -64,6 +68,7 @@ export class SuperbillCodesService {
|
|
|
64
68
|
/**
|
|
65
69
|
* Delete superbill code
|
|
66
70
|
* Delete a superbill code
|
|
71
|
+
* @returns any Response for status 200
|
|
67
72
|
* @throws ApiError
|
|
68
73
|
*/
|
|
69
74
|
static deleteSuperbillCodesById({ id, }) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SuperbillCodesService.js","sourceRoot":"","sources":["../../../src/generated/services/SuperbillCodesService.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,MAAM,OAAO,qBAAqB;IAC9B
|
|
1
|
+
{"version":3,"file":"SuperbillCodesService.js","sourceRoot":"","sources":["../../../src/generated/services/SuperbillCodesService.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,MAAM,OAAO,qBAAqB;IAC9B;;;;;OAKG;IACI,MAAM,CAAC,iBAAiB,CAAC,EAC5B,QAAQ,EACR,QAAQ,EACR,UAAU,GAKb;QAKG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,kBAAkB;YACvB,KAAK,EAAE;gBACH,UAAU,EAAE,QAAQ;gBACpB,UAAU,EAAE,QAAQ;gBACpB,YAAY,EAAE,UAAU;aAC3B;SACJ,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,kBAAkB,CAAC,EAC7B,WAAW,GAUd;QAKG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,MAAM;YACd,GAAG,EAAE,kBAAkB;YACvB,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,kBAAkB;SAChC,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,4BAA4B,CAAC,EACvC,CAAC,EACD,KAAK,GAIR;QAKG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,+BAA+B;YACpC,KAAK,EAAE;gBACH,GAAG,EAAE,CAAC;gBACN,OAAO,EAAE,KAAK;aACjB;SACJ,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,uBAAuB,CAAC,EAClC,EAAE,EACF,WAAW,GASd;QAKG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,OAAO;YACf,GAAG,EAAE,uBAAuB;YAC5B,IAAI,EAAE;gBACF,IAAI,EAAE,EAAE;aACX;YACD,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,kBAAkB;SAChC,CAAC,CAAC;IACP,CAAC;IACD;;;;;OAKG;IACI,MAAM,CAAC,wBAAwB,CAAC,EACnC,EAAE,GAGL;QAIG,OAAO,SAAS,CAAC,OAAO,EAAE;YACtB,MAAM,EAAE,QAAQ;YAChB,GAAG,EAAE,uBAAuB;YAC5B,IAAI,EAAE;gBACF,IAAI,EAAE,EAAE;aACX;SACJ,CAAC,CAAC;IACP,CAAC;CACJ"}
|
|
@@ -3,22 +3,32 @@ export declare class SuperbillsService {
|
|
|
3
3
|
/**
|
|
4
4
|
* Get superbill
|
|
5
5
|
* Get superbill by ID
|
|
6
|
+
* @returns any Response for status 200
|
|
6
7
|
* @throws ApiError
|
|
7
8
|
*/
|
|
8
9
|
static getSuperbillsById({ id, }: {
|
|
9
10
|
id: string;
|
|
10
|
-
}): CancelablePromise<
|
|
11
|
+
}): CancelablePromise<{
|
|
12
|
+
success: boolean;
|
|
13
|
+
data?: any;
|
|
14
|
+
error?: string;
|
|
15
|
+
}>;
|
|
11
16
|
/**
|
|
12
17
|
* Delete superbill
|
|
13
18
|
* Delete a superbill
|
|
19
|
+
* @returns any Response for status 200
|
|
14
20
|
* @throws ApiError
|
|
15
21
|
*/
|
|
16
22
|
static deleteSuperbillsById({ id, }: {
|
|
17
23
|
id: string;
|
|
18
|
-
}): CancelablePromise<
|
|
24
|
+
}): CancelablePromise<{
|
|
25
|
+
success: boolean;
|
|
26
|
+
message: string;
|
|
27
|
+
}>;
|
|
19
28
|
/**
|
|
20
29
|
* List superbills
|
|
21
30
|
* List superbills with filters
|
|
31
|
+
* @returns any Response for status 200
|
|
22
32
|
* @throws ApiError
|
|
23
33
|
*/
|
|
24
34
|
static getSuperbills({ clientId, status, dateRangeStart, dateRangeEnd, limit, offset, }: {
|
|
@@ -28,10 +38,16 @@ export declare class SuperbillsService {
|
|
|
28
38
|
dateRangeEnd?: string;
|
|
29
39
|
limit?: string;
|
|
30
40
|
offset?: string;
|
|
31
|
-
}): CancelablePromise<
|
|
41
|
+
}): CancelablePromise<{
|
|
42
|
+
success: boolean;
|
|
43
|
+
data?: any;
|
|
44
|
+
error?: string;
|
|
45
|
+
total?: number;
|
|
46
|
+
}>;
|
|
32
47
|
/**
|
|
33
48
|
* Create superbill
|
|
34
49
|
* Create a new superbill for a client
|
|
50
|
+
* @returns any Response for status 200
|
|
35
51
|
* @throws ApiError
|
|
36
52
|
*/
|
|
37
53
|
static postSuperbills({ requestBody, }: {
|
|
@@ -40,18 +56,28 @@ export declare class SuperbillsService {
|
|
|
40
56
|
dateRangeStart: string;
|
|
41
57
|
dateRangeEnd: string;
|
|
42
58
|
};
|
|
43
|
-
}): CancelablePromise<
|
|
59
|
+
}): CancelablePromise<{
|
|
60
|
+
success: boolean;
|
|
61
|
+
data?: any;
|
|
62
|
+
error?: string;
|
|
63
|
+
}>;
|
|
44
64
|
/**
|
|
45
65
|
* Get AI code suggestions
|
|
46
66
|
* Get AI-powered code suggestions for a session
|
|
67
|
+
* @returns any Response for status 200
|
|
47
68
|
* @throws ApiError
|
|
48
69
|
*/
|
|
49
70
|
static getSuperbillsAiSuggestCodes({ sessionId, }: {
|
|
50
71
|
sessionId: string;
|
|
51
|
-
}): CancelablePromise<
|
|
72
|
+
}): CancelablePromise<{
|
|
73
|
+
success: boolean;
|
|
74
|
+
data?: any;
|
|
75
|
+
error?: string;
|
|
76
|
+
}>;
|
|
52
77
|
/**
|
|
53
78
|
* Add billing entry
|
|
54
79
|
* Add a billing entry to a superbill
|
|
80
|
+
* @returns any Response for status 200
|
|
55
81
|
* @throws ApiError
|
|
56
82
|
*/
|
|
57
83
|
static postSuperbillsByIdBillingEntries({ id, requestBody, }: {
|
|
@@ -66,10 +92,15 @@ export declare class SuperbillsService {
|
|
|
66
92
|
fee?: number;
|
|
67
93
|
diagnosisCodes?: Array<string>;
|
|
68
94
|
};
|
|
69
|
-
}): CancelablePromise<
|
|
95
|
+
}): CancelablePromise<{
|
|
96
|
+
success: boolean;
|
|
97
|
+
data?: any;
|
|
98
|
+
error?: string;
|
|
99
|
+
}>;
|
|
70
100
|
/**
|
|
71
101
|
* Update billing entry
|
|
72
102
|
* Update an existing billing entry
|
|
103
|
+
* @returns any Response for status 200
|
|
73
104
|
* @throws ApiError
|
|
74
105
|
*/
|
|
75
106
|
static patchSuperbillsByIdBillingEntriesByEntryId({ id, entryId, requestBody, }: {
|
|
@@ -81,39 +112,63 @@ export declare class SuperbillsService {
|
|
|
81
112
|
diagnosisCodes?: Array<string>;
|
|
82
113
|
modifier?: string;
|
|
83
114
|
};
|
|
84
|
-
}): CancelablePromise<
|
|
115
|
+
}): CancelablePromise<{
|
|
116
|
+
success: boolean;
|
|
117
|
+
data?: any;
|
|
118
|
+
error?: string;
|
|
119
|
+
}>;
|
|
85
120
|
/**
|
|
86
121
|
* Remove billing entry
|
|
87
122
|
* Remove a billing entry from a superbill
|
|
123
|
+
* @returns any Response for status 200
|
|
88
124
|
* @throws ApiError
|
|
89
125
|
*/
|
|
90
126
|
static deleteSuperbillsByIdBillingEntriesByEntryId({ id, entryId, }: {
|
|
91
127
|
id: string;
|
|
92
128
|
entryId: string;
|
|
93
|
-
}): CancelablePromise<
|
|
129
|
+
}): CancelablePromise<{
|
|
130
|
+
success: boolean;
|
|
131
|
+
message: string;
|
|
132
|
+
}>;
|
|
94
133
|
/**
|
|
95
134
|
* Generate HTML superbill
|
|
96
135
|
* Generate HTML version of superbill
|
|
136
|
+
* @returns any Response for status 200
|
|
97
137
|
* @throws ApiError
|
|
98
138
|
*/
|
|
99
139
|
static postSuperbillsByIdGenerateHtml({ id, }: {
|
|
100
140
|
id: string;
|
|
101
|
-
}): CancelablePromise<
|
|
141
|
+
}): CancelablePromise<{
|
|
142
|
+
success: boolean;
|
|
143
|
+
data: {
|
|
144
|
+
html: string;
|
|
145
|
+
};
|
|
146
|
+
}>;
|
|
102
147
|
/**
|
|
103
148
|
* Generate PDF superbill
|
|
104
149
|
* Generate PDF version of superbill (BASIC tier)
|
|
150
|
+
* @returns any Response for status 200
|
|
105
151
|
* @throws ApiError
|
|
106
152
|
*/
|
|
107
153
|
static postSuperbillsByIdGeneratePdf({ id, }: {
|
|
108
154
|
id: string;
|
|
109
|
-
}): CancelablePromise<
|
|
155
|
+
}): CancelablePromise<{
|
|
156
|
+
success: boolean;
|
|
157
|
+
data: {
|
|
158
|
+
pdfUrl: string;
|
|
159
|
+
};
|
|
160
|
+
}>;
|
|
110
161
|
/**
|
|
111
162
|
* Send superbill email
|
|
112
163
|
* Send superbill to client via email
|
|
164
|
+
* @returns any Response for status 200
|
|
113
165
|
* @throws ApiError
|
|
114
166
|
*/
|
|
115
167
|
static postSuperbillsByIdSendEmail({ id, }: {
|
|
116
168
|
id: string;
|
|
117
|
-
}): CancelablePromise<
|
|
169
|
+
}): CancelablePromise<{
|
|
170
|
+
success: boolean;
|
|
171
|
+
message: string;
|
|
172
|
+
}>;
|
|
118
173
|
}
|
|
119
174
|
//# sourceMappingURL=SuperbillsService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SuperbillsService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/SuperbillsService.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAGnE,qBAAa,iBAAiB;IAC1B
|
|
1
|
+
{"version":3,"file":"SuperbillsService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/SuperbillsService.ts"],"names":[],"mappings":"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"}
|