Skip to content

Commit 1cd8c58

Browse files
chore: sdk update
1 parent 0b6574a commit 1cd8c58

1,167 files changed

Lines changed: 2550 additions & 1233 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,10 @@ Class | Method | HTTP request | Description
238238
*HostingNodeJSApi* | [**get_node_js_build_logs_v1**](docs/HostingNodeJSApi.md#get_node_js_build_logs_v1) | **GET** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/{uuid}/logs | Get NodeJS build logs
239239
*HostingNodeJSApi* | [**get_node_js_build_settings_from_archive_v1**](docs/HostingNodeJSApi.md#get_node_js_build_settings_from_archive_v1) | **GET** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/settings/from-archive | Get Node.js build settings from archive
240240
*HostingNodeJSApi* | [**list_node_js_builds_v1**](docs/HostingNodeJSApi.md#list_node_js_builds_v1) | **GET** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds | List NodeJS builds
241+
*HostingNodeJSApi* | [**list_node_js_environment_variables_v1**](docs/HostingNodeJSApi.md#list_node_js_environment_variables_v1) | **GET** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/settings/env | List Node.js environment variables
241242
*HostingNodeJSApi* | [**list_node_js_vulnerabilities_v1**](docs/HostingNodeJSApi.md#list_node_js_vulnerabilities_v1) | **GET** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/vulnerabilities | List Node.js vulnerabilities
242243
*HostingNodeJSApi* | [**patch_node_js_vulnerabilities_v1**](docs/HostingNodeJSApi.md#patch_node_js_vulnerabilities_v1) | **POST** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/vulnerabilities/patch | Patch Node.js vulnerabilities
244+
*HostingNodeJSApi* | [**replace_node_js_environment_variables_v1**](docs/HostingNodeJSApi.md#replace_node_js_environment_variables_v1) | **PUT** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/settings/env | Replace Node.js environment variables
243245
*HostingNodeJSApi* | [**restart_node_js_application_v1**](docs/HostingNodeJSApi.md#restart_node_js_application_v1) | **POST** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/server/restart | Restart Node.js application
244246
*HostingNodeJSApi* | [**start_node_js_build_v1**](docs/HostingNodeJSApi.md#start_node_js_build_v1) | **POST** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds | Start Node.js build
245247
*HostingOrdersApi* | [**list_orders_v1**](docs/HostingOrdersApi.md#list_orders_v1) | **GET** /api/hosting/v1/orders | List orders
@@ -699,9 +701,12 @@ Class | Method | HTTP request | Description
699701
- [HostingV1NodeJsBuildResource](docs/HostingV1NodeJsBuildResource.md)
700702
- [HostingV1NodeJsBuildSettingsResource](docs/HostingV1NodeJsBuildSettingsResource.md)
701703
- [HostingV1NodeJsCreateFromArchiveRequest](docs/HostingV1NodeJsCreateFromArchiveRequest.md)
704+
- [HostingV1NodeJsEnvVarResource](docs/HostingV1NodeJsEnvVarResource.md)
702705
- [HostingV1NodeJsGetBuildSettingsRequest](docs/HostingV1NodeJsGetBuildSettingsRequest.md)
703706
- [HostingV1NodeJsPatchResultResource](docs/HostingV1NodeJsPatchResultResource.md)
704707
- [HostingV1NodeJsPatchVulnerabilitiesRequest](docs/HostingV1NodeJsPatchVulnerabilitiesRequest.md)
708+
- [HostingV1NodeJsSetBuildEnvVarsRequest](docs/HostingV1NodeJsSetBuildEnvVarsRequest.md)
709+
- [HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner](docs/HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner.md)
705710
- [HostingV1NodeJsSourceOptionsResource](docs/HostingV1NodeJsSourceOptionsResource.md)
706711
- [HostingV1NodeJsStartBuildRequest](docs/HostingV1NodeJsStartBuildRequest.md)
707712
- [HostingV1NodeJsStartBuildRequestSourceOptions](docs/HostingV1NodeJsStartBuildRequestSourceOptions.md)

docs/HostingNodeJSApi.md

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ Method | HTTP request | Description
77
[**get_node_js_build_logs_v1**](HostingNodeJSApi.md#get_node_js_build_logs_v1) | **GET** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/{uuid}/logs | Get NodeJS build logs
88
[**get_node_js_build_settings_from_archive_v1**](HostingNodeJSApi.md#get_node_js_build_settings_from_archive_v1) | **GET** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/settings/from-archive | Get Node.js build settings from archive
99
[**list_node_js_builds_v1**](HostingNodeJSApi.md#list_node_js_builds_v1) | **GET** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds | List NodeJS builds
10+
[**list_node_js_environment_variables_v1**](HostingNodeJSApi.md#list_node_js_environment_variables_v1) | **GET** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/settings/env | List Node.js environment variables
1011
[**list_node_js_vulnerabilities_v1**](HostingNodeJSApi.md#list_node_js_vulnerabilities_v1) | **GET** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/vulnerabilities | List Node.js vulnerabilities
1112
[**patch_node_js_vulnerabilities_v1**](HostingNodeJSApi.md#patch_node_js_vulnerabilities_v1) | **POST** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/vulnerabilities/patch | Patch Node.js vulnerabilities
13+
[**replace_node_js_environment_variables_v1**](HostingNodeJSApi.md#replace_node_js_environment_variables_v1) | **PUT** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/settings/env | Replace Node.js environment variables
1214
[**restart_node_js_application_v1**](HostingNodeJSApi.md#restart_node_js_application_v1) | **POST** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/server/restart | Restart Node.js application
1315
[**start_node_js_build_v1**](HostingNodeJSApi.md#start_node_js_build_v1) | **POST** /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds | Start Node.js build
1416

@@ -259,6 +261,85 @@ Name | Type | Description | Notes
259261

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

264+
# **list_node_js_environment_variables_v1**
265+
> List[HostingV1NodeJsEnvVarResource] list_node_js_environment_variables_v1(username, domain)
266+
267+
List Node.js environment variables
268+
269+
Lists the Node.js environment variables currently set for the website. Values are always
270+
masked as `********` and cannot be read back through this API. Use this endpoint to see
271+
which keys are configured or to verify a change, not to read values.
272+
273+
To change variables, use the `Replace Node.js environment variables` endpoint. It replaces
274+
the whole set, so never copy the masked values from this response into that request; send
275+
the full desired set with real values taken from the project `.env` file or the user
276+
prompt instead.
277+
278+
### Example
279+
280+
* Bearer Authentication (apiToken):
281+
282+
```python
283+
import hostinger_api
284+
from hostinger_api.models.hosting_v1_node_js_env_var_resource import HostingV1NodeJsEnvVarResource
285+
from hostinger_api.rest import ApiException
286+
from pprint import pprint
287+
288+
289+
# Configure Bearer authorization: apiToken
290+
configuration = hostinger_api.Configuration(
291+
access_token = os.environ["BEARER_TOKEN"]
292+
)
293+
294+
# Enter a context with an instance of the API client
295+
with hostinger_api.ApiClient(configuration) as api_client:
296+
# Create an instance of the API class
297+
api_instance = hostinger_api.HostingNodeJSApi(api_client)
298+
username = 'u123456789' # str |
299+
domain = 'mydomain.tld' # str | Domain name
300+
301+
try:
302+
# List Node.js environment variables
303+
api_response = api_instance.list_node_js_environment_variables_v1(username, domain)
304+
print("The response of HostingNodeJSApi->list_node_js_environment_variables_v1:\n")
305+
pprint(api_response)
306+
except Exception as e:
307+
print("Exception when calling HostingNodeJSApi->list_node_js_environment_variables_v1: %s\n" % e)
308+
```
309+
310+
311+
312+
### Parameters
313+
314+
315+
Name | Type | Description | Notes
316+
------------- | ------------- | ------------- | -------------
317+
**username** | **str**| |
318+
**domain** | **str**| Domain name |
319+
320+
### Return type
321+
322+
[**List[HostingV1NodeJsEnvVarResource]**](HostingV1NodeJsEnvVarResource.md)
323+
324+
### Authorization
325+
326+
[apiToken](../README.md#apiToken)
327+
328+
### HTTP request headers
329+
330+
- **Content-Type**: Not defined
331+
- **Accept**: application/json
332+
333+
### HTTP response details
334+
335+
| Status code | Description | Response headers |
336+
|-------------|-------------|------------------|
337+
**200** | Success response | - |
338+
**401** | Unauthenticated response | - |
339+
**500** | Error response | - |
340+
341+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
342+
262343
# **list_node_js_vulnerabilities_v1**
263344
> List[HostingV1NodeJsVulnerabilityResource] list_node_js_vulnerabilities_v1(username, domain, severities=severities)
264345
@@ -438,6 +519,95 @@ Name | Type | Description | Notes
438519

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

522+
# **replace_node_js_environment_variables_v1**
523+
> CommonSuccessEmptyResource replace_node_js_environment_variables_v1(username, domain, hosting_v1_node_js_set_build_env_vars_request)
524+
525+
Replace Node.js environment variables
526+
527+
Replaces the website's Node.js environment variables with the ones provided. This is a
528+
full replace: any variable not in the request is deleted, and sending an empty `env_vars`
529+
array deletes every variable. Saving writes the values and restarts the running Node.js
530+
process.
531+
532+
A restart is enough for apps that read environment variables at process start, such as
533+
Express or NestJS. It is not enough for frameworks that bake variables into the build.
534+
Next.js standalone is one of those: build-time values (including `NEXT_PUBLIC_*`) need a
535+
fresh build. After this call, use the `Start Node.js build` endpoint so those apps
536+
pick up the new values.
537+
538+
The `List Node.js environment variables` endpoint returns masked values (`********`), so
539+
never copy values from it into this request. Always send the full desired set with real
540+
values taken from the project `.env` file or the user prompt.
541+
542+
### Example
543+
544+
* Bearer Authentication (apiToken):
545+
546+
```python
547+
import hostinger_api
548+
from hostinger_api.models.common_success_empty_resource import CommonSuccessEmptyResource
549+
from hostinger_api.models.hosting_v1_node_js_set_build_env_vars_request import HostingV1NodeJsSetBuildEnvVarsRequest
550+
from hostinger_api.rest import ApiException
551+
from pprint import pprint
552+
553+
554+
# Configure Bearer authorization: apiToken
555+
configuration = hostinger_api.Configuration(
556+
access_token = os.environ["BEARER_TOKEN"]
557+
)
558+
559+
# Enter a context with an instance of the API client
560+
with hostinger_api.ApiClient(configuration) as api_client:
561+
# Create an instance of the API class
562+
api_instance = hostinger_api.HostingNodeJSApi(api_client)
563+
username = 'u123456789' # str |
564+
domain = 'mydomain.tld' # str | Domain name
565+
hosting_v1_node_js_set_build_env_vars_request = hostinger_api.HostingV1NodeJsSetBuildEnvVarsRequest() # HostingV1NodeJsSetBuildEnvVarsRequest |
566+
567+
try:
568+
# Replace Node.js environment variables
569+
api_response = api_instance.replace_node_js_environment_variables_v1(username, domain, hosting_v1_node_js_set_build_env_vars_request)
570+
print("The response of HostingNodeJSApi->replace_node_js_environment_variables_v1:\n")
571+
pprint(api_response)
572+
except Exception as e:
573+
print("Exception when calling HostingNodeJSApi->replace_node_js_environment_variables_v1: %s\n" % e)
574+
```
575+
576+
577+
578+
### Parameters
579+
580+
581+
Name | Type | Description | Notes
582+
------------- | ------------- | ------------- | -------------
583+
**username** | **str**| |
584+
**domain** | **str**| Domain name |
585+
**hosting_v1_node_js_set_build_env_vars_request** | [**HostingV1NodeJsSetBuildEnvVarsRequest**](HostingV1NodeJsSetBuildEnvVarsRequest.md)| |
586+
587+
### Return type
588+
589+
[**CommonSuccessEmptyResource**](CommonSuccessEmptyResource.md)
590+
591+
### Authorization
592+
593+
[apiToken](../README.md#apiToken)
594+
595+
### HTTP request headers
596+
597+
- **Content-Type**: application/json
598+
- **Accept**: application/json
599+
600+
### HTTP response details
601+
602+
| Status code | Description | Response headers |
603+
|-------------|-------------|------------------|
604+
**200** | Success empty response | - |
605+
**422** | Validation error response | - |
606+
**401** | Unauthenticated response | - |
607+
**500** | Error response | - |
608+
609+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
610+
441611
# **restart_node_js_application_v1**
442612
> CommonSuccessEmptyResource restart_node_js_application_v1(username, domain)
443613
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# HostingV1NodeJsEnvVarResource
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**key** | **str** | Environment variable name | [optional]
9+
**value** | **str** | Always the literal string ********. Real values cannot be read back through this API. | [optional]
10+
11+
## Example
12+
13+
```python
14+
from hostinger_api.models.hosting_v1_node_js_env_var_resource import HostingV1NodeJsEnvVarResource
15+
16+
# TODO update the JSON string below
17+
json = "{}"
18+
# create an instance of HostingV1NodeJsEnvVarResource from a JSON string
19+
hosting_v1_node_js_env_var_resource_instance = HostingV1NodeJsEnvVarResource.from_json(json)
20+
# print the JSON string representation of the object
21+
print(HostingV1NodeJsEnvVarResource.to_json())
22+
23+
# convert the object into a dict
24+
hosting_v1_node_js_env_var_resource_dict = hosting_v1_node_js_env_var_resource_instance.to_dict()
25+
# create an instance of HostingV1NodeJsEnvVarResource from a dict
26+
hosting_v1_node_js_env_var_resource_from_dict = HostingV1NodeJsEnvVarResource.from_dict(hosting_v1_node_js_env_var_resource_dict)
27+
```
28+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29+
30+
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# HostingV1NodeJsSetBuildEnvVarsRequest
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**env_vars** | [**List[HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner]**](HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner.md) | Environment variables to set. This is the full desired set: any variable not in this list is deleted, and an empty array deletes every variable. |
9+
10+
## Example
11+
12+
```python
13+
from hostinger_api.models.hosting_v1_node_js_set_build_env_vars_request import HostingV1NodeJsSetBuildEnvVarsRequest
14+
15+
# TODO update the JSON string below
16+
json = "{}"
17+
# create an instance of HostingV1NodeJsSetBuildEnvVarsRequest from a JSON string
18+
hosting_v1_node_js_set_build_env_vars_request_instance = HostingV1NodeJsSetBuildEnvVarsRequest.from_json(json)
19+
# print the JSON string representation of the object
20+
print(HostingV1NodeJsSetBuildEnvVarsRequest.to_json())
21+
22+
# convert the object into a dict
23+
hosting_v1_node_js_set_build_env_vars_request_dict = hosting_v1_node_js_set_build_env_vars_request_instance.to_dict()
24+
# create an instance of HostingV1NodeJsSetBuildEnvVarsRequest from a dict
25+
hosting_v1_node_js_set_build_env_vars_request_from_dict = HostingV1NodeJsSetBuildEnvVarsRequest.from_dict(hosting_v1_node_js_set_build_env_vars_request_dict)
26+
```
27+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28+
29+
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**key** | **str** | Environment variable name. Must start with an uppercase letter or underscore, followed by uppercase letters, digits or underscores. |
9+
**value** | **str** | Environment variable value. |
10+
11+
## Example
12+
13+
```python
14+
from hostinger_api.models.hosting_v1_node_js_set_build_env_vars_request_env_vars_inner import HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner
15+
16+
# TODO update the JSON string below
17+
json = "{}"
18+
# create an instance of HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner from a JSON string
19+
hosting_v1_node_js_set_build_env_vars_request_env_vars_inner_instance = HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner.from_json(json)
20+
# print the JSON string representation of the object
21+
print(HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner.to_json())
22+
23+
# convert the object into a dict
24+
hosting_v1_node_js_set_build_env_vars_request_env_vars_inner_dict = hosting_v1_node_js_set_build_env_vars_request_env_vars_inner_instance.to_dict()
25+
# create an instance of HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner from a dict
26+
hosting_v1_node_js_set_build_env_vars_request_env_vars_inner_from_dict = HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner.from_dict(hosting_v1_node_js_set_build_env_vars_request_env_vars_inner_dict)
27+
```
28+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29+
30+

hostinger_api/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"""
66
Hostinger API Python SDK
77
8-
API Version: 1.43.1
8+
API Version: 1.44.0
99
1010
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
1111
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api
1212
""" # noqa: E501
1313

1414

15-
__version__ = "3.41.0"
15+
__version__ = "3.42.0"
1616

1717
# import apis into sdk package
1818
from hostinger_api.api.agency_hosting_cache_api import AgencyHostingCacheApi
@@ -364,9 +364,12 @@
364364
from hostinger_api.models.hosting_v1_node_js_build_resource import HostingV1NodeJsBuildResource
365365
from hostinger_api.models.hosting_v1_node_js_build_settings_resource import HostingV1NodeJsBuildSettingsResource
366366
from hostinger_api.models.hosting_v1_node_js_create_from_archive_request import HostingV1NodeJsCreateFromArchiveRequest
367+
from hostinger_api.models.hosting_v1_node_js_env_var_resource import HostingV1NodeJsEnvVarResource
367368
from hostinger_api.models.hosting_v1_node_js_get_build_settings_request import HostingV1NodeJsGetBuildSettingsRequest
368369
from hostinger_api.models.hosting_v1_node_js_patch_result_resource import HostingV1NodeJsPatchResultResource
369370
from hostinger_api.models.hosting_v1_node_js_patch_vulnerabilities_request import HostingV1NodeJsPatchVulnerabilitiesRequest
371+
from hostinger_api.models.hosting_v1_node_js_set_build_env_vars_request import HostingV1NodeJsSetBuildEnvVarsRequest
372+
from hostinger_api.models.hosting_v1_node_js_set_build_env_vars_request_env_vars_inner import HostingV1NodeJsSetBuildEnvVarsRequestEnvVarsInner
370373
from hostinger_api.models.hosting_v1_node_js_source_options_resource import HostingV1NodeJsSourceOptionsResource
371374
from hostinger_api.models.hosting_v1_node_js_start_build_request import HostingV1NodeJsStartBuildRequest
372375
from hostinger_api.models.hosting_v1_node_js_start_build_request_source_options import HostingV1NodeJsStartBuildRequestSourceOptions

hostinger_api/api/agency_hosting_cache_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 1.43.1
6+
API Version: 1.44.0
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

hostinger_api/api/agency_hosting_cron_jobs_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 1.43.1
6+
API Version: 1.44.0
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

hostinger_api/api/agency_hosting_databases_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 1.43.1
6+
API Version: 1.44.0
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

hostinger_api/api/agency_hosting_datacenters_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 1.43.1
6+
API Version: 1.44.0
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

0 commit comments

Comments
 (0)