Skip to content

Commit

Permalink
Update to formkiq v1.15.0 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfriesen committed Jul 7, 2024
1 parent f6d1215 commit 53c1ce3
Show file tree
Hide file tree
Showing 822 changed files with 32,936 additions and 3,685 deletions.
409 changes: 276 additions & 133 deletions .openapi-generator/FILES

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.4.0
7.7.0
173 changes: 140 additions & 33 deletions README.md

Large diffs are not rendered by default.

362 changes: 65 additions & 297 deletions docs/AccessControlApi.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/AddAction.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ print(AddAction.to_json())
# convert the object into a dict
add_action_dict = add_action_instance.to_dict()
# create an instance of AddAction from a dict
add_action_form_dict = add_action.from_dict(add_action_dict)
add_action_from_dict = AddAction.from_dict(add_action_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
9 changes: 6 additions & 3 deletions docs/AddActionParameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ocr_parse_types** | **str** | OCR: Parse types - TEXT, FORMS, TABLES | [optional]
**ocr_engine** | **str** | OCR: Engine to use for Optical character recognition | [optional]
**add_pdf_detected_characters_as_text** | **bool** | OCR: For the rewriting of the PDF document, converting any image text to searchable text | [optional]
**ocr_engine** | [**OcrEngine**](OcrEngine.md) | | [optional]
**ocr_output_type** | [**OcrOutputType**](OcrOutputType.md) | | [optional]
**ocr_number_of_pages** | **str** | Number of pages to OCR (from start) (-1 all) | [optional]
**add_pdf_detected_characters_as_text** | **str** | OCR: For the rewriting of the PDF document, converting any image text to searchable text | [optional]
**url** | **str** | Webhook: Callback URL | [optional]
**character_max** | **str** | Fulltext: Maximum number of characters (-1 unlimited, Typesense defaults to 2048 characters) | [optional]
**engine** | **str** | DocumentTagging: Engine to use for document tagging generation | [optional]
Expand All @@ -18,6 +20,7 @@ Name | Type | Description | Notes
**notification_text** | **str** | Text of the notification | [optional]
**notification_html** | **str** | Html of the notification | [optional]
**tags** | **str** | DocumentTagging: Comma-deliminted list of keywords to generate tags for | [optional]
**mapping_id** | **str** | Id of Mapping | [optional]

## Example

Expand All @@ -34,7 +37,7 @@ print(AddActionParameters.to_json())
# convert the object into a dict
add_action_parameters_dict = add_action_parameters_instance.to_dict()
# create an instance of AddActionParameters from a dict
add_action_parameters_form_dict = add_action_parameters.from_dict(add_action_parameters_dict)
add_action_parameters_from_dict = AddActionParameters.from_dict(add_action_parameters_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/AddApiKeyRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ print(AddApiKeyRequest.to_json())
# convert the object into a dict
add_api_key_request_dict = add_api_key_request_instance.to_dict()
# create an instance of AddApiKeyRequest from a dict
add_api_key_request_form_dict = add_api_key_request.from_dict(add_api_key_request_dict)
add_api_key_request_from_dict = AddApiKeyRequest.from_dict(add_api_key_request_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/AddApiKeyResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print(AddApiKeyResponse.to_json())
# convert the object into a dict
add_api_key_response_dict = add_api_key_response_instance.to_dict()
# create an instance of AddApiKeyResponse from a dict
add_api_key_response_form_dict = add_api_key_response.from_dict(add_api_key_response_dict)
add_api_key_response_from_dict = AddApiKeyResponse.from_dict(add_api_key_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
31 changes: 31 additions & 0 deletions docs/AddAttribute.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# AddAttribute


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**key** | **str** | Attribute Key |
**data_type** | [**AttributeDataType**](AttributeDataType.md) | | [optional] [default to AttributeDataType.STRING]
**type** | [**AttributeType**](AttributeType.md) | | [optional] [default to AttributeType.STANDARD]

## Example

```python
from formkiq_client.models.add_attribute import AddAttribute

# TODO update the JSON string below
json = "{}"
# create an instance of AddAttribute from a JSON string
add_attribute_instance = AddAttribute.from_json(json)
# print the JSON string representation of the object
print(AddAttribute.to_json())

# convert the object into a dict
add_attribute_dict = add_attribute_instance.to_dict()
# create an instance of AddAttribute from a dict
add_attribute_from_dict = AddAttribute.from_dict(add_attribute_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


29 changes: 29 additions & 0 deletions docs/AddAttributeRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# AddAttributeRequest


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**attribute** | [**AddAttribute**](AddAttribute.md) | |

## Example

```python
from formkiq_client.models.add_attribute_request import AddAttributeRequest

# TODO update the JSON string below
json = "{}"
# create an instance of AddAttributeRequest from a JSON string
add_attribute_request_instance = AddAttributeRequest.from_json(json)
# print the JSON string representation of the object
print(AddAttributeRequest.to_json())

# convert the object into a dict
add_attribute_request_dict = add_attribute_request_instance.to_dict()
# create an instance of AddAttributeRequest from a dict
add_attribute_request_from_dict = AddAttributeRequest.from_dict(add_attribute_request_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


29 changes: 29 additions & 0 deletions docs/AddAttributeResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# AddAttributeResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**message** | **str** | Response Message | [optional]

## Example

```python
from formkiq_client.models.add_attribute_response import AddAttributeResponse

# TODO update the JSON string below
json = "{}"
# create an instance of AddAttributeResponse from a JSON string
add_attribute_response_instance = AddAttributeResponse.from_json(json)
# print the JSON string representation of the object
print(AddAttributeResponse.to_json())

# convert the object into a dict
add_attribute_response_dict = add_attribute_response_instance.to_dict()
# create an instance of AddAttributeResponse from a dict
add_attribute_response_from_dict = AddAttributeResponse.from_dict(add_attribute_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


4 changes: 1 addition & 3 deletions docs/AddCase.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ Name | Type | Description | Notes
**case_number_format** | [**List[StringFormat]**](StringFormat.md) | Format of Case Number | [optional]
**metadata** | **Dict[str, object]** | | [optional]
**document_ids** | **List[str]** | | [optional]
**tasks** | [**List[AddTask]**](AddTask.md) | | [optional]
**nigos** | [**List[AddNigo]**](AddNigo.md) | | [optional]

## Example

Expand All @@ -32,7 +30,7 @@ print(AddCase.to_json())
# convert the object into a dict
add_case_dict = add_case_instance.to_dict()
# create an instance of AddCase from a dict
add_case_form_dict = add_case.from_dict(add_case_dict)
add_case_from_dict = AddCase.from_dict(add_case_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/AddCaseRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print(AddCaseRequest.to_json())
# convert the object into a dict
add_case_request_dict = add_case_request_instance.to_dict()
# create an instance of AddCaseRequest from a dict
add_case_request_form_dict = add_case_request.from_dict(add_case_request_dict)
add_case_request_from_dict = AddCaseRequest.from_dict(add_case_request_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/AddCaseResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print(AddCaseResponse.to_json())
# convert the object into a dict
add_case_response_dict = add_case_response_instance.to_dict()
# create an instance of AddCaseResponse from a dict
add_case_response_form_dict = add_case_response.from_dict(add_case_response_dict)
add_case_response_from_dict = AddCaseResponse.from_dict(add_case_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/AddChildDocument.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ print(AddChildDocument.to_json())
# convert the object into a dict
add_child_document_dict = add_child_document_instance.to_dict()
# create an instance of AddChildDocument from a dict
add_child_document_form_dict = add_child_document.from_dict(add_child_document_dict)
add_child_document_from_dict = AddChildDocument.from_dict(add_child_document_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/AddChildDocumentResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ print(AddChildDocumentResponse.to_json())
# convert the object into a dict
add_child_document_response_dict = add_child_document_response_instance.to_dict()
# create an instance of AddChildDocumentResponse from a dict
add_child_document_response_form_dict = add_child_document_response.from_dict(add_child_document_response_dict)
add_child_document_response_from_dict = AddChildDocumentResponse.from_dict(add_child_document_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
30 changes: 30 additions & 0 deletions docs/AddClassification.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# AddClassification


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | Name of Classification | [optional]
**attributes** | [**SchemaAttributes**](SchemaAttributes.md) | | [optional]

## Example

```python
from formkiq_client.models.add_classification import AddClassification

# TODO update the JSON string below
json = "{}"
# create an instance of AddClassification from a JSON string
add_classification_instance = AddClassification.from_json(json)
# print the JSON string representation of the object
print(AddClassification.to_json())

# convert the object into a dict
add_classification_dict = add_classification_instance.to_dict()
# create an instance of AddClassification from a dict
add_classification_from_dict = AddClassification.from_dict(add_classification_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


29 changes: 29 additions & 0 deletions docs/AddClassificationRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# AddClassificationRequest


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**classification** | [**AddClassification**](AddClassification.md) | | [optional]

## Example

```python
from formkiq_client.models.add_classification_request import AddClassificationRequest

# TODO update the JSON string below
json = "{}"
# create an instance of AddClassificationRequest from a JSON string
add_classification_request_instance = AddClassificationRequest.from_json(json)
# print the JSON string representation of the object
print(AddClassificationRequest.to_json())

# convert the object into a dict
add_classification_request_dict = add_classification_request_instance.to_dict()
# create an instance of AddClassificationRequest from a dict
add_classification_request_from_dict = AddClassificationRequest.from_dict(add_classification_request_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


29 changes: 29 additions & 0 deletions docs/AddClassificationResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# AddClassificationResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**classification_id** | **str** | Classification Identifier | [optional]

## Example

```python
from formkiq_client.models.add_classification_response import AddClassificationResponse

# TODO update the JSON string below
json = "{}"
# create an instance of AddClassificationResponse from a JSON string
add_classification_response_instance = AddClassificationResponse.from_json(json)
# print the JSON string representation of the object
print(AddClassificationResponse.to_json())

# convert the object into a dict
add_classification_response_dict = add_classification_response_instance.to_dict()
# create an instance of AddClassificationResponse from a dict
add_classification_response_from_dict = AddClassificationResponse.from_dict(add_classification_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


2 changes: 1 addition & 1 deletion docs/AddDocumentActionsRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print(AddDocumentActionsRequest.to_json())
# convert the object into a dict
add_document_actions_request_dict = add_document_actions_request_instance.to_dict()
# create an instance of AddDocumentActionsRequest from a dict
add_document_actions_request_form_dict = add_document_actions_request.from_dict(add_document_actions_request_dict)
add_document_actions_request_from_dict = AddDocumentActionsRequest.from_dict(add_document_actions_request_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/AddDocumentActionsResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print(AddDocumentActionsResponse.to_json())
# convert the object into a dict
add_document_actions_response_dict = add_document_actions_response_instance.to_dict()
# create an instance of AddDocumentActionsResponse from a dict
add_document_actions_response_form_dict = add_document_actions_response.from_dict(add_document_actions_response_dict)
add_document_actions_response_from_dict = AddDocumentActionsResponse.from_dict(add_document_actions_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/AddDocumentActionsRetryResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print(AddDocumentActionsRetryResponse.to_json())
# convert the object into a dict
add_document_actions_retry_response_dict = add_document_actions_retry_response_instance.to_dict()
# create an instance of AddDocumentActionsRetryResponse from a dict
add_document_actions_retry_response_form_dict = add_document_actions_retry_response.from_dict(add_document_actions_retry_response_dict)
add_document_actions_retry_response_from_dict = AddDocumentActionsRetryResponse.from_dict(add_document_actions_retry_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
35 changes: 35 additions & 0 deletions docs/AddDocumentAttribute.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# AddDocumentAttribute


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**key** | **str** | Attribute key |
**string_value** | **str** | Attribute with string value | [optional]
**string_values** | **List[str]** | Attribute with string values | [optional]
**number_value** | **float** | Attribute with number value | [optional]
**number_values** | **List[float]** | Attribute with number values | [optional]
**boolean_value** | **bool** | Attribute with boolean value | [optional]
**classification_id** | **str** | Classification Identifier | [optional]

## Example

```python
from formkiq_client.models.add_document_attribute import AddDocumentAttribute

# TODO update the JSON string below
json = "{}"
# create an instance of AddDocumentAttribute from a JSON string
add_document_attribute_instance = AddDocumentAttribute.from_json(json)
# print the JSON string representation of the object
print(AddDocumentAttribute.to_json())

# convert the object into a dict
add_document_attribute_dict = add_document_attribute_instance.to_dict()
# create an instance of AddDocumentAttribute from a dict
add_document_attribute_from_dict = AddDocumentAttribute.from_dict(add_document_attribute_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


30 changes: 30 additions & 0 deletions docs/AddDocumentAttributeClassification.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# AddDocumentAttributeClassification

Document Classification

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**classification_id** | **str** | Classification Identifier | [optional]

## Example

```python
from formkiq_client.models.add_document_attribute_classification import AddDocumentAttributeClassification

# TODO update the JSON string below
json = "{}"
# create an instance of AddDocumentAttributeClassification from a JSON string
add_document_attribute_classification_instance = AddDocumentAttributeClassification.from_json(json)
# print the JSON string representation of the object
print(AddDocumentAttributeClassification.to_json())

# convert the object into a dict
add_document_attribute_classification_dict = add_document_attribute_classification_instance.to_dict()
# create an instance of AddDocumentAttributeClassification from a dict
add_document_attribute_classification_from_dict = AddDocumentAttributeClassification.from_dict(add_document_attribute_classification_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


Loading

0 comments on commit 53c1ce3

Please sign in to comment.