helpscout-mailbox-paths 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2f115cdd3dc90b119a8d4e439411f6c09f06ca799965a964e9b32b7e5827dae2
4
+ data.tar.gz: 0e6d8541b9c8f85dac4c280afdccb7400773208b87e6279cdc0449f8401ff6ce
5
+ SHA512:
6
+ metadata.gz: cff58d579cc9450ef348cc092681f0aee025d94f14160ce5bb070c321f96bc2bd65a428cad6918e55e309021920519f9246a8ab7c14a8f14843c7ea8121523ac
7
+ data.tar.gz: 4992916597b9404e17e9312a00092e31ff934b7afbfbd929cb5de04f0dda4b7b1358c3bc05040aaaadf7ffb1bc4056bb3b50d2d5591d0e2b5c4b89b87ddd9ded
@@ -0,0 +1,6 @@
1
+ steps:
2
+ - name: ":rspec:"
3
+ command: "bundle exec rspec"
4
+ plugins:
5
+ docker-compose#v3.2.0:
6
+ run: app
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1 @@
1
+ 2.7.0
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at TODO: Write your email address. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
@@ -0,0 +1,8 @@
1
+ FROM ruby:2.7
2
+
3
+ RUN mkdir /app
4
+ WORKDIR /app
5
+
6
+ COPY . /app
7
+
8
+ RUN bundle install -j 8
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in helpscout-mailbox-paths.gemspec
4
+ gemspec
@@ -0,0 +1,35 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ helpscout-mailbox-paths (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.3)
10
+ rake (13.0.1)
11
+ rspec (3.9.0)
12
+ rspec-core (~> 3.9.0)
13
+ rspec-expectations (~> 3.9.0)
14
+ rspec-mocks (~> 3.9.0)
15
+ rspec-core (3.9.1)
16
+ rspec-support (~> 3.9.1)
17
+ rspec-expectations (3.9.0)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.9.0)
20
+ rspec-mocks (3.9.1)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.9.0)
23
+ rspec-support (3.9.2)
24
+
25
+ PLATFORMS
26
+ ruby
27
+
28
+ DEPENDENCIES
29
+ bundler (~> 2.0)
30
+ helpscout-mailbox-paths!
31
+ rake (>= 12.3.3)
32
+ rspec (~> 3.0)
33
+
34
+ BUNDLED WITH
35
+ 2.1.2
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Jason Jacob
4
+
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:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
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 THE
21
+ SOFTWARE.
@@ -0,0 +1,183 @@
1
+ # Helpscout::Mailbox::Paths
2
+
3
+ [![Build status](https://badge.buildkite.com/f19b143ad6bbb2fce71a361da78e974be4737e14d578d21b5d.svg)](https://buildkite.com/jayco/helpscout-mailbox-paths)
4
+
5
+ Simple Gem for generating helpscout paths with params
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'helpscout-mailbox-paths'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install helpscout-mailbox-paths
22
+
23
+ ## Usage
24
+
25
+ ## Helpscout::Mailbox::Paths.generate_path()
26
+
27
+ ```ruby
28
+ require 'helpscout/mailbox/paths'
29
+
30
+ mailbox = Helpscout::Mailbox::Paths.generate_path(:v2_conversation, {conversation_id: 1089909636})
31
+ # => {:method=>"GET", :path=>"/v2/conversations/1089909636"}
32
+ ```
33
+
34
+ ## API Mapping
35
+
36
+ ```ruby
37
+ PATH_MAP = {
38
+ v2_conversations_create: ['POST', '/v2/conversations'],
39
+ v2_conversations: ['GET', '/v2/conversations'],
40
+ v2_conversations_delete: ['DELETE', '/v2/conversations/%{conversation_id}'],
41
+ v2_conversation: ['GET', '/v2/conversations/%{conversation_id}'],
42
+ v2_conversations_update: ['PATCH', '/v2/conversations/%{conversation_id}'],
43
+
44
+ v2_conversations_attachment_delete: ['DELETE', '/v2/conversations/%{conversation_id}/attachments/%{attachment_id}'],
45
+ v2_conversations_attachment: ['GET', '/v2/conversations/%{conversation_id}/attachments/%{attachment_id}/data'],
46
+ v2_conversations_attachment_create: ['POST', '/v2/conversations/%{conversation_id}/threads/%{thread_id}/attachments'],
47
+
48
+ v2_conversations_fields_update: ['PUT', '/v2/conversations/%{conversation_id}/fields'],
49
+ v2_conversations_tags_update: ['PUT', '/v2/conversations/%{conversation_id}/tags'],
50
+
51
+ v2_conversations_chat_create: ['POST', '/v2/conversations/%{conversation_id}/chats'],
52
+ v2_conversations_note_create: ['POST', '/v2/conversations/%{conversation_id}/notes'],
53
+ v2_conversations_phone_create: ['POST', '/v2/conversations/%{conversation_id}/phones'],
54
+ v2_conversations_reply_create: ['POST', '/v2/conversations/%{conversation_id}/reply'],
55
+
56
+ v2_conversations_original_source: ['GET', '/v2/conversations/%{conversation_id}/threads/%{thread_id}/original-source'],
57
+
58
+ v2_conversations_thread_create: ['POST', '/v2/conversations/%{conversation_id}/customer'],
59
+ v2_conversations_thread_list: ['GET', '/v2/conversations/%{conversation_id}/threads'],
60
+ v2_conversations_thread_update: ['PATCH', '/v2/conversations/%{conversation_id}/threads/%{thread_id}'],
61
+
62
+ v2_conversations_customer_properties: ['GET', '/v2/customer-properties'],
63
+
64
+ v2_customers: ['GET', '/v2/customers'],
65
+ v2_customers_create: ['POST', '/v2/customers'],
66
+ v2_customer: ['GET', '/v2/customers/%{customer_id}'],
67
+ v2_customers_overwrite: ['PUT', '/v2/customers/%{customer_id}'],
68
+ v2_customers_update: ['PATCH', '/v2/customers/%{customer_id}'],
69
+
70
+ v2_customers_address_create: ['POST', '/v2/customers/%{customer_id}/address'],
71
+ v2_customers_address_delete: ['DELETE', '/v2/customers/%{customer_id}/address'],
72
+ v2_customers_address: ['GET', '/v2/customers/%{customer_id}/address'],
73
+ v2_customers_address_update: ['PATCH', '/v2/customers/%{customer_id}/address'],
74
+
75
+ v2_customers_chats: ['GET', '/v2/customers/%{customer_id}/chats'],
76
+ v2_customers_chats_create: ['POST', '/v2/customers/%{customer_id}/chats/%{chat_id}'],
77
+ v2_customers_chats_update: ['PUT', '/v2/customers/%{customer_id}/chats/%{chat_id}'],
78
+
79
+ v2_customers_emails_create: ['POST', '/v2/customers/%{customer_id}/emails'],
80
+ v2_customers_emails: ['GET', '/v2/customers/%{customer_id}/emails'],
81
+ v2_customers_emails_update: ['PUT', '/v2/customers/%{customer_id}/emails/%{email_id}'],
82
+ v2_customers_emails_delete: ['DELETE', '/v2/customers/%{customer_id}/emails/%{email_id}'],
83
+
84
+ v2_customers_phones_create: ['POST', '/v2/customers/%{customer_id}/phones'],
85
+ v2_customers_phones: ['GET', '/v2/customers/%{customer_id}/phones'],
86
+ v2_customers_phones_update: ['PUT', '/v2/customers/%{customer_id}/phones/%{phone_id}'],
87
+ v2_customers_phones_delete: ['DELETE', '/v2/customers/%{customer_id}/phones/%{phone_id}'],
88
+
89
+ v2_customers_social_create: ['POST', '/v2/customers/%{customer_id}/social-profiles'],
90
+ v2_customers_social: ['GET', '/v2/customers/%{customer_id}/social-profiles'],
91
+ v2_customers_social_update: ['PUT', '/v2/customers/%{customer_id}/social-profiles/%{profile_id}'],
92
+ v2_customers_social_delete: ['DELETE', '/v2/customers/%{customer_id}/social-profiles/%{profile_id}'],
93
+
94
+ v2_customers_website_create: ['POST', '/v2/customers/%{customer_id}/websites'],
95
+ v2_customers_website: ['GET', '/v2/customers/%{customer_id}/websites'],
96
+ v2_customers_website_update: ['PUT', '/v2/customers/%{customer_id}/websites/%{website_id}'],
97
+ v2_customers_website_delete: ['DELETE', '/v2/customers/%{customer_id}/websites/%{website_id}'],
98
+
99
+ v2_customers_properties_update: ['PATCH', '/v2/customers/%{customer_id}/properties'],
100
+
101
+ v2_mailboxes: ['GET', '/v2/mailboxes'],
102
+ v2_mailbox: ['GET', '/v2/mailboxes/%{mailbox_id}'],
103
+ v2_mailbox_fields: ['GET', '/v2/mailboxes/%{mailbox_id}/fields'],
104
+ v2_mailbox_folders: ['GET', '/v2/mailboxes/%{mailbox_id}/folders'],
105
+
106
+ v2_ratings: ['GET', '/v2/ratings/%{rating_id}'],
107
+
108
+ v2_reports_company: ['GET', '/v2/reports/company'],
109
+ v2_reports_company_customers_helped: ['GET', '/v2/reports/company/customers-helped'],
110
+ v2_reports_company_drilldown: ['GET', '/v2/reports/company/drilldown'],
111
+
112
+ v2_reports_conversations: ['GET', '/v2/reports/conversations'],
113
+ v2_reports_conversations_new: ['GET', '/v2/reports/conversations/new'],
114
+ v2_reports_conversations_channel_volume: ['GET', '/v2/reports/conversations/volume-by-channel'],
115
+ v2_reports_conversations_busy_times: ['GET', '/v2/reports/conversations/busy-times'],
116
+ v2_reports_conversations_drilldown: ['GET', '/v2/reports/conversations/drilldown'],
117
+ v2_reports_conversations_new_drilldown: ['GET', '/v2/reports/conversations/new-drilldown'],
118
+ v2_reports_conversations_fields_drilldown: ['GET', '/v2/reports/conversations/fields-drilldown'],
119
+ v2_reports_conversations_messages_received: ['GET', '/v2/reports/conversations/received-messages'],
120
+
121
+ v2_reports_docs: ['GET', '/v2/reports/docs'],
122
+
123
+ v2_reports_happiness: ['GET', '/v2/reports/happiness'],
124
+ v2_reports_happiness_ratings: ['GET', '/v2/reports/happiness/ratings'],
125
+
126
+ v2_reports_productivity: ['GET', '/v2/reports/productivity'],
127
+ v2_reports_productivity_first_response_times: ['GET', '/v2/reports/productivity/first-response-time'],
128
+ v2_reports_productivity_replies: ['GET', '/v2/reports/productivity/replies-sent'],
129
+ v2_reports_productivity_resolutions_times: ['GET', '/v2/reports/productivity/resolution-time'],
130
+ v2_reports_productivity_resolved: ['GET', '/v2/reports/productivity/resolved'],
131
+ v2_reports_productivity_response_times: ['GET', '/v2/reports/productivity/response-time'],
132
+
133
+ v2_reports_user: ['GET', '/v2/reports/user'],
134
+ v2_reports_user_conversation_history: ['GET', '/v2/reports/user/conversation-history'],
135
+ v2_reports_user_customers_helped: ['GET', '/v2/reports/user/customers-helped'],
136
+ v2_reports_user_happiness: ['GET', '/v2/reports/user/happiness'],
137
+ v2_reports_user_ratings: ['GET', '/v2/reports/user/ratings'],
138
+ v2_reports_user_replies: ['GET', '/v2/reports/user/replies'],
139
+ v2_reports_user_resolutions: ['GET', '/v2/reports/user/resolutions'],
140
+ v2_reports_user_drilldown: ['GET', '/v2/reports/user/drilldown'],
141
+
142
+ v2_reports_chat: ['GET', '/v2/reports/chat'],
143
+ v2_reports_email: ['GET', '/v2/reports/email'],
144
+ v2_reports_phone: ['GET', '/v2/reports/phone'],
145
+
146
+ v2_tags: ['GET', '/v2/tags'],
147
+
148
+ v2_teams: ['GET', '/v2/teams'],
149
+ v2_teams_members: ['GET', '/v2/teams/%{team_id}/members'],
150
+
151
+ v2_users: ['GET', '/v2/users'],
152
+ v2_me: ['GET', '/v2/users/me'],
153
+ v2_user: ['GET', '/v2/users/%{user_id}'],
154
+
155
+ v2_webhooks_create: ['POST', '/v2/webhooks'],
156
+ v2_webhooks: ['GET', '/v2/webhooks'],
157
+ v2_webhook: ['GET', '/v2/webhooks/%{webhook_id}'],
158
+ v2_webhooks_update: ['PUT', '/v2/webhooks/%{webhook_id}'],
159
+ v2_webhooks_delete: ['DELETE', '/v2/webhooks/%{webhook_id}'],
160
+
161
+ v2_workflows: ['GET', '/v2/workflows'],
162
+ v2_workflows_run: ['POST', '/v2/workflows/%{workflow_id}/run'],
163
+ v2_workflows_update: ['PATCH', '/v2/workflows/%{workflow_id}']
164
+ }
165
+ ```
166
+
167
+ ## Development
168
+
169
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
170
+
171
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
172
+
173
+ ## Contributing
174
+
175
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jayco/helpscout-mailbox-paths. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
176
+
177
+ ## License
178
+
179
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
180
+
181
+ ## Code of Conduct
182
+
183
+ Everyone interacting in the Helpscout::Mailbox::Paths project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/helpscout-mailbox-paths/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "helpscout/mailbox/paths"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ version: "3"
2
+
3
+ services:
4
+ app:
5
+ build: .
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'helpscout/mailbox/paths/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'helpscout-mailbox-paths'
9
+ spec.version = Helpscout::Mailbox::Paths::VERSION
10
+ spec.authors = ['Jason Jacob']
11
+ spec.email = ['hipcog@gmail.com']
12
+
13
+ spec.summary = 'Generates HelpScout V2 mailbox paths'
14
+ spec.homepage = 'https://github.com/jayco/helpscout-mailbox-paths.git'
15
+ spec.license = 'MIT'
16
+
17
+ spec.metadata['homepage_uri'] = spec.homepage
18
+ spec.metadata['source_code_uri'] = 'https://github.com/jayco/helpscout-mailbox-paths.git'
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
23
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
24
+ end
25
+ spec.bindir = 'exe'
26
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ['lib']
28
+
29
+ spec.add_development_dependency 'bundler', '~> 2.0'
30
+ spec.add_development_dependency 'rake', '>= 12.3.3'
31
+ spec.add_development_dependency 'rspec', '~> 3.0'
32
+ end
@@ -0,0 +1,146 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'helpscout/mailbox/paths/version'
4
+
5
+ module Helpscout
6
+ module Mailbox
7
+ module Paths
8
+ class Error < StandardError; end
9
+ PATH_MAP = {
10
+ v2_conversations_create: ['POST', '/v2/conversations'].freeze,
11
+ v2_conversations: ['GET', '/v2/conversations'].freeze,
12
+ v2_conversations_delete: ['DELETE', '/v2/conversations/%{conversation_id}'].freeze,
13
+ v2_conversation: ['GET', '/v2/conversations/%{conversation_id}'].freeze,
14
+ v2_conversations_update: ['PATCH', '/v2/conversations/%{conversation_id}'].freeze,
15
+
16
+ v2_conversations_attachment_delete: ['DELETE', '/v2/conversations/%{conversation_id}/attachments/%{attachment_id}'].freeze,
17
+ v2_conversations_attachment: ['GET', '/v2/conversations/%{conversation_id}/attachments/%{attachment_id}/data'].freeze,
18
+ v2_conversations_attachment_create: ['POST', '/v2/conversations/%{conversation_id}/threads/%{thread_id}/attachments'].freeze,
19
+
20
+ v2_conversations_fields_update: ['PUT', '/v2/conversations/%{conversation_id}/fields'].freeze,
21
+ v2_conversations_tags_update: ['PUT', '/v2/conversations/%{conversation_id}/tags'].freeze,
22
+
23
+ v2_conversations_chat_create: ['POST', '/v2/conversations/%{conversation_id}/chats'].freeze,
24
+ v2_conversations_note_create: ['POST', '/v2/conversations/%{conversation_id}/notes'].freeze,
25
+ v2_conversations_phone_create: ['POST', '/v2/conversations/%{conversation_id}/phones'].freeze,
26
+ v2_conversations_reply_create: ['POST', '/v2/conversations/%{conversation_id}/reply'].freeze,
27
+
28
+ v2_conversations_original_source: ['GET', '/v2/conversations/%{conversation_id}/threads/%{thread_id}/original-source'].freeze,
29
+
30
+ v2_conversations_thread_create: ['POST', '/v2/conversations/%{conversation_id}/customer'].freeze,
31
+ v2_conversations_thread_list: ['GET', '/v2/conversations/%{conversation_id}/threads'].freeze,
32
+ v2_conversations_thread_update: ['PATCH', '/v2/conversations/%{conversation_id}/threads/%{thread_id}'].freeze,
33
+
34
+ v2_conversations_customer_properties: ['GET', '/v2/customer-properties'].freeze,
35
+
36
+ v2_customers: ['GET', '/v2/customers'].freeze,
37
+ v2_customers_create: ['POST', '/v2/customers'].freeze,
38
+ v2_customer: ['GET', '/v2/customers/%{customer_id}'].freeze,
39
+ v2_customers_overwrite: ['PUT', '/v2/customers/%{customer_id}'].freeze,
40
+ v2_customers_update: ['PATCH', '/v2/customers/%{customer_id}'].freeze,
41
+
42
+ v2_customers_address_create: ['POST', '/v2/customers/%{customer_id}/address'].freeze,
43
+ v2_customers_address_delete: ['DELETE', '/v2/customers/%{customer_id}/address'].freeze,
44
+ v2_customers_address: ['GET', '/v2/customers/%{customer_id}/address'].freeze,
45
+ v2_customers_address_update: ['PATCH', '/v2/customers/%{customer_id}/address'].freeze,
46
+
47
+ v2_customers_chats: ['GET', '/v2/customers/%{customer_id}/chats'].freeze,
48
+ v2_customers_chats_create: ['POST', '/v2/customers/%{customer_id}/chats/%{chat_id}'].freeze,
49
+ v2_customers_chats_update: ['PUT', '/v2/customers/%{customer_id}/chats/%{chat_id}'].freeze,
50
+
51
+ v2_customers_emails_create: ['POST', '/v2/customers/%{customer_id}/emails'].freeze,
52
+ v2_customers_emails: ['GET', '/v2/customers/%{customer_id}/emails'].freeze,
53
+ v2_customers_emails_update: ['PUT', '/v2/customers/%{customer_id}/emails/%{email_id}'].freeze,
54
+ v2_customers_emails_delete: ['DELETE', '/v2/customers/%{customer_id}/emails/%{email_id}'].freeze,
55
+
56
+ v2_customers_phones_create: ['POST', '/v2/customers/%{customer_id}/phones'].freeze,
57
+ v2_customers_phones: ['GET', '/v2/customers/%{customer_id}/phones'].freeze,
58
+ v2_customers_phones_update: ['PUT', '/v2/customers/%{customer_id}/phones/%{phone_id}'].freeze,
59
+ v2_customers_phones_delete: ['DELETE', '/v2/customers/%{customer_id}/phones/%{phone_id}'].freeze,
60
+
61
+ v2_customers_social_create: ['POST', '/v2/customers/%{customer_id}/social-profiles'].freeze,
62
+ v2_customers_social: ['GET', '/v2/customers/%{customer_id}/social-profiles'].freeze,
63
+ v2_customers_social_update: ['PUT', '/v2/customers/%{customer_id}/social-profiles/%{profile_id}'].freeze,
64
+ v2_customers_social_delete: ['DELETE', '/v2/customers/%{customer_id}/social-profiles/%{profile_id}'].freeze,
65
+
66
+ v2_customers_website_create: ['POST', '/v2/customers/%{customer_id}/websites'].freeze,
67
+ v2_customers_website: ['GET', '/v2/customers/%{customer_id}/websites'].freeze,
68
+ v2_customers_website_update: ['PUT', '/v2/customers/%{customer_id}/websites/%{website_id}'].freeze,
69
+ v2_customers_website_delete: ['DELETE', '/v2/customers/%{customer_id}/websites/%{website_id}'].freeze,
70
+
71
+ v2_customers_properties_update: ['PATCH', '/v2/customers/%{customer_id}/properties'].freeze,
72
+
73
+ v2_mailboxes: ['GET', '/v2/mailboxes'].freeze,
74
+ v2_mailbox: ['GET', '/v2/mailboxes/%{mailbox_id}'].freeze,
75
+ v2_mailbox_fields: ['GET', '/v2/mailboxes/%{mailbox_id}/fields'].freeze,
76
+ v2_mailbox_folders: ['GET', '/v2/mailboxes/%{mailbox_id}/folders'].freeze,
77
+
78
+ v2_ratings: ['GET', '/v2/ratings/%{rating_id}'].freeze,
79
+
80
+ v2_reports_company: ['GET', '/v2/reports/company'].freeze,
81
+ v2_reports_company_customers_helped: ['GET', '/v2/reports/company/customers-helped'].freeze,
82
+ v2_reports_company_drilldown: ['GET', '/v2/reports/company/drilldown'].freeze,
83
+
84
+ v2_reports_conversations: ['GET', '/v2/reports/conversations'].freeze,
85
+ v2_reports_conversations_new: ['GET', '/v2/reports/conversations/new'].freeze,
86
+ v2_reports_conversations_channel_volume: ['GET', '/v2/reports/conversations/volume-by-channel'].freeze,
87
+ v2_reports_conversations_busy_times: ['GET', '/v2/reports/conversations/busy-times'].freeze,
88
+ v2_reports_conversations_drilldown: ['GET', '/v2/reports/conversations/drilldown'].freeze,
89
+ v2_reports_conversations_new_drilldown: ['GET', '/v2/reports/conversations/new-drilldown'].freeze,
90
+ v2_reports_conversations_fields_drilldown: ['GET', '/v2/reports/conversations/fields-drilldown'].freeze,
91
+ v2_reports_conversations_messages_received: ['GET', '/v2/reports/conversations/received-messages'].freeze,
92
+
93
+ v2_reports_docs: ['GET', '/v2/reports/docs'].freeze,
94
+
95
+ v2_reports_happiness: ['GET', '/v2/reports/happiness'].freeze,
96
+ v2_reports_happiness_ratings: ['GET', '/v2/reports/happiness/ratings'].freeze,
97
+
98
+ v2_reports_productivity: ['GET', '/v2/reports/productivity'].freeze,
99
+ v2_reports_productivity_first_response_times: ['GET', '/v2/reports/productivity/first-response-time'].freeze,
100
+ v2_reports_productivity_replies: ['GET', '/v2/reports/productivity/replies-sent'].freeze,
101
+ v2_reports_productivity_resolutions_times: ['GET', '/v2/reports/productivity/resolution-time'].freeze,
102
+ v2_reports_productivity_resolved: ['GET', '/v2/reports/productivity/resolved'].freeze,
103
+ v2_reports_productivity_response_times: ['GET', '/v2/reports/productivity/response-time'].freeze,
104
+
105
+ v2_reports_user: ['GET', '/v2/reports/user'].freeze,
106
+ v2_reports_user_conversation_history: ['GET', '/v2/reports/user/conversation-history'].freeze,
107
+ v2_reports_user_customers_helped: ['GET', '/v2/reports/user/customers-helped'].freeze,
108
+ v2_reports_user_happiness: ['GET', '/v2/reports/user/happiness'].freeze,
109
+ v2_reports_user_ratings: ['GET', '/v2/reports/user/ratings'].freeze,
110
+ v2_reports_user_replies: ['GET', '/v2/reports/user/replies'].freeze,
111
+ v2_reports_user_resolutions: ['GET', '/v2/reports/user/resolutions'].freeze,
112
+ v2_reports_user_drilldown: ['GET', '/v2/reports/user/drilldown'].freeze,
113
+
114
+ v2_reports_chat: ['GET', '/v2/reports/chat'].freeze,
115
+ v2_reports_email: ['GET', '/v2/reports/email'].freeze,
116
+ v2_reports_phone: ['GET', '/v2/reports/phone'].freeze,
117
+
118
+ v2_tags: ['GET', '/v2/tags'].freeze,
119
+
120
+ v2_teams: ['GET', '/v2/teams'].freeze,
121
+ v2_teams_members: ['GET', '/v2/teams/%{team_id}/members'].freeze,
122
+
123
+ v2_users: ['GET', '/v2/users'].freeze,
124
+ v2_me: ['GET', '/v2/users/me'].freeze,
125
+ v2_user: ['GET', '/v2/users/%{user_id}'].freeze,
126
+
127
+ v2_webhooks_create: ['POST', '/v2/webhooks'].freeze,
128
+ v2_webhooks: ['GET', '/v2/webhooks'].freeze,
129
+ v2_webhook: ['GET', '/v2/webhooks/%{webhook_id}'].freeze,
130
+ v2_webhooks_update: ['PUT', '/v2/webhooks/%{webhook_id}'].freeze,
131
+ v2_webhooks_delete: ['DELETE', '/v2/webhooks/%{webhook_id}'].freeze,
132
+
133
+ v2_workflows: ['GET', '/v2/workflows'].freeze,
134
+ v2_workflows_run: ['POST', '/v2/workflows/%{workflow_id}/run'].freeze,
135
+ v2_workflows_update: ['PATCH', '/v2/workflows/%{workflow_id}'].freeze
136
+ }.freeze
137
+
138
+ def self.generate_path(path, values)
139
+ template = PATH_MAP[path]
140
+ raise "path '#{path}' not found" if template.nil?
141
+
142
+ { method: template.first, path: template.last % values }
143
+ end
144
+ end
145
+ end
146
+ end
@@ -0,0 +1,7 @@
1
+ module Helpscout
2
+ module Mailbox
3
+ module Paths
4
+ VERSION = "0.1.0"
5
+ end
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: helpscout-mailbox-paths
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jason Jacob
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-03-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 12.3.3
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 12.3.3
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description:
56
+ email:
57
+ - hipcog@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".buildkite/pipeline.yml"
63
+ - ".gitignore"
64
+ - ".rspec"
65
+ - ".ruby-version"
66
+ - CODE_OF_CONDUCT.md
67
+ - Dockerfile
68
+ - Gemfile
69
+ - Gemfile.lock
70
+ - LICENSE
71
+ - README.md
72
+ - Rakefile
73
+ - bin/console
74
+ - bin/setup
75
+ - docker-compose.yml
76
+ - helpscout-mailbox-paths.gemspec
77
+ - lib/helpscout/mailbox/paths.rb
78
+ - lib/helpscout/mailbox/paths/version.rb
79
+ homepage: https://github.com/jayco/helpscout-mailbox-paths.git
80
+ licenses:
81
+ - MIT
82
+ metadata:
83
+ homepage_uri: https://github.com/jayco/helpscout-mailbox-paths.git
84
+ source_code_uri: https://github.com/jayco/helpscout-mailbox-paths.git
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ requirements: []
100
+ rubygems_version: 3.1.2
101
+ signing_key:
102
+ specification_version: 4
103
+ summary: Generates HelpScout V2 mailbox paths
104
+ test_files: []