Skip to content

Commit

Permalink
v2.1.600
Browse files Browse the repository at this point in the history
  • Loading branch information
johnturnham committed Feb 22, 2024
1 parent b5d3019 commit d420a74
Show file tree
Hide file tree
Showing 776 changed files with 149,222 additions and 30,212 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ composer.phar

# php-cs-fixer cache
.php_cs.cache
.php-cs-fixer.cache

# PHPUnit cache
.phpunit.result.cache
295 changes: 196 additions & 99 deletions .openapi-generator/FILES

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.4.0
7.3.0
29 changes: 29 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

/**
* @generated
* @link https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/HEAD/doc/config.rst
*/
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('vendor')
->exclude('test')
->exclude('tests')
;

$config = new PhpCsFixer\Config();
return $config->setRules([
'@PSR12' => true,
'phpdoc_order' => true,
'array_syntax' => [ 'syntax' => 'short' ],
'strict_comparison' => true,
'strict_param' => true,
'no_trailing_whitespace' => false,
'no_trailing_whitespace_in_comment' => false,
'braces' => false,
'single_blank_line_at_eof' => false,
'blank_line_after_namespace' => false,
'no_leading_import_slash' => false,
])
->setFinder($finder)
;
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: php
# https://docs.travis-ci.com/user/reference/bionic/#php-support
dist: bionic
php:
- 7.3
- 7.4
before_install: "composer install"
script: "vendor/bin/phpunit"
128 changes: 75 additions & 53 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"description": "OpenAPI compliant library to access resources on the Wallet Platform", "keywords": ["openapitools", "php", "sdk", "wallet-sdk", "wallet-api"], "homepage": "https://github.com/WalletInc/sdk-php", "license": "unlicense", "authors": [{"name": "John Turnham", "email": "john.turnham@wallet.inc", "role": "CTO"}, {"name": "Pratheek Adidela", "email": "pratheek.adidela@wallet.inc", "role": "Developer"}], "require": {"php": "^7.3 || ^8.0", "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", "guzzlehttp/guzzle": "^7.3", "guzzlehttp/psr7": "^1.7 || ^2.0"}, "require-dev": {"phpunit/phpunit": "^8.0 || ^9.0", "friendsofphp/php-cs-fixer": "^2.12"}, "autoload": {"psr-4": {"OpenAPI\\Client\\": "lib/"}}, "autoload-dev": {"psr-4": {"OpenAPI\\Client\\Test\\": "test/"}}, "name": "wallet/wallet", "type": "wallet-api-plugin", "prefer-stable": true, "minimum-stability": "dev", "config": {"platform": {"php": "7.4.24"}}, "version": "2.1.600"}
{"description": "OpenAPI compliant library to access resources on the Wallet Platform", "keywords": ["openapitools", "php", "sdk", "wallet-sdk", "wallet-api"], "homepage": "https://github.com/WalletInc/sdk-php", "license": "unlicense", "authors": [{"name": "John Turnham", "email": "john.turnham@wallet.inc", "role": "CTO"}, {"name": "Pratheek Adidela", "email": "pratheek.adidela@wallet.inc", "role": "Developer"}], "require": {"php": "^7.4 || ^8.0", "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", "guzzlehttp/guzzle": "^7.3", "guzzlehttp/psr7": "^1.7 || ^2.0"}, "require-dev": {"phpunit/phpunit": "^8.0 || ^9.0", "friendsofphp/php-cs-fixer": "^3.5"}, "autoload": {"psr-4": {"OpenAPI\\Client\\": "lib/"}}, "autoload-dev": {"psr-4": {"OpenAPI\\Client\\Test\\": "test/"}}, "name": "wallet/wallet", "type": "wallet-api-plugin", "prefer-stable": true, "minimum-stability": "dev", "config": {"platform": {"php": "7.4.24"}}, "version": "2.1.600"}
28 changes: 14 additions & 14 deletions docs/Api/A2PApi.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# OpenAPI\Client\A2PApi

All URIs are relative to https://api.wall.et.
All URIs are relative to https://api.wall.et, except if the operation defines another base path.

Method | HTTP request | Description
------------- | ------------- | -------------
[**beginA2PApplication()**](A2PApi.md#beginA2PApplication) | **POST** /v2/a2p/application | Create A2P Application
[**fetchA2PApplication()**](A2PApi.md#fetchA2PApplication) | **GET** /v2/a2p/application | Fetch A2P Application
[**fetchA2PRegistration()**](A2PApi.md#fetchA2PRegistration) | **GET** /v2/a2p/registration | Fetch A2P Registration
[**updateA2PApplication()**](A2PApi.md#updateA2PApplication) | **PUT** /v2/a2p/application/{applicationID} | Update A2P Application
| Method | HTTP request | Description |
| ------------- | ------------- | ------------- |
| [**beginA2PApplication()**](A2PApi.md#beginA2PApplication) | **POST** /v2/a2p/application | Create A2P Application |
| [**fetchA2PApplication()**](A2PApi.md#fetchA2PApplication) | **GET** /v2/a2p/application | Fetch A2P Application |
| [**fetchA2PRegistration()**](A2PApi.md#fetchA2PRegistration) | **GET** /v2/a2p/registration | Fetch A2P Registration |
| [**updateA2PApplication()**](A2PApi.md#updateA2PApplication) | **PUT** /v2/a2p/application/{applicationID} | Update A2P Application |


## `beginA2PApplication()`
Expand Down Expand Up @@ -43,9 +43,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**a2_p_application_submission** | [**\OpenAPI\Client\Model\A2PApplicationSubmission**](../Model/A2PApplicationSubmission.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **a2_p_application_submission** | [**\OpenAPI\Client\Model\A2PApplicationSubmission**](../Model/A2PApplicationSubmission.md)| | |

### Return type

Expand Down Expand Up @@ -200,10 +200,10 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**application_id** | **string**| |
**wta2_p_application_update_params** | [**\OpenAPI\Client\Model\WTA2PApplicationUpdateParams**](../Model/WTA2PApplicationUpdateParams.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **application_id** | **string**| | |
| **wta2_p_application_update_params** | [**\OpenAPI\Client\Model\WTA2PApplicationUpdateParams**](../Model/WTA2PApplicationUpdateParams.md)| | |

### Return type

Expand Down
64 changes: 32 additions & 32 deletions docs/Api/AdvertisementCreditsApi.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# OpenAPI\Client\AdvertisementCreditsApi

All URIs are relative to https://api.wall.et.
All URIs are relative to https://api.wall.et, except if the operation defines another base path.

Method | HTTP request | Description
------------- | ------------- | -------------
[**archiveAdvertisementCredit()**](AdvertisementCreditsApi.md#archiveAdvertisementCredit) | **DELETE** /v2/payment/advertisementCredit/{id} | Archive ad credit
[**createAdvertisementCredit()**](AdvertisementCreditsApi.md#createAdvertisementCredit) | **POST** /v2/payment/advertisementCredit | Create ad credit
[**fetchAdvertisementCreditById()**](AdvertisementCreditsApi.md#fetchAdvertisementCreditById) | **GET** /v2/payment/advertisementCredit/{id} | Fetch ad credit
[**fetchAdvertisementCreditScans()**](AdvertisementCreditsApi.md#fetchAdvertisementCreditScans) | **GET** /v2/payment/advertisementCredit/scans/{id} | Fetch scans
[**fetchAllAdvertisementCredits()**](AdvertisementCreditsApi.md#fetchAllAdvertisementCredits) | **GET** /v2/payment/advertisementCredit/all | Fetch all active ad credits
[**restoreAdvertisementCredit()**](AdvertisementCreditsApi.md#restoreAdvertisementCredit) | **PATCH** /v2/payment/advertisementCredit/{id} | Restore ad credit
[**updateAdvertisementCredit()**](AdvertisementCreditsApi.md#updateAdvertisementCredit) | **PUT** /v2/payment/advertisementCredit/{id} | Update ad credit
| Method | HTTP request | Description |
| ------------- | ------------- | ------------- |
| [**archiveAdvertisementCredit()**](AdvertisementCreditsApi.md#archiveAdvertisementCredit) | **DELETE** /v2/payment/advertisementCredit/{id} | Archive ad credit |
| [**createAdvertisementCredit()**](AdvertisementCreditsApi.md#createAdvertisementCredit) | **POST** /v2/payment/advertisementCredit | Create ad credit |
| [**fetchAdvertisementCreditById()**](AdvertisementCreditsApi.md#fetchAdvertisementCreditById) | **GET** /v2/payment/advertisementCredit/{id} | Fetch ad credit |
| [**fetchAdvertisementCreditScans()**](AdvertisementCreditsApi.md#fetchAdvertisementCreditScans) | **GET** /v2/payment/advertisementCredit/scans/{id} | Fetch scans |
| [**fetchAllAdvertisementCredits()**](AdvertisementCreditsApi.md#fetchAllAdvertisementCredits) | **GET** /v2/payment/advertisementCredit/all | Fetch all active ad credits |
| [**restoreAdvertisementCredit()**](AdvertisementCreditsApi.md#restoreAdvertisementCredit) | **PATCH** /v2/payment/advertisementCredit/{id} | Restore ad credit |
| [**updateAdvertisementCredit()**](AdvertisementCreditsApi.md#updateAdvertisementCredit) | **PUT** /v2/payment/advertisementCredit/{id} | Update ad credit |


## `archiveAdvertisementCredit()`
Expand Down Expand Up @@ -46,9 +46,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | [**mixed**](../Model/.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **id** | [**mixed**](../Model/.md)| | |

### Return type

Expand Down Expand Up @@ -100,9 +100,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**wt_advertisement_credit_create_params** | [**\OpenAPI\Client\Model\WTAdvertisementCreditCreateParams**](../Model/WTAdvertisementCreditCreateParams.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **wt_advertisement_credit_create_params** | [**\OpenAPI\Client\Model\WTAdvertisementCreditCreateParams**](../Model/WTAdvertisementCreditCreateParams.md)| | |

### Return type

Expand Down Expand Up @@ -154,9 +154,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | [**mixed**](../Model/.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **id** | [**mixed**](../Model/.md)| | |

### Return type

Expand Down Expand Up @@ -208,9 +208,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | [**mixed**](../Model/.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **id** | [**mixed**](../Model/.md)| | |

### Return type

Expand Down Expand Up @@ -262,9 +262,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**is_archive_included** | **bool**| | [optional]
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **is_archive_included** | **bool**| | [optional] |

### Return type

Expand Down Expand Up @@ -316,9 +316,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | [**mixed**](../Model/.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **id** | [**mixed**](../Model/.md)| | |

### Return type

Expand Down Expand Up @@ -371,10 +371,10 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | [**mixed**](../Model/.md)| |
**wt_advertisement_credit_update_params** | [**\OpenAPI\Client\Model\WTAdvertisementCreditUpdateParams**](../Model/WTAdvertisementCreditUpdateParams.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **id** | [**mixed**](../Model/.md)| | |
| **wt_advertisement_credit_update_params** | [**\OpenAPI\Client\Model\WTAdvertisementCreditUpdateParams**](../Model/WTAdvertisementCreditUpdateParams.md)| | |

### Return type

Expand Down
48 changes: 24 additions & 24 deletions docs/Api/AmenitiesApi.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# OpenAPI\Client\AmenitiesApi

All URIs are relative to https://api.wall.et.
All URIs are relative to https://api.wall.et, except if the operation defines another base path.

Method | HTTP request | Description
------------- | ------------- | -------------
[**archiveAmenity()**](AmenitiesApi.md#archiveAmenity) | **DELETE** /v2/amenities/{id} | Archive amenity
[**createAmenity()**](AmenitiesApi.md#createAmenity) | **POST** /v2/amenities | Create amenity
[**fetchAllAmenities()**](AmenitiesApi.md#fetchAllAmenities) | **GET** /v2/amenities/all | Fetch all amenities
[**restoreAmenity()**](AmenitiesApi.md#restoreAmenity) | **PATCH** /v2/amenities/{id} | Restore amenity
[**updateAmenity()**](AmenitiesApi.md#updateAmenity) | **PUT** /v2/amenities/{id} | Update amenity
| Method | HTTP request | Description |
| ------------- | ------------- | ------------- |
| [**archiveAmenity()**](AmenitiesApi.md#archiveAmenity) | **DELETE** /v2/amenities/{id} | Archive amenity |
| [**createAmenity()**](AmenitiesApi.md#createAmenity) | **POST** /v2/amenities | Create amenity |
| [**fetchAllAmenities()**](AmenitiesApi.md#fetchAllAmenities) | **GET** /v2/amenities/all | Fetch all amenities |
| [**restoreAmenity()**](AmenitiesApi.md#restoreAmenity) | **PATCH** /v2/amenities/{id} | Restore amenity |
| [**updateAmenity()**](AmenitiesApi.md#updateAmenity) | **PUT** /v2/amenities/{id} | Update amenity |


## `archiveAmenity()`
Expand Down Expand Up @@ -44,9 +44,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | [**mixed**](../Model/.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **id** | [**mixed**](../Model/.md)| | |

### Return type

Expand Down Expand Up @@ -98,9 +98,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**wt_amenity_create_params** | [**\OpenAPI\Client\Model\WTAmenityCreateParams**](../Model/WTAmenityCreateParams.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **wt_amenity_create_params** | [**\OpenAPI\Client\Model\WTAmenityCreateParams**](../Model/WTAmenityCreateParams.md)| | |

### Return type

Expand Down Expand Up @@ -152,9 +152,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**is_archive_included** | **bool**| | [optional]
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **is_archive_included** | **bool**| | [optional] |

### Return type

Expand Down Expand Up @@ -206,9 +206,9 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | [**mixed**](../Model/.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **id** | [**mixed**](../Model/.md)| | |

### Return type

Expand Down Expand Up @@ -261,10 +261,10 @@ try {

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | [**mixed**](../Model/.md)| |
**wt_amenity_update_params** | [**\OpenAPI\Client\Model\WTAmenityUpdateParams**](../Model/WTAmenityUpdateParams.md)| |
| Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- |
| **id** | [**mixed**](../Model/.md)| | |
| **wt_amenity_update_params** | [**\OpenAPI\Client\Model\WTAmenityUpdateParams**](../Model/WTAmenityUpdateParams.md)| | |

### Return type

Expand Down

0 comments on commit d420a74

Please sign in to comment.