hubspot-api-client 7.0.0 → 7.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/lib/hubspot/version.rb +1 -1
  4. data/sample-apps/trello-integration-app/.env.template +7 -0
  5. data/sample-apps/trello-integration-app/.gitignore +35 -0
  6. data/sample-apps/trello-integration-app/.rspec +1 -0
  7. data/sample-apps/trello-integration-app/.ruby-version +1 -0
  8. data/sample-apps/trello-integration-app/Dockerfile +22 -0
  9. data/sample-apps/trello-integration-app/Gemfile +38 -0
  10. data/sample-apps/trello-integration-app/Gemfile.lock +314 -0
  11. data/sample-apps/trello-integration-app/README.md +31 -0
  12. data/sample-apps/trello-integration-app/Rakefile +6 -0
  13. data/sample-apps/trello-integration-app/app/assets/config/manifest.js +3 -0
  14. data/sample-apps/trello-integration-app/app/assets/images/.keep +0 -0
  15. data/sample-apps/trello-integration-app/app/assets/images/right-arrow.png +0 -0
  16. data/sample-apps/trello-integration-app/app/assets/javascripts/application.js +22 -0
  17. data/sample-apps/trello-integration-app/app/assets/javascripts/cable.js +13 -0
  18. data/sample-apps/trello-integration-app/app/assets/javascripts/channels/.keep +0 -0
  19. data/sample-apps/trello-integration-app/app/assets/javascripts/jquery-spinner.min.js +11071 -0
  20. data/sample-apps/trello-integration-app/app/assets/javascripts/lodash.js +15972 -0
  21. data/sample-apps/trello-integration-app/app/assets/javascripts/mappings.js +78 -0
  22. data/sample-apps/trello-integration-app/app/assets/javascripts/typeahead.bundle.min.js +8 -0
  23. data/sample-apps/trello-integration-app/app/assets/stylesheets/application.css +46 -0
  24. data/sample-apps/trello-integration-app/app/assets/stylesheets/authorization.scss +34 -0
  25. data/sample-apps/trello-integration-app/app/assets/stylesheets/jquery-spinner.css +33 -0
  26. data/sample-apps/trello-integration-app/app/assets/stylesheets/mappings.scss +55 -0
  27. data/sample-apps/trello-integration-app/app/assets/stylesheets/navigation.scss +43 -0
  28. data/sample-apps/trello-integration-app/app/assets/stylesheets/search_frame.scss +81 -0
  29. data/sample-apps/trello-integration-app/app/controllers/application_controller.rb +38 -0
  30. data/sample-apps/trello-integration-app/app/controllers/concerns/.keep +0 -0
  31. data/sample-apps/trello-integration-app/app/controllers/concerns/exception_handler.rb +12 -0
  32. data/sample-apps/trello-integration-app/app/controllers/home_controller.rb +20 -0
  33. data/sample-apps/trello-integration-app/app/controllers/mappings_controller.rb +64 -0
  34. data/sample-apps/trello-integration-app/app/controllers/oauth/authorization_controller.rb +28 -0
  35. data/sample-apps/trello-integration-app/app/controllers/trello/cards_controller.rb +94 -0
  36. data/sample-apps/trello-integration-app/app/controllers/trello/webhooks_controller.rb +30 -0
  37. data/sample-apps/trello-integration-app/app/helpers/application_helper.rb +2 -0
  38. data/sample-apps/trello-integration-app/app/helpers/oauth/authorization_helper.rb +11 -0
  39. data/sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/authorize.rb +17 -0
  40. data/sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/get_authorization_uri.rb +35 -0
  41. data/sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/tokens/base.rb +21 -0
  42. data/sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/tokens/generate.rb +28 -0
  43. data/sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/tokens/refresh.rb +35 -0
  44. data/sample-apps/trello-integration-app/app/lib/services/hubspot/deals/get_by_id.rb +15 -0
  45. data/sample-apps/trello-integration-app/app/lib/services/hubspot/deals/update.rb +17 -0
  46. data/sample-apps/trello-integration-app/app/lib/services/hubspot/extensions_cards/create.rb +82 -0
  47. data/sample-apps/trello-integration-app/app/lib/services/hubspot/pipelines/get_all.rb +11 -0
  48. data/sample-apps/trello-integration-app/app/lib/services/hubspot/pipelines/get_by_id.rb +15 -0
  49. data/sample-apps/trello-integration-app/app/lib/services/trello/authorization/authorize.rb +20 -0
  50. data/sample-apps/trello-integration-app/app/lib/services/trello/boards/get_all.rb +11 -0
  51. data/sample-apps/trello-integration-app/app/lib/services/trello/boards/get_by_id.rb +19 -0
  52. data/sample-apps/trello-integration-app/app/lib/services/trello/cards/format.rb +78 -0
  53. data/sample-apps/trello-integration-app/app/lib/services/trello/cards/get_by_id.rb +15 -0
  54. data/sample-apps/trello-integration-app/app/lib/services/trello/cards/search.rb +15 -0
  55. data/sample-apps/trello-integration-app/app/lib/services/trello/webhooks/create.rb +31 -0
  56. data/sample-apps/trello-integration-app/app/lib/services/trello/webhooks/delete.rb +17 -0
  57. data/sample-apps/trello-integration-app/app/lib/services/trello/webhooks/update.rb +19 -0
  58. data/sample-apps/trello-integration-app/app/models/application_record.rb +3 -0
  59. data/sample-apps/trello-integration-app/app/models/concerns/.keep +0 -0
  60. data/sample-apps/trello-integration-app/app/models/deal_association.rb +2 -0
  61. data/sample-apps/trello-integration-app/app/models/extension_card.rb +4 -0
  62. data/sample-apps/trello-integration-app/app/models/hubspot_token.rb +19 -0
  63. data/sample-apps/trello-integration-app/app/models/mapping.rb +2 -0
  64. data/sample-apps/trello-integration-app/app/models/trello_token.rb +19 -0
  65. data/sample-apps/trello-integration-app/app/models/webhook.rb +2 -0
  66. data/sample-apps/trello-integration-app/app/views/home/index.html.erb +23 -0
  67. data/sample-apps/trello-integration-app/app/views/home/success.html.erb +11 -0
  68. data/sample-apps/trello-integration-app/app/views/layouts/application.html.erb +23 -0
  69. data/sample-apps/trello-integration-app/app/views/mappings/_mapping.html.erb +13 -0
  70. data/sample-apps/trello-integration-app/app/views/mappings/index.html.erb +44 -0
  71. data/sample-apps/trello-integration-app/app/views/oauth/authorization/login.html.erb +42 -0
  72. data/sample-apps/trello-integration-app/app/views/shared/_header.html.erb +15 -0
  73. data/sample-apps/trello-integration-app/app/views/trello/cards/search_frame.html.erb +69 -0
  74. data/sample-apps/trello-integration-app/app/views/trello/cards/search_frame_success.html.erb +7 -0
  75. data/sample-apps/trello-integration-app/bin/bundle +3 -0
  76. data/sample-apps/trello-integration-app/bin/rails +9 -0
  77. data/sample-apps/trello-integration-app/bin/rake +9 -0
  78. data/sample-apps/trello-integration-app/bin/setup +36 -0
  79. data/sample-apps/trello-integration-app/bin/spring +17 -0
  80. data/sample-apps/trello-integration-app/bin/update +31 -0
  81. data/sample-apps/trello-integration-app/bin/yarn +11 -0
  82. data/sample-apps/trello-integration-app/config.ru +5 -0
  83. data/sample-apps/trello-integration-app/config/application.rb +20 -0
  84. data/sample-apps/trello-integration-app/config/boot.rb +3 -0
  85. data/sample-apps/trello-integration-app/config/cable.yml +10 -0
  86. data/sample-apps/trello-integration-app/config/database.yml +16 -0
  87. data/sample-apps/trello-integration-app/config/environment.rb +5 -0
  88. data/sample-apps/trello-integration-app/config/environments/development.rb +61 -0
  89. data/sample-apps/trello-integration-app/config/environments/production.rb +94 -0
  90. data/sample-apps/trello-integration-app/config/environments/test.rb +46 -0
  91. data/sample-apps/trello-integration-app/config/initializers/assets.rb +14 -0
  92. data/sample-apps/trello-integration-app/config/initializers/filter_parameter_logging.rb +4 -0
  93. data/sample-apps/trello-integration-app/config/initializers/hubspot-api-client.rb +3 -0
  94. data/sample-apps/trello-integration-app/config/initializers/mime_types.rb +1 -0
  95. data/sample-apps/trello-integration-app/config/initializers/omniauth.rb +11 -0
  96. data/sample-apps/trello-integration-app/config/initializers/trello.rb +1 -0
  97. data/sample-apps/trello-integration-app/config/initializers/wrap_parameters.rb +14 -0
  98. data/sample-apps/trello-integration-app/config/locales/en.yml +33 -0
  99. data/sample-apps/trello-integration-app/config/puma.rb +34 -0
  100. data/sample-apps/trello-integration-app/config/routes.rb +29 -0
  101. data/sample-apps/trello-integration-app/config/spring.rb +6 -0
  102. data/sample-apps/trello-integration-app/config/storage.yml +34 -0
  103. data/sample-apps/trello-integration-app/db/migrate/20200624132327_create_hubspot_tokens.rb +10 -0
  104. data/sample-apps/trello-integration-app/db/migrate/20200624132336_create_trello_tokens.rb +8 -0
  105. data/sample-apps/trello-integration-app/db/migrate/20200624132337_create_deal_associations.rb +8 -0
  106. data/sample-apps/trello-integration-app/db/migrate/20200702130530_create_extension_cards.rb +8 -0
  107. data/sample-apps/trello-integration-app/db/migrate/20200715143913_create_mappings.rb +12 -0
  108. data/sample-apps/trello-integration-app/db/migrate/20200727083656_create_webhooks.rb +9 -0
  109. data/sample-apps/trello-integration-app/db/schema.rb +52 -0
  110. data/sample-apps/trello-integration-app/db/seeds.rb +7 -0
  111. data/sample-apps/trello-integration-app/docker-compose.yml +41 -0
  112. data/sample-apps/trello-integration-app/docker-entrypoint.sh +8 -0
  113. data/sample-apps/trello-integration-app/lib/assets/.keep +0 -0
  114. data/sample-apps/trello-integration-app/lib/middlewares/trello_payload_params_handler.rb +18 -0
  115. data/sample-apps/trello-integration-app/lib/tasks/.keep +0 -0
  116. data/sample-apps/trello-integration-app/log/.keep +0 -0
  117. data/sample-apps/trello-integration-app/package.json +5 -0
  118. data/sample-apps/trello-integration-app/public/404.html +67 -0
  119. data/sample-apps/trello-integration-app/public/422.html +67 -0
  120. data/sample-apps/trello-integration-app/public/500.html +66 -0
  121. data/sample-apps/trello-integration-app/public/favicon.ico +0 -0
  122. data/sample-apps/trello-integration-app/public/robots.txt +1 -0
  123. data/sample-apps/trello-integration-app/tmp/.keep +0 -0
  124. metadata +218 -2
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "trello-integration-app",
3
+ "private": true,
4
+ "dependencies": {}
5
+ }
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
@@ -0,0 +1 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
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.0.0
4
+ version: 7.1.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-08-04 00:00:00.000000000 Z
11
+ date: 2020-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -1925,6 +1925,222 @@ files:
1925
1925
  - sample-apps/search-result-paging-app/tmp/development_secret.txt
1926
1926
  - sample-apps/search-result-paging-app/tmp/restart.txt
1927
1927
  - sample-apps/trello-integration-app/.env
1928
+ - sample-apps/trello-integration-app/.env.template
1929
+ - sample-apps/trello-integration-app/.gitignore
1930
+ - sample-apps/trello-integration-app/.rspec
1931
+ - sample-apps/trello-integration-app/.ruby-version
1932
+ - sample-apps/trello-integration-app/Dockerfile
1933
+ - sample-apps/trello-integration-app/Gemfile
1934
+ - sample-apps/trello-integration-app/Gemfile.lock
1935
+ - sample-apps/trello-integration-app/README.md
1936
+ - sample-apps/trello-integration-app/Rakefile
1937
+ - sample-apps/trello-integration-app/app/assets/config/manifest.js
1938
+ - sample-apps/trello-integration-app/app/assets/images/.keep
1939
+ - sample-apps/trello-integration-app/app/assets/images/right-arrow.png
1940
+ - sample-apps/trello-integration-app/app/assets/javascripts/application.js
1941
+ - sample-apps/trello-integration-app/app/assets/javascripts/cable.js
1942
+ - sample-apps/trello-integration-app/app/assets/javascripts/channels/.keep
1943
+ - sample-apps/trello-integration-app/app/assets/javascripts/jquery-spinner.min.js
1944
+ - sample-apps/trello-integration-app/app/assets/javascripts/lodash.js
1945
+ - sample-apps/trello-integration-app/app/assets/javascripts/mappings.js
1946
+ - sample-apps/trello-integration-app/app/assets/javascripts/typeahead.bundle.min.js
1947
+ - sample-apps/trello-integration-app/app/assets/stylesheets/application.css
1948
+ - sample-apps/trello-integration-app/app/assets/stylesheets/authorization.scss
1949
+ - sample-apps/trello-integration-app/app/assets/stylesheets/jquery-spinner.css
1950
+ - sample-apps/trello-integration-app/app/assets/stylesheets/mappings.scss
1951
+ - sample-apps/trello-integration-app/app/assets/stylesheets/navigation.scss
1952
+ - sample-apps/trello-integration-app/app/assets/stylesheets/search_frame.scss
1953
+ - sample-apps/trello-integration-app/app/controllers/application_controller.rb
1954
+ - sample-apps/trello-integration-app/app/controllers/concerns/.keep
1955
+ - sample-apps/trello-integration-app/app/controllers/concerns/exception_handler.rb
1956
+ - sample-apps/trello-integration-app/app/controllers/home_controller.rb
1957
+ - sample-apps/trello-integration-app/app/controllers/mappings_controller.rb
1958
+ - sample-apps/trello-integration-app/app/controllers/oauth/authorization_controller.rb
1959
+ - sample-apps/trello-integration-app/app/controllers/trello/cards_controller.rb
1960
+ - sample-apps/trello-integration-app/app/controllers/trello/webhooks_controller.rb
1961
+ - sample-apps/trello-integration-app/app/helpers/application_helper.rb
1962
+ - sample-apps/trello-integration-app/app/helpers/oauth/authorization_helper.rb
1963
+ - sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/authorize.rb
1964
+ - sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/get_authorization_uri.rb
1965
+ - sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/tokens/base.rb
1966
+ - sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/tokens/generate.rb
1967
+ - sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/tokens/refresh.rb
1968
+ - sample-apps/trello-integration-app/app/lib/services/hubspot/deals/get_by_id.rb
1969
+ - sample-apps/trello-integration-app/app/lib/services/hubspot/deals/update.rb
1970
+ - sample-apps/trello-integration-app/app/lib/services/hubspot/extensions_cards/create.rb
1971
+ - sample-apps/trello-integration-app/app/lib/services/hubspot/pipelines/get_all.rb
1972
+ - sample-apps/trello-integration-app/app/lib/services/hubspot/pipelines/get_by_id.rb
1973
+ - sample-apps/trello-integration-app/app/lib/services/trello/authorization/authorize.rb
1974
+ - sample-apps/trello-integration-app/app/lib/services/trello/boards/get_all.rb
1975
+ - sample-apps/trello-integration-app/app/lib/services/trello/boards/get_by_id.rb
1976
+ - sample-apps/trello-integration-app/app/lib/services/trello/cards/format.rb
1977
+ - sample-apps/trello-integration-app/app/lib/services/trello/cards/get_by_id.rb
1978
+ - sample-apps/trello-integration-app/app/lib/services/trello/cards/search.rb
1979
+ - sample-apps/trello-integration-app/app/lib/services/trello/webhooks/create.rb
1980
+ - sample-apps/trello-integration-app/app/lib/services/trello/webhooks/delete.rb
1981
+ - sample-apps/trello-integration-app/app/lib/services/trello/webhooks/update.rb
1982
+ - sample-apps/trello-integration-app/app/models/application_record.rb
1983
+ - sample-apps/trello-integration-app/app/models/concerns/.keep
1984
+ - sample-apps/trello-integration-app/app/models/deal_association.rb
1985
+ - sample-apps/trello-integration-app/app/models/extension_card.rb
1986
+ - sample-apps/trello-integration-app/app/models/hubspot_token.rb
1987
+ - sample-apps/trello-integration-app/app/models/mapping.rb
1988
+ - sample-apps/trello-integration-app/app/models/trello_token.rb
1989
+ - sample-apps/trello-integration-app/app/models/webhook.rb
1990
+ - sample-apps/trello-integration-app/app/views/home/index.html.erb
1991
+ - sample-apps/trello-integration-app/app/views/home/success.html.erb
1992
+ - sample-apps/trello-integration-app/app/views/layouts/application.html.erb
1993
+ - sample-apps/trello-integration-app/app/views/mappings/_mapping.html.erb
1994
+ - sample-apps/trello-integration-app/app/views/mappings/index.html.erb
1995
+ - sample-apps/trello-integration-app/app/views/oauth/authorization/login.html.erb
1996
+ - sample-apps/trello-integration-app/app/views/shared/_header.html.erb
1997
+ - sample-apps/trello-integration-app/app/views/trello/cards/search_frame.html.erb
1998
+ - sample-apps/trello-integration-app/app/views/trello/cards/search_frame_success.html.erb
1999
+ - sample-apps/trello-integration-app/bin/bundle
2000
+ - sample-apps/trello-integration-app/bin/rails
2001
+ - sample-apps/trello-integration-app/bin/rake
2002
+ - sample-apps/trello-integration-app/bin/setup
2003
+ - sample-apps/trello-integration-app/bin/spring
2004
+ - sample-apps/trello-integration-app/bin/update
2005
+ - sample-apps/trello-integration-app/bin/yarn
2006
+ - sample-apps/trello-integration-app/config.ru
2007
+ - sample-apps/trello-integration-app/config/application.rb
2008
+ - sample-apps/trello-integration-app/config/boot.rb
2009
+ - sample-apps/trello-integration-app/config/cable.yml
2010
+ - sample-apps/trello-integration-app/config/database.yml
2011
+ - sample-apps/trello-integration-app/config/environment.rb
2012
+ - sample-apps/trello-integration-app/config/environments/development.rb
2013
+ - sample-apps/trello-integration-app/config/environments/production.rb
2014
+ - sample-apps/trello-integration-app/config/environments/test.rb
2015
+ - sample-apps/trello-integration-app/config/initializers/assets.rb
2016
+ - sample-apps/trello-integration-app/config/initializers/filter_parameter_logging.rb
2017
+ - sample-apps/trello-integration-app/config/initializers/hubspot-api-client.rb
2018
+ - sample-apps/trello-integration-app/config/initializers/mime_types.rb
2019
+ - sample-apps/trello-integration-app/config/initializers/omniauth.rb
2020
+ - sample-apps/trello-integration-app/config/initializers/trello.rb
2021
+ - sample-apps/trello-integration-app/config/initializers/wrap_parameters.rb
2022
+ - sample-apps/trello-integration-app/config/locales/en.yml
2023
+ - sample-apps/trello-integration-app/config/puma.rb
2024
+ - sample-apps/trello-integration-app/config/routes.rb
2025
+ - sample-apps/trello-integration-app/config/spring.rb
2026
+ - sample-apps/trello-integration-app/config/storage.yml
2027
+ - sample-apps/trello-integration-app/db/migrate/20200624132327_create_hubspot_tokens.rb
2028
+ - sample-apps/trello-integration-app/db/migrate/20200624132336_create_trello_tokens.rb
2029
+ - sample-apps/trello-integration-app/db/migrate/20200624132337_create_deal_associations.rb
2030
+ - sample-apps/trello-integration-app/db/migrate/20200702130530_create_extension_cards.rb
2031
+ - sample-apps/trello-integration-app/db/migrate/20200715143913_create_mappings.rb
2032
+ - sample-apps/trello-integration-app/db/migrate/20200727083656_create_webhooks.rb
2033
+ - sample-apps/trello-integration-app/db/schema.rb
2034
+ - sample-apps/trello-integration-app/db/seeds.rb
2035
+ - sample-apps/trello-integration-app/docker-compose.yml
2036
+ - sample-apps/trello-integration-app/docker-entrypoint.sh
2037
+ - sample-apps/trello-integration-app/lib/assets/.keep
2038
+ - sample-apps/trello-integration-app/lib/middlewares/trello_payload_params_handler.rb
2039
+ - sample-apps/trello-integration-app/lib/tasks/.keep
2040
+ - sample-apps/trello-integration-app/log/.keep
2041
+ - sample-apps/trello-integration-app/log/development.log
2042
+ - sample-apps/trello-integration-app/package.json
2043
+ - sample-apps/trello-integration-app/public/404.html
2044
+ - sample-apps/trello-integration-app/public/422.html
2045
+ - sample-apps/trello-integration-app/public/500.html
2046
+ - sample-apps/trello-integration-app/public/favicon.ico
2047
+ - sample-apps/trello-integration-app/public/robots.txt
2048
+ - sample-apps/trello-integration-app/tmp/.keep
2049
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/-5/-5IQLCGeMEVABOZfTtCI7jAP59s3gIKoFcUrPHF6cRg.cache
2050
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/1M/1MIa4owWAXM3DE3nn5ZIqs_XEfGXzqflAhza_kXwTDc.cache
2051
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/1i/1imEhsNCIy2fAJ63nSZG4EwUgtvcghYpmgyo4ZhDR40.cache
2052
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/1m/1mRwQeI_697SJNgSakVyU5vtV9tpeQ3aUvIyW2cHhMs.cache
2053
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/21/21_uawo73AYegLYSTeDlvwfV9Utx2cadH6AjAtmgCQc.cache
2054
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/2l/2lLEp9zP0rNgbSVfE8xQYu1VU3p63BikVHdu_cToP54.cache
2055
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/33/33P8II3n2NSOHCnt4BhkKLa4cH0_vP6GXXXl8ra2b4M.cache
2056
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/3v/3vVkN-vWJvSYJXb_JLZ64MPdM6PagRLJjiVNlTh_vm0.cache
2057
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/4d/4d5ws2hCOW840rIPYQ8pjrtDPI1JGIMrPrfGvDFfbTQ.cache
2058
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/4t/4tS7Kks-W0kO57E-2syU3eShBn8W1Q9w36P6Fsfcgo0.cache
2059
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/4v/4vuJrhXN-pxG6n5IfuNdMz8_FsIYKj-fElSODkrt4AQ.cache
2060
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/6j/6jYDdSmPkIUK3DW0nVlT6Kf3aUDCNL-irPIlCMssNFY.cache
2061
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/9A/9AOXJU1xKC2LmruUREUliKtZk0ysQGX45jeVklP7ozo.cache
2062
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/9E/9EzUvwM2DX5UGOaP8z5v9a0fHEobrbfp3eLZtTLyXt8.cache
2063
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/9V/9VF8D3PaGXBXsH74TVS8KHuWDA_6IiSdXMilLhBQisM.cache
2064
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/AA/AA5_0J3GyFIY79_KiyFady2ZJJ-o1rDP-bwtevwJVuY.cache
2065
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/BR/BRGFuw7M9XuD-y23pOt1EL_DLcfRImkjQ0yzDyW3bOE.cache
2066
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/C4/C4VsgK-RhAE1XVxk0QLfjhqU_LiJ-qgNPbt8O_x94fM.cache
2067
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Cl/ClI93B7UZ6jGQMdlSf-z2BZkPwo4ZAPc6NQYXF2aCW0.cache
2068
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Da/DaHmw8V0fiWvHA5af1ehm-ZYy1JjXu4PbJb3fAqHIdU.cache
2069
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/EC/EC2j6BCJ8TnspQFZeViwqN9QJH0fdqH7HvaNE6RzBxc.cache
2070
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/EM/EMt4g95xPhDuUZK0IoqMVCTpWNYG72BlusUhU3qWa6Q.cache
2071
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Er/ErIP6ktHQNoOJA-K1Km62d62DjG_GGiedMMJrpoBs98.cache
2072
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Ev/EvAj2kJ2dwux14VZrEABFg1ojO9rwRZ_7HQWXIQbGMk.cache
2073
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Ex/Ex1GOKR4HeeSso9ocHcgZEnrNvJqHIxizwMn8jXrZ2s.cache
2074
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Fo/FozpKz0BlJKhxk6Y5ZSFkC2weBkvW7fEfj_TJS2lbcU.cache
2075
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Fp/FprMIwFBZYrEWraVY7BWLI8zyHb9bwBIcAGNdpYm1Qo.cache
2076
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/GK/GKxgqeOG0nQQcSU0Dp7Tky2B5pqg5Xz2Xv-RUIxCiQM.cache
2077
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache
2078
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/IF/IFtTiYvPKpcddKBW6kSbbXSj2nHsT9-0e__M_Q3Ydwc.cache
2079
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/II/IIPvGX0Vm8TVSGGurS7Spr3UKR6qu-5j1LmYNImm_JQ.cache
2080
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/JO/JOFYZ78eHKCOJNksYpp-KNV0_WErea0ucgvqWvxoTWg.cache
2081
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Ja/Jawz4NLXjjzxtdy8wxOOx7QhbRhQumkQJmOKMmFZg5A.cache
2082
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/KS/KSuG_K9XWDeRmkg1aki-m-v5NQz_jul3p5rEoxQzygk.cache
2083
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Mu/MuVSyemz8nKlOKCKaZUhD1J703apuKikoqlx0L8l2gw.cache
2084
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/N5/N5zOlD0a_6dV7b8XNEnH_bhrdAz-PcVA2_FH-fesFAw.cache
2085
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/NQ/NQXCo8VzytKS6zmbf2mHRuQ9p1dszxC0M_W5nBdxfnU.cache
2086
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/QU/QUELNS-UKkXy-aHIYE_PavCQ9D7aaPr0zHiS4X-eLBY.cache
2087
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/RB/RBXEUm7Ur58juoS_oHSncpm1FQ2_wk6Svtkpnx0UXPk.cache
2088
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/S1/S1kQ3eQcvROz0Baua51wj2V769FaA_8OLk3M751zWW8.cache
2089
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/S_/S_s8-kaJemyjvXLCG6ElV64FYdfUXVKshCNSzYwwg6k.cache
2090
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/TD/TDBM4lXvTNWSR45QUXjQRRkCXOIAZ4C4GoEn1jpxPfM.cache
2091
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/T_/T_RSgEXy7oMt3ndzJsOS-ebKMgiAe3u-2P8ICTtNzXs.cache
2092
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/U4/U466McG48IRBn70OWh5BO3nYPsXgKrEXHkrftg0xCLQ.cache
2093
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Up/Upbt8ro5KXzYO6uyhFdI4KEXO-PUKaMitXFMEKCsfWA.cache
2094
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/V4/V4Ep5i91uzhre0mC674b233pIerWSE9Z8I4ZXE2EUVY.cache
2095
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/WM/WMV3aHZbU71jzKeF0Zbrh5HCFrPvL1ZVIp0GGYjySrY.cache
2096
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/WS/WSjW9cPxxweuDoySziMbK44N4uj8GzWYwnjnm7i-LAE.cache
2097
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Wg/WgqE1e0njA-qgTJ4VnjoGrRm12ekCA88LG-GQTh7o3Y.cache
2098
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Wl/Wls93jnZw9MP1AaTqf_kj7QkI1YjaPge38JN2xc9K-M.cache
2099
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Wy/WyT0VOgrYLcjfclQ3qyXsv6X6nwLLBASTuWzf9XnmvI.cache
2100
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Xu/Xu0XM23ILAuTly3JScuaLm-H4iL4aEfZkrjkid6tKHE.cache
2101
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/Yc/YcPGytUuXCB3Iy533hUM2bbaqujcuoGI8bdVbbscn4A.cache
2102
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/_V/_VXOq8NOcWHt8J3hvaz4ZG8AF7u2sNfDdzL6o8vzEYA.cache
2103
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/b8/b8dgpzld6JaG-3Pz0ODBXpeDvRo0hMBmDjEx19KJ9ck.cache
2104
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/b_/b_MeFQEHG92wmeDGDWl4Mxcd0zcgj3KzgpD-m8-7F5o.cache
2105
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/c4/c4JrhgYKhvoDqMoyvQwF0bvuMjaCmNQh488InFTjGfA.cache
2106
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/cF/cFyy2Nd_8i8pDti5ajoouKVOFBUoGwpWyK41rd1aJtg.cache
2107
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/ce/ceyLCDG3-DQdZt2OywV1eHFXkhOgUqaUzMQ8yxeHFyo.cache
2108
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/cs/csVCFI5Dmlgj2qo-AvtiC2f9_2wBR0SZ8uJ90XWMe48.cache
2109
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/dg/dg8xDUB026KlWVbRE1h_SZ6gEPR6g81HrTkUIimQzqc.cache
2110
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/dj/djlvnYQpcj6N2uQvct8RK42TAuwW4hwZ-yQ8t8UuTf4.cache
2111
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/ec/ec2nqBrb69Fz1aZTRv_WFr81zn-qw1sd5g67JyPmzU8.cache
2112
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/fC/fCtxdjXxPx4x7QkxfqIqo-m6jJWx3KfVemtGYAa0bNs.cache
2113
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/gI/gIsS03KKKoIhpo_gWbC5doCbOwIb_fxs1tX_D82AMVI.cache
2114
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/gd/gdKJ69-j9AYGRIgSaZGzfSFOE3nSfCPI6CtfPHMG6wI.cache
2115
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/hw/hw4QvE0qt0hV7bvN_FsEvv5XOtzCIm4xZi3IDjjdyeA.cache
2116
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/iY/iYpAxlEH4DLiUQ6zfRen_n9yX4J1S2uFaJuX8sYrZ6c.cache
2117
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/jV/jVux5l8pQoU-_Llv3BbOW5oabZGnw06SILnpq-46EAI.cache
2118
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/jX/jXvGEwHuqSJvARGbVRsMQVI_7-Ij449UyBloEtxA1w8.cache
2119
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/nQ/nQh_KENYOBEW4lwlJeBwuAB3Ze32jmh92VVdhAJrnfU.cache
2120
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/oD/oDRVPFLUWIEOHvOyfFue-aNLuU71Vor8ClUEvS9raFE.cache
2121
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/oO/oOy0NVcBBQIe557HWqmTdZ92wLicODWfCk_Ls0dBZqc.cache
2122
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/pF/pFK-AXLRfIZQbNkoSeGwKVKqJtkz_-WxAlFUbspYW3o.cache
2123
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/pt/ptR_wbPnsO710yGC5H6xeZJv12VSCcJ4PDzHGgat9Wc.cache
2124
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/qk/qkmgOnsJcZuyHM4QuJL-TrqoNlfiyhep8KWUFopItLM.cache
2125
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/rK/rKNLhg6Vz6-dTlBEKyNqYW_cTUQQMou2h79JNy8OQoE.cache
2126
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/rj/rj6UFY6GPzEeHNj1Us4X9q2rLd-CqyXlvmCp4iD7BIg.cache
2127
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/tL/tLfyRwlD0eZ8g6WBM1YaOKujrILNutlRUEoLox3kpuU.cache
2128
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/ud/ud0EKIfekOhYeEq51HRWS0b6PbNaf1jw77HtqqbuFPM.cache
2129
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/v5/v59xeeJBoNorMAJRYDIlA0dCKyFjm4xPCy0gT5ohJLw.cache
2130
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/wL/wLW8hVhjt49mpyche47kjprMBpzCjUdN70PsDHESd4w.cache
2131
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/wn/wnNHayXp8SlmDqVkYO6y-a2V6dqdf6tlklpuBGck0hA.cache
2132
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/x-/x-xnlwr31pcSkiXjUzhgvqIViWBQe8vhSS2kBHEQoZ8.cache
2133
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/xi/xiqX6T0sRUIY8wNtp4HQLTfbGBblT4-I-CFSAZFScAY.cache
2134
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/y5/y5P7ijIrYw3KoJxyJKHXXiPlB6WePmNVwB_n2CKmB48.cache
2135
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/yL/yLiDuY3PPQgAmxWaulR4bejdG-_VXuSIqbmkWlntOys.cache
2136
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/yW/yWmahJm8XA0QAPcA5o1hJ3XPaG6IgMHmS3UF5oSnr9I.cache
2137
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/yX/yX9b5ebHE375rOe7dXKt7ownzOgXaQTJS4mB-z80Ns8.cache
2138
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/yo/yo-3ZSeBhkQ3CKCZfUr_KsQXXXfha4sukV1d7rYFdL8.cache
2139
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/zC/zCXz6AtijAHttkBPC6wWo3jUWXncLWWWETF3XnceGDY.cache
2140
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/zU/zU4lVt60UEWFJRhHYJ7o0E9ezVDrhPfb03Q-Ay6Q-jc.cache
2141
+ - sample-apps/trello-integration-app/tmp/cache/assets/sprockets/v3.0/zy/zycabP--QQi6NTlFOYosfiJ-qUlAgUBQSOYsjPyBAnY.cache
2142
+ - sample-apps/trello-integration-app/tmp/development_secret.txt
2143
+ - sample-apps/trello-integration-app/tmp/restart.txt
1928
2144
  - sample-apps/webhooks-contacts-app/.env
1929
2145
  - sample-apps/webhooks-contacts-app/.env.template
1930
2146
  - sample-apps/webhooks-contacts-app/.gitignore