This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
forked from KBVE/nodepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kbve.ts
74 lines (68 loc) · 2 KB
/
kbve.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* cspell:disable */
/* PUBLIC CONFIGURATIONS */
export const weburl: string = "https://meme.sh";
export const appurl: string = "https://app.meme.sh";
/* KBVE */
export type kbveLocker = {
username: string,
phone: string,
last: string,
uuid: string,
avatar: string,
github: string,
instagram: string,
email: string,
emailVerification: string,
phoneVerification: string,
business: string,
logo: string,
content: string,
images: string
website: string,
businessPlan: string,
theme: "dark" | "light" | "auto",
};
export const kbve_v01d: number = 0.99;
export const kbve_v01d_api: string = Object.freeze('');
/* Supabase */
export const supabase_api: string = 'https://haiukcmcljjfaflqdmjc.supabase.co';
export const supabase_projectId: string = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImhhaXVrY21jbGpqZmFmbHFkbWpjIiwicm9sZSI6ImFub24iLCJpYXQiOjE2OTE1NTM0MjMsImV4cCI6MjAwNzEyOTQyM30.0taw1sQp2fHLY3byK2cnGtLttXPFRs9GfkxFBNQL6E8";
/* Appwrite */
export const appwrite_api: string = 'https://ap.kbve.com/v1';
export const appwrite_projectId: string = '6436a6dc9a6b48db802f';
export type appFunctionMap = {
on_board: string,
}
/* hCaptcha */
export const hcaptcha_site_key: string = 'e77af3f6-a0e3-44b7-82f8-b7c098d38022';
export const hcaptcha_api: string = 'https://js.hcaptcha.com/1/api.js';
/* Rust */
export const rust_cache_api: string = '';
export const rust_worker_api: string = '';
/* PocketBase */
export const pocketbase_data_bank: string = '';
export const pbd = pocketbase_data_bank;
export const pocketbase_proxy: string = '';
export const pbp = pocketbase_proxy;
/* R3F -> Loader */
export type rentEarthMap = {
island: string,
rock: string,
portal: string,
portal_mask: string,
logo: string,
};
export type BusinessResponse = {
business_name: string;
business_idea: string;
created_at: string;
created_by: string;
$id: string;
}
export type LogoResponse = {
url: string;
created_at: string;
created_by: string;
business_id: string;
$id: string;
}