spaps-sdk 1.0.2 → 1.1.0
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.
- package/README.md +204 -605
- package/dist/index.d.mts +302 -0
- package/dist/index.d.ts +302 -0
- package/dist/index.js +379 -854
- package/dist/index.mjs +370 -840
- package/package.json +40 -34
- package/.env.example +0 -23
- package/admin-utils.ts +0 -243
package/dist/index.mjs
CHANGED
|
@@ -1,913 +1,443 @@
|
|
|
1
|
-
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __esm = (fn, res) => function __init() {
|
|
6
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
7
|
+
};
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
9
17
|
}
|
|
18
|
+
return to;
|
|
10
19
|
};
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
11
21
|
|
|
12
|
-
//
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
22
|
+
// src/permissions.ts
|
|
23
|
+
var permissions_exports = {};
|
|
24
|
+
__export(permissions_exports, {
|
|
25
|
+
DEFAULT_ADMIN_ACCOUNTS: () => DEFAULT_ADMIN_ACCOUNTS,
|
|
26
|
+
PermissionChecker: () => PermissionChecker,
|
|
27
|
+
canAccessAdmin: () => canAccessAdmin,
|
|
28
|
+
createPermissionChecker: () => createPermissionChecker,
|
|
29
|
+
defaultPermissionChecker: () => defaultPermissionChecker,
|
|
30
|
+
getRoleAwareErrorMessage: () => getRoleAwareErrorMessage,
|
|
31
|
+
getUserDisplay: () => getUserDisplay,
|
|
32
|
+
getUserRole: () => getUserRole,
|
|
33
|
+
hasPermission: () => hasPermission,
|
|
34
|
+
isAdminAccount: () => isAdminAccount
|
|
35
|
+
});
|
|
36
|
+
function isAdminAccount(identifier, customAdmins = []) {
|
|
37
|
+
if (!identifier) return false;
|
|
38
|
+
const normalized = identifier.toLowerCase();
|
|
39
|
+
if (normalized === DEFAULT_ADMIN_ACCOUNTS.email.toLowerCase() || normalized === DEFAULT_ADMIN_ACCOUNTS.wallets.ethereum.toLowerCase() || normalized === DEFAULT_ADMIN_ACCOUNTS.wallets.solana.toLowerCase()) {
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
return customAdmins.some((admin) => {
|
|
43
|
+
if (typeof admin === "string") {
|
|
44
|
+
return admin.toLowerCase() === normalized;
|
|
45
|
+
}
|
|
46
|
+
if ("email" in admin && admin.email.toLowerCase() === normalized) {
|
|
17
47
|
return true;
|
|
18
48
|
}
|
|
49
|
+
if ("wallets" in admin) {
|
|
50
|
+
return Object.values(admin.wallets).some(
|
|
51
|
+
(wallet) => wallet.toLowerCase() === normalized
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
return false;
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
function getUserRole(identifier, customAdmins = []) {
|
|
58
|
+
if (!identifier) return "guest";
|
|
59
|
+
if (isAdminAccount(identifier, customAdmins)) {
|
|
60
|
+
return "admin";
|
|
19
61
|
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
62
|
+
return "user";
|
|
63
|
+
}
|
|
64
|
+
function hasPermission(user, requiredPermissions, customAdmins = []) {
|
|
65
|
+
if (!user) return false;
|
|
66
|
+
const identifier = user.email || user.wallet_address;
|
|
67
|
+
const userRole = getUserRole(identifier, customAdmins);
|
|
68
|
+
if (userRole === "admin") {
|
|
69
|
+
return true;
|
|
70
|
+
}
|
|
71
|
+
if (Array.isArray(requiredPermissions)) {
|
|
72
|
+
return requiredPermissions.every(
|
|
73
|
+
(permission) => user.permissions?.includes(permission)
|
|
74
|
+
);
|
|
23
75
|
}
|
|
24
|
-
return false;
|
|
76
|
+
return user.permissions?.includes(requiredPermissions) || false;
|
|
25
77
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
...config,
|
|
34
|
-
localMode
|
|
78
|
+
function canAccessAdmin(user, customAdmins = []) {
|
|
79
|
+
if (!user) {
|
|
80
|
+
return {
|
|
81
|
+
allowed: false,
|
|
82
|
+
reason: "Authentication required",
|
|
83
|
+
userRole: "guest",
|
|
84
|
+
requiredRole: "admin"
|
|
35
85
|
};
|
|
36
|
-
this.isLocalMode = this.config.localMode || false;
|
|
37
|
-
this.accessToken = void 0;
|
|
38
|
-
if (this.isLocalMode && typeof console !== "undefined") {
|
|
39
|
-
console.log("[SPAPS SDK] Running in local development mode - authentication will be automatic");
|
|
40
|
-
}
|
|
41
86
|
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
87
|
+
const identifier = user.email || user.wallet_address;
|
|
88
|
+
const userRole = getUserRole(identifier, customAdmins);
|
|
89
|
+
const isAdmin = userRole === "admin";
|
|
90
|
+
return {
|
|
91
|
+
allowed: isAdmin,
|
|
92
|
+
reason: isAdmin ? void 0 : "Admin privileges required",
|
|
93
|
+
userRole,
|
|
94
|
+
requiredRole: "admin"
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
function getRoleAwareErrorMessage(requiredRole, userRole, action = "perform this action") {
|
|
98
|
+
const messages = {
|
|
99
|
+
admin: {
|
|
100
|
+
user: `\u{1F512} Admin privileges required to ${action}. Please authenticate with an admin account.`,
|
|
101
|
+
guest: `\u{1F510} Authentication required. Please sign in with an admin account to ${action}.`
|
|
102
|
+
},
|
|
103
|
+
user: {
|
|
104
|
+
guest: `\u{1F510} Authentication required. Please sign in to ${action}.`
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
return messages[requiredRole]?.[userRole] || `Access denied. Required role: ${requiredRole}, current role: ${userRole}`;
|
|
108
|
+
}
|
|
109
|
+
function getUserDisplay(user, customAdmins = []) {
|
|
110
|
+
if (!user) {
|
|
111
|
+
return {
|
|
112
|
+
displayName: "Guest",
|
|
113
|
+
role: "guest",
|
|
114
|
+
badge: null,
|
|
115
|
+
isAdmin: false
|
|
116
|
+
};
|
|
53
117
|
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
118
|
+
const identifier = user.email || user.wallet_address;
|
|
119
|
+
const role = getUserRole(identifier, customAdmins);
|
|
120
|
+
const isAdmin = role === "admin";
|
|
121
|
+
return {
|
|
122
|
+
displayName: user.email || `${user.wallet_address?.slice(0, 6)}...${user.wallet_address?.slice(-4)}` || "User",
|
|
123
|
+
role,
|
|
124
|
+
badge: isAdmin ? "\u{1F451} Admin" : null,
|
|
125
|
+
isAdmin
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
function createPermissionChecker(customAdmins = []) {
|
|
129
|
+
return new PermissionChecker(customAdmins);
|
|
130
|
+
}
|
|
131
|
+
var DEFAULT_ADMIN_ACCOUNTS, PermissionChecker, defaultPermissionChecker;
|
|
132
|
+
var init_permissions = __esm({
|
|
133
|
+
"src/permissions.ts"() {
|
|
134
|
+
"use strict";
|
|
135
|
+
DEFAULT_ADMIN_ACCOUNTS = {
|
|
136
|
+
email: "buildooor@gmail.com",
|
|
137
|
+
wallets: {
|
|
138
|
+
ethereum: "0xa72bb7CeF1e4B2Cc144373d8dE0Add7CCc8DF4Ba",
|
|
139
|
+
solana: "HVEbdiYU3Rr34NHBSgKs7q8cvdTeZLqNL77Z1FB2vjLy"
|
|
140
|
+
}
|
|
64
141
|
};
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
142
|
+
PermissionChecker = class {
|
|
143
|
+
customAdmins;
|
|
144
|
+
constructor(customAdmins = []) {
|
|
145
|
+
this.customAdmins = customAdmins;
|
|
146
|
+
}
|
|
147
|
+
isAdmin(identifier) {
|
|
148
|
+
return isAdminAccount(identifier, this.customAdmins);
|
|
149
|
+
}
|
|
150
|
+
getRole(identifier) {
|
|
151
|
+
return getUserRole(identifier, this.customAdmins);
|
|
152
|
+
}
|
|
153
|
+
hasPermission(user, permissions) {
|
|
154
|
+
return hasPermission(user, permissions, this.customAdmins);
|
|
155
|
+
}
|
|
156
|
+
canAccessAdmin(user) {
|
|
157
|
+
return canAccessAdmin(user, this.customAdmins);
|
|
158
|
+
}
|
|
159
|
+
getErrorMessage(requiredRole, userRole, action) {
|
|
160
|
+
return getRoleAwareErrorMessage(requiredRole, userRole, action);
|
|
161
|
+
}
|
|
162
|
+
getUserDisplay(user) {
|
|
163
|
+
return getUserDisplay(user, this.customAdmins);
|
|
164
|
+
}
|
|
165
|
+
// Convenience methods
|
|
166
|
+
requiresAuth(user) {
|
|
167
|
+
return !user;
|
|
168
|
+
}
|
|
169
|
+
requiresAdmin(user) {
|
|
170
|
+
return !this.canAccessAdmin(user).allowed;
|
|
171
|
+
}
|
|
172
|
+
addCustomAdmin(admin) {
|
|
173
|
+
this.customAdmins.push(admin);
|
|
174
|
+
}
|
|
175
|
+
removeCustomAdmin(admin) {
|
|
176
|
+
this.customAdmins = this.customAdmins.filter((a) => a !== admin);
|
|
177
|
+
}
|
|
178
|
+
};
|
|
179
|
+
defaultPermissionChecker = new PermissionChecker();
|
|
180
|
+
}
|
|
181
|
+
});
|
|
182
|
+
|
|
183
|
+
// src/index.ts
|
|
184
|
+
init_permissions();
|
|
185
|
+
import axios from "axios";
|
|
186
|
+
var SPAPSClient = class {
|
|
187
|
+
client;
|
|
188
|
+
apiKey;
|
|
189
|
+
accessToken;
|
|
190
|
+
refreshToken;
|
|
191
|
+
_isLocalMode = false;
|
|
192
|
+
// Admin namespace for cleaner API
|
|
193
|
+
admin = {
|
|
194
|
+
createProduct: (productData) => this.createProduct(productData),
|
|
195
|
+
updateProduct: (productId, updates) => this.updateProduct(productId, updates),
|
|
196
|
+
deleteProduct: (productId) => this.deleteProduct(productId),
|
|
197
|
+
createPrice: (priceData) => this.createPrice(priceData),
|
|
198
|
+
syncProducts: () => this.syncProducts(),
|
|
199
|
+
getProducts: () => this.getProducts()
|
|
200
|
+
};
|
|
201
|
+
constructor(config = {}) {
|
|
202
|
+
const apiUrl = config.apiUrl || process.env.SPAPS_API_URL || process.env.NEXT_PUBLIC_SPAPS_API_URL;
|
|
203
|
+
if (!apiUrl || apiUrl.includes("localhost") || apiUrl.includes("127.0.0.1")) {
|
|
204
|
+
this._isLocalMode = true;
|
|
205
|
+
this.client = axios.create({
|
|
206
|
+
baseURL: apiUrl || "http://localhost:3300",
|
|
207
|
+
timeout: config.timeout || 1e4,
|
|
208
|
+
headers: {
|
|
209
|
+
"Content-Type": "application/json"
|
|
103
210
|
}
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
211
|
+
});
|
|
212
|
+
} else {
|
|
213
|
+
if (!config.apiKey && !process.env.SPAPS_API_KEY) {
|
|
214
|
+
console.warn("\u26A0\uFE0F SPAPS: No API key provided. Some features may not work.");
|
|
215
|
+
}
|
|
216
|
+
this.apiKey = config.apiKey || process.env.SPAPS_API_KEY;
|
|
217
|
+
this.client = axios.create({
|
|
218
|
+
baseURL: apiUrl,
|
|
219
|
+
timeout: config.timeout || 1e4,
|
|
220
|
+
headers: {
|
|
221
|
+
"Content-Type": "application/json",
|
|
222
|
+
...this.apiKey && { "X-API-Key": this.apiKey }
|
|
111
223
|
}
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
224
|
+
});
|
|
225
|
+
}
|
|
226
|
+
this.client.interceptors.request.use((config2) => {
|
|
227
|
+
if (this.accessToken && !config2.headers.Authorization) {
|
|
228
|
+
config2.headers.Authorization = `Bearer ${this.accessToken}`;
|
|
229
|
+
}
|
|
230
|
+
return config2;
|
|
231
|
+
});
|
|
232
|
+
this.client.interceptors.response.use(
|
|
233
|
+
(response) => response,
|
|
234
|
+
async (error) => {
|
|
235
|
+
if (error.response?.status === 401 && this.refreshToken) {
|
|
236
|
+
try {
|
|
237
|
+
const { data } = await this.refresh(this.refreshToken);
|
|
238
|
+
this.accessToken = data.access_token;
|
|
239
|
+
this.refreshToken = data.refresh_token;
|
|
240
|
+
if (error.config) {
|
|
241
|
+
error.config.headers.Authorization = `Bearer ${this.accessToken}`;
|
|
242
|
+
return this.client.request(error.config);
|
|
243
|
+
}
|
|
244
|
+
} catch (refreshError) {
|
|
245
|
+
this.accessToken = void 0;
|
|
246
|
+
this.refreshToken = void 0;
|
|
118
247
|
}
|
|
119
248
|
}
|
|
120
|
-
|
|
121
|
-
break;
|
|
122
|
-
}
|
|
123
|
-
const delayMs = Math.min(1e3 * Math.pow(2, attempt - 1), 1e4);
|
|
124
|
-
await new Promise((resolve) => setTimeout(resolve, delayMs));
|
|
249
|
+
return Promise.reject(error);
|
|
125
250
|
}
|
|
126
|
-
}
|
|
127
|
-
if (lastError instanceof SweetPotatoAPIError) {
|
|
128
|
-
throw lastError;
|
|
129
|
-
}
|
|
130
|
-
throw new SweetPotatoAPIError(
|
|
131
|
-
(lastError == null ? void 0 : lastError.message) || "Request failed after all retries",
|
|
132
|
-
"REQUEST_FAILED",
|
|
133
|
-
void 0,
|
|
134
|
-
{ originalError: lastError }
|
|
135
251
|
);
|
|
136
252
|
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
method: "GET",
|
|
143
|
-
url,
|
|
144
|
-
requiresAuth
|
|
145
|
-
});
|
|
146
|
-
}
|
|
147
|
-
/**
|
|
148
|
-
* Convenience method for POST requests
|
|
149
|
-
*/
|
|
150
|
-
async post(url, data, requiresAuth = false) {
|
|
151
|
-
return this.request({
|
|
152
|
-
method: "POST",
|
|
153
|
-
url,
|
|
154
|
-
data,
|
|
155
|
-
requiresAuth
|
|
253
|
+
// Authentication Methods
|
|
254
|
+
async login(email, password) {
|
|
255
|
+
const response = await this.client.post("/api/auth/login", {
|
|
256
|
+
email,
|
|
257
|
+
password
|
|
156
258
|
});
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
async
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
data,
|
|
166
|
-
requiresAuth
|
|
259
|
+
this.accessToken = response.data.access_token;
|
|
260
|
+
this.refreshToken = response.data.refresh_token;
|
|
261
|
+
return response;
|
|
262
|
+
}
|
|
263
|
+
async register(email, password) {
|
|
264
|
+
const response = await this.client.post("/api/auth/register", {
|
|
265
|
+
email,
|
|
266
|
+
password
|
|
167
267
|
});
|
|
268
|
+
this.accessToken = response.data.access_token;
|
|
269
|
+
this.refreshToken = response.data.refresh_token;
|
|
270
|
+
return response;
|
|
168
271
|
}
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
*/
|
|
172
|
-
async delete(url, requiresAuth = false) {
|
|
173
|
-
return this.request({
|
|
174
|
-
method: "DELETE",
|
|
175
|
-
url,
|
|
176
|
-
requiresAuth
|
|
177
|
-
});
|
|
178
|
-
}
|
|
179
|
-
};
|
|
180
|
-
|
|
181
|
-
// auth.ts
|
|
182
|
-
var AuthService = class {
|
|
183
|
-
constructor(httpClient) {
|
|
184
|
-
this.httpClient = httpClient;
|
|
185
|
-
}
|
|
186
|
-
/**
|
|
187
|
-
* Get a nonce for wallet signature
|
|
188
|
-
* @param walletAddress - The wallet address to generate a nonce for
|
|
189
|
-
* @returns Promise<NonceResponse>
|
|
190
|
-
*/
|
|
191
|
-
async getNonce(walletAddress) {
|
|
192
|
-
var _a;
|
|
193
|
-
const response = await this.httpClient.post("/api/auth/nonce", {
|
|
194
|
-
wallet_address: walletAddress
|
|
195
|
-
});
|
|
196
|
-
if (!response.success || !response.data) {
|
|
197
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to generate nonce");
|
|
198
|
-
}
|
|
199
|
-
return response.data;
|
|
200
|
-
}
|
|
201
|
-
/**
|
|
202
|
-
* Sign in with wallet signature
|
|
203
|
-
* @param request - Wallet sign-in request data
|
|
204
|
-
* @returns Promise<AuthResponse>
|
|
205
|
-
*/
|
|
206
|
-
async signInWithWallet(request) {
|
|
207
|
-
var _a;
|
|
208
|
-
const response = await this.httpClient.post("/api/auth/wallet-sign-in", request);
|
|
209
|
-
if (!response.success || !response.data) {
|
|
210
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Wallet sign-in failed");
|
|
211
|
-
}
|
|
212
|
-
this.httpClient.setAccessToken(response.data.access_token);
|
|
213
|
-
return response.data;
|
|
214
|
-
}
|
|
215
|
-
/**
|
|
216
|
-
* Complete wallet authentication flow
|
|
217
|
-
* This is a convenience method that combines getNonce and signInWithWallet
|
|
218
|
-
* @param walletAddress - The wallet address
|
|
219
|
-
* @param signatureFunction - Function that signs the auth message
|
|
220
|
-
* @param chainType - Optional chain type (will be auto-detected if not provided)
|
|
221
|
-
* @param username - Optional username for new users
|
|
222
|
-
* @returns Promise<AuthResponse>
|
|
223
|
-
*/
|
|
224
|
-
async authenticateWallet(walletAddress, signatureFunction, chainType, username) {
|
|
225
|
-
const nonceData = await this.getNonce(walletAddress);
|
|
226
|
-
const signature = await signatureFunction(nonceData.message);
|
|
227
|
-
const request = {
|
|
272
|
+
async walletSignIn(walletAddress, signature, message, chainType = "solana") {
|
|
273
|
+
const response = await this.client.post("/api/auth/wallet-sign-in", {
|
|
228
274
|
wallet_address: walletAddress,
|
|
229
275
|
signature,
|
|
230
|
-
message
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
request.username = username;
|
|
237
|
-
}
|
|
238
|
-
return this.signInWithWallet(request);
|
|
239
|
-
}
|
|
240
|
-
/**
|
|
241
|
-
* Sign in with email and password
|
|
242
|
-
* @param request - Traditional login request data
|
|
243
|
-
* @returns Promise<AuthResponse>
|
|
244
|
-
*/
|
|
245
|
-
async signInWithPassword(request) {
|
|
246
|
-
var _a;
|
|
247
|
-
const response = await this.httpClient.post("/api/auth/login", request);
|
|
248
|
-
if (response.access_token && response.refresh_token && response.user) {
|
|
249
|
-
this.httpClient.setAccessToken(response.access_token);
|
|
250
|
-
return response;
|
|
251
|
-
}
|
|
252
|
-
if (!response.success || !response.data) {
|
|
253
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Login failed");
|
|
254
|
-
}
|
|
255
|
-
this.httpClient.setAccessToken(response.data.access_token);
|
|
256
|
-
return response.data;
|
|
257
|
-
}
|
|
258
|
-
/**
|
|
259
|
-
* Request a magic link for email authentication
|
|
260
|
-
* @param request - Magic link request data
|
|
261
|
-
* @returns Promise<void>
|
|
262
|
-
*/
|
|
263
|
-
async requestMagicLink(request) {
|
|
264
|
-
var _a;
|
|
265
|
-
const response = await this.httpClient.post("/api/auth/magic-link", request);
|
|
266
|
-
if (!response.success) {
|
|
267
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to send magic link");
|
|
268
|
-
}
|
|
276
|
+
message,
|
|
277
|
+
chain_type: chainType
|
|
278
|
+
});
|
|
279
|
+
this.accessToken = response.data.access_token;
|
|
280
|
+
this.refreshToken = response.data.refresh_token;
|
|
281
|
+
return response;
|
|
269
282
|
}
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
* @returns Promise<TokenPair>
|
|
274
|
-
*/
|
|
275
|
-
async refreshToken(refreshToken) {
|
|
276
|
-
var _a;
|
|
277
|
-
const response = await this.httpClient.post("/api/auth/refresh", {
|
|
278
|
-
refresh_token: refreshToken
|
|
283
|
+
async refresh(refreshToken) {
|
|
284
|
+
const response = await this.client.post("/api/auth/refresh", {
|
|
285
|
+
refresh_token: refreshToken || this.refreshToken
|
|
279
286
|
});
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
this.httpClient.setAccessToken(response.data.access_token);
|
|
284
|
-
return response.data;
|
|
287
|
+
this.accessToken = response.data.access_token;
|
|
288
|
+
this.refreshToken = response.data.refresh_token;
|
|
289
|
+
return response;
|
|
285
290
|
}
|
|
286
|
-
/**
|
|
287
|
-
* Log out and invalidate tokens
|
|
288
|
-
* @returns Promise<void>
|
|
289
|
-
*/
|
|
290
291
|
async logout() {
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
if (!response.success) {
|
|
295
|
-
console.warn("Logout API call failed:", ((_a = response.error) == null ? void 0 : _a.message) || "Unknown error");
|
|
296
|
-
}
|
|
297
|
-
} catch (error) {
|
|
298
|
-
console.warn("Logout API call failed:", error);
|
|
299
|
-
} finally {
|
|
300
|
-
this.httpClient.clearAccessToken();
|
|
301
|
-
}
|
|
302
|
-
}
|
|
303
|
-
/**
|
|
304
|
-
* Get current user profile
|
|
305
|
-
* @returns Promise<User>
|
|
306
|
-
*/
|
|
307
|
-
async getCurrentUser() {
|
|
308
|
-
var _a;
|
|
309
|
-
const response = await this.httpClient.get("/api/auth/user", true);
|
|
310
|
-
if (!response.success || !response.data) {
|
|
311
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to get user profile");
|
|
312
|
-
}
|
|
313
|
-
return response.data.user;
|
|
314
|
-
}
|
|
315
|
-
/**
|
|
316
|
-
* Check if user is currently authenticated
|
|
317
|
-
* @returns boolean
|
|
318
|
-
*/
|
|
319
|
-
isAuthenticated() {
|
|
320
|
-
return this.httpClient["accessToken"] !== void 0;
|
|
321
|
-
}
|
|
322
|
-
/**
|
|
323
|
-
* Clear authentication state (useful for client-side logout)
|
|
324
|
-
*/
|
|
325
|
-
clearAuth() {
|
|
326
|
-
this.httpClient.clearAccessToken();
|
|
327
|
-
}
|
|
328
|
-
};
|
|
329
|
-
|
|
330
|
-
// payments.ts
|
|
331
|
-
var PaymentsService = class {
|
|
332
|
-
constructor(httpClient) {
|
|
333
|
-
this.httpClient = httpClient;
|
|
334
|
-
}
|
|
335
|
-
// Checkout Sessions
|
|
336
|
-
/**
|
|
337
|
-
* Create a new Stripe checkout session
|
|
338
|
-
* @param request - Checkout session creation parameters
|
|
339
|
-
* @returns Promise<CheckoutSession>
|
|
340
|
-
*/
|
|
341
|
-
async createCheckoutSession(request) {
|
|
342
|
-
var _a;
|
|
343
|
-
const response = await this.httpClient.post(
|
|
344
|
-
"/api/stripe/checkout-sessions",
|
|
345
|
-
request,
|
|
346
|
-
true
|
|
347
|
-
);
|
|
348
|
-
if (!response.success || !response.data) {
|
|
349
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to create checkout session");
|
|
350
|
-
}
|
|
351
|
-
return response.data;
|
|
352
|
-
}
|
|
353
|
-
/**
|
|
354
|
-
* Retrieve a checkout session by ID
|
|
355
|
-
* @param sessionId - The checkout session ID
|
|
356
|
-
* @returns Promise<CheckoutSession>
|
|
357
|
-
*/
|
|
358
|
-
async getCheckoutSession(sessionId) {
|
|
359
|
-
var _a;
|
|
360
|
-
const response = await this.httpClient.get(
|
|
361
|
-
`/api/stripe/checkout-sessions/${sessionId}`,
|
|
362
|
-
true
|
|
363
|
-
);
|
|
364
|
-
if (!response.success || !response.data) {
|
|
365
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to retrieve checkout session");
|
|
366
|
-
}
|
|
367
|
-
return response.data;
|
|
368
|
-
}
|
|
369
|
-
/**
|
|
370
|
-
* Expire a checkout session
|
|
371
|
-
* @param sessionId - The checkout session ID to expire
|
|
372
|
-
* @returns Promise<{id: string, status: string, expired: boolean}>
|
|
373
|
-
*/
|
|
374
|
-
async expireCheckoutSession(sessionId) {
|
|
375
|
-
var _a;
|
|
376
|
-
const response = await this.httpClient.post(
|
|
377
|
-
`/api/stripe/checkout-sessions/${sessionId}/expire`,
|
|
378
|
-
{},
|
|
379
|
-
true
|
|
380
|
-
);
|
|
381
|
-
if (!response.success || !response.data) {
|
|
382
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to expire checkout session");
|
|
383
|
-
}
|
|
384
|
-
return response.data;
|
|
385
|
-
}
|
|
386
|
-
/**
|
|
387
|
-
* List checkout sessions for the current user
|
|
388
|
-
* @param options - List options (limit, pagination)
|
|
389
|
-
* @returns Promise<CheckoutSessionListResponse>
|
|
390
|
-
*/
|
|
391
|
-
async listCheckoutSessions(options = {}) {
|
|
392
|
-
var _a;
|
|
393
|
-
const params = new URLSearchParams();
|
|
394
|
-
if (options.limit) params.append("limit", options.limit.toString());
|
|
395
|
-
if (options.starting_after) params.append("starting_after", options.starting_after);
|
|
396
|
-
const url = `/api/stripe/checkout-sessions${params.toString() ? `?${params.toString()}` : ""}`;
|
|
397
|
-
const response = await this.httpClient.get(url, true);
|
|
398
|
-
if (!response.success || !response.data) {
|
|
399
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to list checkout sessions");
|
|
400
|
-
}
|
|
401
|
-
return response.data;
|
|
402
|
-
}
|
|
403
|
-
// Products
|
|
404
|
-
/**
|
|
405
|
-
* List available products
|
|
406
|
-
* @param request - Product list filters
|
|
407
|
-
* @returns Promise<ProductsListResponse>
|
|
408
|
-
*/
|
|
409
|
-
async listProducts(request = {}) {
|
|
410
|
-
var _a;
|
|
411
|
-
const params = new URLSearchParams();
|
|
412
|
-
if (request.category) params.append("category", request.category);
|
|
413
|
-
if (request.active !== void 0) params.append("active", request.active.toString());
|
|
414
|
-
if (request.limit) params.append("limit", request.limit.toString());
|
|
415
|
-
if (request.starting_after) params.append("starting_after", request.starting_after);
|
|
416
|
-
const url = `/api/stripe/products${params.toString() ? `?${params.toString()}` : ""}`;
|
|
417
|
-
const response = await this.httpClient.get(url, true);
|
|
418
|
-
if (!response.success || !response.data) {
|
|
419
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to list products");
|
|
420
|
-
}
|
|
421
|
-
return response.data;
|
|
422
|
-
}
|
|
423
|
-
/**
|
|
424
|
-
* Get a specific product by ID
|
|
425
|
-
* @param productId - The product ID
|
|
426
|
-
* @param includePrices - Whether to include associated prices (default: true)
|
|
427
|
-
* @returns Promise<StripeProduct>
|
|
428
|
-
*/
|
|
429
|
-
async getProduct(productId, includePrices = true) {
|
|
430
|
-
var _a;
|
|
431
|
-
const params = new URLSearchParams();
|
|
432
|
-
if (!includePrices) params.append("include_prices", "false");
|
|
433
|
-
const url = `/api/stripe/products/${productId}${params.toString() ? `?${params.toString()}` : ""}`;
|
|
434
|
-
const response = await this.httpClient.get(url, true);
|
|
435
|
-
if (!response.success || !response.data) {
|
|
436
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to retrieve product");
|
|
437
|
-
}
|
|
438
|
-
return response.data;
|
|
439
|
-
}
|
|
440
|
-
/**
|
|
441
|
-
* Create a new product (Admin only)
|
|
442
|
-
* @param request - Product creation parameters
|
|
443
|
-
* @returns Promise<StripeProduct>
|
|
444
|
-
*/
|
|
445
|
-
async createProduct(request) {
|
|
446
|
-
var _a;
|
|
447
|
-
const response = await this.httpClient.post(
|
|
448
|
-
"/api/stripe/products",
|
|
449
|
-
request,
|
|
450
|
-
true
|
|
451
|
-
);
|
|
452
|
-
if (!response.success || !response.data) {
|
|
453
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to create product");
|
|
454
|
-
}
|
|
455
|
-
return response.data;
|
|
456
|
-
}
|
|
457
|
-
/**
|
|
458
|
-
* Update an existing product (Admin only)
|
|
459
|
-
* @param productId - The product ID to update
|
|
460
|
-
* @param request - Product update parameters
|
|
461
|
-
* @returns Promise<StripeProduct>
|
|
462
|
-
*/
|
|
463
|
-
async updateProduct(productId, request) {
|
|
464
|
-
var _a;
|
|
465
|
-
const response = await this.httpClient.put(
|
|
466
|
-
`/api/stripe/products/${productId}`,
|
|
467
|
-
request,
|
|
468
|
-
true
|
|
469
|
-
);
|
|
470
|
-
if (!response.success || !response.data) {
|
|
471
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to update product");
|
|
472
|
-
}
|
|
473
|
-
return response.data;
|
|
292
|
+
await this.client.post("/api/auth/logout");
|
|
293
|
+
this.accessToken = void 0;
|
|
294
|
+
this.refreshToken = void 0;
|
|
474
295
|
}
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
* @param productId - The product ID to archive
|
|
478
|
-
* @returns Promise<{id: string, archived: boolean, active: boolean}>
|
|
479
|
-
*/
|
|
480
|
-
async archiveProduct(productId) {
|
|
481
|
-
var _a;
|
|
482
|
-
const response = await this.httpClient.delete(
|
|
483
|
-
`/api/stripe/products/${productId}`,
|
|
484
|
-
true
|
|
485
|
-
);
|
|
486
|
-
if (!response.success || !response.data) {
|
|
487
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to archive product");
|
|
488
|
-
}
|
|
489
|
-
return response.data;
|
|
296
|
+
async getUser() {
|
|
297
|
+
return this.client.get("/api/auth/user");
|
|
490
298
|
}
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
"/api/stripe/products/sync",
|
|
499
|
-
{},
|
|
500
|
-
true
|
|
501
|
-
);
|
|
502
|
-
if (!response.success || !response.data) {
|
|
503
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to sync products");
|
|
504
|
-
}
|
|
505
|
-
return response.data;
|
|
506
|
-
}
|
|
507
|
-
// Prices
|
|
508
|
-
/**
|
|
509
|
-
* Create a new price for a product (Admin only)
|
|
510
|
-
* @param request - Price creation parameters
|
|
511
|
-
* @returns Promise<StripePrice>
|
|
512
|
-
*/
|
|
513
|
-
async createPrice(request) {
|
|
514
|
-
var _a;
|
|
515
|
-
const response = await this.httpClient.post(
|
|
516
|
-
"/api/stripe/prices",
|
|
517
|
-
request,
|
|
518
|
-
true
|
|
519
|
-
);
|
|
520
|
-
if (!response.success || !response.data) {
|
|
521
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to create price");
|
|
522
|
-
}
|
|
523
|
-
return response.data;
|
|
299
|
+
// Stripe Methods
|
|
300
|
+
async createCheckoutSession(priceId, successUrl, cancelUrl) {
|
|
301
|
+
return this.client.post("/api/stripe/create-checkout-session", {
|
|
302
|
+
price_id: priceId,
|
|
303
|
+
success_url: successUrl,
|
|
304
|
+
cancel_url: cancelUrl
|
|
305
|
+
});
|
|
524
306
|
}
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
* Create a new subscription
|
|
528
|
-
* @param request - Subscription creation parameters
|
|
529
|
-
* @returns Promise<Subscription>
|
|
530
|
-
*/
|
|
531
|
-
async createSubscription(request) {
|
|
532
|
-
var _a;
|
|
533
|
-
const response = await this.httpClient.post(
|
|
534
|
-
"/api/stripe/subscriptions",
|
|
535
|
-
request,
|
|
536
|
-
true
|
|
537
|
-
);
|
|
538
|
-
if (!response.success || !response.data) {
|
|
539
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to create subscription");
|
|
540
|
-
}
|
|
541
|
-
return response.data;
|
|
307
|
+
async getSubscription() {
|
|
308
|
+
return this.client.get("/api/stripe/subscription");
|
|
542
309
|
}
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
* @param subscriptionId - The subscription ID
|
|
546
|
-
* @returns Promise<Subscription>
|
|
547
|
-
*/
|
|
548
|
-
async getSubscription(subscriptionId) {
|
|
549
|
-
var _a;
|
|
550
|
-
const response = await this.httpClient.get(
|
|
551
|
-
`/api/stripe/subscriptions/${subscriptionId}`,
|
|
552
|
-
true
|
|
553
|
-
);
|
|
554
|
-
if (!response.success || !response.data) {
|
|
555
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to retrieve subscription");
|
|
556
|
-
}
|
|
557
|
-
return response.data;
|
|
310
|
+
async cancelSubscription() {
|
|
311
|
+
await this.client.delete("/api/stripe/subscription");
|
|
558
312
|
}
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
* @returns Promise<{subscriptions: Subscription[], has_more: boolean}>
|
|
563
|
-
*/
|
|
564
|
-
async listSubscriptions(options = {}) {
|
|
565
|
-
var _a;
|
|
566
|
-
const params = new URLSearchParams();
|
|
567
|
-
if (options.limit) params.append("limit", options.limit.toString());
|
|
568
|
-
if (options.starting_after) params.append("starting_after", options.starting_after);
|
|
569
|
-
if (options.status) params.append("status", options.status);
|
|
570
|
-
const url = `/api/stripe/subscriptions${params.toString() ? `?${params.toString()}` : ""}`;
|
|
571
|
-
const response = await this.httpClient.get(url, true);
|
|
572
|
-
if (!response.success || !response.data) {
|
|
573
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to list subscriptions");
|
|
574
|
-
}
|
|
575
|
-
return response.data;
|
|
313
|
+
// Usage Methods
|
|
314
|
+
async getUsageBalance() {
|
|
315
|
+
return this.client.get("/api/usage/balance");
|
|
576
316
|
}
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
async cancelSubscription(subscriptionId) {
|
|
583
|
-
var _a;
|
|
584
|
-
const response = await this.httpClient.post(
|
|
585
|
-
`/api/stripe/subscriptions/${subscriptionId}/cancel`,
|
|
586
|
-
{},
|
|
587
|
-
true
|
|
588
|
-
);
|
|
589
|
-
if (!response.success || !response.data) {
|
|
590
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to cancel subscription");
|
|
591
|
-
}
|
|
592
|
-
return response.data;
|
|
593
|
-
}
|
|
594
|
-
/**
|
|
595
|
-
* Update a subscription
|
|
596
|
-
* @param subscriptionId - The subscription ID to update
|
|
597
|
-
* @param request - Update parameters
|
|
598
|
-
* @returns Promise<Subscription>
|
|
599
|
-
*/
|
|
600
|
-
async updateSubscription(subscriptionId, request) {
|
|
601
|
-
var _a;
|
|
602
|
-
const response = await this.httpClient.put(
|
|
603
|
-
`/api/stripe/subscriptions/${subscriptionId}`,
|
|
604
|
-
request,
|
|
605
|
-
true
|
|
606
|
-
);
|
|
607
|
-
if (!response.success || !response.data) {
|
|
608
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to update subscription");
|
|
609
|
-
}
|
|
610
|
-
return response.data;
|
|
317
|
+
async recordUsage(feature, amount) {
|
|
318
|
+
await this.client.post("/api/usage/record", {
|
|
319
|
+
feature,
|
|
320
|
+
amount
|
|
321
|
+
});
|
|
611
322
|
}
|
|
612
|
-
//
|
|
323
|
+
// Admin Methods (Require admin privileges)
|
|
613
324
|
/**
|
|
614
|
-
* Create a
|
|
615
|
-
* @param request - Portal session parameters
|
|
616
|
-
* @returns Promise<CustomerPortalSession>
|
|
325
|
+
* Create a new Stripe product (Admin required)
|
|
617
326
|
*/
|
|
618
|
-
async
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
"/api/stripe/customer-portal",
|
|
622
|
-
request,
|
|
623
|
-
true
|
|
624
|
-
);
|
|
625
|
-
if (!response.success || !response.data) {
|
|
626
|
-
throw new Error(((_a = response.error) == null ? void 0 : _a.message) || "Failed to create customer portal session");
|
|
327
|
+
async createProduct(productData) {
|
|
328
|
+
if (!this.accessToken) {
|
|
329
|
+
throw new Error("Authentication required. Please authenticate first.");
|
|
627
330
|
}
|
|
628
|
-
return
|
|
331
|
+
return this.client.post("/api/stripe/products", productData, {
|
|
332
|
+
headers: {
|
|
333
|
+
"Authorization": `Bearer ${this.accessToken}`
|
|
334
|
+
}
|
|
335
|
+
});
|
|
629
336
|
}
|
|
630
|
-
// Utility Methods
|
|
631
337
|
/**
|
|
632
|
-
*
|
|
633
|
-
* Convenience method for simple one-time payments
|
|
634
|
-
* @param params - Payment parameters
|
|
635
|
-
* @returns Promise<CheckoutSession>
|
|
338
|
+
* Update an existing Stripe product (Admin required)
|
|
636
339
|
*/
|
|
637
|
-
async
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
lineItems.push({
|
|
641
|
-
price_id: params.price_id,
|
|
642
|
-
quantity: params.quantity || 1
|
|
643
|
-
});
|
|
644
|
-
} else if (params.product_name && params.amount && params.currency) {
|
|
645
|
-
lineItems.push({
|
|
646
|
-
quantity: params.quantity || 1,
|
|
647
|
-
price_data: {
|
|
648
|
-
currency: params.currency,
|
|
649
|
-
unit_amount: params.amount,
|
|
650
|
-
product_data: {
|
|
651
|
-
name: params.product_name
|
|
652
|
-
}
|
|
653
|
-
}
|
|
654
|
-
});
|
|
655
|
-
} else {
|
|
656
|
-
throw new Error("Either price_id or (product_name, amount, currency) must be provided");
|
|
340
|
+
async updateProduct(productId, updates) {
|
|
341
|
+
if (!this.accessToken) {
|
|
342
|
+
throw new Error("Authentication required. Please authenticate first.");
|
|
657
343
|
}
|
|
658
|
-
return this.
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
cancel_url: params.cancel_url,
|
|
663
|
-
...params.metadata && { metadata: params.metadata }
|
|
344
|
+
return this.client.put(`/api/stripe/products/${productId}`, updates, {
|
|
345
|
+
headers: {
|
|
346
|
+
"Authorization": `Bearer ${this.accessToken}`
|
|
347
|
+
}
|
|
664
348
|
});
|
|
665
349
|
}
|
|
666
350
|
/**
|
|
667
|
-
*
|
|
668
|
-
* Convenience method for subscription creation
|
|
669
|
-
* @param params - Subscription parameters
|
|
670
|
-
* @returns Promise<CheckoutSession>
|
|
351
|
+
* Archive (soft delete) a Stripe product (Admin required)
|
|
671
352
|
*/
|
|
672
|
-
async
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
success_url: params.success_url,
|
|
680
|
-
cancel_url: params.cancel_url,
|
|
681
|
-
subscription_data: {
|
|
682
|
-
...params.trial_period_days !== void 0 && { trial_period_days: params.trial_period_days },
|
|
683
|
-
...params.metadata && { metadata: params.metadata }
|
|
353
|
+
async deleteProduct(productId) {
|
|
354
|
+
if (!this.accessToken) {
|
|
355
|
+
throw new Error("Authentication required. Please authenticate first.");
|
|
356
|
+
}
|
|
357
|
+
return this.client.delete(`/api/stripe/products/${productId}`, {
|
|
358
|
+
headers: {
|
|
359
|
+
"Authorization": `Bearer ${this.accessToken}`
|
|
684
360
|
}
|
|
685
361
|
});
|
|
686
362
|
}
|
|
687
|
-
};
|
|
688
|
-
|
|
689
|
-
// index.ts
|
|
690
|
-
var SweetPotatoSDK = class {
|
|
691
|
-
constructor(config) {
|
|
692
|
-
if (!config.apiUrl) {
|
|
693
|
-
throw new Error("apiUrl is required");
|
|
694
|
-
}
|
|
695
|
-
this.httpClient = new HttpClient(config);
|
|
696
|
-
this.auth = new AuthService(this.httpClient);
|
|
697
|
-
this.payments = new PaymentsService(this.httpClient);
|
|
698
|
-
this.isLocalMode = this.httpClient["isLocalMode"] || false;
|
|
699
|
-
if (this.isLocalMode) {
|
|
700
|
-
console.log("[SPAPS SDK] Initialized in local development mode");
|
|
701
|
-
console.log("[SPAPS SDK] API URL:", config.apiUrl);
|
|
702
|
-
console.log("[SPAPS SDK] Authentication will be automatic");
|
|
703
|
-
}
|
|
704
|
-
}
|
|
705
363
|
/**
|
|
706
|
-
*
|
|
707
|
-
* @param token - Access token
|
|
364
|
+
* Create a new price for a product (Admin required)
|
|
708
365
|
*/
|
|
709
|
-
|
|
710
|
-
this.
|
|
711
|
-
|
|
712
|
-
/**
|
|
713
|
-
* Clear access token
|
|
714
|
-
*/
|
|
715
|
-
clearAccessToken() {
|
|
716
|
-
this.httpClient.clearAccessToken();
|
|
717
|
-
}
|
|
718
|
-
/**
|
|
719
|
-
* Get SDK configuration
|
|
720
|
-
*/
|
|
721
|
-
getConfig() {
|
|
722
|
-
return {
|
|
723
|
-
apiUrl: this.httpClient["config"].apiUrl,
|
|
724
|
-
timeout: this.httpClient["config"].timeout,
|
|
725
|
-
retries: this.httpClient["config"].retries
|
|
726
|
-
};
|
|
727
|
-
}
|
|
728
|
-
/**
|
|
729
|
-
* Health check endpoint
|
|
730
|
-
* @returns Promise<boolean>
|
|
731
|
-
*/
|
|
732
|
-
async healthCheck() {
|
|
733
|
-
try {
|
|
734
|
-
const response = await this.httpClient.get("/api/health");
|
|
735
|
-
return response.success;
|
|
736
|
-
} catch (e) {
|
|
737
|
-
return false;
|
|
366
|
+
async createPrice(priceData) {
|
|
367
|
+
if (!this.accessToken) {
|
|
368
|
+
throw new Error("Authentication required. Please authenticate first.");
|
|
738
369
|
}
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
*/
|
|
744
|
-
async request(method, url, data, requiresAuth = false) {
|
|
745
|
-
return this.httpClient.request({
|
|
746
|
-
method,
|
|
747
|
-
url,
|
|
748
|
-
data,
|
|
749
|
-
requiresAuth
|
|
370
|
+
return this.client.post("/api/stripe/prices", priceData, {
|
|
371
|
+
headers: {
|
|
372
|
+
"Authorization": `Bearer ${this.accessToken}`
|
|
373
|
+
}
|
|
750
374
|
});
|
|
751
375
|
}
|
|
752
|
-
};
|
|
753
|
-
function createSweetPotatoSDK(config) {
|
|
754
|
-
return new SweetPotatoSDK(config);
|
|
755
|
-
}
|
|
756
|
-
var _TokenManager = class _TokenManager {
|
|
757
376
|
/**
|
|
758
|
-
*
|
|
377
|
+
* Sync all products from Stripe to local database (Super Admin required)
|
|
759
378
|
*/
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
return globalThis.localStorage;
|
|
764
|
-
}
|
|
765
|
-
if (typeof globalThis !== "undefined" && ((_a = globalThis.window) == null ? void 0 : _a.localStorage)) {
|
|
766
|
-
return globalThis.window.localStorage;
|
|
767
|
-
}
|
|
768
|
-
if (typeof global !== "undefined" && ((_b = global.window) == null ? void 0 : _b.localStorage)) {
|
|
769
|
-
return global.window.localStorage;
|
|
379
|
+
async syncProducts() {
|
|
380
|
+
if (!this.accessToken) {
|
|
381
|
+
throw new Error("Authentication required. Please authenticate first.");
|
|
770
382
|
}
|
|
771
|
-
return
|
|
383
|
+
return this.client.post("/api/stripe/products/sync", {}, {
|
|
384
|
+
headers: {
|
|
385
|
+
"Authorization": `Bearer ${this.accessToken}`
|
|
386
|
+
}
|
|
387
|
+
});
|
|
772
388
|
}
|
|
773
389
|
/**
|
|
774
|
-
*
|
|
390
|
+
* Get products with admin metadata (if user is admin)
|
|
775
391
|
*/
|
|
776
|
-
|
|
777
|
-
const
|
|
778
|
-
if (
|
|
779
|
-
|
|
780
|
-
localStorage.setItem(_TokenManager.REFRESH_TOKEN_KEY, tokens.refresh_token);
|
|
781
|
-
localStorage.setItem(_TokenManager.USER_KEY, JSON.stringify(tokens.user));
|
|
392
|
+
async getProducts() {
|
|
393
|
+
const headers = {};
|
|
394
|
+
if (this.accessToken) {
|
|
395
|
+
headers["Authorization"] = `Bearer ${this.accessToken}`;
|
|
782
396
|
}
|
|
397
|
+
return this.client.get("/api/stripe/products", { headers });
|
|
783
398
|
}
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
static getAccessToken() {
|
|
788
|
-
const localStorage = _TokenManager.getStorage();
|
|
789
|
-
return localStorage ? localStorage.getItem(_TokenManager.ACCESS_TOKEN_KEY) : null;
|
|
790
|
-
}
|
|
791
|
-
/**
|
|
792
|
-
* Get stored refresh token (browser only)
|
|
793
|
-
*/
|
|
794
|
-
static getRefreshToken() {
|
|
795
|
-
const localStorage = _TokenManager.getStorage();
|
|
796
|
-
return localStorage ? localStorage.getItem(_TokenManager.REFRESH_TOKEN_KEY) : null;
|
|
797
|
-
}
|
|
798
|
-
/**
|
|
799
|
-
* Get stored user data (browser only)
|
|
800
|
-
*/
|
|
801
|
-
static getStoredUser() {
|
|
802
|
-
const localStorage = _TokenManager.getStorage();
|
|
803
|
-
if (localStorage) {
|
|
804
|
-
const userData = localStorage.getItem(_TokenManager.USER_KEY);
|
|
805
|
-
return userData ? JSON.parse(userData) : null;
|
|
806
|
-
}
|
|
807
|
-
return null;
|
|
399
|
+
// Utility Methods
|
|
400
|
+
isAuthenticated() {
|
|
401
|
+
return !!this.accessToken;
|
|
808
402
|
}
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
*/
|
|
812
|
-
static clearTokens() {
|
|
813
|
-
const localStorage = _TokenManager.getStorage();
|
|
814
|
-
if (localStorage) {
|
|
815
|
-
localStorage.removeItem(_TokenManager.ACCESS_TOKEN_KEY);
|
|
816
|
-
localStorage.removeItem(_TokenManager.REFRESH_TOKEN_KEY);
|
|
817
|
-
localStorage.removeItem(_TokenManager.USER_KEY);
|
|
818
|
-
}
|
|
403
|
+
getAccessToken() {
|
|
404
|
+
return this.accessToken;
|
|
819
405
|
}
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
*/
|
|
823
|
-
static isTokenExpired(token) {
|
|
824
|
-
try {
|
|
825
|
-
const parts = token.split(".");
|
|
826
|
-
if (parts.length !== 3 || !parts[1]) return true;
|
|
827
|
-
const payload = JSON.parse(atob(parts[1]));
|
|
828
|
-
const currentTime = Math.floor(Date.now() / 1e3);
|
|
829
|
-
return payload.exp < currentTime;
|
|
830
|
-
} catch (e) {
|
|
831
|
-
return true;
|
|
832
|
-
}
|
|
406
|
+
setAccessToken(token) {
|
|
407
|
+
this.accessToken = token;
|
|
833
408
|
}
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
*/
|
|
837
|
-
static async autoRefreshToken(sdk) {
|
|
838
|
-
const accessToken = _TokenManager.getAccessToken();
|
|
839
|
-
const refreshToken = _TokenManager.getRefreshToken();
|
|
840
|
-
if (!accessToken || !refreshToken) {
|
|
841
|
-
return false;
|
|
842
|
-
}
|
|
843
|
-
if (!_TokenManager.isTokenExpired(accessToken)) {
|
|
844
|
-
sdk.setAccessToken(accessToken);
|
|
845
|
-
return true;
|
|
846
|
-
}
|
|
847
|
-
try {
|
|
848
|
-
const newTokens = await sdk.auth.refreshToken(refreshToken);
|
|
849
|
-
_TokenManager.storeTokens(newTokens);
|
|
850
|
-
return true;
|
|
851
|
-
} catch (e) {
|
|
852
|
-
_TokenManager.clearTokens();
|
|
853
|
-
return false;
|
|
854
|
-
}
|
|
409
|
+
isLocalMode() {
|
|
410
|
+
return this._isLocalMode;
|
|
855
411
|
}
|
|
856
|
-
};
|
|
857
|
-
_TokenManager.ACCESS_TOKEN_KEY = "sweet_potato_access_token";
|
|
858
|
-
_TokenManager.REFRESH_TOKEN_KEY = "sweet_potato_refresh_token";
|
|
859
|
-
_TokenManager.USER_KEY = "sweet_potato_user";
|
|
860
|
-
var TokenManager = _TokenManager;
|
|
861
|
-
var WalletUtils = class _WalletUtils {
|
|
862
412
|
/**
|
|
863
|
-
*
|
|
413
|
+
* Check if current user has admin privileges
|
|
414
|
+
* Note: This requires the user object from authentication
|
|
864
415
|
*/
|
|
865
|
-
|
|
866
|
-
if (
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
}
|
|
872
|
-
if (/^[1-9A-HJ-NP-Za-km-z]{32}$/.test(address) || /^[1-9A-HJ-NP-Za-km-z]{44}$/.test(address)) {
|
|
873
|
-
return "solana";
|
|
874
|
-
}
|
|
875
|
-
if (/^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$/.test(address) && address.length >= 26 && address.length <= 35) {
|
|
876
|
-
return "bitcoin";
|
|
877
|
-
}
|
|
878
|
-
if (/^[1-9A-HJ-NP-Za-km-z]{35,44}$/.test(address)) {
|
|
879
|
-
return "solana";
|
|
880
|
-
}
|
|
881
|
-
return null;
|
|
416
|
+
isAdmin(user) {
|
|
417
|
+
if (!user) return false;
|
|
418
|
+
const identifier = user.email || user.wallet_address;
|
|
419
|
+
if (!identifier) return false;
|
|
420
|
+
const { isAdminAccount: isAdminAccount2 } = (init_permissions(), __toCommonJS(permissions_exports));
|
|
421
|
+
return isAdminAccount2(identifier);
|
|
882
422
|
}
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
*/
|
|
886
|
-
static isValidAddress(address, chainType) {
|
|
887
|
-
if (!chainType) {
|
|
888
|
-
chainType = _WalletUtils.detectChainType(address) || "ethereum";
|
|
889
|
-
}
|
|
890
|
-
switch (chainType) {
|
|
891
|
-
case "solana":
|
|
892
|
-
return /^[1-9A-HJ-NP-Za-km-z]{32,44}$/.test(address);
|
|
893
|
-
case "ethereum":
|
|
894
|
-
case "base":
|
|
895
|
-
return /^0x[a-fA-F0-9]{40}$/.test(address);
|
|
896
|
-
case "bitcoin":
|
|
897
|
-
return /^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$/.test(address) || /^bc1[a-z0-9]{39,59}$/.test(address);
|
|
898
|
-
default:
|
|
899
|
-
return false;
|
|
900
|
-
}
|
|
423
|
+
async health() {
|
|
424
|
+
return this.client.get("/health");
|
|
901
425
|
}
|
|
902
426
|
};
|
|
427
|
+
var index_default = SPAPSClient;
|
|
903
428
|
export {
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
SweetPotatoSDK,
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
429
|
+
DEFAULT_ADMIN_ACCOUNTS,
|
|
430
|
+
PermissionChecker,
|
|
431
|
+
SPAPSClient as SPAPS,
|
|
432
|
+
SPAPSClient,
|
|
433
|
+
SPAPSClient as SweetPotatoSDK,
|
|
434
|
+
canAccessAdmin,
|
|
435
|
+
createPermissionChecker,
|
|
436
|
+
index_default as default,
|
|
437
|
+
defaultPermissionChecker,
|
|
438
|
+
getRoleAwareErrorMessage,
|
|
439
|
+
getUserDisplay,
|
|
440
|
+
getUserRole,
|
|
441
|
+
hasPermission,
|
|
442
|
+
isAdminAccount
|
|
913
443
|
};
|