ultracart_api 3.6.36 → 3.6.37
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/README.md +5 -4
- data/docs/OrderPaymentInsurance.md +1 -0
- data/docs/ScreenRecordingAdPlatform.md +1 -0
- data/lib/ultracart_api/models/order_payment_insurance.rb +11 -1
- data/lib/ultracart_api/models/screen_recording_ad_platform.rb +14 -4
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6705accb4394733982b91a400dd4f68e421738be21d65e3bffddabe2e824ef4b
|
4
|
+
data.tar.gz: ca13492314107e533491c1e8e8a58ee86b0b05945d4860a749e0d56398ed7aa1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4545ada7fe3fa04126db819dc5e585ef841d0e08f21d54027d6e8dfa0df03d669a2f773423eb41578ed617375cc0228acc3e6a71c5862303f5a6110d76b1f57
|
7
|
+
data.tar.gz: 5c88df8aeb5d1b7371318e77cb1c974ea3a76e22fff749ffc4106dd4d0c227f2fff99821fa4cf4fbe8a1680de17fbae54f03722204e02dcc6ea79076bec1cb0e
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
8
8
|
|
9
9
|
- API version: 2.0.0
|
10
|
-
- Package version: 3.6.
|
10
|
+
- Package version: 3.6.37
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
|
13
13
|
|
@@ -24,15 +24,15 @@ gem build ultracart_api.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./ultracart_api-3.6.
|
27
|
+
gem install ./ultracart_api-3.6.37.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.6.
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.6.37.gem` to install the development dependencies)
|
30
30
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
32
32
|
|
33
33
|
Finally add this to the Gemfile:
|
34
34
|
|
35
|
-
gem 'ultracart_api', '~> 3.6.
|
35
|
+
gem 'ultracart_api', '~> 3.6.37'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1128,6 +1128,7 @@ Not every change is committed to every SDK.
|
|
1128
1128
|
|
1129
1129
|
| Version | Date | Comments |
|
1130
1130
|
| --: | :-: | --- |
|
1131
|
+
| 3.6.37 | 02/04/2022 | insurance type for insurance payments |
|
1131
1132
|
| 3.6.36 | 12/29/2021 | Mail actual post card flag added to test method |
|
1132
1133
|
| 3.6.35 | 12/14/2021 | Add cancel_auto_order option to the accounts receivable retry configuration |
|
1133
1134
|
| 3.6.34 | 12/14/2021 | add evening phone E.164 fields to order billing/shipping objects |
|
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
6
|
**application_id** | **String** | application id | [optional]
|
7
7
|
**claim_id** | **String** | claim id | [optional]
|
8
|
+
**insurance_type** | **String** | insurance type | [optional]
|
8
9
|
**refund_claim_id** | **String** | refund claim id | [optional]
|
9
10
|
|
10
11
|
|
@@ -9,5 +9,6 @@ Name | Type | Description | Notes
|
|
9
9
|
**gacid** | **String** | Google Analytics CID (Cookie) | [optional]
|
10
10
|
**glcid** | **String** | Google Adwords Click Id (Parameter) | [optional]
|
11
11
|
**msclkid** | **String** | Bing Click Id (Parameter | [optional]
|
12
|
+
**ttclid** | **String** | TikTok Click Id (Parameter | [optional]
|
12
13
|
|
13
14
|
|
@@ -20,6 +20,9 @@ module UltracartClient
|
|
20
20
|
# claim id
|
21
21
|
attr_accessor :claim_id
|
22
22
|
|
23
|
+
# insurance type
|
24
|
+
attr_accessor :insurance_type
|
25
|
+
|
23
26
|
# refund claim id
|
24
27
|
attr_accessor :refund_claim_id
|
25
28
|
|
@@ -28,6 +31,7 @@ module UltracartClient
|
|
28
31
|
{
|
29
32
|
:'application_id' => :'application_id',
|
30
33
|
:'claim_id' => :'claim_id',
|
34
|
+
:'insurance_type' => :'insurance_type',
|
31
35
|
:'refund_claim_id' => :'refund_claim_id'
|
32
36
|
}
|
33
37
|
end
|
@@ -37,6 +41,7 @@ module UltracartClient
|
|
37
41
|
{
|
38
42
|
:'application_id' => :'String',
|
39
43
|
:'claim_id' => :'String',
|
44
|
+
:'insurance_type' => :'String',
|
40
45
|
:'refund_claim_id' => :'String'
|
41
46
|
}
|
42
47
|
end
|
@@ -57,6 +62,10 @@ module UltracartClient
|
|
57
62
|
self.claim_id = attributes[:'claim_id']
|
58
63
|
end
|
59
64
|
|
65
|
+
if attributes.has_key?(:'insurance_type')
|
66
|
+
self.insurance_type = attributes[:'insurance_type']
|
67
|
+
end
|
68
|
+
|
60
69
|
if attributes.has_key?(:'refund_claim_id')
|
61
70
|
self.refund_claim_id = attributes[:'refund_claim_id']
|
62
71
|
end
|
@@ -82,6 +91,7 @@ module UltracartClient
|
|
82
91
|
self.class == o.class &&
|
83
92
|
application_id == o.application_id &&
|
84
93
|
claim_id == o.claim_id &&
|
94
|
+
insurance_type == o.insurance_type &&
|
85
95
|
refund_claim_id == o.refund_claim_id
|
86
96
|
end
|
87
97
|
|
@@ -94,7 +104,7 @@ module UltracartClient
|
|
94
104
|
# Calculates hash code according to all attributes.
|
95
105
|
# @return [Fixnum] Hash code
|
96
106
|
def hash
|
97
|
-
[application_id, claim_id, refund_claim_id].hash
|
107
|
+
[application_id, claim_id, insurance_type, refund_claim_id].hash
|
98
108
|
end
|
99
109
|
|
100
110
|
# Builds the object from hash
|
@@ -32,6 +32,9 @@ module UltracartClient
|
|
32
32
|
# Bing Click Id (Parameter
|
33
33
|
attr_accessor :msclkid
|
34
34
|
|
35
|
+
# TikTok Click Id (Parameter
|
36
|
+
attr_accessor :ttclid
|
37
|
+
|
35
38
|
# Attribute mapping from ruby-style variable name to JSON key.
|
36
39
|
def self.attribute_map
|
37
40
|
{
|
@@ -40,7 +43,8 @@ module UltracartClient
|
|
40
43
|
:'fbp' => :'fbp',
|
41
44
|
:'gacid' => :'gacid',
|
42
45
|
:'glcid' => :'glcid',
|
43
|
-
:'msclkid' => :'msclkid'
|
46
|
+
:'msclkid' => :'msclkid',
|
47
|
+
:'ttclid' => :'ttclid'
|
44
48
|
}
|
45
49
|
end
|
46
50
|
|
@@ -52,7 +56,8 @@ module UltracartClient
|
|
52
56
|
:'fbp' => :'String',
|
53
57
|
:'gacid' => :'String',
|
54
58
|
:'glcid' => :'String',
|
55
|
-
:'msclkid' => :'String'
|
59
|
+
:'msclkid' => :'String',
|
60
|
+
:'ttclid' => :'String'
|
56
61
|
}
|
57
62
|
end
|
58
63
|
|
@@ -87,6 +92,10 @@ module UltracartClient
|
|
87
92
|
if attributes.has_key?(:'msclkid')
|
88
93
|
self.msclkid = attributes[:'msclkid']
|
89
94
|
end
|
95
|
+
|
96
|
+
if attributes.has_key?(:'ttclid')
|
97
|
+
self.ttclid = attributes[:'ttclid']
|
98
|
+
end
|
90
99
|
end
|
91
100
|
|
92
101
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -112,7 +121,8 @@ module UltracartClient
|
|
112
121
|
fbp == o.fbp &&
|
113
122
|
gacid == o.gacid &&
|
114
123
|
glcid == o.glcid &&
|
115
|
-
msclkid == o.msclkid
|
124
|
+
msclkid == o.msclkid &&
|
125
|
+
ttclid == o.ttclid
|
116
126
|
end
|
117
127
|
|
118
128
|
# @see the `==` method
|
@@ -124,7 +134,7 @@ module UltracartClient
|
|
124
134
|
# Calculates hash code according to all attributes.
|
125
135
|
# @return [Fixnum] Hash code
|
126
136
|
def hash
|
127
|
-
[fbc, fbclid, fbp, gacid, glcid, msclkid].hash
|
137
|
+
[fbc, fbclid, fbp, gacid, glcid, msclkid, ttclid].hash
|
128
138
|
end
|
129
139
|
|
130
140
|
# Builds the object from hash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ultracart_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.6.
|
4
|
+
version: 3.6.37
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|