Skip to content

Commit 66af2d1

Browse files
committed
Bump version to 1.1.0
1 parent 9c83d6c commit 66af2d1

381 files changed

Lines changed: 71210 additions & 6184 deletions

File tree

Some content is hidden

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

client/.openapi-generator/FILES

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

client/README.md

Lines changed: 182 additions & 1 deletion
Large diffs are not rendered by default.

client/__init__.py

Lines changed: 120 additions & 1 deletion
Large diffs are not rendered by default.

client/api/default_api.py

Lines changed: 20951 additions & 2560 deletions
Large diffs are not rendered by default.

client/api/public_api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8175,7 +8175,7 @@ def search_users(
81758175
self,
81768176
tenant_id: StrictStr,
81778177
url_id: StrictStr,
8178-
username_starts_with: StrictStr,
8178+
username_starts_with: Optional[StrictStr] = None,
81798179
mention_group_ids: Optional[List[StrictStr]] = None,
81808180
sso: Optional[StrictStr] = None,
81818181
_request_timeout: Union[
@@ -8198,7 +8198,7 @@ def search_users(
81988198
:type tenant_id: str
81998199
:param url_id: (required)
82008200
:type url_id: str
8201-
:param username_starts_with: (required)
8201+
:param username_starts_with:
82028202
:type username_starts_with: str
82038203
:param mention_group_ids:
82048204
:type mention_group_ids: List[str]
@@ -8257,7 +8257,7 @@ def search_users_with_http_info(
82578257
self,
82588258
tenant_id: StrictStr,
82598259
url_id: StrictStr,
8260-
username_starts_with: StrictStr,
8260+
username_starts_with: Optional[StrictStr] = None,
82618261
mention_group_ids: Optional[List[StrictStr]] = None,
82628262
sso: Optional[StrictStr] = None,
82638263
_request_timeout: Union[
@@ -8280,7 +8280,7 @@ def search_users_with_http_info(
82808280
:type tenant_id: str
82818281
:param url_id: (required)
82828282
:type url_id: str
8283-
:param username_starts_with: (required)
8283+
:param username_starts_with:
82848284
:type username_starts_with: str
82858285
:param mention_group_ids:
82868286
:type mention_group_ids: List[str]
@@ -8339,7 +8339,7 @@ def search_users_without_preload_content(
83398339
self,
83408340
tenant_id: StrictStr,
83418341
url_id: StrictStr,
8342-
username_starts_with: StrictStr,
8342+
username_starts_with: Optional[StrictStr] = None,
83438343
mention_group_ids: Optional[List[StrictStr]] = None,
83448344
sso: Optional[StrictStr] = None,
83458345
_request_timeout: Union[
@@ -8362,7 +8362,7 @@ def search_users_without_preload_content(
83628362
:type tenant_id: str
83638363
:param url_id: (required)
83648364
:type url_id: str
8365-
:param username_starts_with: (required)
8365+
:param username_starts_with:
83668366
:type username_starts_with: str
83678367
:param mention_group_ids:
83688368
:type mention_group_ids: List[str]

client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/0.0.1/python'
93+
self.user_agent = 'OpenAPI-Generator/1.0.0/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ def to_debug_report(self) -> str:
524524
"OS: {env}\n"\
525525
"Python Version: {pyversion}\n"\
526526
"Version of the API: 0.0.0\n"\
527-
"SDK Package Version: 0.0.1".\
527+
"SDK Package Version: 1.0.0".\
528528
format(env=sys.platform, pyversion=sys.version)
529529

530530
def get_host_settings(self) -> List[HostSetting]:
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# APIDomainConfiguration
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**id** | **str** | |
9+
**domain** | **str** | |
10+
**email_from_name** | **str** | | [optional]
11+
**email_from_email** | **str** | | [optional]
12+
**email_headers** | **Dict[str, str]** | Construct a type with a set of properties K of type T | [optional]
13+
**wp_sync_token** | **str** | | [optional]
14+
**wp_synced** | **bool** | | [optional]
15+
**wp_url** | **str** | | [optional]
16+
**created_at** | **datetime** | |
17+
**auto_added_date** | **datetime** | | [optional]
18+
**site_type** | [**ImportedSiteType**](ImportedSiteType.md) | | [optional]
19+
**logo_src** | **str** | | [optional]
20+
**logo_src100px** | **str** | | [optional]
21+
**footer_unsubscribe_url** | **str** | | [optional]
22+
**disable_unsubscribe_links** | **bool** | | [optional]
23+
24+
## Example
25+
26+
```python
27+
from client.models.api_domain_configuration import APIDomainConfiguration
28+
29+
# TODO update the JSON string below
30+
json = "{}"
31+
# create an instance of APIDomainConfiguration from a JSON string
32+
api_domain_configuration_instance = APIDomainConfiguration.from_json(json)
33+
# print the JSON string representation of the object
34+
print(APIDomainConfiguration.to_json())
35+
36+
# convert the object into a dict
37+
api_domain_configuration_dict = api_domain_configuration_instance.to_dict()
38+
# create an instance of APIDomainConfiguration from a dict
39+
api_domain_configuration_from_dict = APIDomainConfiguration.from_dict(api_domain_configuration_dict)
40+
```
41+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
42+
43+

client/docs/APITenant.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# APITenant
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**id** | **str** | |
9+
**name** | **str** | |
10+
**email** | **str** | | [optional]
11+
**sign_up_date** | **float** | |
12+
**package_id** | **str** | |
13+
**payment_frequency** | **float** | |
14+
**billing_info_valid** | **bool** | |
15+
**billing_handled_externally** | **bool** | | [optional]
16+
**created_by** | **str** | |
17+
**is_setup** | **bool** | |
18+
**domain_configuration** | [**List[APIDomainConfiguration]**](APIDomainConfiguration.md) | |
19+
**billing_info** | [**BillingInfo**](BillingInfo.md) | | [optional]
20+
**stripe_customer_id** | **str** | | [optional]
21+
**stripe_subscription_id** | **str** | | [optional]
22+
**stripe_plan_id** | **str** | | [optional]
23+
**enable_profanity_filter** | **bool** | |
24+
**enable_spam_filter** | **bool** | |
25+
**last_billing_issue_reminder_date** | **datetime** | | [optional]
26+
**remove_unverified_comments** | **bool** | | [optional]
27+
**unverified_comments_tt_lms** | **float** | | [optional]
28+
**comments_require_approval** | **bool** | | [optional]
29+
**auto_approve_comment_on_verification** | **bool** | | [optional]
30+
**send_profane_to_spam** | **bool** | | [optional]
31+
**has_flex_pricing** | **bool** | | [optional]
32+
**has_auditing** | **bool** | | [optional]
33+
**flex_last_billed_amount** | **float** | | [optional]
34+
**de_anon_ip_addr** | **float** | | [optional]
35+
**meta** | **Dict[str, str]** | Construct a type with a set of properties K of type T | [optional]
36+
37+
## Example
38+
39+
```python
40+
from client.models.api_tenant import APITenant
41+
42+
# TODO update the JSON string below
43+
json = "{}"
44+
# create an instance of APITenant from a JSON string
45+
api_tenant_instance = APITenant.from_json(json)
46+
# print the JSON string representation of the object
47+
print(APITenant.to_json())
48+
49+
# convert the object into a dict
50+
api_tenant_dict = api_tenant_instance.to_dict()
51+
# create an instance of APITenant from a dict
52+
api_tenant_from_dict = APITenant.from_dict(api_tenant_dict)
53+
```
54+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
55+
56+

client/docs/APITenantDailyUsage.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# APITenantDailyUsage
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**id** | **str** | |
9+
**tenant_id** | **str** | |
10+
**year_number** | **float** | |
11+
**month_number** | **float** | |
12+
**day_number** | **float** | |
13+
**comment_fetch_count** | **float** | |
14+
**comment_create_count** | **float** | |
15+
**conversation_create_count** | **float** | |
16+
**vote_count** | **float** | |
17+
**account_created_count** | **float** | |
18+
**user_mention_search** | **float** | |
19+
**hash_tag_search** | **float** | |
20+
**gif_search_trending** | **float** | |
21+
**gif_search** | **float** | |
22+
**api_credits_used** | **float** | |
23+
**created_at** | **datetime** | |
24+
**billed** | **bool** | |
25+
**ignored** | **bool** | |
26+
**api_error_count** | **float** | |
27+
28+
## Example
29+
30+
```python
31+
from client.models.api_tenant_daily_usage import APITenantDailyUsage
32+
33+
# TODO update the JSON string below
34+
json = "{}"
35+
# create an instance of APITenantDailyUsage from a JSON string
36+
api_tenant_daily_usage_instance = APITenantDailyUsage.from_json(json)
37+
# print the JSON string representation of the object
38+
print(APITenantDailyUsage.to_json())
39+
40+
# convert the object into a dict
41+
api_tenant_daily_usage_dict = api_tenant_daily_usage_instance.to_dict()
42+
# create an instance of APITenantDailyUsage from a dict
43+
api_tenant_daily_usage_from_dict = APITenantDailyUsage.from_dict(api_tenant_daily_usage_dict)
44+
```
45+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
46+
47+

0 commit comments

Comments
 (0)