Skip to content

Commit f3b40a4

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

File tree

2,375 files changed

+64860
-5562
lines changed

Some content is hidden

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

2,375 files changed

+64860
-5562
lines changed

.github/workflows/python.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ name: eZmaxApi Python package
77

88
on: [push, pull_request]
99

10+
permissions:
11+
contents: read
12+
1013
jobs:
1114
build:
1215

1316
runs-on: ubuntu-latest
1417
strategy:
1518
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1720

1821
steps:
1922
- uses: actions/checkout@v4

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ docs/_build/
6262
# PyBuilder
6363
target/
6464

65-
#Ipython Notebook
65+
# Ipython Notebook
6666
.ipynb_checkpoints

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
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.8:
18-
extends: .pytest
19-
image: python:3.8-alpine
2017
pytest-3.9:
2118
extends: .pytest
2219
image: python:3.9-alpine
@@ -29,3 +26,6 @@ pytest-3.11:
2926
pytest-3.12:
3027
extends: .pytest
3128
image: python:3.12-alpine
29+
pytest-3.13:
30+
extends: .pytest
31+
image: python:3.13-alpine

.openapi-generator/FILES

Lines changed: 446 additions & 0 deletions
Large diffs are not rendered by default.

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.12.0
1+
7.16.0

.travis.yml

Lines changed: 2 additions & 2 deletions
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.8"
54
- "3.9"
65
- "3.10"
76
- "3.11"
87
- "3.12"
8+
- "3.13"
99
# uncomment the following if needed
10-
#- "3.12-dev" # 3.12 development branch
10+
#- "3.13-dev" # 3.13 development branch
1111
#- "nightly" # nightly build
1212
# command to install dependencies
1313
install:

README.md

Lines changed: 285 additions & 10 deletions
Large diffs are not rendered by default.

docs/ActivesessionGetCurrentV1ResponseMPayload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Name | Type | Description | Notes
3232
**e_user_ezsignprepaid** | [**FieldEUserEzsignprepaid**](FieldEUserEzsignprepaid.md) | | [optional]
3333
**b_user_ezsigntrial** | **bool** | Whether the User's eZsign subscription is a trial | [optional]
3434
**dt_user_ezsignprepaidexpiration** | **str** | The eZsign prepaid expiration date | [optional]
35+
**dt_user_npsrequest** | **str** | The date at which the NPS questionnaire will be show | [optional]
3536
**a_pki_permission_id** | **List[int]** | An array of permissions granted to the user or api key |
3637
**obj_user_real** | [**ActivesessionResponseCompoundUser**](ActivesessionResponseCompoundUser.md) | |
3738
**obj_user_cloned** | [**ActivesessionResponseCompoundUser**](ActivesessionResponseCompoundUser.md) | | [optional]

docs/ActivesessionResponseCompound.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Name | Type | Description | Notes
3232
**e_user_ezsignprepaid** | [**FieldEUserEzsignprepaid**](FieldEUserEzsignprepaid.md) | | [optional]
3333
**b_user_ezsigntrial** | **bool** | Whether the User's eZsign subscription is a trial | [optional]
3434
**dt_user_ezsignprepaidexpiration** | **str** | The eZsign prepaid expiration date | [optional]
35+
**dt_user_npsrequest** | **str** | The date at which the NPS questionnaire will be show | [optional]
3536
**a_pki_permission_id** | **List[int]** | An array of permissions granted to the user or api key |
3637
**obj_user_real** | [**ActivesessionResponseCompoundUser**](ActivesessionResponseCompoundUser.md) | |
3738
**obj_user_cloned** | [**ActivesessionResponseCompoundUser**](ActivesessionResponseCompoundUser.md) | | [optional]

docs/ActivesessionResponseCompoundUser.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ Name | Type | Description | Notes
1212
**s_user_firstname** | **str** | The first name of the user |
1313
**s_user_lastname** | **str** | The last name of the user |
1414
**s_email_address** | **str** | The email address. | [optional]
15+
**b_user_addmeinezsignfolder** | **bool** | Whether if I want to automatically add myself during the creation of Ezsignfolder of which I am the owner |
1516
**e_user_ezsignsendreminderfrequency** | [**FieldEUserEzsignsendreminderfrequency**](FieldEUserEzsignsendreminderfrequency.md) | |
1617
**i_user_interfacecolor** | **int** | The int32 representation of the interface color. For example, RGB color #39435B would be 3752795 |
1718
**b_user_interfacedark** | **bool** | Whether to use a dark mode interface |
1819
**i_user_listresult** | **int** | The number of rows to return by default in lists |
20+
**i_user_frontendgoal** | **int** | Goals save as bit wise (one bit per goal) |
1921

2022
## Example
2123

0 commit comments

Comments
 (0)