Itai Edri

Results 9 issues of Itai Edri

I am integrating firebase auth. The service working is catching the `__/auth` requests and don't pass them on. How can I exclude it from catching those requests? I tried to...

### Current Behavior Running `yarn tsc` works while running `yarn build` fails with various typescript errors. Here is one for example: ``` $ yarn build @rollup/plugin-replace: 'preventAssignment' currently defaults to...

### Describe the bug ```typescript event.type === "payment_intent.created" // correct event.type === "payment_intent.not_exist_type" // incorrect - should not compile ``` The `Event` interface `type` field should be string literals instead...

bug
future
feature-request

### Is your feature request related to a problem? Please describe. Working with multiple currencies is difficult since there are zero decimal currencies. We have to create and calculate the...

future
feature-request

I have this problem with `Generic` types: ```python from typing import Generic, TypeVar T = TypeVar("T") @dataclass_json @dataclass class ClassB: name: str @dataclass_json @dataclass class ClassA(Generic[T]): data: T ClassA.from_json(ClassA(data=ClassB(name="name")).to_json()) #...

triage

Does this library handle nested models (joins) in a single query from the server to the DB? For example ``` user { id posts { id } } ```

The current implementation hides the `details` field of the error. This PR fixes the limitation by building the error from `details` instead of `details.description`.

I'm trying to use this library, but I get the following error: ``` java.lang.IllegalArgumentException: db-spec xchange.data.user_test$eval27076$reify__27077@6ea22666 is missing a required parameter at clojure.java.jdbc$get_connection.invokeStatic (jdbc.clj:379) clojure.java.jdbc$get_connection.invoke (jdbc.clj:226) clojure.java.jdbc$insert_rows_BANG_.invokeStatic (jdbc.clj:1301) ``` ```clojure...

Hello, I'm using `sequelize` as my ORM for a small web app I'm writing as a hobby. After modeling my data and creating the objects, I noticed that a view...

type: feature