Skip to content

Commit 660f55f

Browse files
feat: full apgrade to 1.0.20 to map subscription to plan_id
1 parent 9a2eaff commit 660f55f

17 files changed

+20
-18
lines changed

.env

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,6 @@ target/
6464

6565
#Ipython Notebook
6666
.ipynb_checkpoints
67+
local_test.py
68+
.env
69+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ API for managing email and workplace service subscriptions.
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: v1
7-
- Package version: 1.0.19
7+
- Package version: 1.0.20
88
- Generator version: 7.13.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"packageName": "workplace_client",
33
"projectName": "truehost-workplace-api-client",
4-
"packageVersion": "1.0.19",
4+
"packageVersion": "1.0.20",
55
"packageUrl": "https://github.com/truehostcloud/workplace-python-client",
66
"packageCompany": "Truehost",
77
"packageAuthor": "Patience Igiraneza",

docs/DeleteEmail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**email** | **str** | |
99
**domain** | **str** | |
10-
**subscription** | **int** | |
10+
**plan_id** | **int** | |
1111

1212
## Example
1313

docs/OrderDisplay.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Name | Type | Description | Notes
2828
**is_dns_valid** | **bool** | | [optional]
2929
**client_id** | **int** | | [optional]
3030
**is_verified** | **bool** | | [optional]
31-
**subscription** | **int** | | [optional]
31+
**plan_id** | **int** | | [optional]
3232

3333
## Example
3434

docs/SubScriptionInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**domain** | **str** | |
9-
**subscription** | **int** | |
9+
**plan_id** | **int** | |
1010

1111
## Example
1212

docs/WorkplaceCreateEmails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**emails** | **List[str]** | |
99
**domain_name** | **str** | |
10-
**subscription** | **int** | |
10+
**plan_id** | **int** | |
1111
**new_subscription** | **bool** | |
1212
**display_name** | **str** | |
1313
**user_password** | **str** | |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "workplace_client"
3-
version = "1.0.19"
3+
version = "1.0.20"
44
description = "Workplace Console API"
55
authors = ["OpenAPI Generator Community <support@truehost.cloud>"]
66
license = "NoLicense"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "truehost-workplace-api-client"
25-
VERSION = "1.0.19"
25+
VERSION = "1.0.20"
2626
PYTHON_REQUIRES = ">= 3.9"
2727
REQUIRES = [
2828
"urllib3 >= 2.1.0, < 3.0.0",

0 commit comments

Comments
 (0)