mirah-ruby 0.2.1 → 0.2.2
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.
- checksums.yaml +4 -4
- data/lib/mirah/data/patient.rb +5 -0
- data/lib/mirah/graphql/fragments.rb +1 -0
- data/lib/mirah/inputs/patient_input.rb +4 -0
- data/lib/mirah/version.rb +1 -1
- data/schema.json +42 -0
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 696e34582c199592219e613b61e5d2b589c9f1c60dcb1b1aef1dcd89c247d1c9
|
|
4
|
+
data.tar.gz: 49650fce7e284c9493d9f14fff054193ff869fc802ea75d88323d7f84660a146
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54cc31b654b63ca9e576ab079078996cae6e7abad1abb8846b30338e9f5bc118da0409aa7cbb77762ca5a324e64f706c8ec295e02cc37061ee22c1ffc32992ca
|
|
7
|
+
data.tar.gz: 181712767f87cd4415bf417d10371a939ab7edd7e476f40995a46ffbaaccc22322e693fa7c248030a4ffa9d217bf8df3c72e63bcaa834d20ec1cf0b3518c9291
|
data/lib/mirah/data/patient.rb
CHANGED
|
@@ -42,6 +42,11 @@ module Mirah
|
|
|
42
42
|
# Please do not use a phone number which corresponds to a landline as text messages will not be received.
|
|
43
43
|
attribute :phone_number
|
|
44
44
|
|
|
45
|
+
# @!attribute [r] timezone
|
|
46
|
+
# @return [string] The patient's timezone. If not specified, the organization's default will be used. Timezone
|
|
47
|
+
# should be formatted like: https://en.wikipedia.org/wiki/Tz_database
|
|
48
|
+
attribute :timezone
|
|
49
|
+
|
|
45
50
|
# @!attribute [r] managing_organization_id
|
|
46
51
|
# @return [string] The internal mirah id of the organization this patient is with
|
|
47
52
|
attribute :managing_organization_id, path: %w[managingOrganization], target: 'id'
|
|
@@ -36,6 +36,10 @@ module Mirah
|
|
|
36
36
|
# @return (see Mirah::Data::Patient#phone_number)
|
|
37
37
|
input :phone_number, required: false
|
|
38
38
|
|
|
39
|
+
# @!attribute [r] phone_number
|
|
40
|
+
# @return (see Mirah::Data::Patient#timezone)
|
|
41
|
+
input :timezone, required: false
|
|
42
|
+
|
|
39
43
|
# @!attribute [r] external_managing_organization_id
|
|
40
44
|
# @return (see Mirah::Data::Patient#external_managing_organization_id)
|
|
41
45
|
input :external_managing_organization_id, required: false
|
data/lib/mirah/version.rb
CHANGED
data/schema.json
CHANGED
|
@@ -440,6 +440,24 @@
|
|
|
440
440
|
"description": "No-show",
|
|
441
441
|
"isDeprecated": false,
|
|
442
442
|
"deprecationReason": null
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"name": "ENTERED_IN_ERROR",
|
|
446
|
+
"description": "Entered in error",
|
|
447
|
+
"isDeprecated": false,
|
|
448
|
+
"deprecationReason": null
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"name": "CHECKED_IN",
|
|
452
|
+
"description": "Checked in",
|
|
453
|
+
"isDeprecated": false,
|
|
454
|
+
"deprecationReason": null
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"name": "WAIT_LIST",
|
|
458
|
+
"description": "Wait list",
|
|
459
|
+
"isDeprecated": false,
|
|
460
|
+
"deprecationReason": null
|
|
443
461
|
}
|
|
444
462
|
],
|
|
445
463
|
"possibleTypes": null
|
|
@@ -1438,6 +1456,16 @@
|
|
|
1438
1456
|
},
|
|
1439
1457
|
"defaultValue": null
|
|
1440
1458
|
},
|
|
1459
|
+
{
|
|
1460
|
+
"name": "timezone",
|
|
1461
|
+
"description": "See Patient#timezone",
|
|
1462
|
+
"type": {
|
|
1463
|
+
"kind": "SCALAR",
|
|
1464
|
+
"name": "String",
|
|
1465
|
+
"ofType": null
|
|
1466
|
+
},
|
|
1467
|
+
"defaultValue": null
|
|
1468
|
+
},
|
|
1441
1469
|
{
|
|
1442
1470
|
"name": "externalManagingOrganizationId",
|
|
1443
1471
|
"description": "The external identifier for the managing organization. An error will be returned if this cannot be matched\n",
|
|
@@ -4737,6 +4765,20 @@
|
|
|
4737
4765
|
"description": "The patient's primary language",
|
|
4738
4766
|
"args": [
|
|
4739
4767
|
|
|
4768
|
+
],
|
|
4769
|
+
"type": {
|
|
4770
|
+
"kind": "SCALAR",
|
|
4771
|
+
"name": "String",
|
|
4772
|
+
"ofType": null
|
|
4773
|
+
},
|
|
4774
|
+
"isDeprecated": false,
|
|
4775
|
+
"deprecationReason": null
|
|
4776
|
+
},
|
|
4777
|
+
{
|
|
4778
|
+
"name": "timezone",
|
|
4779
|
+
"description": "This user's timezone, used for localizing assessment notifications. If not specified, the institutional default will be used",
|
|
4780
|
+
"args": [
|
|
4781
|
+
|
|
4740
4782
|
],
|
|
4741
4783
|
"type": {
|
|
4742
4784
|
"kind": "SCALAR",
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mirah-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben Jones
|
|
8
8
|
- Hugh Barrigan
|
|
9
|
-
autorequire:
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-
|
|
12
|
+
date: 2020-09-23 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -199,7 +199,7 @@ metadata:
|
|
|
199
199
|
homepage_uri: https://www.mirah.com
|
|
200
200
|
source_code_uri: https://www.mirah.com
|
|
201
201
|
changelog_uri: https://www.mirah.com
|
|
202
|
-
post_install_message:
|
|
202
|
+
post_install_message:
|
|
203
203
|
rdoc_options: []
|
|
204
204
|
require_paths:
|
|
205
205
|
- lib
|
|
@@ -214,9 +214,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
214
214
|
- !ruby/object:Gem::Version
|
|
215
215
|
version: '0'
|
|
216
216
|
requirements: []
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
signing_key:
|
|
217
|
+
rubygems_version: 3.1.2
|
|
218
|
+
signing_key:
|
|
220
219
|
specification_version: 4
|
|
221
220
|
summary: Connect to your data on Mirah.
|
|
222
221
|
test_files: []
|