Metadata-Version: 2.4
Name: royal-sdk-encompass-mock-data
Version: 0.2.0
Summary: Deterministic typed mock data for the Royal Encompass Python SDK
License: Proprietary
Requires-Python: >=3.11
Requires-Dist: royal-sdk-encompass==0.1.0
Description-Content-Type: text/markdown

# Royal Encompass Python mock data

Deterministic, typed mock objects for `royal-sdk-encompass`. Pipeline and
field-reader defaults are bundled from sanitized captures of the real V3 read
endpoints. Every call returns a fresh mutable object graph, and all customer
values are fictional.

```python
from royal_sdk_encompass_mock_data import (
    create_field_reader_response,
    create_loan_batch_update_request,
    create_loan_pipeline_item,
    create_loan_pipeline_response,
)

loan = create_loan_pipeline_item({"loanId": "test-loan"})
pipeline = create_loan_pipeline_response()
fields = create_field_reader_response()
update = create_loan_batch_update_request()
```

Overrides use the vendor wire names accepted by the generated models.
