Skip to content

Commit 45682de

Browse files
author
brandon
committed
regenerate
1 parent c2181d5 commit 45682de

21 files changed

+751
-26
lines changed

generated/.openapi-generator/FILES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ docs/PaginatedDetectorList.md
4747
docs/PaginatedImageQueryList.md
4848
docs/PaginatedRuleList.md
4949
docs/PatchedDetectorRequest.md
50+
docs/PayloadTemplate.md
51+
docs/PayloadTemplateRequest.md
5052
docs/ROI.md
5153
docs/ROIRequest.md
5254
docs/ResultTypeEnum.md
@@ -117,6 +119,8 @@ groundlight_openapi_client/model/paginated_detector_list.py
117119
groundlight_openapi_client/model/paginated_image_query_list.py
118120
groundlight_openapi_client/model/paginated_rule_list.py
119121
groundlight_openapi_client/model/patched_detector_request.py
122+
groundlight_openapi_client/model/payload_template.py
123+
groundlight_openapi_client/model/payload_template_request.py
120124
groundlight_openapi_client/model/result_type_enum.py
121125
groundlight_openapi_client/model/roi.py
122126
groundlight_openapi_client/model/roi_request.py
@@ -138,4 +142,6 @@ setup.cfg
138142
setup.py
139143
test-requirements.txt
140144
test/__init__.py
145+
test/test_payload_template.py
146+
test/test_payload_template_request.py
141147
tox.ini

generated/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ rule_request = RuleRequest(
9494
WebhookActionRequest(
9595
url="url_example",
9696
include_image=True,
97+
payload_template=None,
9798
),
9899
],
99100
) # RuleRequest |
@@ -178,6 +179,8 @@ Class | Method | HTTP request | Description
178179
- [PaginatedImageQueryList](docs/PaginatedImageQueryList.md)
179180
- [PaginatedRuleList](docs/PaginatedRuleList.md)
180181
- [PatchedDetectorRequest](docs/PatchedDetectorRequest.md)
182+
- [PayloadTemplate](docs/PayloadTemplate.md)
183+
- [PayloadTemplateRequest](docs/PayloadTemplateRequest.md)
181184
- [ROI](docs/ROI.md)
182185
- [ROIRequest](docs/ROIRequest.md)
183186
- [ResultTypeEnum](docs/ResultTypeEnum.md)

generated/docs/ActionsApi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ with groundlight_openapi_client.ApiClient(configuration) as api_client:
6969
WebhookActionRequest(
7070
url="url_example",
7171
include_image=True,
72+
payload_template=None,
7273
),
7374
],
7475
) # RuleRequest |

generated/docs/DetectorsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ Name | Type | Description | Notes
258258
259259

260260

261-
Get Detector evaluation results Is null if there isn't enough ground truth data to evaluate the detector.returns the time of the evaulation, total ground truth labels, the ml based kfold accuracies, and the system accuracies at different confidence thresholds
261+
Get Detector evaluation results. The result is null if there isn't enough ground truth data to evaluate the detector. Returns the time of the evaulation, total ground truth labels, the ml based kfold accuracies, and the system accuracies at different confidence thresholds
262262

263263
### Example
264264

generated/docs/PayloadTemplate.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# PayloadTemplate
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**template** | **str** | |
8+
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
12+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# PayloadTemplateRequest
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**template** | **str** | |
8+
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
12+

generated/docs/TextRecognitionResult.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**text** | **str, none_type** | |
7+
**text** | **str** | |
88
**truncated** | **bool** | |
99
**confidence** | **float, none_type** | | [optional]
1010
**source** | **str** | | [optional]

generated/docs/WebhookAction.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**url** | **str** | |
8-
**include_image** | **bool, none_type** | | [optional]
8+
**include_image** | **bool** | | [optional]
9+
**payload_template** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional]
910
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1011

1112
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

generated/docs/WebhookActionRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**url** | **str** | |
88
**include_image** | **bool** | | [optional]
9+
**payload_template** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional]
910
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1011

1112
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

generated/groundlight_openapi_client/api/detectors_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ def get_detector(self, id, **kwargs):
498498
def get_detector_evaluation(self, id, **kwargs):
499499
"""get_detector_evaluation # noqa: E501
500500
501-
Get Detector evaluation results Is null if there isn't enough ground truth data to evaluate the detector.returns the time of the evaulation, total ground truth labels, the ml based kfold accuracies, and the system accuracies at different confidence thresholds # noqa: E501
501+
Get Detector evaluation results. The result is null if there isn't enough ground truth data to evaluate the detector. Returns the time of the evaulation, total ground truth labels, the ml based kfold accuracies, and the system accuracies at different confidence thresholds # noqa: E501
502502
This method makes a synchronous HTTP request by default. To make an
503503
asynchronous HTTP request, please pass async_req=True
504504

0 commit comments

Comments
 (0)