ultracart_api 3.10.158 → 3.10.159
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/CustomerProperty.md +1 -0
- data/lib/ultracart_api/models/customer_property.rb +11 -1
- 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: 0bfd4bffb7834445a19af4a845dcb8d2297d9e9383aedfd5a3adc387619284ab
|
4
|
+
data.tar.gz: 934b36fb39da7ee391b25485550bbdd9a3660a7f9046447bd52997df65d236cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02ed595c62b74b8b28d0f182b4c85404195377a74d5e5988eec3a55b29f76f103757076e14ede8cc64bd493bb55c8e4d8d98e393033795f28ce89192ce2abc9c
|
7
|
+
data.tar.gz: 2cfdd4da8fed47136a2e2a95df016bc224cfdcf19991005c2353d9fea6de4a8cdee2d981a3ca548f166318331cbdcab0726f74424e8bd62250a441a373839c13
|
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.10.
|
10
|
+
- Package version: 3.10.159
|
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.10.
|
27
|
+
gem install ./ultracart_api-3.10.159.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.10.
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.10.159.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.10.
|
35
|
+
gem 'ultracart_api', '~> 3.10.159'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1362,6 +1362,7 @@ Not every change is committed to every SDK.
|
|
1362
1362
|
|
1363
1363
|
| Version | Date | Comments |
|
1364
1364
|
| --: | :-: | --- |
|
1365
|
+
| 3.10.159 | 09/12/2023 | added oids to customer properties |
|
1365
1366
|
| 3.10.158 | 09/06/2023 | esp condition for survey trigger |
|
1366
1367
|
| 3.10.157 | 09/05/2023 | auto order schedule - add intervals for 4 6 and 8 weeks |
|
1367
1368
|
| 3.10.156 | 08/31/2023 | new coupon - free item and free shipping with purchase |
|
data/docs/CustomerProperty.md
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
## Properties
|
4
4
|
Name | Type | Description | Notes
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
|
+
**customer_profile_property_oid** | **Integer** | Customer profile property oid | [optional]
|
6
7
|
**expiration_dts** | **String** | The date/time that the property expires and is deleted | [optional]
|
7
8
|
**name** | **String** | Name | [optional]
|
8
9
|
**value** | **String** | Value | [optional]
|
@@ -14,6 +14,9 @@ require 'date'
|
|
14
14
|
|
15
15
|
module UltracartClient
|
16
16
|
class CustomerProperty
|
17
|
+
# Customer profile property oid
|
18
|
+
attr_accessor :customer_profile_property_oid
|
19
|
+
|
17
20
|
# The date/time that the property expires and is deleted
|
18
21
|
attr_accessor :expiration_dts
|
19
22
|
|
@@ -26,6 +29,7 @@ module UltracartClient
|
|
26
29
|
# Attribute mapping from ruby-style variable name to JSON key.
|
27
30
|
def self.attribute_map
|
28
31
|
{
|
32
|
+
:'customer_profile_property_oid' => :'customer_profile_property_oid',
|
29
33
|
:'expiration_dts' => :'expiration_dts',
|
30
34
|
:'name' => :'name',
|
31
35
|
:'value' => :'value'
|
@@ -35,6 +39,7 @@ module UltracartClient
|
|
35
39
|
# Attribute type mapping.
|
36
40
|
def self.swagger_types
|
37
41
|
{
|
42
|
+
:'customer_profile_property_oid' => :'Integer',
|
38
43
|
:'expiration_dts' => :'String',
|
39
44
|
:'name' => :'String',
|
40
45
|
:'value' => :'String'
|
@@ -49,6 +54,10 @@ module UltracartClient
|
|
49
54
|
# convert string to symbol for hash key
|
50
55
|
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
51
56
|
|
57
|
+
if attributes.has_key?(:'customer_profile_property_oid')
|
58
|
+
self.customer_profile_property_oid = attributes[:'customer_profile_property_oid']
|
59
|
+
end
|
60
|
+
|
52
61
|
if attributes.has_key?(:'expiration_dts')
|
53
62
|
self.expiration_dts = attributes[:'expiration_dts']
|
54
63
|
end
|
@@ -110,6 +119,7 @@ module UltracartClient
|
|
110
119
|
def ==(o)
|
111
120
|
return true if self.equal?(o)
|
112
121
|
self.class == o.class &&
|
122
|
+
customer_profile_property_oid == o.customer_profile_property_oid &&
|
113
123
|
expiration_dts == o.expiration_dts &&
|
114
124
|
name == o.name &&
|
115
125
|
value == o.value
|
@@ -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
|
-
[expiration_dts, name, value].hash
|
137
|
+
[customer_profile_property_oid, expiration_dts, name, value].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.10.
|
4
|
+
version: 3.10.159
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|