@medplum/definitions 2.0.27 → 2.0.29

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.
@@ -61141,7 +61141,13 @@
61141
61141
  "features": {
61142
61142
  "description": "A list of optional features that are enabled for the project.",
61143
61143
  "items": {
61144
- "$ref": "#/definitions/code"
61144
+ "enum": [
61145
+ "bots",
61146
+ "cron",
61147
+ "email",
61148
+ "google-auth-required",
61149
+ "graphql-introspection"
61150
+ ]
61145
61151
  },
61146
61152
  "type": "array"
61147
61153
  },
@@ -61487,7 +61493,14 @@
61487
61493
  },
61488
61494
  "authMethod": {
61489
61495
  "description": "The authentication method used to obtain the code (password or google).",
61490
- "$ref": "#/definitions/string"
61496
+ "enum": [
61497
+ "client",
61498
+ "exchange",
61499
+ "execute",
61500
+ "external",
61501
+ "google",
61502
+ "password"
61503
+ ]
61491
61504
  },
61492
61505
  "authTime": {
61493
61506
  "description": "Time when the End-User authentication occurred.",
@@ -61507,7 +61520,10 @@
61507
61520
  },
61508
61521
  "codeChallengeMethod": {
61509
61522
  "description": "OPTIONAL, defaults to \"plain\" if not present in the request. Code verifier transformation method is \"S256\" or \"plain\".",
61510
- "$ref": "#/definitions/string"
61523
+ "enum": [
61524
+ "plain",
61525
+ "S256"
61526
+ ]
61511
61527
  },
61512
61528
  "refreshSecret": {
61513
61529
  "description": "Optional secure random string that can be used in an OAuth refresh token.",
@@ -61744,7 +61760,10 @@
61744
61760
  },
61745
61761
  "runtimeVersion": {
61746
61762
  "description": "The identifier of the bot runtime environment (i.e., vmcontext, awslambda, etc).",
61747
- "$ref": "#/definitions/string"
61763
+ "enum": [
61764
+ "awslambda",
61765
+ "vmcontext"
61766
+ ]
61748
61767
  },
61749
61768
  "photo": {
61750
61769
  "description": "Image of the bot.",
@@ -61758,10 +61777,6 @@
61758
61777
  "description": "A schedule for the bot to be executed.",
61759
61778
  "$ref": "#/definitions/string"
61760
61779
  },
61761
- "code": {
61762
- "description": "Bot logic script.",
61763
- "$ref": "#/definitions/string"
61764
- },
61765
61780
  "category": {
61766
61781
  "description": "A code that classifies the service for searching, sorting and display purposes (e.g. \"Surgical Procedure\").",
61767
61782
  "items": {
@@ -61772,6 +61787,37 @@
61772
61787
  "runAsUser": {
61773
61788
  "description": "Optional flag to indicate that the bot should be run as the user.",
61774
61789
  "$ref": "#/definitions/boolean"
61790
+ },
61791
+ "auditEventTrigger": {
61792
+ "description": "Criteria for creating an AuditEvent as a result of the bot invocation. Possible values are \u0027always\u0027, \u0027never\u0027, \u0027on-error\u0027, or \u0027on-output\u0027. Default value is \u0027always\u0027.",
61793
+ "enum": [
61794
+ "always",
61795
+ "never",
61796
+ "on-error",
61797
+ "on-output"
61798
+ ]
61799
+ },
61800
+ "auditEventDestination": {
61801
+ "description": "The destination system in which the AuditEvent is to be sent. Possible values are \u0027log\u0027 or \u0027resource\u0027. Default value is \u0027resource\u0027.",
61802
+ "items": {
61803
+ "enum": [
61804
+ "log",
61805
+ "resource"
61806
+ ]
61807
+ },
61808
+ "type": "array"
61809
+ },
61810
+ "sourceCode": {
61811
+ "description": "Bot logic in original source code form written by developers.",
61812
+ "$ref": "#/definitions/Attachment"
61813
+ },
61814
+ "executableCode": {
61815
+ "description": "Bot logic in executable form as a result of compiling and bundling source code.",
61816
+ "$ref": "#/definitions/Attachment"
61817
+ },
61818
+ "code": {
61819
+ "description": "DEPRECATED Bot logic script. Use Bot.sourceCode or Bot.executableCode instead.",
61820
+ "$ref": "#/definitions/string"
61775
61821
  }
61776
61822
  },
61777
61823
  "additionalProperties": false,
@@ -62115,7 +62161,12 @@
62115
62161
  },
62116
62162
  "status": {
62117
62163
  "description": "The status of the request.",
62118
- "$ref": "#/definitions/code"
62164
+ "enum": [
62165
+ "accepted",
62166
+ "active",
62167
+ "completed",
62168
+ "error"
62169
+ ]
62119
62170
  },
62120
62171
  "requestTime": {
62121
62172
  "description": "Indicates the server\u0027s time when the query is requested.",
@@ -62305,7 +62356,10 @@
62305
62356
  },
62306
62357
  "action": {
62307
62358
  "description": "Access rule can perform one of the following actions: \"allow\" | \"block\".",
62308
- "$ref": "#/definitions/string"
62359
+ "enum": [
62360
+ "allow",
62361
+ "block"
62362
+ ]
62309
62363
  }
62310
62364
  },
62311
62365
  "additionalProperties": false,
@@ -62339,7 +62393,12 @@
62339
62393
  },
62340
62394
  "status": {
62341
62395
  "description": "The status of the request.",
62342
- "$ref": "#/definitions/code"
62396
+ "enum": [
62397
+ "accepted",
62398
+ "active",
62399
+ "completed",
62400
+ "error"
62401
+ ]
62343
62402
  },
62344
62403
  "requestTime": {
62345
62404
  "description": "Indicates the server\u0027s time when the query is requested.",
@@ -200,6 +200,10 @@
200
200
  "path" : "Project.features",
201
201
  "min" : 0,
202
202
  "max" : "*"
203
+ },
204
+ "binding" : {
205
+ "strength" : "required",
206
+ "valueSet" : "https://medplum.com/fhir/ValueSet/project-feature|4.0.1"
203
207
  }
204
208
  },
205
209
  {
@@ -1289,12 +1293,16 @@
1289
1293
  "min" : 0,
1290
1294
  "max" : "1",
1291
1295
  "type" : [{
1292
- "code" : "string"
1296
+ "code" : "code"
1293
1297
  }],
1294
1298
  "base" : {
1295
1299
  "path" : "Bot.runtimeVersion",
1296
1300
  "min" : 0,
1297
1301
  "max" : "1"
1302
+ },
1303
+ "binding" : {
1304
+ "strength" : "required",
1305
+ "valueSet" : "https://medplum.com/fhir/ValueSet/bot-runtime-version|4.0.1"
1298
1306
  }
1299
1307
  },
1300
1308
  {
@@ -1329,21 +1337,6 @@
1329
1337
  "max": "1"
1330
1338
  }
1331
1339
  },
1332
- {
1333
- "id" : "Bot.code",
1334
- "path" : "Bot.code",
1335
- "definition" : "Bot logic script.",
1336
- "min" : 0,
1337
- "max" : "1",
1338
- "type" : [{
1339
- "code" : "string"
1340
- }],
1341
- "base" : {
1342
- "path" : "Bot.code",
1343
- "min" : 0,
1344
- "max" : "1"
1345
- }
1346
- },
1347
1340
  {
1348
1341
  "id" : "Bot.category",
1349
1342
  "path" : "Bot.category",
@@ -1375,6 +1368,89 @@
1375
1368
  "min" : 0,
1376
1369
  "max" : "1"
1377
1370
  }
1371
+ },
1372
+ {
1373
+ "id" : "Bot.auditEventTrigger",
1374
+ "path" : "Bot.auditEventTrigger",
1375
+ "definition" : "Criteria for creating an AuditEvent as a result of the bot invocation. Possible values are 'always', 'never', 'on-error', or 'on-output'. Default value is 'always'.",
1376
+ "min" : 0,
1377
+ "max" : "1",
1378
+ "base" : {
1379
+ "path" : "Bot.auditEventTrigger",
1380
+ "min" : 0,
1381
+ "max" : "1"
1382
+ },
1383
+ "type" : [{
1384
+ "code" : "code"
1385
+ }],
1386
+ "binding" : {
1387
+ "strength" : "required",
1388
+ "valueSet" : "https://medplum.com/fhir/ValueSet/bot-audit-event-trigger|4.0.1"
1389
+ }
1390
+ },
1391
+ {
1392
+ "id" : "Bot.auditEventDestination",
1393
+ "path" : "Bot.auditEventDestination",
1394
+ "definition" : "The destination system in which the AuditEvent is to be sent. Possible values are 'log' or 'resource'. Default value is 'resource'.",
1395
+ "min" : 0,
1396
+ "max" : "*",
1397
+ "base" : {
1398
+ "path" : "Bot.auditEventDestination",
1399
+ "min" : 0,
1400
+ "max" : "*"
1401
+ },
1402
+ "type" : [{
1403
+ "code" : "code"
1404
+ }],
1405
+ "binding" : {
1406
+ "strength" : "required",
1407
+ "valueSet" : "https://medplum.com/fhir/ValueSet/bot-audit-event-destination|4.0.1"
1408
+ }
1409
+ },
1410
+ {
1411
+ "id" : "Bot.sourceCode",
1412
+ "path" : "Bot.sourceCode",
1413
+ "definition" : "Bot logic in original source code form written by developers.",
1414
+ "min" : 0,
1415
+ "max" : "1",
1416
+ "base" : {
1417
+ "path" : "Bot.sourceCode",
1418
+ "min" : 0,
1419
+ "max" : "1"
1420
+ },
1421
+ "type" : [{
1422
+ "code" : "Attachment"
1423
+ }]
1424
+ },
1425
+ {
1426
+ "id" : "Bot.executableCode",
1427
+ "path" : "Bot.executableCode",
1428
+ "definition" : "Bot logic in executable form as a result of compiling and bundling source code.",
1429
+ "min" : 0,
1430
+ "max" : "1",
1431
+ "base" : {
1432
+ "path" : "Bot.executableCode",
1433
+ "min" : 0,
1434
+ "max" : "1"
1435
+ },
1436
+ "type" : [{
1437
+ "code" : "Attachment"
1438
+ }]
1439
+ },
1440
+ {
1441
+ "id" : "Bot.code",
1442
+ "path" : "Bot.code",
1443
+ "definition" : "DEPRECATED Bot logic script. Use Bot.sourceCode or Bot.executableCode instead.",
1444
+ "min" : 0,
1445
+ "max" : "1",
1446
+ "type" : [{
1447
+ "code" : "string"
1448
+ }],
1449
+ "base" : {
1450
+ "path" : "Bot.code",
1451
+ "min" : 0,
1452
+ "max" : "1"
1453
+ }
1378
1454
  }
1379
1455
  ]
1380
1456
  }
@@ -1576,12 +1652,16 @@
1576
1652
  "min" : 1,
1577
1653
  "max" : "1",
1578
1654
  "type" : [{
1579
- "code" : "string"
1655
+ "code" : "code"
1580
1656
  }],
1581
1657
  "base" : {
1582
1658
  "path" : "Login.authMethod",
1583
1659
  "min" : 1,
1584
1660
  "max" : "1"
1661
+ },
1662
+ "binding" : {
1663
+ "strength" : "required",
1664
+ "valueSet" : "https://medplum.com/fhir/ValueSet/login-auth-method|4.0.1"
1585
1665
  }
1586
1666
  },
1587
1667
  {
@@ -1651,12 +1731,16 @@
1651
1731
  "min" : 0,
1652
1732
  "max" : "1",
1653
1733
  "type" : [{
1654
- "code" : "string"
1734
+ "code" : "code"
1655
1735
  }],
1656
1736
  "base" : {
1657
1737
  "path" : "Login.codeChallengeMethod",
1658
1738
  "min" : 0,
1659
1739
  "max" : "1"
1740
+ },
1741
+ "binding" : {
1742
+ "strength" : "required",
1743
+ "valueSet" : "https://medplum.com/fhir/ValueSet/login-code-challenge-method|4.0.1"
1660
1744
  }
1661
1745
  },
1662
1746
  {
@@ -2610,12 +2694,16 @@
2610
2694
  "min" : 1,
2611
2695
  "max" : "1",
2612
2696
  "type" : [{
2613
- "code" : "string"
2697
+ "code" : "code"
2614
2698
  }],
2615
2699
  "base" : {
2616
2700
  "path" : "AccessPolicy.ipAccessRule.action",
2617
2701
  "min" : 1,
2618
2702
  "max" : "1"
2703
+ },
2704
+ "binding" : {
2705
+ "strength" : "required",
2706
+ "valueSet" : "https://medplum.com/fhir/ValueSet/ip-access-rule-action|4.0.1"
2619
2707
  }
2620
2708
  }
2621
2709
  ]
@@ -3007,13 +3095,17 @@
3007
3095
  "min" : 1,
3008
3096
  "max" : "1",
3009
3097
  "base" : {
3010
- "path" : "ServiceRequest.status",
3098
+ "path" : "BulkDataExport.status",
3011
3099
  "min" : 1,
3012
3100
  "max" : "1"
3013
3101
  },
3014
3102
  "type" : [{
3015
3103
  "code" : "code"
3016
- }]
3104
+ }],
3105
+ "binding" : {
3106
+ "strength" : "required",
3107
+ "valueSet" : "https://medplum.com/fhir/ValueSet/async-job-status|4.0.1"
3108
+ }
3017
3109
  },
3018
3110
  {
3019
3111
  "id" : "BulkDataExport.requestTime",
@@ -3105,14 +3197,6 @@
3105
3197
  "max" : "1"
3106
3198
  },
3107
3199
  "binding" : {
3108
- "extension" : [{
3109
- "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName",
3110
- "valueString" : "ResourceType"
3111
- },
3112
- {
3113
- "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding",
3114
- "valueBoolean" : true
3115
- }],
3116
3200
  "strength" : "required",
3117
3201
  "description" : "One of the resource types defined as part of this version of FHIR.",
3118
3202
  "valueSet" : "http://hl7.org/fhir/ValueSet/resource-types|4.0.1"
@@ -3163,14 +3247,6 @@
3163
3247
  "max" : "1"
3164
3248
  },
3165
3249
  "binding" : {
3166
- "extension" : [{
3167
- "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName",
3168
- "valueString" : "ResourceType"
3169
- },
3170
- {
3171
- "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding",
3172
- "valueBoolean" : true
3173
- }],
3174
3250
  "strength" : "required",
3175
3251
  "description" : "One of the resource types defined as part of this version of FHIR.",
3176
3252
  "valueSet" : "http://hl7.org/fhir/ValueSet/resource-types|4.0.1"
@@ -3221,14 +3297,6 @@
3221
3297
  "max" : "1"
3222
3298
  },
3223
3299
  "binding" : {
3224
- "extension" : [{
3225
- "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName",
3226
- "valueString" : "ResourceType"
3227
- },
3228
- {
3229
- "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding",
3230
- "valueBoolean" : true
3231
- }],
3232
3300
  "strength" : "required",
3233
3301
  "description" : "One of the resource types defined as part of this version of FHIR.",
3234
3302
  "valueSet" : "http://hl7.org/fhir/ValueSet/resource-types|4.0.1"
@@ -3721,13 +3789,17 @@
3721
3789
  "min" : 1,
3722
3790
  "max" : "1",
3723
3791
  "base" : {
3724
- "path" : "ServiceRequest.status",
3792
+ "path" : "AsyncJob.status",
3725
3793
  "min" : 1,
3726
3794
  "max" : "1"
3727
3795
  },
3728
3796
  "type" : [{
3729
3797
  "code" : "code"
3730
- }]
3798
+ }],
3799
+ "binding" : {
3800
+ "strength" : "required",
3801
+ "valueSet" : "https://medplum.com/fhir/ValueSet/async-job-status|4.0.1"
3802
+ }
3731
3803
  },
3732
3804
  {
3733
3805
  "id" : "AsyncJob.requestTime",
@@ -0,0 +1,373 @@
1
+ {
2
+ "resourceType": "Bundle",
3
+ "type": "collection",
4
+ "entry": [
5
+ {
6
+ "fullUrl": "https://medplum.com/fhir/CodeSystem/project-feature",
7
+ "resource": {
8
+ "resourceType": "CodeSystem",
9
+ "id": "project-feature",
10
+ "url": "https://medplum.com/fhir/CodeSystem/project-feature",
11
+ "status": "active",
12
+ "valueSet": "https://medplum.com/fhir/ValueSet/project-feature",
13
+ "content": "complete",
14
+ "concept": [
15
+ {
16
+ "code": "bots",
17
+ "display": "Bots",
18
+ "definition": "Bots"
19
+ },
20
+ {
21
+ "code": "cron",
22
+ "display": "Cron",
23
+ "definition": "Cron"
24
+ },
25
+ {
26
+ "code": "email",
27
+ "display": "Email",
28
+ "definition": "Email"
29
+ },
30
+ {
31
+ "code": "google-auth-required",
32
+ "display": "Google Auth Required",
33
+ "definition": "Google Auth Required"
34
+ },
35
+ {
36
+ "code": "graphql-introspection",
37
+ "display": "GraphQL Introspection",
38
+ "definition": "GraphQL Introspection"
39
+ }
40
+ ]
41
+ }
42
+ },
43
+ {
44
+ "fullUrl": "https://medplum.com/fhir/ValueSet/project-feature",
45
+ "resource": {
46
+ "resourceType": "ValueSet",
47
+ "id": "project-feature",
48
+ "url": "https://medplum.com/fhir/ValueSet/project-feature",
49
+ "status": "active",
50
+ "compose": {
51
+ "include": [
52
+ {
53
+ "system": "https://medplum.com/fhir/CodeSystem/project-feature"
54
+ }
55
+ ]
56
+ }
57
+ }
58
+ },
59
+ {
60
+ "fullUrl": "https://medplum.com/fhir/CodeSystem/bot-runtime-version",
61
+ "resource": {
62
+ "resourceType": "CodeSystem",
63
+ "id": "bot-runtime-version",
64
+ "url": "https://medplum.com/fhir/CodeSystem/bot-runtime-version",
65
+ "status": "active",
66
+ "valueSet": "https://medplum.com/fhir/ValueSet/bot-runtime-version",
67
+ "content": "complete",
68
+ "concept": [
69
+ {
70
+ "code": "awslambda",
71
+ "display": "AWS Lambda",
72
+ "definition": "AWS Lambda"
73
+ },
74
+ {
75
+ "code": "vmcontext",
76
+ "display": "VM Context",
77
+ "definition": "VM Context"
78
+ }
79
+ ]
80
+ }
81
+ },
82
+ {
83
+ "fullUrl": "https://medplum.com/fhir/ValueSet/bot-runtime-version",
84
+ "resource": {
85
+ "resourceType": "ValueSet",
86
+ "id": "bot-runtime-version",
87
+ "url": "https://medplum.com/fhir/ValueSet/bot-runtime-version",
88
+ "status": "active",
89
+ "compose": {
90
+ "include": [
91
+ {
92
+ "system": "https://medplum.com/fhir/CodeSystem/bot-runtime-version"
93
+ }
94
+ ]
95
+ }
96
+ }
97
+ },
98
+ {
99
+ "fullUrl": "https://medplum.com/fhir/CodeSystem/bot-audit-event-trigger",
100
+ "resource": {
101
+ "resourceType": "CodeSystem",
102
+ "id": "bot-audit-event-trigger",
103
+ "url": "https://medplum.com/fhir/CodeSystem/bot-audit-event-trigger",
104
+ "status": "active",
105
+ "valueSet": "https://medplum.com/fhir/ValueSet/bot-audit-event-trigger",
106
+ "content": "complete",
107
+ "concept": [
108
+ {
109
+ "code": "always",
110
+ "display": "Always",
111
+ "definition": "Always"
112
+ },
113
+ {
114
+ "code": "never",
115
+ "display": "Never",
116
+ "definition": "Never"
117
+ },
118
+ {
119
+ "code": "on-error",
120
+ "display": "On error",
121
+ "definition": "On error"
122
+ },
123
+ {
124
+ "code": "on-output",
125
+ "display": "On output",
126
+ "definition": "On output"
127
+ }
128
+ ]
129
+ }
130
+ },
131
+ {
132
+ "fullUrl": "https://medplum.com/fhir/ValueSet/bot-audit-event-trigger",
133
+ "resource": {
134
+ "resourceType": "ValueSet",
135
+ "id": "bot-audit-event-trigger",
136
+ "url": "https://medplum.com/fhir/ValueSet/bot-audit-event-trigger",
137
+ "status": "active",
138
+ "compose": {
139
+ "include": [
140
+ {
141
+ "system": "https://medplum.com/fhir/CodeSystem/bot-audit-event-trigger"
142
+ }
143
+ ]
144
+ }
145
+ }
146
+ },
147
+ {
148
+ "fullUrl": "https://medplum.com/fhir/CodeSystem/bot-audit-event-destination",
149
+ "resource": {
150
+ "resourceType": "CodeSystem",
151
+ "id": "bot-audit-event-destination",
152
+ "url": "https://medplum.com/fhir/CodeSystem/bot-audit-event-destination",
153
+ "status": "active",
154
+ "valueSet": "https://medplum.com/fhir/ValueSet/bot-audit-event-destination",
155
+ "content": "complete",
156
+ "concept": [
157
+ {
158
+ "code": "log",
159
+ "display": "Log",
160
+ "definition": "Log"
161
+ },
162
+ {
163
+ "code": "resource",
164
+ "display": "Resource",
165
+ "definition": "Resource"
166
+ }
167
+ ]
168
+ }
169
+ },
170
+ {
171
+ "fullUrl": "https://medplum.com/fhir/ValueSet/bot-audit-event-destination",
172
+ "resource": {
173
+ "resourceType": "ValueSet",
174
+ "id": "bot-audit-event-destination",
175
+ "url": "https://medplum.com/fhir/ValueSet/bot-audit-event-destination",
176
+ "status": "active",
177
+ "compose": {
178
+ "include": [
179
+ {
180
+ "system": "https://medplum.com/fhir/CodeSystem/bot-audit-event-destination"
181
+ }
182
+ ]
183
+ }
184
+ }
185
+ },
186
+ {
187
+ "fullUrl": "https://medplum.com/fhir/CodeSystem/login-auth-method",
188
+ "resource": {
189
+ "resourceType": "CodeSystem",
190
+ "id": "login-auth-method",
191
+ "url": "https://medplum.com/fhir/CodeSystem/login-auth-method",
192
+ "status": "active",
193
+ "valueSet": "https://medplum.com/fhir/ValueSet/login-auth-method",
194
+ "content": "complete",
195
+ "concept": [
196
+ {
197
+ "code": "client",
198
+ "display": "Client",
199
+ "definition": "Client"
200
+ },
201
+ {
202
+ "code": "exchange",
203
+ "display": "Exchange",
204
+ "definition": "Exchange"
205
+ },
206
+ {
207
+ "code": "execute",
208
+ "display": "Execute",
209
+ "definition": "Execute"
210
+ },
211
+ {
212
+ "code": "external",
213
+ "display": "External",
214
+ "definition": "External"
215
+ },
216
+ {
217
+ "code": "google",
218
+ "display": "Google",
219
+ "definition": "Google"
220
+ },
221
+ {
222
+ "code": "password",
223
+ "display": "Password",
224
+ "definition": "Password"
225
+ }
226
+ ]
227
+ }
228
+ },
229
+ {
230
+ "fullUrl": "https://medplum.com/fhir/ValueSet/login-auth-method",
231
+ "resource": {
232
+ "resourceType": "ValueSet",
233
+ "id": "login-auth-method",
234
+ "url": "https://medplum.com/fhir/ValueSet/login-auth-method",
235
+ "status": "active",
236
+ "compose": {
237
+ "include": [
238
+ {
239
+ "system": "https://medplum.com/fhir/CodeSystem/login-auth-method"
240
+ }
241
+ ]
242
+ }
243
+ }
244
+ },
245
+ {
246
+ "fullUrl": "https://medplum.com/fhir/CodeSystem/login-code-challenge-method",
247
+ "resource": {
248
+ "resourceType": "CodeSystem",
249
+ "id": "login-code-challenge-method",
250
+ "url": "https://medplum.com/fhir/CodeSystem/login-code-challenge-method",
251
+ "status": "active",
252
+ "valueSet": "https://medplum.com/fhir/ValueSet/login-code-challenge-method",
253
+ "content": "complete",
254
+ "concept": [
255
+ {
256
+ "code": "plain",
257
+ "display": "Plain",
258
+ "definition": "Plain"
259
+ },
260
+ {
261
+ "code": "S256",
262
+ "display": "S256",
263
+ "definition": "S256"
264
+ }
265
+ ]
266
+ }
267
+ },
268
+ {
269
+ "fullUrl": "https://medplum.com/fhir/ValueSet/login-code-challenge-method",
270
+ "resource": {
271
+ "resourceType": "ValueSet",
272
+ "id": "login-code-challenge-method",
273
+ "url": "https://medplum.com/fhir/ValueSet/login-code-challenge-method",
274
+ "status": "active",
275
+ "compose": {
276
+ "include": [
277
+ {
278
+ "system": "https://medplum.com/fhir/CodeSystem/login-code-challenge-method"
279
+ }
280
+ ]
281
+ }
282
+ }
283
+ },
284
+ {
285
+ "fullUrl": "https://medplum.com/fhir/CodeSystem/ip-access-rule-action",
286
+ "resource": {
287
+ "resourceType": "CodeSystem",
288
+ "id": "ip-access-rule-action",
289
+ "url": "https://medplum.com/fhir/CodeSystem/ip-access-rule-action",
290
+ "status": "active",
291
+ "valueSet": "https://medplum.com/fhir/ValueSet/ip-access-rule-action",
292
+ "content": "complete",
293
+ "concept": [
294
+ {
295
+ "code": "allow",
296
+ "display": "Allow",
297
+ "definition": "Allow"
298
+ },
299
+ {
300
+ "code": "block",
301
+ "display": "Block",
302
+ "definition": "Block"
303
+ }
304
+ ]
305
+ }
306
+ },
307
+ {
308
+ "fullUrl": "https://medplum.com/fhir/ValueSet/ip-access-rule-action",
309
+ "resource": {
310
+ "resourceType": "ValueSet",
311
+ "id": "ip-access-rule-action",
312
+ "url": "https://medplum.com/fhir/ValueSet/ip-access-rule-action",
313
+ "status": "active",
314
+ "compose": {
315
+ "include": [
316
+ {
317
+ "system": "https://medplum.com/fhir/CodeSystem/ip-access-rule-action"
318
+ }
319
+ ]
320
+ }
321
+ }
322
+ },
323
+ {
324
+ "fullUrl": "https://medplum.com/fhir/CodeSystem/async-job-status",
325
+ "resource": {
326
+ "resourceType": "CodeSystem",
327
+ "id": "async-job-status",
328
+ "url": "https://medplum.com/fhir/CodeSystem/async-job-status",
329
+ "status": "active",
330
+ "valueSet": "https://medplum.com/fhir/ValueSet/async-job-status",
331
+ "content": "complete",
332
+ "concept": [
333
+ {
334
+ "code": "accepted",
335
+ "display": "Accepted",
336
+ "definition": "Accepted"
337
+ },
338
+ {
339
+ "code": "active",
340
+ "display": "Active",
341
+ "definition": "Active"
342
+ },
343
+ {
344
+ "code": "completed",
345
+ "display": "Completed",
346
+ "definition": "Completed"
347
+ },
348
+ {
349
+ "code": "error",
350
+ "display": "Error",
351
+ "definition": "Error"
352
+ }
353
+ ]
354
+ }
355
+ },
356
+ {
357
+ "fullUrl": "https://medplum.com/fhir/ValueSet/async-job-status",
358
+ "resource": {
359
+ "resourceType": "ValueSet",
360
+ "id": "async-job-status",
361
+ "url": "https://medplum.com/fhir/ValueSet/async-job-status",
362
+ "status": "active",
363
+ "compose": {
364
+ "include": [
365
+ {
366
+ "system": "https://medplum.com/fhir/CodeSystem/async-job-status"
367
+ }
368
+ ]
369
+ }
370
+ }
371
+ }
372
+ ]
373
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medplum/definitions",
3
- "version": "2.0.27",
3
+ "version": "2.0.29",
4
4
  "description": "Medplum Data Definitions",
5
5
  "author": "Medplum <hello@medplum.com>",
6
6
  "license": "Apache-2.0",