Skip to content

Commit 449eeca

Browse files
author
Fast Reports
committed
sync 2023-10-19
1 parent 44f64ab commit 449eeca

File tree

687 files changed

+92658
-25191
lines changed

Some content is hidden

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

687 files changed

+92658
-25191
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ composer.phar
99

1010
# php-cs-fixer cache
1111
.php_cs.cache
12+
.php-cs-fixer.cache
1213

1314
# PHPUnit cache
1415
.phpunit.result.cache

.openapi-generator/FILES

+166-19
Large diffs are not rendered by default.

.openapi-generator/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.1
1+
6.4.0

.php-cs-fixer.dist.php

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php
2+
3+
/**
4+
* @generated
5+
* @link https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/HEAD/doc/config.rst
6+
*/
7+
$finder = PhpCsFixer\Finder::create()
8+
->in(__DIR__)
9+
->exclude('vendor')
10+
->exclude('test')
11+
->exclude('tests')
12+
;
13+
14+
$config = new PhpCsFixer\Config();
15+
return $config->setRules([
16+
'@PSR12' => true,
17+
'phpdoc_order' => true,
18+
'array_syntax' => [ 'syntax' => 'short' ],
19+
'strict_comparison' => true,
20+
'strict_param' => true,
21+
'no_trailing_whitespace' => false,
22+
'no_trailing_whitespace_in_comment' => false,
23+
'braces' => false,
24+
'single_blank_line_at_eof' => false,
25+
'blank_line_after_namespace' => false,
26+
'no_leading_import_slash' => false,
27+
])
28+
->setFinder($finder)
29+
;

.php_cs

-23
This file was deleted.

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ language: php
33
# https://docs.travis-ci.com/user/reference/bionic/#php-support
44
dist: bionic
55
php:
6-
- 7.2
7-
- 7.3
86
- 7.4
97
before_install: "composer install"
108
script: "vendor/bin/phpunit"

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Fast Reports Inc.
3+
Copyright (c) 2023 Fast Reports Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+123-16
Large diffs are not rendered by default.

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"name": "fastreports/FastReport-Cloud-PHP",
32
"description": "No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)",
43
"keywords": [
54
"openapitools",
@@ -19,15 +18,16 @@
1918
}
2019
],
2120
"require": {
22-
"php": ">=7.2",
21+
"php": "^7.4 || ^8.0",
2322
"ext-curl": "*",
2423
"ext-json": "*",
2524
"ext-mbstring": "*",
26-
"guzzlehttp/guzzle": "^6.2"
25+
"guzzlehttp/guzzle": "^7.3",
26+
"guzzlehttp/psr7": "^1.7 || ^2.0"
2727
},
2828
"require-dev": {
2929
"phpunit/phpunit": "^8.0 || ^9.0",
30-
"friendsofphp/php-cs-fixer": "^2.12"
30+
"friendsofphp/php-cs-fixer": "^3.5"
3131
},
3232
"autoload": {
3333
"psr-4": { "OpenAPI\\Client\\" : "lib/" }

docs/Api/ApiKeysApi.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# OpenAPI\Client\ApiKeysApi
22

3-
All URIs are relative to http://localhost.
3+
All URIs are relative to http://localhost, except if the operation defines another base path.
44

5-
Method | HTTP request | Description
6-
------------- | ------------- | -------------
7-
[**apiKeysCreateApiKey()**](ApiKeysApi.md#apiKeysCreateApiKey) | **POST** /api/manage/v1/ApiKeys | Create a new apikey, 5 apikeys for user. Hardcoded for ddos.
8-
[**apiKeysDeleteApiKey()**](ApiKeysApi.md#apiKeysDeleteApiKey) | **DELETE** /api/manage/v1/ApiKeys | Delete an apikey
9-
[**apiKeysGetApiKeys()**](ApiKeysApi.md#apiKeysGetApiKeys) | **GET** /api/manage/v1/ApiKeys | Returns list with all api keys of current user
5+
| Method | HTTP request | Description |
6+
| ------------- | ------------- | ------------- |
7+
| [**apiKeysCreateApiKey()**](ApiKeysApi.md#apiKeysCreateApiKey) | **POST** /api/manage/v1/ApiKeys | Create a new apikey, 5 apikeys for user. Hardcoded for ddos. |
8+
| [**apiKeysDeleteApiKey()**](ApiKeysApi.md#apiKeysDeleteApiKey) | **DELETE** /api/manage/v1/ApiKeys | Delete an apikey |
9+
| [**apiKeysGetApiKeys()**](ApiKeysApi.md#apiKeysGetApiKeys) | **GET** /api/manage/v1/ApiKeys | Returns list with all api keys of current user |
1010

1111

1212
## `apiKeysCreateApiKey()`
@@ -51,9 +51,9 @@ try {
5151

5252
### Parameters
5353

54-
Name | Type | Description | Notes
55-
------------- | ------------- | ------------- | -------------
56-
**create_api_key_vm** | [**\OpenAPI\Client\cloud\fastreport\model\CreateApiKeyVM**](../Model/CreateApiKeyVM.md)| |
54+
| Name | Type | Description | Notes |
55+
| ------------- | ------------- | ------------- | ------------- |
56+
| **create_api_key_vm** | [**\OpenAPI\Client\cloud\fastreport\model\CreateApiKeyVM**](../Model/CreateApiKeyVM.md)| | |
5757

5858
### Return type
5959

@@ -65,7 +65,7 @@ Name | Type | Description | Notes
6565

6666
### HTTP request headers
6767

68-
- **Content-Type**: `application/json`, `text/json`, `application/_*+json`
68+
- **Content-Type**: `application/json`, `text/json`, `application/*+json`
6969
- **Accept**: `application/json`
7070

7171
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
@@ -113,9 +113,9 @@ try {
113113

114114
### Parameters
115115

116-
Name | Type | Description | Notes
117-
------------- | ------------- | ------------- | -------------
118-
**delete_api_key_vm** | [**\OpenAPI\Client\cloud\fastreport\model\DeleteApiKeyVM**](../Model/DeleteApiKeyVM.md)| |
116+
| Name | Type | Description | Notes |
117+
| ------------- | ------------- | ------------- | ------------- |
118+
| **delete_api_key_vm** | [**\OpenAPI\Client\cloud\fastreport\model\DeleteApiKeyVM**](../Model/DeleteApiKeyVM.md)| | |
119119

120120
### Return type
121121

@@ -127,7 +127,7 @@ void (empty response body)
127127

128128
### HTTP request headers
129129

130-
- **Content-Type**: `application/json`, `text/json`, `application/_*+json`
130+
- **Content-Type**: `application/json`, `text/json`, `application/*+json`
131131
- **Accept**: `application/json`
132132

133133
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)

docs/Api/ConfigurationApi.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# OpenAPI\Client\ConfigurationApi
22

3-
All URIs are relative to http://localhost.
3+
All URIs are relative to http://localhost, except if the operation defines another base path.
44

5-
Method | HTTP request | Description
6-
------------- | ------------- | -------------
7-
[**configurationGet()**](ConfigurationApi.md#configurationGet) | **GET** /api/v1/Configuration | returns information about server configuration
5+
| Method | HTTP request | Description |
6+
| ------------- | ------------- | ------------- |
7+
| [**configurationGet()**](ConfigurationApi.md#configurationGet) | **GET** /api/v1/Configuration | returns information about server configuration |
88

99

1010
## `configurationGet()`

0 commit comments

Comments
 (0)