workato-connector-sdk 1.3.14 → 1.3.16

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: 9c8856e03b09111c24c0a3b82d2efa9820e1923fec9fd334999ffd240c80d224
4
- data.tar.gz: 724aac1bf3ddddf16bb5c00d8e63246adaf9f9be678149668d20fa7e4aeb8d8d
3
+ metadata.gz: 5c950bd4ec86b301b840b500f3690776ed6c15be574493120427491421e38955
4
+ data.tar.gz: fd39412faf35a576531cd7ccea0ee3d2b280a43c9d69ea38a0105c9a04278311
5
5
  SHA512:
6
- metadata.gz: bece2ccfc7bec7498cbb4848b790389c12b349020fc56668b68ae138c1e4b9dfee093ff5082a54f378f0c63c8262d807b593fde01dcfbf295e43b7cbcc36cccb
7
- data.tar.gz: '0088974711af0c0fc2016037e4390713440b45530c8a34a28ad4332d8a3b532f202f3be8a53e8ad1155162078489fbd17e2ef40a9e6096f655a6cd132be87817'
6
+ metadata.gz: ebffd18ed4a7db0ed0de12bd6fbca5584f91e985f28c2c723b04e9dbb04e1cfdaa8ca8ee5898eca05c03fe60a2fc74e7625748c75adb4e0baacf74b161793adf
7
+ data.tar.gz: 8fd896f3d49f6f118033c7c223c564b574b263a0fd540eae3abc59f910528384a7c729bc279dfc1c304b7d986d42ecea47d76081ba50ee58bd7a823f8d4ba876
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.14
1
+ 1.3.16
@@ -46,7 +46,7 @@ module Workato
46
46
 
47
47
  tokens = acquire_token(code)
48
48
  say_status :success, 'Receive OAuth2 tokens'
49
- jj tokens if verbose?
49
+ say JSON.pretty_generate(tokens) if verbose?
50
50
 
51
51
  settings_store.update(tokens)
52
52
  say_status :success, 'Update settings file'
@@ -9,7 +9,7 @@ module Workato
9
9
  module Sdk
10
10
  class Action < Operation
11
11
  extend T::Sig
12
- using BlockInvocationRefinements
12
+ using BlockInvocationRefinements # rubocop:disable Sorbet/Refinement core SDK feature
13
13
 
14
14
  include Dsl::ReinvokeAfter
15
15
 
@@ -45,7 +45,7 @@ module Workato
45
45
  extend T::Sig
46
46
  include MonitorMixin
47
47
 
48
- using BlockInvocationRefinements
48
+ using BlockInvocationRefinements # rubocop:disable Sorbet/Refinement core SDK feature
49
49
 
50
50
  # @api private
51
51
  sig { returns(ActiveSupport::HashWithIndifferentAccess) }
@@ -25,14 +25,6 @@ module Workato
25
25
 
26
26
  abstract!
27
27
 
28
- # @api private
29
- sig { abstract.returns(Streams) }
30
- def streams; end
31
-
32
- # @api private
33
- sig { abstract.returns(Connection) }
34
- def connection; end
35
-
36
28
  include Time
37
29
  include AccountProperty
38
30
  include LookupTable
@@ -88,6 +80,16 @@ module Workato
88
80
  def null; end
89
81
 
90
82
  def skip; end
83
+
84
+ private
85
+
86
+ # @api private
87
+ sig { abstract.returns(Streams) }
88
+ def streams; end
89
+
90
+ # @api private
91
+ sig { abstract.returns(Connection) }
92
+ def connection; end
91
93
  end
92
94
 
93
95
  class WithDsl
@@ -95,7 +97,7 @@ module Workato
95
97
 
96
98
  include Global
97
99
 
98
- using BlockInvocationRefinements
100
+ using BlockInvocationRefinements # rubocop:disable Sorbet/Refinement core SDK feature
99
101
 
100
102
  sig { params(connection: Connection, streams: Streams).void }
101
103
  def initialize(connection = Connection.new, streams = ProhibitedStreams.new)
@@ -13,7 +13,7 @@ module Workato
13
13
  class ObjectDefinitions
14
14
  extend T::Sig
15
15
 
16
- using BlockInvocationRefinements
16
+ using BlockInvocationRefinements # rubocop:disable Sorbet/Refinement core SDK feature
17
17
 
18
18
  sig do
19
19
  params(
@@ -48,7 +48,7 @@ module Workato
48
48
  include Dsl::Error
49
49
  include Dsl::ExecutionContext
50
50
 
51
- using BlockInvocationRefinements
51
+ using BlockInvocationRefinements # rubocop:disable Sorbet/Refinement core SDK feature
52
52
 
53
53
  sig { override.returns(Streams) }
54
54
  attr_reader :streams
@@ -19,7 +19,7 @@ module Workato
19
19
  class Request < SimpleDelegator
20
20
  extend T::Sig
21
21
 
22
- using BlockInvocationRefinements
22
+ using BlockInvocationRefinements # rubocop:disable Sorbet/Refinement core SDK feature
23
23
 
24
24
  ALLOWED_URI_TYPES = [URI::Generic, String].freeze
25
25
  private_constant :ALLOWED_URI_TYPES
@@ -34,7 +34,7 @@ module Workato
34
34
 
35
35
  DEFAULT_FRAME_SIZE = T.let(10.megabytes, Integer)
36
36
 
37
- using BlockInvocationRefinements
37
+ using BlockInvocationRefinements # rubocop:disable Sorbet/Refinement core SDK feature
38
38
  include Dsl::ReinvokeAfter
39
39
 
40
40
  sig do
@@ -32,7 +32,7 @@ module Workato
32
32
  end
33
33
 
34
34
  class Trigger < Operation
35
- using BlockInvocationRefinements
35
+ using BlockInvocationRefinements # rubocop:disable Sorbet/Refinement core SDK feature
36
36
 
37
37
  sig do
38
38
  params(
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workato-connector-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.14
4
+ version: 1.3.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Abolmasov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-16 00:00:00.000000000 Z
11
+ date: 2025-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -215,7 +215,7 @@ dependencies:
215
215
  version: 1.13.10
216
216
  - - "<"
217
217
  - !ruby/object:Gem::Version
218
- version: '1.16'
218
+ version: '1.19'
219
219
  type: :runtime
220
220
  prerelease: false
221
221
  version_requirements: !ruby/object:Gem::Requirement
@@ -225,7 +225,7 @@ dependencies:
225
225
  version: 1.13.10
226
226
  - - "<"
227
227
  - !ruby/object:Gem::Version
228
- version: '1.16'
228
+ version: '1.19'
229
229
  - !ruby/object:Gem::Dependency
230
230
  name: public_suffix
231
231
  requirement: !ruby/object:Gem::Requirement
@@ -515,7 +515,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
515
515
  - !ruby/object:Gem::Version
516
516
  version: '0'
517
517
  requirements: []
518
- rubygems_version: 3.4.10
518
+ rubygems_version: 3.1.6
519
519
  signing_key:
520
520
  specification_version: 4
521
521
  summary: Gem for running adapter's code outside Workato infrastructure