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 +4 -4
- data/CHANGELOG.md +12 -0
- data/README.md +1 -1
- data/lib/growsurf_ruby/resources/account.rb +15 -11
- data/lib/growsurf_ruby/version.rb +1 -1
- 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: 28212ccf1fefd2b64f24e1a6a0414f1e01d6de7d1e762101fe4e9abf954aee34
|
|
4
|
+
data.tar.gz: 69696a4baede734098665f363a142d9b88490394a5dc18e75119e8957c4b184f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -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
|
-
#
|
|
8
|
-
#
|
|
9
|
-
# Policy](https://growsurf.com/privacy). The account starts a 14-day Business
|
|
10
|
-
#
|
|
11
|
-
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
16
|
-
#
|
|
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
|