Skip to content

Commit

Permalink
Look for details in API documentation's changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Api (Codebuild) committed Jan 14, 2025
1 parent e7849a2 commit 1900452
Show file tree
Hide file tree
Showing 4,386 changed files with 134,451 additions and 26,257 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
17 changes: 5 additions & 12 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Test with pytest
run: |
pytest
pytest --cov={{packageName}}
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ stages:
- pip install -r test-requirements.txt
- pytest --cov=eZmaxApi

pytest-3.7:
extends: .pytest
image: python:3.7-alpine
pytest-3.8:
extends: .pytest
image: python:3.8-alpine
Expand All @@ -29,3 +26,6 @@ pytest-3.10:
pytest-3.11:
extends: .pytest
image: python:3.11-alpine
pytest-3.12:
extends: .pytest
image: python:3.12-alpine
1,449 changes: 1,239 additions & 210 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 @@
7.4.0
7.9.0
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# ref: https://docs.travis-ci.com/user/languages/python
language: python
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
# uncomment the following if needed
#- "3.11-dev" # 3.11 development branch
#- "3.12-dev" # 3.12 development branch
#- "nightly" # nightly build
# command to install dependencies
install:
Expand Down
608 changes: 515 additions & 93 deletions README.md

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions docs/ActivesessionGenerateFederationTokenV1Request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# ActivesessionGenerateFederationTokenV1Request

Request for POST /1/object/activesession/generateFederationToken

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**fks_ezmaxcustomer_code** | **str** | The Ezmaxcustomer code |

## Example

```python
from eZmaxApi.models.activesession_generate_federation_token_v1_request import ActivesessionGenerateFederationTokenV1Request

# TODO update the JSON string below
json = "{}"
# create an instance of ActivesessionGenerateFederationTokenV1Request from a JSON string
activesession_generate_federation_token_v1_request_instance = ActivesessionGenerateFederationTokenV1Request.from_json(json)
# print the JSON string representation of the object
print(ActivesessionGenerateFederationTokenV1Request.to_json())

# convert the object into a dict
activesession_generate_federation_token_v1_request_dict = activesession_generate_federation_token_v1_request_instance.to_dict()
# create an instance of ActivesessionGenerateFederationTokenV1Request from a dict
activesession_generate_federation_token_v1_request_from_dict = ActivesessionGenerateFederationTokenV1Request.from_dict(activesession_generate_federation_token_v1_request_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


32 changes: 32 additions & 0 deletions docs/ActivesessionGenerateFederationTokenV1Response.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# ActivesessionGenerateFederationTokenV1Response

Response for POST /1/object/activesession/generateFederationToken

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**obj_debug_payload** | [**CommonResponseObjDebugPayload**](CommonResponseObjDebugPayload.md) | |
**obj_debug** | [**CommonResponseObjDebug**](CommonResponseObjDebug.md) | | [optional]
**m_payload** | [**ActivesessionGenerateFederationTokenV1ResponseMPayload**](ActivesessionGenerateFederationTokenV1ResponseMPayload.md) | |

## Example

```python
from eZmaxApi.models.activesession_generate_federation_token_v1_response import ActivesessionGenerateFederationTokenV1Response

# TODO update the JSON string below
json = "{}"
# create an instance of ActivesessionGenerateFederationTokenV1Response from a JSON string
activesession_generate_federation_token_v1_response_instance = ActivesessionGenerateFederationTokenV1Response.from_json(json)
# print the JSON string representation of the object
print(ActivesessionGenerateFederationTokenV1Response.to_json())

# convert the object into a dict
activesession_generate_federation_token_v1_response_dict = activesession_generate_federation_token_v1_response_instance.to_dict()
# create an instance of ActivesessionGenerateFederationTokenV1Response from a dict
activesession_generate_federation_token_v1_response_from_dict = ActivesessionGenerateFederationTokenV1Response.from_dict(activesession_generate_federation_token_v1_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


31 changes: 31 additions & 0 deletions docs/ActivesessionGenerateFederationTokenV1ResponseMPayload.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# ActivesessionGenerateFederationTokenV1ResponseMPayload

Payload for POST /1/object/activesession/generateFederationToken

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**obj_apikeyfederation** | [**CustomApikeyfederation**](CustomApikeyfederation.md) | |
**s_ezmaxcustomercode_url** | **str** | The url of the server the Ezmaxcustomer is located |

## Example

```python
from eZmaxApi.models.activesession_generate_federation_token_v1_response_m_payload import ActivesessionGenerateFederationTokenV1ResponseMPayload

# TODO update the JSON string below
json = "{}"
# create an instance of ActivesessionGenerateFederationTokenV1ResponseMPayload from a JSON string
activesession_generate_federation_token_v1_response_m_payload_instance = ActivesessionGenerateFederationTokenV1ResponseMPayload.from_json(json)
# print the JSON string representation of the object
print(ActivesessionGenerateFederationTokenV1ResponseMPayload.to_json())

# convert the object into a dict
activesession_generate_federation_token_v1_response_m_payload_dict = activesession_generate_federation_token_v1_response_m_payload_instance.to_dict()
# create an instance of ActivesessionGenerateFederationTokenV1ResponseMPayload from a dict
activesession_generate_federation_token_v1_response_m_payload_from_dict = ActivesessionGenerateFederationTokenV1ResponseMPayload.from_dict(activesession_generate_federation_token_v1_response_m_payload_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


2 changes: 1 addition & 1 deletion docs/ActivesessionGetCurrentV1Response.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ print(ActivesessionGetCurrentV1Response.to_json())
# convert the object into a dict
activesession_get_current_v1_response_dict = activesession_get_current_v1_response_instance.to_dict()
# create an instance of ActivesessionGetCurrentV1Response from a dict
activesession_get_current_v1_response_form_dict = activesession_get_current_v1_response.from_dict(activesession_get_current_v1_response_dict)
activesession_get_current_v1_response_from_dict = ActivesessionGetCurrentV1Response.from_dict(activesession_get_current_v1_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
12 changes: 11 additions & 1 deletion docs/ActivesessionGetCurrentV1ResponseMPayload.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,23 @@ Name | Type | Description | Notes
**s_department_name_x** | **str** | The Name of the Department in the language of the requester |
**b_activesession_debug** | **bool** | Whether the active session is in debug or not |
**b_activesession_issuperadmin** | **bool** | Whether the active session is superadmin or not |
**b_activesession_attachment** | **bool** | Can access attachment when we clone a user | [optional]
**b_activesession_canafe** | **bool** | Can access canafe when we clone a user | [optional]
**b_activesession_financial** | **bool** | Can access financial element when we clone a user | [optional]
**b_activesession_realestatecompleted** | **bool** | Can access closed realestate folders when we clone a user | [optional]
**e_activesession_ezsign** | [**FieldEActivesessionEzsign**](FieldEActivesessionEzsign.md) | | [optional]
**e_activesession_ezsignaccess** | [**FieldEActivesessionEzsignaccess**](FieldEActivesessionEzsignaccess.md) | |
**e_activesession_ezsignprepaid** | [**FieldEActivesessionEzsignprepaid**](FieldEActivesessionEzsignprepaid.md) | | [optional]
**e_activesession_realestateinprogress** | [**FieldEActivesessionRealestateinprogress**](FieldEActivesessionRealestateinprogress.md) | | [optional]
**pks_customer_code** | **str** | The customer code assigned to your account |
**fki_systemconfigurationtype_id** | **int** | The unique ID of the Systemconfigurationtype |
**fki_signature_id** | **int** | The unique ID of the Signature | [optional]
**fki_ezsignuser_id** | **int** | The unique ID of the Ezsignuser | [optional]
**b_systemconfiguration_ezsignpaidbyoffice** | **bool** | Whether if Ezsign is paid by the company or not | [optional]
**e_systemconfiguration_ezsignofficeplan** | [**FieldESystemconfigurationEzsignofficeplan**](FieldESystemconfigurationEzsignofficeplan.md) | | [optional]
**e_user_ezsignaccess** | [**FieldEUserEzsignaccess**](FieldEUserEzsignaccess.md) | |
**e_user_ezsignprepaid** | [**FieldEUserEzsignprepaid**](FieldEUserEzsignprepaid.md) | | [optional]
**b_user_ezsigntrial** | **bool** | Whether the User's eZsign subscription is a trial | [optional]
**dt_user_ezsignprepaidexpiration** | **str** | The eZsign prepaid expiration date | [optional]
**a_pki_permission_id** | **List[int]** | An array of permissions granted to the user or api key |
**obj_user_real** | [**ActivesessionResponseCompoundUser**](ActivesessionResponseCompoundUser.md) | |
Expand All @@ -43,7 +53,7 @@ print(ActivesessionGetCurrentV1ResponseMPayload.to_json())
# convert the object into a dict
activesession_get_current_v1_response_m_payload_dict = activesession_get_current_v1_response_m_payload_instance.to_dict()
# create an instance of ActivesessionGetCurrentV1ResponseMPayload from a dict
activesession_get_current_v1_response_m_payload_form_dict = activesession_get_current_v1_response_m_payload.from_dict(activesession_get_current_v1_response_m_payload_dict)
activesession_get_current_v1_response_m_payload_from_dict = ActivesessionGetCurrentV1ResponseMPayload.from_dict(activesession_get_current_v1_response_m_payload_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/ActivesessionGetListV1Response.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ print(ActivesessionGetListV1Response.to_json())
# convert the object into a dict
activesession_get_list_v1_response_dict = activesession_get_list_v1_response_instance.to_dict()
# create an instance of ActivesessionGetListV1Response from a dict
activesession_get_list_v1_response_form_dict = activesession_get_list_v1_response.from_dict(activesession_get_list_v1_response_dict)
activesession_get_list_v1_response_from_dict = ActivesessionGetListV1Response.from_dict(activesession_get_list_v1_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/ActivesessionGetListV1ResponseMPayload.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ print(ActivesessionGetListV1ResponseMPayload.to_json())
# convert the object into a dict
activesession_get_list_v1_response_m_payload_dict = activesession_get_list_v1_response_m_payload_instance.to_dict()
# create an instance of ActivesessionGetListV1ResponseMPayload from a dict
activesession_get_list_v1_response_m_payload_form_dict = activesession_get_list_v1_response_m_payload.from_dict(activesession_get_list_v1_response_m_payload_dict)
activesession_get_list_v1_response_m_payload_from_dict = ActivesessionGetListV1ResponseMPayload.from_dict(activesession_get_list_v1_response_m_payload_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/ActivesessionListElement.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ print(ActivesessionListElement.to_json())
# convert the object into a dict
activesession_list_element_dict = activesession_list_element_instance.to_dict()
# create an instance of ActivesessionListElement from a dict
activesession_list_element_form_dict = activesession_list_element.from_dict(activesession_list_element_dict)
activesession_list_element_from_dict = ActivesessionListElement.from_dict(activesession_list_element_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
10 changes: 9 additions & 1 deletion docs/ActivesessionResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ Name | Type | Description | Notes
**s_department_name_x** | **str** | The Name of the Department in the language of the requester |
**b_activesession_debug** | **bool** | Whether the active session is in debug or not |
**b_activesession_issuperadmin** | **bool** | Whether the active session is superadmin or not |
**b_activesession_attachment** | **bool** | Can access attachment when we clone a user | [optional]
**b_activesession_canafe** | **bool** | Can access canafe when we clone a user | [optional]
**b_activesession_financial** | **bool** | Can access financial element when we clone a user | [optional]
**b_activesession_realestatecompleted** | **bool** | Can access closed realestate folders when we clone a user | [optional]
**e_activesession_ezsign** | [**FieldEActivesessionEzsign**](FieldEActivesessionEzsign.md) | | [optional]
**e_activesession_ezsignaccess** | [**FieldEActivesessionEzsignaccess**](FieldEActivesessionEzsignaccess.md) | |
**e_activesession_ezsignprepaid** | [**FieldEActivesessionEzsignprepaid**](FieldEActivesessionEzsignprepaid.md) | | [optional]
**e_activesession_realestateinprogress** | [**FieldEActivesessionRealestateinprogress**](FieldEActivesessionRealestateinprogress.md) | | [optional]
**pks_customer_code** | **str** | The customer code assigned to your account |
**fki_systemconfigurationtype_id** | **int** | The unique ID of the Systemconfigurationtype |
**fki_signature_id** | **int** | The unique ID of the Signature | [optional]
Expand All @@ -33,7 +41,7 @@ print(ActivesessionResponse.to_json())
# convert the object into a dict
activesession_response_dict = activesession_response_instance.to_dict()
# create an instance of ActivesessionResponse from a dict
activesession_response_form_dict = activesession_response.from_dict(activesession_response_dict)
activesession_response_from_dict = ActivesessionResponse.from_dict(activesession_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
12 changes: 11 additions & 1 deletion docs/ActivesessionResponseCompound.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,23 @@ Name | Type | Description | Notes
**s_department_name_x** | **str** | The Name of the Department in the language of the requester |
**b_activesession_debug** | **bool** | Whether the active session is in debug or not |
**b_activesession_issuperadmin** | **bool** | Whether the active session is superadmin or not |
**b_activesession_attachment** | **bool** | Can access attachment when we clone a user | [optional]
**b_activesession_canafe** | **bool** | Can access canafe when we clone a user | [optional]
**b_activesession_financial** | **bool** | Can access financial element when we clone a user | [optional]
**b_activesession_realestatecompleted** | **bool** | Can access closed realestate folders when we clone a user | [optional]
**e_activesession_ezsign** | [**FieldEActivesessionEzsign**](FieldEActivesessionEzsign.md) | | [optional]
**e_activesession_ezsignaccess** | [**FieldEActivesessionEzsignaccess**](FieldEActivesessionEzsignaccess.md) | |
**e_activesession_ezsignprepaid** | [**FieldEActivesessionEzsignprepaid**](FieldEActivesessionEzsignprepaid.md) | | [optional]
**e_activesession_realestateinprogress** | [**FieldEActivesessionRealestateinprogress**](FieldEActivesessionRealestateinprogress.md) | | [optional]
**pks_customer_code** | **str** | The customer code assigned to your account |
**fki_systemconfigurationtype_id** | **int** | The unique ID of the Systemconfigurationtype |
**fki_signature_id** | **int** | The unique ID of the Signature | [optional]
**fki_ezsignuser_id** | **int** | The unique ID of the Ezsignuser | [optional]
**b_systemconfiguration_ezsignpaidbyoffice** | **bool** | Whether if Ezsign is paid by the company or not | [optional]
**e_systemconfiguration_ezsignofficeplan** | [**FieldESystemconfigurationEzsignofficeplan**](FieldESystemconfigurationEzsignofficeplan.md) | | [optional]
**e_user_ezsignaccess** | [**FieldEUserEzsignaccess**](FieldEUserEzsignaccess.md) | |
**e_user_ezsignprepaid** | [**FieldEUserEzsignprepaid**](FieldEUserEzsignprepaid.md) | | [optional]
**b_user_ezsigntrial** | **bool** | Whether the User's eZsign subscription is a trial | [optional]
**dt_user_ezsignprepaidexpiration** | **str** | The eZsign prepaid expiration date | [optional]
**a_pki_permission_id** | **List[int]** | An array of permissions granted to the user or api key |
**obj_user_real** | [**ActivesessionResponseCompoundUser**](ActivesessionResponseCompoundUser.md) | |
Expand All @@ -43,7 +53,7 @@ print(ActivesessionResponseCompound.to_json())
# convert the object into a dict
activesession_response_compound_dict = activesession_response_compound_instance.to_dict()
# create an instance of ActivesessionResponseCompound from a dict
activesession_response_compound_form_dict = activesession_response_compound.from_dict(activesession_response_compound_dict)
activesession_response_compound_from_dict = ActivesessionResponseCompound.from_dict(activesession_response_compound_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/ActivesessionResponseCompoundApikey.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ print(ActivesessionResponseCompoundApikey.to_json())
# convert the object into a dict
activesession_response_compound_apikey_dict = activesession_response_compound_apikey_instance.to_dict()
# create an instance of ActivesessionResponseCompoundApikey from a dict
activesession_response_compound_apikey_form_dict = activesession_response_compound_apikey.from_dict(activesession_response_compound_apikey_dict)
activesession_response_compound_apikey_from_dict = ActivesessionResponseCompoundApikey.from_dict(activesession_response_compound_apikey_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/ActivesessionResponseCompoundUser.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ print(ActivesessionResponseCompoundUser.to_json())
# convert the object into a dict
activesession_response_compound_user_dict = activesession_response_compound_user_instance.to_dict()
# create an instance of ActivesessionResponseCompoundUser from a dict
activesession_response_compound_user_form_dict = activesession_response_compound_user.from_dict(activesession_response_compound_user_dict)
activesession_response_compound_user_from_dict = ActivesessionResponseCompoundUser.from_dict(activesession_response_compound_user_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
Loading

0 comments on commit 1900452

Please sign in to comment.