@xylex-group/athena 2.8.0 → 2.9.0
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.
- package/README.md +165 -68
- package/dist/browser.cjs +1331 -70
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.d.cts +8 -7
- package/dist/browser.d.ts +8 -7
- package/dist/browser.js +1325 -71
- package/dist/browser.js.map +1 -1
- package/dist/cli/index.cjs +1354 -117
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +3 -3
- package/dist/cli/index.d.ts +3 -3
- package/dist/cli/index.js +1354 -117
- package/dist/cli/index.js.map +1 -1
- package/dist/{model-form-DMed05gE.d.cts → client-CfAE_QOj.d.cts} +741 -132
- package/dist/{model-form-DXPlOnlI.d.ts → client-D6EIJdQS.d.ts} +741 -132
- package/dist/index.cjs +1391 -71
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -7
- package/dist/index.d.ts +8 -7
- package/dist/index.js +1385 -72
- package/dist/index.js.map +1 -1
- package/dist/model-form-ByvyyvxB.d.ts +96 -0
- package/dist/model-form-DACdBLYG.d.cts +96 -0
- package/dist/next/client.cjs +7875 -0
- package/dist/next/client.cjs.map +1 -0
- package/dist/next/client.d.cts +25 -0
- package/dist/next/client.d.ts +25 -0
- package/dist/next/client.js +7873 -0
- package/dist/next/client.js.map +1 -0
- package/dist/next/server.cjs +7993 -0
- package/dist/next/server.cjs.map +1 -0
- package/dist/next/server.d.cts +52 -0
- package/dist/next/server.d.ts +52 -0
- package/dist/next/server.js +7990 -0
- package/dist/next/server.js.map +1 -0
- package/dist/{pipeline-D4sJRKqN.d.cts → pipeline-CmUZsXsi.d.cts} +1 -1
- package/dist/{pipeline-CkMnhwPI.d.ts → pipeline-DZMsPxUg.d.ts} +1 -1
- package/dist/{react-email-DZhDDlEl.d.cts → react-email-BvJ3fj_F.d.cts} +35 -7
- package/dist/{react-email-Lrz9A-BW.d.ts → react-email-PLAJuZuO.d.ts} +35 -7
- package/dist/react.cjs +30 -1
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.cts +39 -10
- package/dist/react.d.ts +39 -10
- package/dist/react.js +30 -2
- package/dist/react.js.map +1 -1
- package/dist/shared-BW6hoLBY.d.cts +33 -0
- package/dist/shared-BiJvoURI.d.ts +33 -0
- package/dist/{types-vikz9YIO.d.cts → types-BeZIHduP.d.cts} +5 -1
- package/dist/{types-vikz9YIO.d.ts → types-BeZIHduP.d.ts} +5 -1
- package/dist/{types-CAtTGGoz.d.cts → types-C-YvfgYh.d.cts} +27 -2
- package/dist/{types-BzY6fETM.d.ts → types-CRjDwmtJ.d.ts} +27 -2
- package/package.json +37 -49
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { bk as AthenaSdkClientWithStorage, bj as AthenaSdkClientWithAuth } from '../client-CfAE_QOj.cjs';
|
|
2
|
+
import { A as AthenaAdapterBaseOptions, a as AthenaAdapterExperimentalOptions } from '../shared-BW6hoLBY.cjs';
|
|
3
|
+
import '../types-BeZIHduP.cjs';
|
|
4
|
+
|
|
5
|
+
interface AthenaBrowserClientOptions extends AthenaAdapterBaseOptions {
|
|
6
|
+
}
|
|
7
|
+
type AthenaBrowserClientOptionsWithStorage = AthenaBrowserClientOptions & {
|
|
8
|
+
storage: true;
|
|
9
|
+
};
|
|
10
|
+
type AthenaBrowserClientOptionsWithTypecheckedColumns = AthenaBrowserClientOptions & {
|
|
11
|
+
experimental: AthenaAdapterExperimentalOptions & {
|
|
12
|
+
typecheckColumns: true;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
type AthenaBrowserClientOptionsWithStorageAndTypecheckedColumns = AthenaBrowserClientOptionsWithStorage & {
|
|
16
|
+
experimental: AthenaAdapterExperimentalOptions & {
|
|
17
|
+
typecheckColumns: true;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
declare function createAthenaBrowserClient(options: AthenaBrowserClientOptionsWithStorageAndTypecheckedColumns): AthenaSdkClientWithStorage<true>;
|
|
21
|
+
declare function createAthenaBrowserClient(options: AthenaBrowserClientOptionsWithStorage): AthenaSdkClientWithStorage<false>;
|
|
22
|
+
declare function createAthenaBrowserClient(options: AthenaBrowserClientOptionsWithTypecheckedColumns): AthenaSdkClientWithAuth<true>;
|
|
23
|
+
declare function createAthenaBrowserClient(options?: AthenaBrowserClientOptions): AthenaSdkClientWithAuth<false>;
|
|
24
|
+
|
|
25
|
+
export { type AthenaBrowserClientOptions, createAthenaBrowserClient };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { bk as AthenaSdkClientWithStorage, bj as AthenaSdkClientWithAuth } from '../client-D6EIJdQS.js';
|
|
2
|
+
import { A as AthenaAdapterBaseOptions, a as AthenaAdapterExperimentalOptions } from '../shared-BiJvoURI.js';
|
|
3
|
+
import '../types-BeZIHduP.js';
|
|
4
|
+
|
|
5
|
+
interface AthenaBrowserClientOptions extends AthenaAdapterBaseOptions {
|
|
6
|
+
}
|
|
7
|
+
type AthenaBrowserClientOptionsWithStorage = AthenaBrowserClientOptions & {
|
|
8
|
+
storage: true;
|
|
9
|
+
};
|
|
10
|
+
type AthenaBrowserClientOptionsWithTypecheckedColumns = AthenaBrowserClientOptions & {
|
|
11
|
+
experimental: AthenaAdapterExperimentalOptions & {
|
|
12
|
+
typecheckColumns: true;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
type AthenaBrowserClientOptionsWithStorageAndTypecheckedColumns = AthenaBrowserClientOptionsWithStorage & {
|
|
16
|
+
experimental: AthenaAdapterExperimentalOptions & {
|
|
17
|
+
typecheckColumns: true;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
declare function createAthenaBrowserClient(options: AthenaBrowserClientOptionsWithStorageAndTypecheckedColumns): AthenaSdkClientWithStorage<true>;
|
|
21
|
+
declare function createAthenaBrowserClient(options: AthenaBrowserClientOptionsWithStorage): AthenaSdkClientWithStorage<false>;
|
|
22
|
+
declare function createAthenaBrowserClient(options: AthenaBrowserClientOptionsWithTypecheckedColumns): AthenaSdkClientWithAuth<true>;
|
|
23
|
+
declare function createAthenaBrowserClient(options?: AthenaBrowserClientOptions): AthenaSdkClientWithAuth<false>;
|
|
24
|
+
|
|
25
|
+
export { type AthenaBrowserClientOptions, createAthenaBrowserClient };
|