dina 0.8.5.0 → 0.8.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 07d860bb78b96c5ac6b2f34c26192c717aba1efcca65e7d5889a9b06d65be341
4
- data.tar.gz: b5d90047aa0d24031146c495c42e135f938cc4329db475e597fdeae3a1cf9658
3
+ metadata.gz: c31f42296ba024203c085990bceddda17caf5cf4873aeb0676684e23ca945e30
4
+ data.tar.gz: fcfccd1d3b1b4d3cc080cf1f76903840fb105af5ff42123a5a5aed19f77ecd48
5
5
  SHA512:
6
- metadata.gz: 75a4d714d51057a92018a9553ddf3b23cbda96500100ef8dc22bdaa0f610883d56b27d3325ce76ac341e616c9c92f9de2bd76d40f478b5214aef2eaed5e16328
7
- data.tar.gz: ca9f8af8513e14fe0ebd6db820ffbc0319ca124602033074781e2b599ee5cb8bc39062f940381312f654bbc93c9a34f15b49df017237e8570a30272a9d3dfcfa
6
+ metadata.gz: ecc74e8af6bed12cf115d1731e6f522f4ba9b276d1ae19f10c433def22dfcad3f5a90a37137cf35d104a6bbe0d062881e3ae1ec021332a83d810203fdefbe4f9
7
+ data.tar.gz: 7289164ff3a29e501412c7e5792e4f2ab996b9e3f0d47b74d936c650c24d171a4eb9a2f46c250126469721d59e8f16b80b2e4460b9efa8f4ba41bce29dbbdd92
@@ -39,6 +39,7 @@ module Dina
39
39
  def self.accepted_types
40
40
  [
41
41
  "INTEGER",
42
+ "DECIMAL",
42
43
  "STRING",
43
44
  "PICKLIST",
44
45
  "DATE",
@@ -3,6 +3,7 @@ require_rel '../base_model'
3
3
  module Dina
4
4
  class MaterialSample < BaseModel
5
5
  property :id, type: :string, default: SecureRandom.uuid
6
+ property :version, type: :integer
6
7
  property :dwcCatalogNumber, type: :string
7
8
  property :materialSampleName, type: :string
8
9
  property :materialSampleType, type: :string
@@ -23,7 +24,8 @@ module Dina
23
24
  property :stateChangedOn, type: :time
24
25
  property :stateChangeRemarks, type: :string
25
26
  property :materialSampleRemarks, type: :string
26
- property :restrictionFieldsExtension, type: :array
27
+ property :extensionValues, type: :object
28
+ property :restrictionFieldsExtension, type: :object
27
29
  property :restrictionRemarks, type: :string
28
30
  property :isRestricted, type: :boolean
29
31
  property :materialSampleChildren, type: :array
data/lib/dina/version.rb CHANGED
@@ -3,7 +3,7 @@ module Dina
3
3
 
4
4
  MAJOR = 0
5
5
  MINOR = 8
6
- PATCH = 5
6
+ PATCH = 7
7
7
  BUILD = 0
8
8
 
9
9
  def self.version
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dina
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.5.0
4
+ version: 0.8.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David P. Shorthouse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-25 00:00:00.000000000 Z
11
+ date: 2023-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json_api_client