hubspot-api-client 7.3.0 → 8.0.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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/lib/hubspot-api-client.rb +55 -24
  4. data/lib/hubspot/codegen/cms/hubdb/api/default_api.rb +2090 -0
  5. data/lib/hubspot/codegen/cms/hubdb/api_client.rb +422 -0
  6. data/lib/hubspot/codegen/cms/hubdb/api_error.rb +61 -0
  7. data/lib/hubspot/codegen/cms/hubdb/configuration.rb +251 -0
  8. data/lib/hubspot/codegen/cms/hubdb/models/batch_input_hub_db_table_row_v3.rb +217 -0
  9. data/lib/hubspot/codegen/cms/hubdb/models/batch_input_json_node.rb +215 -0
  10. data/lib/hubspot/codegen/cms/hubdb/models/batch_input_string.rb +217 -0
  11. data/lib/hubspot/codegen/cms/hubdb/models/batch_response_hub_db_table_row_v3_with_errors.rb +333 -0
  12. data/lib/hubspot/codegen/cms/hubdb/models/collection_response_with_total_hub_db_table_row_v3.rb +240 -0
  13. data/lib/hubspot/codegen/cms/hubdb/models/collection_response_with_total_hub_db_table_v3.rb +240 -0
  14. data/lib/hubspot/codegen/cms/hubdb/models/column.rb +388 -0
  15. data/lib/hubspot/codegen/cms/hubdb/models/column_input.rb +288 -0
  16. data/lib/hubspot/codegen/cms/hubdb/models/error.rb +292 -0
  17. data/lib/hubspot/codegen/cms/hubdb/models/error_detail.rb +258 -0
  18. data/lib/hubspot/codegen/cms/hubdb/models/foreign_id.rb +243 -0
  19. data/lib/hubspot/codegen/cms/hubdb/models/hub_db_table_clone_request.rb +241 -0
  20. data/lib/hubspot/codegen/cms/hubdb/models/hub_db_table_row_v3.rb +291 -0
  21. data/lib/hubspot/codegen/cms/hubdb/models/hub_db_table_row_v3_input.rb +243 -0
  22. data/lib/hubspot/codegen/cms/hubdb/models/hub_db_table_v3.rb +383 -0
  23. data/lib/hubspot/codegen/cms/hubdb/models/hub_db_table_v3_input.rb +295 -0
  24. data/lib/hubspot/codegen/cms/hubdb/models/hub_db_table_v3_live_input.rb +241 -0
  25. data/lib/hubspot/codegen/cms/hubdb/models/import_result.rb +263 -0
  26. data/lib/hubspot/codegen/cms/hubdb/models/next_page.rb +224 -0
  27. data/lib/hubspot/codegen/cms/hubdb/models/option.rb +257 -0
  28. data/lib/hubspot/codegen/cms/hubdb/models/paging.rb +219 -0
  29. data/lib/hubspot/codegen/cms/hubdb/models/previous_page.rb +224 -0
  30. data/lib/hubspot/codegen/cms/hubdb/models/simple_user.rb +257 -0
  31. data/lib/hubspot/version.rb +1 -1
  32. data/sample-apps/timeline-events-app/.env.template +1 -1
  33. data/sample-apps/timeline-events-app/Gemfile.lock +1 -1
  34. data/sample-apps/timeline-events-app/README.md +30 -0
  35. data/sample-apps/timeline-events-app/app/assets/stylesheets/application.css +78 -8
  36. data/sample-apps/timeline-events-app/app/controllers/timeline_events_controller.rb +1 -1
  37. data/sample-apps/timeline-events-app/app/views/timeline_events/index.html.erb +17 -19
  38. metadata +46 -12
@@ -1,3 +1,3 @@
1
1
  module Hubspot
2
- VERSION = '7.3.0'
2
+ VERSION = '8.0.0'
3
3
  end
@@ -1,5 +1,5 @@
1
1
  HUBSPOT_CLIENT_ID=
2
2
  HUBSPOT_CLIENT_SECRET=
3
3
  HUBSPOT_APPLICATION_ID=
4
- HUBSPOT_ACCOUNT_ID=
4
+ HUBSPOT_PORTAL_ID=
5
5
  HUBSPOT_DEVELOPER_API_KEY=
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- hubspot-api-client (7.1.1)
4
+ hubspot-api-client (7.3.0)
5
5
  faraday (>= 0.14.0)
6
6
  json (~> 2.1, >= 2.1.0)
7
7
 
@@ -0,0 +1,30 @@
1
+ # HubSpot-ruby sample app
2
+
3
+ # HubSpot-ruby timeline-events sample app
4
+
5
+ This is a sample app for the [hubspot-ruby SDK](../../../../../). Currently, this app focuses on demonstrating the functionality of [Timeline Events API](https://developers.hubspot.com/docs-beta/crm/timeline) endpoints and their related actions.
6
+
7
+ Please see the documentation on [Creating an app in HubSpot](https://developers.hubspot.com/docs-beta/creating-an-app)
8
+ ### HubSpot Public API links used in this application
9
+
10
+ - [Search for contacts](https://developers.hubspot.com/docs-beta/crm/contacts)
11
+ - [Create event template](https://developers.hubspot.com/docs-beta/crm/timeline)
12
+ - [Create timeline event](https://developers.hubspot.com/docs-beta/crm/timeline)
13
+
14
+
15
+ ### Setup App
16
+
17
+ Make sure you have [Docker Compose](https://docs.docker.com/compose/) installed.
18
+
19
+ ### Configure
20
+
21
+ 1. Copy .env.template to .env
22
+ 2. Specify authorization data in .env:
23
+ - Paste HUBSPOT_CLIENT_ID and HUBSPOT_CLIENT_SECRET for OAuth
24
+
25
+ ### Running
26
+
27
+ The best way to run this project (with the least configuration), is using docker compose. Change to the webroot and start it
28
+
29
+ ```bash docker-compose up --build web```
30
+ You should now be able to navigate to [http://localhost:3000](http://localhost:3000) and use the application.
@@ -63,6 +63,31 @@
63
63
  color: #606c76
64
64
  }
65
65
 
66
+ .error-wrapper .result {
67
+ color: white;
68
+ background-color: red;
69
+ }
70
+
71
+ input[type=datetime-local] {
72
+ width: 100%;
73
+ height: 3.8rem;
74
+ padding: .6rem 1.0rem;
75
+ }
76
+
77
+ h3.alert-success {
78
+ text-align: center;
79
+ }
80
+
81
+ .delete-button {
82
+ margin-bottom: 0;
83
+ float: right;
84
+ margin-right: 20px;
85
+ }
86
+
87
+ .delete-button input {
88
+ margin-bottom: 0;
89
+ }
90
+
66
91
  pre {
67
92
  line-height: 0.7;
68
93
  }
@@ -72,14 +97,6 @@ pre p {
72
97
  margin-left: 5px;
73
98
  }
74
99
 
75
- .row {
76
- display: flex;
77
- }
78
-
79
- .column {
80
- flex: 50%;
81
- }
82
-
83
100
  .alert {
84
101
  padding: 20px;
85
102
  background-color: #f7786f;
@@ -87,6 +104,50 @@ pre p {
87
104
  margin-bottom: 15px;
88
105
  }
89
106
 
107
+ .closebtn {
108
+ margin-left: 15px;
109
+ color: white;
110
+ font-weight: bold;
111
+ float: right;
112
+ font-size: 22px;
113
+ line-height: 20px;
114
+ cursor: pointer;
115
+ transition: 0.3s;
116
+ }
117
+
118
+ .closebtn:hover {
119
+ color: black;
120
+ }
121
+
122
+ .template-form {
123
+ padding: 0 15%;
124
+ }
125
+
126
+ .textarea {
127
+ height: 150px;
128
+ }
129
+
130
+ .form-groups {
131
+ width: 580px;
132
+ }
133
+
134
+ #event_template_email, #event_template_header_template,
135
+ #event_template_detail_template, #event_template_target_record_type {
136
+ background-color: #f5f8fa;
137
+ }
138
+
139
+ .textarea:focus, #event_template_email:focus {
140
+ border-color: rgba(0,208,228,.5);
141
+ box-shadow: 0 0 4px 1px rgba(0,208,228,.3),0 0 0 1px #00d0e4;
142
+ }
143
+
144
+ .textarea::placeholder, #event_template_email::placeholder {
145
+ opacity: 1;
146
+ font-family: Helvetica, Arial, sans-serif;
147
+ font-weight: 400;
148
+ color: #7c98b6;
149
+ }
150
+
90
151
  .contacts-iframe {
91
152
  height: 700px;
92
153
  width: 100%;
@@ -98,4 +159,13 @@ pre p {
98
159
  position:absolute;
99
160
  width:1080px;
100
161
  height:900px;
162
+ }
163
+
164
+ pre {
165
+ border-left: 0.3rem solid #ff7a59;
166
+ }
167
+
168
+ input[type=submit] {
169
+ background-color: #ff7a59;
170
+ border-color: #ff7a59;
101
171
  }
@@ -4,7 +4,7 @@ class TimelineEventsController < ApplicationController
4
4
  def index
5
5
  return unless params[:contact_id]
6
6
 
7
- @contacts_url = 'https://app.hubspot.com/contacts/' + ENV['HUBSPOT_ACCOUNT_ID'] +
7
+ @contacts_url = 'https://app.hubspot.com/contacts/' + ENV['HUBSPOT_PORTAL_ID'] +
8
8
  '/contact/' + params[:contact_id]
9
9
  end
10
10
 
@@ -6,37 +6,35 @@
6
6
  </div>
7
7
  <% end %>
8
8
 
9
- <h3>Create New Event Template:</h3>
9
+ <div class='template-form'>
10
+ <h3>Create New Event Template:</h3>
10
11
 
11
- <%= form_for :event_template, url: create_path do |form| %>
12
+ <%= form_for :event_template, url: create_path do |form| %>
12
13
 
13
- <div class='row'>
14
- <div class='column'>
14
+ <div class='form-groups'>
15
15
  <%= form.label :target_record_type, 'Target record type:' %>
16
16
  <%= form.select :target_record_type, ['Contact'], {}, disabled: true %>
17
17
  <%= form.hidden_field :target_record_type, value: 'contacts' %>
18
- </div>
19
18
 
20
- <div class='column'>
21
19
  <%= form.label :header_template, 'Header template:' %>
22
- <%= form.text_field :header_template %>
23
- </div>
24
- </div>
20
+ <%= form.text_area :header_template, placeholder: 'Set a header tempalte for this event', class: 'textarea' %>
25
21
 
26
- <div class='row'>
27
- <div class='column'>
28
22
  <%= form.label :detail_template, 'Details template:' %>
29
- <%= form.text_field :detail_template %>
30
- </div>
23
+ <%= form.text_area :detail_template, placeholder: 'Set a details template for this event', class: 'textarea' %>
31
24
 
32
- <div class='column'>
33
- <%= form.label :email, 'Enter email from your contacts:' %>
34
- <%= form.email_field :email, required: true %>
25
+ <%= form.label :email, 'Email of the contact on whose timeline you want to render the event:' %>
26
+ <%= form.email_field :email, required: true, placeholder: 'Email' %>
35
27
  </div>
36
- </div>
37
28
 
38
- <%= form.submit %>
39
- <% end %>
29
+ <pre>
30
+ <h4> What will happen if you press the button:</h4>
31
+ <p> 1) New event template will be created</p>
32
+ <p> 2) Object timeline will be populated with a new event (specified above)</p>
33
+ </pre>
34
+
35
+ <%= form.submit 'Render Timeline Event' %>
36
+ <% end %>
37
+ </div>
40
38
 
41
39
  <% if @contacts_url %>
42
40
  <h3>The result of creating timeline event:</h3>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hubspot-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.3.0
4
+ version: 8.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - HubSpot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-09 00:00:00.000000000 Z
11
+ date: 2020-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -221,6 +221,33 @@ files:
221
221
  - lib/hubspot/codegen/cms/domains/models/error_detail.rb
222
222
  - lib/hubspot/codegen/cms/domains/models/next_page.rb
223
223
  - lib/hubspot/codegen/cms/domains/models/paging.rb
224
+ - lib/hubspot/codegen/cms/hubdb/api/default_api.rb
225
+ - lib/hubspot/codegen/cms/hubdb/api_client.rb
226
+ - lib/hubspot/codegen/cms/hubdb/api_error.rb
227
+ - lib/hubspot/codegen/cms/hubdb/configuration.rb
228
+ - lib/hubspot/codegen/cms/hubdb/models/batch_input_hub_db_table_row_v3.rb
229
+ - lib/hubspot/codegen/cms/hubdb/models/batch_input_json_node.rb
230
+ - lib/hubspot/codegen/cms/hubdb/models/batch_input_string.rb
231
+ - lib/hubspot/codegen/cms/hubdb/models/batch_response_hub_db_table_row_v3_with_errors.rb
232
+ - lib/hubspot/codegen/cms/hubdb/models/collection_response_with_total_hub_db_table_row_v3.rb
233
+ - lib/hubspot/codegen/cms/hubdb/models/collection_response_with_total_hub_db_table_v3.rb
234
+ - lib/hubspot/codegen/cms/hubdb/models/column.rb
235
+ - lib/hubspot/codegen/cms/hubdb/models/column_input.rb
236
+ - lib/hubspot/codegen/cms/hubdb/models/error.rb
237
+ - lib/hubspot/codegen/cms/hubdb/models/error_detail.rb
238
+ - lib/hubspot/codegen/cms/hubdb/models/foreign_id.rb
239
+ - lib/hubspot/codegen/cms/hubdb/models/hub_db_table_clone_request.rb
240
+ - lib/hubspot/codegen/cms/hubdb/models/hub_db_table_row_v3.rb
241
+ - lib/hubspot/codegen/cms/hubdb/models/hub_db_table_row_v3_input.rb
242
+ - lib/hubspot/codegen/cms/hubdb/models/hub_db_table_v3.rb
243
+ - lib/hubspot/codegen/cms/hubdb/models/hub_db_table_v3_input.rb
244
+ - lib/hubspot/codegen/cms/hubdb/models/hub_db_table_v3_live_input.rb
245
+ - lib/hubspot/codegen/cms/hubdb/models/import_result.rb
246
+ - lib/hubspot/codegen/cms/hubdb/models/next_page.rb
247
+ - lib/hubspot/codegen/cms/hubdb/models/option.rb
248
+ - lib/hubspot/codegen/cms/hubdb/models/paging.rb
249
+ - lib/hubspot/codegen/cms/hubdb/models/previous_page.rb
250
+ - lib/hubspot/codegen/cms/hubdb/models/simple_user.rb
224
251
  - lib/hubspot/codegen/cms/performance/api/default_api.rb
225
252
  - lib/hubspot/codegen/cms/performance/api_client.rb
226
253
  - lib/hubspot/codegen/cms/performance/api_error.rb
@@ -806,6 +833,7 @@ files:
806
833
  - sample-apps/companies-app/tmp/restart.txt
807
834
  - sample-apps/contacts-app/.env
808
835
  - sample-apps/contacts-app/.env.template
836
+ - sample-apps/contacts-app/.env.test
809
837
  - sample-apps/contacts-app/.env.test.template
810
838
  - sample-apps/contacts-app/.gitignore
811
839
  - sample-apps/contacts-app/.rspec
@@ -884,12 +912,14 @@ files:
884
912
  - sample-apps/contacts-app/config/spring.rb
885
913
  - sample-apps/contacts-app/db/development.sqlite3
886
914
  - sample-apps/contacts-app/db/seeds.rb
915
+ - sample-apps/contacts-app/db/test.sqlite3
887
916
  - sample-apps/contacts-app/docker-compose.yml
888
917
  - sample-apps/contacts-app/docker-entrypoint.sh
889
918
  - sample-apps/contacts-app/lib/assets/.keep
890
919
  - sample-apps/contacts-app/lib/tasks/.keep
891
920
  - sample-apps/contacts-app/log/.keep
892
921
  - sample-apps/contacts-app/log/development.log
922
+ - sample-apps/contacts-app/log/test.log
893
923
  - sample-apps/contacts-app/package.json
894
924
  - sample-apps/contacts-app/public/404.html
895
925
  - sample-apps/contacts-app/public/422.html
@@ -912,9 +942,11 @@ files:
912
942
  - sample-apps/contacts-app/tmp/.keep
913
943
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/0E/0EYv04SP7WmVRPnWvueGRcUFEgiiHc0J9qz1Q7KNBE4.cache
914
944
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/1J/1JnNlMoorvDaAcLChcV1QOiqJyanmoUydnfe5-TPuXM.cache
945
+ - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/1Y/1YZtqickyeZ_JcII96hylY6lF7sxNkbgA85xfEwrRiI.cache
915
946
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/1m/1mRwQeI_697SJNgSakVyU5vtV9tpeQ3aUvIyW2cHhMs.cache
916
947
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/2N/2NtH32KGXJ77tP3Eqh6uLR51KNm1OVXMHhMmPwFdosI.cache
917
948
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/2h/2hVm3bNa9JCxAsLCxbvspAtiL4VOtRTjXMSPw8eT9xk.cache
949
+ - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/2l/2lwE97im5rEyOKzkyeiXzzKA4wJvO1a-4bRF4jVlcfc.cache
918
950
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/3-/3-EQcCNxYxUGN8o8H9QP_4IuaSB9GPsR0C-PObnR7s8.cache
919
951
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/41/41_29mpjEGapjHdofSi36OnnO3-eBNYbCe5nzHnIKwY.cache
920
952
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/4d/4dcfS4RxEdhoRlLGZBI-XK2ciL3CGZxky-krj63NXts.cache
@@ -929,6 +961,7 @@ files:
929
961
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache
930
962
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/HM/HMMM5ZT9xL07pWuLfGUG6mWU4SbJghbNQiD2iriDO-0.cache
931
963
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/HP/HPdtqZdA1TM-sHs8oqrhAtNiPhPcRT9eX9Ol7MnE_Bw.cache
964
+ - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/HQ/HQOePM7-Xd6f4RPYUzU9DhU7j7x58rgm9Ji25xcZqfs.cache
932
965
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/JC/JCC7VTvygWKWK8hBEbnayc8CD_ec3cN9kZTE4jQUNmY.cache
933
966
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/JS/JSG-U0jab1xh5XD7sVL6JOKyu09pfMxV-xrBJe_JO74.cache
934
967
  - sample-apps/contacts-app/tmp/cache/assets/sprockets/v3.0/Kq/KqqfCu7F4dbV5xwLoXZcLoIgZKbHa_QnB1AwY0F_sw4.cache
@@ -2104,30 +2137,33 @@ files:
2104
2137
  - sample-apps/timeline-events-app/spec/rails_helper.rb
2105
2138
  - sample-apps/timeline-events-app/spec/spec_helper.rb
2106
2139
  - sample-apps/timeline-events-app/tmp/.keep
2140
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/-4/-4csb8XcQONHVcyTGO-F2TBp5f38ghhZHcLg3cqyqGo.cache
2107
2141
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/-s/-sz9D51o9Mpd_omN4pJY1EYoyEa63QWgr9CkNp-jtps.cache
2108
2142
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/1J/1JnNlMoorvDaAcLChcV1QOiqJyanmoUydnfe5-TPuXM.cache
2109
2143
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/1m/1mRwQeI_697SJNgSakVyU5vtV9tpeQ3aUvIyW2cHhMs.cache
2110
2144
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/2N/2NtH32KGXJ77tP3Eqh6uLR51KNm1OVXMHhMmPwFdosI.cache
2111
2145
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/2h/2hVm3bNa9JCxAsLCxbvspAtiL4VOtRTjXMSPw8eT9xk.cache
2112
2146
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/41/41_29mpjEGapjHdofSi36OnnO3-eBNYbCe5nzHnIKwY.cache
2147
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/60/609vj6Xv1ogaZ1W1H_oBuo-3NqC3UqbKAXw2ekEcehU.cache
2113
2148
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/61/61XTQQp3JN2SQH4_rfFy4gSk4pMiTt8me_AumxnvBNw.cache
2114
2149
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/6p/6pPimSDuw-hEAZW4CkGVIt9wjYiTMaCD2XPuKQoiI4Q.cache
2150
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/7J/7JspjJWUyNJySsbLlEs8anll3WiAM20dZ2sYA0gAhMI.cache
2151
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/9N/9NrK08Zz2zuDH5uff0al0ZhRW0kOe3KP7KSyfZDcWfg.cache
2115
2152
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/9V/9VF8D3PaGXBXsH74TVS8KHuWDA_6IiSdXMilLhBQisM.cache
2153
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/9c/9cJSDPxEgTHO5-B9Ln7Tmok9fbsxmk1HYf-W-gkEg_I.cache
2154
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/AE/AE-AZVyOjAgA1j71HRmlDGNdoT6aOAMNrvEsZxDVMzU.cache
2116
2155
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/AF/AFacZJ15zJm8o8Bwesmpsw2GC-o4mNEAhT87cuTM_wE.cache
2117
2156
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/B6/B6MZ8qg-mV5hZWBQ5HB80eAXCr4gyrJR5Yrm4BiSTdU.cache
2118
2157
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/D0/D01xXzz6r1DGdB4yVwcPaLEp7-mpzCd2m3enZVNJtFU.cache
2119
2158
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/Du/DuRFhtIpu9n_mgamwyOra33hIUFOga8HYS-GSeWds9E.cache
2120
2159
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/EC/EC2j6BCJ8TnspQFZeViwqN9QJH0fdqH7HvaNE6RzBxc.cache
2160
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/Ey/EyQsquE_D1TCQQbh-3vmLjQzYO7w9ZRqo7tDg5VpC7Q.cache
2121
2161
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/Fp/FprMIwFBZYrEWraVY7BWLI8zyHb9bwBIcAGNdpYm1Qo.cache
2122
2162
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache
2123
- - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/HW/HWUChEceyh2Nn8ZIJqhsPU8GOTaBtOqwgpHgWeK5KK8.cache
2124
2163
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/JS/JSG-U0jab1xh5XD7sVL6JOKyu09pfMxV-xrBJe_JO74.cache
2125
- - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/Kq/KqE6hT_ldQlojkUihSiU_w9LUB1vYXvG-9DlYnSkHtY.cache
2126
- - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/LC/LCya8iNar6oREtyYduoZJ2XWTymHT17SOXYRkDIvl2Q.cache
2127
2164
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/Lh/LhI9Ge3PcQ_C89Ur42bKAIpIRT8TiDpipKToFBtEQeE.cache
2128
2165
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/Mv/MvRTlknGa6_mRdF7m9I2jPIPCQ9a-RyzBwkgecBbZQ8.cache
2129
2166
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/OF/OFMeLotCkEst9CGQgQZtf5RZNaVhcrLOPJeSWszn-aw.cache
2130
- - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/Pj/PjWCRmJJkSxCMCzdOrsWQfeCxeWMdmLNqtIZXlRkVkw.cache
2131
2167
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/RJ/RJ-ZWnzIrbCdeg0pVWbccBZiePyfi50zo0xb1Tbhh80.cache
2132
2168
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/RU/RUOojm-aD-XrIy-K6cbUI9czQdjnW9_Bt45wId068iM.cache
2133
2169
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/Tx/TxdcnqzvySOuWPXZfaIYX0TOpCy44repbAScKtV2niE.cache
@@ -2141,31 +2177,29 @@ files:
2141
2177
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/Xi/XiZmZbrcb0M-y7EJZkx1ft177jFiZCL7pbpp6cRZaTA.cache
2142
2178
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/ZU/ZUKJTVw3DLZSVGlveWzrhvo4GduUbQScJeICRDN8tdo.cache
2143
2179
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/_w/_w2qaD3e5UPMGQeZYpP481jnQLVeIXIVH2vQx2856QY.cache
2144
- - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/bO/bOFmO9a0R2GZyScJpYSBjhl36VZ2T8tBIFvGiE6aqNo.cache
2145
2180
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/dg/dg8xDUB026KlWVbRE1h_SZ6gEPR6g81HrTkUIimQzqc.cache
2181
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/eX/eXRXZi-sk9Oy17fc94B24coFT6Jn93gCZI0SahPx7U4.cache
2146
2182
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/ey/eyQx5cIdM2CoBrdF3izBgEAY4OxjhcWr4O4xz132au8.cache
2183
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/fW/fWunpu-z9IEGhI1uwayT47VSyYTtQkphog4WkrSKAiw.cache
2147
2184
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/gB/gBgBWy2c1z2A2HykdtIz7OYGnHIRDzbk092kh5b6jaE.cache
2148
- - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/gB/gBv9kal-i4TR52_RNoYlBcSLMDX1_N1aQj0cv-cqxNY.cache
2149
2185
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/gv/gvq1z6PDRE8gMtaUq2in1i3UzX2ALHQQDyu4rktAnlM.cache
2150
2186
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/hA/hAQloq4iFKlI32gRuBj7Qw-S3_fk622RHC7B3bKQcGM.cache
2151
2187
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/j3/j3r-jelmETDRd-G19KKXI0QM5g991nlcbUwXBnRnNQE.cache
2152
2188
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/k1/k1S4UmDyDiVdoVjxFVnT7PjryGZlRLlg6Rbiv263PC8.cache
2153
- - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/kE/kEZybqy-UZoanAH1Xiuew4Im6vwIsee-kft21l3JvYs.cache
2154
2189
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/kX/kXwRD1nb3DhVhF7hOQ5XyWT3MbPg9czHAQgVjCGZ4mc.cache
2155
2190
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/kb/kbxkYCk1EgNiJrtaLBYcKjpLawXPyY26vtsvLwAGuRs.cache
2191
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/lG/lGngG8GuW7NOMaJJjbCUpaUmPukNz5qTAuDFKUeQGD8.cache
2156
2192
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/mE/mE5ux5CqyC__7A31roQaIrItQDaC4e3O1ccQpHEzf3A.cache
2193
+ - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/mf/mfGViGcXdNxYP-Fj1h1q2YL8V4R9hdRw-pbcz44ykGo.cache
2157
2194
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/n_/n_AnmncFkjyQrNIMt47ODfSQL8Ah5cY4UKW1IThyYyg.cache
2158
2195
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/ne/nehoEMwTN_YXNZspteBmbCj-55v4o0wq_nnFJCPVtUk.cache
2159
2196
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/nf/nfLIHBgXq65X45t_2QaQM3smByR8wIxjzXL0A1bb9NU.cache
2160
- - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/oR/oRS4oeT_JT6LpNf0L3A_DPgbtxS4TB_fetzY3CT0aa8.cache
2161
2197
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/pF/pFK-AXLRfIZQbNkoSeGwKVKqJtkz_-WxAlFUbspYW3o.cache
2162
2198
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/q8/q8cA8tJbgodCWeH8qLt9pac6Ig-wK4v5aiJ6VV6-bHw.cache
2163
2199
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/sD/sDQm06qCaywVxzpOwjngjtCXxSMXqwixf0n0xD0IHHw.cache
2164
- - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/sL/sLrzJjbM_rcVY2FeYnsJA8uEHqjKsJXqTDat6Q23GR4.cache
2165
2200
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/sb/sbdra4MXru4fxHN_jrd3o4d3VFPFyG3lI247mddfTUk.cache
2166
2201
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/w7/w7U6DzTbVwmZ8JqXhirzDvr-HGtiCEIpNHRQtLc7M68.cache
2167
2202
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/wd/wdx03MG0LBtOSdemZvED30U1i-V5s75E7207MC6TGTI.cache
2168
- - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/xk/xkCwn4qCk8C5UaPHHBgsNbAmRBgSZtdVb1aELt-EmxI.cache
2169
2203
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/yL/yLiDuY3PPQgAmxWaulR4bejdG-_VXuSIqbmkWlntOys.cache
2170
2204
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/yb/ybRqqIyo6H-rkIwoBZp14cENSoSgyZqa1XAUKLV1zpk.cache
2171
2205
  - sample-apps/timeline-events-app/tmp/cache/assets/sprockets/v3.0/yj/yjlHOIhrAzNkiA_SiyRZKIkEwaC0rktB1TVequSKqjc.cache