@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,345 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
declare const PersonSimilarityResultSchemaDefinition: z.ZodObject<{
|
|
3
|
+
currentRole: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4
|
+
associationId: z.ZodInt;
|
|
5
|
+
createdAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
6
|
+
creator: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7
|
+
endDate: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
8
|
+
entityAddress: z.ZodArray<z.ZodObject<{
|
|
9
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
10
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
+
association: z.ZodOptional<z.ZodArray<z.ZodType<{
|
|
13
|
+
endDate?: string | null | undefined;
|
|
14
|
+
id: number;
|
|
15
|
+
isCurrent: boolean;
|
|
16
|
+
role?: "domicile" | "dominant" | "origin" | null | undefined;
|
|
17
|
+
startDate?: string | null | undefined;
|
|
18
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
19
|
+
endDate?: string | null | undefined;
|
|
20
|
+
id: number;
|
|
21
|
+
isCurrent: boolean;
|
|
22
|
+
role?: "domicile" | "dominant" | "origin" | null | undefined;
|
|
23
|
+
startDate?: string | null | undefined;
|
|
24
|
+
}, unknown>>>>;
|
|
25
|
+
city: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
26
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
27
|
+
name: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>>;
|
|
29
|
+
country: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30
|
+
countryCodeChar2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31
|
+
countryCodeChar3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
33
|
+
name: z.ZodString;
|
|
34
|
+
unRegion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35
|
+
unSubregion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
|
+
}, z.core.$strip>>>;
|
|
37
|
+
countryAbbrev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
38
|
+
createdAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
39
|
+
fullAddress: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
40
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
41
|
+
isCurrent: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
42
|
+
isHq: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
43
|
+
isPrimary: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
44
|
+
latitude: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
45
|
+
longitude: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
46
|
+
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47
|
+
state: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
48
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
49
|
+
name: z.ZodString;
|
|
50
|
+
stateAbbrev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
51
|
+
}, z.core.$strip>>>;
|
|
52
|
+
stateAbbrev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
53
|
+
street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
54
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
55
|
+
}, z.core.$strip>>;
|
|
56
|
+
entityId: z.ZodUUID;
|
|
57
|
+
entityLogo: z.ZodType<{
|
|
58
|
+
isMonogram: boolean;
|
|
59
|
+
logo?: string | null | undefined;
|
|
60
|
+
logoSquare?: string | null | undefined;
|
|
61
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
62
|
+
isMonogram: boolean;
|
|
63
|
+
logo?: string | null | undefined;
|
|
64
|
+
logoSquare?: string | null | undefined;
|
|
65
|
+
}, unknown>>;
|
|
66
|
+
entityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
|
+
entityOperatingStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
68
|
+
entitySlug: z.ZodString;
|
|
69
|
+
entityType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
70
|
+
"Business Line": "Business Line";
|
|
71
|
+
Company: "Company";
|
|
72
|
+
Fund: "Fund";
|
|
73
|
+
Government: "Government";
|
|
74
|
+
"Investment Firm": "Investment Firm";
|
|
75
|
+
Nonprofit: "Nonprofit";
|
|
76
|
+
Organization: "Organization";
|
|
77
|
+
Product: "Product";
|
|
78
|
+
Service: "Service";
|
|
79
|
+
}>>>;
|
|
80
|
+
entityUrlLink: z.ZodArray<z.ZodType<{
|
|
81
|
+
crawlCdnProvider?: "akamai" | "awsCloudfront" | "azureCdn" | "bunny" | "cdn77" | "cdnetworks" | "cloudflare" | "digitalocean" | "fastly" | "gcore" | "googlecloudCdn" | "incapsula" | "keycdn" | "leaseweb" | "netlify" | "none" | "stackpath" | "sucuri" | "unknown" | "vercel" | null | undefined;
|
|
82
|
+
crawlRenderMode?: "jsEnhanced" | "jsRequired" | "static" | null | undefined;
|
|
83
|
+
createdAt?: string | null | undefined;
|
|
84
|
+
id?: number | null | undefined;
|
|
85
|
+
isCurrent?: boolean | null | undefined;
|
|
86
|
+
isPrimary?: boolean | null | undefined;
|
|
87
|
+
owner?: {
|
|
88
|
+
entityId?: string | null | undefined;
|
|
89
|
+
personId?: string | null | undefined;
|
|
90
|
+
} | null | undefined;
|
|
91
|
+
sourceId?: string | null | undefined;
|
|
92
|
+
status?: string | null | undefined;
|
|
93
|
+
statusChecked?: string | null | undefined;
|
|
94
|
+
updatedAt?: string | null | undefined;
|
|
95
|
+
url: string;
|
|
96
|
+
urlType: "alternativeto" | "angellist" | "appstore" | "awsmarketplace" | "bloomberg" | "capterra" | "changelog" | "chromewebstore" | "crates" | "crunchbase" | "discord" | "dockerhub" | "documentation" | "facebook" | "forum" | "g2" | "gartnerpeerinsights" | "getapp" | "github" | "glassdoor" | "googleplay" | "homebrew" | "hubspotmarketplace" | "instagram" | "linkedin" | "maven" | "morningstar" | "nasdaq" | "npm" | "nyse" | "pitchbook" | "producthunt" | "pypi" | "roadmap" | "salesforceappexchange" | "slackappdirectory" | "sourceforge" | "statuspage" | "subreddit" | "support" | "theorg" | "tiktok" | "trustpilot" | "trustradius" | "twitter" | "vscodemarketplace" | "website" | "wellfound" | "wikipedia" | "ycombinator" | "youtube";
|
|
97
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
98
|
+
crawlCdnProvider?: "akamai" | "awsCloudfront" | "azureCdn" | "bunny" | "cdn77" | "cdnetworks" | "cloudflare" | "digitalocean" | "fastly" | "gcore" | "googlecloudCdn" | "incapsula" | "keycdn" | "leaseweb" | "netlify" | "none" | "stackpath" | "sucuri" | "unknown" | "vercel" | null | undefined;
|
|
99
|
+
crawlRenderMode?: "jsEnhanced" | "jsRequired" | "static" | null | undefined;
|
|
100
|
+
createdAt?: string | null | undefined;
|
|
101
|
+
id?: number | null | undefined;
|
|
102
|
+
isCurrent?: boolean | null | undefined;
|
|
103
|
+
isPrimary?: boolean | null | undefined;
|
|
104
|
+
owner?: {
|
|
105
|
+
entityId?: string | null | undefined;
|
|
106
|
+
personId?: string | null | undefined;
|
|
107
|
+
} | null | undefined;
|
|
108
|
+
sourceId?: string | null | undefined;
|
|
109
|
+
status?: string | null | undefined;
|
|
110
|
+
statusChecked?: string | null | undefined;
|
|
111
|
+
updatedAt?: string | null | undefined;
|
|
112
|
+
url: string;
|
|
113
|
+
urlType: "alternativeto" | "angellist" | "appstore" | "awsmarketplace" | "bloomberg" | "capterra" | "changelog" | "chromewebstore" | "crates" | "crunchbase" | "discord" | "dockerhub" | "documentation" | "facebook" | "forum" | "g2" | "gartnerpeerinsights" | "getapp" | "github" | "glassdoor" | "googleplay" | "homebrew" | "hubspotmarketplace" | "instagram" | "linkedin" | "maven" | "morningstar" | "nasdaq" | "npm" | "nyse" | "pitchbook" | "producthunt" | "pypi" | "roadmap" | "salesforceappexchange" | "slackappdirectory" | "sourceforge" | "statuspage" | "subreddit" | "support" | "theorg" | "tiktok" | "trustpilot" | "trustradius" | "twitter" | "vscodemarketplace" | "website" | "wellfound" | "wikipedia" | "ycombinator" | "youtube";
|
|
114
|
+
}, unknown>>>;
|
|
115
|
+
isCurrent: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
116
|
+
personAddress: z.ZodArray<z.ZodObject<{
|
|
117
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
118
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
119
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
120
|
+
association: z.ZodOptional<z.ZodArray<z.ZodType<{
|
|
121
|
+
endDate?: string | null | undefined;
|
|
122
|
+
id: number;
|
|
123
|
+
isCurrent: boolean;
|
|
124
|
+
role?: "domicile" | "dominant" | "origin" | null | undefined;
|
|
125
|
+
startDate?: string | null | undefined;
|
|
126
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
127
|
+
endDate?: string | null | undefined;
|
|
128
|
+
id: number;
|
|
129
|
+
isCurrent: boolean;
|
|
130
|
+
role?: "domicile" | "dominant" | "origin" | null | undefined;
|
|
131
|
+
startDate?: string | null | undefined;
|
|
132
|
+
}, unknown>>>>;
|
|
133
|
+
city: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
134
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
135
|
+
name: z.ZodString;
|
|
136
|
+
}, z.core.$strip>>>;
|
|
137
|
+
country: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
138
|
+
countryCodeChar2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
139
|
+
countryCodeChar3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
140
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
141
|
+
name: z.ZodString;
|
|
142
|
+
unRegion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
143
|
+
unSubregion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
144
|
+
}, z.core.$strip>>>;
|
|
145
|
+
countryAbbrev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
146
|
+
createdAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
147
|
+
fullAddress: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
148
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
149
|
+
isCurrent: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
150
|
+
isHq: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
151
|
+
isPrimary: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
152
|
+
latitude: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
153
|
+
longitude: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
154
|
+
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
155
|
+
state: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
156
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
157
|
+
name: z.ZodString;
|
|
158
|
+
stateAbbrev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
159
|
+
}, z.core.$strip>>>;
|
|
160
|
+
stateAbbrev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
161
|
+
street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
163
|
+
}, z.core.$strip>>;
|
|
164
|
+
personId: z.ZodUUID;
|
|
165
|
+
personImage: z.ZodType<{
|
|
166
|
+
isMonogram: boolean;
|
|
167
|
+
picture?: string | null | undefined;
|
|
168
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
169
|
+
isMonogram: boolean;
|
|
170
|
+
picture?: string | null | undefined;
|
|
171
|
+
}, unknown>>;
|
|
172
|
+
personName: z.ZodString;
|
|
173
|
+
personSlug: z.ZodString;
|
|
174
|
+
personUrlLink: z.ZodArray<z.ZodType<{
|
|
175
|
+
crawlCdnProvider?: "akamai" | "awsCloudfront" | "azureCdn" | "bunny" | "cdn77" | "cdnetworks" | "cloudflare" | "digitalocean" | "fastly" | "gcore" | "googlecloudCdn" | "incapsula" | "keycdn" | "leaseweb" | "netlify" | "none" | "stackpath" | "sucuri" | "unknown" | "vercel" | null | undefined;
|
|
176
|
+
crawlRenderMode?: "jsEnhanced" | "jsRequired" | "static" | null | undefined;
|
|
177
|
+
createdAt?: string | null | undefined;
|
|
178
|
+
id?: number | null | undefined;
|
|
179
|
+
isCurrent?: boolean | null | undefined;
|
|
180
|
+
isPrimary?: boolean | null | undefined;
|
|
181
|
+
owner?: {
|
|
182
|
+
entityId?: string | null | undefined;
|
|
183
|
+
personId?: string | null | undefined;
|
|
184
|
+
} | null | undefined;
|
|
185
|
+
sourceId?: string | null | undefined;
|
|
186
|
+
status?: string | null | undefined;
|
|
187
|
+
statusChecked?: string | null | undefined;
|
|
188
|
+
updatedAt?: string | null | undefined;
|
|
189
|
+
url: string;
|
|
190
|
+
urlType: "alternativeto" | "angellist" | "appstore" | "awsmarketplace" | "bloomberg" | "capterra" | "changelog" | "chromewebstore" | "crates" | "crunchbase" | "discord" | "dockerhub" | "documentation" | "facebook" | "forum" | "g2" | "gartnerpeerinsights" | "getapp" | "github" | "glassdoor" | "googleplay" | "homebrew" | "hubspotmarketplace" | "instagram" | "linkedin" | "maven" | "morningstar" | "nasdaq" | "npm" | "nyse" | "pitchbook" | "producthunt" | "pypi" | "roadmap" | "salesforceappexchange" | "slackappdirectory" | "sourceforge" | "statuspage" | "subreddit" | "support" | "theorg" | "tiktok" | "trustpilot" | "trustradius" | "twitter" | "vscodemarketplace" | "website" | "wellfound" | "wikipedia" | "ycombinator" | "youtube";
|
|
191
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
192
|
+
crawlCdnProvider?: "akamai" | "awsCloudfront" | "azureCdn" | "bunny" | "cdn77" | "cdnetworks" | "cloudflare" | "digitalocean" | "fastly" | "gcore" | "googlecloudCdn" | "incapsula" | "keycdn" | "leaseweb" | "netlify" | "none" | "stackpath" | "sucuri" | "unknown" | "vercel" | null | undefined;
|
|
193
|
+
crawlRenderMode?: "jsEnhanced" | "jsRequired" | "static" | null | undefined;
|
|
194
|
+
createdAt?: string | null | undefined;
|
|
195
|
+
id?: number | null | undefined;
|
|
196
|
+
isCurrent?: boolean | null | undefined;
|
|
197
|
+
isPrimary?: boolean | null | undefined;
|
|
198
|
+
owner?: {
|
|
199
|
+
entityId?: string | null | undefined;
|
|
200
|
+
personId?: string | null | undefined;
|
|
201
|
+
} | null | undefined;
|
|
202
|
+
sourceId?: string | null | undefined;
|
|
203
|
+
status?: string | null | undefined;
|
|
204
|
+
statusChecked?: string | null | undefined;
|
|
205
|
+
updatedAt?: string | null | undefined;
|
|
206
|
+
url: string;
|
|
207
|
+
urlType: "alternativeto" | "angellist" | "appstore" | "awsmarketplace" | "bloomberg" | "capterra" | "changelog" | "chromewebstore" | "crates" | "crunchbase" | "discord" | "dockerhub" | "documentation" | "facebook" | "forum" | "g2" | "gartnerpeerinsights" | "getapp" | "github" | "glassdoor" | "googleplay" | "homebrew" | "hubspotmarketplace" | "instagram" | "linkedin" | "maven" | "morningstar" | "nasdaq" | "npm" | "nyse" | "pitchbook" | "producthunt" | "pypi" | "roadmap" | "salesforceappexchange" | "slackappdirectory" | "sourceforge" | "statuspage" | "subreddit" | "support" | "theorg" | "tiktok" | "trustpilot" | "trustradius" | "twitter" | "vscodemarketplace" | "website" | "wellfound" | "wikipedia" | "ycombinator" | "youtube";
|
|
208
|
+
}, unknown>>>;
|
|
209
|
+
score: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
210
|
+
startDate: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
211
|
+
titleFunction: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
212
|
+
titleId: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
213
|
+
titleLevel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
214
|
+
titleName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
215
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
216
|
+
}, z.core.$strip>>>;
|
|
217
|
+
person: z.ZodType<{
|
|
218
|
+
createdAt?: string | null | undefined;
|
|
219
|
+
gender?: string | null | undefined;
|
|
220
|
+
id: string;
|
|
221
|
+
image: {
|
|
222
|
+
isMonogram: boolean;
|
|
223
|
+
picture?: string | null | undefined;
|
|
224
|
+
};
|
|
225
|
+
lastModifiedAt?: string | null | undefined;
|
|
226
|
+
nameAlias: {
|
|
227
|
+
displayable?: boolean | null | undefined;
|
|
228
|
+
name: string;
|
|
229
|
+
type?: "formerName" | "maidenName" | "nickname" | "stageName" | null | undefined;
|
|
230
|
+
}[];
|
|
231
|
+
nameFirst?: string | null | undefined;
|
|
232
|
+
nameFull: string;
|
|
233
|
+
nameLast?: string | null | undefined;
|
|
234
|
+
nameMiddle?: string | null | undefined;
|
|
235
|
+
nickname?: string | null | undefined;
|
|
236
|
+
publicId?: string | null | undefined;
|
|
237
|
+
semanticMatch?: {
|
|
238
|
+
computedAt: string;
|
|
239
|
+
cosineDistance: number;
|
|
240
|
+
cosineScore: number;
|
|
241
|
+
modelVersion: string;
|
|
242
|
+
rank: number;
|
|
243
|
+
sourceHash: string;
|
|
244
|
+
sourceId: string;
|
|
245
|
+
sourceJson: string;
|
|
246
|
+
sourceText: string;
|
|
247
|
+
sourceType: "agentHelpDoc" | "blogPost" | "classificationCode" | "classificationTag" | "entity" | "newsArticle" | "person" | "product" | "service" | "text";
|
|
248
|
+
} | null | undefined;
|
|
249
|
+
slug: string;
|
|
250
|
+
source: {
|
|
251
|
+
changedAt?: string | null | undefined;
|
|
252
|
+
dataSourceUpdatedAt?: string | null | undefined;
|
|
253
|
+
detail?: string | null | undefined;
|
|
254
|
+
kind?: string | null | undefined;
|
|
255
|
+
pendingApproval?: number | null | undefined;
|
|
256
|
+
sourceId?: string | null | undefined;
|
|
257
|
+
status?: string | null | undefined;
|
|
258
|
+
};
|
|
259
|
+
suffix?: string | null | undefined;
|
|
260
|
+
text: {
|
|
261
|
+
expanded?: string | null | undefined;
|
|
262
|
+
generatedDescription?: string | null | undefined;
|
|
263
|
+
short?: string | null | undefined;
|
|
264
|
+
};
|
|
265
|
+
updatedAt?: string | null | undefined;
|
|
266
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
267
|
+
createdAt?: string | null | undefined;
|
|
268
|
+
gender?: string | null | undefined;
|
|
269
|
+
id: string;
|
|
270
|
+
image: {
|
|
271
|
+
isMonogram: boolean;
|
|
272
|
+
picture?: string | null | undefined;
|
|
273
|
+
};
|
|
274
|
+
lastModifiedAt?: string | null | undefined;
|
|
275
|
+
nameAlias: {
|
|
276
|
+
displayable?: boolean | null | undefined;
|
|
277
|
+
name: string;
|
|
278
|
+
type?: "formerName" | "maidenName" | "nickname" | "stageName" | null | undefined;
|
|
279
|
+
}[];
|
|
280
|
+
nameFirst?: string | null | undefined;
|
|
281
|
+
nameFull: string;
|
|
282
|
+
nameLast?: string | null | undefined;
|
|
283
|
+
nameMiddle?: string | null | undefined;
|
|
284
|
+
nickname?: string | null | undefined;
|
|
285
|
+
publicId?: string | null | undefined;
|
|
286
|
+
semanticMatch?: {
|
|
287
|
+
computedAt: string;
|
|
288
|
+
cosineDistance: number;
|
|
289
|
+
cosineScore: number;
|
|
290
|
+
modelVersion: string;
|
|
291
|
+
rank: number;
|
|
292
|
+
sourceHash: string;
|
|
293
|
+
sourceId: string;
|
|
294
|
+
sourceJson: string;
|
|
295
|
+
sourceText: string;
|
|
296
|
+
sourceType: "agentHelpDoc" | "blogPost" | "classificationCode" | "classificationTag" | "entity" | "newsArticle" | "person" | "product" | "service" | "text";
|
|
297
|
+
} | null | undefined;
|
|
298
|
+
slug: string;
|
|
299
|
+
source: {
|
|
300
|
+
changedAt?: string | null | undefined;
|
|
301
|
+
dataSourceUpdatedAt?: string | null | undefined;
|
|
302
|
+
detail?: string | null | undefined;
|
|
303
|
+
kind?: string | null | undefined;
|
|
304
|
+
pendingApproval?: number | null | undefined;
|
|
305
|
+
sourceId?: string | null | undefined;
|
|
306
|
+
status?: string | null | undefined;
|
|
307
|
+
};
|
|
308
|
+
suffix?: string | null | undefined;
|
|
309
|
+
text: {
|
|
310
|
+
expanded?: string | null | undefined;
|
|
311
|
+
generatedDescription?: string | null | undefined;
|
|
312
|
+
short?: string | null | undefined;
|
|
313
|
+
};
|
|
314
|
+
updatedAt?: string | null | undefined;
|
|
315
|
+
}, unknown>>;
|
|
316
|
+
similarity: z.ZodType<{
|
|
317
|
+
compositeScore?: number | null | undefined;
|
|
318
|
+
cosineScore?: number | null | undefined;
|
|
319
|
+
matchedSectionWeight?: number | null | undefined;
|
|
320
|
+
origin: "live" | "precomputed";
|
|
321
|
+
rank: number;
|
|
322
|
+
sharedSectionCount?: number | null | undefined;
|
|
323
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
324
|
+
compositeScore?: number | null | undefined;
|
|
325
|
+
cosineScore?: number | null | undefined;
|
|
326
|
+
matchedSectionWeight?: number | null | undefined;
|
|
327
|
+
origin: "live" | "precomputed";
|
|
328
|
+
rank: number;
|
|
329
|
+
sharedSectionCount?: number | null | undefined;
|
|
330
|
+
}, unknown>>;
|
|
331
|
+
}, z.core.$strip>;
|
|
332
|
+
type PersonSimilarityResultDefinition = z.infer<typeof PersonSimilarityResultSchemaDefinition>;
|
|
333
|
+
/**
|
|
334
|
+
* Similar person list row with the provenance that explains why it appears. Rows carry the canonical Person projection; load full detail through the person detail endpoints.
|
|
335
|
+
*
|
|
336
|
+
* @openapiSchema PersonSimilarityResult
|
|
337
|
+
* @endpoint GET /v1/people/detail/similar
|
|
338
|
+
* @usedBySchema PagePersonSimilarityResultSchema
|
|
339
|
+
* @contractShape person.similarity-result
|
|
340
|
+
* @contractRole canonical
|
|
341
|
+
*/
|
|
342
|
+
export declare const PersonSimilarityResultSchema: z.ZodType<PersonSimilarityResultDefinition>;
|
|
343
|
+
export type PersonSimilarityResult = z.infer<typeof PersonSimilarityResultSchema>;
|
|
344
|
+
export {};
|
|
345
|
+
//# sourceMappingURL=similarity-result.d.ts.map
|
|
@@ -0,0 +1,22 @@
|
|
|
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 { EntityPersonAssociationSchema } from "../entity/person-association.js";
|
|
4
|
+
import { PersonSchema } from "./person.js";
|
|
5
|
+
import { PersonSimilarityContextSchema } from "./similarity-context.js";
|
|
6
|
+
const PersonSimilarityResultSchemaDefinition = z.object({
|
|
7
|
+
/** Current titled association for the similar-person card; null when no current titled role is available. */
|
|
8
|
+
currentRole: EntityPersonAssociationSchema.nullish(),
|
|
9
|
+
person: PersonSchema,
|
|
10
|
+
similarity: PersonSimilarityContextSchema,
|
|
11
|
+
});
|
|
12
|
+
/**
|
|
13
|
+
* Similar person list row with the provenance that explains why it appears. Rows carry the canonical Person projection; load full detail through the person detail endpoints.
|
|
14
|
+
*
|
|
15
|
+
* @openapiSchema PersonSimilarityResult
|
|
16
|
+
* @endpoint GET /v1/people/detail/similar
|
|
17
|
+
* @usedBySchema PagePersonSimilarityResultSchema
|
|
18
|
+
* @contractShape person.similarity-result
|
|
19
|
+
* @contractRole canonical
|
|
20
|
+
*/
|
|
21
|
+
export const PersonSimilarityResultSchema = PersonSimilarityResultSchemaDefinition;
|
|
22
|
+
//# sourceMappingURL=similarity-result.js.map
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
declare const PersonalApiKeySchemaDefinition: z.ZodObject<{
|
|
3
|
+
createdAt: z.ZodISODateTime;
|
|
4
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
6
|
+
id: z.ZodString;
|
|
7
|
+
lastUsedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
8
|
+
name: z.ZodString;
|
|
9
|
+
revocationReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
11
|
+
status: z.ZodEnum<{
|
|
12
|
+
ACTIVE: "ACTIVE";
|
|
13
|
+
EXPIRED: "EXPIRED";
|
|
14
|
+
REVOKED: "REVOKED";
|
|
15
|
+
}>;
|
|
16
|
+
subject: z.ZodString;
|
|
17
|
+
updatedAt: z.ZodISODateTime;
|
|
18
|
+
}, z.core.$strip>;
|
|
19
|
+
type PersonalApiKeyDefinition = z.infer<typeof PersonalApiKeySchemaDefinition>;
|
|
20
|
+
/**
|
|
21
|
+
* Personal API-key metadata sourced from Clerk; never contains the key secret
|
|
22
|
+
*
|
|
23
|
+
* @openapiSchema PersonalApiKey
|
|
24
|
+
* @endpoint GET /v1/auth/personal-api-key
|
|
25
|
+
* @endpoint DELETE /v1/auth/personal-api-key
|
|
26
|
+
* @contractShape personal.api-key
|
|
27
|
+
* @contractRole canonical
|
|
28
|
+
*/
|
|
29
|
+
export declare const PersonalApiKeySchema: z.ZodType<PersonalApiKeyDefinition>;
|
|
30
|
+
export type PersonalApiKey = z.infer<typeof PersonalApiKeySchema>;
|
|
31
|
+
export {};
|
|
32
|
+
//# sourceMappingURL=api-key.d.ts.map
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
const PersonalApiKeySchemaDefinition = z.object({
|
|
4
|
+
/** Provider creation timestamp */
|
|
5
|
+
createdAt: z.iso.datetime({ offset: true }),
|
|
6
|
+
/** Optional user-visible key description */
|
|
7
|
+
description: z.string().nullish(),
|
|
8
|
+
/** Provider expiry timestamp */
|
|
9
|
+
expiresAt: z.iso.datetime({ offset: true }).nullish(),
|
|
10
|
+
/** Clerk API-key identifier */
|
|
11
|
+
id: z.string().regex(/^ak_[0-9A-Fa-f]{32}$/),
|
|
12
|
+
/** Most recent provider-recorded use timestamp */
|
|
13
|
+
lastUsedAt: z.iso.datetime({ offset: true }).nullish(),
|
|
14
|
+
/** User-visible key name */
|
|
15
|
+
name: z.string(),
|
|
16
|
+
/** Provider revocation explanation */
|
|
17
|
+
revocationReason: z.string().nullish(),
|
|
18
|
+
/** Clerk scopes assigned to this key */
|
|
19
|
+
scopes: z.array(z.string()),
|
|
20
|
+
/** Provider-derived current lifecycle state */
|
|
21
|
+
status: z.enum(["ACTIVE", "REVOKED", "EXPIRED"]),
|
|
22
|
+
/** Owning Clerk user subject */
|
|
23
|
+
subject: z.string(),
|
|
24
|
+
/** Provider metadata update timestamp */
|
|
25
|
+
updatedAt: z.iso.datetime({ offset: true }),
|
|
26
|
+
});
|
|
27
|
+
/**
|
|
28
|
+
* Personal API-key metadata sourced from Clerk; never contains the key secret
|
|
29
|
+
*
|
|
30
|
+
* @openapiSchema PersonalApiKey
|
|
31
|
+
* @endpoint GET /v1/auth/personal-api-key
|
|
32
|
+
* @endpoint DELETE /v1/auth/personal-api-key
|
|
33
|
+
* @contractShape personal.api-key
|
|
34
|
+
* @contractRole canonical
|
|
35
|
+
*/
|
|
36
|
+
export const PersonalApiKeySchema = PersonalApiKeySchemaDefinition;
|
|
37
|
+
//# sourceMappingURL=api-key.js.map
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
/**
|
|
3
|
+
* Machine-readable next action for an aVenture ProblemDetail. For reviewCandidates, inspect ProblemDetail.details candidates and decide update, create-with-override, or block from those returned records.
|
|
4
|
+
*
|
|
5
|
+
* @openapiSchema ProblemResolution
|
|
6
|
+
* @standardProblemResponse
|
|
7
|
+
* @usedBySchema ProblemDetailSchema
|
|
8
|
+
* @contractShape problem.resolution
|
|
9
|
+
* @contractRole canonical
|
|
10
|
+
*/
|
|
11
|
+
export declare const ProblemResolutionSchema: z.ZodObject<{
|
|
12
|
+
acceptedValue: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
13
|
+
action: z.ZodEnum<{
|
|
14
|
+
authenticate: "authenticate";
|
|
15
|
+
removeParameter: "removeParameter";
|
|
16
|
+
reviewCandidates: "reviewCandidates";
|
|
17
|
+
setField: "setField";
|
|
18
|
+
setParameter: "setParameter";
|
|
19
|
+
useEndpoint: "useEndpoint";
|
|
20
|
+
}>;
|
|
21
|
+
endpoint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22
|
+
fieldPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
+
parameter: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24
|
+
retryable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
25
|
+
}, z.core.$strip>;
|
|
26
|
+
export type ProblemResolution = z.infer<typeof ProblemResolutionSchema>;
|
|
27
|
+
//# sourceMappingURL=resolution.d.ts.map
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
/**
|
|
4
|
+
* Machine-readable next action for an aVenture ProblemDetail. For reviewCandidates, inspect ProblemDetail.details candidates and decide update, create-with-override, or block from those returned records.
|
|
5
|
+
*
|
|
6
|
+
* @openapiSchema ProblemResolution
|
|
7
|
+
* @standardProblemResponse
|
|
8
|
+
* @usedBySchema ProblemDetailSchema
|
|
9
|
+
* @contractShape problem.resolution
|
|
10
|
+
* @contractRole canonical
|
|
11
|
+
*/
|
|
12
|
+
export const ProblemResolutionSchema = z.object({
|
|
13
|
+
/** Accepted values for the field or parameter, when enumerable. */
|
|
14
|
+
acceptedValue: z.array(z.string()).nullish(),
|
|
15
|
+
/** Next action category for the client or agent. */
|
|
16
|
+
action: z.enum([
|
|
17
|
+
"setField",
|
|
18
|
+
"setParameter",
|
|
19
|
+
"removeParameter",
|
|
20
|
+
"useEndpoint",
|
|
21
|
+
"reviewCandidates",
|
|
22
|
+
"authenticate",
|
|
23
|
+
]),
|
|
24
|
+
/** Endpoint to call for the next action, when applicable. */
|
|
25
|
+
endpoint: z.string().nullish(),
|
|
26
|
+
/** Request-body field path that needs attention, when applicable. */
|
|
27
|
+
fieldPath: z.string().nullish(),
|
|
28
|
+
/** Query parameter that needs attention, when applicable. */
|
|
29
|
+
parameter: z.string().nullish(),
|
|
30
|
+
/** Whether the same logical request can be retried after the next action. */
|
|
31
|
+
retryable: z.boolean().nullish(),
|
|
32
|
+
});
|
|
33
|
+
//# sourceMappingURL=resolution.js.map
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
/**
|
|
3
|
+
* Known RFC 9457 error type URIs.
|
|
4
|
+
*
|
|
5
|
+
* @openapiSchema ProblemType
|
|
6
|
+
* @standardProblemResponse
|
|
7
|
+
* @usedBySchema ProblemDetailSchema
|
|
8
|
+
* @contractShape problem.type
|
|
9
|
+
* @contractRole canonical
|
|
10
|
+
*/
|
|
11
|
+
export declare const ProblemTypeSchema: z.ZodEnum<{
|
|
12
|
+
readonly VALIDATION_FAILED: "https://api.aventure.vc/errors/validation-failed";
|
|
13
|
+
readonly MISSING_PARAMETER: "https://api.aventure.vc/errors/missing-parameter";
|
|
14
|
+
readonly INVALID_PARAMETER_TYPE: "https://api.aventure.vc/errors/invalid-parameter-type";
|
|
15
|
+
readonly UNKNOWN_PARAMETER: "https://api.aventure.vc/errors/unknown-parameter";
|
|
16
|
+
readonly INVALID_ARGUMENT: "https://api.aventure.vc/errors/invalid-argument";
|
|
17
|
+
readonly INVALID_REQUEST: "https://api.aventure.vc/errors/invalid-request";
|
|
18
|
+
readonly INVALID_TOKEN: "https://api.aventure.vc/errors/invalid-token";
|
|
19
|
+
readonly TOKEN_EXPIRED: "https://api.aventure.vc/errors/token-expired";
|
|
20
|
+
readonly INVALID_AUTHENTICATION: "https://api.aventure.vc/errors/invalid-authentication";
|
|
21
|
+
readonly CLIENT_CLOSED_REQUEST: "https://api.aventure.vc/errors/client-closed-request";
|
|
22
|
+
readonly INVALID_JSON: "https://api.aventure.vc/errors/invalid-json";
|
|
23
|
+
readonly METHOD_NOT_ALLOWED: "https://api.aventure.vc/errors/method-not-allowed";
|
|
24
|
+
readonly NOT_ACCEPTABLE: "https://api.aventure.vc/errors/not-acceptable";
|
|
25
|
+
readonly UNSUPPORTED_MEDIA_TYPE: "https://api.aventure.vc/errors/unsupported-media-type";
|
|
26
|
+
readonly INTERNAL_ERROR: "https://api.aventure.vc/errors/internal-error";
|
|
27
|
+
readonly UNEXPECTED_ERROR: "https://api.aventure.vc/errors/unexpected-error";
|
|
28
|
+
readonly NOT_IMPLEMENTED: "https://api.aventure.vc/errors/not-implemented";
|
|
29
|
+
readonly AUTHENTICATION_REQUIRED: "https://api.aventure.vc/errors/authentication-required";
|
|
30
|
+
readonly AUTH_DOCS_REQUIRED: "https://api.aventure.vc/errors/auth.docs-required";
|
|
31
|
+
readonly AUTH_ADMIN_KEY_NOT_CONFIGURED: "https://api.aventure.vc/errors/auth.admin-key-not-configured";
|
|
32
|
+
readonly AUTH_EMPTY_ADMIN_KEY: "https://api.aventure.vc/errors/auth.empty-admin-key";
|
|
33
|
+
readonly AUTH_EMPTY_ADMIN_BEARER: "https://api.aventure.vc/errors/auth.empty-admin-bearer";
|
|
34
|
+
readonly AUTH_INVALID_ADMIN_KEY: "https://api.aventure.vc/errors/auth.invalid-admin-key";
|
|
35
|
+
readonly AUTH_MISSING_ADMIN_KEY: "https://api.aventure.vc/errors/auth.missing-admin-key";
|
|
36
|
+
readonly AUTH_METRICS_UNAUTHORIZED: "https://api.aventure.vc/errors/auth.metrics-unauthorized";
|
|
37
|
+
readonly ACCESS_DENIED: "https://api.aventure.vc/errors/access-denied";
|
|
38
|
+
readonly NOT_FOUND: "https://api.aventure.vc/errors/not-found";
|
|
39
|
+
readonly GONE: "https://api.aventure.vc/errors/gone";
|
|
40
|
+
readonly RATE_LIMITED: "https://api.aventure.vc/errors/rate-limited";
|
|
41
|
+
readonly PRECONDITION_FAILED: "https://api.aventure.vc/errors/precondition-failed";
|
|
42
|
+
readonly PRECONDITION_REQUIRED: "https://api.aventure.vc/errors/precondition-required";
|
|
43
|
+
readonly BILLING_ALLOWANCE_EXHAUSTED: "https://api.aventure.vc/errors/billing-allowance-exhausted";
|
|
44
|
+
readonly SUBSCRIPTION_REQUIRED: "https://api.aventure.vc/errors/subscription-required";
|
|
45
|
+
readonly SERVICE_UNAVAILABLE: "https://api.aventure.vc/errors/service-unavailable";
|
|
46
|
+
readonly MALFORMED_FORM_BODY: "https://api.aventure.vc/errors/malformed-form-body";
|
|
47
|
+
readonly STATE_CONFLICT: "https://api.aventure.vc/errors/state-conflict";
|
|
48
|
+
readonly SLUG_HELD_BY_RECORD: "https://api.aventure.vc/errors/slug-held-by-record";
|
|
49
|
+
readonly SLUG_HELD_BY_REDIRECT: "https://api.aventure.vc/errors/slug-held-by-redirect";
|
|
50
|
+
readonly SLUG_AMBIGUOUS: "https://api.aventure.vc/errors/slug-ambiguous";
|
|
51
|
+
readonly DUPLICATE: "https://api.aventure.vc/errors/duplicate";
|
|
52
|
+
readonly DUPLICATE_KEY: "https://api.aventure.vc/errors/duplicate-key";
|
|
53
|
+
readonly INTEGRITY_VIOLATION: "https://api.aventure.vc/errors/integrity-violation";
|
|
54
|
+
readonly CIRCUIT_BREAKER_OPEN: "https://api.aventure.vc/errors/circuit-breaker-open";
|
|
55
|
+
readonly BULKHEAD_FULL: "https://api.aventure.vc/errors/bulkhead-full";
|
|
56
|
+
readonly DATABASE_UNAVAILABLE: "https://api.aventure.vc/errors/database-unavailable";
|
|
57
|
+
readonly DATABASE_ERROR: "https://api.aventure.vc/errors/database-error";
|
|
58
|
+
readonly FILE_TOO_LARGE: "https://api.aventure.vc/errors/file-too-large";
|
|
59
|
+
readonly MISSING_FILE_PART: "https://api.aventure.vc/errors/missing-file-part";
|
|
60
|
+
readonly INVALID_MULTIPART_BOUNDARY: "https://api.aventure.vc/errors/invalid-multipart-boundary";
|
|
61
|
+
readonly MULTIPART_PARSE_ERROR: "https://api.aventure.vc/errors/multipart-parse-error";
|
|
62
|
+
readonly NON_ENGLISH_ARTICLE: "https://api.aventure.vc/errors/non-english-article";
|
|
63
|
+
readonly INVALID_IMAGE: "https://api.aventure.vc/errors/invalid-image";
|
|
64
|
+
readonly UPSTREAM_EDGE_CHALLENGED: "https://api.aventure.vc/errors/upstream-edge-challenged";
|
|
65
|
+
readonly ACCELERATOR_DETAIL_RESTATES_TARGET: "https://api.aventure.vc/errors/accelerator-detail-restates-target";
|
|
66
|
+
}>;
|
|
67
|
+
export type ProblemType = z.infer<typeof ProblemTypeSchema>;
|
|
68
|
+
//# sourceMappingURL=type.d.ts.map
|
|
@@ -0,0 +1,68 @@
|
|
|
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
|
+
/**
|
|
4
|
+
* Known RFC 9457 error type URIs.
|
|
5
|
+
*
|
|
6
|
+
* @openapiSchema ProblemType
|
|
7
|
+
* @standardProblemResponse
|
|
8
|
+
* @usedBySchema ProblemDetailSchema
|
|
9
|
+
* @contractShape problem.type
|
|
10
|
+
* @contractRole canonical
|
|
11
|
+
*/
|
|
12
|
+
export const ProblemTypeSchema = z.enum({
|
|
13
|
+
VALIDATION_FAILED: "https://api.aventure.vc/errors/validation-failed",
|
|
14
|
+
MISSING_PARAMETER: "https://api.aventure.vc/errors/missing-parameter",
|
|
15
|
+
INVALID_PARAMETER_TYPE: "https://api.aventure.vc/errors/invalid-parameter-type",
|
|
16
|
+
UNKNOWN_PARAMETER: "https://api.aventure.vc/errors/unknown-parameter",
|
|
17
|
+
INVALID_ARGUMENT: "https://api.aventure.vc/errors/invalid-argument",
|
|
18
|
+
INVALID_REQUEST: "https://api.aventure.vc/errors/invalid-request",
|
|
19
|
+
INVALID_TOKEN: "https://api.aventure.vc/errors/invalid-token",
|
|
20
|
+
TOKEN_EXPIRED: "https://api.aventure.vc/errors/token-expired",
|
|
21
|
+
INVALID_AUTHENTICATION: "https://api.aventure.vc/errors/invalid-authentication",
|
|
22
|
+
CLIENT_CLOSED_REQUEST: "https://api.aventure.vc/errors/client-closed-request",
|
|
23
|
+
INVALID_JSON: "https://api.aventure.vc/errors/invalid-json",
|
|
24
|
+
METHOD_NOT_ALLOWED: "https://api.aventure.vc/errors/method-not-allowed",
|
|
25
|
+
NOT_ACCEPTABLE: "https://api.aventure.vc/errors/not-acceptable",
|
|
26
|
+
UNSUPPORTED_MEDIA_TYPE: "https://api.aventure.vc/errors/unsupported-media-type",
|
|
27
|
+
INTERNAL_ERROR: "https://api.aventure.vc/errors/internal-error",
|
|
28
|
+
UNEXPECTED_ERROR: "https://api.aventure.vc/errors/unexpected-error",
|
|
29
|
+
NOT_IMPLEMENTED: "https://api.aventure.vc/errors/not-implemented",
|
|
30
|
+
AUTHENTICATION_REQUIRED: "https://api.aventure.vc/errors/authentication-required",
|
|
31
|
+
AUTH_DOCS_REQUIRED: "https://api.aventure.vc/errors/auth.docs-required",
|
|
32
|
+
AUTH_ADMIN_KEY_NOT_CONFIGURED: "https://api.aventure.vc/errors/auth.admin-key-not-configured",
|
|
33
|
+
AUTH_EMPTY_ADMIN_KEY: "https://api.aventure.vc/errors/auth.empty-admin-key",
|
|
34
|
+
AUTH_EMPTY_ADMIN_BEARER: "https://api.aventure.vc/errors/auth.empty-admin-bearer",
|
|
35
|
+
AUTH_INVALID_ADMIN_KEY: "https://api.aventure.vc/errors/auth.invalid-admin-key",
|
|
36
|
+
AUTH_MISSING_ADMIN_KEY: "https://api.aventure.vc/errors/auth.missing-admin-key",
|
|
37
|
+
AUTH_METRICS_UNAUTHORIZED: "https://api.aventure.vc/errors/auth.metrics-unauthorized",
|
|
38
|
+
ACCESS_DENIED: "https://api.aventure.vc/errors/access-denied",
|
|
39
|
+
NOT_FOUND: "https://api.aventure.vc/errors/not-found",
|
|
40
|
+
GONE: "https://api.aventure.vc/errors/gone",
|
|
41
|
+
RATE_LIMITED: "https://api.aventure.vc/errors/rate-limited",
|
|
42
|
+
PRECONDITION_FAILED: "https://api.aventure.vc/errors/precondition-failed",
|
|
43
|
+
PRECONDITION_REQUIRED: "https://api.aventure.vc/errors/precondition-required",
|
|
44
|
+
BILLING_ALLOWANCE_EXHAUSTED: "https://api.aventure.vc/errors/billing-allowance-exhausted",
|
|
45
|
+
SUBSCRIPTION_REQUIRED: "https://api.aventure.vc/errors/subscription-required",
|
|
46
|
+
SERVICE_UNAVAILABLE: "https://api.aventure.vc/errors/service-unavailable",
|
|
47
|
+
MALFORMED_FORM_BODY: "https://api.aventure.vc/errors/malformed-form-body",
|
|
48
|
+
STATE_CONFLICT: "https://api.aventure.vc/errors/state-conflict",
|
|
49
|
+
SLUG_HELD_BY_RECORD: "https://api.aventure.vc/errors/slug-held-by-record",
|
|
50
|
+
SLUG_HELD_BY_REDIRECT: "https://api.aventure.vc/errors/slug-held-by-redirect",
|
|
51
|
+
SLUG_AMBIGUOUS: "https://api.aventure.vc/errors/slug-ambiguous",
|
|
52
|
+
DUPLICATE: "https://api.aventure.vc/errors/duplicate",
|
|
53
|
+
DUPLICATE_KEY: "https://api.aventure.vc/errors/duplicate-key",
|
|
54
|
+
INTEGRITY_VIOLATION: "https://api.aventure.vc/errors/integrity-violation",
|
|
55
|
+
CIRCUIT_BREAKER_OPEN: "https://api.aventure.vc/errors/circuit-breaker-open",
|
|
56
|
+
BULKHEAD_FULL: "https://api.aventure.vc/errors/bulkhead-full",
|
|
57
|
+
DATABASE_UNAVAILABLE: "https://api.aventure.vc/errors/database-unavailable",
|
|
58
|
+
DATABASE_ERROR: "https://api.aventure.vc/errors/database-error",
|
|
59
|
+
FILE_TOO_LARGE: "https://api.aventure.vc/errors/file-too-large",
|
|
60
|
+
MISSING_FILE_PART: "https://api.aventure.vc/errors/missing-file-part",
|
|
61
|
+
INVALID_MULTIPART_BOUNDARY: "https://api.aventure.vc/errors/invalid-multipart-boundary",
|
|
62
|
+
MULTIPART_PARSE_ERROR: "https://api.aventure.vc/errors/multipart-parse-error",
|
|
63
|
+
NON_ENGLISH_ARTICLE: "https://api.aventure.vc/errors/non-english-article",
|
|
64
|
+
INVALID_IMAGE: "https://api.aventure.vc/errors/invalid-image",
|
|
65
|
+
UPSTREAM_EDGE_CHALLENGED: "https://api.aventure.vc/errors/upstream-edge-challenged",
|
|
66
|
+
ACCELERATOR_DETAIL_RESTATES_TARGET: "https://api.aventure.vc/errors/accelerator-detail-restates-target",
|
|
67
|
+
});
|
|
68
|
+
//# sourceMappingURL=type.js.map
|