Skip to content
New issue

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

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

Already on GitHub? # to your account

fix(swift): appID casing #2711

Merged
merged 1 commit into from
Feb 15, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ import Foundation

public protocol Credentials {
/// ApplicationID to target. Is passed as a HTTP header.
var appId: String { get }
var appID: String { get }

/**
* APIKey for a given ApplicationID. Is passed as a HTTP header.
* To maintain security, never use your Admin APIKey on your front end or share it with anyone.
* In your front end, use the Search-only APIKey or any other key that has search-only rights.
*/
/// APIKey for a given ApplicationID. Is passed as a HTTP header.
/// To maintain security, never use your Admin APIKey on your front end or share it with anyone.
/// In your front end, use the Search-only APIKey or any other key that has search-only rights.
var apiKey: String { get }
}
Loading