dear-inventory-ruby 0.2.10.1 → 0.2.12

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 (72) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +11 -0
  3. data/README.md +14 -4
  4. data/docs/Account.md +15 -15
  5. data/docs/Accounts.md +3 -3
  6. data/docs/Address.md +8 -8
  7. data/docs/AttachmentLine.md +5 -5
  8. data/docs/Bin.md +19 -0
  9. data/docs/Carrier.md +19 -0
  10. data/docs/Carriers.md +21 -0
  11. data/docs/Contact.md +9 -9
  12. data/docs/Customer.md +31 -31
  13. data/docs/Customers.md +3 -3
  14. data/docs/Error.md +2 -2
  15. data/docs/ExternalHeader.md +2 -2
  16. data/docs/InventoryApi.md +252 -64
  17. data/docs/Location.md +51 -0
  18. data/docs/Locations.md +21 -0
  19. data/docs/Me.md +7 -7
  20. data/docs/MeContact.md +33 -0
  21. data/docs/MeContacts.md +21 -0
  22. data/docs/PaymentTerm.md +4 -4
  23. data/docs/PaymentTerms.md +3 -3
  24. data/docs/PriceTier.md +2 -2
  25. data/docs/PriceTiers.md +1 -1
  26. data/docs/Sale.md +43 -43
  27. data/docs/SaleAdditionalCharge.md +8 -8
  28. data/docs/SaleInvoice.md +17 -17
  29. data/docs/SaleInvoiceAdditionalCharge.md +9 -9
  30. data/docs/SaleInvoiceDelete.md +1 -1
  31. data/docs/SaleInvoiceLine.md +12 -12
  32. data/docs/SaleInvoicePartial.md +12 -12
  33. data/docs/SaleInvoicePost.md +12 -12
  34. data/docs/SaleInvoices.md +2 -2
  35. data/docs/SaleItem.md +31 -31
  36. data/docs/SaleList.md +3 -3
  37. data/docs/SaleOrder.md +9 -9
  38. data/docs/SaleOrderLine.md +13 -13
  39. data/docs/SalePayment.md +14 -14
  40. data/docs/SalePaymentLine.md +7 -7
  41. data/docs/SaleQuote.md +8 -8
  42. data/docs/SaleQuoteLine.md +11 -11
  43. data/docs/ShippingAddress.md +11 -11
  44. data/docs/Success.md +1 -1
  45. data/docs/SupplierCustomerAddress.md +9 -9
  46. data/docs/Tax.md +5 -5
  47. data/docs/TaxComponent.md +3 -3
  48. data/docs/Taxes.md +3 -3
  49. data/docs/Webhook.md +10 -10
  50. data/docs/Webhooks.md +1 -1
  51. data/lib/dear-inventory-ruby/api/inventory_api.rb +193 -4
  52. data/lib/dear-inventory-ruby/models/bin.rb +217 -0
  53. data/lib/dear-inventory-ruby/models/carrier.rb +217 -0
  54. data/lib/dear-inventory-ruby/models/carriers.rb +229 -0
  55. data/lib/dear-inventory-ruby/models/location.rb +391 -0
  56. data/lib/dear-inventory-ruby/models/locations.rb +229 -0
  57. data/lib/dear-inventory-ruby/models/me_contact.rb +289 -0
  58. data/lib/dear-inventory-ruby/models/me_contacts.rb +229 -0
  59. data/lib/dear-inventory-ruby/models/supplier_customer_address.rb +7 -7
  60. data/lib/dear-inventory-ruby/version.rb +1 -1
  61. data/lib/dear-inventory-ruby.rb +7 -0
  62. data/spec/.DS_Store +0 -0
  63. data/spec/api/inventory_api_spec.rb +41 -2
  64. data/spec/models/bin_spec.rb +47 -0
  65. data/spec/models/carrier_spec.rb +47 -0
  66. data/spec/models/carriers_spec.rb +53 -0
  67. data/spec/models/location_spec.rb +143 -0
  68. data/spec/models/locations_spec.rb +53 -0
  69. data/spec/models/me_contact_spec.rb +89 -0
  70. data/spec/models/me_contacts_spec.rb +53 -0
  71. data/spec/models/supplier_customer_address_spec.rb +1 -1
  72. metadata +31 -7
@@ -0,0 +1,47 @@
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::Bin
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'Bin' do
21
+ before do
22
+ # run before each test
23
+ @instance = DearInventoryRuby::Bin.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of Bin' do
31
+ it 'should create an instance of Bin' do
32
+ expect(@instance).to be_instance_of(DearInventoryRuby::Bin)
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
+ end
@@ -0,0 +1,47 @@
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::Carrier
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'Carrier' do
21
+ before do
22
+ # run before each test
23
+ @instance = DearInventoryRuby::Carrier.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of Carrier' do
31
+ it 'should create an instance of Carrier' do
32
+ expect(@instance).to be_instance_of(DearInventoryRuby::Carrier)
33
+ end
34
+ end
35
+ describe 'test attribute "carrier_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 "description"' 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
+ 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::Carriers
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'Carriers' do
21
+ before do
22
+ # run before each test
23
+ @instance = DearInventoryRuby::Carriers.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of Carriers' do
31
+ it 'should create an instance of Carriers' do
32
+ expect(@instance).to be_instance_of(DearInventoryRuby::Carriers)
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 "carrier_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
@@ -0,0 +1,143 @@
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::Location
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'Location' do
21
+ before do
22
+ # run before each test
23
+ @instance = DearInventoryRuby::Location.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of Location' do
31
+ it 'should create an instance of Location' do
32
+ expect(@instance).to be_instance_of(DearInventoryRuby::Location)
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 "is_default"' 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 "deprecated"' 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 "bins"' 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 "fixed_assets_location"' 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 "parent_id"' 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 "reference_count"' 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 "address_line1"' 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 "address_line2"' 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 "address_city_suburb"' 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 "address_state_province"' 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 "address_zip_post_code"' 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 "address_country"' 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 "pick_zones"' 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 "is_shopfloor"' 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 "is_co_man"' 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 "is_staging"' 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
+ 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::Locations
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'Locations' do
21
+ before do
22
+ # run before each test
23
+ @instance = DearInventoryRuby::Locations.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of Locations' do
31
+ it 'should create an instance of Locations' do
32
+ expect(@instance).to be_instance_of(DearInventoryRuby::Locations)
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 "location_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
@@ -0,0 +1,89 @@
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::MeContact
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'MeContact' do
21
+ before do
22
+ # run before each test
23
+ @instance = DearInventoryRuby::MeContact.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of MeContact' do
31
+ it 'should create an instance of MeContact' do
32
+ expect(@instance).to be_instance_of(DearInventoryRuby::MeContact)
33
+ end
34
+ end
35
+ describe 'test attribute "contact_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 "phone"' 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 "fax"' 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 "email"' 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 "website"' 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 "comment"' 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 "type"' 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 "default_for_type"' 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
+ 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::MeContacts
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'MeContacts' do
21
+ before do
22
+ # run before each test
23
+ @instance = DearInventoryRuby::MeContacts.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of MeContacts' do
31
+ it 'should create an instance of MeContacts' do
32
+ expect(@instance).to be_instance_of(DearInventoryRuby::MeContacts)
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 "me_contacts_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
@@ -62,7 +62,7 @@ describe 'SupplierCustomerAddress' do
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "post_code"' do
65
+ describe 'test attribute "postcode"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
metadata CHANGED
@@ -1,14 +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.10.1
4
+ version: 0.2.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nhan Nguyen
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-02-06 00:00:00.000000000 Z
10
+ date: 2025-03-15 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: faraday
@@ -89,13 +88,20 @@ files:
89
88
  - docs/Address.md
90
89
  - docs/AttachmentLine.md
91
90
  - docs/AuthorizationType.md
91
+ - docs/Bin.md
92
+ - docs/Carrier.md
93
+ - docs/Carriers.md
92
94
  - docs/Contact.md
93
95
  - docs/Customer.md
94
96
  - docs/Customers.md
95
97
  - docs/Error.md
96
98
  - docs/ExternalHeader.md
97
99
  - docs/InventoryApi.md
100
+ - docs/Location.md
101
+ - docs/Locations.md
98
102
  - docs/Me.md
103
+ - docs/MeContact.md
104
+ - docs/MeContacts.md
99
105
  - docs/PaymentTerm.md
100
106
  - docs/PaymentTerms.md
101
107
  - docs/PriceTier.md
@@ -137,12 +143,19 @@ files:
137
143
  - lib/dear-inventory-ruby/models/address.rb
138
144
  - lib/dear-inventory-ruby/models/attachment_line.rb
139
145
  - lib/dear-inventory-ruby/models/authorization_type.rb
146
+ - lib/dear-inventory-ruby/models/bin.rb
147
+ - lib/dear-inventory-ruby/models/carrier.rb
148
+ - lib/dear-inventory-ruby/models/carriers.rb
140
149
  - lib/dear-inventory-ruby/models/contact.rb
141
150
  - lib/dear-inventory-ruby/models/customer.rb
142
151
  - lib/dear-inventory-ruby/models/customers.rb
143
152
  - lib/dear-inventory-ruby/models/error.rb
144
153
  - lib/dear-inventory-ruby/models/external_header.rb
154
+ - lib/dear-inventory-ruby/models/location.rb
155
+ - lib/dear-inventory-ruby/models/locations.rb
145
156
  - lib/dear-inventory-ruby/models/me.rb
157
+ - lib/dear-inventory-ruby/models/me_contact.rb
158
+ - lib/dear-inventory-ruby/models/me_contacts.rb
146
159
  - lib/dear-inventory-ruby/models/payment_term.rb
147
160
  - lib/dear-inventory-ruby/models/payment_terms.rb
148
161
  - lib/dear-inventory-ruby/models/price_tier.rb
@@ -183,11 +196,18 @@ files:
183
196
  - spec/models/address_spec.rb
184
197
  - spec/models/attachment_line_spec.rb
185
198
  - spec/models/authorization_type_spec.rb
199
+ - spec/models/bin_spec.rb
200
+ - spec/models/carrier_spec.rb
201
+ - spec/models/carriers_spec.rb
186
202
  - spec/models/contact_spec.rb
187
203
  - spec/models/customer_spec.rb
188
204
  - spec/models/customers_spec.rb
189
205
  - spec/models/error_spec.rb
190
206
  - spec/models/external_header_spec.rb
207
+ - spec/models/location_spec.rb
208
+ - spec/models/locations_spec.rb
209
+ - spec/models/me_contact_spec.rb
210
+ - spec/models/me_contacts_spec.rb
191
211
  - spec/models/me_spec.rb
192
212
  - spec/models/payment_term_spec.rb
193
213
  - spec/models/payment_terms_spec.rb
@@ -228,7 +248,6 @@ metadata:
228
248
  source_code_uri: https://github.com/nnhansg/dear-ruby
229
249
  changelog_uri: https://github.com/nnhansg/dear-ruby/blob/master/CHANGELOG.md
230
250
  bug_tracker_uri: https://github.com/nnhansg/dear-ruby/issues
231
- post_install_message:
232
251
  rdoc_options: []
233
252
  require_paths:
234
253
  - lib
@@ -243,9 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
243
262
  - !ruby/object:Gem::Version
244
263
  version: '0'
245
264
  requirements: []
246
- rubyforge_project:
247
- rubygems_version: 2.7.3
248
- signing_key:
265
+ rubygems_version: 3.6.2
249
266
  specification_version: 4
250
267
  summary: DEAR Inventory Ruby SDK generated from DEAR-OpenAPI Spec 3.0 for https://inventory.dearsystems.com
251
268
  test_files:
@@ -261,19 +278,24 @@ test_files:
261
278
  - spec/models/external_header_spec.rb
262
279
  - spec/models/tax_component_spec.rb
263
280
  - spec/models/sale_list_spec.rb
281
+ - spec/models/carrier_spec.rb
282
+ - spec/models/bin_spec.rb
264
283
  - spec/models/sale_invoice_line_spec.rb
265
284
  - spec/models/supplier_customer_address_spec.rb
266
285
  - spec/models/payment_term_spec.rb
267
286
  - spec/models/payment_terms_spec.rb
268
287
  - spec/models/sale_invoice_spec.rb
269
288
  - spec/models/sale_invoice_partial_spec.rb
289
+ - spec/models/carriers_spec.rb
270
290
  - spec/models/sale_order_line_spec.rb
271
291
  - spec/models/customers_spec.rb
292
+ - spec/models/me_contact_spec.rb
272
293
  - spec/models/attachment_line_spec.rb
273
294
  - spec/models/customer_spec.rb
274
295
  - spec/models/sale_invoice_delete_spec.rb
275
296
  - spec/models/sale_payment_spec.rb
276
297
  - spec/models/sale_additional_charge_spec.rb
298
+ - spec/models/location_spec.rb
277
299
  - spec/models/sale_item_spec.rb
278
300
  - spec/models/sale_spec.rb
279
301
  - spec/models/webhook_type_spec.rb
@@ -281,10 +303,12 @@ test_files:
281
303
  - spec/models/accounts_spec.rb
282
304
  - spec/models/me_spec.rb
283
305
  - spec/models/shipping_address_spec.rb
306
+ - spec/models/me_contacts_spec.rb
284
307
  - spec/models/sale_order_spec.rb
285
308
  - spec/models/sale_invoice_additional_charge_spec.rb
286
309
  - spec/models/authorization_type_spec.rb
287
310
  - spec/models/sale_invoices_spec.rb
311
+ - spec/models/locations_spec.rb
288
312
  - spec/models/sale_quote_spec.rb
289
313
  - spec/models/sale_quote_line_spec.rb
290
314
  - spec/models/webhooks_spec.rb