avatax 22.2.0 → 22.2.1
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/lib/avatax/client/accounts.rb +11 -11
- data/lib/avatax/client/addresses.rb +2 -2
- data/lib/avatax/client/advancedrules.rb +5 -5
- data/lib/avatax/client/avafileforms.rb +5 -5
- data/lib/avatax/client/batches.rb +8 -8
- data/lib/avatax/client/certexpressinvites.rb +3 -3
- data/lib/avatax/client/certificates.rb +15 -15
- data/lib/avatax/client/companies.rb +22 -22
- data/lib/avatax/client/compliance.rb +1 -1
- data/lib/avatax/client/contacts.rb +6 -6
- data/lib/avatax/client/customers.rb +13 -13
- data/lib/avatax/client/datasources.rb +6 -6
- data/lib/avatax/client/definitions.rb +70 -70
- data/lib/avatax/client/distancethresholds.rb +6 -6
- data/lib/avatax/client/ecommercetoken.rb +2 -2
- data/lib/avatax/client/filingcalendars.rb +3 -3
- data/lib/avatax/client/filings.rb +2 -2
- data/lib/avatax/client/firmclientlinkages.rb +9 -9
- data/lib/avatax/client/free.rb +1 -1
- data/lib/avatax/client/fundingrequests.rb +2 -2
- data/lib/avatax/client/items.rb +25 -25
- data/lib/avatax/client/jurisdictionoverrides.rb +6 -6
- data/lib/avatax/client/locations.rb +12 -12
- data/lib/avatax/client/multidocument.rb +10 -10
- data/lib/avatax/client/nexus.rb +15 -15
- data/lib/avatax/client/notices.rb +4 -4
- data/lib/avatax/client/notifications.rb +3 -3
- data/lib/avatax/client/provisioning.rb +2 -2
- data/lib/avatax/client/registrar.rb +11 -11
- data/lib/avatax/client/reports.rb +4 -4
- data/lib/avatax/client/settings.rb +6 -6
- data/lib/avatax/client/subscriptions.rb +3 -3
- data/lib/avatax/client/taxcodes.rb +6 -6
- data/lib/avatax/client/taxcontent.rb +5 -5
- data/lib/avatax/client/taxrules.rb +6 -6
- data/lib/avatax/client/transactions.rb +22 -23
- data/lib/avatax/client/upcs.rb +6 -6
- data/lib/avatax/client/userdefinedfields.rb +3 -3
- data/lib/avatax/client/users.rb +8 -8
- data/lib/avatax/client/utilities.rb +3 -3
- data/lib/avatax/version.rb +1 -1
- metadata +2 -2
@@ -17,7 +17,7 @@ module AvaTax
|
|
17
17
|
# @param model [ContactModel[]] The contacts you wish to create.
|
18
18
|
# @return [ContactModel[]]
|
19
19
|
def create_contacts(companyId, model) path = "/api/v2/companies/#{companyId}/contacts"
|
20
|
-
post(path, model, {}, "22.2.
|
20
|
+
post(path, model, {}, "22.2.1") end
|
21
21
|
|
22
22
|
# Delete a single contact
|
23
23
|
#
|
@@ -31,7 +31,7 @@ module AvaTax
|
|
31
31
|
# @param id [Integer] The ID of the contact you wish to delete.
|
32
32
|
# @return [ErrorDetail[]]
|
33
33
|
def delete_contact(companyId, id) path = "/api/v2/companies/#{companyId}/contacts/#{id}"
|
34
|
-
delete(path, {}, "22.2.
|
34
|
+
delete(path, {}, "22.2.1") end
|
35
35
|
|
36
36
|
# Retrieve a single contact
|
37
37
|
#
|
@@ -47,7 +47,7 @@ module AvaTax
|
|
47
47
|
# @param id [Integer] The primary key of this contact
|
48
48
|
# @return [Object]
|
49
49
|
def get_contact(companyId, id) path = "/api/v2/companies/#{companyId}/contacts/#{id}"
|
50
|
-
get(path, {}, "22.2.
|
50
|
+
get(path, {}, "22.2.1") end
|
51
51
|
|
52
52
|
# Retrieve contacts for this company
|
53
53
|
#
|
@@ -67,7 +67,7 @@ module AvaTax
|
|
67
67
|
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
68
68
|
# @return [FetchResult]
|
69
69
|
def list_contacts_by_company(companyId, options={}) path = "/api/v2/companies/#{companyId}/contacts"
|
70
|
-
get(path, options, "22.2.
|
70
|
+
get(path, options, "22.2.1") end
|
71
71
|
|
72
72
|
# Retrieve all contacts
|
73
73
|
#
|
@@ -88,7 +88,7 @@ module AvaTax
|
|
88
88
|
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
89
89
|
# @return [FetchResult]
|
90
90
|
def query_contacts(options={}) path = "/api/v2/contacts"
|
91
|
-
get(path, options, "22.2.
|
91
|
+
get(path, options, "22.2.1") end
|
92
92
|
|
93
93
|
# Update a single contact
|
94
94
|
#
|
@@ -107,7 +107,7 @@ module AvaTax
|
|
107
107
|
# @param model [Object] The contact you wish to update.
|
108
108
|
# @return [Object]
|
109
109
|
def update_contact(companyId, id, model) path = "/api/v2/companies/#{companyId}/contacts/#{id}"
|
110
|
-
put(path, model, {}, "22.2.
|
110
|
+
put(path, model, {}, "22.2.1") end
|
111
111
|
end
|
112
112
|
end
|
113
113
|
end
|
@@ -30,7 +30,7 @@ module AvaTax
|
|
30
30
|
# @param model [CustomerModel[]] The list of customer objects to be created
|
31
31
|
# @return [CustomerModel[]]
|
32
32
|
def create_customers(companyId, model) path = "/api/v2/companies/#{companyId}/customers"
|
33
|
-
post(path, model, {}, "22.2.
|
33
|
+
post(path, model, {}, "22.2.1") end
|
34
34
|
|
35
35
|
# Delete a customer record
|
36
36
|
#
|
@@ -56,7 +56,7 @@ module AvaTax
|
|
56
56
|
# @param customerCode [String] The unique code representing this customer
|
57
57
|
# @return [Object]
|
58
58
|
def delete_customer(companyId, customerCode) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}"
|
59
|
-
delete(path, {}, "22.2.
|
59
|
+
delete(path, {}, "22.2.1") end
|
60
60
|
|
61
61
|
# Retrieve a single customer
|
62
62
|
#
|
@@ -89,7 +89,7 @@ module AvaTax
|
|
89
89
|
# @param include [String] Specify optional additional objects to include in this fetch request
|
90
90
|
# @return [Object]
|
91
91
|
def get_customer(companyId, customerCode, options={}) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}"
|
92
|
-
get(path, options, "22.2.
|
92
|
+
get(path, options, "22.2.1") end
|
93
93
|
|
94
94
|
# Link attributes to a customer
|
95
95
|
#
|
@@ -119,7 +119,7 @@ module AvaTax
|
|
119
119
|
# @param model [CustomerAttributeModel[]] The list of attributes to link to the customer.
|
120
120
|
# @return [FetchResult]
|
121
121
|
def link_attributes_to_customer(companyId, customerCode, model) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/attributes/link"
|
122
|
-
put(path, model, {}, "22.2.
|
122
|
+
put(path, model, {}, "22.2.1") end
|
123
123
|
|
124
124
|
# Link certificates to a customer
|
125
125
|
#
|
@@ -146,7 +146,7 @@ module AvaTax
|
|
146
146
|
# @param model [Object] The list of certificates to link to this customer
|
147
147
|
# @return [FetchResult]
|
148
148
|
def link_certificates_to_customer(companyId, customerCode, model) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/certificates/link"
|
149
|
-
post(path, model, {}, "22.2.
|
149
|
+
post(path, model, {}, "22.2.1") end
|
150
150
|
|
151
151
|
# Link two customer records together
|
152
152
|
#
|
@@ -174,7 +174,7 @@ module AvaTax
|
|
174
174
|
# @param model [Object] A list of information about ship-to customers to link to this bill-to customer.
|
175
175
|
# @return [Object]
|
176
176
|
def link_ship_to_customers_to_bill_customer(companyId, code, model) path = "/api/v2/companies/#{companyId}/customers/billto/#{code}/shipto/link"
|
177
|
-
post(path, model, {}, "22.2.
|
177
|
+
post(path, model, {}, "22.2.1") end
|
178
178
|
|
179
179
|
# Retrieve a customer's attributes
|
180
180
|
#
|
@@ -203,7 +203,7 @@ module AvaTax
|
|
203
203
|
# @param customerCode [String] The unique code representing the current customer
|
204
204
|
# @return [FetchResult]
|
205
205
|
def list_attributes_for_customer(companyId, customerCode) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/attributes"
|
206
|
-
get(path, {}, "22.2.
|
206
|
+
get(path, {}, "22.2.1") end
|
207
207
|
|
208
208
|
# List certificates linked to a customer
|
209
209
|
#
|
@@ -234,7 +234,7 @@ module AvaTax
|
|
234
234
|
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
235
235
|
# @return [FetchResult]
|
236
236
|
def list_certificates_for_customer(companyId, customerCode, options={}) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/certificates"
|
237
|
-
get(path, options, "22.2.
|
237
|
+
get(path, options, "22.2.1") end
|
238
238
|
|
239
239
|
# List valid certificates for a location
|
240
240
|
#
|
@@ -265,7 +265,7 @@ module AvaTax
|
|
265
265
|
# @param region [String] Search for certificates matching this region. Uses the ISO 3166 two or three character state, region, or province code.
|
266
266
|
# @return [Object]
|
267
267
|
def list_valid_certificates_for_customer(companyId, customerCode, country, region) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/certificates/#{country}/#{region}"
|
268
|
-
get(path, {}, "22.2.
|
268
|
+
get(path, {}, "22.2.1") end
|
269
269
|
|
270
270
|
# List all customers for this company
|
271
271
|
#
|
@@ -300,7 +300,7 @@ module AvaTax
|
|
300
300
|
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
301
301
|
# @return [FetchResult]
|
302
302
|
def query_customers(companyId, options={}) path = "/api/v2/companies/#{companyId}/customers"
|
303
|
-
get(path, options, "22.2.
|
303
|
+
get(path, options, "22.2.1") end
|
304
304
|
|
305
305
|
# Unlink attributes from a customer
|
306
306
|
#
|
@@ -330,7 +330,7 @@ module AvaTax
|
|
330
330
|
# @param model [CustomerAttributeModel[]] The list of attributes to unlink from the customer.
|
331
331
|
# @return [FetchResult]
|
332
332
|
def unlink_attributes_from_customer(companyId, customerCode, model) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/attributes/unlink"
|
333
|
-
put(path, model, {}, "22.2.
|
333
|
+
put(path, model, {}, "22.2.1") end
|
334
334
|
|
335
335
|
# Unlink certificates from a customer
|
336
336
|
#
|
@@ -357,7 +357,7 @@ module AvaTax
|
|
357
357
|
# @param model [Object] The list of certificates to link to this customer
|
358
358
|
# @return [FetchResult]
|
359
359
|
def unlink_certificates_from_customer(companyId, customerCode, model) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/certificates/unlink"
|
360
|
-
post(path, model, {}, "22.2.
|
360
|
+
post(path, model, {}, "22.2.1") end
|
361
361
|
|
362
362
|
# Update a single customer
|
363
363
|
#
|
@@ -384,7 +384,7 @@ module AvaTax
|
|
384
384
|
# @param model [Object] The new customer model that will replace the existing record at this URL
|
385
385
|
# @return [Object]
|
386
386
|
def update_customer(companyId, customerCode, model) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}"
|
387
|
-
put(path, model, {}, "22.2.
|
387
|
+
put(path, model, {}, "22.2.1") end
|
388
388
|
end
|
389
389
|
end
|
390
390
|
end
|
@@ -16,7 +16,7 @@ module AvaTax
|
|
16
16
|
# @param model [DataSourceModel[]]
|
17
17
|
# @return [DataSourceModel[]]
|
18
18
|
def create_data_sources(companyId, model) path = "/api/v2/companies/#{companyId}/datasources"
|
19
|
-
post(path, model, {}, "22.2.
|
19
|
+
post(path, model, {}, "22.2.1") end
|
20
20
|
|
21
21
|
# Delete a datasource by datasource id for a company.
|
22
22
|
#
|
@@ -31,7 +31,7 @@ module AvaTax
|
|
31
31
|
# @param id [Integer] The id of the datasource you wish to delete.
|
32
32
|
# @return [ErrorDetail[]]
|
33
33
|
def delete_data_source(companyId, id) path = "/api/v2/companies/#{companyId}/datasources/#{id}"
|
34
|
-
delete(path, {}, "22.2.
|
34
|
+
delete(path, {}, "22.2.1") end
|
35
35
|
|
36
36
|
# Get data source by data source id
|
37
37
|
#
|
@@ -46,7 +46,7 @@ module AvaTax
|
|
46
46
|
# @param id [Integer] data source id
|
47
47
|
# @return [Object]
|
48
48
|
def get_data_source_by_id(companyId, id) path = "/api/v2/companies/#{companyId}/datasources/#{id}"
|
49
|
-
get(path, {}, "22.2.
|
49
|
+
get(path, {}, "22.2.1") end
|
50
50
|
|
51
51
|
# Retrieve all datasources for this company
|
52
52
|
#
|
@@ -64,7 +64,7 @@ module AvaTax
|
|
64
64
|
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
65
65
|
# @return [FetchResult]
|
66
66
|
def list_data_sources(companyId, options={}) path = "/api/v2/companies/#{companyId}/datasources"
|
67
|
-
get(path, options, "22.2.
|
67
|
+
get(path, options, "22.2.1") end
|
68
68
|
|
69
69
|
# Retrieve all datasources
|
70
70
|
#
|
@@ -84,7 +84,7 @@ module AvaTax
|
|
84
84
|
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
85
85
|
# @return [FetchResult]
|
86
86
|
def query_data_sources(options={}) path = "/api/v2/datasources"
|
87
|
-
get(path, options, "22.2.
|
87
|
+
get(path, options, "22.2.1") end
|
88
88
|
|
89
89
|
# Update a datasource identified by id for a company
|
90
90
|
#
|
@@ -100,7 +100,7 @@ module AvaTax
|
|
100
100
|
# @param model [Object]
|
101
101
|
# @return [Object]
|
102
102
|
def update_data_source(companyId, id, model) path = "/api/v2/companies/#{companyId}/datasources/#{id}"
|
103
|
-
put(path, model, {}, "22.2.
|
103
|
+
put(path, model, {}, "22.2.1") end
|
104
104
|
end
|
105
105
|
end
|
106
106
|
end
|