├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── dart.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── console-simple │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── analysis_options.yaml │ ├── assets │ │ └── documents.jsonl │ ├── bin │ │ ├── aliases.dart │ │ ├── cluster_operations.dart │ │ ├── collections.dart │ │ ├── documents.dart │ │ ├── keys.dart │ │ ├── main.dart │ │ ├── miscellaneous.dart │ │ ├── overrides.dart │ │ ├── presets.dart │ │ ├── search.dart │ │ ├── synonyms.dart │ │ └── util.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── server_configuration │ │ ├── node7108.ini │ │ ├── node8108.ini │ │ ├── node9108.ini │ │ └── typesense-server-nodes └── example.md ├── lib ├── src │ ├── alias.dart │ ├── aliases.dart │ ├── client.dart │ ├── collection.dart │ ├── collections.dart │ ├── configuration.dart │ ├── debug.dart │ ├── document.dart │ ├── documents.dart │ ├── exceptions │ │ ├── exceptions.dart │ │ ├── import_error.dart │ │ ├── missing_configuration.dart │ │ ├── request_exceptions │ │ │ ├── http_error.dart │ │ │ ├── object_already_exists.dart │ │ │ ├── object_not_found.dart │ │ │ ├── object_unprocessable.dart │ │ │ ├── request_exception.dart │ │ │ ├── request_malformed.dart │ │ │ ├── request_unauthorized.dart │ │ │ └── server_error.dart │ │ └── typesense_exception.dart │ ├── health.dart │ ├── key.dart │ ├── keys.dart │ ├── metrics.dart │ ├── models │ │ ├── field.dart │ │ ├── models.dart │ │ ├── node.dart │ │ └── schema.dart │ ├── multi_search.dart │ ├── operations.dart │ ├── override.dart │ ├── overrides.dart │ ├── preset.dart │ ├── presets.dart │ ├── search_client.dart │ ├── services │ │ ├── api_call.dart │ │ ├── base_api_call.dart │ │ ├── collections_api_call.dart │ │ ├── documents_api_call.dart │ │ ├── node_pool.dart │ │ └── request_cache.dart │ ├── stats.dart │ ├── synonym.dart │ └── synonyms.dart └── typesense.dart ├── pubspec.yaml └── test ├── alias_test.dart ├── aliases_test.dart ├── client_test.dart ├── collection_test.dart ├── collections_test.dart ├── configuration_test.dart ├── debug_test.dart ├── document_test.dart ├── documents_test.dart ├── exceptions_test.dart ├── health_test.dart ├── key_test.dart ├── keys_test.dart ├── metrics_test.dart ├── models ├── field_test.dart ├── node_test.dart └── schema_test.dart ├── multi_search_test.dart ├── operations_test.dart ├── override_test.dart ├── overrides_test.dart ├── search_client_test.dart ├── services ├── api_call_test.dart ├── collections_api_call_test.dart ├── documents_api_call_test.dart ├── node_pool_test.dart └── request_cache_test.dart ├── stats_test.dart ├── synonym_test.dart ├── synonyms_test.dart └── test_utils.dart /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /example/console-simple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/.gitignore -------------------------------------------------------------------------------- /example/console-simple/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /example/console-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/README.md -------------------------------------------------------------------------------- /example/console-simple/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml -------------------------------------------------------------------------------- /example/console-simple/assets/documents.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/assets/documents.jsonl -------------------------------------------------------------------------------- /example/console-simple/bin/aliases.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/aliases.dart -------------------------------------------------------------------------------- /example/console-simple/bin/cluster_operations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/cluster_operations.dart -------------------------------------------------------------------------------- /example/console-simple/bin/collections.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/collections.dart -------------------------------------------------------------------------------- /example/console-simple/bin/documents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/documents.dart -------------------------------------------------------------------------------- /example/console-simple/bin/keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/keys.dart -------------------------------------------------------------------------------- /example/console-simple/bin/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/main.dart -------------------------------------------------------------------------------- /example/console-simple/bin/miscellaneous.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/miscellaneous.dart -------------------------------------------------------------------------------- /example/console-simple/bin/overrides.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/overrides.dart -------------------------------------------------------------------------------- /example/console-simple/bin/presets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/presets.dart -------------------------------------------------------------------------------- /example/console-simple/bin/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/search.dart -------------------------------------------------------------------------------- /example/console-simple/bin/synonyms.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/synonyms.dart -------------------------------------------------------------------------------- /example/console-simple/bin/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/bin/util.dart -------------------------------------------------------------------------------- /example/console-simple/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/pubspec.lock -------------------------------------------------------------------------------- /example/console-simple/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/pubspec.yaml -------------------------------------------------------------------------------- /example/console-simple/server_configuration/node7108.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/server_configuration/node7108.ini -------------------------------------------------------------------------------- /example/console-simple/server_configuration/node8108.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/server_configuration/node8108.ini -------------------------------------------------------------------------------- /example/console-simple/server_configuration/node9108.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/server_configuration/node9108.ini -------------------------------------------------------------------------------- /example/console-simple/server_configuration/typesense-server-nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/console-simple/server_configuration/typesense-server-nodes -------------------------------------------------------------------------------- /example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/example/example.md -------------------------------------------------------------------------------- /lib/src/alias.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/alias.dart -------------------------------------------------------------------------------- /lib/src/aliases.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/aliases.dart -------------------------------------------------------------------------------- /lib/src/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/client.dart -------------------------------------------------------------------------------- /lib/src/collection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/collection.dart -------------------------------------------------------------------------------- /lib/src/collections.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/collections.dart -------------------------------------------------------------------------------- /lib/src/configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/configuration.dart -------------------------------------------------------------------------------- /lib/src/debug.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/debug.dart -------------------------------------------------------------------------------- /lib/src/document.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/document.dart -------------------------------------------------------------------------------- /lib/src/documents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/documents.dart -------------------------------------------------------------------------------- /lib/src/exceptions/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/exceptions.dart -------------------------------------------------------------------------------- /lib/src/exceptions/import_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/import_error.dart -------------------------------------------------------------------------------- /lib/src/exceptions/missing_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/missing_configuration.dart -------------------------------------------------------------------------------- /lib/src/exceptions/request_exceptions/http_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/request_exceptions/http_error.dart -------------------------------------------------------------------------------- /lib/src/exceptions/request_exceptions/object_already_exists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/request_exceptions/object_already_exists.dart -------------------------------------------------------------------------------- /lib/src/exceptions/request_exceptions/object_not_found.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/request_exceptions/object_not_found.dart -------------------------------------------------------------------------------- /lib/src/exceptions/request_exceptions/object_unprocessable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/request_exceptions/object_unprocessable.dart -------------------------------------------------------------------------------- /lib/src/exceptions/request_exceptions/request_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/request_exceptions/request_exception.dart -------------------------------------------------------------------------------- /lib/src/exceptions/request_exceptions/request_malformed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/request_exceptions/request_malformed.dart -------------------------------------------------------------------------------- /lib/src/exceptions/request_exceptions/request_unauthorized.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/request_exceptions/request_unauthorized.dart -------------------------------------------------------------------------------- /lib/src/exceptions/request_exceptions/server_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/request_exceptions/server_error.dart -------------------------------------------------------------------------------- /lib/src/exceptions/typesense_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/exceptions/typesense_exception.dart -------------------------------------------------------------------------------- /lib/src/health.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/health.dart -------------------------------------------------------------------------------- /lib/src/key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/key.dart -------------------------------------------------------------------------------- /lib/src/keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/keys.dart -------------------------------------------------------------------------------- /lib/src/metrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/metrics.dart -------------------------------------------------------------------------------- /lib/src/models/field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/models/field.dart -------------------------------------------------------------------------------- /lib/src/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/models/models.dart -------------------------------------------------------------------------------- /lib/src/models/node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/models/node.dart -------------------------------------------------------------------------------- /lib/src/models/schema.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/models/schema.dart -------------------------------------------------------------------------------- /lib/src/multi_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/multi_search.dart -------------------------------------------------------------------------------- /lib/src/operations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/operations.dart -------------------------------------------------------------------------------- /lib/src/override.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/override.dart -------------------------------------------------------------------------------- /lib/src/overrides.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/overrides.dart -------------------------------------------------------------------------------- /lib/src/preset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/preset.dart -------------------------------------------------------------------------------- /lib/src/presets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/presets.dart -------------------------------------------------------------------------------- /lib/src/search_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/search_client.dart -------------------------------------------------------------------------------- /lib/src/services/api_call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/services/api_call.dart -------------------------------------------------------------------------------- /lib/src/services/base_api_call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/services/base_api_call.dart -------------------------------------------------------------------------------- /lib/src/services/collections_api_call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/services/collections_api_call.dart -------------------------------------------------------------------------------- /lib/src/services/documents_api_call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/services/documents_api_call.dart -------------------------------------------------------------------------------- /lib/src/services/node_pool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/services/node_pool.dart -------------------------------------------------------------------------------- /lib/src/services/request_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/services/request_cache.dart -------------------------------------------------------------------------------- /lib/src/stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/stats.dart -------------------------------------------------------------------------------- /lib/src/synonym.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/synonym.dart -------------------------------------------------------------------------------- /lib/src/synonyms.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/src/synonyms.dart -------------------------------------------------------------------------------- /lib/typesense.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/lib/typesense.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/alias_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/alias_test.dart -------------------------------------------------------------------------------- /test/aliases_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/aliases_test.dart -------------------------------------------------------------------------------- /test/client_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/client_test.dart -------------------------------------------------------------------------------- /test/collection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/collection_test.dart -------------------------------------------------------------------------------- /test/collections_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/collections_test.dart -------------------------------------------------------------------------------- /test/configuration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/configuration_test.dart -------------------------------------------------------------------------------- /test/debug_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/debug_test.dart -------------------------------------------------------------------------------- /test/document_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/document_test.dart -------------------------------------------------------------------------------- /test/documents_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/documents_test.dart -------------------------------------------------------------------------------- /test/exceptions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/exceptions_test.dart -------------------------------------------------------------------------------- /test/health_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/health_test.dart -------------------------------------------------------------------------------- /test/key_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/key_test.dart -------------------------------------------------------------------------------- /test/keys_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/keys_test.dart -------------------------------------------------------------------------------- /test/metrics_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/metrics_test.dart -------------------------------------------------------------------------------- /test/models/field_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/models/field_test.dart -------------------------------------------------------------------------------- /test/models/node_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/models/node_test.dart -------------------------------------------------------------------------------- /test/models/schema_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/models/schema_test.dart -------------------------------------------------------------------------------- /test/multi_search_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/multi_search_test.dart -------------------------------------------------------------------------------- /test/operations_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/operations_test.dart -------------------------------------------------------------------------------- /test/override_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/override_test.dart -------------------------------------------------------------------------------- /test/overrides_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/overrides_test.dart -------------------------------------------------------------------------------- /test/search_client_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/search_client_test.dart -------------------------------------------------------------------------------- /test/services/api_call_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/services/api_call_test.dart -------------------------------------------------------------------------------- /test/services/collections_api_call_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/services/collections_api_call_test.dart -------------------------------------------------------------------------------- /test/services/documents_api_call_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/services/documents_api_call_test.dart -------------------------------------------------------------------------------- /test/services/node_pool_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/services/node_pool_test.dart -------------------------------------------------------------------------------- /test/services/request_cache_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/services/request_cache_test.dart -------------------------------------------------------------------------------- /test/stats_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/stats_test.dart -------------------------------------------------------------------------------- /test/synonym_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/synonym_test.dart -------------------------------------------------------------------------------- /test/synonyms_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/synonyms_test.dart -------------------------------------------------------------------------------- /test/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesense/typesense-dart/HEAD/test/test_utils.dart --------------------------------------------------------------------------------