@better-auth/sso 1.3.0-beta.1

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.
@@ -0,0 +1,17 @@
1
+
2
+ > @better-auth/sso@1.3.0-beta.1 build /home/runner/work/better-auth/better-auth/packages/sso
3
+ > unbuild
4
+
5
+ [info] Automatically detected entries: src/index, src/client [esm] [cjs] [dts]
6
+ [info] Building sso
7
+ [success] Build succeeded for sso
8
+ [log] dist/index.cjs (total size: 43.2 kB, chunk size: 43.2 kB, exports: sso)
9
+
10
+ [log] dist/client.cjs (total size: 141 B, chunk size: 141 B, exports: ssoClient)
11
+
12
+ [log] dist/index.mjs (total size: 42.5 kB, chunk size: 42.5 kB, exports: sso)
13
+
14
+ [log] dist/client.mjs (total size: 117 B, chunk size: 117 B, exports: ssoClient)
15
+
16
+ Σ Total dist size (byte size): 238 kB
17
+ [log]
package/LICENSE.md ADDED
@@ -0,0 +1,17 @@
1
+ The MIT License (MIT)
2
+ Copyright (c) 2024 - present, Bereket Engida
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
5
+ and associated documentation files (the "Software"), to deal in the Software without restriction,
6
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
7
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
8
+ is furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all copies or
11
+ substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
14
+ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
16
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,12 @@
1
+ import { defineBuildConfig } from "unbuild";
2
+
3
+ export default defineBuildConfig({
4
+ declaration: true,
5
+ rollup: {
6
+ emitCJS: true,
7
+ },
8
+ outDir: "dist",
9
+ clean: false,
10
+ failOnWarn: false,
11
+ externals: ["better-auth", "better-call", "@better-fetch/fetch", "stripe"],
12
+ });
@@ -0,0 +1,10 @@
1
+ 'use strict';
2
+
3
+ const ssoClient = () => {
4
+ return {
5
+ id: "sso-client",
6
+ $InferServerPlugin: {}
7
+ };
8
+ };
9
+
10
+ exports.ssoClient = ssoClient;
@@ -0,0 +1,11 @@
1
+ import { sso } from './index.cjs';
2
+ import 'better-call';
3
+ import 'better-auth';
4
+ import 'zod';
5
+
6
+ declare const ssoClient: () => {
7
+ id: "sso-client";
8
+ $InferServerPlugin: ReturnType<typeof sso>;
9
+ };
10
+
11
+ export { ssoClient };
@@ -0,0 +1,11 @@
1
+ import { sso } from './index.mjs';
2
+ import 'better-call';
3
+ import 'better-auth';
4
+ import 'zod';
5
+
6
+ declare const ssoClient: () => {
7
+ id: "sso-client";
8
+ $InferServerPlugin: ReturnType<typeof sso>;
9
+ };
10
+
11
+ export { ssoClient };
@@ -0,0 +1,11 @@
1
+ import { sso } from './index.js';
2
+ import 'better-call';
3
+ import 'better-auth';
4
+ import 'zod';
5
+
6
+ declare const ssoClient: () => {
7
+ id: "sso-client";
8
+ $InferServerPlugin: ReturnType<typeof sso>;
9
+ };
10
+
11
+ export { ssoClient };
@@ -0,0 +1,8 @@
1
+ const ssoClient = () => {
2
+ return {
3
+ id: "sso-client",
4
+ $InferServerPlugin: {}
5
+ };
6
+ };
7
+
8
+ export { ssoClient };