Skip to content

Commit 942da32

Browse files
committed
Auto-generate wrapper from updated spec
1 parent 667bfc6 commit 942da32

3 files changed

Lines changed: 0 additions & 744 deletions

File tree

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@ Class | Method | HTTP request | Description
9292
*ResourcesBuyerApi* | [**getV2ResourcesBuyerLatest**](docs/Api/ResourcesBuyerApi.md#getv2resourcesbuyerlatest) | **GET** /v2/resources/buyer/latest | Fetches the latest versions & license information
9393
*ResourcesCreatorApi* | [**getV2ResourcesCreatorAddons**](docs/Api/ResourcesCreatorApi.md#getv2resourcescreatoraddons) | **GET** /v2/resources/creator/addons | Fetch a list of your resources' addons
9494
*ResourcesCreatorApi* | [**getV2ResourcesCreatorBatch**](docs/Api/ResourcesCreatorApi.md#getv2resourcescreatorbatch) | **GET** /v2/resources/creator/batch | Fetch a list of your batches edits
95-
*ResourcesCreatorApi* | [**getV2ResourcesCreatorBundles**](docs/Api/ResourcesCreatorApi.md#getv2resourcescreatorbundles) | **GET** /v2/resources/creator/bundles | Fetch a list of your bundles
96-
*ResourcesCreatorApi* | [**getV2ResourcesCreatorBundlesEntries**](docs/Api/ResourcesCreatorApi.md#getv2resourcescreatorbundlesentries) | **GET** /v2/resources/creator/bundles/entries | Fetch a list of your bundle entries
9795
*ResourcesCreatorApi* | [**getV2ResourcesCreatorCoupons**](docs/Api/ResourcesCreatorApi.md#getv2resourcescreatorcoupons) | **GET** /v2/resources/creator/coupons | Fetch a list of your coupons
9896
*ResourcesCreatorApi* | [**getV2ResourcesCreatorCouponsEntries**](docs/Api/ResourcesCreatorApi.md#getv2resourcescreatorcouponsentries) | **GET** /v2/resources/creator/coupons/entries | Fetch a list of your coupon entries
9997
*ResourcesCreatorApi* | [**getV2ResourcesCreatorLicenses**](docs/Api/ResourcesCreatorApi.md#getv2resourcescreatorlicenses) | **GET** /v2/resources/creator/licenses | Fetch a list of your resources' licenses

docs/Api/ResourcesCreatorApi.md

Lines changed: 0 additions & 122 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ All URIs are relative to https://api.builtbybit.com, except if the operation def
66
| ------------- | ------------- | ------------- |
77
| [**getV2ResourcesCreatorAddons()**](ResourcesCreatorApi.md#getV2ResourcesCreatorAddons) | **GET** /v2/resources/creator/addons | Fetch a list of your resources' addons |
88
| [**getV2ResourcesCreatorBatch()**](ResourcesCreatorApi.md#getV2ResourcesCreatorBatch) | **GET** /v2/resources/creator/batch | Fetch a list of your batches edits |
9-
| [**getV2ResourcesCreatorBundles()**](ResourcesCreatorApi.md#getV2ResourcesCreatorBundles) | **GET** /v2/resources/creator/bundles | Fetch a list of your bundles |
10-
| [**getV2ResourcesCreatorBundlesEntries()**](ResourcesCreatorApi.md#getV2ResourcesCreatorBundlesEntries) | **GET** /v2/resources/creator/bundles/entries | Fetch a list of your bundle entries |
119
| [**getV2ResourcesCreatorCoupons()**](ResourcesCreatorApi.md#getV2ResourcesCreatorCoupons) | **GET** /v2/resources/creator/coupons | Fetch a list of your coupons |
1210
| [**getV2ResourcesCreatorCouponsEntries()**](ResourcesCreatorApi.md#getV2ResourcesCreatorCouponsEntries) | **GET** /v2/resources/creator/coupons/entries | Fetch a list of your coupon entries |
1311
| [**getV2ResourcesCreatorLicenses()**](ResourcesCreatorApi.md#getV2ResourcesCreatorLicenses) | **GET** /v2/resources/creator/licenses | Fetch a list of your resources' licenses |
@@ -144,126 +142,6 @@ try {
144142
[[Back to Model list]](../../README.md#models)
145143
[[Back to README]](../../README.md)
146144

147-
## `getV2ResourcesCreatorBundles()`
148-
149-
```php
150-
getV2ResourcesCreatorBundles($bundle_ids): \OpenAPI\Client\Model\GetV2ResourcesCreatorBundles200Response
151-
```
152-
153-
Fetch a list of your bundles
154-
155-
### Example
156-
157-
```php
158-
<?php
159-
require_once(__DIR__ . '/vendor/autoload.php');
160-
161-
162-
// Configure API key authorization: token
163-
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
164-
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
165-
// $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
166-
167-
168-
$apiInstance = new OpenAPI\Client\Api\ResourcesCreatorApi(
169-
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
170-
// This is optional, `GuzzleHttp\Client` will be used as default.
171-
new GuzzleHttp\Client(),
172-
$config
173-
);
174-
$bundle_ids = NULL; // array | A comma-separated list of bundle IDs to filter on. No filter is applied if empty.
175-
176-
try {
177-
$result = $apiInstance->getV2ResourcesCreatorBundles($bundle_ids);
178-
print_r($result);
179-
} catch (Exception $e) {
180-
echo 'Exception when calling ResourcesCreatorApi->getV2ResourcesCreatorBundles: ', $e->getMessage(), PHP_EOL;
181-
}
182-
```
183-
184-
### Parameters
185-
186-
| Name | Type | Description | Notes |
187-
| ------------- | ------------- | ------------- | ------------- |
188-
| **bundle_ids** | [**array**](../Model/.md)| A comma-separated list of bundle IDs to filter on. No filter is applied if empty. | [optional] |
189-
190-
### Return type
191-
192-
[**\OpenAPI\Client\Model\GetV2ResourcesCreatorBundles200Response**](../Model/GetV2ResourcesCreatorBundles200Response.md)
193-
194-
### Authorization
195-
196-
[token](../../README.md#token)
197-
198-
### HTTP request headers
199-
200-
- **Content-Type**: Not defined
201-
- **Accept**: `application/json`
202-
203-
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
204-
[[Back to Model list]](../../README.md#models)
205-
[[Back to README]](../../README.md)
206-
207-
## `getV2ResourcesCreatorBundlesEntries()`
208-
209-
```php
210-
getV2ResourcesCreatorBundlesEntries($bundle_ids): \OpenAPI\Client\Model\GetV2ResourcesCreatorBundlesEntries200Response
211-
```
212-
213-
Fetch a list of your bundle entries
214-
215-
### Example
216-
217-
```php
218-
<?php
219-
require_once(__DIR__ . '/vendor/autoload.php');
220-
221-
222-
// Configure API key authorization: token
223-
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
224-
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
225-
// $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
226-
227-
228-
$apiInstance = new OpenAPI\Client\Api\ResourcesCreatorApi(
229-
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
230-
// This is optional, `GuzzleHttp\Client` will be used as default.
231-
new GuzzleHttp\Client(),
232-
$config
233-
);
234-
$bundle_ids = NULL; // array | A comma-separated list of bundle IDs to filter on. No filter is applied if empty.
235-
236-
try {
237-
$result = $apiInstance->getV2ResourcesCreatorBundlesEntries($bundle_ids);
238-
print_r($result);
239-
} catch (Exception $e) {
240-
echo 'Exception when calling ResourcesCreatorApi->getV2ResourcesCreatorBundlesEntries: ', $e->getMessage(), PHP_EOL;
241-
}
242-
```
243-
244-
### Parameters
245-
246-
| Name | Type | Description | Notes |
247-
| ------------- | ------------- | ------------- | ------------- |
248-
| **bundle_ids** | [**array**](../Model/.md)| A comma-separated list of bundle IDs to filter on. No filter is applied if empty. | [optional] |
249-
250-
### Return type
251-
252-
[**\OpenAPI\Client\Model\GetV2ResourcesCreatorBundlesEntries200Response**](../Model/GetV2ResourcesCreatorBundlesEntries200Response.md)
253-
254-
### Authorization
255-
256-
[token](../../README.md#token)
257-
258-
### HTTP request headers
259-
260-
- **Content-Type**: Not defined
261-
- **Accept**: `application/json`
262-
263-
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
264-
[[Back to Model list]](../../README.md#models)
265-
[[Back to README]](../../README.md)
266-
267145
## `getV2ResourcesCreatorCoupons()`
268146

269147
```php

0 commit comments

Comments
 (0)