Guilherme Sehn
Guilherme Sehn
Adds support for passing the private key as a string instead of a file path. Solves issue https://github.com/Techofficer/node-apple-signin/issues/4
Makes `redirectUri` optional on `getAuthorizationToken`, as this information is not available for authentication happening natively on an iOS app. Solves issue #6
The `getAuthorizationToken` function expects a `redirectUri`. If it's not supplied, it throws an error with the message `redirectUri is empty`. While passing the `redirectUri` is required when doing sign in...
In order to deploy an app to Heroku or other PaaS, an app must be implemented using the [twelve-factor methodology](https://12factor.net/), which among other things, says that we shouldn't store credentials...
Is there a way to access object properties using brackets? Currently, it seems there's no way to access an object property that has spaces on its name. e.g. ``` let...
I was looking the [`Template.push` definition](https://github.com/walletpass/pass-js/blob/21d411d6b5244ffe1a40db038b00909b6f5c3ca5/src/template.ts#L285) and noticed that it uses an `apn` variable on the instance and there's some sort of lifecycle management for creating and destroying it. I'm...
**Describe the question** The [gRPC core concepts docs](https://grpc.io/docs/what-is-grpc/core-concepts/#channels) page says that a gRPC channel can receive arguments: > A gRPC channel provides a connection to a gRPC server on a...
Hello! First of all, thanks so much for building this project. I've always wanted to have this kind of template in Ruby/Rails, and it's amazing to see this library implementing...
Fixes https://github.com/vercel/edge-runtime/issues/952 Removes access to global `Buffer` variable from Node when using `@edge-runtime/jest-environment`. `Buffer` will not be available in production when using the edge runtime, so it should also be...
## Bug Report The `@edge-runtime/jest-environment` package allows simulating the Edge runtime when running Jest in a node environment, so it should not allow access to node apis such as `Buffer`....