通知商家发码-ok

This commit is contained in:
yml2213
2026-06-30 15:57:58 +08:00
parent f58ec9a504
commit 693f4de45a
18 changed files with 1531 additions and 0 deletions
+9
View File
@@ -44,6 +44,15 @@ export function createDefaultRuntimeConfig(projectRoot: string): RuntimeConfig {
timestampToleranceSeconds: 600,
cardsEncoding: "aes-256-ecb-base64",
},
kuaishouIndustry: {
appKey: "",
signSecret: "",
provider: "kuaishou-industry",
platform: "kuaishou",
shopId: "kuaishou-industry",
shopName: "快手行业电子凭证",
version: "1",
},
cloudtentacles: {
baseUrl: "https://123.207.217.176",
timeoutMs: 5000,
+30
View File
@@ -224,6 +224,36 @@ export const ENV_OVERRIDES: readonly EnvOverride[] = [
"cloudtentacles",
"deviceType",
]),
stringEnv("KUASHOU_INDUSTRY_APP_KEY", [
"platforms",
"kuaishouIndustry",
"appKey",
]),
stringEnv("KUASHOU_INDUSTRY_SIGN_SECRET", [
"platforms",
"kuaishouIndustry",
"signSecret",
]),
stringEnv("KUASHOU_INDUSTRY_PROVIDER", [
"platforms",
"kuaishouIndustry",
"provider",
]),
stringEnv("KUASHOU_INDUSTRY_SHOP_ID", [
"platforms",
"kuaishouIndustry",
"shopId",
]),
stringEnv("KUASHOU_INDUSTRY_SHOP_NAME", [
"platforms",
"kuaishouIndustry",
"shopName",
]),
stringEnv("KUASHOU_INDUSTRY_VERSION", [
"platforms",
"kuaishouIndustry",
"version",
]),
corsOriginsEnv("CORS_ALLOWED_ORIGINS", ["cors", "allowedOrigins"]),
];