FRE-651: CEO coordination notes for founder bio/headshot assets

This commit is contained in:
2026-04-26 07:41:45 -04:00
parent 3d5ff8650c
commit 5f4eb60a98
476 changed files with 67971 additions and 125 deletions

View File

@@ -0,0 +1,22 @@
import type { CreateBackendApiOptions, Organization, Session, User } from '../api';
import type { AuthObject } from '../tokens/authObjects';
type DecorateAuthWithResourcesOptions = {
loadSession?: boolean;
loadUser?: boolean;
loadOrganization?: boolean;
};
type WithResources<T> = T & {
session?: Session | null;
user?: User | null;
organization?: Organization | null;
};
/**
* @internal
*/
export declare const decorateObjectWithResources: <T extends object>(obj: T, authObj: AuthObject, opts: CreateBackendApiOptions & DecorateAuthWithResourcesOptions) => Promise<WithResources<T>>;
/**
* @internal
*/
export declare function stripPrivateDataFromObject<T extends WithResources<object>>(authObject: T): T;
export {};
//# sourceMappingURL=decorateObjectWithResources.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"decorateObjectWithResources.d.ts","sourceRoot":"","sources":["../../src/util/decorateObjectWithResources.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,YAAY,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAEnF,OAAO,KAAK,EAAE,UAAU,EAA2C,MAAM,uBAAuB,CAAC;AAEjG,KAAK,gCAAgC,GAAG;IACtC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B,CAAC;AAEF,KAAK,aAAa,CAAC,CAAC,IAAI,CAAC,GAAG;IAC1B,OAAO,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACzB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB,YAAY,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;CACpC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,2BAA2B,GAAU,CAAC,SAAS,MAAM,EAChE,KAAK,CAAC,EACN,SAAS,UAAU,EACnB,MAAM,uBAAuB,GAAG,gCAAgC,KAC/D,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC,CAkB1B,CAAC;AAEF;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,CAAC,SAAS,aAAa,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,CAAC,GAAG,CAAC,CAM5F"}

View File

@@ -0,0 +1,2 @@
export declare function mergePreDefinedOptions<T extends Record<string, any>>(preDefinedOptions: T, options: Partial<T>): T;
//# sourceMappingURL=mergePreDefinedOptions.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"mergePreDefinedOptions.d.ts","sourceRoot":"","sources":["../../src/util/mergePreDefinedOptions.ts"],"names":[],"mappings":"AAAA,wBAAgB,sBAAsB,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAOlH"}

View File

@@ -0,0 +1,3 @@
export declare function assertValidSecretKey(val: unknown): asserts val is string;
export declare function assertValidPublishableKey(val: unknown): asserts val is string;
//# sourceMappingURL=optionsAssertions.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"optionsAssertions.d.ts","sourceRoot":"","sources":["../../src/util/optionsAssertions.ts"],"names":[],"mappings":"AAEA,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAAC,GAAG,IAAI,MAAM,CAMxE;AAED,wBAAgB,yBAAyB,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAAC,GAAG,IAAI,MAAM,CAE7E"}

4
node_modules/@clerk/backend/dist/util/path.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
type PathString = string | null | undefined;
export declare function joinPaths(...args: PathString[]): string;
export {};
//# sourceMappingURL=path.d.ts.map

1
node_modules/@clerk/backend/dist/util/path.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"path.d.ts","sourceRoot":"","sources":["../../src/util/path.ts"],"names":[],"mappings":"AAIA,KAAK,UAAU,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;AAyB5C,wBAAgB,SAAS,CAAC,GAAG,IAAI,EAAE,UAAU,EAAE,GAAG,MAAM,CAavD"}

26
node_modules/@clerk/backend/dist/util/rfc4648.d.ts generated vendored Normal file
View File

@@ -0,0 +1,26 @@
/**
* The base64url helper was extracted from the rfc4648 package
* in order to resolve CSJ/ESM interoperability issues
*
* https://github.com/swansontec/rfc4648.js
*
* For more context please refer to:
* - https://github.com/evanw/esbuild/issues/1719
* - https://github.com/evanw/esbuild/issues/532
* - https://github.com/swansontec/rollup-plugin-mjs-entry
*/
export declare const base64url: {
parse(string: string, opts?: ParseOptions): Uint8Array;
stringify(data: ArrayLike<number>, opts?: StringifyOptions): string;
};
interface ParseOptions {
loose?: boolean;
out?: new (size: number) => {
[index: number]: number;
};
}
interface StringifyOptions {
pad?: boolean;
}
export {};
//# sourceMappingURL=rfc4648.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"rfc4648.d.ts","sourceRoot":"","sources":["../../src/util/rfc4648.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,eAAO,MAAM,SAAS;kBACN,MAAM,SAAS,YAAY,GAAG,UAAU;oBAItC,SAAS,CAAC,MAAM,CAAC,SAAS,gBAAgB,GAAG,MAAM;CAGpE,CAAC;AAaF,UAAU,YAAY;IACpB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,GAAG,CAAC,EAAE,KAAK,IAAI,EAAE,MAAM,KAAK;QAAE,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;CACzD;AAED,UAAU,gBAAgB;IACxB,GAAG,CAAC,EAAE,OAAO,CAAC;CACf"}

7
node_modules/@clerk/backend/dist/util/shared.d.ts generated vendored Normal file
View File

@@ -0,0 +1,7 @@
export { deprecated, deprecatedProperty } from '@clerk/shared/deprecated';
export { getCookieSuffix, getSuffixedCookieName, isDevelopmentFromSecretKey, isProductionFromSecretKey, parsePublishableKey, } from '@clerk/shared/keys';
export { retry } from '@clerk/shared/retry';
export { addClerkPrefix, getClerkJsMajorVersionOrTag, getScriptUrl } from '@clerk/shared/url';
export declare const errorThrower: import("@clerk/shared/index-gwPUTb24").rr;
export declare const isDevOrStagingUrl: (url: string | URL) => boolean;
//# sourceMappingURL=shared.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../src/util/shared.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC1E,OAAO,EACL,eAAe,EACf,qBAAqB,EACrB,0BAA0B,EAC1B,yBAAyB,EACzB,mBAAmB,GACpB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,2BAA2B,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAK9F,eAAO,MAAM,YAAY,2CAAuD,CAAC;AAEjF,eAAO,MAAQ,iBAAiB,gCAAiC,CAAC"}