@aventurevc/api-schemas 0.7.272
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.
- package/LICENSE +201 -0
- package/README.md +5 -0
- package/dist/address/address.d.ts +95 -0
- package/dist/address/address.js +83 -0
- package/dist/address/association-role.d.ts +49 -0
- package/dist/address/association-role.js +45 -0
- package/dist/address/association.d.ts +58 -0
- package/dist/address/association.js +58 -0
- package/dist/address/city.d.ts +48 -0
- package/dist/address/city.js +49 -0
- package/dist/address/country.d.ts +52 -0
- package/dist/address/country.js +55 -0
- package/dist/address/state.d.ts +49 -0
- package/dist/address/state.js +51 -0
- package/dist/agent/help-question.d.ts +23 -0
- package/dist/agent/help-question.js +21 -0
- package/dist/agent/help.d.ts +34 -0
- package/dist/agent/help.js +24 -0
- package/dist/agent/instruction-detail.d.ts +27 -0
- package/dist/agent/instruction-detail.js +20 -0
- package/dist/agent/instruction-kind.d.ts +18 -0
- package/dist/agent/instruction-kind.js +14 -0
- package/dist/agent/instruction-manifest.d.ts +37 -0
- package/dist/agent/instruction-manifest.js +21 -0
- package/dist/agent/instruction-pointer.d.ts +19 -0
- package/dist/agent/instruction-pointer.js +19 -0
- package/dist/agent/instruction.d.ts +25 -0
- package/dist/agent/instruction.js +23 -0
- package/dist/auth/permission-grant.d.ts +18 -0
- package/dist/auth/permission-grant.js +16 -0
- package/dist/blog/post-type.d.ts +26 -0
- package/dist/blog/post-type.js +26 -0
- package/dist/blog/post.d.ts +50 -0
- package/dist/blog/post.js +48 -0
- package/dist/chart/bucket.d.ts +22 -0
- package/dist/chart/bucket.js +23 -0
- package/dist/classification/catalog-bucket.d.ts +64 -0
- package/dist/classification/catalog-bucket.js +34 -0
- package/dist/classification/catalog-category.d.ts +63 -0
- package/dist/classification/catalog-category.js +32 -0
- package/dist/classification/catalog.d.ts +137 -0
- package/dist/classification/catalog.js +23 -0
- package/dist/classification/classification.d.ts +41 -0
- package/dist/classification/classification.js +40 -0
- package/dist/classification/inactive-tag-details.d.ts +23 -0
- package/dist/classification/inactive-tag-details.js +22 -0
- package/dist/cli/authorization-client-platform.d.ts +20 -0
- package/dist/cli/authorization-client-platform.js +15 -0
- package/dist/cli/authorization-delivery.d.ts +21 -0
- package/dist/cli/authorization-delivery.js +25 -0
- package/dist/cli/authorization-encryption-algorithm.d.ts +17 -0
- package/dist/cli/authorization-encryption-algorithm.js +15 -0
- package/dist/cli/authorization-mutation.d.ts +27 -0
- package/dist/cli/authorization-mutation.js +29 -0
- package/dist/cli/authorization-poll.d.ts +51 -0
- package/dist/cli/authorization-poll.js +25 -0
- package/dist/cli/authorization-start.d.ts +22 -0
- package/dist/cli/authorization-start.js +26 -0
- package/dist/cli/authorization-status.d.ts +25 -0
- package/dist/cli/authorization-status.js +25 -0
- package/dist/cli/authorization-terminal-reason.d.ts +28 -0
- package/dist/cli/authorization-terminal-reason.js +28 -0
- package/dist/cli/authorization.d.ts +58 -0
- package/dist/cli/authorization.js +45 -0
- package/dist/client/pagination/page-param.d.ts +43 -0
- package/dist/client/pagination/page-param.js +42 -0
- package/dist/completion/gate-coverage.d.ts +18 -0
- package/dist/completion/gate-coverage.js +14 -0
- package/dist/confidence/confidence.d.ts +27 -0
- package/dist/confidence/confidence.js +23 -0
- package/dist/content/compliance.d.ts +33 -0
- package/dist/content/compliance.js +37 -0
- package/dist/content/content.d.ts +49 -0
- package/dist/content/content.js +51 -0
- package/dist/content/embedding-match.d.ts +62 -0
- package/dist/content/embedding-match.js +62 -0
- package/dist/content/filter.d.ts +35 -0
- package/dist/content/filter.js +27 -0
- package/dist/content/relation.d.ts +22 -0
- package/dist/content/relation.js +19 -0
- package/dist/content/search-interpretation.d.ts +48 -0
- package/dist/content/search-interpretation.js +30 -0
- package/dist/content/search-result.d.ts +94 -0
- package/dist/content/search-result.js +22 -0
- package/dist/content/sort-field.d.ts +25 -0
- package/dist/content/sort-field.js +25 -0
- package/dist/content/source-type.d.ts +50 -0
- package/dist/content/source-type.js +50 -0
- package/dist/content/type.d.ts +28 -0
- package/dist/content/type.js +28 -0
- package/dist/datasource/agent-identity.d.ts +18 -0
- package/dist/datasource/agent-identity.js +21 -0
- package/dist/datasource/data-source-type.d.ts +26 -0
- package/dist/datasource/data-source-type.js +26 -0
- package/dist/datasource/field-provenance.d.ts +110 -0
- package/dist/datasource/field-provenance.js +35 -0
- package/dist/datasource/provenance-actor-type.d.ts +18 -0
- package/dist/datasource/provenance-actor-type.js +15 -0
- package/dist/datasource/provenance-actor.d.ts +27 -0
- package/dist/datasource/provenance-actor.js +22 -0
- package/dist/datasource/provenance-field-change.d.ts +23 -0
- package/dist/datasource/provenance-field-change.js +21 -0
- package/dist/datasource/provenance-operation.d.ts +18 -0
- package/dist/datasource/provenance-operation.js +14 -0
- package/dist/datasource/provenance-source.d.ts +38 -0
- package/dist/datasource/provenance-source.js +33 -0
- package/dist/datasource/provenance-status.d.ts +21 -0
- package/dist/datasource/provenance-status.js +21 -0
- package/dist/datasource/source-metadata.d.ts +47 -0
- package/dist/datasource/source-metadata.js +47 -0
- package/dist/datasource/tracked-provenance-table.d.ts +34 -0
- package/dist/datasource/tracked-provenance-table.js +34 -0
- package/dist/decimal/range.d.ts +33 -0
- package/dist/decimal/range.js +33 -0
- package/dist/domain/conflict-details.d.ts +119 -0
- package/dist/domain/conflict-details.js +24 -0
- package/dist/duplicate/create-review.d.ts +47 -0
- package/dist/duplicate/create-review.js +25 -0
- package/dist/employee/count.d.ts +39 -0
- package/dist/employee/count.js +20 -0
- package/dist/entity/accelerator-participation.d.ts +91 -0
- package/dist/entity/accelerator-participation.js +47 -0
- package/dist/entity/acquisition-evidence.d.ts +22 -0
- package/dist/entity/acquisition-evidence.js +20 -0
- package/dist/entity/acquisition-role.d.ts +17 -0
- package/dist/entity/acquisition-role.js +13 -0
- package/dist/entity/acquisition-stage.d.ts +18 -0
- package/dist/entity/acquisition-stage.js +18 -0
- package/dist/entity/acquisition.d.ts +162 -0
- package/dist/entity/acquisition.js +43 -0
- package/dist/entity/alias-type.d.ts +52 -0
- package/dist/entity/alias-type.js +49 -0
- package/dist/entity/batch-param.d.ts +22 -0
- package/dist/entity/batch-param.js +24 -0
- package/dist/entity/classification-inactive-tag-override.d.ts +16 -0
- package/dist/entity/classification-inactive-tag-override.js +16 -0
- package/dist/entity/classification-suggestion.d.ts +98 -0
- package/dist/entity/classification-suggestion.js +28 -0
- package/dist/entity/classification.d.ts +423 -0
- package/dist/entity/classification.js +53 -0
- package/dist/entity/comparison-signals.d.ts +66 -0
- package/dist/entity/comparison-signals.js +36 -0
- package/dist/entity/detail-batch-param.d.ts +18 -0
- package/dist/entity/detail-batch-param.js +21 -0
- package/dist/entity/detail-batch.d.ts +22 -0
- package/dist/entity/detail-batch.js +24 -0
- package/dist/entity/detail-coverage-slot.d.ts +32 -0
- package/dist/entity/detail-coverage-slot.js +37 -0
- package/dist/entity/detail-similar-param.d.ts +22 -0
- package/dist/entity/detail-similar-param.js +33 -0
- package/dist/entity/detail.d.ts +1814 -0
- package/dist/entity/detail.js +52 -0
- package/dist/entity/enrichment.d.ts +574 -0
- package/dist/entity/enrichment.js +43 -0
- package/dist/entity/entity.d.ts +107 -0
- package/dist/entity/entity.js +100 -0
- package/dist/entity/filter-choice.d.ts +25 -0
- package/dist/entity/filter-choice.js +24 -0
- package/dist/entity/filter-control-type.d.ts +20 -0
- package/dist/entity/filter-control-type.js +20 -0
- package/dist/entity/filter-count-meta.d.ts +17 -0
- package/dist/entity/filter-count-meta.js +15 -0
- package/dist/entity/filter-count-result.d.ts +27 -0
- package/dist/entity/filter-count-result.js +17 -0
- package/dist/entity/filter-count.d.ts +20 -0
- package/dist/entity/filter-count.js +22 -0
- package/dist/entity/filter-entry.d.ts +77 -0
- package/dist/entity/filter-entry.js +41 -0
- package/dist/entity/filter-headquarters-country.d.ts +27 -0
- package/dist/entity/filter-headquarters-country.js +22 -0
- package/dist/entity/filter-headquarters-option-set.d.ts +29 -0
- package/dist/entity/filter-headquarters-option-set.js +19 -0
- package/dist/entity/filter-headquarters-state-city.d.ts +21 -0
- package/dist/entity/filter-headquarters-state-city.js +21 -0
- package/dist/entity/filter-logo-option.d.ts +26 -0
- package/dist/entity/filter-logo-option.js +23 -0
- package/dist/entity/filter-meta.d.ts +33 -0
- package/dist/entity/filter-meta.js +19 -0
- package/dist/entity/filter-option-mode.d.ts +17 -0
- package/dist/entity/filter-option-mode.js +14 -0
- package/dist/entity/filter-option-set-meta.d.ts +37 -0
- package/dist/entity/filter-option-set-meta.js +38 -0
- package/dist/entity/filter-option-set.d.ts +187 -0
- package/dist/entity/filter-option-set.js +23 -0
- package/dist/entity/filter-refined-filters.d.ts +100 -0
- package/dist/entity/filter-refined-filters.js +20 -0
- package/dist/entity/filter-scope.d.ts +19 -0
- package/dist/entity/filter-scope.js +21 -0
- package/dist/entity/filter-search-result.d.ts +20 -0
- package/dist/entity/filter-search-result.js +20 -0
- package/dist/entity/filter-search.d.ts +223 -0
- package/dist/entity/filter-search.js +23 -0
- package/dist/entity/filter-ui-meta.d.ts +31 -0
- package/dist/entity/filter-ui-meta.js +18 -0
- package/dist/entity/filter.d.ts +220 -0
- package/dist/entity/filter.js +112 -0
- package/dist/entity/funding-detail.d.ts +79 -0
- package/dist/entity/funding-detail.js +43 -0
- package/dist/entity/fundraise-filter-criteria.d.ts +95 -0
- package/dist/entity/fundraise-filter-criteria.js +35 -0
- package/dist/entity/fundraise-investor-activity.d.ts +34 -0
- package/dist/entity/fundraise-investor-activity.js +33 -0
- package/dist/entity/fundraise-investor-join.d.ts +40 -0
- package/dist/entity/fundraise-investor-join.js +34 -0
- package/dist/entity/fundraise-transaction-entity.d.ts +134 -0
- package/dist/entity/fundraise-transaction-entity.js +41 -0
- package/dist/entity/fundraise-transaction.d.ts +188 -0
- package/dist/entity/fundraise-transaction.js +60 -0
- package/dist/entity/fundraise.d.ts +46 -0
- package/dist/entity/fundraise.js +40 -0
- package/dist/entity/image.d.ts +63 -0
- package/dist/entity/image.js +62 -0
- package/dist/entity/investor-participation.d.ts +1830 -0
- package/dist/entity/investor-participation.js +22 -0
- package/dist/entity/list-filter.d.ts +223 -0
- package/dist/entity/list-filter.js +114 -0
- package/dist/entity/list-quality-gate.d.ts +25 -0
- package/dist/entity/list-quality-gate.js +22 -0
- package/dist/entity/list-research.d.ts +145 -0
- package/dist/entity/list-research.js +29 -0
- package/dist/entity/list-summary.d.ts +285 -0
- package/dist/entity/list-summary.js +21 -0
- package/dist/entity/list.d.ts +951 -0
- package/dist/entity/list.js +41 -0
- package/dist/entity/logo-type.d.ts +16 -0
- package/dist/entity/logo-type.js +13 -0
- package/dist/entity/lookup-param.d.ts +29 -0
- package/dist/entity/lookup-param.js +51 -0
- package/dist/entity/name-alias-entity-alias-type.d.ts +59 -0
- package/dist/entity/name-alias-entity-alias-type.js +58 -0
- package/dist/entity/name-alias-person-alias-type.d.ts +46 -0
- package/dist/entity/name-alias-person-alias-type.js +43 -0
- package/dist/entity/natural-search.d.ts +229 -0
- package/dist/entity/natural-search.js +20 -0
- package/dist/entity/person-association.d.ts +247 -0
- package/dist/entity/person-association.js +91 -0
- package/dist/entity/person-owner.d.ts +25 -0
- package/dist/entity/person-owner.js +27 -0
- package/dist/entity/relationship-type-option.d.ts +31 -0
- package/dist/entity/relationship-type-option.js +37 -0
- package/dist/entity/relationship.d.ts +135 -0
- package/dist/entity/relationship.js +55 -0
- package/dist/entity/research-detail.d.ts +72 -0
- package/dist/entity/research-detail.js +53 -0
- package/dist/entity/research-fact-value.d.ts +37 -0
- package/dist/entity/research-fact-value.js +27 -0
- package/dist/entity/research-snippet.d.ts +40 -0
- package/dist/entity/research-snippet.js +41 -0
- package/dist/entity/research-value-type.d.ts +42 -0
- package/dist/entity/research-value-type.js +42 -0
- package/dist/entity/research.d.ts +162 -0
- package/dist/entity/research.js +32 -0
- package/dist/entity/resolution.d.ts +1821 -0
- package/dist/entity/resolution.js +25 -0
- package/dist/entity/search-param.d.ts +22 -0
- package/dist/entity/search-param.js +24 -0
- package/dist/entity/similarity-context.d.ts +33 -0
- package/dist/entity/similarity-context.js +35 -0
- package/dist/entity/similarity-origin.d.ts +22 -0
- package/dist/entity/similarity-origin.js +22 -0
- package/dist/entity/similarity-result.d.ts +985 -0
- package/dist/entity/similarity-result.js +19 -0
- package/dist/entity/sitemap-url-type.d.ts +21 -0
- package/dist/entity/sitemap-url-type.js +21 -0
- package/dist/entity/sitemap-url.d.ts +43 -0
- package/dist/entity/sitemap-url.js +40 -0
- package/dist/entity/sitemap.d.ts +57 -0
- package/dist/entity/sitemap.js +63 -0
- package/dist/entity/suggestion-result.d.ts +999 -0
- package/dist/entity/suggestion-result.js +25 -0
- package/dist/entity/suggestion.d.ts +973 -0
- package/dist/entity/suggestion.js +28 -0
- package/dist/entity/tag-count.d.ts +20 -0
- package/dist/entity/tag-count.js +18 -0
- package/dist/entity/tag.d.ts +65 -0
- package/dist/entity/tag.js +68 -0
- package/dist/entity/text-bundle.d.ts +47 -0
- package/dist/entity/text-bundle.js +48 -0
- package/dist/entity/text.d.ts +40 -0
- package/dist/entity/text.js +36 -0
- package/dist/entity/type-alias.d.ts +22 -0
- package/dist/entity/type-alias.js +26 -0
- package/dist/entity/type-count.d.ts +28 -0
- package/dist/entity/type-count.js +19 -0
- package/dist/entity/type-group-membership.d.ts +33 -0
- package/dist/entity/type-group-membership.js +20 -0
- package/dist/entity/type-group.d.ts +18 -0
- package/dist/entity/type-group.js +15 -0
- package/dist/entity/type.d.ts +32 -0
- package/dist/entity/type.js +32 -0
- package/dist/entity/url-crawl-cdn-provider.d.ts +67 -0
- package/dist/entity/url-crawl-cdn-provider.js +67 -0
- package/dist/entity/url-crawl-render-mode.d.ts +50 -0
- package/dist/entity/url-crawl-render-mode.js +46 -0
- package/dist/entity/url-link.d.ts +146 -0
- package/dist/entity/url-link.js +72 -0
- package/dist/entity/url-type.d.ts +103 -0
- package/dist/entity/url-type.js +103 -0
- package/dist/entity/valuation-data-confidence.d.ts +40 -0
- package/dist/entity/valuation-data-confidence.js +36 -0
- package/dist/entity/valuation-derivation.d.ts +18 -0
- package/dist/entity/valuation-derivation.js +18 -0
- package/dist/entity/valuation-source.d.ts +16 -0
- package/dist/entity/valuation-source.js +13 -0
- package/dist/entity/valuation-time-series-point.d.ts +45 -0
- package/dist/entity/valuation-time-series-point.js +43 -0
- package/dist/external/social-post-platform.d.ts +21 -0
- package/dist/external/social-post-platform.js +21 -0
- package/dist/federated/search-provenance.d.ts +39 -0
- package/dist/federated/search-provenance.js +23 -0
- package/dist/federated/search.d.ts +1536 -0
- package/dist/federated/search.js +28 -0
- package/dist/funding/stage.d.ts +73 -0
- package/dist/funding/stage.js +73 -0
- package/dist/fundraise/data-confidence.d.ts +40 -0
- package/dist/fundraise/data-confidence.js +35 -0
- package/dist/fundraise/financial-instrument-type.d.ts +25 -0
- package/dist/fundraise/financial-instrument-type.js +25 -0
- package/dist/fundraise/investment-attribution-type.d.ts +43 -0
- package/dist/fundraise/investment-attribution-type.js +40 -0
- package/dist/fundraise/investment-attribution.d.ts +58 -0
- package/dist/fundraise/investment-attribution.js +64 -0
- package/dist/fundraise/transaction-status.d.ts +22 -0
- package/dist/fundraise/transaction-status.js +22 -0
- package/dist/github/repo.d.ts +36 -0
- package/dist/github/repo.js +46 -0
- package/dist/help/citation.d.ts +26 -0
- package/dist/help/citation.js +24 -0
- package/dist/help/scope.d.ts +17 -0
- package/dist/help/scope.js +13 -0
- package/dist/help/source-type.d.ts +18 -0
- package/dist/help/source-type.js +13 -0
- package/dist/http/json-value.d.ts +13 -0
- package/dist/http/json-value.js +18 -0
- package/dist/http/problem-detail.d.ts +254 -0
- package/dist/http/problem-detail.js +117 -0
- package/dist/int/range.d.ts +35 -0
- package/dist/int/range.js +35 -0
- package/dist/investor/activity-filter.d.ts +59 -0
- package/dist/investor/activity-filter.js +31 -0
- package/dist/letter/counts.d.ts +19 -0
- package/dist/letter/counts.js +18 -0
- package/dist/link/search.d.ts +1543 -0
- package/dist/link/search.js +21 -0
- package/dist/location/directory-entry.d.ts +44 -0
- package/dist/location/directory-entry.js +26 -0
- package/dist/location/identifier.d.ts +31 -0
- package/dist/location/identifier.js +26 -0
- package/dist/location/resolution-outcome.d.ts +16 -0
- package/dist/location/resolution-outcome.js +13 -0
- package/dist/location/scope.d.ts +18 -0
- package/dist/location/scope.js +14 -0
- package/dist/location/sitemap-batch.d.ts +33 -0
- package/dist/location/sitemap-batch.js +33 -0
- package/dist/location/sitemap-boundary-detail.d.ts +31 -0
- package/dist/location/sitemap-boundary-detail.js +22 -0
- package/dist/location/sitemap-boundary.d.ts +24 -0
- package/dist/location/sitemap-boundary.js +22 -0
- package/dist/location/sitemap.d.ts +131 -0
- package/dist/location/sitemap.js +29 -0
- package/dist/location/slug-resolution.d.ts +21 -0
- package/dist/location/slug-resolution.js +20 -0
- package/dist/media/object-type.d.ts +21 -0
- package/dist/media/object-type.js +16 -0
- package/dist/media/screenshot.d.ts +34 -0
- package/dist/media/screenshot.js +31 -0
- package/dist/media/upload.d.ts +35 -0
- package/dist/media/upload.js +30 -0
- package/dist/natural/search-result.d.ts +1203 -0
- package/dist/natural/search-result.js +23 -0
- package/dist/natural/search.d.ts +32 -0
- package/dist/natural/search.js +28 -0
- package/dist/news/candidate-score.d.ts +19 -0
- package/dist/news/candidate-score.js +28 -0
- package/dist/news/detail.d.ts +94 -0
- package/dist/news/detail.js +27 -0
- package/dist/news/feedback-acknowledgement.d.ts +22 -0
- package/dist/news/feedback-acknowledgement.js +20 -0
- package/dist/news/feedback.d.ts +20 -0
- package/dist/news/feedback.js +26 -0
- package/dist/news/filter.d.ts +27 -0
- package/dist/news/filter.js +31 -0
- package/dist/news/lookup-param.d.ts +22 -0
- package/dist/news/lookup-param.js +33 -0
- package/dist/news/news.d.ts +55 -0
- package/dist/news/news.js +61 -0
- package/dist/news/resolved-entity-link.d.ts +39 -0
- package/dist/news/resolved-entity-link.js +34 -0
- package/dist/news/resolved-person-link.d.ts +27 -0
- package/dist/news/resolved-person-link.js +31 -0
- package/dist/news/source-url-conflict.d.ts +20 -0
- package/dist/news/source-url-conflict.js +21 -0
- package/dist/openapi-component-manifest.d.ts +19 -0
- package/dist/openapi-component-manifest.js +864 -0
- package/dist/pageable/object.d.ts +119 -0
- package/dist/pageable/object.js +116 -0
- package/dist/pagination/schemas.d.ts +11887 -0
- package/dist/pagination/schemas.js +901 -0
- package/dist/person/alias-type.d.ts +38 -0
- package/dist/person/alias-type.js +33 -0
- package/dist/person/batch-param.d.ts +27 -0
- package/dist/person/batch-param.js +38 -0
- package/dist/person/detail-batch.d.ts +26 -0
- package/dist/person/detail-batch.js +51 -0
- package/dist/person/detail.d.ts +621 -0
- package/dist/person/detail.js +46 -0
- package/dist/person/enrichment.d.ts +114 -0
- package/dist/person/enrichment.js +35 -0
- package/dist/person/filter.d.ts +106 -0
- package/dist/person/filter.js +49 -0
- package/dist/person/graph-career-context.d.ts +354 -0
- package/dist/person/graph-career-context.js +33 -0
- package/dist/person/graph-co-investor.d.ts +92 -0
- package/dist/person/graph-co-investor.js +27 -0
- package/dist/person/graph-member.d.ts +31 -0
- package/dist/person/graph-member.js +32 -0
- package/dist/person/graph-similar-entity.d.ts +137 -0
- package/dist/person/graph-similar-entity.js +21 -0
- package/dist/person/graph.d.ts +487 -0
- package/dist/person/graph.js +22 -0
- package/dist/person/image.d.ts +46 -0
- package/dist/person/image.js +45 -0
- package/dist/person/invested-company.d.ts +83 -0
- package/dist/person/invested-company.js +32 -0
- package/dist/person/investment.d.ts +143 -0
- package/dist/person/investment.js +45 -0
- package/dist/person/investor-participation.d.ts +722 -0
- package/dist/person/investor-participation.js +22 -0
- package/dist/person/list-array-filter.d.ts +54 -0
- package/dist/person/list-array-filter.js +34 -0
- package/dist/person/lookup-param.d.ts +29 -0
- package/dist/person/lookup-param.js +43 -0
- package/dist/person/natural-search-result.d.ts +273 -0
- package/dist/person/natural-search-result.js +23 -0
- package/dist/person/natural-search.d.ts +114 -0
- package/dist/person/natural-search.js +20 -0
- package/dist/person/person.d.ts +110 -0
- package/dist/person/person.js +76 -0
- package/dist/person/search-interpretation.d.ts +136 -0
- package/dist/person/search-interpretation.js +35 -0
- package/dist/person/similarity-context.d.ts +26 -0
- package/dist/person/similarity-context.js +27 -0
- package/dist/person/similarity-origin.d.ts +16 -0
- package/dist/person/similarity-origin.js +13 -0
- package/dist/person/similarity-result.d.ts +345 -0
- package/dist/person/similarity-result.js +22 -0
- package/dist/personal/api-key.d.ts +32 -0
- package/dist/personal/api-key.js +37 -0
- package/dist/problem/resolution.d.ts +27 -0
- package/dist/problem/resolution.js +33 -0
- package/dist/problem/type.d.ts +68 -0
- package/dist/problem/type.js +68 -0
- package/dist/redirect/current-slug-owner.d.ts +27 -0
- package/dist/redirect/current-slug-owner.js +22 -0
- package/dist/redirect/redirect-slug-path.d.ts +25 -0
- package/dist/redirect/redirect-slug-path.js +20 -0
- package/dist/redirect/slug-resource.d.ts +21 -0
- package/dist/redirect/slug-resource.js +15 -0
- package/dist/refinement/meta.d.ts +21 -0
- package/dist/refinement/meta.js +23 -0
- package/dist/relationship/direction.d.ts +17 -0
- package/dist/relationship/direction.js +13 -0
- package/dist/research/derived-bucket.d.ts +38 -0
- package/dist/research/derived-bucket.js +38 -0
- package/dist/research/derived-range.d.ts +43 -0
- package/dist/research/derived-range.js +41 -0
- package/dist/research/detail-type.d.ts +46 -0
- package/dist/research/detail-type.js +29 -0
- package/dist/research/paragraph-shape.d.ts +23 -0
- package/dist/research/paragraph-shape.js +29 -0
- package/dist/research/snippet-type.d.ts +32 -0
- package/dist/research/snippet-type.js +33 -0
- package/dist/research/value-range.d.ts +14 -0
- package/dist/research/value-range.js +14 -0
- package/dist/research/value-shape-type.d.ts +27 -0
- package/dist/research/value-shape-type.js +27 -0
- package/dist/resolved/handle.d.ts +28 -0
- package/dist/resolved/handle.js +27 -0
- package/dist/round/label.d.ts +44 -0
- package/dist/round/label.js +44 -0
- package/dist/search/duplicate-candidate-score.d.ts +36 -0
- package/dist/search/duplicate-candidate-score.js +38 -0
- package/dist/search/hit.d.ts +21 -0
- package/dist/search/hit.js +19 -0
- package/dist/search/interpretation.d.ts +240 -0
- package/dist/search/interpretation.js +35 -0
- package/dist/search/mode-execution.d.ts +36 -0
- package/dist/search/mode-execution.js +25 -0
- package/dist/search/mode.d.ts +27 -0
- package/dist/search/mode.js +21 -0
- package/dist/search/ordering-entity-filter-sortable.d.ts +30 -0
- package/dist/search/ordering-entity-filter-sortable.js +23 -0
- package/dist/search/ordering-person-sort-field.d.ts +30 -0
- package/dist/search/ordering-person-sort-field.js +23 -0
- package/dist/search/relevance.d.ts +20 -0
- package/dist/search/relevance.js +17 -0
- package/dist/search/search.d.ts +24 -0
- package/dist/search/search.js +29 -0
- package/dist/sec/company.d.ts +40 -0
- package/dist/sec/company.js +56 -0
- package/dist/sitemap/change-frequency.d.ts +21 -0
- package/dist/sitemap/change-frequency.js +21 -0
- package/dist/sitemap/family-entry.d.ts +51 -0
- package/dist/sitemap/family-entry.js +27 -0
- package/dist/sitemap/family.d.ts +31 -0
- package/dist/sitemap/family.js +31 -0
- package/dist/sitemap/index-manifest.d.ts +35 -0
- package/dist/sitemap/index-manifest.js +16 -0
- package/dist/sitemap/index-path-mode.d.ts +16 -0
- package/dist/sitemap/index-path-mode.js +13 -0
- package/dist/sitemap/url-slot.d.ts +40 -0
- package/dist/sitemap/url-slot.js +28 -0
- package/dist/slug/location.d.ts +29 -0
- package/dist/slug/location.js +22 -0
- package/dist/sort/object.d.ts +113 -0
- package/dist/sort/object.js +113 -0
- package/dist/sort/order-content-sort-field.d.ts +31 -0
- package/dist/sort/order-content-sort-field.js +22 -0
- package/dist/sort/order-entity-filter-sortable.d.ts +38 -0
- package/dist/sort/order-entity-filter-sortable.js +38 -0
- package/dist/sort/order-person-sort-field.d.ts +33 -0
- package/dist/sort/order-person-sort-field.js +33 -0
- package/dist/sort/spec-content-sort-field.d.ts +26 -0
- package/dist/sort/spec-content-sort-field.js +20 -0
- package/dist/source/document-list.d.ts +31 -0
- package/dist/source/document-list.js +31 -0
- package/dist/stage/frequency.d.ts +20 -0
- package/dist/stage/frequency.js +18 -0
- package/dist/standardized/classification.d.ts +63 -0
- package/dist/standardized/classification.js +62 -0
- package/dist/strict/url-lookup-conflict.d.ts +23 -0
- package/dist/strict/url-lookup-conflict.js +27 -0
- package/dist/system/global-metrics.d.ts +26 -0
- package/dist/system/global-metrics.js +26 -0
- package/dist/system/status.d.ts +28 -0
- package/dist/system/status.js +19 -0
- package/dist/system/system-build-detail.d.ts +23 -0
- package/dist/system/system-build-detail.js +27 -0
- package/dist/system/system-build.d.ts +31 -0
- package/dist/system/system-build.js +17 -0
- package/dist/text/type-option.d.ts +30 -0
- package/dist/text/type-option.js +28 -0
- package/dist/unique/id-owner-scope.d.ts +16 -0
- package/dist/unique/id-owner-scope.js +13 -0
- package/dist/unique/id-type-alias.d.ts +24 -0
- package/dist/unique/id-type-alias.js +25 -0
- package/dist/unique/id-type.d.ts +35 -0
- package/dist/unique/id-type.js +35 -0
- package/dist/unique/id.d.ts +50 -0
- package/dist/unique/id.js +44 -0
- package/dist/uptime/uptime.d.ts +21 -0
- package/dist/uptime/uptime.js +23 -0
- package/dist/url/duplicate-conflict.d.ts +39 -0
- package/dist/url/duplicate-conflict.js +31 -0
- package/dist/url/duplicate-join.d.ts +22 -0
- package/dist/url/duplicate-join.js +20 -0
- package/dist/url/match-mode.d.ts +25 -0
- package/dist/url/match-mode.js +22 -0
- package/dist/url/slug-redirect.d.ts +25 -0
- package/dist/url/slug-redirect.js +29 -0
- package/dist/url/surface-misclassification-catalog.d.ts +50 -0
- package/dist/url/surface-misclassification-catalog.js +23 -0
- package/dist/url/surface-misclassification-route.d.ts +39 -0
- package/dist/url/surface-misclassification-route.js +44 -0
- package/dist/url/type-alias.d.ts +21 -0
- package/dist/url/type-alias.js +22 -0
- package/dist/valuation/type.d.ts +17 -0
- package/dist/valuation/type.js +13 -0
- package/dist/web/search.d.ts +75 -0
- package/dist/web/search.js +23 -0
- package/package.json +39 -0
|
@@ -0,0 +1,901 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
import { BlogPostSchema } from "../blog/post.js";
|
|
4
|
+
import { ContentSchema } from "../content/content.js";
|
|
5
|
+
import { DatasourceFieldProvenanceSchema } from "../datasource/field-provenance.js";
|
|
6
|
+
import { EmployeeCountSchema } from "../employee/count.js";
|
|
7
|
+
import { EntityAcquisitionSchema } from "../entity/acquisition.js";
|
|
8
|
+
import { EntityDetailSchema } from "../entity/detail.js";
|
|
9
|
+
import { EntitySchema } from "../entity/entity.js";
|
|
10
|
+
import { EntityFundraiseInvestorJoinSchema } from "../entity/fundraise-investor-join.js";
|
|
11
|
+
import { EntityFundraiseTransactionSchema } from "../entity/fundraise-transaction.js";
|
|
12
|
+
import { EntityInvestorParticipationSchema } from "../entity/investor-participation.js";
|
|
13
|
+
import { EntityListSummarySchema } from "../entity/list-summary.js";
|
|
14
|
+
import { EntityListSchema } from "../entity/list.js";
|
|
15
|
+
import { EntityPersonAssociationSchema } from "../entity/person-association.js";
|
|
16
|
+
import { EntityRelationshipSchema } from "../entity/relationship.js";
|
|
17
|
+
import { EntityResearchDetailSchema } from "../entity/research-detail.js";
|
|
18
|
+
import { EntityResearchSnippetSchema } from "../entity/research-snippet.js";
|
|
19
|
+
import { EntitySimilarityResultSchema } from "../entity/similarity-result.js";
|
|
20
|
+
import { EntitySitemapUrlSchema } from "../entity/sitemap-url.js";
|
|
21
|
+
import { EntityTagSchema } from "../entity/tag.js";
|
|
22
|
+
import { EntityTextSchema } from "../entity/text.js";
|
|
23
|
+
import { EntityUrlLinkSchema } from "../entity/url-link.js";
|
|
24
|
+
import { EntityValuationTimeSeriesPointSchema } from "../entity/valuation-time-series-point.js";
|
|
25
|
+
import { GithubRepoSchema } from "../github/repo.js";
|
|
26
|
+
import { LocationDirectoryEntrySchema } from "../location/directory-entry.js";
|
|
27
|
+
import { MediaScreenshotSchema } from "../media/screenshot.js";
|
|
28
|
+
import { NewsSchema } from "../news/news.js";
|
|
29
|
+
import { PageableObjectSchema } from "../pageable/object.js";
|
|
30
|
+
import { PersonDetailSchema } from "../person/detail.js";
|
|
31
|
+
import { PersonInvestmentSchema } from "../person/investment.js";
|
|
32
|
+
import { PersonInvestorParticipationSchema } from "../person/investor-participation.js";
|
|
33
|
+
import { PersonSchema } from "../person/person.js";
|
|
34
|
+
import { PersonSimilarityResultSchema } from "../person/similarity-result.js";
|
|
35
|
+
import { SitemapUrlSlotSchema } from "../sitemap/url-slot.js";
|
|
36
|
+
import { SortObjectSchema } from "../sort/object.js";
|
|
37
|
+
import { StandardizedClassificationSchema } from "../standardized/classification.js";
|
|
38
|
+
import { UniqueIdSchema } from "../unique/id.js";
|
|
39
|
+
import { UrlSlugRedirectSchema } from "../url/slug-redirect.js";
|
|
40
|
+
const PageBlogPostSchemaDefinition = z.object({
|
|
41
|
+
content: z.array(BlogPostSchema).optional(),
|
|
42
|
+
empty: z.boolean().optional(),
|
|
43
|
+
first: z.boolean().optional(),
|
|
44
|
+
last: z.boolean().optional(),
|
|
45
|
+
number: z.int().optional(),
|
|
46
|
+
numberOfElements: z.int().optional(),
|
|
47
|
+
pageable: PageableObjectSchema.optional(),
|
|
48
|
+
size: z.int().optional(),
|
|
49
|
+
sort: SortObjectSchema.optional(),
|
|
50
|
+
totalElements: z.number().int().optional(),
|
|
51
|
+
totalPages: z.int().optional(),
|
|
52
|
+
});
|
|
53
|
+
/**
|
|
54
|
+
* @openapiSchema PageBlogPost
|
|
55
|
+
* @endpoint GET /v1/entities/{entityId}/blog-posts
|
|
56
|
+
* @endpoint GET /v1/people/{personId}/blog-posts
|
|
57
|
+
* @endpoint GET /v1/people/{slug}/blog-posts
|
|
58
|
+
* @contractShape pagination.page-blog-post
|
|
59
|
+
* @contractRole canonical
|
|
60
|
+
* @ownerModule pagination/schemas.ts
|
|
61
|
+
*/
|
|
62
|
+
export const PageBlogPostSchema = PageBlogPostSchemaDefinition;
|
|
63
|
+
const PageClassificationSchemaDefinition = z.object({
|
|
64
|
+
content: z.array(z.union([EntityTagSchema, StandardizedClassificationSchema])).optional(),
|
|
65
|
+
empty: z.boolean().optional(),
|
|
66
|
+
first: z.boolean().optional(),
|
|
67
|
+
last: z.boolean().optional(),
|
|
68
|
+
number: z.int().optional(),
|
|
69
|
+
numberOfElements: z.int().optional(),
|
|
70
|
+
pageable: PageableObjectSchema.optional(),
|
|
71
|
+
size: z.int().optional(),
|
|
72
|
+
sort: SortObjectSchema.optional(),
|
|
73
|
+
totalElements: z.number().int().optional(),
|
|
74
|
+
totalPages: z.int().optional(),
|
|
75
|
+
});
|
|
76
|
+
/**
|
|
77
|
+
* @openapiSchema PageClassification
|
|
78
|
+
* @endpoint GET /v1/classifications
|
|
79
|
+
* @contractShape pagination.page-classification
|
|
80
|
+
* @contractRole canonical
|
|
81
|
+
* @ownerModule pagination/schemas.ts
|
|
82
|
+
*/
|
|
83
|
+
export const PageClassificationSchema = PageClassificationSchemaDefinition;
|
|
84
|
+
const PageContentSchemaDefinition = z.object({
|
|
85
|
+
content: z.array(ContentSchema).optional(),
|
|
86
|
+
empty: z.boolean().optional(),
|
|
87
|
+
first: z.boolean().optional(),
|
|
88
|
+
last: z.boolean().optional(),
|
|
89
|
+
number: z.int().optional(),
|
|
90
|
+
numberOfElements: z.int().optional(),
|
|
91
|
+
pageable: PageableObjectSchema.optional(),
|
|
92
|
+
size: z.int().optional(),
|
|
93
|
+
sort: SortObjectSchema.optional(),
|
|
94
|
+
totalElements: z.number().int().optional(),
|
|
95
|
+
totalPages: z.int().optional(),
|
|
96
|
+
});
|
|
97
|
+
/**
|
|
98
|
+
* @openapiSchema PageContent
|
|
99
|
+
* @endpoint GET /v1/content
|
|
100
|
+
* @endpoint GET /v1/entities/{entityId}/content
|
|
101
|
+
* @endpoint GET /v1/people/{personId}/content
|
|
102
|
+
* @contractShape pagination.page-content
|
|
103
|
+
* @contractRole canonical
|
|
104
|
+
* @ownerModule pagination/schemas.ts
|
|
105
|
+
*/
|
|
106
|
+
export const PageContentSchema = PageContentSchemaDefinition;
|
|
107
|
+
const PageDatasourceFieldProvenanceSchemaDefinition = z.object({
|
|
108
|
+
content: z.array(DatasourceFieldProvenanceSchema).optional(),
|
|
109
|
+
empty: z.boolean().optional(),
|
|
110
|
+
first: z.boolean().optional(),
|
|
111
|
+
last: z.boolean().optional(),
|
|
112
|
+
number: z.int().optional(),
|
|
113
|
+
numberOfElements: z.int().optional(),
|
|
114
|
+
pageable: PageableObjectSchema.optional(),
|
|
115
|
+
size: z.int().optional(),
|
|
116
|
+
sort: SortObjectSchema.optional(),
|
|
117
|
+
totalElements: z.number().int().optional(),
|
|
118
|
+
totalPages: z.int().optional(),
|
|
119
|
+
});
|
|
120
|
+
/**
|
|
121
|
+
* @openapiSchema PageDatasourceFieldProvenance
|
|
122
|
+
* @endpoint GET /v1/provenance/history
|
|
123
|
+
* @contractShape pagination.page-datasource-field-provenance
|
|
124
|
+
* @contractRole canonical
|
|
125
|
+
* @ownerModule pagination/schemas.ts
|
|
126
|
+
*/
|
|
127
|
+
export const PageDatasourceFieldProvenanceSchema = PageDatasourceFieldProvenanceSchemaDefinition;
|
|
128
|
+
const PageEmployeeCountSchemaDefinition = z.object({
|
|
129
|
+
content: z.array(EmployeeCountSchema).optional(),
|
|
130
|
+
empty: z.boolean().optional(),
|
|
131
|
+
first: z.boolean().optional(),
|
|
132
|
+
last: z.boolean().optional(),
|
|
133
|
+
number: z.int().optional(),
|
|
134
|
+
numberOfElements: z.int().optional(),
|
|
135
|
+
pageable: PageableObjectSchema.optional(),
|
|
136
|
+
size: z.int().optional(),
|
|
137
|
+
sort: SortObjectSchema.optional(),
|
|
138
|
+
totalElements: z.number().int().optional(),
|
|
139
|
+
totalPages: z.int().optional(),
|
|
140
|
+
});
|
|
141
|
+
/**
|
|
142
|
+
* @openapiSchema PageEmployeeCount
|
|
143
|
+
* @endpoint GET /v1/entities/detail/people/time-series
|
|
144
|
+
* @contractShape pagination.page-employee-count
|
|
145
|
+
* @contractRole canonical
|
|
146
|
+
* @ownerModule pagination/schemas.ts
|
|
147
|
+
*/
|
|
148
|
+
export const PageEmployeeCountSchema = PageEmployeeCountSchemaDefinition;
|
|
149
|
+
const PageEntitySchemaDefinition = z.object({
|
|
150
|
+
content: z.array(EntitySchema).optional(),
|
|
151
|
+
empty: z.boolean().optional(),
|
|
152
|
+
first: z.boolean().optional(),
|
|
153
|
+
last: z.boolean().optional(),
|
|
154
|
+
number: z.int().optional(),
|
|
155
|
+
numberOfElements: z.int().optional(),
|
|
156
|
+
pageable: PageableObjectSchema.optional(),
|
|
157
|
+
size: z.int().optional(),
|
|
158
|
+
sort: SortObjectSchema.optional(),
|
|
159
|
+
totalElements: z.number().int().optional(),
|
|
160
|
+
totalPages: z.int().optional(),
|
|
161
|
+
});
|
|
162
|
+
/**
|
|
163
|
+
* @openapiSchema PageEntity
|
|
164
|
+
* @endpoint GET /v1/sitemap/entities/routes
|
|
165
|
+
* @endpoint GET /v1/addresses/locations/{scope}/{slug}
|
|
166
|
+
* @endpoint GET /v1/news/{id}/related-companies
|
|
167
|
+
* @contractShape pagination.page-entity
|
|
168
|
+
* @contractRole canonical
|
|
169
|
+
* @ownerModule pagination/schemas.ts
|
|
170
|
+
*/
|
|
171
|
+
export const PageEntitySchema = PageEntitySchemaDefinition;
|
|
172
|
+
const PageEntityAcquisitionSchemaDefinition = z.object({
|
|
173
|
+
content: z.array(EntityAcquisitionSchema).optional(),
|
|
174
|
+
empty: z.boolean().optional(),
|
|
175
|
+
first: z.boolean().optional(),
|
|
176
|
+
last: z.boolean().optional(),
|
|
177
|
+
number: z.int().optional(),
|
|
178
|
+
numberOfElements: z.int().optional(),
|
|
179
|
+
pageable: PageableObjectSchema.optional(),
|
|
180
|
+
size: z.int().optional(),
|
|
181
|
+
sort: SortObjectSchema.optional(),
|
|
182
|
+
totalElements: z.number().int().optional(),
|
|
183
|
+
totalPages: z.int().optional(),
|
|
184
|
+
});
|
|
185
|
+
/**
|
|
186
|
+
* @openapiSchema PageEntityAcquisition
|
|
187
|
+
* @endpoint GET /v1/entities/{entityId}/acquisitions
|
|
188
|
+
* @contractShape pagination.page-entity-acquisition
|
|
189
|
+
* @contractRole canonical
|
|
190
|
+
* @ownerModule pagination/schemas.ts
|
|
191
|
+
*/
|
|
192
|
+
export const PageEntityAcquisitionSchema = PageEntityAcquisitionSchemaDefinition;
|
|
193
|
+
const PageEntityDetailSchemaDefinition = z.object({
|
|
194
|
+
content: z.array(EntityDetailSchema).optional(),
|
|
195
|
+
empty: z.boolean().optional(),
|
|
196
|
+
first: z.boolean().optional(),
|
|
197
|
+
last: z.boolean().optional(),
|
|
198
|
+
number: z.int().optional(),
|
|
199
|
+
numberOfElements: z.int().optional(),
|
|
200
|
+
pageable: PageableObjectSchema.optional(),
|
|
201
|
+
size: z.int().optional(),
|
|
202
|
+
sort: SortObjectSchema.optional(),
|
|
203
|
+
totalElements: z.number().int().optional(),
|
|
204
|
+
totalPages: z.int().optional(),
|
|
205
|
+
});
|
|
206
|
+
/**
|
|
207
|
+
* @openapiSchema PageEntityDetail
|
|
208
|
+
* @endpoint POST /v1/entities/batch
|
|
209
|
+
* @endpoint POST /v1/entities/detail/batch
|
|
210
|
+
* @endpoint POST /v1/entities/lookup/batch
|
|
211
|
+
* @contractShape pagination.page-entity-detail
|
|
212
|
+
* @contractRole canonical
|
|
213
|
+
* @ownerModule pagination/schemas.ts
|
|
214
|
+
*/
|
|
215
|
+
export const PageEntityDetailSchema = PageEntityDetailSchemaDefinition;
|
|
216
|
+
const PageEntityFundraiseInvestorJoinSchemaDefinition = z.object({
|
|
217
|
+
content: z.array(EntityFundraiseInvestorJoinSchema).optional(),
|
|
218
|
+
empty: z.boolean().optional(),
|
|
219
|
+
first: z.boolean().optional(),
|
|
220
|
+
last: z.boolean().optional(),
|
|
221
|
+
number: z.int().optional(),
|
|
222
|
+
numberOfElements: z.int().optional(),
|
|
223
|
+
pageable: PageableObjectSchema.optional(),
|
|
224
|
+
size: z.int().optional(),
|
|
225
|
+
sort: SortObjectSchema.optional(),
|
|
226
|
+
totalElements: z.number().int().optional(),
|
|
227
|
+
totalPages: z.int().optional(),
|
|
228
|
+
});
|
|
229
|
+
/**
|
|
230
|
+
* @openapiSchema PageEntityFundraiseInvestorJoin
|
|
231
|
+
* @endpoint GET /v1/entities/detail/fundraise-investor-joins
|
|
232
|
+
* @contractShape pagination.page-entity-fundraise-investor-join
|
|
233
|
+
* @contractRole canonical
|
|
234
|
+
* @ownerModule pagination/schemas.ts
|
|
235
|
+
*/
|
|
236
|
+
export const PageEntityFundraiseInvestorJoinSchema = PageEntityFundraiseInvestorJoinSchemaDefinition;
|
|
237
|
+
const PageEntityFundraiseTransactionSchemaDefinition = z.object({
|
|
238
|
+
content: z.array(EntityFundraiseTransactionSchema).optional(),
|
|
239
|
+
empty: z.boolean().optional(),
|
|
240
|
+
first: z.boolean().optional(),
|
|
241
|
+
last: z.boolean().optional(),
|
|
242
|
+
number: z.int().optional(),
|
|
243
|
+
numberOfElements: z.int().optional(),
|
|
244
|
+
pageable: PageableObjectSchema.optional(),
|
|
245
|
+
size: z.int().optional(),
|
|
246
|
+
sort: SortObjectSchema.optional(),
|
|
247
|
+
totalElements: z.number().int().optional(),
|
|
248
|
+
totalPages: z.int().optional(),
|
|
249
|
+
});
|
|
250
|
+
/**
|
|
251
|
+
* @openapiSchema PageEntityFundraiseTransaction
|
|
252
|
+
* @endpoint GET /v1/entities/detail/fundraise-rounds
|
|
253
|
+
* @endpoint GET /v1/entities/detail/investments
|
|
254
|
+
* @contractShape pagination.page-entity-fundraise-transaction
|
|
255
|
+
* @contractRole canonical
|
|
256
|
+
* @ownerModule pagination/schemas.ts
|
|
257
|
+
*/
|
|
258
|
+
export const PageEntityFundraiseTransactionSchema = PageEntityFundraiseTransactionSchemaDefinition;
|
|
259
|
+
const PageEntityInvestorParticipationSchemaDefinition = z.object({
|
|
260
|
+
content: z.array(EntityInvestorParticipationSchema).optional(),
|
|
261
|
+
empty: z.boolean().optional(),
|
|
262
|
+
first: z.boolean().optional(),
|
|
263
|
+
last: z.boolean().optional(),
|
|
264
|
+
number: z.int().optional(),
|
|
265
|
+
numberOfElements: z.int().optional(),
|
|
266
|
+
pageable: PageableObjectSchema.optional(),
|
|
267
|
+
size: z.int().optional(),
|
|
268
|
+
sort: SortObjectSchema.optional(),
|
|
269
|
+
totalElements: z.number().int().optional(),
|
|
270
|
+
totalPages: z.int().optional(),
|
|
271
|
+
});
|
|
272
|
+
/**
|
|
273
|
+
* @openapiSchema PageEntityInvestorParticipation
|
|
274
|
+
* @endpoint GET /v1/entities/detail/investors
|
|
275
|
+
* @contractShape pagination.page-entity-investor-participation
|
|
276
|
+
* @contractRole canonical
|
|
277
|
+
* @ownerModule pagination/schemas.ts
|
|
278
|
+
*/
|
|
279
|
+
export const PageEntityInvestorParticipationSchema = PageEntityInvestorParticipationSchemaDefinition;
|
|
280
|
+
const PageEntityListSchemaDefinition = z.object({
|
|
281
|
+
content: z.array(EntityListSchema).optional(),
|
|
282
|
+
empty: z.boolean().optional(),
|
|
283
|
+
first: z.boolean().optional(),
|
|
284
|
+
last: z.boolean().optional(),
|
|
285
|
+
number: z.int().optional(),
|
|
286
|
+
numberOfElements: z.int().optional(),
|
|
287
|
+
pageable: PageableObjectSchema.optional(),
|
|
288
|
+
size: z.int().optional(),
|
|
289
|
+
sort: SortObjectSchema.optional(),
|
|
290
|
+
totalElements: z.number().int().optional(),
|
|
291
|
+
totalPages: z.int().optional(),
|
|
292
|
+
});
|
|
293
|
+
/**
|
|
294
|
+
* @openapiSchema PageEntityList
|
|
295
|
+
* @endpoint GET /v1/entities
|
|
296
|
+
* @endpoint POST /v1/entities/batch
|
|
297
|
+
* @endpoint POST /v1/entities/search
|
|
298
|
+
* @contractShape pagination.page-entity-list
|
|
299
|
+
* @contractRole canonical
|
|
300
|
+
* @ownerModule pagination/schemas.ts
|
|
301
|
+
*/
|
|
302
|
+
export const PageEntityListSchema = PageEntityListSchemaDefinition;
|
|
303
|
+
const PageEntityListSummarySchemaDefinition = z.object({
|
|
304
|
+
content: z.array(EntityListSummarySchema).optional(),
|
|
305
|
+
empty: z.boolean().optional(),
|
|
306
|
+
first: z.boolean().optional(),
|
|
307
|
+
last: z.boolean().optional(),
|
|
308
|
+
number: z.int().optional(),
|
|
309
|
+
numberOfElements: z.int().optional(),
|
|
310
|
+
pageable: PageableObjectSchema.optional(),
|
|
311
|
+
size: z.int().optional(),
|
|
312
|
+
sort: SortObjectSchema.optional(),
|
|
313
|
+
totalElements: z.number().int().optional(),
|
|
314
|
+
totalPages: z.int().optional(),
|
|
315
|
+
});
|
|
316
|
+
/**
|
|
317
|
+
* @openapiSchema PageEntityListSummary
|
|
318
|
+
* @endpoint GET /v1/entities/summary
|
|
319
|
+
* @contractShape pagination.page-entity-list-summary
|
|
320
|
+
* @contractRole canonical
|
|
321
|
+
* @ownerModule pagination/schemas.ts
|
|
322
|
+
*/
|
|
323
|
+
export const PageEntityListSummarySchema = PageEntityListSummarySchemaDefinition;
|
|
324
|
+
const PageEntityPersonAssociationSchemaDefinition = z.object({
|
|
325
|
+
content: z.array(EntityPersonAssociationSchema).optional(),
|
|
326
|
+
empty: z.boolean().optional(),
|
|
327
|
+
first: z.boolean().optional(),
|
|
328
|
+
last: z.boolean().optional(),
|
|
329
|
+
number: z.int().optional(),
|
|
330
|
+
numberOfElements: z.int().optional(),
|
|
331
|
+
pageable: PageableObjectSchema.optional(),
|
|
332
|
+
size: z.int().optional(),
|
|
333
|
+
sort: SortObjectSchema.optional(),
|
|
334
|
+
totalElements: z.number().int().optional(),
|
|
335
|
+
totalPages: z.int().optional(),
|
|
336
|
+
});
|
|
337
|
+
/**
|
|
338
|
+
* @openapiSchema PageEntityPersonAssociation
|
|
339
|
+
* @endpoint GET /v1/entities/{entityId}/people
|
|
340
|
+
* @endpoint GET /v1/people/{personId}/entities
|
|
341
|
+
* @contractShape pagination.page-entity-person-association
|
|
342
|
+
* @contractRole canonical
|
|
343
|
+
* @ownerModule pagination/schemas.ts
|
|
344
|
+
*/
|
|
345
|
+
export const PageEntityPersonAssociationSchema = PageEntityPersonAssociationSchemaDefinition;
|
|
346
|
+
const PageEntityRelationshipSchemaDefinition = z.object({
|
|
347
|
+
content: z.array(EntityRelationshipSchema).optional(),
|
|
348
|
+
empty: z.boolean().optional(),
|
|
349
|
+
first: z.boolean().optional(),
|
|
350
|
+
last: z.boolean().optional(),
|
|
351
|
+
number: z.int().optional(),
|
|
352
|
+
numberOfElements: z.int().optional(),
|
|
353
|
+
pageable: PageableObjectSchema.optional(),
|
|
354
|
+
size: z.int().optional(),
|
|
355
|
+
sort: SortObjectSchema.optional(),
|
|
356
|
+
totalElements: z.number().int().optional(),
|
|
357
|
+
totalPages: z.int().optional(),
|
|
358
|
+
});
|
|
359
|
+
/**
|
|
360
|
+
* @openapiSchema PageEntityRelationship
|
|
361
|
+
* @endpoint GET /v1/entities/{entityId}/relationships
|
|
362
|
+
* @contractShape pagination.page-entity-relationship
|
|
363
|
+
* @contractRole canonical
|
|
364
|
+
* @ownerModule pagination/schemas.ts
|
|
365
|
+
*/
|
|
366
|
+
export const PageEntityRelationshipSchema = PageEntityRelationshipSchemaDefinition;
|
|
367
|
+
const PageEntityResearchDetailSchemaDefinition = z.object({
|
|
368
|
+
content: z.array(EntityResearchDetailSchema).optional(),
|
|
369
|
+
empty: z.boolean().optional(),
|
|
370
|
+
first: z.boolean().optional(),
|
|
371
|
+
last: z.boolean().optional(),
|
|
372
|
+
number: z.int().optional(),
|
|
373
|
+
numberOfElements: z.int().optional(),
|
|
374
|
+
pageable: PageableObjectSchema.optional(),
|
|
375
|
+
size: z.int().optional(),
|
|
376
|
+
sort: SortObjectSchema.optional(),
|
|
377
|
+
totalElements: z.number().int().optional(),
|
|
378
|
+
totalPages: z.int().optional(),
|
|
379
|
+
});
|
|
380
|
+
/**
|
|
381
|
+
* @openapiSchema PageEntityResearchDetail
|
|
382
|
+
* @endpoint GET /v1/entities/{entityId}/research/details
|
|
383
|
+
* @contractShape pagination.page-entity-research-detail
|
|
384
|
+
* @contractRole canonical
|
|
385
|
+
* @ownerModule pagination/schemas.ts
|
|
386
|
+
*/
|
|
387
|
+
export const PageEntityResearchDetailSchema = PageEntityResearchDetailSchemaDefinition;
|
|
388
|
+
const PageEntityResearchSnippetSchemaDefinition = z.object({
|
|
389
|
+
content: z.array(EntityResearchSnippetSchema).optional(),
|
|
390
|
+
empty: z.boolean().optional(),
|
|
391
|
+
first: z.boolean().optional(),
|
|
392
|
+
last: z.boolean().optional(),
|
|
393
|
+
number: z.int().optional(),
|
|
394
|
+
numberOfElements: z.int().optional(),
|
|
395
|
+
pageable: PageableObjectSchema.optional(),
|
|
396
|
+
size: z.int().optional(),
|
|
397
|
+
sort: SortObjectSchema.optional(),
|
|
398
|
+
totalElements: z.number().int().optional(),
|
|
399
|
+
totalPages: z.int().optional(),
|
|
400
|
+
});
|
|
401
|
+
/**
|
|
402
|
+
* @openapiSchema PageEntityResearchSnippet
|
|
403
|
+
* @endpoint GET /v1/entities/{entityId}/research/snippets
|
|
404
|
+
* @contractShape pagination.page-entity-research-snippet
|
|
405
|
+
* @contractRole canonical
|
|
406
|
+
* @ownerModule pagination/schemas.ts
|
|
407
|
+
*/
|
|
408
|
+
export const PageEntityResearchSnippetSchema = PageEntityResearchSnippetSchemaDefinition;
|
|
409
|
+
const PageEntitySimilarityResultSchemaDefinition = z.object({
|
|
410
|
+
content: z.array(EntitySimilarityResultSchema).optional(),
|
|
411
|
+
empty: z.boolean().optional(),
|
|
412
|
+
first: z.boolean().optional(),
|
|
413
|
+
last: z.boolean().optional(),
|
|
414
|
+
number: z.int().optional(),
|
|
415
|
+
numberOfElements: z.int().optional(),
|
|
416
|
+
pageable: PageableObjectSchema.optional(),
|
|
417
|
+
size: z.int().optional(),
|
|
418
|
+
sort: SortObjectSchema.optional(),
|
|
419
|
+
totalElements: z.number().int().optional(),
|
|
420
|
+
totalPages: z.int().optional(),
|
|
421
|
+
});
|
|
422
|
+
/**
|
|
423
|
+
* @openapiSchema PageEntitySimilarityResult
|
|
424
|
+
* @endpoint GET /v1/entities/detail/similar
|
|
425
|
+
* @contractShape pagination.page-entity-similarity-result
|
|
426
|
+
* @contractRole canonical
|
|
427
|
+
* @ownerModule pagination/schemas.ts
|
|
428
|
+
*/
|
|
429
|
+
export const PageEntitySimilarityResultSchema = PageEntitySimilarityResultSchemaDefinition;
|
|
430
|
+
const PageEntitySitemapUrlSchemaDefinition = z.object({
|
|
431
|
+
content: z.array(EntitySitemapUrlSchema).optional(),
|
|
432
|
+
empty: z.boolean().optional(),
|
|
433
|
+
first: z.boolean().optional(),
|
|
434
|
+
last: z.boolean().optional(),
|
|
435
|
+
number: z.int().optional(),
|
|
436
|
+
numberOfElements: z.int().optional(),
|
|
437
|
+
pageable: PageableObjectSchema.optional(),
|
|
438
|
+
size: z.int().optional(),
|
|
439
|
+
sort: SortObjectSchema.optional(),
|
|
440
|
+
totalElements: z.number().int().optional(),
|
|
441
|
+
totalPages: z.int().optional(),
|
|
442
|
+
});
|
|
443
|
+
/**
|
|
444
|
+
* @openapiSchema PageEntitySitemapUrl
|
|
445
|
+
* @endpoint GET /v1/sitemap/entities/urls
|
|
446
|
+
* @contractShape pagination.page-entity-sitemap-url
|
|
447
|
+
* @contractRole canonical
|
|
448
|
+
* @ownerModule pagination/schemas.ts
|
|
449
|
+
*/
|
|
450
|
+
export const PageEntitySitemapUrlSchema = PageEntitySitemapUrlSchemaDefinition;
|
|
451
|
+
const PageEntityTagSchemaDefinition = z.object({
|
|
452
|
+
content: z.array(EntityTagSchema).optional(),
|
|
453
|
+
empty: z.boolean().optional(),
|
|
454
|
+
first: z.boolean().optional(),
|
|
455
|
+
last: z.boolean().optional(),
|
|
456
|
+
number: z.int().optional(),
|
|
457
|
+
numberOfElements: z.int().optional(),
|
|
458
|
+
pageable: PageableObjectSchema.optional(),
|
|
459
|
+
size: z.int().optional(),
|
|
460
|
+
sort: SortObjectSchema.optional(),
|
|
461
|
+
totalElements: z.number().int().optional(),
|
|
462
|
+
totalPages: z.int().optional(),
|
|
463
|
+
});
|
|
464
|
+
/**
|
|
465
|
+
* @openapiSchema PageEntityTag
|
|
466
|
+
* @endpoint GET /v1/classifications/tags
|
|
467
|
+
* @contractShape pagination.page-entity-tag
|
|
468
|
+
* @contractRole canonical
|
|
469
|
+
* @ownerModule pagination/schemas.ts
|
|
470
|
+
*/
|
|
471
|
+
export const PageEntityTagSchema = PageEntityTagSchemaDefinition;
|
|
472
|
+
const PageEntityTextSchemaDefinition = z.object({
|
|
473
|
+
content: z.array(EntityTextSchema).optional(),
|
|
474
|
+
empty: z.boolean().optional(),
|
|
475
|
+
first: z.boolean().optional(),
|
|
476
|
+
last: z.boolean().optional(),
|
|
477
|
+
number: z.int().optional(),
|
|
478
|
+
numberOfElements: z.int().optional(),
|
|
479
|
+
pageable: PageableObjectSchema.optional(),
|
|
480
|
+
size: z.int().optional(),
|
|
481
|
+
sort: SortObjectSchema.optional(),
|
|
482
|
+
totalElements: z.number().int().optional(),
|
|
483
|
+
totalPages: z.int().optional(),
|
|
484
|
+
});
|
|
485
|
+
/**
|
|
486
|
+
* @openapiSchema PageEntityText
|
|
487
|
+
* @endpoint GET /v1/entities/{entityId}/texts
|
|
488
|
+
* @endpoint GET /v1/people/{personId}/texts
|
|
489
|
+
* @contractShape pagination.page-entity-text
|
|
490
|
+
* @contractRole canonical
|
|
491
|
+
* @ownerModule pagination/schemas.ts
|
|
492
|
+
*/
|
|
493
|
+
export const PageEntityTextSchema = PageEntityTextSchemaDefinition;
|
|
494
|
+
const PageEntityUrlLinkSchemaDefinition = z.object({
|
|
495
|
+
content: z.array(EntityUrlLinkSchema).optional(),
|
|
496
|
+
empty: z.boolean().optional(),
|
|
497
|
+
first: z.boolean().optional(),
|
|
498
|
+
last: z.boolean().optional(),
|
|
499
|
+
number: z.int().optional(),
|
|
500
|
+
numberOfElements: z.int().optional(),
|
|
501
|
+
pageable: PageableObjectSchema.optional(),
|
|
502
|
+
size: z.int().optional(),
|
|
503
|
+
sort: SortObjectSchema.optional(),
|
|
504
|
+
totalElements: z.number().int().optional(),
|
|
505
|
+
totalPages: z.int().optional(),
|
|
506
|
+
});
|
|
507
|
+
/**
|
|
508
|
+
* @openapiSchema PageEntityUrlLink
|
|
509
|
+
* @endpoint GET /v1/entities/{entityId}/urls
|
|
510
|
+
* @endpoint GET /v1/entities/{entityId}/urls/all
|
|
511
|
+
* @endpoint GET /v1/people/{personId}/urls
|
|
512
|
+
* @endpoint GET /v1/people/{personId}/urls/all
|
|
513
|
+
* @contractShape pagination.page-entity-url-link
|
|
514
|
+
* @contractRole canonical
|
|
515
|
+
* @ownerModule pagination/schemas.ts
|
|
516
|
+
*/
|
|
517
|
+
export const PageEntityUrlLinkSchema = PageEntityUrlLinkSchemaDefinition;
|
|
518
|
+
const PageEntityValuationTimeSeriesPointSchemaDefinition = z.object({
|
|
519
|
+
content: z.array(EntityValuationTimeSeriesPointSchema).optional(),
|
|
520
|
+
empty: z.boolean().optional(),
|
|
521
|
+
first: z.boolean().optional(),
|
|
522
|
+
last: z.boolean().optional(),
|
|
523
|
+
number: z.int().optional(),
|
|
524
|
+
numberOfElements: z.int().optional(),
|
|
525
|
+
pageable: PageableObjectSchema.optional(),
|
|
526
|
+
size: z.int().optional(),
|
|
527
|
+
sort: SortObjectSchema.optional(),
|
|
528
|
+
totalElements: z.number().int().optional(),
|
|
529
|
+
totalPages: z.int().optional(),
|
|
530
|
+
});
|
|
531
|
+
/**
|
|
532
|
+
* @openapiSchema PageEntityValuationTimeSeriesPoint
|
|
533
|
+
* @endpoint GET /v1/entities/detail/financial/valuation
|
|
534
|
+
* @contractShape pagination.page-entity-valuation-time-series-point
|
|
535
|
+
* @contractRole canonical
|
|
536
|
+
* @ownerModule pagination/schemas.ts
|
|
537
|
+
*/
|
|
538
|
+
export const PageEntityValuationTimeSeriesPointSchema = PageEntityValuationTimeSeriesPointSchemaDefinition;
|
|
539
|
+
const PageGithubRepoSchemaDefinition = z.object({
|
|
540
|
+
content: z.array(GithubRepoSchema).optional(),
|
|
541
|
+
empty: z.boolean().optional(),
|
|
542
|
+
first: z.boolean().optional(),
|
|
543
|
+
last: z.boolean().optional(),
|
|
544
|
+
number: z.int().optional(),
|
|
545
|
+
numberOfElements: z.int().optional(),
|
|
546
|
+
pageable: PageableObjectSchema.optional(),
|
|
547
|
+
size: z.int().optional(),
|
|
548
|
+
sort: SortObjectSchema.optional(),
|
|
549
|
+
totalElements: z.number().int().optional(),
|
|
550
|
+
totalPages: z.int().optional(),
|
|
551
|
+
});
|
|
552
|
+
/**
|
|
553
|
+
* @openapiSchema PageGithubRepo
|
|
554
|
+
* @endpoint GET /v1/entities/{entityId}/repositories
|
|
555
|
+
* @endpoint GET /v1/people/{personId}/repositories
|
|
556
|
+
* @contractShape pagination.page-github-repo
|
|
557
|
+
* @contractRole canonical
|
|
558
|
+
* @ownerModule pagination/schemas.ts
|
|
559
|
+
*/
|
|
560
|
+
export const PageGithubRepoSchema = PageGithubRepoSchemaDefinition;
|
|
561
|
+
const PageLocationDirectoryEntrySchemaDefinition = z.object({
|
|
562
|
+
content: z.array(LocationDirectoryEntrySchema).optional(),
|
|
563
|
+
empty: z.boolean().optional(),
|
|
564
|
+
first: z.boolean().optional(),
|
|
565
|
+
last: z.boolean().optional(),
|
|
566
|
+
number: z.int().optional(),
|
|
567
|
+
numberOfElements: z.int().optional(),
|
|
568
|
+
pageable: PageableObjectSchema.optional(),
|
|
569
|
+
size: z.int().optional(),
|
|
570
|
+
sort: SortObjectSchema.optional(),
|
|
571
|
+
totalElements: z.number().int().optional(),
|
|
572
|
+
totalPages: z.int().optional(),
|
|
573
|
+
});
|
|
574
|
+
/**
|
|
575
|
+
* @openapiSchema PageLocationDirectoryEntry
|
|
576
|
+
* @endpoint GET /v1/addresses/locations/{scope}
|
|
577
|
+
* @contractShape pagination.page-location-directory-entry
|
|
578
|
+
* @contractRole canonical
|
|
579
|
+
* @ownerModule pagination/schemas.ts
|
|
580
|
+
*/
|
|
581
|
+
export const PageLocationDirectoryEntrySchema = PageLocationDirectoryEntrySchemaDefinition;
|
|
582
|
+
const PageMediaScreenshotSchemaDefinition = z.object({
|
|
583
|
+
content: z.array(MediaScreenshotSchema).optional(),
|
|
584
|
+
empty: z.boolean().optional(),
|
|
585
|
+
first: z.boolean().optional(),
|
|
586
|
+
last: z.boolean().optional(),
|
|
587
|
+
number: z.int().optional(),
|
|
588
|
+
numberOfElements: z.int().optional(),
|
|
589
|
+
pageable: PageableObjectSchema.optional(),
|
|
590
|
+
size: z.int().optional(),
|
|
591
|
+
sort: SortObjectSchema.optional(),
|
|
592
|
+
totalElements: z.number().int().optional(),
|
|
593
|
+
totalPages: z.int().optional(),
|
|
594
|
+
});
|
|
595
|
+
/**
|
|
596
|
+
* @openapiSchema PageMediaScreenshot
|
|
597
|
+
* @endpoint GET /v1/media/screenshots
|
|
598
|
+
* @contractShape pagination.page-media-screenshot
|
|
599
|
+
* @contractRole canonical
|
|
600
|
+
* @ownerModule pagination/schemas.ts
|
|
601
|
+
*/
|
|
602
|
+
export const PageMediaScreenshotSchema = PageMediaScreenshotSchemaDefinition;
|
|
603
|
+
const PageNewsSchemaDefinition = z.object({
|
|
604
|
+
content: z.array(NewsSchema).optional(),
|
|
605
|
+
empty: z.boolean().optional(),
|
|
606
|
+
first: z.boolean().optional(),
|
|
607
|
+
last: z.boolean().optional(),
|
|
608
|
+
number: z.int().optional(),
|
|
609
|
+
numberOfElements: z.int().optional(),
|
|
610
|
+
pageable: PageableObjectSchema.optional(),
|
|
611
|
+
size: z.int().optional(),
|
|
612
|
+
sort: SortObjectSchema.optional(),
|
|
613
|
+
totalElements: z.number().int().optional(),
|
|
614
|
+
totalPages: z.int().optional(),
|
|
615
|
+
});
|
|
616
|
+
/**
|
|
617
|
+
* @openapiSchema PageNews
|
|
618
|
+
* @endpoint GET /v1/entities/detail/news
|
|
619
|
+
* @endpoint GET /v1/entities/detail/trending-news
|
|
620
|
+
* @endpoint GET /v1/news
|
|
621
|
+
* @endpoint GET /v1/news/recent
|
|
622
|
+
* @endpoint GET /v1/news/similar
|
|
623
|
+
* @endpoint GET /v1/people/detail/news
|
|
624
|
+
* @endpoint POST /v1/news
|
|
625
|
+
* @contractShape pagination.page-news
|
|
626
|
+
* @contractRole canonical
|
|
627
|
+
* @ownerModule pagination/schemas.ts
|
|
628
|
+
*/
|
|
629
|
+
export const PageNewsSchema = PageNewsSchemaDefinition;
|
|
630
|
+
const PagePersonSchemaDefinition = z.object({
|
|
631
|
+
content: z.array(PersonSchema).optional(),
|
|
632
|
+
empty: z.boolean().optional(),
|
|
633
|
+
first: z.boolean().optional(),
|
|
634
|
+
last: z.boolean().optional(),
|
|
635
|
+
number: z.int().optional(),
|
|
636
|
+
numberOfElements: z.int().optional(),
|
|
637
|
+
pageable: PageableObjectSchema.optional(),
|
|
638
|
+
size: z.int().optional(),
|
|
639
|
+
sort: SortObjectSchema.optional(),
|
|
640
|
+
totalElements: z.number().int().optional(),
|
|
641
|
+
totalPages: z.int().optional(),
|
|
642
|
+
});
|
|
643
|
+
/**
|
|
644
|
+
* @openapiSchema PagePerson
|
|
645
|
+
* @endpoint GET /v1/people
|
|
646
|
+
* @endpoint POST /v1/people/batch
|
|
647
|
+
* @endpoint POST /v1/people/search
|
|
648
|
+
* @contractShape pagination.page-person
|
|
649
|
+
* @contractRole canonical
|
|
650
|
+
* @ownerModule pagination/schemas.ts
|
|
651
|
+
*/
|
|
652
|
+
export const PagePersonSchema = PagePersonSchemaDefinition;
|
|
653
|
+
const PagePersonDetailSchemaDefinition = z.object({
|
|
654
|
+
content: z.array(PersonDetailSchema).optional(),
|
|
655
|
+
empty: z.boolean().optional(),
|
|
656
|
+
first: z.boolean().optional(),
|
|
657
|
+
last: z.boolean().optional(),
|
|
658
|
+
number: z.int().optional(),
|
|
659
|
+
numberOfElements: z.int().optional(),
|
|
660
|
+
pageable: PageableObjectSchema.optional(),
|
|
661
|
+
size: z.int().optional(),
|
|
662
|
+
sort: SortObjectSchema.optional(),
|
|
663
|
+
totalElements: z.number().int().optional(),
|
|
664
|
+
totalPages: z.int().optional(),
|
|
665
|
+
});
|
|
666
|
+
/**
|
|
667
|
+
* @openapiSchema PagePersonDetail
|
|
668
|
+
* @endpoint POST /v1/people/batch
|
|
669
|
+
* @endpoint POST /v1/people/detail/batch
|
|
670
|
+
* @endpoint POST /v1/people/lookup/batch
|
|
671
|
+
* @contractShape pagination.page-person-detail
|
|
672
|
+
* @contractRole canonical
|
|
673
|
+
* @ownerModule pagination/schemas.ts
|
|
674
|
+
*/
|
|
675
|
+
export const PagePersonDetailSchema = PagePersonDetailSchemaDefinition;
|
|
676
|
+
const PagePersonInvestmentSchemaDefinition = z.object({
|
|
677
|
+
content: z.array(PersonInvestmentSchema).optional(),
|
|
678
|
+
empty: z.boolean().optional(),
|
|
679
|
+
first: z.boolean().optional(),
|
|
680
|
+
last: z.boolean().optional(),
|
|
681
|
+
number: z.int().optional(),
|
|
682
|
+
numberOfElements: z.int().optional(),
|
|
683
|
+
pageable: PageableObjectSchema.optional(),
|
|
684
|
+
size: z.int().optional(),
|
|
685
|
+
sort: SortObjectSchema.optional(),
|
|
686
|
+
totalElements: z.number().int().optional(),
|
|
687
|
+
totalPages: z.int().optional(),
|
|
688
|
+
});
|
|
689
|
+
/**
|
|
690
|
+
* @openapiSchema PagePersonInvestment
|
|
691
|
+
* @endpoint GET /v1/people/detail/investments
|
|
692
|
+
* @contractShape pagination.page-person-investment
|
|
693
|
+
* @contractRole canonical
|
|
694
|
+
* @ownerModule pagination/schemas.ts
|
|
695
|
+
*/
|
|
696
|
+
export const PagePersonInvestmentSchema = PagePersonInvestmentSchemaDefinition;
|
|
697
|
+
const PagePersonInvestorParticipationSchemaDefinition = z.object({
|
|
698
|
+
content: z.array(PersonInvestorParticipationSchema).optional(),
|
|
699
|
+
empty: z.boolean().optional(),
|
|
700
|
+
first: z.boolean().optional(),
|
|
701
|
+
last: z.boolean().optional(),
|
|
702
|
+
number: z.int().optional(),
|
|
703
|
+
numberOfElements: z.int().optional(),
|
|
704
|
+
pageable: PageableObjectSchema.optional(),
|
|
705
|
+
size: z.int().optional(),
|
|
706
|
+
sort: SortObjectSchema.optional(),
|
|
707
|
+
totalElements: z.number().int().optional(),
|
|
708
|
+
totalPages: z.int().optional(),
|
|
709
|
+
});
|
|
710
|
+
/**
|
|
711
|
+
* @openapiSchema PagePersonInvestorParticipation
|
|
712
|
+
* @endpoint GET /v1/entities/detail/person-investors
|
|
713
|
+
* @contractShape pagination.page-person-investor-participation
|
|
714
|
+
* @contractRole canonical
|
|
715
|
+
* @ownerModule pagination/schemas.ts
|
|
716
|
+
*/
|
|
717
|
+
export const PagePersonInvestorParticipationSchema = PagePersonInvestorParticipationSchemaDefinition;
|
|
718
|
+
const PagePersonSimilarityResultSchemaDefinition = z.object({
|
|
719
|
+
content: z.array(PersonSimilarityResultSchema).optional(),
|
|
720
|
+
empty: z.boolean().optional(),
|
|
721
|
+
first: z.boolean().optional(),
|
|
722
|
+
last: z.boolean().optional(),
|
|
723
|
+
number: z.int().optional(),
|
|
724
|
+
numberOfElements: z.int().optional(),
|
|
725
|
+
pageable: PageableObjectSchema.optional(),
|
|
726
|
+
size: z.int().optional(),
|
|
727
|
+
sort: SortObjectSchema.optional(),
|
|
728
|
+
totalElements: z.number().int().optional(),
|
|
729
|
+
totalPages: z.int().optional(),
|
|
730
|
+
});
|
|
731
|
+
/**
|
|
732
|
+
* @openapiSchema PagePersonSimilarityResult
|
|
733
|
+
* @endpoint GET /v1/people/detail/similar
|
|
734
|
+
* @contractShape pagination.page-person-similarity-result
|
|
735
|
+
* @contractRole canonical
|
|
736
|
+
* @ownerModule pagination/schemas.ts
|
|
737
|
+
*/
|
|
738
|
+
export const PagePersonSimilarityResultSchema = PagePersonSimilarityResultSchemaDefinition;
|
|
739
|
+
const PageResultContentSchemaDefinition = z.object({
|
|
740
|
+
content: z.array(ContentSchema),
|
|
741
|
+
number: z.int(),
|
|
742
|
+
size: z.int(),
|
|
743
|
+
totalElements: z.number().int(),
|
|
744
|
+
totalPages: z.int(),
|
|
745
|
+
});
|
|
746
|
+
/**
|
|
747
|
+
* @openapiSchema PageResultContent
|
|
748
|
+
* @endpoint POST /v1/content/search
|
|
749
|
+
* @endpoint POST /v1/entities/{entityId}/content/search
|
|
750
|
+
* @endpoint POST /v1/people/{personId}/content/search
|
|
751
|
+
* @usedBySchema ContentSearchResultSchema
|
|
752
|
+
* @contractShape pagination.page-result-content
|
|
753
|
+
* @contractRole canonical
|
|
754
|
+
*/
|
|
755
|
+
export const PageResultContentSchema = PageResultContentSchemaDefinition;
|
|
756
|
+
const PageResultEntityListSchemaDefinition = z.object({
|
|
757
|
+
content: z.array(EntityListSchema),
|
|
758
|
+
number: z.int(),
|
|
759
|
+
size: z.int(),
|
|
760
|
+
totalElements: z.number().int(),
|
|
761
|
+
totalPages: z.int(),
|
|
762
|
+
});
|
|
763
|
+
/**
|
|
764
|
+
* @openapiSchema PageResultEntityList
|
|
765
|
+
* @endpoint GET /v1/search/link
|
|
766
|
+
* @endpoint POST /v1/entities/natural-search
|
|
767
|
+
* @endpoint POST /v1/search/all
|
|
768
|
+
* @usedBySchema NaturalSearchResultSchema
|
|
769
|
+
* @contractShape pagination.page-result-entity-list
|
|
770
|
+
* @contractRole canonical
|
|
771
|
+
*/
|
|
772
|
+
export const PageResultEntityListSchema = PageResultEntityListSchemaDefinition;
|
|
773
|
+
const PageResultLocationDirectoryEntrySchemaDefinition = z.object({
|
|
774
|
+
content: z.array(LocationDirectoryEntrySchema),
|
|
775
|
+
number: z.int(),
|
|
776
|
+
size: z.int(),
|
|
777
|
+
totalElements: z.number().int(),
|
|
778
|
+
totalPages: z.int(),
|
|
779
|
+
});
|
|
780
|
+
/**
|
|
781
|
+
* @openapiSchema PageResultLocationDirectoryEntry
|
|
782
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
783
|
+
* @usedBySchema LocationSitemapSchema
|
|
784
|
+
* @contractShape pagination.page-result-location-directory-entry
|
|
785
|
+
* @contractRole canonical
|
|
786
|
+
*/
|
|
787
|
+
export const PageResultLocationDirectoryEntrySchema = PageResultLocationDirectoryEntrySchemaDefinition;
|
|
788
|
+
const PageResultNewsSchemaDefinition = z.object({
|
|
789
|
+
content: z.array(NewsSchema),
|
|
790
|
+
number: z.int(),
|
|
791
|
+
size: z.int(),
|
|
792
|
+
totalElements: z.number().int(),
|
|
793
|
+
totalPages: z.int(),
|
|
794
|
+
});
|
|
795
|
+
/**
|
|
796
|
+
* @openapiSchema PageResultNews
|
|
797
|
+
* @endpoint GET /v1/search/link
|
|
798
|
+
* @endpoint POST /v1/search/all
|
|
799
|
+
* @usedBySchema FederatedSearchSchema
|
|
800
|
+
* @contractShape pagination.page-result-news
|
|
801
|
+
* @contractRole canonical
|
|
802
|
+
*/
|
|
803
|
+
export const PageResultNewsSchema = PageResultNewsSchemaDefinition;
|
|
804
|
+
const PageResultPersonSchemaDefinition = z.object({
|
|
805
|
+
content: z.array(PersonSchema),
|
|
806
|
+
number: z.int(),
|
|
807
|
+
size: z.int(),
|
|
808
|
+
totalElements: z.number().int(),
|
|
809
|
+
totalPages: z.int(),
|
|
810
|
+
});
|
|
811
|
+
/**
|
|
812
|
+
* @openapiSchema PageResultPerson
|
|
813
|
+
* @endpoint GET /v1/search/link
|
|
814
|
+
* @endpoint POST /v1/people/natural-search
|
|
815
|
+
* @endpoint POST /v1/search/all
|
|
816
|
+
* @usedBySchema PersonNaturalSearchResultSchema
|
|
817
|
+
* @contractShape pagination.page-result-person
|
|
818
|
+
* @contractRole canonical
|
|
819
|
+
*/
|
|
820
|
+
export const PageResultPersonSchema = PageResultPersonSchemaDefinition;
|
|
821
|
+
/**
|
|
822
|
+
* @openapiSchema PageResultSitemapUrlSlot
|
|
823
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
824
|
+
* @usedBySchema LocationSitemapSchema
|
|
825
|
+
* @contractShape pagination.page-result-sitemap-url-slot
|
|
826
|
+
* @contractRole canonical
|
|
827
|
+
*/
|
|
828
|
+
export const PageResultSitemapUrlSlotSchema = z.object({
|
|
829
|
+
content: z.array(SitemapUrlSlotSchema),
|
|
830
|
+
number: z.int(),
|
|
831
|
+
size: z.int(),
|
|
832
|
+
totalElements: z.number().int(),
|
|
833
|
+
totalPages: z.int(),
|
|
834
|
+
});
|
|
835
|
+
const PageSitemapUrlSlotSchemaDefinition = z.object({
|
|
836
|
+
content: z.array(SitemapUrlSlotSchema).optional(),
|
|
837
|
+
empty: z.boolean().optional(),
|
|
838
|
+
first: z.boolean().optional(),
|
|
839
|
+
last: z.boolean().optional(),
|
|
840
|
+
number: z.int().optional(),
|
|
841
|
+
numberOfElements: z.int().optional(),
|
|
842
|
+
pageable: PageableObjectSchema.optional(),
|
|
843
|
+
size: z.int().optional(),
|
|
844
|
+
sort: SortObjectSchema.optional(),
|
|
845
|
+
totalElements: z.number().int().optional(),
|
|
846
|
+
totalPages: z.int().optional(),
|
|
847
|
+
});
|
|
848
|
+
/**
|
|
849
|
+
* @openapiSchema PageSitemapUrlSlot
|
|
850
|
+
* @endpoint GET /v1/sitemap/url-slots
|
|
851
|
+
* @contractShape pagination.page-sitemap-url-slot
|
|
852
|
+
* @contractRole canonical
|
|
853
|
+
* @ownerModule pagination/schemas.ts
|
|
854
|
+
*/
|
|
855
|
+
export const PageSitemapUrlSlotSchema = PageSitemapUrlSlotSchemaDefinition;
|
|
856
|
+
const PageUniqueIdSchemaDefinition = z.object({
|
|
857
|
+
content: z.array(UniqueIdSchema).optional(),
|
|
858
|
+
empty: z.boolean().optional(),
|
|
859
|
+
first: z.boolean().optional(),
|
|
860
|
+
last: z.boolean().optional(),
|
|
861
|
+
number: z.int().optional(),
|
|
862
|
+
numberOfElements: z.int().optional(),
|
|
863
|
+
pageable: PageableObjectSchema.optional(),
|
|
864
|
+
size: z.int().optional(),
|
|
865
|
+
sort: SortObjectSchema.optional(),
|
|
866
|
+
totalElements: z.number().int().optional(),
|
|
867
|
+
totalPages: z.int().optional(),
|
|
868
|
+
});
|
|
869
|
+
/**
|
|
870
|
+
* @openapiSchema PageUniqueId
|
|
871
|
+
* @endpoint GET /v1/entities/{entityId}/unique-ids
|
|
872
|
+
* @endpoint GET /v1/people/{personId}/unique-ids
|
|
873
|
+
* @contractShape pagination.page-unique-id
|
|
874
|
+
* @contractRole canonical
|
|
875
|
+
* @ownerModule pagination/schemas.ts
|
|
876
|
+
*/
|
|
877
|
+
export const PageUniqueIdSchema = PageUniqueIdSchemaDefinition;
|
|
878
|
+
const PageUrlSlugRedirectSchemaDefinition = z.object({
|
|
879
|
+
content: z.array(UrlSlugRedirectSchema).optional(),
|
|
880
|
+
empty: z.boolean().optional(),
|
|
881
|
+
first: z.boolean().optional(),
|
|
882
|
+
last: z.boolean().optional(),
|
|
883
|
+
number: z.int().optional(),
|
|
884
|
+
numberOfElements: z.int().optional(),
|
|
885
|
+
pageable: PageableObjectSchema.optional(),
|
|
886
|
+
size: z.int().optional(),
|
|
887
|
+
sort: SortObjectSchema.optional(),
|
|
888
|
+
totalElements: z.number().int().optional(),
|
|
889
|
+
totalPages: z.int().optional(),
|
|
890
|
+
});
|
|
891
|
+
/**
|
|
892
|
+
* @openapiSchema PageUrlSlugRedirect
|
|
893
|
+
* @endpoint GET /v1/entities/{entityId}/slug/redirects
|
|
894
|
+
* @endpoint GET /v1/news/{newsId}/slug/redirects
|
|
895
|
+
* @endpoint GET /v1/people/{personId}/slug/redirects
|
|
896
|
+
* @contractShape pagination.page-url-slug-redirect
|
|
897
|
+
* @contractRole canonical
|
|
898
|
+
* @ownerModule pagination/schemas.ts
|
|
899
|
+
*/
|
|
900
|
+
export const PageUrlSlugRedirectSchema = PageUrlSlugRedirectSchemaDefinition;
|
|
901
|
+
//# sourceMappingURL=schemas.js.map
|