checkoff 0.232.0 → 0.233.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 +4 -4
- data/lib/checkoff/version.rb +1 -1
- data/rbi/checkoff.rbi +5 -5
- data/sig/checkoff.rbs +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9218ef611b8c8112e754246e1eadd4bbb5c92397cf98ca8e834f8391a1ce8e4c
|
4
|
+
data.tar.gz: '082d8bdba278d67312003fca7ac6a3fef158b43f3b14a4762b40dae4c73867d6'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e06342012be266e5e1bae0002ea37bb980c7a37334640ddb0a32067dab2de2f23e35653c1d95eb3d967c8ec328e2bf6be0b96ac681f9c013409bd4d91b979ae
|
7
|
+
data.tar.gz: 99565139c87dd3ef0dbb4a3c577e3bbb367429505861115d0778c25b36ccf0e93efc73da11c8487d7aae9f31d053e24d6806bac93eecce149bc719abd1389dfa
|
data/lib/checkoff/version.rb
CHANGED
data/rbi/checkoff.rbi
CHANGED
@@ -57,7 +57,7 @@ module Overcommit
|
|
57
57
|
end
|
58
58
|
|
59
59
|
module Checkoff
|
60
|
-
VERSION = '0.
|
60
|
+
VERSION = '0.233.0'
|
61
61
|
|
62
62
|
class Attachments
|
63
63
|
include Logging
|
@@ -2397,7 +2397,7 @@ end
|
|
2397
2397
|
# typed: ignore
|
2398
2398
|
# Command-line and gem client for Asana (unofficial)
|
2399
2399
|
module Checkoff
|
2400
|
-
VERSION = T.let('0.
|
2400
|
+
VERSION = T.let('0.233.0', T.untyped)
|
2401
2401
|
|
2402
2402
|
# Move tasks from one place to another
|
2403
2403
|
class MvSubcommand
|
@@ -2765,7 +2765,7 @@ module Checkoff
|
|
2765
2765
|
# https://github.com/Asana/ruby-asana/blob/master/lib/asana/resource_includes/response_helper.rb#L7
|
2766
2766
|
#
|
2767
2767
|
# _@param_ `response`
|
2768
|
-
sig { params(response: Asana::HttpClient::Response).returns(T::Array[T
|
2768
|
+
sig { params(response: Asana::HttpClient::Response).returns(T::Array[T::Hash[T.untyped, T.untyped]]) }
|
2769
2769
|
def parse(response); end
|
2770
2770
|
|
2771
2771
|
sig { void }
|
@@ -3792,7 +3792,7 @@ module Checkoff
|
|
3792
3792
|
# https://github.com/Asana/ruby-asana/blob/master/lib/asana/resource_includes/response_helper.rb#L7
|
3793
3793
|
#
|
3794
3794
|
# _@param_ `response`
|
3795
|
-
sig { params(response: Asana::HttpClient::Response).returns(T::Array[T
|
3795
|
+
sig { params(response: Asana::HttpClient::Response).returns(T::Array[T::Hash[T.untyped, T.untyped]]) }
|
3796
3796
|
def parse(response); end
|
3797
3797
|
|
3798
3798
|
# sord warn - Asana::Resources::Project wasn't able to be resolved to a constant in this project
|
@@ -4364,7 +4364,7 @@ module Checkoff
|
|
4364
4364
|
# https://github.com/Asana/ruby-asana/blob/master/lib/asana/resource_includes/response_helper.rb#L7
|
4365
4365
|
#
|
4366
4366
|
# _@param_ `response`
|
4367
|
-
sig { params(response: Asana::HttpClient::Response).returns(T::Array[T
|
4367
|
+
sig { params(response: Asana::HttpClient::Response).returns(T::Array[T::Hash[T.untyped, T.untyped]]) }
|
4368
4368
|
def parse(response); end
|
4369
4369
|
|
4370
4370
|
sig { void }
|
data/sig/checkoff.rbs
CHANGED
@@ -310,7 +310,7 @@ module Checkoff
|
|
310
310
|
# https://github.com/Asana/ruby-asana/blob/master/lib/asana/resource_includes/response_helper.rb#L7
|
311
311
|
#
|
312
312
|
# _@param_ `response`
|
313
|
-
def parse: (Asana::HttpClient::Response response) -> ::Array[
|
313
|
+
def parse: (Asana::HttpClient::Response response) -> ::Array[::Hash[untyped, untyped]]
|
314
314
|
|
315
315
|
def self.run: () -> void
|
316
316
|
|
@@ -1171,7 +1171,7 @@ module Checkoff
|
|
1171
1171
|
# https://github.com/Asana/ruby-asana/blob/master/lib/asana/resource_includes/response_helper.rb#L7
|
1172
1172
|
#
|
1173
1173
|
# _@param_ `response`
|
1174
|
-
def parse: (Asana::HttpClient::Response response) -> ::Array[
|
1174
|
+
def parse: (Asana::HttpClient::Response response) -> ::Array[::Hash[untyped, untyped]]
|
1175
1175
|
|
1176
1176
|
# sord warn - Asana::Resources::Project wasn't able to be resolved to a constant in this project
|
1177
1177
|
# sord warn - Asana::Resources::Task wasn't able to be resolved to a constant in this project
|
@@ -1662,7 +1662,7 @@ module Checkoff
|
|
1662
1662
|
# https://github.com/Asana/ruby-asana/blob/master/lib/asana/resource_includes/response_helper.rb#L7
|
1663
1663
|
#
|
1664
1664
|
# _@param_ `response`
|
1665
|
-
def parse: (Asana::HttpClient::Response response) -> ::Array[
|
1665
|
+
def parse: (Asana::HttpClient::Response response) -> ::Array[::Hash[untyped, untyped]]
|
1666
1666
|
|
1667
1667
|
def self.run: () -> void
|
1668
1668
|
|