strongmind-platform-sdk 3.14.2 → 3.14.3

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: e99ce0dc9fc488aa170bcc143f2140e56b090b62ab2d1614730996b5df3ed5b6
4
- data.tar.gz: 49c84f4c4cb59644bfd19ba160ff14a2522c8cba2fa47ec9c3c8dadce33f484e
3
+ metadata.gz: 4863450100f7294639bc50f9dd86af345e96b11b5e49e5e721bde6ea32913dc4
4
+ data.tar.gz: 80115971de889e31af9b193a7ffdf829f9819a0815d03bdd9909ba087c80af52
5
5
  SHA512:
6
- metadata.gz: 49e61365d2860b0fa2825c4020f2c9f950f7f0004de203cc0139ab1480aa655cb31b3106cb722b4465ffb0dc0a76307dae203a62f934e62cc8e42999f96e2d34
7
- data.tar.gz: 2db24323974a34b99a3b7088df7211a824cb31d33761c699422971555c229b1f4b35284fdf73aaeeb66e1b7a941c5f7986a23d24b1d20b2ceca0471bf0d7a798
6
+ metadata.gz: 07ae6d3b9a435c807af00b8024672d04cc4719fc1c350349003997ee109f5a79c2493c13eb5ec1ac72e8646a60db359081b56ddad67e37505af325a706e6ed88
7
+ data.tar.gz: 710c0665dd26ea1bf547da176c0ba01b7451a2c7d90a7455b8136bc64ba7688ec5e4759d04bea4006ec7bf0ec84da2f860d41ee4e4e82f30aa5ec0e03e027637
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- strongmind-platform-sdk (3.14.2)
4
+ strongmind-platform-sdk (3.14.3)
5
5
  aws-sdk-secretsmanager (~> 1.66)
6
6
  faraday (~> 2.5, >= 2.5.2)
7
7
  faraday-retry
@@ -26,11 +26,11 @@ 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.924.0)
29
+ aws-partitions (1.925.0)
30
30
  aws-sdk-cloudwatch (1.90.0)
31
31
  aws-sdk-core (~> 3, >= 3.193.0)
32
32
  aws-sigv4 (~> 1.1)
33
- aws-sdk-core (3.194.1)
33
+ aws-sdk-core (3.194.2)
34
34
  aws-eventstream (~> 1, >= 1.3.0)
35
35
  aws-partitions (~> 1, >= 1.651.0)
36
36
  aws-sigv4 (~> 1.8)
@@ -5,6 +5,8 @@ module PlatformSdk
5
5
  class Client
6
6
  attr_reader :access_token, :base_url, :conn
7
7
 
8
+ INTEGRATION_ID = "b242c16d-70f4-4101-8df5-87b35bbe56f0" # Wordpress integration id
9
+
8
10
  def initialize(base_url, access_token, conn: nil)
9
11
  @access_token = access_token
10
12
  @base_url = base_url
@@ -23,6 +25,19 @@ module PlatformSdk
23
25
  response.body
24
26
  end
25
27
 
28
+ def create_asset_usage(asset_id, uri, integration_id: INTEGRATION_ID)
29
+ resource_path = "/api/media/usage"
30
+ body = { integration_id:, asset_id:, uri: }
31
+ response = post(resource_path, body.to_json)
32
+ response.body
33
+ end
34
+
35
+ def remove_asset_usage(asset_id, uri, integration_id: INTEGRATION_ID)
36
+ resource_path = "/api/media/usage"
37
+ response = delete(resource_path, { integration_id:, asset_id:, uri: })
38
+ response.body
39
+ end
40
+
26
41
  private
27
42
 
28
43
  def build_connection
@@ -45,6 +60,14 @@ module PlatformSdk
45
60
  @conn.get(path, params)
46
61
  end
47
62
 
63
+ def post(path, body)
64
+ @conn.post(path, body)
65
+ end
66
+
67
+ def delete(path, params = {})
68
+ @conn.delete(path, params)
69
+ end
70
+
48
71
  end
49
72
  end
50
73
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PlatformSdk
4
- VERSION = "3.14.2"
4
+ VERSION = "3.14.3"
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.2
4
+ version: 3.14.3
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-03 00:00:00.000000000 Z
11
+ date: 2024-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday