-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmedplum.config.json
94 lines (94 loc) · 2.43 KB
/
medplum.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"bots": [
{
"name": "hello-patient",
"id": "",
"source": "src/hello-patient.ts",
"dist": "dist/hello-patient.js"
},
{
"name": "patient-intake",
"id": "",
"source": "src/patient-intake.ts",
"dist": "dist/patient-intake.js"
},
{
"name": "create-pdf",
"id": "",
"source": "src/create-pdf.ts",
"dist": "dist/create-pdf.js"
},
{
"name": "sample-account-setup",
"id": "",
"source": "src/sample-account-setup.ts",
"dist": "dist/sample-account-setup.js"
},
{
"name": "sample-account-staging",
"id": "",
"source": "src/sample-account-setup.ts",
"dist": "dist/sample-account-setup.js"
},
{
"name": "hl7-bot",
"id": "",
"source": "src/hl7-bot.ts",
"dist": "dist/hl7-bot.js"
},
{
"name": "finalize-report",
"id": "",
"source": "src/finalize-report.ts",
"dist": "dist/finalize-report.js"
},
{
"name": "stripe-create-invoice",
"id": "",
"source": "src/stripe-bots/stripe-create-invoice.ts",
"dist": "dist/stripe-bots/stripe-create-invoice.js"
},
{
"name": "merge-bot",
"id": "",
"source": "src/deduplication/merge-bot.ts",
"dist": "dist/deduplication/merge-bot.js"
},
{
"name": "patient-deduplication",
"id": "",
"source": "src/deduplication/patient-deduplication.ts",
"dist": "dist/deduplication/patient-deduplication.js"
},
{
"name": "find-matching-patients",
"id": "",
"source": "src/deduplication/find-matching-patients.ts",
"dist": "dist/deduplication/find-matching-patients.js"
},
{
"name": "merge-matching-patients",
"id": "",
"source": "src/deduplication/merge-matching-patients.ts",
"dist": "dist/deduplication/merge-matching-patients.js"
},
{
"name": "welcome-patient",
"id": "",
"source": "./src/bots-with-shared-library/welcome-patient.ts",
"dist": "./dist/bots-with-shared-library/welcome-patient.js"
},
{
"name": "goodbye-patient",
"id": "",
"source": "./src/bots-with-shared-library/goodbye-patient.ts",
"dist": "./dist/bots-with-shared-library/welcome-patient.js"
},
{
"name": "demo-slack-bot",
"id": "",
"source": "./src/slack-bots/demo-slack-bot.ts",
"dist": "./dist/slack-bots/demo-slack-bot.js"
}
]
}