solidus_bling 4.0.4 → 4.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 910a76a47ad454f4ca881f237b794913b1991f28cc695c5ea676264def47a093
|
|
4
|
+
data.tar.gz: e98cbf7fa8bd958a4993d7007fc145705eb019115b99299172b250329a7973f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48ef739d87737e6f79d0378cd272d91d9dd86645561d5fc57c37b47c69c1c1adb0f2094beca6de5826026166cc9e90c0d21218af2271510d47cfa27ac691fa76
|
|
7
|
+
data.tar.gz: 63fd9dc4d3fe7d3467fc0c17cc7c95f9c56e39690c3669fdd93fd8a8b23ae91a5a1e7dd95ac90216ef75b486588bf9bf7ad19f8a6d90a1b8679faee335ad8a6d
|
|
@@ -14,12 +14,6 @@
|
|
|
14
14
|
<%= form.error_message_on :client_id %>
|
|
15
15
|
<% end %>
|
|
16
16
|
|
|
17
|
-
<%= form.field_container :client_secret do %>
|
|
18
|
-
<%= form.label :client_secret, "Client Secret", class: 'required' %>
|
|
19
|
-
<%= form.text_field :client_secret, required: true, class: 'fullwidth' %>
|
|
20
|
-
<%= form.error_message_on :client_secret %>
|
|
21
|
-
<% end %>
|
|
22
|
-
|
|
23
17
|
<%= form.field_container :external_store_id do %>
|
|
24
18
|
<%= form.label :external_store_id, "ID Loja", class: 'required' %>
|
|
25
19
|
<%= form.text_field :external_store_id, required: true, class: 'fullwidth' %>
|
|
@@ -41,18 +35,6 @@
|
|
|
41
35
|
<%= form.error_message_on :state %>
|
|
42
36
|
<% end %>
|
|
43
37
|
|
|
44
|
-
<%= form.field_container :refresh_token do %>
|
|
45
|
-
<%= form.label :refresh_token, "Refresh Token" %>
|
|
46
|
-
<%= form.text_field :refresh_token, class: 'fullwidth' %>
|
|
47
|
-
<%= form.error_message_on :refresh_token %>
|
|
48
|
-
<% end %>
|
|
49
|
-
|
|
50
|
-
<%= form.field_container :access_token do %>
|
|
51
|
-
<%= form.label :access_token, "Access Token" %>
|
|
52
|
-
<%= form.text_field :access_token, class: 'fullwidth' %>
|
|
53
|
-
<%= form.error_message_on :access_token %>
|
|
54
|
-
<% end %>
|
|
55
|
-
|
|
56
38
|
<div class="field">
|
|
57
39
|
<%= label_tag :token_expires_in, "Token Expiration" %>
|
|
58
40
|
<div class="fullwidth" id="token_expires_in" name="token_expires_in">
|
|
@@ -129,7 +111,6 @@
|
|
|
129
111
|
<%= form.select "default_seller", @sellers, {selected: ::SolidusBling::Seller.default&.id, include_blank: true }, { class: "custom-select fullwidth" } %>
|
|
130
112
|
</div>
|
|
131
113
|
</div>
|
|
132
|
-
|
|
133
114
|
</fieldset>
|
|
134
115
|
<% end %>
|
|
135
116
|
|
|
@@ -27,15 +27,6 @@
|
|
|
27
27
|
<%= text_field_tag :client_id, account.client_id, class:"fullwidth", disabled: true %>
|
|
28
28
|
</div>
|
|
29
29
|
|
|
30
|
-
<div class="field">
|
|
31
|
-
<%= label_tag :client_secret, "Client Secret" %>
|
|
32
|
-
<%= text_field_tag :client_secret, account.client_secret, class:"fullwidth", disabled: true %>
|
|
33
|
-
</div>
|
|
34
|
-
|
|
35
|
-
<div class="field">
|
|
36
|
-
<%= label_tag :refresh_token, "Refresh Token" %>
|
|
37
|
-
<%= text_field_tag :refresh_token, account.refresh_token, class:"fullwidth", disabled: true %>
|
|
38
|
-
</div>
|
|
39
30
|
<div class="field">
|
|
40
31
|
<%= button_to "Atualizar vendedores", upsert_sellers_admin_solidus_bling_accounts_path %>
|
|
41
32
|
</div>
|
|
@@ -53,11 +44,6 @@
|
|
|
53
44
|
<%= text_field_tag :state, account.state, class:"fullwidth", disabled: true %>
|
|
54
45
|
</div>
|
|
55
46
|
|
|
56
|
-
<div class="field">
|
|
57
|
-
<%= label_tag :access_token, "Access Token" %>
|
|
58
|
-
<%= text_field_tag :access_token, account.access_token, class:"fullwidth", disabled: true %>
|
|
59
|
-
</div>
|
|
60
|
-
|
|
61
47
|
<div class="field">
|
|
62
48
|
<%= label_tag :token_expires_in, "Token Expiration" %>
|
|
63
49
|
<div class="fullwidth" id="token_expires_in" name="token_expires_in">
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solidus_bling
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Todas Essas Coisas
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-04-06 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: solidus_brazilian_adaptations
|
|
@@ -37,6 +38,7 @@ dependencies:
|
|
|
37
38
|
- - ">="
|
|
38
39
|
- !ruby/object:Gem::Version
|
|
39
40
|
version: '0'
|
|
41
|
+
description:
|
|
40
42
|
email: hamiltontubo@gmail.com
|
|
41
43
|
executables: []
|
|
42
44
|
extensions: []
|
|
@@ -92,6 +94,7 @@ files:
|
|
|
92
94
|
homepage: https://github.com/todasessascoisas/solidus_bling
|
|
93
95
|
licenses: []
|
|
94
96
|
metadata: {}
|
|
97
|
+
post_install_message:
|
|
95
98
|
rdoc_options: []
|
|
96
99
|
require_paths:
|
|
97
100
|
- lib
|
|
@@ -109,7 +112,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
109
112
|
- !ruby/object:Gem::Version
|
|
110
113
|
version: '0'
|
|
111
114
|
requirements: []
|
|
112
|
-
rubygems_version: 3.
|
|
115
|
+
rubygems_version: 3.5.3
|
|
116
|
+
signing_key:
|
|
113
117
|
specification_version: 4
|
|
114
118
|
summary: Solidus extension to integrate with the Bling
|
|
115
119
|
test_files: []
|