Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(swift): last missing helpers #2764

Merged
merged 19 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
chore: replace generated files with hand written one in their own dir…
…ectory
  • Loading branch information
Fluf22 committed Feb 26, 2024
commit 1092b5f95de15efc4bb96f99fa679ee634b9142a
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// APIKeyOperation.swift
//
//
// Created by Algolia on 26/02/2024.
//

import Foundation

public enum ApiKeyOperation: String {
case add
case update
case delete
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// ReplaceAllObjectsResponse.swift
//
//
// Created by Algolia on 26/02/2024.
//

import Foundation

public struct ReplaceAllObjectsResponse {
let copyOperationResponse: UpdatedAtResponse
let batchResponses: [BatchResponse]
let moveOperationResponse: UpdatedAtResponse
}
Loading
Loading