Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions scripts/buildLanguages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,7 @@ async function buildLanguage(language: Language, gens: Generator[], buildType: B
await run('dotnet build --configuration Release', { cwd, language });
break;
case 'dart':
if (buildType !== 'snippets') {
// fix the snippets at some point
await run('dart pub get && dart analyze', { cwd, language });
}
await run('dart pub get && dart analyze', { cwd, language });
break;
case 'go':
await run('go build -o /dev/null ./...', { cwd, language });
Expand Down
11 changes: 11 additions & 0 deletions specs/search/helpers/deleteObjects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ method:
x-helper: true
tags:
- Records
x-available-languages:
- csharp
- go
- java
- javascript
- kotlin
- php
- python
- ruby
- scala
- swift
operationId: deleteObjects
summary: Deletes every records for the given objectIDs
description: |
Expand Down
11 changes: 11 additions & 0 deletions specs/search/helpers/generateSecuredApiKey.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ method:
x-asynchronous-helper: false
tags:
- Api Keys
x-available-languages:
- csharp
- go
- java
- javascript
- kotlin
- php
- python
- ruby
- scala
- swift
operationId: generateSecuredApiKey
summary: Create secured API keys
description: |
Expand Down
11 changes: 11 additions & 0 deletions specs/search/helpers/indexExists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ method:
x-helper: true
tags:
- Index
x-available-languages:
- csharp
- go
- java
- javascript
- kotlin
- php
- python
- ruby
- scala
- swift
operationId: indexExists
summary: Check if an index exists or not
description: |
Expand Down
11 changes: 11 additions & 0 deletions specs/search/helpers/partialUpdateObjects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ method:
x-helper: true
tags:
- Records
x-available-languages:
- csharp
- go
- java
- javascript
- kotlin
- php
- python
- ruby
- scala
- swift
operationId: partialUpdateObjects
summary: Replaces object content of all the given objects according to their respective `objectID` field
description: |
Expand Down
11 changes: 11 additions & 0 deletions specs/search/helpers/replaceAllObjects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ method:
x-helper: true
tags:
- Records
x-available-languages:
- csharp
- go
- java
- javascript
- kotlin
- php
- python
- ruby
- scala
- swift
operationId: replaceAllObjects
summary: Replace all records in an index
description: |
Expand Down
11 changes: 11 additions & 0 deletions specs/search/helpers/saveObjects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ method:
x-helper: true
tags:
- Records
x-available-languages:
- csharp
- go
- java
- javascript
- kotlin
- php
- python
- ruby
- scala
- swift
operationId: saveObjects
summary: Saves the given array of objects in the given index
description: |
Expand Down
11 changes: 11 additions & 0 deletions specs/search/helpers/waitForApiKey.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ method:
x-helper: true
tags:
- Api Keys
x-available-languages:
- csharp
- go
- java
- javascript
- kotlin
- php
- python
- ruby
- scala
- swift
operationId: waitForApiKey
summary: Wait for an API key operation
description: Waits for an API key to be added, updated, or deleted.
Expand Down
11 changes: 11 additions & 0 deletions specs/search/helpers/waitForAppTask.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
method:
get:
x-helper: true
x-available-languages:
- csharp
- go
- java
- javascript
- kotlin
- php
- python
- ruby
- scala
- swift
operationId: waitForAppTask
summary: Wait for application-level operation to complete
description: Wait for a application-level task to complete.
Expand Down
12 changes: 12 additions & 0 deletions specs/search/helpers/waitForTask.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ method:
x-helper: true
tags:
- Records
# it's called waitTask in dart
x-available-languages:
- csharp
- go
- java
- javascript
- kotlin
- php
- python
- ruby
- scala
- swift
operationId: waitForTask
summary: Wait for operation to complete
description: |
Expand Down
1 change: 1 addition & 0 deletions templates/dart/snippets/method.mustache
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// {{generationBanner}}
// ignore_for_file: unused_local_variable
// >IMPORT
{{> snippets/import}}
// IMPORT<
Expand Down
Loading