braze_ruby 0.4.2 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +57 -0
- data/.circleci/gem_credentials +2 -0
- data/.circleci/setup-rubygems +6 -0
- data/.gitignore +12 -19
- data/.standard.yml +1 -0
- data/Gemfile +1 -2
- data/LICENSE.txt +17 -18
- data/README.md +4 -1
- data/Rakefile +2 -1
- data/bin/release +16 -0
- data/braze_ruby.gemspec +28 -31
- data/lib/braze_ruby.rb +4 -4
- data/lib/braze_ruby/api.rb +12 -12
- data/lib/braze_ruby/deprecated.rb +4 -4
- data/lib/braze_ruby/endpoints.rb +10 -10
- data/lib/braze_ruby/endpoints/remove_external_ids.rb +2 -2
- data/lib/braze_ruby/endpoints/rename_external_ids.rb +2 -2
- data/lib/braze_ruby/endpoints/subscription.rb +0 -1
- data/lib/braze_ruby/http.rb +8 -8
- data/lib/braze_ruby/rest.rb +20 -20
- data/lib/braze_ruby/rest/base.rb +3 -3
- data/lib/braze_ruby/rest/canvas_details.rb +1 -1
- data/lib/braze_ruby/rest/create_user_aliases.rb +2 -2
- data/lib/braze_ruby/rest/delete_users.rb +2 -2
- data/lib/braze_ruby/rest/email_hard_bounces.rb +1 -1
- data/lib/braze_ruby/rest/email_status.rb +3 -3
- data/lib/braze_ruby/rest/email_unsubscribes.rb +1 -1
- data/lib/braze_ruby/rest/export_users.rb +4 -4
- data/lib/braze_ruby/rest/identify_users.rb +2 -2
- data/lib/braze_ruby/rest/list_segments.rb +1 -1
- data/lib/braze_ruby/rest/remove_external_ids.rb +2 -2
- data/lib/braze_ruby/rest/rename_external_ids.rb +2 -2
- data/lib/braze_ruby/rest/schedule_messages.rb +6 -6
- data/lib/braze_ruby/rest/send_messages.rb +3 -3
- data/lib/braze_ruby/rest/subscription_status_get.rb +1 -1
- data/lib/braze_ruby/rest/subscription_status_set.rb +1 -1
- data/lib/braze_ruby/rest/subscription_user_status.rb +1 -1
- data/lib/braze_ruby/rest/track_users.rb +4 -4
- data/lib/braze_ruby/rest/trigger_campaign_send.rb +1 -1
- data/lib/braze_ruby/rest/trigger_canvas_send.rb +1 -1
- data/lib/braze_ruby/version.rb +1 -1
- metadata +45 -197
- data/.github/workflows/ci.yml +0 -30
- data/Gemfile.lock +0 -82
- data/spec/braze_ruby/api_spec.rb +0 -6
- data/spec/braze_ruby/endpoints/delete_users_spec.rb +0 -31
- data/spec/braze_ruby/endpoints/track_users_spec.rb +0 -74
- data/spec/braze_ruby/http_spec.rb +0 -48
- data/spec/braze_ruby/rest/create_user_aliases_spec.rb +0 -23
- data/spec/braze_ruby/rest/delete_users_spec.rb +0 -22
- data/spec/braze_ruby/rest/email_status_spec.rb +0 -20
- data/spec/braze_ruby/rest/export_users_spec.rb +0 -21
- data/spec/braze_ruby/rest/identify_users_spec.rb +0 -23
- data/spec/braze_ruby/rest/remove_external_ids_spec.rb +0 -22
- data/spec/braze_ruby/rest/rename_external_ids_spec.rb +0 -22
- data/spec/braze_ruby/rest/schedule_messages_spec.rb +0 -37
- data/spec/braze_ruby/rest/send_messages_spec.rb +0 -30
- data/spec/braze_ruby/rest/track_users_spec.rb +0 -27
- data/spec/factories.rb +0 -38
- data/spec/fixtures/responses/campaigns/trigger_send/sends_an_email.yml +0 -71
- data/spec/fixtures/responses/canvas/details/returns_error_when_no_canvas.yml +0 -69
- data/spec/fixtures/responses/canvas/trigger_send/sends_a_canvas.yml +0 -71
- data/spec/fixtures/responses/create_user_aliases/unauthorized/responds_with_unauthorized.yml +0 -67
- data/spec/fixtures/responses/create_user_aliases/with_success/responds_with_created.yml +0 -71
- data/spec/fixtures/responses/create_user_aliases/with_success/responds_with_success_message.yml +0 -71
- data/spec/fixtures/responses/delete_users/unauthorized/responds_with_unauthorized.yml +0 -68
- data/spec/fixtures/responses/delete_users/with_success/responds_with_created.yml +0 -71
- data/spec/fixtures/responses/delete_users/with_success/responds_with_success_message.yml +0 -71
- data/spec/fixtures/responses/email_status/existing_email/responds_with_created.yml +0 -71
- data/spec/fixtures/responses/email_status/existing_email/responds_with_success_message.yml +0 -71
- data/spec/fixtures/responses/email_status/unknown_email/responds_with_bad_request.yml +0 -71
- data/spec/fixtures/responses/email_status/unknown_email/responds_with_success_message.yml +0 -71
- data/spec/fixtures/responses/email_sync/hard_bounces/responds_with_empty_array_when_no_hard_bounces.yml +0 -75
- data/spec/fixtures/responses/email_sync/unsubscribes/responds_with_empty_array_when_no_unsubscribes.yml +0 -75
- data/spec/fixtures/responses/email_sync/unsubscribes/responds_with_unsubscribed_emails.yml +0 -75
- data/spec/fixtures/responses/export_users/by_ids/with_success/responds_with_created.yml +0 -72
- data/spec/fixtures/responses/export_users/by_segment/with_success/responds_with_created.yml +0 -71
- data/spec/fixtures/responses/identify_users/unauthorized/responds_with_unauthorized.yml +0 -68
- data/spec/fixtures/responses/identify_users/with_success/responds_with_created.yml +0 -71
- data/spec/fixtures/responses/identify_users/with_success/responds_with_success_message.yml +0 -71
- data/spec/fixtures/responses/list_segments/with_success/responds_with_a_list_of_segments.yml +0 -81
- data/spec/fixtures/responses/list_segments/with_success/responds_with_success.yml +0 -81
- data/spec/fixtures/responses/remove_external_ids/unauthorized/responds_with_unauthorized.yml +0 -67
- data/spec/fixtures/responses/remove_external_ids/with_success/responds_with_created.yml +0 -69
- data/spec/fixtures/responses/remove_external_ids/with_success/responds_with_success_message.yml +0 -69
- data/spec/fixtures/responses/rename_external_ids/unauthorized/responds_with_unauthorized.yml +0 -67
- data/spec/fixtures/responses/rename_external_ids/with_success/responds_with_created.yml +0 -69
- data/spec/fixtures/responses/rename_external_ids/with_success/responds_with_success_message.yml +0 -69
- data/spec/fixtures/responses/schedule_messages/unauthorized/responds_with_unauthorize.yml +0 -68
- data/spec/fixtures/responses/schedule_messages/with_success/responds_with_created.yml +0 -71
- data/spec/fixtures/responses/schedule_messages/with_success/responds_with_success_message.yml +0 -71
- data/spec/fixtures/responses/send_messages/unauthorized/responds_with_unauthorized.yml +0 -68
- data/spec/fixtures/responses/send_messages/with_success/responds_with_created.yml +0 -71
- data/spec/fixtures/responses/send_messages/with_success/responds_with_success_message.yml +0 -71
- data/spec/fixtures/responses/subscription/subscription_status_set/when_subscribing/subscribes_the_user.yml +0 -71
- data/spec/fixtures/responses/subscription/subscription_status_set/when_subscription_group_does_not_exist/returns_an_error_status.yml +0 -68
- data/spec/fixtures/responses/subscription/subscription_status_set/when_unsubscribing/unsubscribes_the_user.yml +0 -139
- data/spec/fixtures/responses/subscription/when_getting_subscription_group_statuses/subscription_status_get/when_checking_subscribed_and_unsubscribed_user_status/returns_only_users_that_were_once_subscribed.yml +0 -211
- data/spec/fixtures/responses/subscription/when_getting_subscription_group_statuses/subscription_status_get/when_group_does_not_exist/returns_an_error.yml +0 -199
- data/spec/fixtures/responses/subscription/when_getting_subscription_group_statuses/subscription_user_status/returns_subscription_groups_and_status_for_every_group.yml +0 -211
- data/spec/fixtures/responses/track_users/unauthorized/responds_with_unauthorized.yml +0 -70
- data/spec/fixtures/responses/track_users/with_success/responds_with_created.yml +0 -73
- data/spec/fixtures/responses/track_users/with_success/responds_with_success_message.yml +0 -73
- data/spec/integrations/campaigns_spec.rb +0 -19
- data/spec/integrations/canvas_spec.rb +0 -28
- data/spec/integrations/create_user_aliases_spec.rb +0 -32
- data/spec/integrations/delete_users_spec.rb +0 -32
- data/spec/integrations/email_status_spec.rb +0 -38
- data/spec/integrations/email_sync_spec.rb +0 -31
- data/spec/integrations/export_users_spec.rb +0 -29
- data/spec/integrations/identify_users_spec.rb +0 -32
- data/spec/integrations/list_segments_spec.rb +0 -21
- data/spec/integrations/remove_external_ids_spec.rb +0 -33
- data/spec/integrations/rename_external_ids_spec.rb +0 -37
- data/spec/integrations/schedule_messages_spec.rb +0 -34
- data/spec/integrations/send_messages_spec.rb +0 -33
- data/spec/integrations/subscription_spec.rb +0 -149
- data/spec/integrations/track_users_spec.rb +0 -38
- data/spec/spec_helper.rb +0 -25
- data/spec/support/factory_bot.rb +0 -12
- data/spec/support/integrations.rb +0 -27
- data/spec/support/vcr.rb +0 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae77ca2f5ea9cf492d7f681c37fcbff40f912b8ce8ac9db237a9b91e8c5fc76a
|
4
|
+
data.tar.gz: 033f2a42048dfff0af864534900a5405ba5a56099e3630c23512f73a30a56468
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67d8ff06c45f2e3d90e000c9093118c80d85136e77961cf5cf6bbdf1d45dd57b704905b1ff5388413df142773cd2e76a2473e92b9e2edcdbc85752ed09a6d111
|
7
|
+
data.tar.gz: 409c1603839abd4bf95c0096c54c936ea6fa438f350d368b8e3e117b1d1a17a082c55991c53fd4d75c2b67a2649792c01330db2e7f58ef94896cd00fe8f5bbaf
|
@@ -0,0 +1,57 @@
|
|
1
|
+
version: 2.1
|
2
|
+
|
3
|
+
jobs:
|
4
|
+
test:
|
5
|
+
parameters:
|
6
|
+
ruby-version:
|
7
|
+
type: string
|
8
|
+
docker:
|
9
|
+
- image: << parameters.ruby-version >>
|
10
|
+
steps:
|
11
|
+
- checkout
|
12
|
+
|
13
|
+
- run:
|
14
|
+
name: Gem install bundler
|
15
|
+
command: gem update --system && gem install bundler
|
16
|
+
|
17
|
+
- run:
|
18
|
+
name: Bundle install
|
19
|
+
command: bundle install --jobs=4 --retry=3 --path vendor/bundle
|
20
|
+
|
21
|
+
- run:
|
22
|
+
name: Run tests
|
23
|
+
command: bundle exec rake
|
24
|
+
|
25
|
+
publish:
|
26
|
+
docker:
|
27
|
+
- image: ruby:3.0.0
|
28
|
+
steps:
|
29
|
+
- checkout
|
30
|
+
|
31
|
+
- run:
|
32
|
+
name: Setup Rubygems
|
33
|
+
command: bash .circleci/setup-rubygems
|
34
|
+
|
35
|
+
- run:
|
36
|
+
name: Build gem
|
37
|
+
command: gem build braze_ruby.gemspec --output braze_ruby.gem
|
38
|
+
|
39
|
+
- run:
|
40
|
+
name: Publish gem
|
41
|
+
command: gem push braze_ruby.gem
|
42
|
+
|
43
|
+
workflows:
|
44
|
+
all-tests:
|
45
|
+
jobs:
|
46
|
+
- test:
|
47
|
+
matrix:
|
48
|
+
parameters:
|
49
|
+
ruby-version: ["ruby:3.0.0", "ruby:2.7.2", "ruby:2.6.3"]
|
50
|
+
release:
|
51
|
+
jobs:
|
52
|
+
- publish:
|
53
|
+
filters:
|
54
|
+
tags:
|
55
|
+
only: /^v.*/
|
56
|
+
branches:
|
57
|
+
ignore: /.*/
|
data/.gitignore
CHANGED
@@ -1,19 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
lib/bundler/man
|
14
|
-
pkg
|
15
|
-
rdoc
|
16
|
-
spec/reports
|
17
|
-
test/tmp
|
18
|
-
test/version_tmp
|
19
|
-
tmp
|
1
|
+
/.bundle/
|
2
|
+
/.yardoc
|
3
|
+
/_yardoc/
|
4
|
+
/coverage/
|
5
|
+
/doc/
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/tmp/
|
9
|
+
Gemfile.lock
|
10
|
+
|
11
|
+
# rspec failure tracking
|
12
|
+
.rspec_status
|
data/.standard.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
format: progress
|
data/Gemfile
CHANGED
data/LICENSE.txt
CHANGED
@@ -1,22 +1,21 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
2
|
|
3
|
-
|
3
|
+
Copyright (c) 2021 Jon Allured
|
4
4
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
the following conditions:
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
12
11
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
15
14
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
OF
|
22
|
-
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# BrazeRuby
|
1
|
+
# BrazeRuby [![CircleCI][badge]][circle]
|
2
2
|
|
3
3
|
A wrapper for the Braze REST API. Forked from https://github.com/DynamoMTL/appboy
|
4
4
|
|
@@ -263,3 +263,6 @@ bundle exec rails whatever
|
|
263
263
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
264
264
|
4. Push to the branch (`git push origin my-new-feature`)
|
265
265
|
5. Create new Pull Request
|
266
|
+
|
267
|
+
[badge]: https://circleci.com/gh/jonallured/braze_ruby.svg?style=svg
|
268
|
+
[circle]: https://circleci.com/gh/jonallured/braze_ruby
|
data/Rakefile
CHANGED
data/bin/release
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#! /bin/sh
|
2
|
+
set -ex
|
3
|
+
|
4
|
+
old_version=$1
|
5
|
+
new_version=$2
|
6
|
+
|
7
|
+
version_files="lib/braze_ruby/version.rb Gemfile.lock"
|
8
|
+
commit_message="Bumping version numbers for $new_version"
|
9
|
+
tag_message="Tagging version $new_version"
|
10
|
+
|
11
|
+
sed -i "" "s/$old_version/$new_version/g" $version_files
|
12
|
+
git add .
|
13
|
+
git commit --message "$commit_message"
|
14
|
+
git push origin main
|
15
|
+
git tag --annotate v$new_version --message "$tag_message"
|
16
|
+
git push origin --tags
|
data/braze_ruby.gemspec
CHANGED
@@ -1,38 +1,35 @@
|
|
1
|
-
|
2
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
-
require 'braze_ruby/version'
|
1
|
+
require_relative "lib/braze_ruby/version"
|
4
2
|
|
5
3
|
Gem::Specification.new do |spec|
|
6
|
-
spec.name
|
7
|
-
spec.version
|
8
|
-
spec.authors
|
9
|
-
spec.email
|
10
|
-
spec.description = %q{Braze wrapper}
|
11
|
-
spec.summary = %q{A wrapper for the Braze REST API forked from the appboy gem, track users/events/purchases, send & schedule messages}
|
12
|
-
spec.homepage = 'https://www.braze.com/'
|
13
|
-
spec.license = 'MIT'
|
4
|
+
spec.name = "braze_ruby"
|
5
|
+
spec.version = BrazeRuby::VERSION
|
6
|
+
spec.authors = ["Josh Nussbaum", "Hugo Bastien", "Justin Boltz", "Jonathan Allured"]
|
7
|
+
spec.email = %w[josh@godynamo.com hugo@godynamo.com justin.boltz@takl.com jon.allured@gmail.com]
|
14
8
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
9
|
+
spec.summary = "A wrapper gem for the Braze REST API."
|
10
|
+
spec.description = "Wrapper for Braze API"
|
11
|
+
spec.homepage = "https://github.com/jonallured/braze_ruby"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
|
14
|
+
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
21
17
|
|
22
|
-
spec.files
|
23
|
-
|
24
|
-
|
25
|
-
spec.
|
26
|
-
spec.
|
18
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
19
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
|
20
|
+
end
|
21
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
22
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
23
|
+
spec.require_paths = ["lib"]
|
27
24
|
|
28
|
-
spec.add_dependency
|
25
|
+
spec.add_dependency "faraday"
|
29
26
|
|
30
|
-
spec.add_development_dependency
|
31
|
-
spec.add_development_dependency
|
32
|
-
spec.add_development_dependency
|
33
|
-
spec.add_development_dependency
|
34
|
-
spec.add_development_dependency
|
35
|
-
spec.add_development_dependency
|
36
|
-
spec.add_development_dependency
|
37
|
-
spec.add_development_dependency
|
27
|
+
spec.add_development_dependency "dotenv"
|
28
|
+
spec.add_development_dependency "factory_bot"
|
29
|
+
spec.add_development_dependency "pry"
|
30
|
+
spec.add_development_dependency "rake"
|
31
|
+
spec.add_development_dependency "rspec"
|
32
|
+
spec.add_development_dependency "standard"
|
33
|
+
spec.add_development_dependency "vcr"
|
34
|
+
spec.add_development_dependency "webmock"
|
38
35
|
end
|
data/lib/braze_ruby.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require
|
3
|
+
require "braze_ruby/version"
|
4
4
|
|
5
5
|
module BrazeRuby
|
6
|
-
autoload :API,
|
7
|
-
autoload :REST,
|
8
|
-
autoload :Endpoints,
|
6
|
+
autoload :API, "braze_ruby/api"
|
7
|
+
autoload :REST, "braze_ruby/rest"
|
8
|
+
autoload :Endpoints, "braze_ruby/endpoints"
|
9
9
|
end
|
data/lib/braze_ruby/api.rb
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require
|
4
|
-
require
|
5
|
-
require
|
6
|
-
require
|
7
|
-
require
|
8
|
-
require
|
9
|
-
require
|
10
|
-
require
|
11
|
-
require
|
12
|
-
require
|
13
|
-
require
|
14
|
-
require
|
3
|
+
require "braze_ruby/deprecated"
|
4
|
+
require "braze_ruby/endpoints/track_users"
|
5
|
+
require "braze_ruby/endpoints/send_messages"
|
6
|
+
require "braze_ruby/endpoints/schedule_messages"
|
7
|
+
require "braze_ruby/endpoints/email_status"
|
8
|
+
require "braze_ruby/endpoints/email_sync"
|
9
|
+
require "braze_ruby/endpoints/delete_users"
|
10
|
+
require "braze_ruby/endpoints/campaigns"
|
11
|
+
require "braze_ruby/endpoints/canvas"
|
12
|
+
require "braze_ruby/endpoints/subscription"
|
13
|
+
require "braze_ruby/endpoints/rename_external_ids"
|
14
|
+
require "braze_ruby/endpoints/remove_external_ids"
|
15
15
|
|
16
16
|
module BrazeRuby
|
17
17
|
class API
|
@@ -3,19 +3,19 @@
|
|
3
3
|
module BrazeRuby
|
4
4
|
module Deprecated
|
5
5
|
def track(attribute, events = [], purchases = [])
|
6
|
-
warn(
|
6
|
+
warn("[BrazeRuby] `track` is deprecated. Please use `track_users` instead.")
|
7
7
|
track_users(attribute: attribute, events: events, purchases: purchases)
|
8
8
|
end
|
9
9
|
|
10
10
|
def send_message(message, user_ids, segment_ids = nil)
|
11
|
-
warn(
|
11
|
+
warn("[BrazeRuby] `send_message` is deprecated. Please use `send_messages` instead.")
|
12
12
|
send_messages(messages: message, user_ids: user_ids, segment_ids: segment_ids)
|
13
13
|
end
|
14
14
|
|
15
15
|
def schedule_message(date, message, segment_id, local_timezone = false)
|
16
|
-
warn(
|
16
|
+
warn("[BrazeRuby] `schedule_message` is deprecated. Please use `schedule_messages` instead.")
|
17
17
|
schedule_messages(send_at: date, messages: message,
|
18
|
-
|
18
|
+
segment_id: segment_id, local_timezone: local_timezone)
|
19
19
|
end
|
20
20
|
end
|
21
21
|
end
|
data/lib/braze_ruby/endpoints.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require
|
4
|
-
require
|
5
|
-
require
|
6
|
-
require
|
7
|
-
require
|
8
|
-
require
|
9
|
-
require
|
10
|
-
require
|
11
|
-
require
|
12
|
-
require
|
3
|
+
require "braze_ruby/endpoints/email_status"
|
4
|
+
require "braze_ruby/endpoints/email_sync"
|
5
|
+
require "braze_ruby/endpoints/schedule_messages"
|
6
|
+
require "braze_ruby/endpoints/send_messages"
|
7
|
+
require "braze_ruby/endpoints/track_users"
|
8
|
+
require "braze_ruby/endpoints/delete_users"
|
9
|
+
require "braze_ruby/endpoints/identify_users"
|
10
|
+
require "braze_ruby/endpoints/create_user_aliases"
|
11
|
+
require "braze_ruby/endpoints/rename_external_ids"
|
12
|
+
require "braze_ruby/endpoints/remove_external_ids"
|
@@ -5,8 +5,8 @@ module BrazeRuby
|
|
5
5
|
module RemoveExternalIds
|
6
6
|
attr_writer :remove_external_ids_service
|
7
7
|
|
8
|
-
def remove_external_ids(
|
9
|
-
remove_external_ids_service.perform(
|
8
|
+
def remove_external_ids(payload)
|
9
|
+
remove_external_ids_service.perform(external_ids: payload[:external_ids])
|
10
10
|
end
|
11
11
|
|
12
12
|
private
|
@@ -5,8 +5,8 @@ module BrazeRuby
|
|
5
5
|
module RenameExternalIds
|
6
6
|
attr_writer :rename_external_ids_service
|
7
7
|
|
8
|
-
def rename_external_ids(
|
9
|
-
rename_external_ids_service.perform(
|
8
|
+
def rename_external_ids(payload)
|
9
|
+
rename_external_ids_service.perform(external_id_renames: payload[:external_id_renames])
|
10
10
|
end
|
11
11
|
|
12
12
|
private
|
@@ -11,7 +11,6 @@ module BrazeRuby
|
|
11
11
|
BrazeRuby::REST::SubscriptionStatusGet.new(api_key, braze_url, options, **payload).perform
|
12
12
|
end
|
13
13
|
|
14
|
-
|
15
14
|
def subscription_user_status(**payload)
|
16
15
|
BrazeRuby::REST::SubscriptionUserStatus.new(api_key, braze_url, options, **payload).perform
|
17
16
|
end
|
data/lib/braze_ruby/http.rb
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require
|
4
|
-
require
|
3
|
+
require "json"
|
4
|
+
require "faraday"
|
5
5
|
|
6
6
|
module BrazeRuby
|
7
7
|
class HTTP
|
8
8
|
DEFAULT_TIMEOUT = 30
|
9
9
|
|
10
10
|
def initialize(api_key, braze_url, options = {})
|
11
|
-
@api_key
|
11
|
+
@api_key = api_key
|
12
12
|
@braze_url = braze_url
|
13
|
-
@options
|
13
|
+
@options = default_options.merge(options)
|
14
14
|
end
|
15
15
|
|
16
16
|
def post(path, payload)
|
@@ -25,12 +25,12 @@ module BrazeRuby
|
|
25
25
|
|
26
26
|
def connection
|
27
27
|
@connection ||= Faraday.new(url: @braze_url) do |connection|
|
28
|
-
connection.headers["Content-Type"]
|
29
|
-
connection.headers["Accept"]
|
30
|
-
connection.headers["User-Agent"]
|
28
|
+
connection.headers["Content-Type"] = "application/json"
|
29
|
+
connection.headers["Accept"] = "application/json"
|
30
|
+
connection.headers["User-Agent"] = "Braze Ruby gem v#{BrazeRuby::VERSION}"
|
31
31
|
connection.headers["Authorization"] = "Bearer #{@api_key}"
|
32
32
|
|
33
|
-
connection.response :logger if ENV[
|
33
|
+
connection.response :logger if ENV["BRAZE_RUBY_DEBUG"]
|
34
34
|
|
35
35
|
connection.adapter Faraday.default_adapter
|
36
36
|
|