ultracart_api 4.1.120 → 4.1.121

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: 22e0115af7e8d302af84a2c278cac48c326c4e13390347d71aa265803aacbd47
4
- data.tar.gz: 3ae9c97257ae86408ccc20f2256183169092a8db5513ef0be6a876b1e6ad6e52
3
+ metadata.gz: 2d5d871e0bb19eab14c055ac6a5c89c7ced3ca2c9127aab28c17c15721f51e22
4
+ data.tar.gz: 8fba28391554e4fe29d510482bd37805a01d3c313d94c50e6f4818df9cd91425
5
5
  SHA512:
6
- metadata.gz: 438cc0b421fb1283e591bbaf003b2ee6120f1a19d8ddf290d9e768f6633e8b3dc96702c1bcd3d206f62ea0a528922d6616907462e79d8e0c6fc8e0370567d0e6
7
- data.tar.gz: 9277e584d2df1df1ab4d2e81557e7ec09d3f1dac7e0a49655bfdc1d683d2e331d57cb6111d289c3209f9e02525e821c943431330f6f6e900e49d00af18c4bc3d
6
+ metadata.gz: 1294d57bcd66fae30a395c4306a060acc3d68f61657363453222cf5e797cd03667f737e2889c23f452357784978e69e75439c0850f6f0299ddf1b97f1f492ef6
7
+ data.tar.gz: 281ca6e2d950f6eab70a5cc311fffa540c105b074238a3e9c29114414f3c90e1e4dca0f7e3700fe69a5c15c3598bbd2b14f890ea301b8798544ecde9abb17a14
data/README.md CHANGED
@@ -7,7 +7,7 @@ Note: Every method has a sample for every language. See https://github.com/Ultr
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 4.1.120
10
+ - Package version: 4.1.121
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  - For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
13
13
 
@@ -16,7 +16,7 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
16
16
  gemfile:
17
17
 
18
18
  ```shell
19
- gem 'ultracart_api', '4.1.120'
19
+ gem 'ultracart_api', '4.1.121'
20
20
  ```
21
21
 
22
22
  install:
@@ -1825,6 +1825,7 @@ Not every change is committed to every SDK.
1825
1825
 
1826
1826
  | Version | Date | Comments |
1827
1827
  | --: | :-: | --- |
1828
+ | 4.1.121 | 07/15/2026 | storefront - parameter to include details on dispatch log methods |
1828
1829
  | 4.1.120 | 07/15/2026 | storefront - parameter to include details on dispatch log methods |
1829
1830
  | 4.1.119 | 07/15/2026 | order api - query transaction details for cache target |
1830
1831
  | 4.1.118 | 07/14/2026 | affiliate - send welcome letter method |
@@ -4,6 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
+ | **detail** | **String** | Dispatch detail text (free-form log of how the customer moved through the step) | [optional] |
7
8
  | **email** | **String** | Customer email, resolved from the customer UUID for the page | [optional] |
8
9
  | **esp_commseq_step_uuid** | **String** | Communication sequence step UUID | [optional] |
9
10
  | **esp_commseq_uuid** | **String** | Communication sequence (flow/campaign) UUID | [optional] |
@@ -16,6 +17,7 @@
16
17
  require 'ultracart_api'
17
18
 
18
19
  instance = UltracartClient::EmailDispatchLog.new(
20
+ detail: null,
19
21
  email: null,
20
22
  esp_commseq_step_uuid: null,
21
23
  esp_commseq_uuid: null,
@@ -2993,6 +2993,7 @@ end
2993
2993
  | **page_number** | **Integer** | | [optional] |
2994
2994
  | **page_size** | **Integer** | | [optional] |
2995
2995
  | **scan_forward** | **Boolean** | | [optional] |
2996
+ | **include_detail** | **Boolean** | | [optional] |
2996
2997
 
2997
2998
  ### Return type
2998
2999
 
@@ -5086,7 +5087,7 @@ end
5086
5087
 
5087
5088
  Get a paginated, date-boundable dispatch-log feed for a step
5088
5089
 
5089
- Paginated per-step dispatch activity with 90-day depth (AP3/AP4). Rows are lean, rendered from the DynamoDB keys; fetch a row's full detail via getEmailStepDispatchLogDetail. Page forward by incrementing pageNumber until the response 'more' flag is false. since/until are inclusive ISO-8601 bounds on log_dts.
5090
+ Paginated per-step dispatch activity with 90-day depth (AP3/AP4). Rows are lean unless includeDetail is passed as true, rendered from the DynamoDB keys; fetch a row's full detail via getEmailStepDispatchLogDetail. Page forward by incrementing pageNumber until the response 'more' flag is false. since/until are inclusive ISO-8601 bounds on log_dts.
5090
5091
 
5091
5092
 
5092
5093
  ### Examples
@@ -5124,6 +5125,7 @@ end
5124
5125
  | **_until** | **String** | | [optional] |
5125
5126
  | **page_number** | **Integer** | | [optional] |
5126
5127
  | **page_size** | **Integer** | | [optional] |
5128
+ | **include_detail** | **Boolean** | | [optional] |
5127
5129
 
5128
5130
  ### Return type
5129
5131
 
@@ -3611,6 +3611,7 @@ module UltracartClient
3611
3611
  # @option opts [Integer] :page_number
3612
3612
  # @option opts [Integer] :page_size
3613
3613
  # @option opts [Boolean] :scan_forward
3614
+ # @option opts [Boolean] :include_detail
3614
3615
  # @return [EmailDispatchLogsResponse]
3615
3616
  def get_email_customer_dispatch_logs(storefront_oid, email_customer_uuid, opts = {})
3616
3617
  data, _status_code, _headers = get_email_customer_dispatch_logs_with_http_info(storefront_oid, email_customer_uuid, opts)
@@ -3627,6 +3628,7 @@ module UltracartClient
3627
3628
  # @option opts [Integer] :page_number
3628
3629
  # @option opts [Integer] :page_size
3629
3630
  # @option opts [Boolean] :scan_forward
3631
+ # @option opts [Boolean] :include_detail
3630
3632
  # @return [Array<(EmailDispatchLogsResponse, Integer, Hash)>] EmailDispatchLogsResponse data, response status code and response headers
3631
3633
  def get_email_customer_dispatch_logs_with_http_info(storefront_oid, email_customer_uuid, opts = {})
3632
3634
  if @api_client.config.debugging
@@ -3650,6 +3652,7 @@ module UltracartClient
3650
3652
  query_params[:'pageNumber'] = opts[:'page_number'] if !opts[:'page_number'].nil?
3651
3653
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].nil?
3652
3654
  query_params[:'scanForward'] = opts[:'scan_forward'] if !opts[:'scan_forward'].nil?
3655
+ query_params[:'includeDetail'] = opts[:'include_detail'] if !opts[:'include_detail'].nil?
3653
3656
 
3654
3657
  # header parameters
3655
3658
  header_params = opts[:header_params] || {}
@@ -6338,7 +6341,7 @@ module UltracartClient
6338
6341
  end
6339
6342
 
6340
6343
  # Get a paginated, date-boundable dispatch-log feed for a step
6341
- # Paginated per-step dispatch activity with 90-day depth (AP3/AP4). Rows are lean, rendered from the DynamoDB keys; fetch a row's full detail via getEmailStepDispatchLogDetail. Page forward by incrementing pageNumber until the response 'more' flag is false. since/until are inclusive ISO-8601 bounds on log_dts.
6344
+ # Paginated per-step dispatch activity with 90-day depth (AP3/AP4). Rows are lean unless includeDetail is passed as true, rendered from the DynamoDB keys; fetch a row's full detail via getEmailStepDispatchLogDetail. Page forward by incrementing pageNumber until the response 'more' flag is false. since/until are inclusive ISO-8601 bounds on log_dts.
6342
6345
  # @param storefront_oid [Integer]
6343
6346
  # @param commseq_uuid [String]
6344
6347
  # @param commseq_step_uuid [String]
@@ -6347,6 +6350,7 @@ module UltracartClient
6347
6350
  # @option opts [String] :_until
6348
6351
  # @option opts [Integer] :page_number
6349
6352
  # @option opts [Integer] :page_size
6353
+ # @option opts [Boolean] :include_detail
6350
6354
  # @return [EmailDispatchLogsResponse]
6351
6355
  def get_email_step_dispatch_logs(storefront_oid, commseq_uuid, commseq_step_uuid, opts = {})
6352
6356
  data, _status_code, _headers = get_email_step_dispatch_logs_with_http_info(storefront_oid, commseq_uuid, commseq_step_uuid, opts)
@@ -6354,7 +6358,7 @@ module UltracartClient
6354
6358
  end
6355
6359
 
6356
6360
  # Get a paginated, date-boundable dispatch-log feed for a step
6357
- # Paginated per-step dispatch activity with 90-day depth (AP3/AP4). Rows are lean, rendered from the DynamoDB keys; fetch a row&#39;s full detail via getEmailStepDispatchLogDetail. Page forward by incrementing pageNumber until the response &#39;more&#39; flag is false. since/until are inclusive ISO-8601 bounds on log_dts.
6361
+ # Paginated per-step dispatch activity with 90-day depth (AP3/AP4). Rows are lean unless includeDetail is passed as true, rendered from the DynamoDB keys; fetch a row&#39;s full detail via getEmailStepDispatchLogDetail. Page forward by incrementing pageNumber until the response &#39;more&#39; flag is false. since/until are inclusive ISO-8601 bounds on log_dts.
6358
6362
  # @param storefront_oid [Integer]
6359
6363
  # @param commseq_uuid [String]
6360
6364
  # @param commseq_step_uuid [String]
@@ -6363,6 +6367,7 @@ module UltracartClient
6363
6367
  # @option opts [String] :_until
6364
6368
  # @option opts [Integer] :page_number
6365
6369
  # @option opts [Integer] :page_size
6370
+ # @option opts [Boolean] :include_detail
6366
6371
  # @return [Array<(EmailDispatchLogsResponse, Integer, Hash)>] EmailDispatchLogsResponse data, response status code and response headers
6367
6372
  def get_email_step_dispatch_logs_with_http_info(storefront_oid, commseq_uuid, commseq_step_uuid, opts = {})
6368
6373
  if @api_client.config.debugging
@@ -6389,6 +6394,7 @@ module UltracartClient
6389
6394
  query_params[:'until'] = opts[:'_until'] if !opts[:'_until'].nil?
6390
6395
  query_params[:'pageNumber'] = opts[:'page_number'] if !opts[:'page_number'].nil?
6391
6396
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].nil?
6397
+ query_params[:'includeDetail'] = opts[:'include_detail'] if !opts[:'include_detail'].nil?
6392
6398
 
6393
6399
  # header parameters
6394
6400
  header_params = opts[:header_params] || {}
@@ -15,6 +15,9 @@ require 'time'
15
15
 
16
16
  module UltracartClient
17
17
  class EmailDispatchLog
18
+ # Dispatch detail text (free-form log of how the customer moved through the step)
19
+ attr_accessor :detail
20
+
18
21
  # Customer email, resolved from the customer UUID for the page
19
22
  attr_accessor :email
20
23
 
@@ -33,6 +36,7 @@ module UltracartClient
33
36
  # Attribute mapping from ruby-style variable name to JSON key.
34
37
  def self.attribute_map
35
38
  {
39
+ :'detail' => :'detail',
36
40
  :'email' => :'email',
37
41
  :'esp_commseq_step_uuid' => :'esp_commseq_step_uuid',
38
42
  :'esp_commseq_uuid' => :'esp_commseq_uuid',
@@ -49,6 +53,7 @@ module UltracartClient
49
53
  # Attribute type mapping.
50
54
  def self.openapi_types
51
55
  {
56
+ :'detail' => :'String',
52
57
  :'email' => :'String',
53
58
  :'esp_commseq_step_uuid' => :'String',
54
59
  :'esp_commseq_uuid' => :'String',
@@ -78,6 +83,10 @@ module UltracartClient
78
83
  h[k.to_sym] = v
79
84
  }
80
85
 
86
+ if attributes.key?(:'detail')
87
+ self.detail = attributes[:'detail']
88
+ end
89
+
81
90
  if attributes.key?(:'email')
82
91
  self.email = attributes[:'email']
83
92
  end
@@ -117,6 +126,7 @@ module UltracartClient
117
126
  def ==(o)
118
127
  return true if self.equal?(o)
119
128
  self.class == o.class &&
129
+ detail == o.detail &&
120
130
  email == o.email &&
121
131
  esp_commseq_step_uuid == o.esp_commseq_step_uuid &&
122
132
  esp_commseq_uuid == o.esp_commseq_uuid &&
@@ -133,7 +143,7 @@ module UltracartClient
133
143
  # Calculates hash code according to all attributes.
134
144
  # @return [Integer] Hash code
135
145
  def hash
136
- [email, esp_commseq_step_uuid, esp_commseq_uuid, esp_customer_uuid, log_dts].hash
146
+ [detail, email, esp_commseq_step_uuid, esp_commseq_uuid, esp_customer_uuid, log_dts].hash
137
147
  end
138
148
 
139
149
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.1.120'
14
+ VERSION = '4.1.121'
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: 4.1.120
4
+ version: 4.1.121
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart