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

Functions Codable after sharing implementation with RTDB #9091

Merged
merged 7 commits into from
Dec 16, 2021

Commits on Dec 15, 2021

  1. Configuration menu
    Copy the full SHA
    e9252d2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aea5e89 View commit details
    Browse the repository at this point in the history
  3. Make HPPS Callable Functions callable like a plain Swift function

    Example:
    
    let greeter = functions.httpsCallable("greeter",
                                                                    requestType: GreetingRequest.self,
                                                                    responseType: GreetingResponse.self)
    let result = try await greeter(data)
    print(result.greeting)
    
    Signed-off-by: Peter Friese <peter@peterfriese.de>
    peterfriese authored and paulb777 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    694760b View commit details
    Browse the repository at this point in the history
  4. Allow caller to use type inferrence when calling HTTPSCallable functions

    Signed-off-by: Peter Friese <peter@peterfriese.de>
    peterfriese authored and paulb777 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    ee57ffe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ac4df1f View commit details
    Browse the repository at this point in the history
  6. Review updates

    paulb777 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    f80e467 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2021

  1. Configuration menu
    Copy the full SHA
    cdab605 View commit details
    Browse the repository at this point in the history