dear-inventory-ruby 0.2.13 → 0.2.14
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +11 -4
- data/docs/Account.md +17 -19
- data/docs/Accounts.md +5 -7
- data/docs/Address.md +10 -12
- data/docs/AttachmentLine.md +7 -9
- data/docs/AttributeSet.md +79 -0
- data/docs/AttributeSetAttribute.md +19 -0
- data/docs/AttributeSets.md +19 -0
- data/docs/Bin.md +4 -6
- data/docs/Carrier.md +4 -6
- data/docs/Carriers.md +5 -7
- data/docs/Contact.md +13 -15
- data/docs/Customer.md +34 -36
- data/docs/Customers.md +5 -7
- data/docs/Error.md +4 -6
- data/docs/ExternalHeader.md +4 -6
- data/docs/InventoryApi.md +446 -274
- data/docs/Location.md +20 -22
- data/docs/Locations.md +5 -7
- data/docs/Me.md +9 -11
- data/docs/MeContact.md +11 -13
- data/docs/MeContacts.md +5 -7
- data/docs/PaymentTerm.md +8 -10
- data/docs/PaymentTerms.md +5 -7
- data/docs/PriceTier.md +4 -6
- data/docs/PriceTiers.md +3 -5
- data/docs/Sale.md +45 -47
- data/docs/SaleAdditionalCharge.md +10 -12
- data/docs/SaleInvoice.md +19 -21
- data/docs/SaleInvoiceAdditionalCharge.md +11 -13
- data/docs/SaleInvoiceDelete.md +4 -6
- data/docs/SaleInvoiceLine.md +14 -16
- data/docs/SaleInvoicePartial.md +15 -17
- data/docs/SaleInvoicePost.md +15 -17
- data/docs/SaleInvoices.md +4 -6
- data/docs/SaleItem.md +33 -35
- data/docs/SaleList.md +5 -7
- data/docs/SaleOrder.md +12 -14
- data/docs/SaleOrderLine.md +15 -17
- data/docs/SalePayment.md +16 -18
- data/docs/SalePaymentLine.md +9 -11
- data/docs/SaleQuote.md +11 -13
- data/docs/SaleQuoteLine.md +13 -15
- data/docs/ShippingAddress.md +13 -15
- data/docs/Success.md +3 -5
- data/docs/SupplierCustomerAddress.md +11 -13
- data/docs/Tax.md +11 -13
- data/docs/TaxComponent.md +6 -8
- data/docs/Taxes.md +5 -7
- data/docs/Webhook.md +12 -14
- data/docs/Webhooks.md +3 -5
- data/lib/dear-inventory-ruby/api/inventory_api.rb +253 -0
- data/lib/dear-inventory-ruby/models/attribute_set.rb +534 -0
- data/lib/dear-inventory-ruby/models/attribute_set_attribute.rb +237 -0
- data/lib/dear-inventory-ruby/models/attribute_sets.rb +229 -0
- data/lib/dear-inventory-ruby/version.rb +1 -1
- data/lib/dear-inventory-ruby.rb +3 -0
- data/spec/.DS_Store +0 -0
- data/spec/api/inventory_api_spec.rb +49 -0
- data/spec/models/attribute_set_attribute_spec.rb +53 -0
- data/spec/models/attribute_set_spec.rb +233 -0
- data/spec/models/attribute_sets_spec.rb +53 -0
- metadata +53 -41
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#DEAR Inventory API
|
|
3
|
+
|
|
4
|
+
#This specifing endpoints for DEAR Inventory API
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0.0
|
|
7
|
+
Contact: nnhansg@gmail.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 4.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for DearInventoryRuby::AttributeSet
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AttributeSet' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = DearInventoryRuby::AttributeSet.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AttributeSet' do
|
|
31
|
+
it 'should create an instance of AttributeSet' do
|
|
32
|
+
expect(@instance).to be_instance_of(DearInventoryRuby::AttributeSet)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "id"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "name"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
describe 'test attribute "attribute1_name"' do
|
|
48
|
+
it 'should work' do
|
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
describe 'test attribute "attribute1_type"' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
describe 'test attribute "attribute1_values"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe 'test attribute "attribute2_name"' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
describe 'test attribute "attribute2_type"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "attribute2_values"' do
|
|
78
|
+
it 'should work' do
|
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
describe 'test attribute "attribute3_name"' do
|
|
84
|
+
it 'should work' do
|
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
describe 'test attribute "attribute3_type"' do
|
|
90
|
+
it 'should work' do
|
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
describe 'test attribute "attribute3_values"' do
|
|
96
|
+
it 'should work' do
|
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
describe 'test attribute "attribute4_name"' do
|
|
102
|
+
it 'should work' do
|
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
describe 'test attribute "attribute4_type"' do
|
|
108
|
+
it 'should work' do
|
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
110
|
+
end
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
describe 'test attribute "attribute4_values"' do
|
|
114
|
+
it 'should work' do
|
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
describe 'test attribute "attribute5_name"' do
|
|
120
|
+
it 'should work' do
|
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
describe 'test attribute "attribute5_type"' do
|
|
126
|
+
it 'should work' do
|
|
127
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
128
|
+
end
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
describe 'test attribute "attribute5_values"' do
|
|
132
|
+
it 'should work' do
|
|
133
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
134
|
+
end
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
describe 'test attribute "attribute6_name"' do
|
|
138
|
+
it 'should work' do
|
|
139
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
140
|
+
end
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
describe 'test attribute "attribute6_type"' do
|
|
144
|
+
it 'should work' do
|
|
145
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
146
|
+
end
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
describe 'test attribute "attribute6_values"' do
|
|
150
|
+
it 'should work' do
|
|
151
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
152
|
+
end
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
describe 'test attribute "attribute7_name"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "attribute7_type"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "attribute7_values"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
describe 'test attribute "attribute8_name"' do
|
|
174
|
+
it 'should work' do
|
|
175
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
describe 'test attribute "attribute8_type"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "attribute8_values"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
describe 'test attribute "attribute9_name"' do
|
|
192
|
+
it 'should work' do
|
|
193
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
194
|
+
end
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
describe 'test attribute "attribute9_type"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "attribute9_values"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
describe 'test attribute "attribute10_name"' do
|
|
210
|
+
it 'should work' do
|
|
211
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
212
|
+
end
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
describe 'test attribute "attribute10_type"' do
|
|
216
|
+
it 'should work' do
|
|
217
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
218
|
+
end
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
describe 'test attribute "attribute10_values"' do
|
|
222
|
+
it 'should work' do
|
|
223
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
224
|
+
end
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
describe 'test attribute "attributes"' do
|
|
228
|
+
it 'should work' do
|
|
229
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
230
|
+
end
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
end
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#DEAR Inventory API
|
|
3
|
+
|
|
4
|
+
#This specifing endpoints for DEAR Inventory API
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0.0
|
|
7
|
+
Contact: nnhansg@gmail.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 4.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for DearInventoryRuby::AttributeSets
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AttributeSets' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = DearInventoryRuby::AttributeSets.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AttributeSets' do
|
|
31
|
+
it 'should create an instance of AttributeSets' do
|
|
32
|
+
expect(@instance).to be_instance_of(DearInventoryRuby::AttributeSets)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "total"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "page"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
describe 'test attribute "attribute_set_list"' do
|
|
48
|
+
it 'should work' do
|
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dear-inventory-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nhan Nguyen
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: faraday
|
|
@@ -87,6 +87,9 @@ files:
|
|
|
87
87
|
- docs/Accounts.md
|
|
88
88
|
- docs/Address.md
|
|
89
89
|
- docs/AttachmentLine.md
|
|
90
|
+
- docs/AttributeSet.md
|
|
91
|
+
- docs/AttributeSetAttribute.md
|
|
92
|
+
- docs/AttributeSets.md
|
|
90
93
|
- docs/AuthorizationType.md
|
|
91
94
|
- docs/Bin.md
|
|
92
95
|
- docs/Carrier.md
|
|
@@ -142,6 +145,9 @@ files:
|
|
|
142
145
|
- lib/dear-inventory-ruby/models/accounts.rb
|
|
143
146
|
- lib/dear-inventory-ruby/models/address.rb
|
|
144
147
|
- lib/dear-inventory-ruby/models/attachment_line.rb
|
|
148
|
+
- lib/dear-inventory-ruby/models/attribute_set.rb
|
|
149
|
+
- lib/dear-inventory-ruby/models/attribute_set_attribute.rb
|
|
150
|
+
- lib/dear-inventory-ruby/models/attribute_sets.rb
|
|
145
151
|
- lib/dear-inventory-ruby/models/authorization_type.rb
|
|
146
152
|
- lib/dear-inventory-ruby/models/bin.rb
|
|
147
153
|
- lib/dear-inventory-ruby/models/carrier.rb
|
|
@@ -195,6 +201,9 @@ files:
|
|
|
195
201
|
- spec/models/accounts_spec.rb
|
|
196
202
|
- spec/models/address_spec.rb
|
|
197
203
|
- spec/models/attachment_line_spec.rb
|
|
204
|
+
- spec/models/attribute_set_attribute_spec.rb
|
|
205
|
+
- spec/models/attribute_set_spec.rb
|
|
206
|
+
- spec/models/attribute_sets_spec.rb
|
|
198
207
|
- spec/models/authorization_type_spec.rb
|
|
199
208
|
- spec/models/bin_spec.rb
|
|
200
209
|
- spec/models/carrier_spec.rb
|
|
@@ -262,59 +271,62 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
262
271
|
- !ruby/object:Gem::Version
|
|
263
272
|
version: '0'
|
|
264
273
|
requirements: []
|
|
265
|
-
rubygems_version:
|
|
274
|
+
rubygems_version: 4.0.6
|
|
266
275
|
specification_version: 4
|
|
267
276
|
summary: DEAR Inventory Ruby SDK generated from DEAR-OpenAPI Spec 3.0 for https://inventory.dearsystems.com
|
|
268
277
|
test_files:
|
|
269
278
|
- spec/api/inventory_api_spec.rb
|
|
270
279
|
- spec/api_client_spec.rb
|
|
271
280
|
- spec/configuration_spec.rb
|
|
272
|
-
- spec/models/error_spec.rb
|
|
273
|
-
- spec/models/contact_spec.rb
|
|
274
|
-
- spec/models/webhook_spec.rb
|
|
275
|
-
- spec/models/tax_spec.rb
|
|
276
281
|
- spec/models/account_spec.rb
|
|
277
|
-
- spec/models/
|
|
278
|
-
- spec/models/
|
|
279
|
-
- spec/models/
|
|
280
|
-
- spec/models/
|
|
281
|
-
- spec/models/
|
|
282
|
+
- spec/models/accounts_spec.rb
|
|
283
|
+
- spec/models/address_spec.rb
|
|
284
|
+
- spec/models/attachment_line_spec.rb
|
|
285
|
+
- spec/models/attribute_set_attribute_spec.rb
|
|
286
|
+
- spec/models/attribute_set_spec.rb
|
|
287
|
+
- spec/models/attribute_sets_spec.rb
|
|
288
|
+
- spec/models/authorization_type_spec.rb
|
|
282
289
|
- spec/models/bin_spec.rb
|
|
283
|
-
- spec/models/
|
|
284
|
-
- spec/models/supplier_customer_address_spec.rb
|
|
285
|
-
- spec/models/payment_term_spec.rb
|
|
286
|
-
- spec/models/payment_terms_spec.rb
|
|
287
|
-
- spec/models/sale_invoice_spec.rb
|
|
288
|
-
- spec/models/sale_invoice_partial_spec.rb
|
|
290
|
+
- spec/models/carrier_spec.rb
|
|
289
291
|
- spec/models/carriers_spec.rb
|
|
290
|
-
- spec/models/
|
|
291
|
-
- spec/models/customers_spec.rb
|
|
292
|
-
- spec/models/me_contact_spec.rb
|
|
293
|
-
- spec/models/attachment_line_spec.rb
|
|
292
|
+
- spec/models/contact_spec.rb
|
|
294
293
|
- spec/models/customer_spec.rb
|
|
295
|
-
- spec/models/
|
|
296
|
-
- spec/models/
|
|
297
|
-
- spec/models/
|
|
294
|
+
- spec/models/customers_spec.rb
|
|
295
|
+
- spec/models/error_spec.rb
|
|
296
|
+
- spec/models/external_header_spec.rb
|
|
298
297
|
- spec/models/location_spec.rb
|
|
299
|
-
- spec/models/
|
|
300
|
-
- spec/models/
|
|
301
|
-
- spec/models/webhook_type_spec.rb
|
|
302
|
-
- spec/models/taxes_spec.rb
|
|
303
|
-
- spec/models/accounts_spec.rb
|
|
304
|
-
- spec/models/me_spec.rb
|
|
305
|
-
- spec/models/shipping_address_spec.rb
|
|
298
|
+
- spec/models/locations_spec.rb
|
|
299
|
+
- spec/models/me_contact_spec.rb
|
|
306
300
|
- spec/models/me_contacts_spec.rb
|
|
307
|
-
- spec/models/
|
|
301
|
+
- spec/models/me_spec.rb
|
|
302
|
+
- spec/models/payment_term_spec.rb
|
|
303
|
+
- spec/models/payment_terms_spec.rb
|
|
304
|
+
- spec/models/price_tier_spec.rb
|
|
305
|
+
- spec/models/price_tiers_spec.rb
|
|
306
|
+
- spec/models/sale_additional_charge_spec.rb
|
|
308
307
|
- spec/models/sale_invoice_additional_charge_spec.rb
|
|
309
|
-
- spec/models/
|
|
308
|
+
- spec/models/sale_invoice_delete_spec.rb
|
|
309
|
+
- spec/models/sale_invoice_line_spec.rb
|
|
310
|
+
- spec/models/sale_invoice_partial_spec.rb
|
|
311
|
+
- spec/models/sale_invoice_post_spec.rb
|
|
312
|
+
- spec/models/sale_invoice_spec.rb
|
|
310
313
|
- spec/models/sale_invoices_spec.rb
|
|
311
|
-
- spec/models/
|
|
312
|
-
- spec/models/
|
|
314
|
+
- spec/models/sale_item_spec.rb
|
|
315
|
+
- spec/models/sale_list_spec.rb
|
|
316
|
+
- spec/models/sale_order_line_spec.rb
|
|
317
|
+
- spec/models/sale_order_spec.rb
|
|
318
|
+
- spec/models/sale_payment_line_spec.rb
|
|
319
|
+
- spec/models/sale_payment_spec.rb
|
|
313
320
|
- spec/models/sale_quote_line_spec.rb
|
|
314
|
-
- spec/models/
|
|
321
|
+
- spec/models/sale_quote_spec.rb
|
|
322
|
+
- spec/models/sale_spec.rb
|
|
323
|
+
- spec/models/shipping_address_spec.rb
|
|
315
324
|
- spec/models/success_spec.rb
|
|
316
|
-
- spec/models/
|
|
317
|
-
- spec/models/
|
|
318
|
-
- spec/models/
|
|
319
|
-
- spec/models/
|
|
325
|
+
- spec/models/supplier_customer_address_spec.rb
|
|
326
|
+
- spec/models/tax_component_spec.rb
|
|
327
|
+
- spec/models/tax_spec.rb
|
|
328
|
+
- spec/models/taxes_spec.rb
|
|
329
|
+
- spec/models/webhook_spec.rb
|
|
330
|
+
- spec/models/webhook_type_spec.rb
|
|
331
|
+
- spec/models/webhooks_spec.rb
|
|
320
332
|
- spec/spec_helper.rb
|