Skip to content

Commit

Permalink
Release of Version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kgatz committed Sep 10, 2024
1 parent 8914f64 commit 57728a3
Show file tree
Hide file tree
Showing 32 changed files with 27,544 additions and 7,438 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
public/
dist/
pyxecm.egg-info/
__pycache__/
.venv/
debug/
__pycache__
build/
.env
pyxecm/.vscode/
~$*
3 changes: 3 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Changelog

--8<-- "CHANGELOG.md"
368 changes: 329 additions & 39 deletions docs/payload-syntax.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/pyxecm/coreshare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
::: pyxecm.coreshare
1 change: 1 addition & 0 deletions docs/pyxecm/otmm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
::: pyxecm.otmm
1 change: 1 addition & 0 deletions docs/pyxecm/successfactors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
::: pyxecm.customizer.successfactors
6 changes: 5 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: pyxecm

site_url: https://example.com/
site_url: https://opentext.github.io/pyxecm/

theme:
name: "material"
Expand Down Expand Up @@ -53,12 +53,16 @@ nav:
- Archive Center (OTAC): pyxecm/otac.md
- Intelligent Viewing (OTIV): pyxecm/otiv.md
- PowerDocs (OTPD): pyxecm/otpd.md
- Media Management (OTMM): pyxecm/otmm.md
- Core Share: pyxecm/coreshare.md
- Customizer Python Classes:
- Payload: pyxecm/payload.md
- Customizer: pyxecm/customizer.md
- Browser Automation: pyxecm/browser.md
- K8s: pyxecm/k8s.md
- Microsoft 365: pyxecm/m365.md
- SuccessFactors: pyxecm/successfactors.md
- Salesforce: pyxecm/salesforce.md
- SAP: pyxecm/sap.md
- Translate: pyxecm/translate.md
- Helper Python Classes:
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ dependencies = [
'python-hcl2',
'xmltodict',
'lxml',
'openpyxl',
'pandas',
]
keywords = [
"opentext",
Expand Down
3 changes: 3 additions & 0 deletions pyxecm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
"""pyxecm - A python library to interact with Opentext Extended ECM REST API."""

from .otac import OTAC
from .otcs import OTCS
from .otds import OTDS
from .otiv import OTIV
from .otpd import OTPD
from .otmm import OTMM
from .coreshare import CoreShare
Loading

0 comments on commit 57728a3

Please sign in to comment.