statelydb 0.12.2 → 0.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 +4 -4
- data/lib/api/auth/get_auth_token_pb.rb +18 -0
- data/lib/api/auth/service_pb.rb +18 -0
- data/lib/api/auth/service_services_pb.rb +29 -0
- data/lib/api/db/get_pb.rb +1 -1
- data/lib/api/db/list_pb.rb +3 -3
- data/lib/api/db/put_pb.rb +1 -1
- data/lib/api/db/service_pb.rb +8 -8
- data/lib/api/db/service_services_pb.rb +1 -1
- data/lib/api/db/sync_list_pb.rb +2 -2
- data/lib/api/db/transaction_pb.rb +7 -7
- data/lib/common/auth/{auth0_token_provider.rb → auth_token_provider.rb} +52 -44
- data/lib/common/auth/interceptor.rb +1 -1
- data/lib/common/auth/token_fetcher.rb +104 -0
- data/lib/error.rb +0 -5
- data/lib/statelydb.rb +3 -7
- data/lib/token.rb +2 -3
- data/lib/transaction/transaction.rb +1 -1
- data/sig/grpc.rbs +80 -0
- data/sig/statelydb.rbi +1201 -0
- data/sig/statelydb.rbs +1053 -0
- metadata +12 -5
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: statelydb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stately Cloud, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: async
|
@@ -67,12 +67,15 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 1.63.0
|
69
69
|
description: ''
|
70
|
-
email:
|
70
|
+
email: support@stately.cloud
|
71
71
|
executables: []
|
72
72
|
extensions: []
|
73
73
|
extra_rdoc_files: []
|
74
74
|
files:
|
75
75
|
- README.md
|
76
|
+
- lib/api/auth/get_auth_token_pb.rb
|
77
|
+
- lib/api/auth/service_pb.rb
|
78
|
+
- lib/api/auth/service_services_pb.rb
|
76
79
|
- lib/api/db/continue_list_pb.rb
|
77
80
|
- lib/api/db/delete_pb.rb
|
78
81
|
- lib/api/db/get_pb.rb
|
@@ -87,8 +90,9 @@ files:
|
|
87
90
|
- lib/api/db/sync_list_pb.rb
|
88
91
|
- lib/api/db/transaction_pb.rb
|
89
92
|
- lib/api/errors/error_details_pb.rb
|
90
|
-
- lib/common/auth/
|
93
|
+
- lib/common/auth/auth_token_provider.rb
|
91
94
|
- lib/common/auth/interceptor.rb
|
95
|
+
- lib/common/auth/token_fetcher.rb
|
92
96
|
- lib/common/auth/token_provider.rb
|
93
97
|
- lib/common/error_interceptor.rb
|
94
98
|
- lib/common/net/conn.rb
|
@@ -100,7 +104,10 @@ files:
|
|
100
104
|
- lib/transaction/queue.rb
|
101
105
|
- lib/transaction/transaction.rb
|
102
106
|
- lib/uuid.rb
|
103
|
-
|
107
|
+
- sig/grpc.rbs
|
108
|
+
- sig/statelydb.rbi
|
109
|
+
- sig/statelydb.rbs
|
110
|
+
homepage: https://docs.stately.cloud/clients/ruby/
|
104
111
|
licenses:
|
105
112
|
- Apache-2.0
|
106
113
|
metadata:
|