File tree Expand file tree Collapse file tree
lib/open_api_typesense/operations Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -129,6 +129,10 @@ jobs:
129129 run : mix format --check-formatted
130130 if : ${{ matrix.lint }}
131131
132+ - name : Dialyzer
133+ run : mix dialyzer
134+ if : ${{ matrix.lint && github.event_name == 'push' && github.ref == 'refs/heads/main' }}
135+
132136 - name : Run tests
133137 run : mix test --only ${{ matrix.typesense }}:true --trace
134138
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ defmodule OpenApiTypesense.Documents do
245245
246246 """
247247 @ doc since: "0.4.0"
248- @ spec import_documents ( String . t ( ) , String . t ( ) , keyword ) ::
248+ @ spec import_documents ( String . t ( ) , list ( map ( ) ) , keyword ) ::
249249 { :ok , String . t ( ) } | { :error , OpenApiTypesense.ApiResponse . t ( ) }
250250 def import_documents ( collectionName , body , opts \\ [ ] ) do
251251 client = opts [ :client ] || @ default_client
You can’t perform that action at this time.
0 commit comments