mov ecx, 420
mov ecx, 420
Explore posts from servers
BABetter Auth
Created by mov ecx, 420 on 4/2/2025 in #bug-reports
Custom Plugin is not type safe.
Anyways, you are a legend man, thank you. I'll try it out soon.
10 replies
BABetter Auth
Created by mov ecx, 420 on 4/2/2025 in #bug-reports
Custom Plugin is not type safe.
:PU_monkaShake: ahh, I guess I gotta learn typescript all over again
10 replies
BABetter Auth
Created by mov ecx, 420 on 4/2/2025 in #bug-reports
Custom Plugin is not type safe.
it would be nice to have a warning in the docs, saying if you don't use satisfies typesafety won't work
10 replies
BABetter Auth
Created by mov ecx, 420 on 4/2/2025 in #bug-reports
Custom Plugin is not type safe.
ahh :PES_ThumbsUp: alright, do you have any article on why we need to do that? interested to learn about this
10 replies
BABetter Auth
Created by mov ecx, 420 on 4/2/2025 in #bug-reports
Custom Plugin is not type safe.
import type { BetterAuthPlugin } from "better-auth/plugins";
import {
DEFAULT_CART_TABLE_NAME,
DEFAULT_MAX_CART_ITEMS,
DEFAULT_MAX_ITEM_PRICE,
DEFAULT_MAX_ITEM_QUANTITY,
createErrorCodes,
} from "./constants";
import { createEndpoints } from "./routes";
import { CartPluginOptions } from "./types";

/**
* Cart plugin for BetterAuth
* Provides shopping cart functionality with database storage
*/
export const cart = (options?: CartPluginOptions): BetterAuthPlugin => {
// Set defaults
const cartTableName = options?.cartTableName || DEFAULT_CART_TABLE_NAME;
const maxCartItems = options?.maxCartItems || DEFAULT_MAX_CART_ITEMS;
const maxItemPrice = options?.maxItemPrice || DEFAULT_MAX_ITEM_PRICE;
const maxItemQuantity = options?.maxItemQuantity || DEFAULT_MAX_ITEM_QUANTITY;

// Create error codes
const ERROR_CODES = createErrorCodes(
maxCartItems,
maxItemPrice,
maxItemQuantity,
);

// Define database schema
const schema = {
[cartTableName]: {
fields: {
userId: {
type: "string" as const,
required: true,
},
productId: {
type: "string" as const,
required: true,
},
name: {
type: "string" as const,
required: true,
},
price: {
type: "number" as const,
required: true,
},
quantity: {
type: "number" as const,
required: true,
},
image: {
type: "string" as const,
required: false,
},
createdAt: {
type: "date" as const,
required: true,
},
updatedAt: {
type: "date" as const,
required: true,
},
},
modelName: cartTableName,
},
};

// Create endpoints
const endpoints = createEndpoints(cartTableName, ERROR_CODES, {
maxCartItems,
maxItemPrice,
maxItemQuantity,
onCheckout: options?.onCheckout,
});

return {
id: "cart",
schema,
endpoints,
$ERROR_CODES: ERROR_CODES,
};
};

// Re-export types
export * from "./types";
import type { BetterAuthPlugin } from "better-auth/plugins";
import {
DEFAULT_CART_TABLE_NAME,
DEFAULT_MAX_CART_ITEMS,
DEFAULT_MAX_ITEM_PRICE,
DEFAULT_MAX_ITEM_QUANTITY,
createErrorCodes,
} from "./constants";
import { createEndpoints } from "./routes";
import { CartPluginOptions } from "./types";

/**
* Cart plugin for BetterAuth
* Provides shopping cart functionality with database storage
*/
export const cart = (options?: CartPluginOptions): BetterAuthPlugin => {
// Set defaults
const cartTableName = options?.cartTableName || DEFAULT_CART_TABLE_NAME;
const maxCartItems = options?.maxCartItems || DEFAULT_MAX_CART_ITEMS;
const maxItemPrice = options?.maxItemPrice || DEFAULT_MAX_ITEM_PRICE;
const maxItemQuantity = options?.maxItemQuantity || DEFAULT_MAX_ITEM_QUANTITY;

// Create error codes
const ERROR_CODES = createErrorCodes(
maxCartItems,
maxItemPrice,
maxItemQuantity,
);

// Define database schema
const schema = {
[cartTableName]: {
fields: {
userId: {
type: "string" as const,
required: true,
},
productId: {
type: "string" as const,
required: true,
},
name: {
type: "string" as const,
required: true,
},
price: {
type: "number" as const,
required: true,
},
quantity: {
type: "number" as const,
required: true,
},
image: {
type: "string" as const,
required: false,
},
createdAt: {
type: "date" as const,
required: true,
},
updatedAt: {
type: "date" as const,
required: true,
},
},
modelName: cartTableName,
},
};

// Create endpoints
const endpoints = createEndpoints(cartTableName, ERROR_CODES, {
maxCartItems,
maxItemPrice,
maxItemQuantity,
onCheckout: options?.onCheckout,
});

return {
id: "cart",
schema,
endpoints,
$ERROR_CODES: ERROR_CODES,
};
};

// Re-export types
export * from "./types";
10 replies
PD🧩 Plasmo Developers
Created by mov ecx, 420 on 8/7/2024 in #👾extension
Registering a content message from a library
Because the background scripts need to be in a folder called backgrounds and then I would need to create these for all projects still
14 replies
PD🧩 Plasmo Developers
Created by mov ecx, 420 on 8/7/2024 in #👾extension
Registering a content message from a library
Yeah I wanna make one my self, my question is how do I register a background script from an external module.
14 replies
PD🧩 Plasmo Developers
Created by mov ecx, 420 on 8/7/2024 in #👾extension
Registering a content message from a library
I dont want to add a background script and dupe code every extension I make
14 replies
PD🧩 Plasmo Developers
Created by mov ecx, 420 on 8/7/2024 in #👾extension
Registering a content message from a library
I want to reuse the same fetch in many libs. Im making a license provider
14 replies
PD🧩 Plasmo Developers
Created by mov ecx, 420 on 8/7/2024 in #👾extension
Registering a content message from a library
B
14 replies
PD🧩 Plasmo Developers
Created by mov ecx, 420 on 8/7/2024 in #👾extension
Registering a content message from a library
b
14 replies