@stackframe/js 2.7.22 → 2.7.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +2 -2
  3. package/dist/esm/lib/stack-app/apps/implementations/client-app-impl.js +6 -10
  4. package/dist/esm/lib/stack-app/apps/implementations/client-app-impl.js.map +1 -1
  5. package/dist/esm/lib/stack-app/apps/implementations/common.js +1 -1
  6. package/dist/esm/lib/stack-app/apps/implementations/common.js.map +1 -1
  7. package/dist/esm/lib/stack-app/users/index.js.map +1 -1
  8. package/dist/index.d.mts +746 -23
  9. package/dist/index.d.ts +746 -23
  10. package/dist/lib/stack-app/apps/implementations/client-app-impl.js +5 -9
  11. package/dist/lib/stack-app/apps/implementations/client-app-impl.js.map +1 -1
  12. package/dist/lib/stack-app/apps/implementations/common.js +1 -1
  13. package/dist/lib/stack-app/apps/implementations/common.js.map +1 -1
  14. package/dist/lib/stack-app/users/index.js.map +1 -1
  15. package/package.json +2 -2
  16. package/dist/admin-app-impl-Co__PI-r.d.ts +0 -357
  17. package/dist/admin-app-impl-s-tPjfRz.d.mts +0 -357
  18. package/dist/index-COYzPcGI.d.mts +0 -526
  19. package/dist/index-CueS5Qbi.d.ts +0 -526
  20. package/dist/lib/auth.d.mts +0 -33
  21. package/dist/lib/auth.d.ts +0 -33
  22. package/dist/lib/cookie.d.mts +0 -33
  23. package/dist/lib/cookie.d.ts +0 -33
  24. package/dist/lib/stack-app/api-keys/index.d.mts +0 -40
  25. package/dist/lib/stack-app/api-keys/index.d.ts +0 -40
  26. package/dist/lib/stack-app/apps/implementations/admin-app-impl.d.mts +0 -30
  27. package/dist/lib/stack-app/apps/implementations/admin-app-impl.d.ts +0 -30
  28. package/dist/lib/stack-app/apps/implementations/client-app-impl.d.mts +0 -30
  29. package/dist/lib/stack-app/apps/implementations/client-app-impl.d.ts +0 -30
  30. package/dist/lib/stack-app/apps/implementations/common.d.mts +0 -44
  31. package/dist/lib/stack-app/apps/implementations/common.d.ts +0 -44
  32. package/dist/lib/stack-app/apps/implementations/index.d.mts +0 -36
  33. package/dist/lib/stack-app/apps/implementations/index.d.ts +0 -36
  34. package/dist/lib/stack-app/apps/implementations/server-app-impl.d.mts +0 -30
  35. package/dist/lib/stack-app/apps/implementations/server-app-impl.d.ts +0 -30
  36. package/dist/lib/stack-app/apps/index.d.mts +0 -23
  37. package/dist/lib/stack-app/apps/index.d.ts +0 -23
  38. package/dist/lib/stack-app/apps/interfaces/admin-app.d.mts +0 -23
  39. package/dist/lib/stack-app/apps/interfaces/admin-app.d.ts +0 -23
  40. package/dist/lib/stack-app/apps/interfaces/client-app.d.mts +0 -23
  41. package/dist/lib/stack-app/apps/interfaces/client-app.d.ts +0 -23
  42. package/dist/lib/stack-app/apps/interfaces/server-app.d.mts +0 -23
  43. package/dist/lib/stack-app/apps/interfaces/server-app.d.ts +0 -23
  44. package/dist/lib/stack-app/common.d.mts +0 -61
  45. package/dist/lib/stack-app/common.d.ts +0 -61
  46. package/dist/lib/stack-app/connected-accounts/index.d.mts +0 -10
  47. package/dist/lib/stack-app/connected-accounts/index.d.ts +0 -10
  48. package/dist/lib/stack-app/contact-channels/index.d.mts +0 -38
  49. package/dist/lib/stack-app/contact-channels/index.d.ts +0 -38
  50. package/dist/lib/stack-app/email-templates/index.d.mts +0 -15
  51. package/dist/lib/stack-app/email-templates/index.d.ts +0 -15
  52. package/dist/lib/stack-app/index.d.mts +0 -23
  53. package/dist/lib/stack-app/index.d.ts +0 -23
  54. package/dist/lib/stack-app/permissions/index.d.mts +0 -21
  55. package/dist/lib/stack-app/permissions/index.d.ts +0 -21
  56. package/dist/lib/stack-app/project-configs/index.d.mts +0 -82
  57. package/dist/lib/stack-app/project-configs/index.d.ts +0 -82
  58. package/dist/lib/stack-app/projects/index.d.mts +0 -23
  59. package/dist/lib/stack-app/projects/index.d.ts +0 -23
  60. package/dist/lib/stack-app/teams/index.d.mts +0 -23
  61. package/dist/lib/stack-app/teams/index.d.ts +0 -23
  62. package/dist/lib/stack-app/users/index.d.mts +0 -23
  63. package/dist/lib/stack-app/users/index.d.ts +0 -23
  64. package/dist/utils/url.d.mts +0 -3
  65. package/dist/utils/url.d.ts +0 -3
@@ -1,40 +0,0 @@
1
- import { ApiKeyCreateCrudRequest } from '@stackframe/stack-shared/dist/interface/adminInterface';
2
- import { ApiKeysCrud } from '@stackframe/stack-shared/dist/interface/crud/api-keys';
3
-
4
- type ApiKeyBase = {
5
- id: string;
6
- description: string;
7
- expiresAt: Date;
8
- manuallyRevokedAt: Date | null;
9
- createdAt: Date;
10
- isValid(): boolean;
11
- whyInvalid(): "expired" | "manually-revoked" | null;
12
- revoke(): Promise<void>;
13
- };
14
- type ApiKeyBaseCrudRead = Pick<ApiKeysCrud["Admin"]["Read"], "id" | "created_at_millis" | "description" | "expires_at_millis" | "manually_revoked_at_millis">;
15
- type ApiKeyFirstView = {
16
- publishableClientKey?: string;
17
- secretServerKey?: string;
18
- superSecretAdminKey?: string;
19
- } & ApiKeyBase;
20
- type ApiKey = {
21
- publishableClientKey: null | {
22
- lastFour: string;
23
- };
24
- secretServerKey: null | {
25
- lastFour: string;
26
- };
27
- superSecretAdminKey: null | {
28
- lastFour: string;
29
- };
30
- } & ApiKeyBase;
31
- type ApiKeyCreateOptions = {
32
- description: string;
33
- expiresAt: Date;
34
- hasPublishableClientKey: boolean;
35
- hasSecretServerKey: boolean;
36
- hasSuperSecretAdminKey: boolean;
37
- };
38
- declare function apiKeyCreateOptionsToCrud(options: ApiKeyCreateOptions): ApiKeyCreateCrudRequest;
39
-
40
- export { type ApiKey, type ApiKeyBase, type ApiKeyBaseCrudRead, type ApiKeyCreateOptions, type ApiKeyFirstView, apiKeyCreateOptionsToCrud };
@@ -1,40 +0,0 @@
1
- import { ApiKeyCreateCrudRequest } from '@stackframe/stack-shared/dist/interface/adminInterface';
2
- import { ApiKeysCrud } from '@stackframe/stack-shared/dist/interface/crud/api-keys';
3
-
4
- type ApiKeyBase = {
5
- id: string;
6
- description: string;
7
- expiresAt: Date;
8
- manuallyRevokedAt: Date | null;
9
- createdAt: Date;
10
- isValid(): boolean;
11
- whyInvalid(): "expired" | "manually-revoked" | null;
12
- revoke(): Promise<void>;
13
- };
14
- type ApiKeyBaseCrudRead = Pick<ApiKeysCrud["Admin"]["Read"], "id" | "created_at_millis" | "description" | "expires_at_millis" | "manually_revoked_at_millis">;
15
- type ApiKeyFirstView = {
16
- publishableClientKey?: string;
17
- secretServerKey?: string;
18
- superSecretAdminKey?: string;
19
- } & ApiKeyBase;
20
- type ApiKey = {
21
- publishableClientKey: null | {
22
- lastFour: string;
23
- };
24
- secretServerKey: null | {
25
- lastFour: string;
26
- };
27
- superSecretAdminKey: null | {
28
- lastFour: string;
29
- };
30
- } & ApiKeyBase;
31
- type ApiKeyCreateOptions = {
32
- description: string;
33
- expiresAt: Date;
34
- hasPublishableClientKey: boolean;
35
- hasSecretServerKey: boolean;
36
- hasSuperSecretAdminKey: boolean;
37
- };
38
- declare function apiKeyCreateOptionsToCrud(options: ApiKeyCreateOptions): ApiKeyCreateCrudRequest;
39
-
40
- export { type ApiKey, type ApiKeyBase, type ApiKeyBaseCrudRead, type ApiKeyCreateOptions, type ApiKeyFirstView, apiKeyCreateOptionsToCrud };
@@ -1,30 +0,0 @@
1
- import '@stackframe/stack-shared/dist/sessions';
2
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
3
- import '../../../../index-COYzPcGI.mjs';
4
- import '../../common.mjs';
5
- import '@stackframe/stack-shared';
6
- import '@stackframe/stack-shared/dist/utils/results';
7
- import '../../permissions/index.mjs';
8
- import '@stackframe/stack-shared/dist/interface/adminInterface';
9
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
10
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
11
- import '@stackframe/stack-shared/dist/interface/crud/projects';
12
- import '../../api-keys/index.mjs';
13
- import '../../email-templates/index.mjs';
14
- export { _ as _StackAdminAppImplIncomplete } from '../../../../admin-app-impl-s-tPjfRz.mjs';
15
- import '../../project-configs/index.mjs';
16
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
17
- import '../../connected-accounts/index.mjs';
18
- import '../../contact-channels/index.mjs';
19
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
20
- import '@stackframe/stack-shared/dist/helpers/production-mode';
21
- import '@stackframe/stack-shared/dist/interface/crud/teams';
22
- import '@stackframe/stack-shared/dist/utils/json';
23
- import '@stackframe/stack-shared/dist/interface/crud/users';
24
- import '@stackframe/stack-shared/dist/utils/oauth';
25
- import '@stackframe/stack-shared/dist/interface/crud/team-invitation';
26
- import '@stackframe/stack-shared/dist/interface/crud/team-member-profiles';
27
- import '@stackframe/stack-shared/dist/utils/stores';
28
- import '../../../cookie.mjs';
29
- import './common.mjs';
30
- import '@stackframe/stack-shared/dist/utils/caches';
@@ -1,30 +0,0 @@
1
- import '@stackframe/stack-shared/dist/sessions';
2
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
3
- import '../../../../index-CueS5Qbi.js';
4
- import '../../common.js';
5
- import '@stackframe/stack-shared';
6
- import '@stackframe/stack-shared/dist/utils/results';
7
- import '../../permissions/index.js';
8
- import '@stackframe/stack-shared/dist/interface/adminInterface';
9
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
10
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
11
- import '@stackframe/stack-shared/dist/interface/crud/projects';
12
- import '../../api-keys/index.js';
13
- import '../../email-templates/index.js';
14
- export { _ as _StackAdminAppImplIncomplete } from '../../../../admin-app-impl-Co__PI-r.js';
15
- import '../../project-configs/index.js';
16
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
17
- import '../../connected-accounts/index.js';
18
- import '../../contact-channels/index.js';
19
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
20
- import '@stackframe/stack-shared/dist/helpers/production-mode';
21
- import '@stackframe/stack-shared/dist/interface/crud/teams';
22
- import '@stackframe/stack-shared/dist/utils/json';
23
- import '@stackframe/stack-shared/dist/interface/crud/users';
24
- import '@stackframe/stack-shared/dist/utils/oauth';
25
- import '@stackframe/stack-shared/dist/interface/crud/team-invitation';
26
- import '@stackframe/stack-shared/dist/interface/crud/team-member-profiles';
27
- import '@stackframe/stack-shared/dist/utils/stores';
28
- import '../../../cookie.js';
29
- import './common.js';
30
- import '@stackframe/stack-shared/dist/utils/caches';
@@ -1,30 +0,0 @@
1
- import '@stackframe/stack-shared/dist/sessions';
2
- export { a as _StackClientAppImplIncomplete } from '../../../../admin-app-impl-s-tPjfRz.mjs';
3
- import '@stackframe/stack-shared';
4
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
5
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
6
- import '@stackframe/stack-shared/dist/interface/crud/projects';
7
- import '@stackframe/stack-shared/dist/interface/crud/team-invitation';
8
- import '@stackframe/stack-shared/dist/interface/crud/team-member-profiles';
9
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
10
- import '@stackframe/stack-shared/dist/interface/crud/teams';
11
- import '@stackframe/stack-shared/dist/interface/crud/users';
12
- import '@stackframe/stack-shared/dist/utils/oauth';
13
- import '@stackframe/stack-shared/dist/utils/results';
14
- import '@stackframe/stack-shared/dist/utils/stores';
15
- import '../../../cookie.mjs';
16
- import '../../common.mjs';
17
- import '../../contact-channels/index.mjs';
18
- import '../../permissions/index.mjs';
19
- import '../../../../index-COYzPcGI.mjs';
20
- import './common.mjs';
21
- import '@stackframe/stack-shared/dist/interface/adminInterface';
22
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
23
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
24
- import '../../api-keys/index.mjs';
25
- import '../../email-templates/index.mjs';
26
- import '../../project-configs/index.mjs';
27
- import '../../connected-accounts/index.mjs';
28
- import '@stackframe/stack-shared/dist/helpers/production-mode';
29
- import '@stackframe/stack-shared/dist/utils/json';
30
- import '@stackframe/stack-shared/dist/utils/caches';
@@ -1,30 +0,0 @@
1
- import '@stackframe/stack-shared/dist/sessions';
2
- export { a as _StackClientAppImplIncomplete } from '../../../../admin-app-impl-Co__PI-r.js';
3
- import '@stackframe/stack-shared';
4
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
5
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
6
- import '@stackframe/stack-shared/dist/interface/crud/projects';
7
- import '@stackframe/stack-shared/dist/interface/crud/team-invitation';
8
- import '@stackframe/stack-shared/dist/interface/crud/team-member-profiles';
9
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
10
- import '@stackframe/stack-shared/dist/interface/crud/teams';
11
- import '@stackframe/stack-shared/dist/interface/crud/users';
12
- import '@stackframe/stack-shared/dist/utils/oauth';
13
- import '@stackframe/stack-shared/dist/utils/results';
14
- import '@stackframe/stack-shared/dist/utils/stores';
15
- import '../../../cookie.js';
16
- import '../../common.js';
17
- import '../../contact-channels/index.js';
18
- import '../../permissions/index.js';
19
- import '../../../../index-CueS5Qbi.js';
20
- import './common.js';
21
- import '@stackframe/stack-shared/dist/interface/adminInterface';
22
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
23
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
24
- import '../../api-keys/index.js';
25
- import '../../email-templates/index.js';
26
- import '../../project-configs/index.js';
27
- import '../../connected-accounts/index.js';
28
- import '@stackframe/stack-shared/dist/helpers/production-mode';
29
- import '@stackframe/stack-shared/dist/utils/json';
30
- import '@stackframe/stack-shared/dist/utils/caches';
@@ -1,44 +0,0 @@
1
- import { InternalSession } from '@stackframe/stack-shared/dist/sessions';
2
- import { AsyncCache } from '@stackframe/stack-shared/dist/utils/caches';
3
- import { Result } from '@stackframe/stack-shared/dist/utils/results';
4
- import { Store } from '@stackframe/stack-shared/dist/utils/stores';
5
- import { HandlerUrls } from '../../common.mjs';
6
- import '@stackframe/stack-shared/dist/utils/oauth';
7
-
8
- declare const clientVersion = "STACK_COMPILE_TIME_CLIENT_PACKAGE_VERSION_SENTINEL";
9
- declare const createCache: <D extends any[], T>(fetcher: (dependencies: D) => Promise<T>) => AsyncCache<D, Result<T>>;
10
- declare const createCacheBySession: <D extends any[], T>(fetcher: (session: InternalSession, extraDependencies: D) => Promise<T>) => AsyncCache<[InternalSession, ...D], Result<T>>;
11
- declare function getUrls(partial: Partial<HandlerUrls>): HandlerUrls;
12
- declare function getDefaultProjectId(): any;
13
- declare function getDefaultPublishableClientKey(): any;
14
- declare function getDefaultSecretServerKey(): any;
15
- declare function getDefaultSuperSecretAdminKey(): any;
16
- /**
17
- * Returns the base URL for the Stack API.
18
- *
19
- * The URL can be specified in several ways, in order of precedence:
20
- * 1. Directly through userSpecifiedBaseUrl parameter as string or browser/server object
21
- * 2. Through environment variables:
22
- * - Browser: NEXT_PUBLIC_BROWSER_STACK_API_URL
23
- * - Server: NEXT_PUBLIC_SERVER_STACK_API_URL
24
- * - Fallback: NEXT_PUBLIC_STACK_API_URL or NEXT_PUBLIC_STACK_URL
25
- * 3. Default base URL if none of the above are specified
26
- *
27
- * The function also ensures the URL doesn't end with a trailing slash
28
- * by removing it if present.
29
- *
30
- * @param userSpecifiedBaseUrl - Optional URL override as string or {browser, server} object
31
- * @returns The configured base URL without trailing slash
32
-
33
- */
34
- declare function getBaseUrl(userSpecifiedBaseUrl: string | {
35
- browser: string;
36
- server: string;
37
- } | undefined): any;
38
- type TokenObject = {
39
- accessToken: string | null;
40
- refreshToken: string | null;
41
- };
42
- declare function createEmptyTokenStore(): Store<TokenObject>;
43
-
44
- export { type TokenObject, clientVersion, createCache, createCacheBySession, createEmptyTokenStore, getBaseUrl, getDefaultProjectId, getDefaultPublishableClientKey, getDefaultSecretServerKey, getDefaultSuperSecretAdminKey, getUrls };
@@ -1,44 +0,0 @@
1
- import { InternalSession } from '@stackframe/stack-shared/dist/sessions';
2
- import { AsyncCache } from '@stackframe/stack-shared/dist/utils/caches';
3
- import { Result } from '@stackframe/stack-shared/dist/utils/results';
4
- import { Store } from '@stackframe/stack-shared/dist/utils/stores';
5
- import { HandlerUrls } from '../../common.js';
6
- import '@stackframe/stack-shared/dist/utils/oauth';
7
-
8
- declare const clientVersion = "STACK_COMPILE_TIME_CLIENT_PACKAGE_VERSION_SENTINEL";
9
- declare const createCache: <D extends any[], T>(fetcher: (dependencies: D) => Promise<T>) => AsyncCache<D, Result<T>>;
10
- declare const createCacheBySession: <D extends any[], T>(fetcher: (session: InternalSession, extraDependencies: D) => Promise<T>) => AsyncCache<[InternalSession, ...D], Result<T>>;
11
- declare function getUrls(partial: Partial<HandlerUrls>): HandlerUrls;
12
- declare function getDefaultProjectId(): any;
13
- declare function getDefaultPublishableClientKey(): any;
14
- declare function getDefaultSecretServerKey(): any;
15
- declare function getDefaultSuperSecretAdminKey(): any;
16
- /**
17
- * Returns the base URL for the Stack API.
18
- *
19
- * The URL can be specified in several ways, in order of precedence:
20
- * 1. Directly through userSpecifiedBaseUrl parameter as string or browser/server object
21
- * 2. Through environment variables:
22
- * - Browser: NEXT_PUBLIC_BROWSER_STACK_API_URL
23
- * - Server: NEXT_PUBLIC_SERVER_STACK_API_URL
24
- * - Fallback: NEXT_PUBLIC_STACK_API_URL or NEXT_PUBLIC_STACK_URL
25
- * 3. Default base URL if none of the above are specified
26
- *
27
- * The function also ensures the URL doesn't end with a trailing slash
28
- * by removing it if present.
29
- *
30
- * @param userSpecifiedBaseUrl - Optional URL override as string or {browser, server} object
31
- * @returns The configured base URL without trailing slash
32
-
33
- */
34
- declare function getBaseUrl(userSpecifiedBaseUrl: string | {
35
- browser: string;
36
- server: string;
37
- } | undefined): any;
38
- type TokenObject = {
39
- accessToken: string | null;
40
- refreshToken: string | null;
41
- };
42
- declare function createEmptyTokenStore(): Store<TokenObject>;
43
-
44
- export { type TokenObject, clientVersion, createCache, createCacheBySession, createEmptyTokenStore, getBaseUrl, getDefaultProjectId, getDefaultPublishableClientKey, getDefaultSecretServerKey, getDefaultSuperSecretAdminKey, getUrls };
@@ -1,36 +0,0 @@
1
- import { _ as _StackAdminAppImplIncomplete, a as _StackClientAppImplIncomplete, b as _StackServerAppImplIncomplete } from '../../../../admin-app-impl-s-tPjfRz.mjs';
2
- import '@stackframe/stack-shared/dist/sessions';
3
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
4
- import '../../../../index-COYzPcGI.mjs';
5
- import '../../project-configs/index.mjs';
6
- import '../../permissions/index.mjs';
7
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
8
- import '../../api-keys/index.mjs';
9
- import '@stackframe/stack-shared/dist/interface/adminInterface';
10
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
11
- import '../../common.mjs';
12
- import '@stackframe/stack-shared/dist/utils/oauth';
13
- import '../../connected-accounts/index.mjs';
14
- import '../../contact-channels/index.mjs';
15
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
16
- import '@stackframe/stack-shared';
17
- import '@stackframe/stack-shared/dist/utils/results';
18
- import '@stackframe/stack-shared/dist/helpers/production-mode';
19
- import '@stackframe/stack-shared/dist/interface/crud/projects';
20
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
21
- import '../../email-templates/index.mjs';
22
- import '@stackframe/stack-shared/dist/interface/crud/teams';
23
- import '@stackframe/stack-shared/dist/utils/json';
24
- import '@stackframe/stack-shared/dist/interface/crud/users';
25
- import '@stackframe/stack-shared/dist/interface/crud/team-invitation';
26
- import '@stackframe/stack-shared/dist/interface/crud/team-member-profiles';
27
- import '@stackframe/stack-shared/dist/utils/stores';
28
- import '../../../cookie.mjs';
29
- import './common.mjs';
30
- import '@stackframe/stack-shared/dist/utils/caches';
31
-
32
- declare const _StackAdminAppImpl: typeof _StackAdminAppImplIncomplete;
33
- declare const _StackClientAppImpl: typeof _StackClientAppImplIncomplete;
34
- declare const _StackServerAppImpl: typeof _StackServerAppImplIncomplete;
35
-
36
- export { _StackAdminAppImpl, _StackClientAppImpl, _StackServerAppImpl };
@@ -1,36 +0,0 @@
1
- import { _ as _StackAdminAppImplIncomplete, a as _StackClientAppImplIncomplete, b as _StackServerAppImplIncomplete } from '../../../../admin-app-impl-Co__PI-r.js';
2
- import '@stackframe/stack-shared/dist/sessions';
3
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
4
- import '../../../../index-CueS5Qbi.js';
5
- import '../../project-configs/index.js';
6
- import '../../permissions/index.js';
7
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
8
- import '../../api-keys/index.js';
9
- import '@stackframe/stack-shared/dist/interface/adminInterface';
10
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
11
- import '../../common.js';
12
- import '@stackframe/stack-shared/dist/utils/oauth';
13
- import '../../connected-accounts/index.js';
14
- import '../../contact-channels/index.js';
15
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
16
- import '@stackframe/stack-shared';
17
- import '@stackframe/stack-shared/dist/utils/results';
18
- import '@stackframe/stack-shared/dist/helpers/production-mode';
19
- import '@stackframe/stack-shared/dist/interface/crud/projects';
20
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
21
- import '../../email-templates/index.js';
22
- import '@stackframe/stack-shared/dist/interface/crud/teams';
23
- import '@stackframe/stack-shared/dist/utils/json';
24
- import '@stackframe/stack-shared/dist/interface/crud/users';
25
- import '@stackframe/stack-shared/dist/interface/crud/team-invitation';
26
- import '@stackframe/stack-shared/dist/interface/crud/team-member-profiles';
27
- import '@stackframe/stack-shared/dist/utils/stores';
28
- import '../../../cookie.js';
29
- import './common.js';
30
- import '@stackframe/stack-shared/dist/utils/caches';
31
-
32
- declare const _StackAdminAppImpl: typeof _StackAdminAppImplIncomplete;
33
- declare const _StackClientAppImpl: typeof _StackClientAppImplIncomplete;
34
- declare const _StackServerAppImpl: typeof _StackServerAppImplIncomplete;
35
-
36
- export { _StackAdminAppImpl, _StackClientAppImpl, _StackServerAppImpl };
@@ -1,30 +0,0 @@
1
- import '@stackframe/stack-shared';
2
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
3
- import '@stackframe/stack-shared/dist/interface/crud/team-invitation';
4
- import '@stackframe/stack-shared/dist/interface/crud/team-member-profiles';
5
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
6
- import '@stackframe/stack-shared/dist/interface/crud/teams';
7
- import '@stackframe/stack-shared/dist/interface/crud/users';
8
- import '@stackframe/stack-shared/dist/sessions';
9
- import '../../common.mjs';
10
- import '../../contact-channels/index.mjs';
11
- import '../../permissions/index.mjs';
12
- import '../../../../index-COYzPcGI.mjs';
13
- export { b as _StackServerAppImplIncomplete } from '../../../../admin-app-impl-s-tPjfRz.mjs';
14
- import '@stackframe/stack-shared/dist/utils/oauth';
15
- import '../../project-configs/index.mjs';
16
- import '../../api-keys/index.mjs';
17
- import '@stackframe/stack-shared/dist/interface/adminInterface';
18
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
19
- import '../../connected-accounts/index.mjs';
20
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
21
- import '@stackframe/stack-shared/dist/utils/results';
22
- import '@stackframe/stack-shared/dist/helpers/production-mode';
23
- import '@stackframe/stack-shared/dist/interface/crud/projects';
24
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
25
- import '../../email-templates/index.mjs';
26
- import '@stackframe/stack-shared/dist/utils/json';
27
- import '@stackframe/stack-shared/dist/utils/stores';
28
- import '../../../cookie.mjs';
29
- import './common.mjs';
30
- import '@stackframe/stack-shared/dist/utils/caches';
@@ -1,30 +0,0 @@
1
- import '@stackframe/stack-shared';
2
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
3
- import '@stackframe/stack-shared/dist/interface/crud/team-invitation';
4
- import '@stackframe/stack-shared/dist/interface/crud/team-member-profiles';
5
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
6
- import '@stackframe/stack-shared/dist/interface/crud/teams';
7
- import '@stackframe/stack-shared/dist/interface/crud/users';
8
- import '@stackframe/stack-shared/dist/sessions';
9
- import '../../common.js';
10
- import '../../contact-channels/index.js';
11
- import '../../permissions/index.js';
12
- import '../../../../index-CueS5Qbi.js';
13
- export { b as _StackServerAppImplIncomplete } from '../../../../admin-app-impl-Co__PI-r.js';
14
- import '@stackframe/stack-shared/dist/utils/oauth';
15
- import '../../project-configs/index.js';
16
- import '../../api-keys/index.js';
17
- import '@stackframe/stack-shared/dist/interface/adminInterface';
18
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
19
- import '../../connected-accounts/index.js';
20
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
21
- import '@stackframe/stack-shared/dist/utils/results';
22
- import '@stackframe/stack-shared/dist/helpers/production-mode';
23
- import '@stackframe/stack-shared/dist/interface/crud/projects';
24
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
25
- import '../../email-templates/index.js';
26
- import '@stackframe/stack-shared/dist/utils/json';
27
- import '@stackframe/stack-shared/dist/utils/stores';
28
- import '../../../cookie.js';
29
- import './common.js';
30
- import '@stackframe/stack-shared/dist/utils/caches';
@@ -1,23 +0,0 @@
1
- export { X as StackAdminApp, Y as StackAdminAppConstructor, q as StackAdminAppConstructorOptions, a as StackClientApp, a0 as StackClientAppConstructor, S as StackClientAppConstructorOptions, h as StackClientAppJson, V as StackServerApp, W as StackServerAppConstructor, i as StackServerAppConstructorOptions } from '../../../index-COYzPcGI.mjs';
2
- import '../project-configs/index.mjs';
3
- import '../permissions/index.mjs';
4
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
5
- import '../api-keys/index.mjs';
6
- import '@stackframe/stack-shared/dist/interface/adminInterface';
7
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
8
- import '../common.mjs';
9
- import '@stackframe/stack-shared/dist/utils/oauth';
10
- import '../connected-accounts/index.mjs';
11
- import '../contact-channels/index.mjs';
12
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
13
- import '@stackframe/stack-shared';
14
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
15
- import '@stackframe/stack-shared/dist/utils/results';
16
- import '@stackframe/stack-shared/dist/helpers/production-mode';
17
- import '@stackframe/stack-shared/dist/interface/crud/projects';
18
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
19
- import '@stackframe/stack-shared/dist/sessions';
20
- import '../email-templates/index.mjs';
21
- import '@stackframe/stack-shared/dist/interface/crud/teams';
22
- import '@stackframe/stack-shared/dist/utils/json';
23
- import '@stackframe/stack-shared/dist/interface/crud/users';
@@ -1,23 +0,0 @@
1
- export { X as StackAdminApp, Y as StackAdminAppConstructor, q as StackAdminAppConstructorOptions, a as StackClientApp, a0 as StackClientAppConstructor, S as StackClientAppConstructorOptions, h as StackClientAppJson, V as StackServerApp, W as StackServerAppConstructor, i as StackServerAppConstructorOptions } from '../../../index-CueS5Qbi.js';
2
- import '../project-configs/index.js';
3
- import '../permissions/index.js';
4
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
5
- import '../api-keys/index.js';
6
- import '@stackframe/stack-shared/dist/interface/adminInterface';
7
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
8
- import '../common.js';
9
- import '@stackframe/stack-shared/dist/utils/oauth';
10
- import '../connected-accounts/index.js';
11
- import '../contact-channels/index.js';
12
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
13
- import '@stackframe/stack-shared';
14
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
15
- import '@stackframe/stack-shared/dist/utils/results';
16
- import '@stackframe/stack-shared/dist/helpers/production-mode';
17
- import '@stackframe/stack-shared/dist/interface/crud/projects';
18
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
19
- import '@stackframe/stack-shared/dist/sessions';
20
- import '../email-templates/index.js';
21
- import '@stackframe/stack-shared/dist/interface/crud/teams';
22
- import '@stackframe/stack-shared/dist/utils/json';
23
- import '@stackframe/stack-shared/dist/interface/crud/users';
@@ -1,23 +0,0 @@
1
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
2
- import '@stackframe/stack-shared/dist/sessions';
3
- import '@stackframe/stack-shared/dist/utils/results';
4
- import '../../api-keys/index.mjs';
5
- import '../../common.mjs';
6
- import '../../email-templates/index.mjs';
7
- import '../../permissions/index.mjs';
8
- export { X as StackAdminApp, Y as StackAdminAppConstructor, q as StackAdminAppConstructorOptions } from '../../../../index-COYzPcGI.mjs';
9
- import '@stackframe/stack-shared/dist/interface/adminInterface';
10
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
11
- import '@stackframe/stack-shared/dist/utils/oauth';
12
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
13
- import '../../project-configs/index.mjs';
14
- import '../../connected-accounts/index.mjs';
15
- import '../../contact-channels/index.mjs';
16
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
17
- import '@stackframe/stack-shared';
18
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
19
- import '@stackframe/stack-shared/dist/helpers/production-mode';
20
- import '@stackframe/stack-shared/dist/interface/crud/projects';
21
- import '@stackframe/stack-shared/dist/interface/crud/teams';
22
- import '@stackframe/stack-shared/dist/utils/json';
23
- import '@stackframe/stack-shared/dist/interface/crud/users';
@@ -1,23 +0,0 @@
1
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
2
- import '@stackframe/stack-shared/dist/sessions';
3
- import '@stackframe/stack-shared/dist/utils/results';
4
- import '../../api-keys/index.js';
5
- import '../../common.js';
6
- import '../../email-templates/index.js';
7
- import '../../permissions/index.js';
8
- export { X as StackAdminApp, Y as StackAdminAppConstructor, q as StackAdminAppConstructorOptions } from '../../../../index-CueS5Qbi.js';
9
- import '@stackframe/stack-shared/dist/interface/adminInterface';
10
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
11
- import '@stackframe/stack-shared/dist/utils/oauth';
12
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
13
- import '../../project-configs/index.js';
14
- import '../../connected-accounts/index.js';
15
- import '../../contact-channels/index.js';
16
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
17
- import '@stackframe/stack-shared';
18
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
19
- import '@stackframe/stack-shared/dist/helpers/production-mode';
20
- import '@stackframe/stack-shared/dist/interface/crud/projects';
21
- import '@stackframe/stack-shared/dist/interface/crud/teams';
22
- import '@stackframe/stack-shared/dist/utils/json';
23
- import '@stackframe/stack-shared/dist/interface/crud/users';
@@ -1,23 +0,0 @@
1
- import '@stackframe/stack-shared';
2
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
3
- import '@stackframe/stack-shared/dist/utils/results';
4
- import '../../common.mjs';
5
- export { a as StackClientApp, a0 as StackClientAppConstructor, S as StackClientAppConstructorOptions, h as StackClientAppJson } from '../../../../index-COYzPcGI.mjs';
6
- import '@stackframe/stack-shared/dist/utils/oauth';
7
- import '../../project-configs/index.mjs';
8
- import '../../permissions/index.mjs';
9
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
10
- import '../../api-keys/index.mjs';
11
- import '@stackframe/stack-shared/dist/interface/adminInterface';
12
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
13
- import '../../connected-accounts/index.mjs';
14
- import '../../contact-channels/index.mjs';
15
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
16
- import '@stackframe/stack-shared/dist/helpers/production-mode';
17
- import '@stackframe/stack-shared/dist/interface/crud/projects';
18
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
19
- import '@stackframe/stack-shared/dist/sessions';
20
- import '../../email-templates/index.mjs';
21
- import '@stackframe/stack-shared/dist/interface/crud/teams';
22
- import '@stackframe/stack-shared/dist/utils/json';
23
- import '@stackframe/stack-shared/dist/interface/crud/users';
@@ -1,23 +0,0 @@
1
- import '@stackframe/stack-shared';
2
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
3
- import '@stackframe/stack-shared/dist/utils/results';
4
- import '../../common.js';
5
- export { a as StackClientApp, a0 as StackClientAppConstructor, S as StackClientAppConstructorOptions, h as StackClientAppJson } from '../../../../index-CueS5Qbi.js';
6
- import '@stackframe/stack-shared/dist/utils/oauth';
7
- import '../../project-configs/index.js';
8
- import '../../permissions/index.js';
9
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
10
- import '../../api-keys/index.js';
11
- import '@stackframe/stack-shared/dist/interface/adminInterface';
12
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
13
- import '../../connected-accounts/index.js';
14
- import '../../contact-channels/index.js';
15
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
16
- import '@stackframe/stack-shared/dist/helpers/production-mode';
17
- import '@stackframe/stack-shared/dist/interface/crud/projects';
18
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
19
- import '@stackframe/stack-shared/dist/sessions';
20
- import '../../email-templates/index.js';
21
- import '@stackframe/stack-shared/dist/interface/crud/teams';
22
- import '@stackframe/stack-shared/dist/utils/json';
23
- import '@stackframe/stack-shared/dist/interface/crud/users';
@@ -1,23 +0,0 @@
1
- import '../../common.mjs';
2
- export { V as StackServerApp, W as StackServerAppConstructor, i as StackServerAppConstructorOptions } from '../../../../index-COYzPcGI.mjs';
3
- import '@stackframe/stack-shared/dist/utils/oauth';
4
- import '../../project-configs/index.mjs';
5
- import '../../permissions/index.mjs';
6
- import '@stackframe/stack-shared/dist/interface/crud/team-permissions';
7
- import '../../api-keys/index.mjs';
8
- import '@stackframe/stack-shared/dist/interface/adminInterface';
9
- import '@stackframe/stack-shared/dist/interface/crud/api-keys';
10
- import '../../connected-accounts/index.mjs';
11
- import '../../contact-channels/index.mjs';
12
- import '@stackframe/stack-shared/dist/interface/crud/contact-channels';
13
- import '@stackframe/stack-shared';
14
- import '@stackframe/stack-shared/dist/interface/crud/current-user';
15
- import '@stackframe/stack-shared/dist/utils/results';
16
- import '@stackframe/stack-shared/dist/helpers/production-mode';
17
- import '@stackframe/stack-shared/dist/interface/crud/projects';
18
- import '@stackframe/stack-shared/dist/interface/crud/email-templates';
19
- import '@stackframe/stack-shared/dist/sessions';
20
- import '../../email-templates/index.mjs';
21
- import '@stackframe/stack-shared/dist/interface/crud/teams';
22
- import '@stackframe/stack-shared/dist/utils/json';
23
- import '@stackframe/stack-shared/dist/interface/crud/users';