infisical-sdk 2.3.1 → 2.3.5
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/linux-arm64/libinfisical_c.so +0 -0
- data/lib/linux-x64/libinfisical_c.so +0 -0
- data/lib/macos-arm64/libinfisical_c.dylib +0 -0
- data/lib/macos-x64/libinfisical_c.dylib +0 -0
- data/lib/schemas.rb +21 -18
- data/lib/version.rb +1 -1
- data/lib/windows-x64/infisical_c.dll +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b5840d03f6c833ba8654d8ece098eda6f03988e84f20863e25d723b8fda42f6
|
|
4
|
+
data.tar.gz: 5b82a9f42ca77b6a979dbeb459db366a7c1494dae60c2c96a3bc59c44c778a68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc19ba3579b3a68b46e950920498350741c2badd366ec83e7ed02e05ee87221abb3d23bccd20fd241b96b53a1c84c7512ebf2bab54e76aa44aeb2b2f55ffeaf0
|
|
7
|
+
data.tar.gz: 9122fb8a4163303d17784f111a46858fc0c971d6f154c6aeb5b2c1aca1bc699318209cfb8edec39cb38773719605a19c76cbf87855c1c4f8de304c9608f40b03
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/schemas.rb
CHANGED
|
@@ -628,22 +628,24 @@ class GcpIDTokenAuthLoginClass < Dry::Struct
|
|
|
628
628
|
end
|
|
629
629
|
|
|
630
630
|
class GetSecretOptions < Dry::Struct
|
|
631
|
-
attribute :environment,
|
|
632
|
-
attribute :
|
|
633
|
-
attribute :
|
|
634
|
-
attribute :
|
|
635
|
-
attribute :
|
|
636
|
-
attribute :
|
|
631
|
+
attribute :environment, Types::String
|
|
632
|
+
attribute :expand_secret_references, Types::Bool.optional.optional
|
|
633
|
+
attribute :include_imports, Types::Bool.optional.optional
|
|
634
|
+
attribute :path, Types::String.optional.optional
|
|
635
|
+
attribute :project_id, Types::String
|
|
636
|
+
attribute :secret_name, Types::String
|
|
637
|
+
attribute :get_secret_options_type, Types::String.optional.optional
|
|
637
638
|
|
|
638
639
|
def self.from_dynamic!(d)
|
|
639
640
|
d = Types::Hash[d]
|
|
640
641
|
new(
|
|
641
|
-
environment:
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
642
|
+
environment: d.fetch("environment"),
|
|
643
|
+
expand_secret_references: d["expandSecretReferences"],
|
|
644
|
+
include_imports: d["includeImports"],
|
|
645
|
+
path: d["path"],
|
|
646
|
+
project_id: d.fetch("projectId"),
|
|
647
|
+
secret_name: d.fetch("secretName"),
|
|
648
|
+
get_secret_options_type: d["type"],
|
|
647
649
|
)
|
|
648
650
|
end
|
|
649
651
|
|
|
@@ -653,12 +655,13 @@ class GetSecretOptions < Dry::Struct
|
|
|
653
655
|
|
|
654
656
|
def to_dynamic
|
|
655
657
|
{
|
|
656
|
-
"environment"
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
658
|
+
"environment" => environment,
|
|
659
|
+
"expandSecretReferences" => expand_secret_references,
|
|
660
|
+
"includeImports" => include_imports,
|
|
661
|
+
"path" => path,
|
|
662
|
+
"projectId" => project_id,
|
|
663
|
+
"secretName" => secret_name,
|
|
664
|
+
"type" => get_secret_options_type,
|
|
662
665
|
}
|
|
663
666
|
end
|
|
664
667
|
|
data/lib/version.rb
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: infisical-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Infisical Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-08-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-struct
|