Skip to content

Commit 1900452

Browse files
author
Api (Codebuild)
committed
Look for details in API documentation's changelog
1 parent e7849a2 commit 1900452

File tree

4,386 files changed

+134451
-26257
lines changed

Some content is hidden

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

4,386 files changed

+134451
-26257
lines changed

.github/workflows/python.yml

+5-12
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,19 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v4
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install flake8 pytest
28-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29-
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
30-
- name: Lint with flake8
31-
run: |
32-
# stop the build if there are Python syntax errors or undefined names
33-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
34-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
35-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
27+
pip install -r requirements.txt
28+
pip install -r test-requirements.txt
3629
- name: Test with pytest
3730
run: |
38-
pytest
31+
pytest --cov={{packageName}}

.gitlab-ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ stages:
1414
- pip install -r test-requirements.txt
1515
- pytest --cov=eZmaxApi
1616

17-
pytest-3.7:
18-
extends: .pytest
19-
image: python:3.7-alpine
2017
pytest-3.8:
2118
extends: .pytest
2219
image: python:3.8-alpine
@@ -29,3 +26,6 @@ pytest-3.10:
2926
pytest-3.11:
3027
extends: .pytest
3128
image: python:3.11-alpine
29+
pytest-3.12:
30+
extends: .pytest
31+
image: python:3.12-alpine

.openapi-generator/FILES

+1,239-210
Large diffs are not rendered by default.

.openapi-generator/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.4.0
1+
7.9.0

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# ref: https://docs.travis-ci.com/user/languages/python
22
language: python
33
python:
4-
- "3.7"
54
- "3.8"
65
- "3.9"
76
- "3.10"
87
- "3.11"
8+
- "3.12"
99
# uncomment the following if needed
10-
#- "3.11-dev" # 3.11 development branch
10+
#- "3.12-dev" # 3.12 development branch
1111
#- "nightly" # nightly build
1212
# command to install dependencies
1313
install:

README.md

+515-93
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# ActivesessionGenerateFederationTokenV1Request
2+
3+
Request for POST /1/object/activesession/generateFederationToken
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**fks_ezmaxcustomer_code** | **str** | The Ezmaxcustomer code |
10+
11+
## Example
12+
13+
```python
14+
from eZmaxApi.models.activesession_generate_federation_token_v1_request import ActivesessionGenerateFederationTokenV1Request
15+
16+
# TODO update the JSON string below
17+
json = "{}"
18+
# create an instance of ActivesessionGenerateFederationTokenV1Request from a JSON string
19+
activesession_generate_federation_token_v1_request_instance = ActivesessionGenerateFederationTokenV1Request.from_json(json)
20+
# print the JSON string representation of the object
21+
print(ActivesessionGenerateFederationTokenV1Request.to_json())
22+
23+
# convert the object into a dict
24+
activesession_generate_federation_token_v1_request_dict = activesession_generate_federation_token_v1_request_instance.to_dict()
25+
# create an instance of ActivesessionGenerateFederationTokenV1Request from a dict
26+
activesession_generate_federation_token_v1_request_from_dict = ActivesessionGenerateFederationTokenV1Request.from_dict(activesession_generate_federation_token_v1_request_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+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# ActivesessionGenerateFederationTokenV1Response
2+
3+
Response for POST /1/object/activesession/generateFederationToken
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**obj_debug_payload** | [**CommonResponseObjDebugPayload**](CommonResponseObjDebugPayload.md) | |
10+
**obj_debug** | [**CommonResponseObjDebug**](CommonResponseObjDebug.md) | | [optional]
11+
**m_payload** | [**ActivesessionGenerateFederationTokenV1ResponseMPayload**](ActivesessionGenerateFederationTokenV1ResponseMPayload.md) | |
12+
13+
## Example
14+
15+
```python
16+
from eZmaxApi.models.activesession_generate_federation_token_v1_response import ActivesessionGenerateFederationTokenV1Response
17+
18+
# TODO update the JSON string below
19+
json = "{}"
20+
# create an instance of ActivesessionGenerateFederationTokenV1Response from a JSON string
21+
activesession_generate_federation_token_v1_response_instance = ActivesessionGenerateFederationTokenV1Response.from_json(json)
22+
# print the JSON string representation of the object
23+
print(ActivesessionGenerateFederationTokenV1Response.to_json())
24+
25+
# convert the object into a dict
26+
activesession_generate_federation_token_v1_response_dict = activesession_generate_federation_token_v1_response_instance.to_dict()
27+
# create an instance of ActivesessionGenerateFederationTokenV1Response from a dict
28+
activesession_generate_federation_token_v1_response_from_dict = ActivesessionGenerateFederationTokenV1Response.from_dict(activesession_generate_federation_token_v1_response_dict)
29+
```
30+
[[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+
32+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# ActivesessionGenerateFederationTokenV1ResponseMPayload
2+
3+
Payload for POST /1/object/activesession/generateFederationToken
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**obj_apikeyfederation** | [**CustomApikeyfederation**](CustomApikeyfederation.md) | |
10+
**s_ezmaxcustomercode_url** | **str** | The url of the server the Ezmaxcustomer is located |
11+
12+
## Example
13+
14+
```python
15+
from eZmaxApi.models.activesession_generate_federation_token_v1_response_m_payload import ActivesessionGenerateFederationTokenV1ResponseMPayload
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of ActivesessionGenerateFederationTokenV1ResponseMPayload from a JSON string
20+
activesession_generate_federation_token_v1_response_m_payload_instance = ActivesessionGenerateFederationTokenV1ResponseMPayload.from_json(json)
21+
# print the JSON string representation of the object
22+
print(ActivesessionGenerateFederationTokenV1ResponseMPayload.to_json())
23+
24+
# convert the object into a dict
25+
activesession_generate_federation_token_v1_response_m_payload_dict = activesession_generate_federation_token_v1_response_m_payload_instance.to_dict()
26+
# create an instance of ActivesessionGenerateFederationTokenV1ResponseMPayload from a dict
27+
activesession_generate_federation_token_v1_response_m_payload_from_dict = ActivesessionGenerateFederationTokenV1ResponseMPayload.from_dict(activesession_generate_federation_token_v1_response_m_payload_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+

docs/ActivesessionGetCurrentV1Response.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ print(ActivesessionGetCurrentV1Response.to_json())
2525
# convert the object into a dict
2626
activesession_get_current_v1_response_dict = activesession_get_current_v1_response_instance.to_dict()
2727
# create an instance of ActivesessionGetCurrentV1Response from a dict
28-
activesession_get_current_v1_response_form_dict = activesession_get_current_v1_response.from_dict(activesession_get_current_v1_response_dict)
28+
activesession_get_current_v1_response_from_dict = ActivesessionGetCurrentV1Response.from_dict(activesession_get_current_v1_response_dict)
2929
```
3030
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3131

docs/ActivesessionGetCurrentV1ResponseMPayload.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,23 @@ Name | Type | Description | Notes
1414
**s_department_name_x** | **str** | The Name of the Department in the language of the requester |
1515
**b_activesession_debug** | **bool** | Whether the active session is in debug or not |
1616
**b_activesession_issuperadmin** | **bool** | Whether the active session is superadmin or not |
17+
**b_activesession_attachment** | **bool** | Can access attachment when we clone a user | [optional]
18+
**b_activesession_canafe** | **bool** | Can access canafe when we clone a user | [optional]
19+
**b_activesession_financial** | **bool** | Can access financial element when we clone a user | [optional]
20+
**b_activesession_realestatecompleted** | **bool** | Can access closed realestate folders when we clone a user | [optional]
21+
**e_activesession_ezsign** | [**FieldEActivesessionEzsign**](FieldEActivesessionEzsign.md) | | [optional]
22+
**e_activesession_ezsignaccess** | [**FieldEActivesessionEzsignaccess**](FieldEActivesessionEzsignaccess.md) | |
23+
**e_activesession_ezsignprepaid** | [**FieldEActivesessionEzsignprepaid**](FieldEActivesessionEzsignprepaid.md) | | [optional]
24+
**e_activesession_realestateinprogress** | [**FieldEActivesessionRealestateinprogress**](FieldEActivesessionRealestateinprogress.md) | | [optional]
1725
**pks_customer_code** | **str** | The customer code assigned to your account |
1826
**fki_systemconfigurationtype_id** | **int** | The unique ID of the Systemconfigurationtype |
1927
**fki_signature_id** | **int** | The unique ID of the Signature | [optional]
28+
**fki_ezsignuser_id** | **int** | The unique ID of the Ezsignuser | [optional]
2029
**b_systemconfiguration_ezsignpaidbyoffice** | **bool** | Whether if Ezsign is paid by the company or not | [optional]
2130
**e_systemconfiguration_ezsignofficeplan** | [**FieldESystemconfigurationEzsignofficeplan**](FieldESystemconfigurationEzsignofficeplan.md) | | [optional]
2231
**e_user_ezsignaccess** | [**FieldEUserEzsignaccess**](FieldEUserEzsignaccess.md) | |
2332
**e_user_ezsignprepaid** | [**FieldEUserEzsignprepaid**](FieldEUserEzsignprepaid.md) | | [optional]
33+
**b_user_ezsigntrial** | **bool** | Whether the User's eZsign subscription is a trial | [optional]
2434
**dt_user_ezsignprepaidexpiration** | **str** | The eZsign prepaid expiration date | [optional]
2535
**a_pki_permission_id** | **List[int]** | An array of permissions granted to the user or api key |
2636
**obj_user_real** | [**ActivesessionResponseCompoundUser**](ActivesessionResponseCompoundUser.md) | |
@@ -43,7 +53,7 @@ print(ActivesessionGetCurrentV1ResponseMPayload.to_json())
4353
# convert the object into a dict
4454
activesession_get_current_v1_response_m_payload_dict = activesession_get_current_v1_response_m_payload_instance.to_dict()
4555
# create an instance of ActivesessionGetCurrentV1ResponseMPayload from a dict
46-
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)
56+
activesession_get_current_v1_response_m_payload_from_dict = ActivesessionGetCurrentV1ResponseMPayload.from_dict(activesession_get_current_v1_response_m_payload_dict)
4757
```
4858
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
4959

docs/ActivesessionGetListV1Response.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ print(ActivesessionGetListV1Response.to_json())
2525
# convert the object into a dict
2626
activesession_get_list_v1_response_dict = activesession_get_list_v1_response_instance.to_dict()
2727
# create an instance of ActivesessionGetListV1Response from a dict
28-
activesession_get_list_v1_response_form_dict = activesession_get_list_v1_response.from_dict(activesession_get_list_v1_response_dict)
28+
activesession_get_list_v1_response_from_dict = ActivesessionGetListV1Response.from_dict(activesession_get_list_v1_response_dict)
2929
```
3030
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3131

docs/ActivesessionGetListV1ResponseMPayload.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ print(ActivesessionGetListV1ResponseMPayload.to_json())
2525
# convert the object into a dict
2626
activesession_get_list_v1_response_m_payload_dict = activesession_get_list_v1_response_m_payload_instance.to_dict()
2727
# create an instance of ActivesessionGetListV1ResponseMPayload from a dict
28-
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)
28+
activesession_get_list_v1_response_m_payload_from_dict = ActivesessionGetListV1ResponseMPayload.from_dict(activesession_get_list_v1_response_m_payload_dict)
2929
```
3030
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3131

docs/ActivesessionListElement.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ print(ActivesessionListElement.to_json())
3434
# convert the object into a dict
3535
activesession_list_element_dict = activesession_list_element_instance.to_dict()
3636
# create an instance of ActivesessionListElement from a dict
37-
activesession_list_element_form_dict = activesession_list_element.from_dict(activesession_list_element_dict)
37+
activesession_list_element_from_dict = ActivesessionListElement.from_dict(activesession_list_element_dict)
3838
```
3939
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
4040

docs/ActivesessionResponse.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ Name | Type | Description | Notes
1414
**s_department_name_x** | **str** | The Name of the Department in the language of the requester |
1515
**b_activesession_debug** | **bool** | Whether the active session is in debug or not |
1616
**b_activesession_issuperadmin** | **bool** | Whether the active session is superadmin or not |
17+
**b_activesession_attachment** | **bool** | Can access attachment when we clone a user | [optional]
18+
**b_activesession_canafe** | **bool** | Can access canafe when we clone a user | [optional]
19+
**b_activesession_financial** | **bool** | Can access financial element when we clone a user | [optional]
20+
**b_activesession_realestatecompleted** | **bool** | Can access closed realestate folders when we clone a user | [optional]
21+
**e_activesession_ezsign** | [**FieldEActivesessionEzsign**](FieldEActivesessionEzsign.md) | | [optional]
22+
**e_activesession_ezsignaccess** | [**FieldEActivesessionEzsignaccess**](FieldEActivesessionEzsignaccess.md) | |
23+
**e_activesession_ezsignprepaid** | [**FieldEActivesessionEzsignprepaid**](FieldEActivesessionEzsignprepaid.md) | | [optional]
24+
**e_activesession_realestateinprogress** | [**FieldEActivesessionRealestateinprogress**](FieldEActivesessionRealestateinprogress.md) | | [optional]
1725
**pks_customer_code** | **str** | The customer code assigned to your account |
1826
**fki_systemconfigurationtype_id** | **int** | The unique ID of the Systemconfigurationtype |
1927
**fki_signature_id** | **int** | The unique ID of the Signature | [optional]
@@ -33,7 +41,7 @@ print(ActivesessionResponse.to_json())
3341
# convert the object into a dict
3442
activesession_response_dict = activesession_response_instance.to_dict()
3543
# create an instance of ActivesessionResponse from a dict
36-
activesession_response_form_dict = activesession_response.from_dict(activesession_response_dict)
44+
activesession_response_from_dict = ActivesessionResponse.from_dict(activesession_response_dict)
3745
```
3846
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3947

docs/ActivesessionResponseCompound.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,23 @@ Name | Type | Description | Notes
1414
**s_department_name_x** | **str** | The Name of the Department in the language of the requester |
1515
**b_activesession_debug** | **bool** | Whether the active session is in debug or not |
1616
**b_activesession_issuperadmin** | **bool** | Whether the active session is superadmin or not |
17+
**b_activesession_attachment** | **bool** | Can access attachment when we clone a user | [optional]
18+
**b_activesession_canafe** | **bool** | Can access canafe when we clone a user | [optional]
19+
**b_activesession_financial** | **bool** | Can access financial element when we clone a user | [optional]
20+
**b_activesession_realestatecompleted** | **bool** | Can access closed realestate folders when we clone a user | [optional]
21+
**e_activesession_ezsign** | [**FieldEActivesessionEzsign**](FieldEActivesessionEzsign.md) | | [optional]
22+
**e_activesession_ezsignaccess** | [**FieldEActivesessionEzsignaccess**](FieldEActivesessionEzsignaccess.md) | |
23+
**e_activesession_ezsignprepaid** | [**FieldEActivesessionEzsignprepaid**](FieldEActivesessionEzsignprepaid.md) | | [optional]
24+
**e_activesession_realestateinprogress** | [**FieldEActivesessionRealestateinprogress**](FieldEActivesessionRealestateinprogress.md) | | [optional]
1725
**pks_customer_code** | **str** | The customer code assigned to your account |
1826
**fki_systemconfigurationtype_id** | **int** | The unique ID of the Systemconfigurationtype |
1927
**fki_signature_id** | **int** | The unique ID of the Signature | [optional]
28+
**fki_ezsignuser_id** | **int** | The unique ID of the Ezsignuser | [optional]
2029
**b_systemconfiguration_ezsignpaidbyoffice** | **bool** | Whether if Ezsign is paid by the company or not | [optional]
2130
**e_systemconfiguration_ezsignofficeplan** | [**FieldESystemconfigurationEzsignofficeplan**](FieldESystemconfigurationEzsignofficeplan.md) | | [optional]
2231
**e_user_ezsignaccess** | [**FieldEUserEzsignaccess**](FieldEUserEzsignaccess.md) | |
2332
**e_user_ezsignprepaid** | [**FieldEUserEzsignprepaid**](FieldEUserEzsignprepaid.md) | | [optional]
33+
**b_user_ezsigntrial** | **bool** | Whether the User's eZsign subscription is a trial | [optional]
2434
**dt_user_ezsignprepaidexpiration** | **str** | The eZsign prepaid expiration date | [optional]
2535
**a_pki_permission_id** | **List[int]** | An array of permissions granted to the user or api key |
2636
**obj_user_real** | [**ActivesessionResponseCompoundUser**](ActivesessionResponseCompoundUser.md) | |
@@ -43,7 +53,7 @@ print(ActivesessionResponseCompound.to_json())
4353
# convert the object into a dict
4454
activesession_response_compound_dict = activesession_response_compound_instance.to_dict()
4555
# create an instance of ActivesessionResponseCompound from a dict
46-
activesession_response_compound_form_dict = activesession_response_compound.from_dict(activesession_response_compound_dict)
56+
activesession_response_compound_from_dict = ActivesessionResponseCompound.from_dict(activesession_response_compound_dict)
4757
```
4858
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
4959

docs/ActivesessionResponseCompoundApikey.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ print(ActivesessionResponseCompoundApikey.to_json())
2424
# convert the object into a dict
2525
activesession_response_compound_apikey_dict = activesession_response_compound_apikey_instance.to_dict()
2626
# create an instance of ActivesessionResponseCompoundApikey from a dict
27-
activesession_response_compound_apikey_form_dict = activesession_response_compound_apikey.from_dict(activesession_response_compound_apikey_dict)
27+
activesession_response_compound_apikey_from_dict = ActivesessionResponseCompoundApikey.from_dict(activesession_response_compound_apikey_dict)
2828
```
2929
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3030

docs/ActivesessionResponseCompoundUser.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ print(ActivesessionResponseCompoundUser.to_json())
3232
# convert the object into a dict
3333
activesession_response_compound_user_dict = activesession_response_compound_user_instance.to_dict()
3434
# create an instance of ActivesessionResponseCompoundUser from a dict
35-
activesession_response_compound_user_form_dict = activesession_response_compound_user.from_dict(activesession_response_compound_user_dict)
35+
activesession_response_compound_user_from_dict = ActivesessionResponseCompoundUser.from_dict(activesession_response_compound_user_dict)
3636
```
3737
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3838

0 commit comments

Comments
 (0)