Adam Stoffel

Results 6 issues of Adam Stoffel

Anyone looking to configure a SAML relying party app should follow the publicly-accessible docs. This repository contains code which demonstrates older, deprecated methods of settting up SAML SP apps.

### Environment * PostgreSQL version: 15.1 * PostgREST version: 11.2.0 * Operating system: Ubuntu - supabase image ### Description of issue Postgrest is unable to determine relationship between user-defined type...

embedding
idea

## Icon Request * Icon name: Drag handle * Use case: A "textured" area which encourages the user to grab and drag (e.g. a row in a table, or a...

icon request

### What happened? ## Steps to Reproduce Attempt to use `LoggerProvider()` without any custom configuration parameter in a Next.js edge function which relies on calling `utils.merge()` which eventually invokes the...

bug
priority:p2
pkg:sdk-logs

In a class that uses both constructor parameter decorators and property decorators such as: ```ts class MyClass { constructor( @serializable(alias('b')) public b: string ) { } @serializable public a?: string;...

Attempting to use the `@serializable` decorator on a constructor parameter fails TS typechecking. ![image](https://user-images.githubusercontent.com/2475873/149432623-95430cc4-ed74-4c32-a9f9-a381673e5bf3.png) An additional type overload is necessary: ```ts export function serializable( propSchema: PropSchema ): (target: Object, key:...