utobo-email 1.0.0 → 1.0.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: 9f99b1c98483d5c62504904bd4cbb735d1a50e8260f98b2f6926897d852a0b89
4
- data.tar.gz: 5fe4c2dfb7c4fe3b1a891db293a9703e867baa9acf644ab850f29b2faabc269c
3
+ metadata.gz: 3708fa1415fa2d856ec01bf142e105569ff218c0ecb2673dcae2fdce606f2fd5
4
+ data.tar.gz: '08f54068ebf4f7deb34513a88dffc3c589f3f7e33e5c79377f81ea8e1e62ba97'
5
5
  SHA512:
6
- metadata.gz: 7923f8b1cbc0b50825859fae50aa278acfecdc8bda4308f7604d7c66e2998cb0387403b6af9d1d38d92bc2bd2224c4024ab77fb864df13e9293f59d97e01f1dd
7
- data.tar.gz: 2e4bcb8efab5946163cdc638781b5d98800ae5203228480a9473d9889db89ff48b6097fa382f4dd79a18e54adc6087ba3110ab713a40d5f079ca1146a58180ad
6
+ metadata.gz: 5489db56876f256e7ec8963273446e11a9e871197ba99068be924204a8e78805d1400290afa2c8697be9548a03aad7df0a275a21e4283cc2627709fe3970e8dc
7
+ data.tar.gz: 409760188e6dbcd1f1be6437c012754851a38f57d52c9999dac458fb280413221604a8713596c9e6aa1fd0334bb4433c2dba3470378d3c7a9c6e6b1356489759
data/README.md CHANGED
@@ -43,7 +43,7 @@ puts status["status"] # "sent" | "failed"
43
43
  | Option | Env var | Default |
44
44
  |--------|---------|---------|
45
45
  | `api_key` (1st arg) | `UTOBO_EMAIL_API_KEY` | — (required) |
46
- | `base_url:` | `UTOBO_EMAIL_BASE_URL` | `https://api.email.utobo.com/v1` |
46
+ | `base_url:` | `UTOBO_EMAIL_BASE_URL` | `https://qhxsmabxmwcxqqgcbhxe.supabase.co/functions/v1` |
47
47
 
48
48
  ## License
49
49
 
@@ -4,8 +4,8 @@ require "json"
4
4
 
5
5
  module UtoboEmail
6
6
  class Client
7
- DEFAULT_BASE_URL = "https://api.email.utobo.com/v1"
8
- SDK_VERSION = "1.0.0"
7
+ DEFAULT_BASE_URL = "https://qhxsmabxmwcxqqgcbhxe.supabase.co/functions/v1"
8
+ SDK_VERSION = "1.0.1"
9
9
 
10
10
  attr_reader :emails
11
11
 
data/lib/utobo_email.rb CHANGED
@@ -3,7 +3,7 @@ require_relative "utobo_email/emails"
3
3
  require_relative "utobo_email/errors"
4
4
 
5
5
  module UtoboEmail
6
- VERSION = "1.0.0"
6
+ VERSION = "1.0.1"
7
7
 
8
8
  def self.new(api_key = nil, base_url: nil)
9
9
  Client.new(api_key, base_url: base_url)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: utobo-email
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Utobo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-09 00:00:00.000000000 Z
11
+ date: 2026-07-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Send transactional emails and check delivery status via the utobo email
14
14
  API.