Skip to content

Commit 4a2fec7

Browse files
Merge pull request #100 from CyberSource/december-release-2023
December release 2023
2 parents cd506d6 + 38ccaec commit 4a2fec7

File tree

800 files changed

+5675
-6011
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

800 files changed

+5675
-6011
lines changed

cybersource_rest_client.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require "cybersource_rest_client/version"
1717

1818
Gem::Specification.new do |s|
1919
s.name = "cybersource_rest_client"
20-
s.version = "0.0.56"
20+
s.version = "0.0.57"
2121
s.platform = Gem::Platform::RUBY
2222
s.authors = ["CyberSource"]
2323
s.email = ["cybersourcedev@gmail.com"]

docs/Boardingv1registrationsProductInformationSelectedProducts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**payments** | [**PaymentProducts**](PaymentProducts.md) | | [optional]
6+
**payments** | [**PaymentsProducts**](PaymentsProducts.md) | | [optional]
77
**risk** | [**RiskProducts**](RiskProducts.md) | | [optional]
88
**commerce_solutions** | [**CommerceSolutionsProducts**](CommerceSolutionsProducts.md) | | [optional]
99
**value_added_services** | [**ValueAddedServicesProducts**](ValueAddedServicesProducts.md) | | [optional]

docs/CommerceSolutionsProductsAccountUpdater.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**subscription_information** | [**PaymentProductsPayerAuthenticationSubscriptionInformation**](PaymentProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
6+
**subscription_information** | [**PaymentsProductsPayerAuthenticationSubscriptionInformation**](PaymentsProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
77
**configuration_information** | [**CommerceSolutionsProductsAccountUpdaterConfigurationInformation**](CommerceSolutionsProductsAccountUpdaterConfigurationInformation.md) | | [optional]
88

99

docs/CommerceSolutionsProductsBinLookup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**subscription_information** | [**PaymentProductsPayerAuthenticationSubscriptionInformation**](PaymentProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
6+
**subscription_information** | [**PaymentsProductsPayerAuthenticationSubscriptionInformation**](PaymentsProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
77
**configuration_information** | [**CommerceSolutionsProductsBinLookupConfigurationInformation**](CommerceSolutionsProductsBinLookupConfigurationInformation.md) | | [optional]
88

99

docs/CommerceSolutionsProductsTokenManagement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**subscription_information** | [**PaymentProductsPayerAuthenticationSubscriptionInformation**](PaymentProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
6+
**subscription_information** | [**PaymentsProductsPayerAuthenticationSubscriptionInformation**](PaymentsProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
77
**configuration_information** | [**CommerceSolutionsProductsTokenManagementConfigurationInformation**](CommerceSolutionsProductsTokenManagementConfigurationInformation.md) | | [optional]
88

99

docs/CreateNewWebhooksApi.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ All URIs are relative to *https://apitest.cybersource.com*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**create_webhook**](CreateNewWebhooksApi.md#create_webhook) | **POST** /notification-subscriptions/v1/webhooks | Create a Webhook
8-
[**find_product_to_subscribe**](CreateNewWebhooksApi.md#find_product_to_subscribe) | **GET** /notification-subscriptions/v1/products/{organizationId} | Find Products You Can Subscribe To
7+
[**create_webhook_subscription**](CreateNewWebhooksApi.md#create_webhook_subscription) | **POST** /notification-subscriptions/v1/webhooks | Create a Webhook
8+
[**find_products_to_subscribe**](CreateNewWebhooksApi.md#find_products_to_subscribe) | **GET** /notification-subscriptions/v1/products/{organizationId} | Find Products You Can Subscribe To
99
[**save_sym_egress_key**](CreateNewWebhooksApi.md#save_sym_egress_key) | **POST** /kms/egress/v2/keys-sym | Create Webhook Security Keys
1010

1111

12-
# **create_webhook**
13-
> InlineResponse2013 create_webhook(opts)
12+
# **create_webhook_subscription**
13+
> InlineResponse2013 create_webhook_subscription(opts)
1414
1515
Create a Webhook
1616

@@ -24,23 +24,23 @@ require 'cybersource_rest_client'
2424
api_instance = CyberSource::CreateNewWebhooksApi.new
2525

2626
opts = {
27-
create_webhook: CyberSource::CreateWebhook.new # CreateWebhook | The webhook payload
27+
create_webhook_request: CyberSource::CreateWebhookRequest.new # CreateWebhookRequest | The webhook payload
2828
}
2929

3030
begin
3131
#Create a Webhook
32-
result = api_instance.create_webhook(opts)
32+
result = api_instance.create_webhook_subscription(opts)
3333
p result
3434
rescue CyberSource::ApiError => e
35-
puts "Exception when calling CreateNewWebhooksApi->create_webhook: #{e}"
35+
puts "Exception when calling CreateNewWebhooksApi->create_webhook_subscription: #{e}"
3636
end
3737
```
3838

3939
### Parameters
4040

4141
Name | Type | Description | Notes
4242
------------- | ------------- | ------------- | -------------
43-
**create_webhook** | [**CreateWebhook**](CreateWebhook.md)| The webhook payload | [optional]
43+
**create_webhook_request** | [**CreateWebhookRequest**](CreateWebhookRequest.md)| The webhook payload | [optional]
4444

4545
### Return type
4646

@@ -53,12 +53,12 @@ No authorization required
5353
### HTTP request headers
5454

5555
- **Content-Type**: application/json;charset=utf-8
56-
- **Accept**: application/hal+json;charset=utf-8
56+
- **Accept**: application/json;charset=utf-8
5757

5858

5959

60-
# **find_product_to_subscribe**
61-
> Array<InlineResponse2003> find_product_to_subscribe(organization_id)
60+
# **find_products_to_subscribe**
61+
> Array<InlineResponse2003> find_products_to_subscribe(organization_id)
6262
6363
Find Products You Can Subscribe To
6464

@@ -76,10 +76,10 @@ organization_id = "organization_id_example" # String | The Organization Identifi
7676

7777
begin
7878
#Find Products You Can Subscribe To
79-
result = api_instance.find_product_to_subscribe(organization_id)
79+
result = api_instance.find_products_to_subscribe(organization_id)
8080
p result
8181
rescue CyberSource::ApiError => e
82-
puts "Exception when calling CreateNewWebhooksApi->find_product_to_subscribe: #{e}"
82+
puts "Exception when calling CreateNewWebhooksApi->find_products_to_subscribe: #{e}"
8383
end
8484
```
8585

@@ -100,7 +100,7 @@ No authorization required
100100
### HTTP request headers
101101

102102
- **Content-Type**: application/json;charset=utf-8
103-
- **Accept**: application/hal+json;charset=utf-8
103+
- **Accept**: application/json;charset=utf-8
104104

105105

106106

@@ -156,7 +156,7 @@ No authorization required
156156
### HTTP request headers
157157

158158
- **Content-Type**: application/json;charset=utf-8
159-
- **Accept**: application/hal+json;charset=utf-8
159+
- **Accept**: application/json;charset=utf-8
160160

161161

162162

docs/CreateSearchRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**save** | **BOOLEAN** | Indicates whether or not you want to save this search request for future use. The options are: * `true` * `false` (default value) If set to `true`, this field returns `searchID` in the response. You can use this value to retrieve the details of the saved search. | [optional]
77
**name** | **String** | Name of this search. When `save` is set to `true`, this search is saved with this name. | [optional]
8-
**timezone** | **String** | Merchants time zone in ISO standard, using the TZ database format. For example: `America/Chicago` | [optional]
8+
**timezone** | **String** | Merchant's time zone in ISO standard, using the TZ database format. For example: `America/Chicago` | [optional]
99
**query** | **String** | String that contains the filters and variables for which you want to search. For information about supported field-filters and operators, see the [Query Filters]( https://developer.cybersource.com/api/developer-guides/dita-txn-search-details-rest-api-dev-guide-102718/txn-search-intro/txn-filtering.html) section of the Transaction Search Developer Guide. | [optional]
1010
**offset** | **Integer** | Controls the starting point within the collection of results, which defaults to 0. The first item in the collection is retrieved by setting a zero offset. For example, if you have a collection of 15 items to be retrieved from a resource and you specify limit=5, you can retrieve the entire set of results in 3 successive requests by varying the offset value like this: `offset=0` `offset=5` `offset=10` **Note:** If an offset larger than the number of results is provided, this will result in no embedded object being returned. | [optional]
1111
**limit** | **Integer** | Controls the maximum number of items that may be returned for a single request. The default is 20, the maximum is 2500. | [optional]

docs/CreateWebhook.md renamed to docs/CreateWebhookRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CyberSource::CreateWebhook
1+
# CyberSource::CreateWebhookRequest
22

33
## Properties
44
Name | Type | Description | Notes

docs/GetAllSubscriptionsResponseOrderInformationBillTo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**first_name** | **String** | Customers first name. | [optional]
7-
**last_name** | **String** | Customers last name. | [optional]
6+
**first_name** | **String** | Customer's first name. | [optional]
7+
**last_name** | **String** | Customer's last name. | [optional]
88

99

docs/InvoicingV2InvoicesAllGet200ResponseCustomerInformation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**name** | **String** | Payer name for the invoice. | [optional]
7-
**merchant_customer_id** | **String** | Your identifier for the customer. When a subscription or customer profile is being created, the maximum length for this field for most processors is 30. Otherwise, the maximum length is 100. #### Comercio Latino For recurring payments in Mexico, the value is the customer’s contract number. Note Before you request the authorization, you must inform the issuer of the customer contract numbers that will be used for recurring transactions. #### Worldpay VAP For a follow-on credit with Worldpay VAP, CyberSource checks the following locations, in the order given, for a customer account ID value and uses the first value it finds: 1. `customer_account_id` value in the follow-on credit request 2. Customer account ID value that was used for the capture that is being credited 3. Customer account ID value that was used for the original authorization If a customer account ID value cannot be found in any of these locations, then no value is used. For processor-specific information, see the `customer_account_id` field description in [Credit Card Services Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html) | [optional]
7+
**merchant_customer_id** | **String** | Your identifier for the customer. When a subscription or customer profile is being created, the maximum length for this field for most processors is 30. Otherwise, the maximum length is 100. #### Comercio Latino For recurring payments in Mexico, the value is the customer's contract number. Note Before you request the authorization, you must inform the issuer of the customer contract numbers that will be used for recurring transactions. #### Worldpay VAP For a follow-on credit with Worldpay VAP, CyberSource checks the following locations, in the order given, for a customer account ID value and uses the first value it finds: 1. `customer_account_id` value in the follow-on credit request 2. Customer account ID value that was used for the capture that is being credited 3. Customer account ID value that was used for the original authorization If a customer account ID value cannot be found in any of these locations, then no value is used. For processor-specific information, see the `customer_account_id` field description in [Credit Card Services Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html) | [optional]
88

99

0 commit comments

Comments
 (0)