@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,864 @@
|
|
|
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
|
+
export const OPENAPI_COMPONENT_MANIFEST = Object.freeze({
|
|
3
|
+
Address: { modulePath: "address/address", schemaName: "AddressSchema" },
|
|
4
|
+
AddressAssociation: {
|
|
5
|
+
modulePath: "address/association",
|
|
6
|
+
schemaName: "AddressAssociationSchema",
|
|
7
|
+
},
|
|
8
|
+
AddressAssociationRole: {
|
|
9
|
+
modulePath: "address/association-role",
|
|
10
|
+
schemaName: "AddressAssociationRoleSchema",
|
|
11
|
+
},
|
|
12
|
+
AddressCity: { modulePath: "address/city", schemaName: "AddressCitySchema" },
|
|
13
|
+
AddressCountry: { modulePath: "address/country", schemaName: "AddressCountrySchema" },
|
|
14
|
+
AddressState: { modulePath: "address/state", schemaName: "AddressStateSchema" },
|
|
15
|
+
AgentHelp: { modulePath: "agent/help", schemaName: "AgentHelpSchema" },
|
|
16
|
+
AgentHelpQuestion: { modulePath: "agent/help-question", schemaName: "AgentHelpQuestionSchema" },
|
|
17
|
+
AgentInstruction: { modulePath: "agent/instruction", schemaName: "AgentInstructionSchema" },
|
|
18
|
+
AgentInstructionDetail: {
|
|
19
|
+
modulePath: "agent/instruction-detail",
|
|
20
|
+
schemaName: "AgentInstructionDetailSchema",
|
|
21
|
+
},
|
|
22
|
+
AgentInstructionKind: {
|
|
23
|
+
modulePath: "agent/instruction-kind",
|
|
24
|
+
schemaName: "AgentInstructionKindSchema",
|
|
25
|
+
},
|
|
26
|
+
AgentInstructionManifest: {
|
|
27
|
+
modulePath: "agent/instruction-manifest",
|
|
28
|
+
schemaName: "AgentInstructionManifestSchema",
|
|
29
|
+
},
|
|
30
|
+
AgentInstructionPointer: {
|
|
31
|
+
modulePath: "agent/instruction-pointer",
|
|
32
|
+
schemaName: "AgentInstructionPointerSchema",
|
|
33
|
+
},
|
|
34
|
+
AuthPermissionGrant: {
|
|
35
|
+
modulePath: "auth/permission-grant",
|
|
36
|
+
schemaName: "AuthPermissionGrantSchema",
|
|
37
|
+
},
|
|
38
|
+
BlogPost: { modulePath: "blog/post", schemaName: "BlogPostSchema" },
|
|
39
|
+
BlogPostType: { modulePath: "blog/post-type", schemaName: "BlogPostTypeSchema" },
|
|
40
|
+
ChartBucket: { modulePath: "chart/bucket", schemaName: "ChartBucketSchema" },
|
|
41
|
+
Classification: {
|
|
42
|
+
modulePath: "classification/classification",
|
|
43
|
+
schemaName: "ClassificationSchema",
|
|
44
|
+
},
|
|
45
|
+
ClassificationCatalog: {
|
|
46
|
+
modulePath: "classification/catalog",
|
|
47
|
+
schemaName: "ClassificationCatalogSchema",
|
|
48
|
+
},
|
|
49
|
+
ClassificationCatalogBucket: {
|
|
50
|
+
modulePath: "classification/catalog-bucket",
|
|
51
|
+
schemaName: "ClassificationCatalogBucketSchema",
|
|
52
|
+
},
|
|
53
|
+
ClassificationCatalogCategory: {
|
|
54
|
+
modulePath: "classification/catalog-category",
|
|
55
|
+
schemaName: "ClassificationCatalogCategorySchema",
|
|
56
|
+
},
|
|
57
|
+
ClassificationInactiveTagDetails: {
|
|
58
|
+
modulePath: "classification/inactive-tag-details",
|
|
59
|
+
schemaName: "ClassificationInactiveTagDetailsSchema",
|
|
60
|
+
},
|
|
61
|
+
CliAuthorization: { modulePath: "cli/authorization", schemaName: "CliAuthorizationSchema" },
|
|
62
|
+
CliAuthorizationClientPlatform: {
|
|
63
|
+
modulePath: "cli/authorization-client-platform",
|
|
64
|
+
schemaName: "CliAuthorizationClientPlatformSchema",
|
|
65
|
+
},
|
|
66
|
+
CliAuthorizationDelivery: {
|
|
67
|
+
modulePath: "cli/authorization-delivery",
|
|
68
|
+
schemaName: "CliAuthorizationDeliverySchema",
|
|
69
|
+
},
|
|
70
|
+
CliAuthorizationEncryptionAlgorithm: {
|
|
71
|
+
modulePath: "cli/authorization-encryption-algorithm",
|
|
72
|
+
schemaName: "CliAuthorizationEncryptionAlgorithmSchema",
|
|
73
|
+
},
|
|
74
|
+
CliAuthorizationMutation: {
|
|
75
|
+
modulePath: "cli/authorization-mutation",
|
|
76
|
+
schemaName: "CliAuthorizationMutationSchema",
|
|
77
|
+
},
|
|
78
|
+
CliAuthorizationPoll: {
|
|
79
|
+
modulePath: "cli/authorization-poll",
|
|
80
|
+
schemaName: "CliAuthorizationPollSchema",
|
|
81
|
+
},
|
|
82
|
+
CliAuthorizationStart: {
|
|
83
|
+
modulePath: "cli/authorization-start",
|
|
84
|
+
schemaName: "CliAuthorizationStartSchema",
|
|
85
|
+
},
|
|
86
|
+
CliAuthorizationStatus: {
|
|
87
|
+
modulePath: "cli/authorization-status",
|
|
88
|
+
schemaName: "CliAuthorizationStatusSchema",
|
|
89
|
+
},
|
|
90
|
+
CliAuthorizationTerminalReason: {
|
|
91
|
+
modulePath: "cli/authorization-terminal-reason",
|
|
92
|
+
schemaName: "CliAuthorizationTerminalReasonSchema",
|
|
93
|
+
},
|
|
94
|
+
CompletionGateCoverage: {
|
|
95
|
+
modulePath: "completion/gate-coverage",
|
|
96
|
+
schemaName: "CompletionGateCoverageSchema",
|
|
97
|
+
},
|
|
98
|
+
Confidence: { modulePath: "confidence/confidence", schemaName: "ConfidenceSchema" },
|
|
99
|
+
Content: { modulePath: "content/content", schemaName: "ContentSchema" },
|
|
100
|
+
ContentCompliance: { modulePath: "content/compliance", schemaName: "ContentComplianceSchema" },
|
|
101
|
+
ContentEmbeddingMatch: {
|
|
102
|
+
modulePath: "content/embedding-match",
|
|
103
|
+
schemaName: "ContentEmbeddingMatchSchema",
|
|
104
|
+
},
|
|
105
|
+
ContentFilter: { modulePath: "content/filter", schemaName: "ContentFilterSchema" },
|
|
106
|
+
ContentRelation: { modulePath: "content/relation", schemaName: "ContentRelationSchema" },
|
|
107
|
+
ContentSearchInterpretation: {
|
|
108
|
+
modulePath: "content/search-interpretation",
|
|
109
|
+
schemaName: "ContentSearchInterpretationSchema",
|
|
110
|
+
},
|
|
111
|
+
ContentSearchResult: {
|
|
112
|
+
modulePath: "content/search-result",
|
|
113
|
+
schemaName: "ContentSearchResultSchema",
|
|
114
|
+
},
|
|
115
|
+
ContentSortField: { modulePath: "content/sort-field", schemaName: "ContentSortFieldSchema" },
|
|
116
|
+
ContentSourceType: { modulePath: "content/source-type", schemaName: "ContentSourceTypeSchema" },
|
|
117
|
+
ContentType: { modulePath: "content/type", schemaName: "ContentTypeSchema" },
|
|
118
|
+
CurrentSlugOwner: {
|
|
119
|
+
modulePath: "redirect/current-slug-owner",
|
|
120
|
+
schemaName: "CurrentSlugOwnerSchema",
|
|
121
|
+
},
|
|
122
|
+
DatasourceAgentIdentity: {
|
|
123
|
+
modulePath: "datasource/agent-identity",
|
|
124
|
+
schemaName: "DatasourceAgentIdentitySchema",
|
|
125
|
+
},
|
|
126
|
+
DatasourceDataSourceType: {
|
|
127
|
+
modulePath: "datasource/data-source-type",
|
|
128
|
+
schemaName: "DatasourceDataSourceTypeSchema",
|
|
129
|
+
},
|
|
130
|
+
DatasourceFieldProvenance: {
|
|
131
|
+
modulePath: "datasource/field-provenance",
|
|
132
|
+
schemaName: "DatasourceFieldProvenanceSchema",
|
|
133
|
+
},
|
|
134
|
+
DatasourceProvenanceActor: {
|
|
135
|
+
modulePath: "datasource/provenance-actor",
|
|
136
|
+
schemaName: "DatasourceProvenanceActorSchema",
|
|
137
|
+
},
|
|
138
|
+
DatasourceProvenanceActorType: {
|
|
139
|
+
modulePath: "datasource/provenance-actor-type",
|
|
140
|
+
schemaName: "DatasourceProvenanceActorTypeSchema",
|
|
141
|
+
},
|
|
142
|
+
DatasourceProvenanceFieldChange: {
|
|
143
|
+
modulePath: "datasource/provenance-field-change",
|
|
144
|
+
schemaName: "DatasourceProvenanceFieldChangeSchema",
|
|
145
|
+
},
|
|
146
|
+
DatasourceProvenanceOperation: {
|
|
147
|
+
modulePath: "datasource/provenance-operation",
|
|
148
|
+
schemaName: "DatasourceProvenanceOperationSchema",
|
|
149
|
+
},
|
|
150
|
+
DatasourceProvenanceSource: {
|
|
151
|
+
modulePath: "datasource/provenance-source",
|
|
152
|
+
schemaName: "DatasourceProvenanceSourceSchema",
|
|
153
|
+
},
|
|
154
|
+
DatasourceProvenanceStatus: {
|
|
155
|
+
modulePath: "datasource/provenance-status",
|
|
156
|
+
schemaName: "DatasourceProvenanceStatusSchema",
|
|
157
|
+
},
|
|
158
|
+
DatasourceSourceMetadata: {
|
|
159
|
+
modulePath: "datasource/source-metadata",
|
|
160
|
+
schemaName: "DatasourceSourceMetadataSchema",
|
|
161
|
+
},
|
|
162
|
+
DatasourceTrackedProvenanceTable: {
|
|
163
|
+
modulePath: "datasource/tracked-provenance-table",
|
|
164
|
+
schemaName: "DatasourceTrackedProvenanceTableSchema",
|
|
165
|
+
},
|
|
166
|
+
DecimalRange: { modulePath: "decimal/range", schemaName: "DecimalRangeSchema" },
|
|
167
|
+
DomainConflictDetails: {
|
|
168
|
+
modulePath: "domain/conflict-details",
|
|
169
|
+
schemaName: "DomainConflictDetailsSchema",
|
|
170
|
+
},
|
|
171
|
+
DuplicateCreateReview: {
|
|
172
|
+
modulePath: "duplicate/create-review",
|
|
173
|
+
schemaName: "DuplicateCreateReviewSchema",
|
|
174
|
+
},
|
|
175
|
+
EmployeeCount: { modulePath: "employee/count", schemaName: "EmployeeCountSchema" },
|
|
176
|
+
Entity: { modulePath: "entity/entity", schemaName: "EntitySchema" },
|
|
177
|
+
EntityAcceleratorParticipation: {
|
|
178
|
+
modulePath: "entity/accelerator-participation",
|
|
179
|
+
schemaName: "EntityAcceleratorParticipationSchema",
|
|
180
|
+
},
|
|
181
|
+
EntityAcquisition: { modulePath: "entity/acquisition", schemaName: "EntityAcquisitionSchema" },
|
|
182
|
+
EntityAcquisitionEvidence: {
|
|
183
|
+
modulePath: "entity/acquisition-evidence",
|
|
184
|
+
schemaName: "EntityAcquisitionEvidenceSchema",
|
|
185
|
+
},
|
|
186
|
+
EntityAcquisitionRole: {
|
|
187
|
+
modulePath: "entity/acquisition-role",
|
|
188
|
+
schemaName: "EntityAcquisitionRoleSchema",
|
|
189
|
+
},
|
|
190
|
+
EntityAcquisitionStage: {
|
|
191
|
+
modulePath: "entity/acquisition-stage",
|
|
192
|
+
schemaName: "EntityAcquisitionStageSchema",
|
|
193
|
+
},
|
|
194
|
+
EntityAliasType: { modulePath: "entity/alias-type", schemaName: "EntityAliasTypeSchema" },
|
|
195
|
+
EntityClassification: {
|
|
196
|
+
modulePath: "entity/classification",
|
|
197
|
+
schemaName: "EntityClassificationSchema",
|
|
198
|
+
},
|
|
199
|
+
EntityClassificationInactiveTagOverride: {
|
|
200
|
+
modulePath: "entity/classification-inactive-tag-override",
|
|
201
|
+
schemaName: "EntityClassificationInactiveTagOverrideSchema",
|
|
202
|
+
},
|
|
203
|
+
EntityClassificationSuggestion: {
|
|
204
|
+
modulePath: "entity/classification-suggestion",
|
|
205
|
+
schemaName: "EntityClassificationSuggestionSchema",
|
|
206
|
+
},
|
|
207
|
+
EntityComparisonSignals: {
|
|
208
|
+
modulePath: "entity/comparison-signals",
|
|
209
|
+
schemaName: "EntityComparisonSignalsSchema",
|
|
210
|
+
},
|
|
211
|
+
EntityDetail: { modulePath: "entity/detail", schemaName: "EntityDetailSchema" },
|
|
212
|
+
EntityDetailBatch: { modulePath: "entity/detail-batch", schemaName: "EntityDetailBatchSchema" },
|
|
213
|
+
EntityDetailCoverageSlot: {
|
|
214
|
+
modulePath: "entity/detail-coverage-slot",
|
|
215
|
+
schemaName: "EntityDetailCoverageSlotSchema",
|
|
216
|
+
},
|
|
217
|
+
EntityEnrichment: { modulePath: "entity/enrichment", schemaName: "EntityEnrichmentSchema" },
|
|
218
|
+
EntityFilter: { modulePath: "entity/filter", schemaName: "EntityFilterSchema" },
|
|
219
|
+
EntityFilterChoice: {
|
|
220
|
+
modulePath: "entity/filter-choice",
|
|
221
|
+
schemaName: "EntityFilterChoiceSchema",
|
|
222
|
+
},
|
|
223
|
+
EntityFilterControlType: {
|
|
224
|
+
modulePath: "entity/filter-control-type",
|
|
225
|
+
schemaName: "EntityFilterControlTypeSchema",
|
|
226
|
+
},
|
|
227
|
+
EntityFilterCount: { modulePath: "entity/filter-count", schemaName: "EntityFilterCountSchema" },
|
|
228
|
+
EntityFilterCountMeta: {
|
|
229
|
+
modulePath: "entity/filter-count-meta",
|
|
230
|
+
schemaName: "EntityFilterCountMetaSchema",
|
|
231
|
+
},
|
|
232
|
+
EntityFilterCountResult: {
|
|
233
|
+
modulePath: "entity/filter-count-result",
|
|
234
|
+
schemaName: "EntityFilterCountResultSchema",
|
|
235
|
+
},
|
|
236
|
+
EntityFilterEntry: { modulePath: "entity/filter-entry", schemaName: "EntityFilterEntrySchema" },
|
|
237
|
+
EntityFilterHeadquartersCountry: {
|
|
238
|
+
modulePath: "entity/filter-headquarters-country",
|
|
239
|
+
schemaName: "EntityFilterHeadquartersCountrySchema",
|
|
240
|
+
},
|
|
241
|
+
EntityFilterHeadquartersOptionSet: {
|
|
242
|
+
modulePath: "entity/filter-headquarters-option-set",
|
|
243
|
+
schemaName: "EntityFilterHeadquartersOptionSetSchema",
|
|
244
|
+
},
|
|
245
|
+
EntityFilterHeadquartersStateCity: {
|
|
246
|
+
modulePath: "entity/filter-headquarters-state-city",
|
|
247
|
+
schemaName: "EntityFilterHeadquartersStateCitySchema",
|
|
248
|
+
},
|
|
249
|
+
EntityFilterLogoOption: {
|
|
250
|
+
modulePath: "entity/filter-logo-option",
|
|
251
|
+
schemaName: "EntityFilterLogoOptionSchema",
|
|
252
|
+
},
|
|
253
|
+
EntityFilterMeta: { modulePath: "entity/filter-meta", schemaName: "EntityFilterMetaSchema" },
|
|
254
|
+
EntityFilterOptionMode: {
|
|
255
|
+
modulePath: "entity/filter-option-mode",
|
|
256
|
+
schemaName: "EntityFilterOptionModeSchema",
|
|
257
|
+
},
|
|
258
|
+
EntityFilterOptionSet: {
|
|
259
|
+
modulePath: "entity/filter-option-set",
|
|
260
|
+
schemaName: "EntityFilterOptionSetSchema",
|
|
261
|
+
},
|
|
262
|
+
EntityFilterOptionSetMeta: {
|
|
263
|
+
modulePath: "entity/filter-option-set-meta",
|
|
264
|
+
schemaName: "EntityFilterOptionSetMetaSchema",
|
|
265
|
+
},
|
|
266
|
+
EntityFilterRefinedFilters: {
|
|
267
|
+
modulePath: "entity/filter-refined-filters",
|
|
268
|
+
schemaName: "EntityFilterRefinedFiltersSchema",
|
|
269
|
+
},
|
|
270
|
+
EntityFilterScope: { modulePath: "entity/filter-scope", schemaName: "EntityFilterScopeSchema" },
|
|
271
|
+
EntityFilterSearch: {
|
|
272
|
+
modulePath: "entity/filter-search",
|
|
273
|
+
schemaName: "EntityFilterSearchSchema",
|
|
274
|
+
},
|
|
275
|
+
EntityFilterSearchResult: {
|
|
276
|
+
modulePath: "entity/filter-search-result",
|
|
277
|
+
schemaName: "EntityFilterSearchResultSchema",
|
|
278
|
+
},
|
|
279
|
+
EntityFilterUiMeta: {
|
|
280
|
+
modulePath: "entity/filter-ui-meta",
|
|
281
|
+
schemaName: "EntityFilterUiMetaSchema",
|
|
282
|
+
},
|
|
283
|
+
EntityFundingDetail: {
|
|
284
|
+
modulePath: "entity/funding-detail",
|
|
285
|
+
schemaName: "EntityFundingDetailSchema",
|
|
286
|
+
},
|
|
287
|
+
EntityFundraise: { modulePath: "entity/fundraise", schemaName: "EntityFundraiseSchema" },
|
|
288
|
+
EntityFundraiseFilterCriteria: {
|
|
289
|
+
modulePath: "entity/fundraise-filter-criteria",
|
|
290
|
+
schemaName: "EntityFundraiseFilterCriteriaSchema",
|
|
291
|
+
},
|
|
292
|
+
EntityFundraiseInvestorActivity: {
|
|
293
|
+
modulePath: "entity/fundraise-investor-activity",
|
|
294
|
+
schemaName: "EntityFundraiseInvestorActivitySchema",
|
|
295
|
+
},
|
|
296
|
+
EntityFundraiseInvestorJoin: {
|
|
297
|
+
modulePath: "entity/fundraise-investor-join",
|
|
298
|
+
schemaName: "EntityFundraiseInvestorJoinSchema",
|
|
299
|
+
},
|
|
300
|
+
EntityFundraiseTransaction: {
|
|
301
|
+
modulePath: "entity/fundraise-transaction",
|
|
302
|
+
schemaName: "EntityFundraiseTransactionSchema",
|
|
303
|
+
},
|
|
304
|
+
EntityFundraiseTransactionEntity: {
|
|
305
|
+
modulePath: "entity/fundraise-transaction-entity",
|
|
306
|
+
schemaName: "EntityFundraiseTransactionEntitySchema",
|
|
307
|
+
},
|
|
308
|
+
EntityImage: { modulePath: "entity/image", schemaName: "EntityImageSchema" },
|
|
309
|
+
EntityInvestorParticipation: {
|
|
310
|
+
modulePath: "entity/investor-participation",
|
|
311
|
+
schemaName: "EntityInvestorParticipationSchema",
|
|
312
|
+
},
|
|
313
|
+
EntityList: { modulePath: "entity/list", schemaName: "EntityListSchema" },
|
|
314
|
+
EntityListFilter: { modulePath: "entity/list-filter", schemaName: "EntityListFilterSchema" },
|
|
315
|
+
EntityListQualityGate: {
|
|
316
|
+
modulePath: "entity/list-quality-gate",
|
|
317
|
+
schemaName: "EntityListQualityGateSchema",
|
|
318
|
+
},
|
|
319
|
+
EntityListResearch: {
|
|
320
|
+
modulePath: "entity/list-research",
|
|
321
|
+
schemaName: "EntityListResearchSchema",
|
|
322
|
+
},
|
|
323
|
+
EntityListSummary: { modulePath: "entity/list-summary", schemaName: "EntityListSummarySchema" },
|
|
324
|
+
EntityLogoType: { modulePath: "entity/logo-type", schemaName: "EntityLogoTypeSchema" },
|
|
325
|
+
EntityNameAliasEntityAliasType: {
|
|
326
|
+
modulePath: "entity/name-alias-entity-alias-type",
|
|
327
|
+
schemaName: "EntityNameAliasEntityAliasTypeSchema",
|
|
328
|
+
},
|
|
329
|
+
EntityNameAliasPersonAliasType: {
|
|
330
|
+
modulePath: "entity/name-alias-person-alias-type",
|
|
331
|
+
schemaName: "EntityNameAliasPersonAliasTypeSchema",
|
|
332
|
+
},
|
|
333
|
+
EntityNaturalSearch: {
|
|
334
|
+
modulePath: "entity/natural-search",
|
|
335
|
+
schemaName: "EntityNaturalSearchSchema",
|
|
336
|
+
},
|
|
337
|
+
EntityPersonAssociation: {
|
|
338
|
+
modulePath: "entity/person-association",
|
|
339
|
+
schemaName: "EntityPersonAssociationSchema",
|
|
340
|
+
},
|
|
341
|
+
EntityPersonOwner: { modulePath: "entity/person-owner", schemaName: "EntityPersonOwnerSchema" },
|
|
342
|
+
EntityRelationship: {
|
|
343
|
+
modulePath: "entity/relationship",
|
|
344
|
+
schemaName: "EntityRelationshipSchema",
|
|
345
|
+
},
|
|
346
|
+
EntityRelationshipTypeOption: {
|
|
347
|
+
modulePath: "entity/relationship-type-option",
|
|
348
|
+
schemaName: "EntityRelationshipTypeOptionSchema",
|
|
349
|
+
},
|
|
350
|
+
EntityResearch: { modulePath: "entity/research", schemaName: "EntityResearchSchema" },
|
|
351
|
+
EntityResearchDetail: {
|
|
352
|
+
modulePath: "entity/research-detail",
|
|
353
|
+
schemaName: "EntityResearchDetailSchema",
|
|
354
|
+
},
|
|
355
|
+
EntityResearchFactValue: {
|
|
356
|
+
modulePath: "entity/research-fact-value",
|
|
357
|
+
schemaName: "EntityResearchFactValueSchema",
|
|
358
|
+
},
|
|
359
|
+
EntityResearchSnippet: {
|
|
360
|
+
modulePath: "entity/research-snippet",
|
|
361
|
+
schemaName: "EntityResearchSnippetSchema",
|
|
362
|
+
},
|
|
363
|
+
EntityResearchValueType: {
|
|
364
|
+
modulePath: "entity/research-value-type",
|
|
365
|
+
schemaName: "EntityResearchValueTypeSchema",
|
|
366
|
+
},
|
|
367
|
+
EntityResolution: { modulePath: "entity/resolution", schemaName: "EntityResolutionSchema" },
|
|
368
|
+
EntitySimilarityContext: {
|
|
369
|
+
modulePath: "entity/similarity-context",
|
|
370
|
+
schemaName: "EntitySimilarityContextSchema",
|
|
371
|
+
},
|
|
372
|
+
EntitySimilarityOrigin: {
|
|
373
|
+
modulePath: "entity/similarity-origin",
|
|
374
|
+
schemaName: "EntitySimilarityOriginSchema",
|
|
375
|
+
},
|
|
376
|
+
EntitySimilarityResult: {
|
|
377
|
+
modulePath: "entity/similarity-result",
|
|
378
|
+
schemaName: "EntitySimilarityResultSchema",
|
|
379
|
+
},
|
|
380
|
+
EntitySitemap: { modulePath: "entity/sitemap", schemaName: "EntitySitemapSchema" },
|
|
381
|
+
EntitySitemapUrl: { modulePath: "entity/sitemap-url", schemaName: "EntitySitemapUrlSchema" },
|
|
382
|
+
EntitySitemapUrlType: {
|
|
383
|
+
modulePath: "entity/sitemap-url-type",
|
|
384
|
+
schemaName: "EntitySitemapUrlTypeSchema",
|
|
385
|
+
},
|
|
386
|
+
EntitySuggestion: { modulePath: "entity/suggestion", schemaName: "EntitySuggestionSchema" },
|
|
387
|
+
EntitySuggestionResult: {
|
|
388
|
+
modulePath: "entity/suggestion-result",
|
|
389
|
+
schemaName: "EntitySuggestionResultSchema",
|
|
390
|
+
},
|
|
391
|
+
EntityTag: { modulePath: "entity/tag", schemaName: "EntityTagSchema" },
|
|
392
|
+
EntityTagCount: { modulePath: "entity/tag-count", schemaName: "EntityTagCountSchema" },
|
|
393
|
+
EntityText: { modulePath: "entity/text", schemaName: "EntityTextSchema" },
|
|
394
|
+
EntityTextBundle: { modulePath: "entity/text-bundle", schemaName: "EntityTextBundleSchema" },
|
|
395
|
+
EntityType: { modulePath: "entity/type", schemaName: "EntityTypeSchema" },
|
|
396
|
+
EntityTypeAlias: { modulePath: "entity/type-alias", schemaName: "EntityTypeAliasSchema" },
|
|
397
|
+
EntityTypeCount: { modulePath: "entity/type-count", schemaName: "EntityTypeCountSchema" },
|
|
398
|
+
EntityTypeGroup: { modulePath: "entity/type-group", schemaName: "EntityTypeGroupSchema" },
|
|
399
|
+
EntityTypeGroupMembership: {
|
|
400
|
+
modulePath: "entity/type-group-membership",
|
|
401
|
+
schemaName: "EntityTypeGroupMembershipSchema",
|
|
402
|
+
},
|
|
403
|
+
EntityUrlCrawlCdnProvider: {
|
|
404
|
+
modulePath: "entity/url-crawl-cdn-provider",
|
|
405
|
+
schemaName: "EntityUrlCrawlCdnProviderSchema",
|
|
406
|
+
},
|
|
407
|
+
EntityUrlCrawlRenderMode: {
|
|
408
|
+
modulePath: "entity/url-crawl-render-mode",
|
|
409
|
+
schemaName: "EntityUrlCrawlRenderModeSchema",
|
|
410
|
+
},
|
|
411
|
+
EntityUrlLink: { modulePath: "entity/url-link", schemaName: "EntityUrlLinkSchema" },
|
|
412
|
+
EntityUrlType: { modulePath: "entity/url-type", schemaName: "EntityUrlTypeSchema" },
|
|
413
|
+
EntityValuationDataConfidence: {
|
|
414
|
+
modulePath: "entity/valuation-data-confidence",
|
|
415
|
+
schemaName: "EntityValuationDataConfidenceSchema",
|
|
416
|
+
},
|
|
417
|
+
EntityValuationDerivation: {
|
|
418
|
+
modulePath: "entity/valuation-derivation",
|
|
419
|
+
schemaName: "EntityValuationDerivationSchema",
|
|
420
|
+
},
|
|
421
|
+
EntityValuationSource: {
|
|
422
|
+
modulePath: "entity/valuation-source",
|
|
423
|
+
schemaName: "EntityValuationSourceSchema",
|
|
424
|
+
},
|
|
425
|
+
EntityValuationTimeSeriesPoint: {
|
|
426
|
+
modulePath: "entity/valuation-time-series-point",
|
|
427
|
+
schemaName: "EntityValuationTimeSeriesPointSchema",
|
|
428
|
+
},
|
|
429
|
+
ExternalSocialPostPlatform: {
|
|
430
|
+
modulePath: "external/social-post-platform",
|
|
431
|
+
schemaName: "ExternalSocialPostPlatformSchema",
|
|
432
|
+
},
|
|
433
|
+
FederatedSearch: { modulePath: "federated/search", schemaName: "FederatedSearchSchema" },
|
|
434
|
+
FederatedSearchProvenance: {
|
|
435
|
+
modulePath: "federated/search-provenance",
|
|
436
|
+
schemaName: "FederatedSearchProvenanceSchema",
|
|
437
|
+
},
|
|
438
|
+
FundingStage: { modulePath: "funding/stage", schemaName: "FundingStageSchema" },
|
|
439
|
+
FundraiseDataConfidence: {
|
|
440
|
+
modulePath: "fundraise/data-confidence",
|
|
441
|
+
schemaName: "FundraiseDataConfidenceSchema",
|
|
442
|
+
},
|
|
443
|
+
FundraiseFinancialInstrumentType: {
|
|
444
|
+
modulePath: "fundraise/financial-instrument-type",
|
|
445
|
+
schemaName: "FundraiseFinancialInstrumentTypeSchema",
|
|
446
|
+
},
|
|
447
|
+
FundraiseInvestmentAttribution: {
|
|
448
|
+
modulePath: "fundraise/investment-attribution",
|
|
449
|
+
schemaName: "FundraiseInvestmentAttributionSchema",
|
|
450
|
+
},
|
|
451
|
+
FundraiseInvestmentAttributionType: {
|
|
452
|
+
modulePath: "fundraise/investment-attribution-type",
|
|
453
|
+
schemaName: "FundraiseInvestmentAttributionTypeSchema",
|
|
454
|
+
},
|
|
455
|
+
FundraiseTransactionStatus: {
|
|
456
|
+
modulePath: "fundraise/transaction-status",
|
|
457
|
+
schemaName: "FundraiseTransactionStatusSchema",
|
|
458
|
+
},
|
|
459
|
+
GithubRepo: { modulePath: "github/repo", schemaName: "GithubRepoSchema" },
|
|
460
|
+
HelpCitation: { modulePath: "help/citation", schemaName: "HelpCitationSchema" },
|
|
461
|
+
HelpScope: { modulePath: "help/scope", schemaName: "HelpScopeSchema" },
|
|
462
|
+
HelpSourceType: { modulePath: "help/source-type", schemaName: "HelpSourceTypeSchema" },
|
|
463
|
+
IntRange: { modulePath: "int/range", schemaName: "IntRangeSchema" },
|
|
464
|
+
InvestorActivityFilter: {
|
|
465
|
+
modulePath: "investor/activity-filter",
|
|
466
|
+
schemaName: "InvestorActivityFilterSchema",
|
|
467
|
+
},
|
|
468
|
+
JsonValue: { modulePath: "http/json-value", schemaName: "JsonValueSchema" },
|
|
469
|
+
LetterCounts: { modulePath: "letter/counts", schemaName: "LetterCountsSchema" },
|
|
470
|
+
LinkSearch: { modulePath: "link/search", schemaName: "LinkSearchSchema" },
|
|
471
|
+
LocationDirectoryEntry: {
|
|
472
|
+
modulePath: "location/directory-entry",
|
|
473
|
+
schemaName: "LocationDirectoryEntrySchema",
|
|
474
|
+
},
|
|
475
|
+
LocationIdentifier: {
|
|
476
|
+
modulePath: "location/identifier",
|
|
477
|
+
schemaName: "LocationIdentifierSchema",
|
|
478
|
+
},
|
|
479
|
+
LocationResolutionOutcome: {
|
|
480
|
+
modulePath: "location/resolution-outcome",
|
|
481
|
+
schemaName: "LocationResolutionOutcomeSchema",
|
|
482
|
+
},
|
|
483
|
+
LocationScope: { modulePath: "location/scope", schemaName: "LocationScopeSchema" },
|
|
484
|
+
LocationSitemap: { modulePath: "location/sitemap", schemaName: "LocationSitemapSchema" },
|
|
485
|
+
LocationSitemapBatch: {
|
|
486
|
+
modulePath: "location/sitemap-batch",
|
|
487
|
+
schemaName: "LocationSitemapBatchSchema",
|
|
488
|
+
},
|
|
489
|
+
LocationSitemapBoundary: {
|
|
490
|
+
modulePath: "location/sitemap-boundary",
|
|
491
|
+
schemaName: "LocationSitemapBoundarySchema",
|
|
492
|
+
},
|
|
493
|
+
LocationSitemapBoundaryDetail: {
|
|
494
|
+
modulePath: "location/sitemap-boundary-detail",
|
|
495
|
+
schemaName: "LocationSitemapBoundaryDetailSchema",
|
|
496
|
+
},
|
|
497
|
+
LocationSlugResolution: {
|
|
498
|
+
modulePath: "location/slug-resolution",
|
|
499
|
+
schemaName: "LocationSlugResolutionSchema",
|
|
500
|
+
},
|
|
501
|
+
MediaObjectType: { modulePath: "media/object-type", schemaName: "MediaObjectTypeSchema" },
|
|
502
|
+
MediaScreenshot: { modulePath: "media/screenshot", schemaName: "MediaScreenshotSchema" },
|
|
503
|
+
MediaUpload: { modulePath: "media/upload", schemaName: "MediaUploadSchema" },
|
|
504
|
+
NaturalSearch: { modulePath: "natural/search", schemaName: "NaturalSearchSchema" },
|
|
505
|
+
NaturalSearchResult: {
|
|
506
|
+
modulePath: "natural/search-result",
|
|
507
|
+
schemaName: "NaturalSearchResultSchema",
|
|
508
|
+
},
|
|
509
|
+
News: { modulePath: "news/news", schemaName: "NewsSchema" },
|
|
510
|
+
NewsCandidateScore: {
|
|
511
|
+
modulePath: "news/candidate-score",
|
|
512
|
+
schemaName: "NewsCandidateScoreSchema",
|
|
513
|
+
},
|
|
514
|
+
NewsDetail: { modulePath: "news/detail", schemaName: "NewsDetailSchema" },
|
|
515
|
+
NewsFeedback: { modulePath: "news/feedback", schemaName: "NewsFeedbackSchema" },
|
|
516
|
+
NewsFeedbackAcknowledgement: {
|
|
517
|
+
modulePath: "news/feedback-acknowledgement",
|
|
518
|
+
schemaName: "NewsFeedbackAcknowledgementSchema",
|
|
519
|
+
},
|
|
520
|
+
NewsFilter: { modulePath: "news/filter", schemaName: "NewsFilterSchema" },
|
|
521
|
+
NewsResolvedEntityLink: {
|
|
522
|
+
modulePath: "news/resolved-entity-link",
|
|
523
|
+
schemaName: "NewsResolvedEntityLinkSchema",
|
|
524
|
+
},
|
|
525
|
+
NewsResolvedPersonLink: {
|
|
526
|
+
modulePath: "news/resolved-person-link",
|
|
527
|
+
schemaName: "NewsResolvedPersonLinkSchema",
|
|
528
|
+
},
|
|
529
|
+
NewsSourceUrlConflict: {
|
|
530
|
+
modulePath: "news/source-url-conflict",
|
|
531
|
+
schemaName: "NewsSourceUrlConflictSchema",
|
|
532
|
+
},
|
|
533
|
+
PageableObject: { modulePath: "pageable/object", schemaName: "PageableObjectSchema" },
|
|
534
|
+
PageBlogPost: { modulePath: "pagination/schemas", schemaName: "PageBlogPostSchema" },
|
|
535
|
+
PageClassification: {
|
|
536
|
+
modulePath: "pagination/schemas",
|
|
537
|
+
schemaName: "PageClassificationSchema",
|
|
538
|
+
},
|
|
539
|
+
PageContent: { modulePath: "pagination/schemas", schemaName: "PageContentSchema" },
|
|
540
|
+
PageDatasourceFieldProvenance: {
|
|
541
|
+
modulePath: "pagination/schemas",
|
|
542
|
+
schemaName: "PageDatasourceFieldProvenanceSchema",
|
|
543
|
+
},
|
|
544
|
+
PageEmployeeCount: { modulePath: "pagination/schemas", schemaName: "PageEmployeeCountSchema" },
|
|
545
|
+
PageEntity: { modulePath: "pagination/schemas", schemaName: "PageEntitySchema" },
|
|
546
|
+
PageEntityAcquisition: {
|
|
547
|
+
modulePath: "pagination/schemas",
|
|
548
|
+
schemaName: "PageEntityAcquisitionSchema",
|
|
549
|
+
},
|
|
550
|
+
PageEntityDetail: { modulePath: "pagination/schemas", schemaName: "PageEntityDetailSchema" },
|
|
551
|
+
PageEntityFundraiseInvestorJoin: {
|
|
552
|
+
modulePath: "pagination/schemas",
|
|
553
|
+
schemaName: "PageEntityFundraiseInvestorJoinSchema",
|
|
554
|
+
},
|
|
555
|
+
PageEntityFundraiseTransaction: {
|
|
556
|
+
modulePath: "pagination/schemas",
|
|
557
|
+
schemaName: "PageEntityFundraiseTransactionSchema",
|
|
558
|
+
},
|
|
559
|
+
PageEntityInvestorParticipation: {
|
|
560
|
+
modulePath: "pagination/schemas",
|
|
561
|
+
schemaName: "PageEntityInvestorParticipationSchema",
|
|
562
|
+
},
|
|
563
|
+
PageEntityList: { modulePath: "pagination/schemas", schemaName: "PageEntityListSchema" },
|
|
564
|
+
PageEntityListSummary: {
|
|
565
|
+
modulePath: "pagination/schemas",
|
|
566
|
+
schemaName: "PageEntityListSummarySchema",
|
|
567
|
+
},
|
|
568
|
+
PageEntityPersonAssociation: {
|
|
569
|
+
modulePath: "pagination/schemas",
|
|
570
|
+
schemaName: "PageEntityPersonAssociationSchema",
|
|
571
|
+
},
|
|
572
|
+
PageEntityRelationship: {
|
|
573
|
+
modulePath: "pagination/schemas",
|
|
574
|
+
schemaName: "PageEntityRelationshipSchema",
|
|
575
|
+
},
|
|
576
|
+
PageEntityResearchDetail: {
|
|
577
|
+
modulePath: "pagination/schemas",
|
|
578
|
+
schemaName: "PageEntityResearchDetailSchema",
|
|
579
|
+
},
|
|
580
|
+
PageEntityResearchSnippet: {
|
|
581
|
+
modulePath: "pagination/schemas",
|
|
582
|
+
schemaName: "PageEntityResearchSnippetSchema",
|
|
583
|
+
},
|
|
584
|
+
PageEntitySimilarityResult: {
|
|
585
|
+
modulePath: "pagination/schemas",
|
|
586
|
+
schemaName: "PageEntitySimilarityResultSchema",
|
|
587
|
+
},
|
|
588
|
+
PageEntitySitemapUrl: {
|
|
589
|
+
modulePath: "pagination/schemas",
|
|
590
|
+
schemaName: "PageEntitySitemapUrlSchema",
|
|
591
|
+
},
|
|
592
|
+
PageEntityTag: { modulePath: "pagination/schemas", schemaName: "PageEntityTagSchema" },
|
|
593
|
+
PageEntityText: { modulePath: "pagination/schemas", schemaName: "PageEntityTextSchema" },
|
|
594
|
+
PageEntityUrlLink: { modulePath: "pagination/schemas", schemaName: "PageEntityUrlLinkSchema" },
|
|
595
|
+
PageEntityValuationTimeSeriesPoint: {
|
|
596
|
+
modulePath: "pagination/schemas",
|
|
597
|
+
schemaName: "PageEntityValuationTimeSeriesPointSchema",
|
|
598
|
+
},
|
|
599
|
+
PageGithubRepo: { modulePath: "pagination/schemas", schemaName: "PageGithubRepoSchema" },
|
|
600
|
+
PageLocationDirectoryEntry: {
|
|
601
|
+
modulePath: "pagination/schemas",
|
|
602
|
+
schemaName: "PageLocationDirectoryEntrySchema",
|
|
603
|
+
},
|
|
604
|
+
PageMediaScreenshot: {
|
|
605
|
+
modulePath: "pagination/schemas",
|
|
606
|
+
schemaName: "PageMediaScreenshotSchema",
|
|
607
|
+
},
|
|
608
|
+
PageNews: { modulePath: "pagination/schemas", schemaName: "PageNewsSchema" },
|
|
609
|
+
PagePerson: { modulePath: "pagination/schemas", schemaName: "PagePersonSchema" },
|
|
610
|
+
PagePersonDetail: { modulePath: "pagination/schemas", schemaName: "PagePersonDetailSchema" },
|
|
611
|
+
PagePersonInvestment: {
|
|
612
|
+
modulePath: "pagination/schemas",
|
|
613
|
+
schemaName: "PagePersonInvestmentSchema",
|
|
614
|
+
},
|
|
615
|
+
PagePersonInvestorParticipation: {
|
|
616
|
+
modulePath: "pagination/schemas",
|
|
617
|
+
schemaName: "PagePersonInvestorParticipationSchema",
|
|
618
|
+
},
|
|
619
|
+
PagePersonSimilarityResult: {
|
|
620
|
+
modulePath: "pagination/schemas",
|
|
621
|
+
schemaName: "PagePersonSimilarityResultSchema",
|
|
622
|
+
},
|
|
623
|
+
PageResultContent: { modulePath: "pagination/schemas", schemaName: "PageResultContentSchema" },
|
|
624
|
+
PageResultEntityList: {
|
|
625
|
+
modulePath: "pagination/schemas",
|
|
626
|
+
schemaName: "PageResultEntityListSchema",
|
|
627
|
+
},
|
|
628
|
+
PageResultLocationDirectoryEntry: {
|
|
629
|
+
modulePath: "pagination/schemas",
|
|
630
|
+
schemaName: "PageResultLocationDirectoryEntrySchema",
|
|
631
|
+
},
|
|
632
|
+
PageResultNews: { modulePath: "pagination/schemas", schemaName: "PageResultNewsSchema" },
|
|
633
|
+
PageResultPerson: { modulePath: "pagination/schemas", schemaName: "PageResultPersonSchema" },
|
|
634
|
+
PageResultSitemapUrlSlot: {
|
|
635
|
+
modulePath: "pagination/schemas",
|
|
636
|
+
schemaName: "PageResultSitemapUrlSlotSchema",
|
|
637
|
+
},
|
|
638
|
+
PageSitemapUrlSlot: {
|
|
639
|
+
modulePath: "pagination/schemas",
|
|
640
|
+
schemaName: "PageSitemapUrlSlotSchema",
|
|
641
|
+
},
|
|
642
|
+
PageUniqueId: { modulePath: "pagination/schemas", schemaName: "PageUniqueIdSchema" },
|
|
643
|
+
PageUrlSlugRedirect: {
|
|
644
|
+
modulePath: "pagination/schemas",
|
|
645
|
+
schemaName: "PageUrlSlugRedirectSchema",
|
|
646
|
+
},
|
|
647
|
+
Person: { modulePath: "person/person", schemaName: "PersonSchema" },
|
|
648
|
+
PersonalApiKey: { modulePath: "personal/api-key", schemaName: "PersonalApiKeySchema" },
|
|
649
|
+
PersonAliasType: { modulePath: "person/alias-type", schemaName: "PersonAliasTypeSchema" },
|
|
650
|
+
PersonDetail: { modulePath: "person/detail", schemaName: "PersonDetailSchema" },
|
|
651
|
+
PersonDetailBatch: { modulePath: "person/detail-batch", schemaName: "PersonDetailBatchSchema" },
|
|
652
|
+
PersonEnrichment: { modulePath: "person/enrichment", schemaName: "PersonEnrichmentSchema" },
|
|
653
|
+
PersonFilter: { modulePath: "person/filter", schemaName: "PersonFilterSchema" },
|
|
654
|
+
PersonGraph: { modulePath: "person/graph", schemaName: "PersonGraphSchema" },
|
|
655
|
+
PersonGraphCareerContext: {
|
|
656
|
+
modulePath: "person/graph-career-context",
|
|
657
|
+
schemaName: "PersonGraphCareerContextSchema",
|
|
658
|
+
},
|
|
659
|
+
PersonGraphCoInvestor: {
|
|
660
|
+
modulePath: "person/graph-co-investor",
|
|
661
|
+
schemaName: "PersonGraphCoInvestorSchema",
|
|
662
|
+
},
|
|
663
|
+
PersonGraphMember: { modulePath: "person/graph-member", schemaName: "PersonGraphMemberSchema" },
|
|
664
|
+
PersonGraphSimilarEntity: {
|
|
665
|
+
modulePath: "person/graph-similar-entity",
|
|
666
|
+
schemaName: "PersonGraphSimilarEntitySchema",
|
|
667
|
+
},
|
|
668
|
+
PersonImage: { modulePath: "person/image", schemaName: "PersonImageSchema" },
|
|
669
|
+
PersonInvestedCompany: {
|
|
670
|
+
modulePath: "person/invested-company",
|
|
671
|
+
schemaName: "PersonInvestedCompanySchema",
|
|
672
|
+
},
|
|
673
|
+
PersonInvestment: { modulePath: "person/investment", schemaName: "PersonInvestmentSchema" },
|
|
674
|
+
PersonInvestorParticipation: {
|
|
675
|
+
modulePath: "person/investor-participation",
|
|
676
|
+
schemaName: "PersonInvestorParticipationSchema",
|
|
677
|
+
},
|
|
678
|
+
PersonListArrayFilter: {
|
|
679
|
+
modulePath: "person/list-array-filter",
|
|
680
|
+
schemaName: "PersonListArrayFilterSchema",
|
|
681
|
+
},
|
|
682
|
+
PersonNaturalSearch: {
|
|
683
|
+
modulePath: "person/natural-search",
|
|
684
|
+
schemaName: "PersonNaturalSearchSchema",
|
|
685
|
+
},
|
|
686
|
+
PersonNaturalSearchResult: {
|
|
687
|
+
modulePath: "person/natural-search-result",
|
|
688
|
+
schemaName: "PersonNaturalSearchResultSchema",
|
|
689
|
+
},
|
|
690
|
+
PersonSearchInterpretation: {
|
|
691
|
+
modulePath: "person/search-interpretation",
|
|
692
|
+
schemaName: "PersonSearchInterpretationSchema",
|
|
693
|
+
},
|
|
694
|
+
PersonSimilarityContext: {
|
|
695
|
+
modulePath: "person/similarity-context",
|
|
696
|
+
schemaName: "PersonSimilarityContextSchema",
|
|
697
|
+
},
|
|
698
|
+
PersonSimilarityOrigin: {
|
|
699
|
+
modulePath: "person/similarity-origin",
|
|
700
|
+
schemaName: "PersonSimilarityOriginSchema",
|
|
701
|
+
},
|
|
702
|
+
PersonSimilarityResult: {
|
|
703
|
+
modulePath: "person/similarity-result",
|
|
704
|
+
schemaName: "PersonSimilarityResultSchema",
|
|
705
|
+
},
|
|
706
|
+
ProblemDetail: { modulePath: "http/problem-detail", schemaName: "ProblemDetailSchema" },
|
|
707
|
+
ProblemResolution: { modulePath: "problem/resolution", schemaName: "ProblemResolutionSchema" },
|
|
708
|
+
ProblemType: { modulePath: "problem/type", schemaName: "ProblemTypeSchema" },
|
|
709
|
+
RedirectSlugPath: {
|
|
710
|
+
modulePath: "redirect/redirect-slug-path",
|
|
711
|
+
schemaName: "RedirectSlugPathSchema",
|
|
712
|
+
},
|
|
713
|
+
RefinementMeta: { modulePath: "refinement/meta", schemaName: "RefinementMetaSchema" },
|
|
714
|
+
RelationshipDirection: {
|
|
715
|
+
modulePath: "relationship/direction",
|
|
716
|
+
schemaName: "RelationshipDirectionSchema",
|
|
717
|
+
},
|
|
718
|
+
ResearchDerivedBucket: {
|
|
719
|
+
modulePath: "research/derived-bucket",
|
|
720
|
+
schemaName: "ResearchDerivedBucketSchema",
|
|
721
|
+
},
|
|
722
|
+
ResearchDerivedRange: {
|
|
723
|
+
modulePath: "research/derived-range",
|
|
724
|
+
schemaName: "ResearchDerivedRangeSchema",
|
|
725
|
+
},
|
|
726
|
+
ResearchDetailType: {
|
|
727
|
+
modulePath: "research/detail-type",
|
|
728
|
+
schemaName: "ResearchDetailTypeSchema",
|
|
729
|
+
},
|
|
730
|
+
ResearchParagraphShape: {
|
|
731
|
+
modulePath: "research/paragraph-shape",
|
|
732
|
+
schemaName: "ResearchParagraphShapeSchema",
|
|
733
|
+
},
|
|
734
|
+
ResearchSnippetType: {
|
|
735
|
+
modulePath: "research/snippet-type",
|
|
736
|
+
schemaName: "ResearchSnippetTypeSchema",
|
|
737
|
+
},
|
|
738
|
+
ResearchValueRange: {
|
|
739
|
+
modulePath: "research/value-range",
|
|
740
|
+
schemaName: "ResearchValueRangeSchema",
|
|
741
|
+
},
|
|
742
|
+
ResearchValueShapeType: {
|
|
743
|
+
modulePath: "research/value-shape-type",
|
|
744
|
+
schemaName: "ResearchValueShapeTypeSchema",
|
|
745
|
+
},
|
|
746
|
+
ResolvedHandle: { modulePath: "resolved/handle", schemaName: "ResolvedHandleSchema" },
|
|
747
|
+
RoundLabel: { modulePath: "round/label", schemaName: "RoundLabelSchema" },
|
|
748
|
+
Search: { modulePath: "search/search", schemaName: "SearchSchema" },
|
|
749
|
+
SearchDuplicateCandidateScore: {
|
|
750
|
+
modulePath: "search/duplicate-candidate-score",
|
|
751
|
+
schemaName: "SearchDuplicateCandidateScoreSchema",
|
|
752
|
+
},
|
|
753
|
+
SearchHit: { modulePath: "search/hit", schemaName: "SearchHitSchema" },
|
|
754
|
+
SearchInterpretation: {
|
|
755
|
+
modulePath: "search/interpretation",
|
|
756
|
+
schemaName: "SearchInterpretationSchema",
|
|
757
|
+
},
|
|
758
|
+
SearchMode: { modulePath: "search/mode", schemaName: "SearchModeSchema" },
|
|
759
|
+
SearchModeExecution: {
|
|
760
|
+
modulePath: "search/mode-execution",
|
|
761
|
+
schemaName: "SearchModeExecutionSchema",
|
|
762
|
+
},
|
|
763
|
+
SearchOrderingEntityFilterSortable: {
|
|
764
|
+
modulePath: "search/ordering-entity-filter-sortable",
|
|
765
|
+
schemaName: "SearchOrderingEntityFilterSortableSchema",
|
|
766
|
+
},
|
|
767
|
+
SearchOrderingPersonSortField: {
|
|
768
|
+
modulePath: "search/ordering-person-sort-field",
|
|
769
|
+
schemaName: "SearchOrderingPersonSortFieldSchema",
|
|
770
|
+
},
|
|
771
|
+
SearchRelevance: { modulePath: "search/relevance", schemaName: "SearchRelevanceSchema" },
|
|
772
|
+
SecCompany: { modulePath: "sec/company", schemaName: "SecCompanySchema" },
|
|
773
|
+
SitemapChangeFrequency: {
|
|
774
|
+
modulePath: "sitemap/change-frequency",
|
|
775
|
+
schemaName: "SitemapChangeFrequencySchema",
|
|
776
|
+
},
|
|
777
|
+
SitemapFamily: { modulePath: "sitemap/family", schemaName: "SitemapFamilySchema" },
|
|
778
|
+
SitemapFamilyEntry: {
|
|
779
|
+
modulePath: "sitemap/family-entry",
|
|
780
|
+
schemaName: "SitemapFamilyEntrySchema",
|
|
781
|
+
},
|
|
782
|
+
SitemapIndexManifest: {
|
|
783
|
+
modulePath: "sitemap/index-manifest",
|
|
784
|
+
schemaName: "SitemapIndexManifestSchema",
|
|
785
|
+
},
|
|
786
|
+
SitemapIndexPathMode: {
|
|
787
|
+
modulePath: "sitemap/index-path-mode",
|
|
788
|
+
schemaName: "SitemapIndexPathModeSchema",
|
|
789
|
+
},
|
|
790
|
+
SitemapUrlSlot: { modulePath: "sitemap/url-slot", schemaName: "SitemapUrlSlotSchema" },
|
|
791
|
+
SlugLocation: { modulePath: "slug/location", schemaName: "SlugLocationSchema" },
|
|
792
|
+
SlugResource: { modulePath: "redirect/slug-resource", schemaName: "SlugResourceSchema" },
|
|
793
|
+
SortObject: { modulePath: "sort/object", schemaName: "SortObjectSchema" },
|
|
794
|
+
SortOrderContentSortField: {
|
|
795
|
+
modulePath: "sort/order-content-sort-field",
|
|
796
|
+
schemaName: "SortOrderContentSortFieldSchema",
|
|
797
|
+
},
|
|
798
|
+
SortOrderEntityFilterSortable: {
|
|
799
|
+
modulePath: "sort/order-entity-filter-sortable",
|
|
800
|
+
schemaName: "SortOrderEntityFilterSortableSchema",
|
|
801
|
+
},
|
|
802
|
+
SortOrderPersonSortField: {
|
|
803
|
+
modulePath: "sort/order-person-sort-field",
|
|
804
|
+
schemaName: "SortOrderPersonSortFieldSchema",
|
|
805
|
+
},
|
|
806
|
+
SortSpecContentSortField: {
|
|
807
|
+
modulePath: "sort/spec-content-sort-field",
|
|
808
|
+
schemaName: "SortSpecContentSortFieldSchema",
|
|
809
|
+
},
|
|
810
|
+
SourceDocumentList: {
|
|
811
|
+
modulePath: "source/document-list",
|
|
812
|
+
schemaName: "SourceDocumentListSchema",
|
|
813
|
+
},
|
|
814
|
+
StageFrequency: { modulePath: "stage/frequency", schemaName: "StageFrequencySchema" },
|
|
815
|
+
StandardizedClassification: {
|
|
816
|
+
modulePath: "standardized/classification",
|
|
817
|
+
schemaName: "StandardizedClassificationSchema",
|
|
818
|
+
},
|
|
819
|
+
StrictUrlLookupConflict: {
|
|
820
|
+
modulePath: "strict/url-lookup-conflict",
|
|
821
|
+
schemaName: "StrictUrlLookupConflictSchema",
|
|
822
|
+
},
|
|
823
|
+
SystemBuild: { modulePath: "system/system-build", schemaName: "SystemBuildSchema" },
|
|
824
|
+
SystemBuildDetail: {
|
|
825
|
+
modulePath: "system/system-build-detail",
|
|
826
|
+
schemaName: "SystemBuildDetailSchema",
|
|
827
|
+
},
|
|
828
|
+
SystemGlobalMetrics: {
|
|
829
|
+
modulePath: "system/global-metrics",
|
|
830
|
+
schemaName: "SystemGlobalMetricsSchema",
|
|
831
|
+
},
|
|
832
|
+
SystemStatus: { modulePath: "system/status", schemaName: "SystemStatusSchema" },
|
|
833
|
+
TextTypeOption: { modulePath: "text/type-option", schemaName: "TextTypeOptionSchema" },
|
|
834
|
+
UniqueId: { modulePath: "unique/id", schemaName: "UniqueIdSchema" },
|
|
835
|
+
UniqueIdOwnerScope: {
|
|
836
|
+
modulePath: "unique/id-owner-scope",
|
|
837
|
+
schemaName: "UniqueIdOwnerScopeSchema",
|
|
838
|
+
},
|
|
839
|
+
UniqueIdType: { modulePath: "unique/id-type", schemaName: "UniqueIdTypeSchema" },
|
|
840
|
+
UniqueIdTypeAlias: {
|
|
841
|
+
modulePath: "unique/id-type-alias",
|
|
842
|
+
schemaName: "UniqueIdTypeAliasSchema",
|
|
843
|
+
},
|
|
844
|
+
Uptime: { modulePath: "uptime/uptime", schemaName: "UptimeSchema" },
|
|
845
|
+
UrlDuplicateConflict: {
|
|
846
|
+
modulePath: "url/duplicate-conflict",
|
|
847
|
+
schemaName: "UrlDuplicateConflictSchema",
|
|
848
|
+
},
|
|
849
|
+
UrlDuplicateJoin: { modulePath: "url/duplicate-join", schemaName: "UrlDuplicateJoinSchema" },
|
|
850
|
+
UrlMatchMode: { modulePath: "url/match-mode", schemaName: "UrlMatchModeSchema" },
|
|
851
|
+
UrlSlugRedirect: { modulePath: "url/slug-redirect", schemaName: "UrlSlugRedirectSchema" },
|
|
852
|
+
UrlSurfaceMisclassificationCatalog: {
|
|
853
|
+
modulePath: "url/surface-misclassification-catalog",
|
|
854
|
+
schemaName: "UrlSurfaceMisclassificationCatalogSchema",
|
|
855
|
+
},
|
|
856
|
+
UrlSurfaceMisclassificationRoute: {
|
|
857
|
+
modulePath: "url/surface-misclassification-route",
|
|
858
|
+
schemaName: "UrlSurfaceMisclassificationRouteSchema",
|
|
859
|
+
},
|
|
860
|
+
UrlTypeAlias: { modulePath: "url/type-alias", schemaName: "UrlTypeAliasSchema" },
|
|
861
|
+
ValuationType: { modulePath: "valuation/type", schemaName: "ValuationTypeSchema" },
|
|
862
|
+
WebSearch: { modulePath: "web/search", schemaName: "WebSearchSchema" },
|
|
863
|
+
});
|
|
864
|
+
//# sourceMappingURL=openapi-component-manifest.js.map
|