Skip to content

Commit 94f7624

Browse files
committed
update 1.1.2
1 parent 21f073e commit 94f7624

File tree

562 files changed

+856
-690
lines changed

Some content is hidden

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

562 files changed

+856
-690
lines changed

checkout-api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ info:
1111
license:
1212
name: MIT
1313
url: https://opensource.org/license/mit
14-
version: 1.1.1
14+
version: 1.1.2
1515
servers:
1616
- url: https://checkout.tebex.io/api
1717
tags:

sdks/csharp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You must receive prior authorisation before the Checkout API is enabled on your
66

77
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
88

9-
- API version: 1.1.0
9+
- API version: 1.1.2
1010
- SDK version: 1.0.0
1111
- Generator version: 7.5.0
1212
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen

sdks/csharp/TebexCheckout.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TebexCheckout", "src\TebexCheckout\TebexCheckout.csproj", "{F814D78A-39DA-4930-98D6-0F55E0B50B56}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TebexCheckout", "src\TebexCheckout\TebexCheckout.csproj", "{F97C8298-B248-4C0F-9D74-9F1A99126A80}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TebexCheckout.Test", "src\TebexCheckout.Test\TebexCheckout.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
88
EndProject
@@ -12,10 +12,10 @@ Global
1212
Release|Any CPU = Release|Any CPU
1313
EndGlobalSection
1414
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15-
{F814D78A-39DA-4930-98D6-0F55E0B50B56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{F814D78A-39DA-4930-98D6-0F55E0B50B56}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{F814D78A-39DA-4930-98D6-0F55E0B50B56}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{F814D78A-39DA-4930-98D6-0F55E0B50B56}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{F97C8298-B248-4C0F-9D74-9F1A99126A80}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{F97C8298-B248-4C0F-9D74-9F1A99126A80}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{F97C8298-B248-4C0F-9D74-9F1A99126A80}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{F97C8298-B248-4C0F-9D74-9F1A99126A80}.Release|Any CPU.Build.0 = Release|Any CPU
1919
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2020
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
2121
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU

sdks/csharp/api/openapi.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ info:
1111
url: https://opensource.org/license/mit
1212
termsOfService: https://tebex.io/terms-creator-agreement
1313
title: Tebex Checkout API
14-
version: 1.1.0
14+
version: 1.1.2
1515
servers:
1616
- url: https://checkout.tebex.io/api
1717
security:
@@ -1436,6 +1436,11 @@ components:
14361436
with another party. See more about creator codes at https://docs.tebex.io/creators/tebex-control-panel/engagement/creator-codes
14371437
type: string
14381438
example: null
1439+
ip:
1440+
description: The IP address of the customer using this basket. Provide the
1441+
IP if creating a basket on your server backend.
1442+
example: 127.0.0.1
1443+
type: string
14391444
type: object
14401445
BasketRow_meta_limits_user:
14411446
example:

sdks/csharp/docs/CreateBasketRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
1414
**CompleteAutoRedirect** | **bool** | Automatically redirect to the complete_url provided | [optional]
1515
**Country** | **string** | An ISO 3166-1 alpha-2 character code representing the customer's country. | [optional]
1616
**CreatorCode** | **string** | The creator code is used to share a percentage of the payment with another party. See more about creator codes at https://docs.tebex.io/creators/tebex-control-panel/engagement/creator-codes | [optional]
17+
**Ip** | **string** | The IP address of the customer using this basket. Provide the IP if creating a basket on your server backend. | [optional]
1718

1819
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1920

sdks/csharp/src/TebexCheckout.Test/Model/AddPackageRequestTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Checkout APIs are designed to allow our creators to use the Tebex Checkout flow and payment acceptance capabilities without the need to set up a Tebex-powered webstore. Using these APIs allows you to create baskets with custom products (as opposed to pre-created products on our webstore platform), and send customers directly to the checkout flow to proceed with payment options. You must receive prior authorisation before the Checkout API is enabled on your account. Please contact customer support or your account manager to discover if you qualify to use the Checkout API before beginning integration.
55
*
6-
* The version of the OpenAPI document: 1.1.0
6+
* The version of the OpenAPI document: 1.1.2
77
* Contact: [email protected]
88
* Generated by: https://github.com/openapitools/openapi-generator.git
99
*/

sdks/csharp/src/TebexCheckout.Test/Model/AddressTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Checkout APIs are designed to allow our creators to use the Tebex Checkout flow and payment acceptance capabilities without the need to set up a Tebex-powered webstore. Using these APIs allows you to create baskets with custom products (as opposed to pre-created products on our webstore platform), and send customers directly to the checkout flow to proceed with payment options. You must receive prior authorisation before the Checkout API is enabled on your account. Please contact customer support or your account manager to discover if you qualify to use the Checkout API before beginning integration.
55
*
6-
* The version of the OpenAPI document: 1.1.0
6+
* The version of the OpenAPI document: 1.1.2
77
* Contact: [email protected]
88
* Generated by: https://github.com/openapitools/openapi-generator.git
99
*/

sdks/csharp/src/TebexCheckout.Test/Model/BasketItemTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Checkout APIs are designed to allow our creators to use the Tebex Checkout flow and payment acceptance capabilities without the need to set up a Tebex-powered webstore. Using these APIs allows you to create baskets with custom products (as opposed to pre-created products on our webstore platform), and send customers directly to the checkout flow to proceed with payment options. You must receive prior authorisation before the Checkout API is enabled on your account. Please contact customer support or your account manager to discover if you qualify to use the Checkout API before beginning integration.
55
*
6-
* The version of the OpenAPI document: 1.1.0
6+
* The version of the OpenAPI document: 1.1.2
77
* Contact: [email protected]
88
* Generated by: https://github.com/openapitools/openapi-generator.git
99
*/

sdks/csharp/src/TebexCheckout.Test/Model/BasketLinksTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Checkout APIs are designed to allow our creators to use the Tebex Checkout flow and payment acceptance capabilities without the need to set up a Tebex-powered webstore. Using these APIs allows you to create baskets with custom products (as opposed to pre-created products on our webstore platform), and send customers directly to the checkout flow to proceed with payment options. You must receive prior authorisation before the Checkout API is enabled on your account. Please contact customer support or your account manager to discover if you qualify to use the Checkout API before beginning integration.
55
*
6-
* The version of the OpenAPI document: 1.1.0
6+
* The version of the OpenAPI document: 1.1.2
77
* Contact: [email protected]
88
* Generated by: https://github.com/openapitools/openapi-generator.git
99
*/

sdks/csharp/src/TebexCheckout.Test/Model/BasketRowMetaLimitsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Checkout APIs are designed to allow our creators to use the Tebex Checkout flow and payment acceptance capabilities without the need to set up a Tebex-powered webstore. Using these APIs allows you to create baskets with custom products (as opposed to pre-created products on our webstore platform), and send customers directly to the checkout flow to proceed with payment options. You must receive prior authorisation before the Checkout API is enabled on your account. Please contact customer support or your account manager to discover if you qualify to use the Checkout API before beginning integration.
55
*
6-
* The version of the OpenAPI document: 1.1.0
6+
* The version of the OpenAPI document: 1.1.2
77
* Contact: [email protected]
88
* Generated by: https://github.com/openapitools/openapi-generator.git
99
*/

0 commit comments

Comments
 (0)