growsurf-ruby 1.5.0 → 1.5.1

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: a41d14943b58b41cb4cd260b998778f9c559a6bdd7b254f2f6ebf93cd750a3b2
4
- data.tar.gz: 27480177fc199dc35742ec1502b410beba65c52447e1a93bf8b31023bd54bca7
3
+ metadata.gz: 28212ccf1fefd2b64f24e1a6a0414f1e01d6de7d1e762101fe4e9abf954aee34
4
+ data.tar.gz: 69696a4baede734098665f363a142d9b88490394a5dc18e75119e8957c4b184f
5
5
  SHA512:
6
- metadata.gz: 13275a91aaf8cd2be079cbaf5152be1e8d61ec92319182f205f318b83a50bc7fe19eda3e868fb9d5fce3e797a3c862a7f2194a5f9c82a00f506577fa0d7d0114
7
- data.tar.gz: 8a6e28b01ea9a4bcb4c5f01521e703b18e82e07fa21c87789bef83dcdf48ff318bc74617098965564f5f4c890a51d9e32d4b87214109007e1fdbb03fea60fc0a
6
+ metadata.gz: '01253998f166bc0f84d0e4cca47b172b31899bd590dbd35852a86f1057c81371fd54a9368e280ae05849414bd52382f4e4d8fc0acbed362604a683e69b259712'
7
+ data.tar.gz: 9a5fb80db22e8cf3cbcab8d42f740328152b68d90ac56a0c57cbbec2a962f585ac392f7f6430e1d41f1ae4ab81def7c10d5673450e8d6ead28f8b9ba88b0a843
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.1](https://github.com/growsurf/growsurf-ruby/compare/v1.5.0...v1.5.1) (2026-09-10)
4
+
5
+
6
+ ### Chores
7
+
8
+ * merge main (release 1.5.0) into dev ([649434a](https://github.com/growsurf/growsurf-ruby/commit/649434ad8a9e326c3ce00f3291e8bd9d476e47d2))
9
+
10
+
11
+ ### Documentation
12
+
13
+ * **api:** warn that a new account API key cannot be recovered ([3fbfe2b](https://github.com/growsurf/growsurf-ruby/commit/3fbfe2b758a0a2aecf0ad28be458c8350197a1e9))
14
+
3
15
  ## [1.5.0](https://github.com/growsurf/growsurf-ruby/compare/v1.4.0...v1.5.0) (2026-09-10)
4
16
 
5
17
 
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "growsurf-ruby", "~> 1.5.0"
20
+ gem "growsurf-ruby", "~> 1.5.1"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -3,17 +3,21 @@
3
3
  module GrowsurfRuby
4
4
  module Resources
5
5
  class Account
6
- # Creates a new GrowSurf account. This is the only endpoint that does not require
7
- # an API key. Before calling it, an authorized account owner must review and
8
- # approve GrowSurf's [Terms of Service](https://growsurf.com/terms) and [Privacy
9
- # Policy](https://growsurf.com/privacy). The account starts a 14-day Business
10
- # trial without a credit card. The response includes an API key for the new
11
- # account, shown once in the response. The key is a secret: store it in a secret
12
- # manager and do not put it in logs, screenshots, URLs, model context, analytics,
13
- # or generated output. The key is locked until the team owner's email address is
14
- # verified: authenticated program and resource endpoints return a `403` with error
15
- # code `EMAIL_NOT_VERIFIED_ERROR` until then (resend the email via `POST
16
- # /team/owner/verification-email`, then retry). Verification unlocks this same key
6
+ # Creates a new GrowSurf account. This is the only endpoint that does not require an API
7
+ # key. Before calling it, an authorized account owner must review and approve GrowSurf's
8
+ # [Terms of Service](https://growsurf.com/terms) and [Privacy
9
+ # Policy](https://growsurf.com/privacy). The account starts a 14-day Business trial
10
+ # without a credit card. The response includes an API key for the new account, shown once
11
+ # in the response. The key is a secret: store it in a secret manager and do not put it in
12
+ # logs, screenshots, URLs, model context, analytics, or generated output. A lost key
13
+ # cannot be recovered through this API, so do not create an account here unless you can
14
+ # store the key somewhere that outlives the current conversation. If you cannot, ask the
15
+ # account owner to connect GrowSurf's hosted MCP server at `https://mcp.growsurf.com`
16
+ # instead, which keeps the credential with your tool rather than in chat. The key is
17
+ # locked until the team owner's email address is verified: authenticated program and
18
+ # resource endpoints return a `403` with error code `EMAIL_NOT_VERIFIED_ERROR` until then
19
+ # (resend the email via `POST /team/owner/verification-email`, then retry). Verification
20
+ # unlocks this same key
17
21
  # - keep it and retry rather than requesting a replacement. A welcome email is
18
22
  # sent to the address with the verification link and a set-password link for
19
23
  # dashboard access. Accounts whose email is never verified are deleted
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GrowsurfRuby
4
- VERSION = "1.5.0"
4
+ VERSION = "1.5.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: growsurf-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Growsurf