Kenny
Kenny
Explore posts from servers
BABetter Auth
Created by Kenny on 3/20/2025 in #help
Custom Fields in Organization Table Not Saving Values
I'm having an issue with custom fields in the organization table. I've added company_size to my organization schema, but although the field exists in the database, the values I pass are never saved (always null). Here's my organization plugin config:
organization({
schema: {
organization: {
modelName: "firestorm_organizations",
fields: {
createdAt: "created_at",
},
additionalFields: {
company_size: {
type: "string",
required: false,
defaultValue: null,
},
stripe_customer_id: {
type: "string",
required: false,
defaultValue: null,
},
},
},
// other schema configs...
},
// other config...
})
organization({
schema: {
organization: {
modelName: "firestorm_organizations",
fields: {
createdAt: "created_at",
},
additionalFields: {
company_size: {
type: "string",
required: false,
defaultValue: null,
},
stripe_customer_id: {
type: "string",
required: false,
defaultValue: null,
},
},
},
// other schema configs...
},
// other config...
})
And here's how I'm trying to create the organization:
const organization = await auth.api.createOrganization({
request: req,
headers: req.headers,
body: {
name: body.companyName,
slug: "",
company_size: body.companySize, // This value isn't being saved
},
})
const organization = await auth.api.createOrganization({
request: req,
headers: req.headers,
body: {
name: body.companyName,
slug: "",
company_size: body.companySize, // This value isn't being saved
},
})
The database table has the column as expected (no errors):
ALTER TABLE firestorm_organizations ADD COLUMN company_size TEXT;
ALTER TABLE firestorm_organizations ADD COLUMN company_size TEXT;
What am I missing? The documentation doesn't seem to cover custom organization fields in detail.
6 replies
BABetter Auth
Created by Kenny on 3/18/2025 in #help
better-auth organizations
When running organizationCreation's beforeCreate and afterCreate I don't see any request being passed in. It's only the organization details even though I am passing in the headers directly to the api (because I'm calling this from the server).
// Organization plugin setup
organization({
// ... schema config omitted ...
organizationCreation: {
// This hook should receive req but you're saying it doesn't
beforeCreate: async ({ organization }, req) => {
const urlFriendlyName = organization.name
.toLowerCase()
.replace(/[^\w\s-]/g, "")
.replace(/\s+/g, "-")
.replace(/-+/g, "-")
.trim();

const randomString = generateRandomString(7);

return {
data: {
...organization,
slug: `${urlFriendlyName}-${randomString}`,
}
};
},

// This hook also should receive req but doesn't
afterCreate: async ({ organization, user }, req) => {
try {
const customer = await stripe.customers.create({
name: organization.name,
metadata: {
id: organization.id,
type: "organization",
slug: organization.slug,
},
});

// Missing session token here
await auth.api.updateOrganization({
body: {
headers: {
'firestorm-auth.session_token':
},
data: {
// @ts-expect-error This is specified in additionalFields
stripe_customer_id: customer.id,
},
organizationId: organization.id,
},
});
} catch (error) {
console.error("Error creating Stripe customer:", error);
auth.api.deleteOrganization({
headers: req?.headers, // req might be undefined
body: {
organizationId: organization.id,
},
});
}
},
},
}),
// Organization plugin setup
organization({
// ... schema config omitted ...
organizationCreation: {
// This hook should receive req but you're saying it doesn't
beforeCreate: async ({ organization }, req) => {
const urlFriendlyName = organization.name
.toLowerCase()
.replace(/[^\w\s-]/g, "")
.replace(/\s+/g, "-")
.replace(/-+/g, "-")
.trim();

const randomString = generateRandomString(7);

return {
data: {
...organization,
slug: `${urlFriendlyName}-${randomString}`,
}
};
},

// This hook also should receive req but doesn't
afterCreate: async ({ organization, user }, req) => {
try {
const customer = await stripe.customers.create({
name: organization.name,
metadata: {
id: organization.id,
type: "organization",
slug: organization.slug,
},
});

// Missing session token here
await auth.api.updateOrganization({
body: {
headers: {
'firestorm-auth.session_token':
},
data: {
// @ts-expect-error This is specified in additionalFields
stripe_customer_id: customer.id,
},
organizationId: organization.id,
},
});
} catch (error) {
console.error("Error creating Stripe customer:", error);
auth.api.deleteOrganization({
headers: req?.headers, // req might be undefined
body: {
organizationId: organization.id,
},
});
}
},
},
}),
10 replies
CDCloudflare Developers
Created by Kenny on 3/6/2025 in #general-help
Baselime Support
Where can I find baselime support? I am trying to integrate baselime into my cloudflare pages nextjs app.
3 replies
CDCloudflare Developers
Created by Kenny on 3/4/2025 in #workers-help
env.production.vars not working with cloudflare workers
This is my wrangler file:
name = "post-crawl-workers"
main = "dist/index.js"
compatibility_date = "2025-02-28"
compatibility_flags = []

[build]
command = "bun run build"

[vars]
BUN_VERSION = "1.2.0"
PUBLIC_GCLOUD_PROJECT_ID="8381521..."
# PUBLIC_GCLOUD_DATA_STORE_ID="ideaape-reddit_173..."
PUBLIC_BRIGHT_DATA_USERNAME = "brd-customer-hl_9774..."
PUBLIC_BRIGHT_DATA_HOST = "brd.superproxy..."
PUBLIC_BRIGHT_DATA_PORT = "22225"
PUBLIC_SUPABASE_URL = "http://127.0.0.1:54321"
PUBLIC_SUPABASE_ANON_KEY = "eyJhbGciOiJIUzI1NiIs..."

[env.production.vars]
PUBLIC_SUPABASE_URL = "https://hftzfahjwsb..."
PUBLIC_SUPABASE_ANON_KEY = "eyJhbGciOiJIUzI1NiIs..."

# The rate limiting API is in open beta.
[[unsafe.bindings]]
name = "ACCOUNT_TIER_ONE"
type = "ratelimit"
namespace_id = "1001"
simple = { limit = 2, period = 60 }

[[unsafe.bindings]]
name = "ACCOUNT_TIER_TWO"
type = "ratelimit"
namespace_id = "1002"
simple = { limit = 4, period = 60 }

[observability]
enabled = true
head_sampling_rate = 1 # optional. default = 1.
name = "post-crawl-workers"
main = "dist/index.js"
compatibility_date = "2025-02-28"
compatibility_flags = []

[build]
command = "bun run build"

[vars]
BUN_VERSION = "1.2.0"
PUBLIC_GCLOUD_PROJECT_ID="8381521..."
# PUBLIC_GCLOUD_DATA_STORE_ID="ideaape-reddit_173..."
PUBLIC_BRIGHT_DATA_USERNAME = "brd-customer-hl_9774..."
PUBLIC_BRIGHT_DATA_HOST = "brd.superproxy..."
PUBLIC_BRIGHT_DATA_PORT = "22225"
PUBLIC_SUPABASE_URL = "http://127.0.0.1:54321"
PUBLIC_SUPABASE_ANON_KEY = "eyJhbGciOiJIUzI1NiIs..."

[env.production.vars]
PUBLIC_SUPABASE_URL = "https://hftzfahjwsb..."
PUBLIC_SUPABASE_ANON_KEY = "eyJhbGciOiJIUzI1NiIs..."

# The rate limiting API is in open beta.
[[unsafe.bindings]]
name = "ACCOUNT_TIER_ONE"
type = "ratelimit"
namespace_id = "1001"
simple = { limit = 2, period = 60 }

[[unsafe.bindings]]
name = "ACCOUNT_TIER_TWO"
type = "ratelimit"
namespace_id = "1002"
simple = { limit = 4, period = 60 }

[observability]
enabled = true
head_sampling_rate = 1 # optional. default = 1.
10 replies
CDCloudflare Developers
Created by Kenny on 3/3/2025 in #pages-help
NextJS NEXT_PUBLIC vars on the client
NEXTPUBLIC* variables should be accessible on the client-side yet process.env isn't available and import { getRequestContext } from "@cloudflare/next-on-pages"; is only available on the server. How can I access these public variables on the client?
42 replies
KKinde
Created by Kenny on 3/3/2024 in #💻┃support
redirect
Is it possible to support dynamic post-login redirects instead of changing the KINDE_POST_LOGIN_REDIRECT_URL env using something like a query parameter? I'm using sveltekit and a solution where I pass in something like /api/auth/login?postLoginRedirect="xyz" or /api/auth/login?redirect="xyz" would be ideal for this imo.
5 replies
KKinde
Created by Kenny on 3/2/2024 in #💻┃support
KindeSDKError2: Attempting to commit invalid id_token token "undefined" to memory
hi, i am running into this error when running into production and am not sure why because it doesn't occur locally. Please let me know your thoughts.
KindeSDKError2: Attempting to commit invalid id_token token "undefined" to memory
KindeSDKError2: Attempting to commit invalid id_token token "undefined" to memory
8 replies