@liaisongroup/assist-api-js-client 1.5.60 → 1.5.62
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/openapi.d.ts +455 -5
- package/dist/openapi.json +1407 -287
- package/dist/openapi.zod.d.ts +2523 -756
- package/dist/openapi.zod.js +95 -9
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ declare namespace Components {
|
|
|
21
21
|
links: Links;
|
|
22
22
|
included?: ActionInclusions;
|
|
23
23
|
}
|
|
24
|
-
export type ActionAttributes = InternalEventAction | CalculationAction | UpdateResourceAction;
|
|
24
|
+
export type ActionAttributes = InternalEventAction | CalculationAction | UpdateResourceAction | CreateOrUpdateCaseAction;
|
|
25
25
|
export interface ActionData {
|
|
26
26
|
type: "action";
|
|
27
27
|
id: string; // uuid
|
|
@@ -59,7 +59,7 @@ declare namespace Components {
|
|
|
59
59
|
id: string;
|
|
60
60
|
attributes: ActionTypeAttributes;
|
|
61
61
|
}
|
|
62
|
-
export type ActionTypeInputsOutputs = ("resource_instance" | "value")[];
|
|
62
|
+
export type ActionTypeInputsOutputs = ("resource_instance" | "value" | "attributes")[];
|
|
63
63
|
export interface ActionTypes {
|
|
64
64
|
data: ActionTypeData[];
|
|
65
65
|
meta: Meta;
|
|
@@ -112,6 +112,7 @@ declare namespace Components {
|
|
|
112
112
|
attributes: {
|
|
113
113
|
user_name?: string;
|
|
114
114
|
target_type?: "Case" | "Note" | "Tag" | "Task";
|
|
115
|
+
target_id?: null | string /* uuid */;
|
|
115
116
|
target_name?: string;
|
|
116
117
|
event_type?: "create" | "destroy" | "update";
|
|
117
118
|
event_reason?: null | string;
|
|
@@ -231,7 +232,7 @@ declare namespace Components {
|
|
|
231
232
|
links: Links;
|
|
232
233
|
}
|
|
233
234
|
export interface ConfigAttributes {
|
|
234
|
-
value?: null | string | boolean |
|
|
235
|
+
value?: null | string | boolean | any[] | number;
|
|
235
236
|
}
|
|
236
237
|
export interface ConfigData {
|
|
237
238
|
type: "config";
|
|
@@ -243,6 +244,24 @@ declare namespace Components {
|
|
|
243
244
|
meta: Meta;
|
|
244
245
|
links: Links;
|
|
245
246
|
}
|
|
247
|
+
export interface CreateOrUpdateCaseAction {
|
|
248
|
+
name?: string;
|
|
249
|
+
updated_at?: string; // date-time
|
|
250
|
+
created_at?: string; // date-time
|
|
251
|
+
active?: boolean;
|
|
252
|
+
trigger_id?: string; // uuid
|
|
253
|
+
action_type?: "create_or_update_case";
|
|
254
|
+
config?: {
|
|
255
|
+
/**
|
|
256
|
+
* The fields that are used to identify the case. If no identifying fields are provided, a new case will be created.
|
|
257
|
+
*/
|
|
258
|
+
identifying_fields: string[];
|
|
259
|
+
/**
|
|
260
|
+
* The template ID of the case to create or update.
|
|
261
|
+
*/
|
|
262
|
+
template_id: string; // uuid
|
|
263
|
+
};
|
|
264
|
+
}
|
|
246
265
|
/**
|
|
247
266
|
* Applied when the field_type is `integer` - sets the currency to display the field in.
|
|
248
267
|
*
|
|
@@ -761,6 +780,30 @@ declare namespace Components {
|
|
|
761
780
|
}[];
|
|
762
781
|
links?: Links;
|
|
763
782
|
}
|
|
783
|
+
export interface HL7Message {
|
|
784
|
+
data: HL7MessageData;
|
|
785
|
+
links: Links;
|
|
786
|
+
}
|
|
787
|
+
export interface HL7MessageAttributes {
|
|
788
|
+
message_id?: string;
|
|
789
|
+
body?: string;
|
|
790
|
+
retain?: boolean;
|
|
791
|
+
created_at?: string; // date-time
|
|
792
|
+
updated_at?: string; // date-time
|
|
793
|
+
}
|
|
794
|
+
export interface HL7MessageData {
|
|
795
|
+
type: "hl7_message";
|
|
796
|
+
id: string; // uuid
|
|
797
|
+
attributes: HL7MessageAttributes;
|
|
798
|
+
}
|
|
799
|
+
export interface HL7MessageUpdateAttributes {
|
|
800
|
+
retain?: boolean;
|
|
801
|
+
}
|
|
802
|
+
export interface HL7Messages {
|
|
803
|
+
data: HL7MessageData[];
|
|
804
|
+
meta: Meta;
|
|
805
|
+
links: Links;
|
|
806
|
+
}
|
|
764
807
|
export interface IdAttribute {
|
|
765
808
|
id?: string; // uuid
|
|
766
809
|
}
|
|
@@ -784,7 +827,7 @@ declare namespace Components {
|
|
|
784
827
|
}[];
|
|
785
828
|
};
|
|
786
829
|
}
|
|
787
|
-
export type KnownConfigIDs = "
|
|
830
|
+
export type KnownConfigIDs = "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_delete_reasons";
|
|
788
831
|
export interface Links {
|
|
789
832
|
self?: string;
|
|
790
833
|
current?: string;
|
|
@@ -1132,6 +1175,35 @@ declare namespace Components {
|
|
|
1132
1175
|
*/
|
|
1133
1176
|
client_secret: string;
|
|
1134
1177
|
}
|
|
1178
|
+
export interface PushSubscription {
|
|
1179
|
+
data: PushSubscriptionData;
|
|
1180
|
+
links: Links;
|
|
1181
|
+
}
|
|
1182
|
+
export interface PushSubscriptionAttributes {
|
|
1183
|
+
/**
|
|
1184
|
+
* The endpoint URL for the push subscription
|
|
1185
|
+
*/
|
|
1186
|
+
endpoint: string; // uri
|
|
1187
|
+
/**
|
|
1188
|
+
* The p256dh public key for message encryption
|
|
1189
|
+
*/
|
|
1190
|
+
p256dh_key: string;
|
|
1191
|
+
/**
|
|
1192
|
+
* The auth secret for message encryption
|
|
1193
|
+
*/
|
|
1194
|
+
auth_key: string;
|
|
1195
|
+
created_at?: string; // date-time
|
|
1196
|
+
updated_at?: string; // date-time
|
|
1197
|
+
}
|
|
1198
|
+
export interface PushSubscriptionData {
|
|
1199
|
+
type: "push_subscription";
|
|
1200
|
+
id: string; // uuid
|
|
1201
|
+
attributes: PushSubscriptionAttributes;
|
|
1202
|
+
relationships: PushSubscriptionRelationships;
|
|
1203
|
+
}
|
|
1204
|
+
export interface PushSubscriptionRelationships {
|
|
1205
|
+
user?: UserRelationship;
|
|
1206
|
+
}
|
|
1135
1207
|
export interface RefreshTokenGrant {
|
|
1136
1208
|
grant_type?: "refresh_token";
|
|
1137
1209
|
/**
|
|
@@ -1410,6 +1482,9 @@ declare namespace Components {
|
|
|
1410
1482
|
id?: string; // uuid
|
|
1411
1483
|
}[];
|
|
1412
1484
|
}
|
|
1485
|
+
export interface SimpleError {
|
|
1486
|
+
error: string;
|
|
1487
|
+
}
|
|
1413
1488
|
export type StructuredValues = {
|
|
1414
1489
|
field_key?: string;
|
|
1415
1490
|
field_type?: "string" | "integer" | "boolean" | "date" | "time" | "datetime" | "float" | "resource" | "composite";
|
|
@@ -1840,7 +1915,7 @@ declare namespace Components {
|
|
|
1840
1915
|
}[];
|
|
1841
1916
|
links?: Links;
|
|
1842
1917
|
}
|
|
1843
|
-
export type Type = "action" | "case" | "field" | "field_setting" | "list" | "list_saved_filter" | "note" | "notification" | "role" | "saved_filter" | "sso_config" | "tag" | "task" | "team" | "team_member" | "template" | "user";
|
|
1918
|
+
export type Type = "action" | "case" | "field" | "field_setting" | "list" | "list_saved_filter" | "note" | "notification" | "push_subscription" | "role" | "saved_filter" | "sso_config" | "tag" | "task" | "team" | "team_member" | "template" | "user";
|
|
1844
1919
|
export interface UpdateResourceAction {
|
|
1845
1920
|
name?: string;
|
|
1846
1921
|
updated_at?: string; // date-time
|
|
@@ -1973,6 +2048,7 @@ declare namespace Components {
|
|
|
1973
2048
|
roles?: RolesRelationship;
|
|
1974
2049
|
assigned_notifications?: NotificationsRelationship;
|
|
1975
2050
|
}
|
|
2051
|
+
export type UserSpecificChannel = "UserSpecificChannel";
|
|
1976
2052
|
export interface UserUpdateAttributes {
|
|
1977
2053
|
name?: UserAttributes.Properties.Name;
|
|
1978
2054
|
email?: UserAttributes.Properties.Email /* email */;
|
|
@@ -2017,6 +2093,26 @@ declare namespace Components {
|
|
|
2017
2093
|
id?: string; // uuid
|
|
2018
2094
|
}[];
|
|
2019
2095
|
}
|
|
2096
|
+
export interface XsltMap {
|
|
2097
|
+
data: XsltMapData;
|
|
2098
|
+
links?: Links;
|
|
2099
|
+
}
|
|
2100
|
+
export interface XsltMapAttributes {
|
|
2101
|
+
name?: string;
|
|
2102
|
+
xslt?: string;
|
|
2103
|
+
created_at?: string; // date-time
|
|
2104
|
+
updated_at?: string; // date-time
|
|
2105
|
+
}
|
|
2106
|
+
export interface XsltMapData {
|
|
2107
|
+
id: string; // uuid
|
|
2108
|
+
type: "xslt_map";
|
|
2109
|
+
attributes: XsltMapAttributes;
|
|
2110
|
+
}
|
|
2111
|
+
export interface XsltMaps {
|
|
2112
|
+
data: XsltMapData[];
|
|
2113
|
+
links: Links;
|
|
2114
|
+
meta: Meta;
|
|
2115
|
+
}
|
|
2020
2116
|
}
|
|
2021
2117
|
}
|
|
2022
2118
|
declare namespace Paths {
|
|
@@ -2201,6 +2297,15 @@ declare namespace Paths {
|
|
|
2201
2297
|
export type $422 = Components.Schemas.Errors;
|
|
2202
2298
|
}
|
|
2203
2299
|
}
|
|
2300
|
+
namespace CreateHl7 {
|
|
2301
|
+
export type RequestBody = string;
|
|
2302
|
+
namespace Responses {
|
|
2303
|
+
export interface $201 {
|
|
2304
|
+
}
|
|
2305
|
+
export type $401 = Components.Schemas.SimpleError;
|
|
2306
|
+
export type $422 = Components.Schemas.SimpleError;
|
|
2307
|
+
}
|
|
2308
|
+
}
|
|
2204
2309
|
namespace CreateList {
|
|
2205
2310
|
export interface RequestBody {
|
|
2206
2311
|
data: {
|
|
@@ -2245,6 +2350,19 @@ declare namespace Paths {
|
|
|
2245
2350
|
export type $422 = Components.Schemas.Errors;
|
|
2246
2351
|
}
|
|
2247
2352
|
}
|
|
2353
|
+
namespace CreatePushSubscription {
|
|
2354
|
+
export interface RequestBody {
|
|
2355
|
+
data: {
|
|
2356
|
+
attributes: Components.Schemas.PushSubscriptionAttributes;
|
|
2357
|
+
};
|
|
2358
|
+
}
|
|
2359
|
+
namespace Responses {
|
|
2360
|
+
export type $201 = Components.Schemas.PushSubscription;
|
|
2361
|
+
export type $401 = Components.Schemas.Errors;
|
|
2362
|
+
export type $403 = Components.Schemas.Errors;
|
|
2363
|
+
export type $422 = Components.Schemas.Errors;
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2248
2366
|
namespace CreateRole {
|
|
2249
2367
|
export interface RequestBody {
|
|
2250
2368
|
data: {
|
|
@@ -2374,6 +2492,19 @@ declare namespace Paths {
|
|
|
2374
2492
|
export type $422 = Components.Schemas.Errors;
|
|
2375
2493
|
}
|
|
2376
2494
|
}
|
|
2495
|
+
namespace CreateXsltMap {
|
|
2496
|
+
export interface RequestBody {
|
|
2497
|
+
data: {
|
|
2498
|
+
attributes: Components.Schemas.XsltMapAttributes;
|
|
2499
|
+
};
|
|
2500
|
+
}
|
|
2501
|
+
namespace Responses {
|
|
2502
|
+
export type $201 = Components.Schemas.XsltMap;
|
|
2503
|
+
export type $401 = Components.Schemas.Errors;
|
|
2504
|
+
export type $403 = Components.Schemas.Errors;
|
|
2505
|
+
export type $422 = Components.Schemas.Errors;
|
|
2506
|
+
}
|
|
2507
|
+
}
|
|
2377
2508
|
namespace DeleteAction {
|
|
2378
2509
|
namespace Parameters {
|
|
2379
2510
|
export type Id = string; // uuid
|
|
@@ -2434,6 +2565,21 @@ declare namespace Paths {
|
|
|
2434
2565
|
export type $404 = Components.Schemas.Errors;
|
|
2435
2566
|
}
|
|
2436
2567
|
}
|
|
2568
|
+
namespace DeleteHl7Message {
|
|
2569
|
+
namespace Parameters {
|
|
2570
|
+
export type Id = string; // uuid
|
|
2571
|
+
}
|
|
2572
|
+
export interface PathParameters {
|
|
2573
|
+
id: Parameters.Id /* uuid */;
|
|
2574
|
+
}
|
|
2575
|
+
namespace Responses {
|
|
2576
|
+
export interface $204 {
|
|
2577
|
+
}
|
|
2578
|
+
export type $401 = Components.Schemas.Errors;
|
|
2579
|
+
export type $403 = Components.Schemas.Errors;
|
|
2580
|
+
export type $404 = Components.Schemas.Errors;
|
|
2581
|
+
}
|
|
2582
|
+
}
|
|
2437
2583
|
namespace DeleteList {
|
|
2438
2584
|
namespace Parameters {
|
|
2439
2585
|
export type IdOrSlug = string; // uuid
|
|
@@ -2640,6 +2786,21 @@ declare namespace Paths {
|
|
|
2640
2786
|
export type $404 = Components.Schemas.Errors;
|
|
2641
2787
|
}
|
|
2642
2788
|
}
|
|
2789
|
+
namespace DeleteXsltMap {
|
|
2790
|
+
namespace Parameters {
|
|
2791
|
+
export type Id = string;
|
|
2792
|
+
}
|
|
2793
|
+
export interface PathParameters {
|
|
2794
|
+
id: Parameters.Id;
|
|
2795
|
+
}
|
|
2796
|
+
namespace Responses {
|
|
2797
|
+
export interface $204 {
|
|
2798
|
+
}
|
|
2799
|
+
export type $401 = Components.Schemas.Errors;
|
|
2800
|
+
export type $403 = Components.Schemas.Errors;
|
|
2801
|
+
export type $404 = Components.Schemas.Errors;
|
|
2802
|
+
}
|
|
2803
|
+
}
|
|
2643
2804
|
namespace GetAccessTokenInfo {
|
|
2644
2805
|
namespace Responses {
|
|
2645
2806
|
export interface $200 {
|
|
@@ -2805,6 +2966,27 @@ declare namespace Paths {
|
|
|
2805
2966
|
export type $403 = Components.Schemas.Errors;
|
|
2806
2967
|
}
|
|
2807
2968
|
}
|
|
2969
|
+
namespace GetHl7Message {
|
|
2970
|
+
namespace Parameters {
|
|
2971
|
+
export type Id = string; // uuid
|
|
2972
|
+
}
|
|
2973
|
+
export interface PathParameters {
|
|
2974
|
+
id: Parameters.Id /* uuid */;
|
|
2975
|
+
}
|
|
2976
|
+
namespace Responses {
|
|
2977
|
+
export type $200 = Components.Schemas.HL7Message;
|
|
2978
|
+
export type $401 = Components.Schemas.Errors;
|
|
2979
|
+
export type $403 = Components.Schemas.Errors;
|
|
2980
|
+
export type $404 = Components.Schemas.Errors;
|
|
2981
|
+
}
|
|
2982
|
+
}
|
|
2983
|
+
namespace GetHl7Messages {
|
|
2984
|
+
namespace Responses {
|
|
2985
|
+
export type $200 = Components.Schemas.HL7Messages;
|
|
2986
|
+
export type $401 = Components.Schemas.Errors;
|
|
2987
|
+
export type $403 = Components.Schemas.Errors;
|
|
2988
|
+
}
|
|
2989
|
+
}
|
|
2808
2990
|
namespace GetList {
|
|
2809
2991
|
namespace Parameters {
|
|
2810
2992
|
export type IdOrSlug = string; // uuid
|
|
@@ -3108,6 +3290,27 @@ declare namespace Paths {
|
|
|
3108
3290
|
export type $401 = Components.Schemas.Errors;
|
|
3109
3291
|
}
|
|
3110
3292
|
}
|
|
3293
|
+
namespace GetXsltMap {
|
|
3294
|
+
namespace Parameters {
|
|
3295
|
+
export type Id = string;
|
|
3296
|
+
}
|
|
3297
|
+
export interface PathParameters {
|
|
3298
|
+
id: Parameters.Id;
|
|
3299
|
+
}
|
|
3300
|
+
namespace Responses {
|
|
3301
|
+
export type $200 = Components.Schemas.XsltMap;
|
|
3302
|
+
export type $401 = Components.Schemas.Errors;
|
|
3303
|
+
export type $403 = Components.Schemas.Errors;
|
|
3304
|
+
export type $404 = Components.Schemas.Errors;
|
|
3305
|
+
}
|
|
3306
|
+
}
|
|
3307
|
+
namespace GetXsltMaps {
|
|
3308
|
+
namespace Responses {
|
|
3309
|
+
export type $200 = Components.Schemas.XsltMaps;
|
|
3310
|
+
export type $401 = Components.Schemas.Errors;
|
|
3311
|
+
export type $403 = Components.Schemas.Errors;
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3111
3314
|
namespace IntrospectAccessToken {
|
|
3112
3315
|
export interface RequestBody {
|
|
3113
3316
|
token: string; // jwt
|
|
@@ -3253,6 +3456,25 @@ declare namespace Paths {
|
|
|
3253
3456
|
}
|
|
3254
3457
|
}
|
|
3255
3458
|
}
|
|
3459
|
+
namespace UpdateHl7Message {
|
|
3460
|
+
namespace Parameters {
|
|
3461
|
+
export type Id = string; // uuid
|
|
3462
|
+
}
|
|
3463
|
+
export interface PathParameters {
|
|
3464
|
+
id: Parameters.Id /* uuid */;
|
|
3465
|
+
}
|
|
3466
|
+
export interface RequestBody {
|
|
3467
|
+
data: {
|
|
3468
|
+
attributes: Components.Schemas.HL7MessageUpdateAttributes;
|
|
3469
|
+
};
|
|
3470
|
+
}
|
|
3471
|
+
namespace Responses {
|
|
3472
|
+
export type $200 = Components.Schemas.HL7Message;
|
|
3473
|
+
export type $401 = Components.Schemas.Errors;
|
|
3474
|
+
export type $403 = Components.Schemas.Errors;
|
|
3475
|
+
export type $404 = Components.Schemas.Errors;
|
|
3476
|
+
}
|
|
3477
|
+
}
|
|
3256
3478
|
namespace UpdateList {
|
|
3257
3479
|
namespace Parameters {
|
|
3258
3480
|
export type IdOrSlug = string; // uuid
|
|
@@ -3527,6 +3749,22 @@ declare namespace Paths {
|
|
|
3527
3749
|
export type $422 = Components.Schemas.Errors;
|
|
3528
3750
|
}
|
|
3529
3751
|
}
|
|
3752
|
+
namespace UpdateXsltMap {
|
|
3753
|
+
namespace Parameters {
|
|
3754
|
+
export type Id = string;
|
|
3755
|
+
}
|
|
3756
|
+
export interface PathParameters {
|
|
3757
|
+
id: Parameters.Id;
|
|
3758
|
+
}
|
|
3759
|
+
export type RequestBody = Components.Schemas.XsltMap;
|
|
3760
|
+
namespace Responses {
|
|
3761
|
+
export type $200 = Components.Schemas.XsltMap;
|
|
3762
|
+
export type $401 = Components.Schemas.Errors;
|
|
3763
|
+
export type $403 = Components.Schemas.Errors;
|
|
3764
|
+
export type $404 = Components.Schemas.Errors;
|
|
3765
|
+
export type $422 = Components.Schemas.Errors;
|
|
3766
|
+
}
|
|
3767
|
+
}
|
|
3530
3768
|
}
|
|
3531
3769
|
|
|
3532
3770
|
|
|
@@ -4347,6 +4585,78 @@ export interface OperationMethods {
|
|
|
4347
4585
|
data?: any,
|
|
4348
4586
|
config?: AxiosRequestConfig
|
|
4349
4587
|
): OperationResponse<Paths.DeleteNotification.Responses.$204>
|
|
4588
|
+
/**
|
|
4589
|
+
* get_xslt_maps - Get XSLT maps
|
|
4590
|
+
*/
|
|
4591
|
+
'get_xslt_maps'(
|
|
4592
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4593
|
+
data?: any,
|
|
4594
|
+
config?: AxiosRequestConfig
|
|
4595
|
+
): OperationResponse<Paths.GetXsltMaps.Responses.$200>
|
|
4596
|
+
/**
|
|
4597
|
+
* create_xslt_map - Create XSLT map
|
|
4598
|
+
*/
|
|
4599
|
+
'create_xslt_map'(
|
|
4600
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4601
|
+
data?: Paths.CreateXsltMap.RequestBody,
|
|
4602
|
+
config?: AxiosRequestConfig
|
|
4603
|
+
): OperationResponse<Paths.CreateXsltMap.Responses.$201>
|
|
4604
|
+
/**
|
|
4605
|
+
* get_xslt_map - Get XSLT map
|
|
4606
|
+
*/
|
|
4607
|
+
'get_xslt_map'(
|
|
4608
|
+
parameters?: Parameters<Paths.GetXsltMap.PathParameters> | null,
|
|
4609
|
+
data?: any,
|
|
4610
|
+
config?: AxiosRequestConfig
|
|
4611
|
+
): OperationResponse<Paths.GetXsltMap.Responses.$200>
|
|
4612
|
+
/**
|
|
4613
|
+
* update_xslt_map - Update XSLT map
|
|
4614
|
+
*/
|
|
4615
|
+
'update_xslt_map'(
|
|
4616
|
+
parameters?: Parameters<Paths.UpdateXsltMap.PathParameters> | null,
|
|
4617
|
+
data?: Paths.UpdateXsltMap.RequestBody,
|
|
4618
|
+
config?: AxiosRequestConfig
|
|
4619
|
+
): OperationResponse<Paths.UpdateXsltMap.Responses.$200>
|
|
4620
|
+
/**
|
|
4621
|
+
* delete_xslt_map - Delete XSLT map
|
|
4622
|
+
*/
|
|
4623
|
+
'delete_xslt_map'(
|
|
4624
|
+
parameters?: Parameters<Paths.DeleteXsltMap.PathParameters> | null,
|
|
4625
|
+
data?: any,
|
|
4626
|
+
config?: AxiosRequestConfig
|
|
4627
|
+
): OperationResponse<Paths.DeleteXsltMap.Responses.$204>
|
|
4628
|
+
/**
|
|
4629
|
+
* get_hl7_messages - Get HL7 messages
|
|
4630
|
+
*/
|
|
4631
|
+
'get_hl7_messages'(
|
|
4632
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4633
|
+
data?: any,
|
|
4634
|
+
config?: AxiosRequestConfig
|
|
4635
|
+
): OperationResponse<Paths.GetHl7Messages.Responses.$200>
|
|
4636
|
+
/**
|
|
4637
|
+
* get_hl7_message - Get HL7 message
|
|
4638
|
+
*/
|
|
4639
|
+
'get_hl7_message'(
|
|
4640
|
+
parameters?: Parameters<Paths.GetHl7Message.PathParameters> | null,
|
|
4641
|
+
data?: any,
|
|
4642
|
+
config?: AxiosRequestConfig
|
|
4643
|
+
): OperationResponse<Paths.GetHl7Message.Responses.$200>
|
|
4644
|
+
/**
|
|
4645
|
+
* update_hl7_message - Update HL7 message
|
|
4646
|
+
*/
|
|
4647
|
+
'update_hl7_message'(
|
|
4648
|
+
parameters?: Parameters<Paths.UpdateHl7Message.PathParameters> | null,
|
|
4649
|
+
data?: Paths.UpdateHl7Message.RequestBody,
|
|
4650
|
+
config?: AxiosRequestConfig
|
|
4651
|
+
): OperationResponse<Paths.UpdateHl7Message.Responses.$200>
|
|
4652
|
+
/**
|
|
4653
|
+
* delete_hl7_message - Delete HL7 message
|
|
4654
|
+
*/
|
|
4655
|
+
'delete_hl7_message'(
|
|
4656
|
+
parameters?: Parameters<Paths.DeleteHl7Message.PathParameters> | null,
|
|
4657
|
+
data?: any,
|
|
4658
|
+
config?: AxiosRequestConfig
|
|
4659
|
+
): OperationResponse<Paths.DeleteHl7Message.Responses.$204>
|
|
4350
4660
|
/**
|
|
4351
4661
|
* atomic_operations - Perform atomic operations
|
|
4352
4662
|
*
|
|
@@ -4374,6 +4684,26 @@ export interface OperationMethods {
|
|
|
4374
4684
|
data?: Paths.CreateCsvCases.RequestBody,
|
|
4375
4685
|
config?: AxiosRequestConfig
|
|
4376
4686
|
): OperationResponse<Paths.CreateCsvCases.Responses.$201>
|
|
4687
|
+
/**
|
|
4688
|
+
* create_hl7 - Create HL7
|
|
4689
|
+
*
|
|
4690
|
+
* Submit a HL7 message to the system for queuing and consumption.
|
|
4691
|
+
* **Note** that the bearer authentication token on this endpoint is the instances HL7 API key, not an oauth token.
|
|
4692
|
+
*
|
|
4693
|
+
*/
|
|
4694
|
+
'create_hl7'(
|
|
4695
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4696
|
+
data?: Paths.CreateHl7.RequestBody,
|
|
4697
|
+
config?: AxiosRequestConfig
|
|
4698
|
+
): OperationResponse<Paths.CreateHl7.Responses.$201>
|
|
4699
|
+
/**
|
|
4700
|
+
* create_push_subscription - Create push subscription
|
|
4701
|
+
*/
|
|
4702
|
+
'create_push_subscription'(
|
|
4703
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4704
|
+
data?: Paths.CreatePushSubscription.RequestBody,
|
|
4705
|
+
config?: AxiosRequestConfig
|
|
4706
|
+
): OperationResponse<Paths.CreatePushSubscription.Responses.$201>
|
|
4377
4707
|
}
|
|
4378
4708
|
|
|
4379
4709
|
export interface PathsDictionary {
|
|
@@ -5291,6 +5621,86 @@ export interface PathsDictionary {
|
|
|
5291
5621
|
config?: AxiosRequestConfig
|
|
5292
5622
|
): OperationResponse<Paths.DeleteNotification.Responses.$204>
|
|
5293
5623
|
}
|
|
5624
|
+
['/xslt_maps']: {
|
|
5625
|
+
/**
|
|
5626
|
+
* get_xslt_maps - Get XSLT maps
|
|
5627
|
+
*/
|
|
5628
|
+
'get'(
|
|
5629
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5630
|
+
data?: any,
|
|
5631
|
+
config?: AxiosRequestConfig
|
|
5632
|
+
): OperationResponse<Paths.GetXsltMaps.Responses.$200>
|
|
5633
|
+
/**
|
|
5634
|
+
* create_xslt_map - Create XSLT map
|
|
5635
|
+
*/
|
|
5636
|
+
'post'(
|
|
5637
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5638
|
+
data?: Paths.CreateXsltMap.RequestBody,
|
|
5639
|
+
config?: AxiosRequestConfig
|
|
5640
|
+
): OperationResponse<Paths.CreateXsltMap.Responses.$201>
|
|
5641
|
+
}
|
|
5642
|
+
['/xslt_maps/{id}']: {
|
|
5643
|
+
/**
|
|
5644
|
+
* get_xslt_map - Get XSLT map
|
|
5645
|
+
*/
|
|
5646
|
+
'get'(
|
|
5647
|
+
parameters?: Parameters<Paths.GetXsltMap.PathParameters> | null,
|
|
5648
|
+
data?: any,
|
|
5649
|
+
config?: AxiosRequestConfig
|
|
5650
|
+
): OperationResponse<Paths.GetXsltMap.Responses.$200>
|
|
5651
|
+
/**
|
|
5652
|
+
* update_xslt_map - Update XSLT map
|
|
5653
|
+
*/
|
|
5654
|
+
'patch'(
|
|
5655
|
+
parameters?: Parameters<Paths.UpdateXsltMap.PathParameters> | null,
|
|
5656
|
+
data?: Paths.UpdateXsltMap.RequestBody,
|
|
5657
|
+
config?: AxiosRequestConfig
|
|
5658
|
+
): OperationResponse<Paths.UpdateXsltMap.Responses.$200>
|
|
5659
|
+
/**
|
|
5660
|
+
* delete_xslt_map - Delete XSLT map
|
|
5661
|
+
*/
|
|
5662
|
+
'delete'(
|
|
5663
|
+
parameters?: Parameters<Paths.DeleteXsltMap.PathParameters> | null,
|
|
5664
|
+
data?: any,
|
|
5665
|
+
config?: AxiosRequestConfig
|
|
5666
|
+
): OperationResponse<Paths.DeleteXsltMap.Responses.$204>
|
|
5667
|
+
}
|
|
5668
|
+
['/hl7_messages']: {
|
|
5669
|
+
/**
|
|
5670
|
+
* get_hl7_messages - Get HL7 messages
|
|
5671
|
+
*/
|
|
5672
|
+
'get'(
|
|
5673
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5674
|
+
data?: any,
|
|
5675
|
+
config?: AxiosRequestConfig
|
|
5676
|
+
): OperationResponse<Paths.GetHl7Messages.Responses.$200>
|
|
5677
|
+
}
|
|
5678
|
+
['/hl7_messages/{id}']: {
|
|
5679
|
+
/**
|
|
5680
|
+
* get_hl7_message - Get HL7 message
|
|
5681
|
+
*/
|
|
5682
|
+
'get'(
|
|
5683
|
+
parameters?: Parameters<Paths.GetHl7Message.PathParameters> | null,
|
|
5684
|
+
data?: any,
|
|
5685
|
+
config?: AxiosRequestConfig
|
|
5686
|
+
): OperationResponse<Paths.GetHl7Message.Responses.$200>
|
|
5687
|
+
/**
|
|
5688
|
+
* delete_hl7_message - Delete HL7 message
|
|
5689
|
+
*/
|
|
5690
|
+
'delete'(
|
|
5691
|
+
parameters?: Parameters<Paths.DeleteHl7Message.PathParameters> | null,
|
|
5692
|
+
data?: any,
|
|
5693
|
+
config?: AxiosRequestConfig
|
|
5694
|
+
): OperationResponse<Paths.DeleteHl7Message.Responses.$204>
|
|
5695
|
+
/**
|
|
5696
|
+
* update_hl7_message - Update HL7 message
|
|
5697
|
+
*/
|
|
5698
|
+
'patch'(
|
|
5699
|
+
parameters?: Parameters<Paths.UpdateHl7Message.PathParameters> | null,
|
|
5700
|
+
data?: Paths.UpdateHl7Message.RequestBody,
|
|
5701
|
+
config?: AxiosRequestConfig
|
|
5702
|
+
): OperationResponse<Paths.UpdateHl7Message.Responses.$200>
|
|
5703
|
+
}
|
|
5294
5704
|
['/operations']: {
|
|
5295
5705
|
/**
|
|
5296
5706
|
* atomic_operations - Perform atomic operations
|
|
@@ -5324,6 +5734,30 @@ export interface PathsDictionary {
|
|
|
5324
5734
|
config?: AxiosRequestConfig
|
|
5325
5735
|
): OperationResponse<Paths.CreateCsvCases.Responses.$201>
|
|
5326
5736
|
}
|
|
5737
|
+
['/hl7']: {
|
|
5738
|
+
/**
|
|
5739
|
+
* create_hl7 - Create HL7
|
|
5740
|
+
*
|
|
5741
|
+
* Submit a HL7 message to the system for queuing and consumption.
|
|
5742
|
+
* **Note** that the bearer authentication token on this endpoint is the instances HL7 API key, not an oauth token.
|
|
5743
|
+
*
|
|
5744
|
+
*/
|
|
5745
|
+
'post'(
|
|
5746
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5747
|
+
data?: Paths.CreateHl7.RequestBody,
|
|
5748
|
+
config?: AxiosRequestConfig
|
|
5749
|
+
): OperationResponse<Paths.CreateHl7.Responses.$201>
|
|
5750
|
+
}
|
|
5751
|
+
['/push_subscriptions']: {
|
|
5752
|
+
/**
|
|
5753
|
+
* create_push_subscription - Create push subscription
|
|
5754
|
+
*/
|
|
5755
|
+
'post'(
|
|
5756
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5757
|
+
data?: Paths.CreatePushSubscription.RequestBody,
|
|
5758
|
+
config?: AxiosRequestConfig
|
|
5759
|
+
): OperationResponse<Paths.CreatePushSubscription.Responses.$201>
|
|
5760
|
+
}
|
|
5327
5761
|
}
|
|
5328
5762
|
|
|
5329
5763
|
export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
|
|
@@ -5369,6 +5803,7 @@ export type Config = Components.Schemas.Config;
|
|
|
5369
5803
|
export type ConfigAttributes = Components.Schemas.ConfigAttributes;
|
|
5370
5804
|
export type ConfigData = Components.Schemas.ConfigData;
|
|
5371
5805
|
export type Configs = Components.Schemas.Configs;
|
|
5806
|
+
export type CreateOrUpdateCaseAction = Components.Schemas.CreateOrUpdateCaseAction;
|
|
5372
5807
|
export type Currency = Components.Schemas.Currency;
|
|
5373
5808
|
export type DisplayCurrencySubunit = Components.Schemas.DisplayCurrencySubunit;
|
|
5374
5809
|
export type Errors = Components.Schemas.Errors;
|
|
@@ -5404,6 +5839,11 @@ export type FieldSettingsRelationship = Components.Schemas.FieldSettingsRelation
|
|
|
5404
5839
|
export type FieldUpdateAttributes = Components.Schemas.FieldUpdateAttributes;
|
|
5405
5840
|
export type Fields = Components.Schemas.Fields;
|
|
5406
5841
|
export type FieldsRelationship = Components.Schemas.FieldsRelationship;
|
|
5842
|
+
export type HL7Message = Components.Schemas.HL7Message;
|
|
5843
|
+
export type HL7MessageAttributes = Components.Schemas.HL7MessageAttributes;
|
|
5844
|
+
export type HL7MessageData = Components.Schemas.HL7MessageData;
|
|
5845
|
+
export type HL7MessageUpdateAttributes = Components.Schemas.HL7MessageUpdateAttributes;
|
|
5846
|
+
export type HL7Messages = Components.Schemas.HL7Messages;
|
|
5407
5847
|
export type IdAttribute = Components.Schemas.IdAttribute;
|
|
5408
5848
|
export type InternalEventAction = Components.Schemas.InternalEventAction;
|
|
5409
5849
|
export type KnownConfigIDs = Components.Schemas.KnownConfigIDs;
|
|
@@ -5464,6 +5904,10 @@ export type NotificationsRelationship = Components.Schemas.NotificationsRelation
|
|
|
5464
5904
|
export type OidcConfig = Components.Schemas.OidcConfig;
|
|
5465
5905
|
export type OperationTypes = Components.Schemas.OperationTypes;
|
|
5466
5906
|
export type PasswordGrant = Components.Schemas.PasswordGrant;
|
|
5907
|
+
export type PushSubscription = Components.Schemas.PushSubscription;
|
|
5908
|
+
export type PushSubscriptionAttributes = Components.Schemas.PushSubscriptionAttributes;
|
|
5909
|
+
export type PushSubscriptionData = Components.Schemas.PushSubscriptionData;
|
|
5910
|
+
export type PushSubscriptionRelationships = Components.Schemas.PushSubscriptionRelationships;
|
|
5467
5911
|
export type RefreshTokenGrant = Components.Schemas.RefreshTokenGrant;
|
|
5468
5912
|
export type ResourceAttribute = Components.Schemas.ResourceAttribute;
|
|
5469
5913
|
export type ResourceAttributeAttributes = Components.Schemas.ResourceAttributeAttributes;
|
|
@@ -5508,6 +5952,7 @@ export type SavedFilterRelationship = Components.Schemas.SavedFilterRelationship
|
|
|
5508
5952
|
export type SavedFilterRelationships = Components.Schemas.SavedFilterRelationships;
|
|
5509
5953
|
export type SavedFilters = Components.Schemas.SavedFilters;
|
|
5510
5954
|
export type SavedFiltersRelationship = Components.Schemas.SavedFiltersRelationship;
|
|
5955
|
+
export type SimpleError = Components.Schemas.SimpleError;
|
|
5511
5956
|
export type StructuredValues = Components.Schemas.StructuredValues;
|
|
5512
5957
|
export type Tag = Components.Schemas.Tag;
|
|
5513
5958
|
export type TagAttributes = Components.Schemas.TagAttributes;
|
|
@@ -5597,9 +6042,14 @@ export type UserInclusion = Components.Schemas.UserInclusion;
|
|
|
5597
6042
|
export type UserInclusions = Components.Schemas.UserInclusions;
|
|
5598
6043
|
export type UserRelationship = Components.Schemas.UserRelationship;
|
|
5599
6044
|
export type UserRelationships = Components.Schemas.UserRelationships;
|
|
6045
|
+
export type UserSpecificChannel = Components.Schemas.UserSpecificChannel;
|
|
5600
6046
|
export type UserUpdateAttributes = Components.Schemas.UserUpdateAttributes;
|
|
5601
6047
|
export type Users = Components.Schemas.Users;
|
|
5602
6048
|
export type UsersRelationship = Components.Schemas.UsersRelationship;
|
|
5603
6049
|
export type VersionAttributes = Components.Schemas.VersionAttributes;
|
|
5604
6050
|
export type VersionInclusion = Components.Schemas.VersionInclusion;
|
|
5605
6051
|
export type VersionsRelationship = Components.Schemas.VersionsRelationship;
|
|
6052
|
+
export type XsltMap = Components.Schemas.XsltMap;
|
|
6053
|
+
export type XsltMapAttributes = Components.Schemas.XsltMapAttributes;
|
|
6054
|
+
export type XsltMapData = Components.Schemas.XsltMapData;
|
|
6055
|
+
export type XsltMaps = Components.Schemas.XsltMaps;
|