ultracart_api 3.3.0 → 3.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f232d9eab6143048fc39ec2895648f951132d6dd5969d808fd0a56824a668d51
4
- data.tar.gz: 2884b3dfbbc1834967fc62ee6b3b7b3e6817823d56a5aa94866b0984cba6ba15
3
+ metadata.gz: 973e1851cbd7dd1d0481726fd57f45fe46eab86d9e89543166aeaca494827159
4
+ data.tar.gz: 210b313bd8f49860508a69095f369c2ff050f1eb7312933479207eb8c29877a0
5
5
  SHA512:
6
- metadata.gz: 9f16dfb6996eab08dfe812a1611d26a8831ef6ccbc6ffd99c6043a2a1142d0e1b082a2f5980eef92720812e9bcdeb4bdfcea37f095a05d73ff3e0fb164afc293
7
- data.tar.gz: 8c965a728c920f6edf490f92285cf555b58dff0e52396c9918652b94b782a34c8b59cdb6a8659d84571072b6addf4320b848ee229a2fae8ded2306538c5eb5d1
6
+ metadata.gz: 0224b0f76d1132f9873e8d36895c36b3cdc78602fac467c3f72517aaecca72d70d215e761a5d04b3bf3ed86b80cf7a8661186996a4b29c0dbd96051f33705137
7
+ data.tar.gz: bbdd9dfdf2136259e2a468752a1239d3a271fa59edb54ac61313b4650f5eaeeb05798549a0555ddbc6a4289906068d57f6848e10641963a9447582952d47c470
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.3.0
10
+ - Package version: 3.3.1
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.3.0.gem
27
+ gem install ./ultracart_api-3.3.1.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.3.0.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.3.1.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.3.0'
35
+ gem 'ultracart_api', '~> 3.3.1'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1044,6 +1044,7 @@ Not every change is committed to every SDK.
1044
1044
 
1045
1045
  | Version | Date | Comments |
1046
1046
  | --: | :-: | --- |
1047
+ | 3.3.1 | 07/16/2021 | screen recording - event sub text used for assisting in UX rendering |
1047
1048
  | 3.3.0 | 07/16/2021 | new endpoint SingleSignOn |
1048
1049
  | 3.2.15 | 07/13/2021 | storefront communications - added methods to retrieve step dispatch logs |
1049
1050
  | 3.2.14 | 07/12/2021 | fix documentation bug on packing slip methods for order api |
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  **name** | **String** | | [optional]
7
7
  **params** | [**Array<ScreenRecordingPageViewEventParameter>**](ScreenRecordingPageViewEventParameter.md) | | [optional]
8
8
  **prior_page_view** | **BOOLEAN** | | [optional]
9
+ **sub_text** | **String** | | [optional]
9
10
  **timestamp** | **String** | Timestamp of the event | [optional]
10
11
  **ts** | **Integer** | | [optional]
11
12
 
@@ -20,6 +20,8 @@ module UltracartClient
20
20
 
21
21
  attr_accessor :prior_page_view
22
22
 
23
+ attr_accessor :sub_text
24
+
23
25
  # Timestamp of the event
24
26
  attr_accessor :timestamp
25
27
 
@@ -31,6 +33,7 @@ module UltracartClient
31
33
  :'name' => :'name',
32
34
  :'params' => :'params',
33
35
  :'prior_page_view' => :'prior_page_view',
36
+ :'sub_text' => :'sub_text',
34
37
  :'timestamp' => :'timestamp',
35
38
  :'ts' => :'ts'
36
39
  }
@@ -42,6 +45,7 @@ module UltracartClient
42
45
  :'name' => :'String',
43
46
  :'params' => :'Array<ScreenRecordingPageViewEventParameter>',
44
47
  :'prior_page_view' => :'BOOLEAN',
48
+ :'sub_text' => :'String',
45
49
  :'timestamp' => :'String',
46
50
  :'ts' => :'Integer'
47
51
  }
@@ -69,6 +73,10 @@ module UltracartClient
69
73
  self.prior_page_view = attributes[:'prior_page_view']
70
74
  end
71
75
 
76
+ if attributes.has_key?(:'sub_text')
77
+ self.sub_text = attributes[:'sub_text']
78
+ end
79
+
72
80
  if attributes.has_key?(:'timestamp')
73
81
  self.timestamp = attributes[:'timestamp']
74
82
  end
@@ -99,6 +107,7 @@ module UltracartClient
99
107
  name == o.name &&
100
108
  params == o.params &&
101
109
  prior_page_view == o.prior_page_view &&
110
+ sub_text == o.sub_text &&
102
111
  timestamp == o.timestamp &&
103
112
  ts == o.ts
104
113
  end
@@ -112,7 +121,7 @@ module UltracartClient
112
121
  # Calculates hash code according to all attributes.
113
122
  # @return [Fixnum] Hash code
114
123
  def hash
115
- [name, params, prior_page_view, timestamp, ts].hash
124
+ [name, params, prior_page_view, sub_text, timestamp, ts].hash
116
125
  end
117
126
 
118
127
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.3.0'
14
+ VERSION = '3.3.1'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart