@medplum/definitions 0.5.1 → 0.9.1

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.
@@ -61516,6 +61516,10 @@
61516
61516
  "description": "A summary, characterization or explanation of the Bot.",
61517
61517
  "$ref": "#/definitions/string"
61518
61518
  },
61519
+ "runtimeVersion": {
61520
+ "description": "The identifier of the bot runtime environment (i.e., vmcontext, awslambda, etc).",
61521
+ "$ref": "#/definitions/string"
61522
+ },
61519
61523
  "photo": {
61520
61524
  "description": "Image of the bot.",
61521
61525
  "$ref": "#/definitions/Attachment"
@@ -61523,6 +61527,10 @@
61523
61527
  "code": {
61524
61528
  "description": "Bot logic script.",
61525
61529
  "$ref": "#/definitions/string"
61530
+ },
61531
+ "runAsUser": {
61532
+ "description": "Optional flag to indicate that the bot should be run as the user.",
61533
+ "$ref": "#/definitions/boolean"
61526
61534
  }
61527
61535
  }
61528
61536
  },
@@ -357,7 +357,8 @@
357
357
  "max" : "1",
358
358
  "type" : [{
359
359
  "code" : "Reference",
360
- "targetProfile" : ["https://medplum.com/fhir/StructureDefinition/ClientApplication",
360
+ "targetProfile" : ["https://medplum.com/fhir/StructureDefinition/Bot",
361
+ "https://medplum.com/fhir/StructureDefinition/ClientApplication",
361
362
  "https://medplum.com/fhir/StructureDefinition/User"]
362
363
  }]
363
364
  },
@@ -369,7 +370,8 @@
369
370
  "max" : "1",
370
371
  "type" : [{
371
372
  "code" : "Reference",
372
- "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/ClientApplication",
373
+ "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Bot",
374
+ "http://hl7.org/fhir/StructureDefinition/ClientApplication",
373
375
  "http://hl7.org/fhir/StructureDefinition/Patient",
374
376
  "http://hl7.org/fhir/StructureDefinition/Practitioner",
375
377
  "http://hl7.org/fhir/StructureDefinition/RelatedPerson"]
@@ -482,6 +484,16 @@
482
484
  "code" : "string"
483
485
  }]
484
486
  },
487
+ {
488
+ "id" : "Bot.runtimeVersion",
489
+ "path" : "Bot.runtimeVersion",
490
+ "definition" : "The identifier of the bot runtime environment (i.e., vmcontext, awslambda, etc).",
491
+ "min" : 0,
492
+ "max" : "1",
493
+ "type" : [{
494
+ "code" : "string"
495
+ }]
496
+ },
485
497
  {
486
498
  "id" : "Bot.photo",
487
499
  "path" : "Bot.photo",
@@ -501,6 +513,16 @@
501
513
  "type" : [{
502
514
  "code" : "string"
503
515
  }]
516
+ },
517
+ {
518
+ "id" : "Bot.runAsUser",
519
+ "path" : "Bot.runAsUser",
520
+ "definition" : "Optional flag to indicate that the bot should be run as the user.",
521
+ "min" : 0,
522
+ "max" : "1",
523
+ "type" : [{
524
+ "code" : "boolean"
525
+ }]
504
526
  }
505
527
  ]
506
528
  }
@@ -65513,6 +65513,24 @@
65513
65513
  "target" : ["ClientApplication", "User"]
65514
65514
  }
65515
65515
  },
65516
+ {
65517
+ "fullUrl" : "https://medplum.com/fhir/SearchParameter/ProjectMembership-profile",
65518
+ "resource" : {
65519
+ "resourceType" : "SearchParameter",
65520
+ "id" : "ProjectMembership-profile",
65521
+ "url" : "https://medplum.com/fhir/SearchParameter/ProjectMembership-profile",
65522
+ "version" : "4.0.1",
65523
+ "name" : "profile",
65524
+ "publisher" : "Medplum",
65525
+ "code" : "profile",
65526
+ "base" : ["ProjectMembership"],
65527
+ "type" : "reference",
65528
+ "expression" : "ProjectMembership.profile",
65529
+ "xpath" : "f:ProjectMembership/f:profile",
65530
+ "xpathUsage" : "normal",
65531
+ "target" : ["ClientApplication", "Patient", "Practitioner"]
65532
+ }
65533
+ },
65516
65534
  {
65517
65535
  "fullUrl" : "https://medplum.com/fhir/SearchParameter/ClientApplication-name",
65518
65536
  "resource" : {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medplum/definitions",
3
- "version": "0.5.1",
3
+ "version": "0.9.1",
4
4
  "description": "Medplum Data Definitions",
5
5
  "author": "Medplum <hello@medplum.com>",
6
6
  "license": "Apache-2.0",