entryscape 1.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. entryscape/__init__.py +219 -0
  2. entryscape/api/__init__.py +26 -0
  3. entryscape/api/app_token_api.py +835 -0
  4. entryscape/api/auth_api.py +965 -0
  5. entryscape/api/catalog_api.py +4473 -0
  6. entryscape/api/contact_api.py +3135 -0
  7. entryscape/api/dataservice_api.py +3135 -0
  8. entryscape/api/dataset_api.py +3804 -0
  9. entryscape/api/distribution_api.py +3135 -0
  10. entryscape/api/document_api.py +2740 -0
  11. entryscape/api/idea_api.py +2740 -0
  12. entryscape/api/job_api.py +360 -0
  13. entryscape/api/model_api.py +2446 -0
  14. entryscape/api/model_class_api.py +2611 -0
  15. entryscape/api/model_diagram_api.py +2611 -0
  16. entryscape/api/model_field_api.py +2611 -0
  17. entryscape/api/model_form_api.py +2611 -0
  18. entryscape/api/model_namespace_api.py +2611 -0
  19. entryscape/api/model_property_api.py +2611 -0
  20. entryscape/api/organization_api.py +3135 -0
  21. entryscape/api/search_api.py +1513 -0
  22. entryscape/api/showcase_api.py +2740 -0
  23. entryscape/api/suggestion_api.py +2740 -0
  24. entryscape/api/terminology_api.py +1726 -0
  25. entryscape/api/upload_api.py +814 -0
  26. entryscape/api_client.py +763 -0
  27. entryscape/api_response.py +20 -0
  28. entryscape/configuration.py +673 -0
  29. entryscape/exceptions.py +222 -0
  30. entryscape/models/__init__.py +71 -0
  31. entryscape/models/app_token.py +156 -0
  32. entryscape/models/app_token_create_request.py +98 -0
  33. entryscape/models/app_token_create_response.py +169 -0
  34. entryscape/models/app_token_status.py +35 -0
  35. entryscape/models/app_token_verify_request.py +109 -0
  36. entryscape/models/entity_list_item.py +175 -0
  37. entryscape/models/entity_list_response.py +139 -0
  38. entryscape/models/entity_reference.py +189 -0
  39. entryscape/models/entity_type.py +57 -0
  40. entryscape/models/error.py +135 -0
  41. entryscape/models/facet_field.py +115 -0
  42. entryscape/models/facet_field_values_inner.py +100 -0
  43. entryscape/models/facet_list.py +113 -0
  44. entryscape/models/facet_list_available_inner.py +107 -0
  45. entryscape/models/job_response.py +112 -0
  46. entryscape/models/job_status.py +189 -0
  47. entryscape/models/job_status_progress.py +100 -0
  48. entryscape/models/job_status_value.py +37 -0
  49. entryscape/models/job_type.py +37 -0
  50. entryscape/models/list_catalogs_entry_type_parameter.py +37 -0
  51. entryscape/models/list_catalogs_graph_type_parameter.py +44 -0
  52. entryscape/models/list_catalogs_resource_type_parameter.py +37 -0
  53. entryscape/models/login_request.py +108 -0
  54. entryscape/models/login_response.py +115 -0
  55. entryscape/models/metadata_format.py +38 -0
  56. entryscape/models/metadata_request.py +99 -0
  57. entryscape/models/parent_reference.py +130 -0
  58. entryscape/models/search_request.py +158 -0
  59. entryscape/models/search_request_filters.py +144 -0
  60. entryscape/models/search_request_filters_graph_type.py +44 -0
  61. entryscape/models/search_request_filters_resource_type.py +37 -0
  62. entryscape/models/search_request_sort.py +38 -0
  63. entryscape/models/search_request_sort_order.py +35 -0
  64. entryscape/models/search_response.py +175 -0
  65. entryscape/models/search_result.py +175 -0
  66. entryscape/models/search_result_graph_type.py +44 -0
  67. entryscape/models/search_result_resource_type.py +37 -0
  68. entryscape/models/search_sort_order_parameter.py +35 -0
  69. entryscape/models/terminology_import_mode.py +35 -0
  70. entryscape/models/validation_profile.py +36 -0
  71. entryscape/models/validation_response.py +149 -0
  72. entryscape/models/validation_result.py +162 -0
  73. entryscape/models/validation_severity.py +36 -0
  74. entryscape/models/validation_summary.py +122 -0
  75. entryscape/models/whoami_response.py +104 -0
  76. entryscape/py.typed +0 -0
  77. entryscape/rest.py +210 -0
  78. entryscape-1.3.0.dist-info/METADATA +696 -0
  79. entryscape-1.3.0.dist-info/RECORD +82 -0
  80. entryscape-1.3.0.dist-info/WHEEL +5 -0
  81. entryscape-1.3.0.dist-info/licenses/LICENSE.txt +165 -0
  82. entryscape-1.3.0.dist-info/top_level.txt +1 -0
entryscape/__init__.py ADDED
@@ -0,0 +1,219 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ EntryScape API
7
+
8
+ This API provides structured access to EntryScape data following DCAT-AP standards. All entity endpoints follow a consistent pattern: - GET /{entity} - List all entities - POST /{entity} - Create a new entity (DCAT types only) - GET /{entity}/{context_id}/{entry_id} - Get entity reference info - DELETE /{entity}/{context_id}/{entry_id} - Delete an entity (DCAT types only) - GET /{entity}/{context_id}/{entry_id}/metadata - Get raw RDF metadata - PUT /{entity}/{context_id}/{entry_id}/metadata - Replace raw RDF metadata (JSON-LD, Turtle, RDF/XML, or N-Triples passthrough) ## Reading and consistency Reads of a single entity — `GET /{entity}/{context_id}/{entry_id}` and its `/metadata` — go straight to the store and always reflect the latest write. Lists and search do not. They are answered from a search index that is updated asynchronously, so for a short interval after a write: - an entry that was just created may be missing from the list it belongs to, while reading it by id already works; - an entry that was just deleted may still appear; - `results` counts what the index holds, not what the store holds. Write a client that tolerates this: after creating an entry, use the id the create returned rather than searching for what you just wrote. `results` is also an upper bound rather than an exact count when the caller cannot read every hit (see the field's own description). Separately, responses are cached for 15 minutes by default, which is a second and unrelated source of staleness. A write invalidates the cache entries it affects, but a read that lands in the indexing gap can cache a list that does not yet show it. ## Authentication Most endpoints require an authenticated session. Reading public data works without authentication, while creating, updating, and deleting entities requires a valid user session. 1. **Log in** with `POST /auth/login`, supplying an EntryStore username and password. The response returns an `auth_token`. 2. **Send the token** on subsequent requests via the `X-Auth-Token` header. This is the recommended method for SDK and programmatic access. Browser clients can instead rely on the `auth_token` cookie, which the server sets automatically on login (`SameSite=Lax; Secure`). 3. **Inspect the session** with `GET /auth/whoami`, which returns the current user or an anonymous/guest identity when no valid token is supplied. 4. **Log out** with `POST /auth/logout` to invalidate the token and clear the cookie. ### Writes and CSRF Send the token as the `X-Auth-Token` **header** and there is nothing else to do: creates, updates and deletes work as they are, which is how the SDKs and the MCP server are built. The `auth_token` cookie is different. A cookie is attached by the browser automatically, so a state-changing request authenticated by it alone is what cross-site request forgery abuses, and those requests additionally need a double-submit token: read the `XSRF-TOKEN` cookie the server sets on any response and send its value back as the `X-XSRF-TOKEN` header. Without it the request is rejected with `403` before it reaches the endpoint. A custom header cannot be forged this way — cross-origin JavaScript cannot set one without a CORS preflight, which this API grants only to configured origins — so the header is the recommended path for anything that is not a browser session. ### App Tokens An app token identifies an integration. Create one with `POST /app-token` (unauthenticated). Creation requires an email address: the token starts in the `pending` state and a 6-digit code is emailed to the owner. Confirm the code with `POST /app-token/verify` to activate the token and receive its value, which is shown only once — store it securely. `GET /app-token/{app_token_id}` then returns its details and quota usage, authenticated by the token itself via the `X-App-Token` header. **The `X-App-Token` header is accepted only by `GET /app-token/{app_token_id}`.** No other operation reads it, and the read quota is recorded but not yet enforced: reading public data needs no token of any kind, and sending an app token with a read neither grants nor meters anything. Metered public read access is the intent of the two-token model, not a description of this release — see the `security` declared on each operation for what it actually accepts. ## SDKs Generated clients for Python, TypeScript, JavaScript and C# wrap every operation below, and each operation on this page shows the SDK call beside the `curl` command. Two of them install from a public registry: ``` pip install entryscape # Python npm install @entryscape/api-client # TypeScript and JavaScript ``` `@entryscape/api-client` ships an ESM and a CommonJS build, so `import` and `require()` both work and TypeScript is not required to use it — the name describes what it is written in, not what you have to write. There is a separate generated JavaScript SDK, and it is deliberately **not** on npm; this package is the npm client for both languages. Every SDK, including the C# and JavaScript ones, is also published as a tarball. The downloads are linked in the sidebar, they are the route to take when a registry is unreachable or a build has to vendor its dependencies, and each archive carries the SDK's own README: - **Python** — `pip install entryscape`, or `python-sdk.tar.gz`. - **TypeScript and JavaScript** — `npm install @entryscape/api-client`, or `typescript-sdk.tar.gz`. - **JavaScript (the separate generated client)** — not published to a registry, by design; `javascript-sdk.tar.gz` only. - **C#** — not published to NuGet yet; `csharp-sdk.tar.gz` only. - **MCP server** — `npx -y @entryscape/mcp-server`, or `mcp-server.tar.gz`. ## MCP Server A Model Context Protocol (MCP) server is generated from this specification and published alongside the SDKs (`@entryscape/mcp-server`), exposing the API as tools for AI assistants and agents. Each operation becomes one tool named after its `operationId` — `listDatasets`, `createCatalog`, `search`, `getJobStatus`. The `auth` operations are the exception: the server reads its token once at startup, so a `login` tool could install nothing and a `logout` tool would only invalidate the token the server was started with. On connect the server also hands the assistant a short set of rules that hold across every tool: a token is bound to one EntryStore instance, the search index lags a write, uploads finish as jobs. ### Install The server is on npm, and MCP servers are normally launched straight from there, so nothing has to be installed first: ``` npx -y @entryscape/mcp-server ``` `npm install -g @entryscape/mcp-server` works too and puts an `entryscape-mcp` binary on `PATH`. It is also listed in the MCP Registry as `com.entryscape/mcp-server`, which is where clients and marketplaces look it up. Without npm, download `mcp-server.tar.gz` from the SDK downloads and unpack it. The package ships prebuilt; install its runtime dependency once: ``` mkdir entryscape-mcp && tar -xzf mcp-server.tar.gz -C entryscape-mcp cd entryscape-mcp && npm install --omit=dev ``` ### Configure The server is a stdio MCP server configured through environment variables, read once at startup: - `ENTRYSCAPE_API_URL` — base URL of the API server, path included. Required: there is no default, and the server refuses to start without it. - `ENTRYSCAPE_AUTH_TOKEN` — a session token from `POST /auth/login`, sent as the `X-Auth-Token` header. Optional: without it reads see public entries and every write is refused. A token is valid only for the EntryStore instance that issued it. - `ENTRYSCAPE_ENTRYSTORE_HOST` — the EntryStore instance the API server should use, for example `dev.entryscape.com/store/`. Unset means the API server's own default. - `ENTRYSCAPE_MCP_UPLOAD_ROOT` — the directory the upload tools may read files from. **Unset means uploads are disabled**: `addFileToDistribution`, `replaceFileInDistribution` and `importTerminology` refuse and say so. - `ENTRYSCAPE_MCP_TAGS` — comma-separated tags to serve tools for, for example `catalog,dataset,distribution,search`. Unset serves every tool. The package's `README.md` lists the remaining variables (timeouts and size caps). Register the server with any MCP-capable client by adding it to the client's `mcpServers` configuration: ```json { \"mcpServers\": { \"entryscape\": { \"command\": \"npx\", \"args\": [\"-y\", \"@entryscape/mcp-server\"], \"env\": { \"ENTRYSCAPE_API_URL\": \"https://<your EntryScape API host>\", \"ENTRYSCAPE_AUTH_TOKEN\": \"your-session-token\" } } } } ``` From an unpacked download instead, the command is `\"command\": \"node\", \"args\": [\"/path/to/entryscape-mcp/dist/bin/entryscape-mcp.js\"]`. ### Claude Code The unpacked package is also a Claude Code plugin, so one install gives the server and the skills below together. Claude Code installs plugins from marketplaces, and the package carries a one-entry marketplace pointing at itself: ``` claude plugin marketplace add /path/to/entryscape-mcp claude plugin install entryscape@entryscape --scope user ``` The plugin passes `ENTRYSCAPE_API_URL`, `ENTRYSCAPE_AUTH_TOKEN`, `ENTRYSCAPE_ENTRYSTORE_HOST`, `ENTRYSCAPE_MCP_TAGS` and `ENTRYSCAPE_MCP_UPLOAD_ROOT` through from the shell Claude Code was started in, so set them there. To try the plugin for one session without installing it, start Claude Code with `--plugin-dir /path/to/entryscape-mcp`. ### Skills `skills/` in the package holds procedures that span several tools, in the Agent Skills format (a `SKILL.md` with `name` and `description`): which tools to call in which order, what to check between calls, and where to stop. Claude Code loads them from the plugin; other clients that read the format can be pointed at the directory. The `find` skill covers discovery, facets and selective metadata reads; `publish-dataset` takes a dataset from catalog to validated distribution with its file; `edit-metadata` changes an entry that already exists without dropping the rest of its graph, models included; `migrate-from-taskrunner` moves an integration off the deprecated Taskrunner API. Every tool a skill names is checked against this specification when the package is built. ## Deprecation Policy When endpoints or features are deprecated: 1. The operation is marked with `deprecated: true` in this spec 2. The operation description documents the replacement endpoint and sunset date 3. Deprecated endpoints remain functional for at least 6 months after announcement 4. The server returns a `Sunset` header with the planned removal date 5. After the sunset date, the endpoint may be removed in a future release
9
+
10
+ The version of the OpenAPI document: 1.3.0
11
+ Contact: contact@entryscape.com
12
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
+
14
+ Do not edit the class manually.
15
+ """ # noqa: E501
16
+
17
+ __version__ = "1.3.0"
18
+
19
+ # Define package exports
20
+ __all__ = [
21
+ "AppTokenApi",
22
+ "AuthApi",
23
+ "CatalogApi",
24
+ "ContactApi",
25
+ "DataserviceApi",
26
+ "DatasetApi",
27
+ "DistributionApi",
28
+ "DocumentApi",
29
+ "IdeaApi",
30
+ "JobApi",
31
+ "ModelApi",
32
+ "ModelClassApi",
33
+ "ModelDiagramApi",
34
+ "ModelFieldApi",
35
+ "ModelFormApi",
36
+ "ModelNamespaceApi",
37
+ "ModelPropertyApi",
38
+ "OrganizationApi",
39
+ "SearchApi",
40
+ "ShowcaseApi",
41
+ "SuggestionApi",
42
+ "TerminologyApi",
43
+ "UploadApi",
44
+ "ApiResponse",
45
+ "ApiClient",
46
+ "Configuration",
47
+ "OpenApiException",
48
+ "ApiTypeError",
49
+ "ApiValueError",
50
+ "ApiKeyError",
51
+ "ApiAttributeError",
52
+ "ApiException",
53
+ "AppToken",
54
+ "AppTokenCreateRequest",
55
+ "AppTokenCreateResponse",
56
+ "AppTokenStatus",
57
+ "AppTokenVerifyRequest",
58
+ "EntityListItem",
59
+ "EntityListResponse",
60
+ "EntityReference",
61
+ "EntityType",
62
+ "Error",
63
+ "FacetField",
64
+ "FacetFieldValuesInner",
65
+ "FacetList",
66
+ "FacetListAvailableInner",
67
+ "JobResponse",
68
+ "JobStatus",
69
+ "JobStatusProgress",
70
+ "JobStatusValue",
71
+ "JobType",
72
+ "ListCatalogsEntryTypeParameter",
73
+ "ListCatalogsGraphTypeParameter",
74
+ "ListCatalogsResourceTypeParameter",
75
+ "LoginRequest",
76
+ "LoginResponse",
77
+ "MetadataFormat",
78
+ "MetadataRequest",
79
+ "ParentReference",
80
+ "SearchRequest",
81
+ "SearchRequestFilters",
82
+ "SearchRequestFiltersGraphType",
83
+ "SearchRequestFiltersResourceType",
84
+ "SearchRequestSort",
85
+ "SearchRequestSortOrder",
86
+ "SearchResponse",
87
+ "SearchResult",
88
+ "SearchResultGraphType",
89
+ "SearchResultResourceType",
90
+ "SearchSortOrderParameter",
91
+ "TerminologyImportMode",
92
+ "ValidationProfile",
93
+ "ValidationResponse",
94
+ "ValidationResult",
95
+ "ValidationSeverity",
96
+ "ValidationSummary",
97
+ "WhoamiResponse",
98
+ ]
99
+
100
+ # import apis into sdk package
101
+ from entryscape.api.app_token_api import AppTokenApi as AppTokenApi
102
+ from entryscape.api.auth_api import AuthApi as AuthApi
103
+ from entryscape.api.catalog_api import CatalogApi as CatalogApi
104
+ from entryscape.api.contact_api import ContactApi as ContactApi
105
+ from entryscape.api.dataservice_api import DataserviceApi as DataserviceApi
106
+ from entryscape.api.dataset_api import DatasetApi as DatasetApi
107
+ from entryscape.api.distribution_api import DistributionApi as DistributionApi
108
+ from entryscape.api.document_api import DocumentApi as DocumentApi
109
+ from entryscape.api.idea_api import IdeaApi as IdeaApi
110
+ from entryscape.api.job_api import JobApi as JobApi
111
+ from entryscape.api.model_api import ModelApi as ModelApi
112
+ from entryscape.api.model_class_api import ModelClassApi as ModelClassApi
113
+ from entryscape.api.model_diagram_api import ModelDiagramApi as ModelDiagramApi
114
+ from entryscape.api.model_field_api import ModelFieldApi as ModelFieldApi
115
+ from entryscape.api.model_form_api import ModelFormApi as ModelFormApi
116
+ from entryscape.api.model_namespace_api import ModelNamespaceApi as ModelNamespaceApi
117
+ from entryscape.api.model_property_api import ModelPropertyApi as ModelPropertyApi
118
+ from entryscape.api.organization_api import OrganizationApi as OrganizationApi
119
+ from entryscape.api.search_api import SearchApi as SearchApi
120
+ from entryscape.api.showcase_api import ShowcaseApi as ShowcaseApi
121
+ from entryscape.api.suggestion_api import SuggestionApi as SuggestionApi
122
+ from entryscape.api.terminology_api import TerminologyApi as TerminologyApi
123
+ from entryscape.api.upload_api import UploadApi as UploadApi
124
+
125
+ # import ApiClient
126
+ from entryscape.api_response import ApiResponse as ApiResponse
127
+ from entryscape.api_client import ApiClient as ApiClient
128
+ from entryscape.configuration import Configuration as Configuration
129
+ from entryscape.exceptions import OpenApiException as OpenApiException
130
+ from entryscape.exceptions import ApiTypeError as ApiTypeError
131
+ from entryscape.exceptions import ApiValueError as ApiValueError
132
+ from entryscape.exceptions import ApiKeyError as ApiKeyError
133
+ from entryscape.exceptions import ApiAttributeError as ApiAttributeError
134
+ from entryscape.exceptions import ApiException as ApiException
135
+
136
+ # import models into sdk package
137
+ from entryscape.models.app_token import AppToken as AppToken
138
+ from entryscape.models.app_token_create_request import (
139
+ AppTokenCreateRequest as AppTokenCreateRequest,
140
+ )
141
+ from entryscape.models.app_token_create_response import (
142
+ AppTokenCreateResponse as AppTokenCreateResponse,
143
+ )
144
+ from entryscape.models.app_token_status import AppTokenStatus as AppTokenStatus
145
+ from entryscape.models.app_token_verify_request import (
146
+ AppTokenVerifyRequest as AppTokenVerifyRequest,
147
+ )
148
+ from entryscape.models.entity_list_item import EntityListItem as EntityListItem
149
+ from entryscape.models.entity_list_response import (
150
+ EntityListResponse as EntityListResponse,
151
+ )
152
+ from entryscape.models.entity_reference import EntityReference as EntityReference
153
+ from entryscape.models.entity_type import EntityType as EntityType
154
+ from entryscape.models.error import Error as Error
155
+ from entryscape.models.facet_field import FacetField as FacetField
156
+ from entryscape.models.facet_field_values_inner import (
157
+ FacetFieldValuesInner as FacetFieldValuesInner,
158
+ )
159
+ from entryscape.models.facet_list import FacetList as FacetList
160
+ from entryscape.models.facet_list_available_inner import (
161
+ FacetListAvailableInner as FacetListAvailableInner,
162
+ )
163
+ from entryscape.models.job_response import JobResponse as JobResponse
164
+ from entryscape.models.job_status import JobStatus as JobStatus
165
+ from entryscape.models.job_status_progress import JobStatusProgress as JobStatusProgress
166
+ from entryscape.models.job_status_value import JobStatusValue as JobStatusValue
167
+ from entryscape.models.job_type import JobType as JobType
168
+ from entryscape.models.list_catalogs_entry_type_parameter import (
169
+ ListCatalogsEntryTypeParameter as ListCatalogsEntryTypeParameter,
170
+ )
171
+ from entryscape.models.list_catalogs_graph_type_parameter import (
172
+ ListCatalogsGraphTypeParameter as ListCatalogsGraphTypeParameter,
173
+ )
174
+ from entryscape.models.list_catalogs_resource_type_parameter import (
175
+ ListCatalogsResourceTypeParameter as ListCatalogsResourceTypeParameter,
176
+ )
177
+ from entryscape.models.login_request import LoginRequest as LoginRequest
178
+ from entryscape.models.login_response import LoginResponse as LoginResponse
179
+ from entryscape.models.metadata_format import MetadataFormat as MetadataFormat
180
+ from entryscape.models.metadata_request import MetadataRequest as MetadataRequest
181
+ from entryscape.models.parent_reference import ParentReference as ParentReference
182
+ from entryscape.models.search_request import SearchRequest as SearchRequest
183
+ from entryscape.models.search_request_filters import (
184
+ SearchRequestFilters as SearchRequestFilters,
185
+ )
186
+ from entryscape.models.search_request_filters_graph_type import (
187
+ SearchRequestFiltersGraphType as SearchRequestFiltersGraphType,
188
+ )
189
+ from entryscape.models.search_request_filters_resource_type import (
190
+ SearchRequestFiltersResourceType as SearchRequestFiltersResourceType,
191
+ )
192
+ from entryscape.models.search_request_sort import SearchRequestSort as SearchRequestSort
193
+ from entryscape.models.search_request_sort_order import (
194
+ SearchRequestSortOrder as SearchRequestSortOrder,
195
+ )
196
+ from entryscape.models.search_response import SearchResponse as SearchResponse
197
+ from entryscape.models.search_result import SearchResult as SearchResult
198
+ from entryscape.models.search_result_graph_type import (
199
+ SearchResultGraphType as SearchResultGraphType,
200
+ )
201
+ from entryscape.models.search_result_resource_type import (
202
+ SearchResultResourceType as SearchResultResourceType,
203
+ )
204
+ from entryscape.models.search_sort_order_parameter import (
205
+ SearchSortOrderParameter as SearchSortOrderParameter,
206
+ )
207
+ from entryscape.models.terminology_import_mode import (
208
+ TerminologyImportMode as TerminologyImportMode,
209
+ )
210
+ from entryscape.models.validation_profile import ValidationProfile as ValidationProfile
211
+ from entryscape.models.validation_response import (
212
+ ValidationResponse as ValidationResponse,
213
+ )
214
+ from entryscape.models.validation_result import ValidationResult as ValidationResult
215
+ from entryscape.models.validation_severity import (
216
+ ValidationSeverity as ValidationSeverity,
217
+ )
218
+ from entryscape.models.validation_summary import ValidationSummary as ValidationSummary
219
+ from entryscape.models.whoami_response import WhoamiResponse as WhoamiResponse
@@ -0,0 +1,26 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from entryscape.api.app_token_api import AppTokenApi
5
+ from entryscape.api.auth_api import AuthApi
6
+ from entryscape.api.catalog_api import CatalogApi
7
+ from entryscape.api.contact_api import ContactApi
8
+ from entryscape.api.dataservice_api import DataserviceApi
9
+ from entryscape.api.dataset_api import DatasetApi
10
+ from entryscape.api.distribution_api import DistributionApi
11
+ from entryscape.api.document_api import DocumentApi
12
+ from entryscape.api.idea_api import IdeaApi
13
+ from entryscape.api.job_api import JobApi
14
+ from entryscape.api.model_api import ModelApi
15
+ from entryscape.api.model_class_api import ModelClassApi
16
+ from entryscape.api.model_diagram_api import ModelDiagramApi
17
+ from entryscape.api.model_field_api import ModelFieldApi
18
+ from entryscape.api.model_form_api import ModelFormApi
19
+ from entryscape.api.model_namespace_api import ModelNamespaceApi
20
+ from entryscape.api.model_property_api import ModelPropertyApi
21
+ from entryscape.api.organization_api import OrganizationApi
22
+ from entryscape.api.search_api import SearchApi
23
+ from entryscape.api.showcase_api import ShowcaseApi
24
+ from entryscape.api.suggestion_api import SuggestionApi
25
+ from entryscape.api.terminology_api import TerminologyApi
26
+ from entryscape.api.upload_api import UploadApi