strongmind-platform-sdk 3.13.0 → 3.14.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e7cc5a4eab7ad8d78e42f793589d0eea74456c49ba2d19c7fca8a625885dba49
4
- data.tar.gz: bc0e8272963502db908a3166262e6fd7653f4c532fd42a87283c4039d11e00b6
3
+ metadata.gz: 6dcae177b414fd9883edab007eab75402a72d058da0dbcb3b5e76e9524451290
4
+ data.tar.gz: 76a4ff7eeebff3d3336e8e3cd0af19aaa2516b1c30582e69d94c231f1c296461
5
5
  SHA512:
6
- metadata.gz: 57efaea3bfc9de8fec62caea8d3e35f8561304a3e23f386381272cd81363e5b144e630870a4809298015b527ea02af932ba79c5a2cc5696c849b1e92716b3bd7
7
- data.tar.gz: 30d6c36e977fe7fa60e4928e7dec255160551ffe51e80669387346c797f9adfb389c946e5dc89117a62fb72b561d89ffba6f0699d777c7c9222bad2350c611d3
6
+ metadata.gz: ce0e09ef5b8fe76d72ac5991427c6e8b996936721f4bb4adfe44d87a887cf47557a0d997199b465cc8408d20bfd0e190125190091c7e2b35af51874d88de3d3d
7
+ data.tar.gz: 999b50edcf189f7b46930760c29ccd9ec11481e593c6ba0e6a6f68c0ae4f850fb5b12111b3569b162e617f1d6a4a24f19ce774cc2fdc079bf0be84ce774daee1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- strongmind-platform-sdk (3.13.0)
4
+ strongmind-platform-sdk (3.14.0)
5
5
  aws-sdk-secretsmanager (~> 1.66)
6
6
  faraday (~> 2.5, >= 2.5.2)
7
7
  faraday-retry
@@ -26,17 +26,17 @@ GEM
26
26
  public_suffix (>= 2.0.2, < 6.0)
27
27
  ast (2.4.2)
28
28
  aws-eventstream (1.3.0)
29
- aws-partitions (1.918.0)
30
- aws-sdk-cloudwatch (1.89.0)
31
- aws-sdk-core (~> 3, >= 3.191.0)
29
+ aws-partitions (1.921.0)
30
+ aws-sdk-cloudwatch (1.90.0)
31
+ aws-sdk-core (~> 3, >= 3.193.0)
32
32
  aws-sigv4 (~> 1.1)
33
- aws-sdk-core (3.192.1)
33
+ aws-sdk-core (3.193.0)
34
34
  aws-eventstream (~> 1, >= 1.3.0)
35
35
  aws-partitions (~> 1, >= 1.651.0)
36
36
  aws-sigv4 (~> 1.8)
37
37
  jmespath (~> 1, >= 1.6.1)
38
- aws-sdk-secretsmanager (1.91.0)
39
- aws-sdk-core (~> 3, >= 3.191.0)
38
+ aws-sdk-secretsmanager (1.92.0)
39
+ aws-sdk-core (~> 3, >= 3.193.0)
40
40
  aws-sigv4 (~> 1.1)
41
41
  aws-sigv4 (1.8.0)
42
42
  aws-eventstream (~> 1, >= 1.0.2)
@@ -110,7 +110,7 @@ GEM
110
110
  ruby2_keywords (0.0.5)
111
111
  sentry-ruby (5.16.1)
112
112
  concurrent-ruby (~> 1.0, >= 1.0.2)
113
- sidekiq (7.2.2)
113
+ sidekiq (7.2.4)
114
114
  concurrent-ruby (< 2)
115
115
  connection_pool (>= 2.3.0)
116
116
  rack (>= 2.2.4)
@@ -118,7 +118,7 @@ GEM
118
118
  strongmind-oneroster-client (2.0.3)
119
119
  json (~> 2.1, >= 2.1.0)
120
120
  typhoeus (~> 1.0, >= 1.0.1)
121
- strongmind-sidekiq-cloudwatchmetrics (2.6.1)
121
+ strongmind-sidekiq-cloudwatchmetrics (2.6.3)
122
122
  aws-sdk-cloudwatch (~> 1.6)
123
123
  sidekiq (>= 5.0, < 8.0)
124
124
  sys-uname (1.2.3)
@@ -31,6 +31,12 @@ module PlatformSdk
31
31
  @conn.post("/ws/schema/query/com.strongmind.#{query_name}?pagesize=#{page_size}", params).body["record"]
32
32
  end
33
33
 
34
+ def get(path, params = nil, expansions = nil)
35
+ params ||= {} if expansions
36
+ params[:expansions] = expansions.join(",") if expansions
37
+ @conn.get(path, params).body
38
+ end
39
+
34
40
  def special_programs
35
41
  records_as_json = power_query("specialprograms")
36
42
  records_as_json.map { |record| SpecialProgram.new(record) }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PlatformSdk
4
- VERSION = "3.13.0"
4
+ VERSION = "3.14.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: strongmind-platform-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.13.0
4
+ version: 3.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Platform Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-24 00:00:00.000000000 Z
11
+ date: 2024-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday