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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7838f8c194543e8e3ba05ae68343cc13ea4aed8ceabcb0502530061da5a41ac
4
- data.tar.gz: 9036c6faf4fee43e86625466038184bd93b1c3118ccfcdc132b2d00dabf30fe3
3
+ metadata.gz: cf5ebdc7ef9f99d3f945c245024ef0e5f9eef4a9979a56cb5c07433f763c6ca0
4
+ data.tar.gz: 27f521944ec5d28516e8ad280630173b370b04f914fee118470b82eaeb0c532c
5
5
  SHA512:
6
- metadata.gz: c7b864fff0ccfb6e158d491159cbed2efbb9e497245f5c35779b010ddfa74e43538a228cd7041623da7d806c19a1288ddeea4db6983a3b4a7caf9776e4642613
7
- data.tar.gz: 1e7fc08296c8f69cc226b9f84337a48fc90043f1943057f4892841a412200c7a17bb827cd4a34db3b8a983ad4464ea7d877e4213eae8cefb9338b2452e015f15
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.4"
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 social media data extraction and external service calls (like
25
- # Crunchbase) to return results faster with basic brand information only.
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BrandDev
4
- VERSION = "0.1.0.pre.alpha.4"
4
+ VERSION = "0.1.0.pre.alpha.5"
5
5
  end
@@ -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 social media data extraction and external service calls (like
35
- # Crunchbase) to return results faster with basic brand information only.
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 social media data extraction and external service calls (like
58
- # Crunchbase) to return results faster with basic brand information only.
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 social media data extraction and external service calls (like
23
- # Crunchbase) to return results faster with basic brand information only.
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
  )
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brand.dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.alpha.4
4
+ version: 0.1.0.pre.alpha.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brand Dev