strongmind-platform-sdk 3.14.1 → 3.14.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e03ad389d3011c33bc8aeade54a639e587073ba99bbb45e7e3d0a1a55515035
4
- data.tar.gz: 39b74ba1a00416570e1ad89d1b39e0e3cb6bf3a55ba60599c6a0d1a05044afe9
3
+ metadata.gz: e99ce0dc9fc488aa170bcc143f2140e56b090b62ab2d1614730996b5df3ed5b6
4
+ data.tar.gz: 49c84f4c4cb59644bfd19ba160ff14a2522c8cba2fa47ec9c3c8dadce33f484e
5
5
  SHA512:
6
- metadata.gz: 4569d716be6481e1cb732ba6b779c2ca3db2aaff05d1bfbdbf6d84b81dbfee172ed8135d18dc12b7adb4b1daa65e99b8be194947034a7831a40af9617caf844d
7
- data.tar.gz: c7de12218c000b30bc18f276d154f8b0936fb67f9266744c2dda547a4d47b9a7ddceb3203268f43c77a248a97e40d67ec6a2ed9fb303187204211db3872e0773
6
+ metadata.gz: 49e61365d2860b0fa2825c4020f2c9f950f7f0004de203cc0139ab1480aa655cb31b3106cb722b4465ffb0dc0a76307dae203a62f934e62cc8e42999f96e2d34
7
+ data.tar.gz: 2db24323974a34b99a3b7088df7211a824cb31d33761c699422971555c229b1f4b35284fdf73aaeeb66e1b7a941c5f7986a23d24b1d20b2ceca0471bf0d7a798
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- strongmind-platform-sdk (3.14.1)
4
+ strongmind-platform-sdk (3.14.2)
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.924.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.194.1)
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)
@@ -37,6 +37,14 @@ module PlatformSdk
37
37
  @conn.get(path, params).body
38
38
  end
39
39
 
40
+ def post(path, params = nil)
41
+ @conn.post(path, params).body
42
+ end
43
+
44
+ def put(path, params = nil)
45
+ @conn.put(path, params).body
46
+ end
47
+
40
48
  def special_programs
41
49
  records_as_json = power_query("specialprograms")
42
50
  records_as_json.map { |record| SpecialProgram.new(record) }
@@ -58,6 +66,7 @@ module PlatformSdk
58
66
  def scrub_query(query_name)
59
67
  raise PowerQueryNotValid unless valid_power_query_names.include?(query_name)
60
68
  end
69
+
61
70
  end
62
71
  end
63
72
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PlatformSdk
4
- VERSION = "3.14.1"
4
+ VERSION = "3.14.2"
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.14.1
4
+ version: 3.14.2
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-05-01 00:00:00.000000000 Z
11
+ date: 2024-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday