brand.dev 0.1.0.pre.alpha.4 → 0.1.0.pre.alpha.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/CHANGELOG.md +13 -0
- data/README.md +1 -1
- data/lib/brand_dev/models/brand_retrieve_params.rb +2 -2
- data/lib/brand_dev/version.rb +1 -1
- data/rbi/brand_dev/models/brand_retrieve_params.rbi +4 -4
- data/rbi/brand_dev/resources/brand.rbi +2 -2
- 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: cf5ebdc7ef9f99d3f945c245024ef0e5f9eef4a9979a56cb5c07433f763c6ca0
|
4
|
+
data.tar.gz: 27f521944ec5d28516e8ad280630173b370b04f914fee118470b82eaeb0c532c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f23cc778d043c07d34fef0ec74421107dc101121c28c273ddb2381a5f44e60e22f75cf19ceb0e74f4b027da8aee5daf0ca0add3b789d7c98c38b3ce9eff5ba7
|
7
|
+
data.tar.gz: db126bd4228fc698907e877d46fb10d294e549fdd28f5006b4540f0542a8e994734d96721dea2d5af4a2552495ed5dcce09da7b081d3e7969c50c18e538e83de
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.1.0-alpha.5 (2025-06-06)
|
4
|
+
|
5
|
+
Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** manual updates ([d07e957](https://github.com/brand-dot-dev/ruby-sdk/commit/d07e957a8e10c10626468008285953a205b6dafc))
|
10
|
+
|
11
|
+
|
12
|
+
### Chores
|
13
|
+
|
14
|
+
* **internal:** version bump ([6b3a243](https://github.com/brand-dot-dev/ruby-sdk/commit/6b3a2437ab0592fee82bc4829e048937f54d9e18))
|
15
|
+
|
3
16
|
## 0.1.0-alpha.4 (2025-06-06)
|
4
17
|
|
5
18
|
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
|
data/README.md
CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
|
|
15
15
|
<!-- x-release-please-start-version -->
|
16
16
|
|
17
17
|
```ruby
|
18
|
-
gem "brand.dev", "~> 0.1.0.pre.alpha.
|
18
|
+
gem "brand.dev", "~> 0.1.0.pre.alpha.5"
|
19
19
|
```
|
20
20
|
|
21
21
|
<!-- x-release-please-end -->
|
@@ -21,8 +21,8 @@ module BrandDev
|
|
21
21
|
|
22
22
|
# @!attribute max_speed
|
23
23
|
# Optional parameter to optimize the API call for maximum speed. When set to true,
|
24
|
-
# the API will skip
|
25
|
-
#
|
24
|
+
# the API will skip time-consuming operations for faster response at the cost of
|
25
|
+
# less comprehensive data.
|
26
26
|
#
|
27
27
|
# @return [Boolean, nil]
|
28
28
|
optional :max_speed, BrandDev::Internal::Type::Boolean
|
data/lib/brand_dev/version.rb
CHANGED
@@ -31,8 +31,8 @@ module BrandDev
|
|
31
31
|
attr_writer :force_language
|
32
32
|
|
33
33
|
# Optional parameter to optimize the API call for maximum speed. When set to true,
|
34
|
-
# the API will skip
|
35
|
-
#
|
34
|
+
# the API will skip time-consuming operations for faster response at the cost of
|
35
|
+
# less comprehensive data.
|
36
36
|
sig { returns(T.nilable(T::Boolean)) }
|
37
37
|
attr_reader :max_speed
|
38
38
|
|
@@ -54,8 +54,8 @@ module BrandDev
|
|
54
54
|
# Optional parameter to force the language of the retrieved brand data
|
55
55
|
force_language: nil,
|
56
56
|
# Optional parameter to optimize the API call for maximum speed. When set to true,
|
57
|
-
# the API will skip
|
58
|
-
#
|
57
|
+
# the API will skip time-consuming operations for faster response at the cost of
|
58
|
+
# less comprehensive data.
|
59
59
|
max_speed: nil,
|
60
60
|
request_options: {}
|
61
61
|
)
|
@@ -19,8 +19,8 @@ module BrandDev
|
|
19
19
|
# Optional parameter to force the language of the retrieved brand data
|
20
20
|
force_language: nil,
|
21
21
|
# Optional parameter to optimize the API call for maximum speed. When set to true,
|
22
|
-
# the API will skip
|
23
|
-
#
|
22
|
+
# the API will skip time-consuming operations for faster response at the cost of
|
23
|
+
# less comprehensive data.
|
24
24
|
max_speed: nil,
|
25
25
|
request_options: {}
|
26
26
|
)
|