@fuul/sdk 4.12.2 → 5.0.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/dist/affiliates/AffiliateService.d.ts +4 -3
- package/dist/affiliates/AffiliateService.d.ts.map +1 -1
- package/dist/core.d.ts +9 -2
- package/dist/core.d.ts.map +1 -1
- package/dist/index.mjs +140 -138
- package/dist/index.umd.js +5 -5
- package/dist/release.json.d.ts +1 -1
- package/dist/types/index.d.ts +5 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/sdk.d.ts +2 -0
- package/dist/types/sdk.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { HttpClient } from '../HttpClient';
|
|
2
|
+
import { BlockchainType } from '../types';
|
|
2
3
|
export type AffiliateServiceSettings = {
|
|
3
4
|
httpClient: HttpClient;
|
|
4
5
|
debug?: boolean;
|
|
@@ -7,9 +8,9 @@ export declare class AffiliateService {
|
|
|
7
8
|
private readonly httpClient;
|
|
8
9
|
private readonly _debug;
|
|
9
10
|
constructor(settings: AffiliateServiceSettings);
|
|
10
|
-
create(address: string, code: string, signature: string, accountChainId?: number): Promise<void>;
|
|
11
|
-
update(address: string, code: string, signature: string, accountChainId?: number): Promise<void>;
|
|
11
|
+
create(address: string, blockchain: BlockchainType, code: string, signature: string, accountChainId?: number): Promise<void>;
|
|
12
|
+
update(address: string, blockchain: BlockchainType, code: string, signature: string, accountChainId?: number): Promise<void>;
|
|
12
13
|
isCodeFree(code: string): Promise<boolean>;
|
|
13
|
-
getCode(address: string): Promise<string | null>;
|
|
14
|
+
getCode(address: string, blockchain: BlockchainType): Promise<string | null>;
|
|
14
15
|
}
|
|
15
16
|
//# sourceMappingURL=AffiliateService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AffiliateService.d.ts","sourceRoot":"","sources":["../../src/affiliates/AffiliateService.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"AffiliateService.d.ts","sourceRoot":"","sources":["../../src/affiliates/AffiliateService.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAI1C,MAAM,MAAM,wBAAwB,GAAG;IACrC,UAAU,EAAE,UAAU,CAAC;IACvB,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB,CAAC;AAEF,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAa;IACxC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAsB;gBAEjC,QAAQ,EAAE,wBAAwB;IAKjC,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,cAAc,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAqC5H,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,cAAc,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAoC5H,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAe1C,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,cAAc,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;CAc1F"}
|
package/dist/core.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BlockchainType } from './types';
|
|
1
2
|
import { Conversion, GetConversionsParams, GetPayoutsLeaderboardParams, GetPointsLeaderboardParams, GetReferredUsersLeaderboardParams, GetUserAudiencesParams, GetUserAudiencesResponse, GetUserPayoutMovementsParams, GetUserPayoutsByConversionParams, GetUserPointsByConversionParams, GetUserPointsMovementsParams, GetVolumeLeaderboardParams, LeaderboardResponse, PayoutsLeaderboard, PointsLeaderboard, ReferredUsersLeaderboard, UserPayoutMovementsResponse, UserPayoutsByConversionResponse, UserPointsByConversionResponse, UserPointsMovementsResponse, VolumeLeaderboard } from './types/api';
|
|
2
3
|
import { AffiliateCodeParams, AffiliateLinkParams, EventArgs, FuulSettings, UserMetadata } from './types/sdk';
|
|
3
4
|
import { GetUserAffiliatesParams, UserAffiliate } from './user/types';
|
|
@@ -50,6 +51,7 @@ export declare function sendConnectWallet(userMetadata: UserMetadata, projectIds
|
|
|
50
51
|
* Creates a code registered to an affiliate address
|
|
51
52
|
* @param {object} params Create affiliate code parameters
|
|
52
53
|
* @param {string} params.address Affiliate wallet address
|
|
54
|
+
* @param {BlockchainType} params.blockchain Blockchain type of the affiliate address
|
|
53
55
|
* @param {string} params.code Affiliate code to map address to
|
|
54
56
|
* @param {string} params.signature Signed message authenticating address ownership. Message to be signed: `I confirm that I am creating the ${code} code on Fuul`
|
|
55
57
|
* @param {number} [params.accountChainId] Account chain id (required for EIP-1271 signature validation)
|
|
@@ -57,6 +59,7 @@ export declare function sendConnectWallet(userMetadata: UserMetadata, projectIds
|
|
|
57
59
|
* ```typescript
|
|
58
60
|
* await Fuul.createAffiliateCode({
|
|
59
61
|
* address: '0x12345',
|
|
62
|
+
* blockchain: BlockchainType.Ethereum,
|
|
60
63
|
* code: 'my-cool-code',
|
|
61
64
|
* signature: '<signature>'
|
|
62
65
|
* })
|
|
@@ -67,6 +70,7 @@ export declare function createAffiliateCode(params: AffiliateCodeParams): Promis
|
|
|
67
70
|
* Updates the code registered to an affiliate address
|
|
68
71
|
* @param {object} params Update affiliate code parameters
|
|
69
72
|
* @param {string} params.address Affiliate wallet address
|
|
73
|
+
* @param {BlockchainType} params.blockchain Blockchain type of the affiliate address
|
|
70
74
|
* @param {string} params.code New affiliate code
|
|
71
75
|
* @param {string} params.signature Signed message authenticating code update. Message to be signed: `I confirm that I am updating my code to ${code} on Fuul`
|
|
72
76
|
* @param {number} [params.accountChainId] Account chain id (required for EIP-1271 signature validation)
|
|
@@ -74,6 +78,7 @@ export declare function createAffiliateCode(params: AffiliateCodeParams): Promis
|
|
|
74
78
|
* ```typescript
|
|
75
79
|
* await Fuul.updateAffiliateCode({
|
|
76
80
|
* address: '0x12345',
|
|
81
|
+
* blockchain: BlockchainType.Ethereum,
|
|
77
82
|
* code: 'my-new-cool-code',
|
|
78
83
|
* signature: '<signature>'
|
|
79
84
|
* })
|
|
@@ -83,13 +88,14 @@ export declare function updateAffiliateCode(params: AffiliateCodeParams): Promis
|
|
|
83
88
|
/**
|
|
84
89
|
* Gets the code registered to an affiliate address
|
|
85
90
|
* @param {string} address Affiliate wallet address
|
|
91
|
+
* @param {BlockchainType} blockchain Blockchain type of the affiliate address
|
|
86
92
|
* @returns {string} Affiliate code
|
|
87
93
|
* @example
|
|
88
94
|
* ```typescript
|
|
89
95
|
* const code = await Fuul.getAffiliateCode('0x12345');
|
|
90
96
|
* ```
|
|
91
97
|
**/
|
|
92
|
-
export declare function getAffiliateCode(address: string): Promise<string | null>;
|
|
98
|
+
export declare function getAffiliateCode(address: string, blockchain: BlockchainType): Promise<string | null>;
|
|
93
99
|
/**
|
|
94
100
|
* Checks if an affiliate code is free to use
|
|
95
101
|
* @param {string} code Affiliate code to check
|
|
@@ -106,6 +112,7 @@ export declare function isAffiliateCodeFree(code: string): Promise<boolean>;
|
|
|
106
112
|
* Generates a tracking link for an affiliate
|
|
107
113
|
* @param {string} baseUrl Base url of the project
|
|
108
114
|
* @param {string} affiliateAddress Affiliate wallet address
|
|
115
|
+
* @param {BlockchainType} blockchain Blockchain type of the affiliate address
|
|
109
116
|
* @param {AffiliateLinkParams} params Optional tracking parameters
|
|
110
117
|
* @returns {string} Tracking link
|
|
111
118
|
* @example
|
|
@@ -115,7 +122,7 @@ export declare function isAffiliateCodeFree(code: string): Promise<boolean>;
|
|
|
115
122
|
* ```
|
|
116
123
|
* @see https://docs.fuul.xyz/technical-guide-for-projects/creating-partners-tracking-links-using-the-fuul-sdk
|
|
117
124
|
**/
|
|
118
|
-
export declare function generateTrackingLink(baseUrl: string, affiliateAddress: string, params?: AffiliateLinkParams): Promise<string>;
|
|
125
|
+
export declare function generateTrackingLink(baseUrl: string, affiliateAddress: string, blockchain: BlockchainType, params?: AffiliateLinkParams): Promise<string>;
|
|
119
126
|
/**
|
|
120
127
|
* Gets the project payouts leaderboard
|
|
121
128
|
* @param {GetPayoutsLeaderboardParams} params The search params
|
package/dist/core.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core.d.ts","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,UAAU,EAEV,oBAAoB,EACpB,2BAA2B,EAC3B,0BAA0B,EAC1B,iCAAiC,EACjC,sBAAsB,EACtB,wBAAwB,EACxB,4BAA4B,EAC5B,gCAAgC,EAChC,+BAA+B,EAC/B,4BAA4B,EAC5B,0BAA0B,EAC1B,mBAAmB,EACnB,kBAAkB,EAClB,iBAAiB,EACjB,wBAAwB,EACxB,2BAA2B,EAC3B,+BAA+B,EAC/B,8BAA8B,EAC9B,2BAA2B,EAC3B,iBAAiB,EAClB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,SAAS,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC9G,OAAO,EAAE,uBAAuB,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAiBtE,wBAAgB,IAAI,CAAC,QAAQ,EAAE,YAAY,QAsB1C;AAQD;;;;;;;;GAQG;AACH,wBAAsB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAc7E;AAED;;;;;;;;;GASG;AACH,wBAAsB,YAAY,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAwB1F;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAsB,iBAAiB,CAAC,YAAY,EAAE,YAAY,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CA8BxG;AAED
|
|
1
|
+
{"version":3,"file":"core.d.ts","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AACzC,OAAO,EACL,UAAU,EAEV,oBAAoB,EACpB,2BAA2B,EAC3B,0BAA0B,EAC1B,iCAAiC,EACjC,sBAAsB,EACtB,wBAAwB,EACxB,4BAA4B,EAC5B,gCAAgC,EAChC,+BAA+B,EAC/B,4BAA4B,EAC5B,0BAA0B,EAC1B,mBAAmB,EACnB,kBAAkB,EAClB,iBAAiB,EACjB,wBAAwB,EACxB,2BAA2B,EAC3B,+BAA+B,EAC/B,8BAA8B,EAC9B,2BAA2B,EAC3B,iBAAiB,EAClB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,SAAS,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC9G,OAAO,EAAE,uBAAuB,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAiBtE,wBAAgB,IAAI,CAAC,QAAQ,EAAE,YAAY,QAsB1C;AAQD;;;;;;;;GAQG;AACH,wBAAsB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAc7E;AAED;;;;;;;;;GASG;AACH,wBAAsB,YAAY,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAwB1F;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAsB,iBAAiB,CAAC,YAAY,EAAE,YAAY,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CA8BxG;AAED;;;;;;;;;;;;;;;;;IAiBI;AACJ,wBAAsB,mBAAmB,CAAC,MAAM,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CAGpF;AAED;;;;;;;;;;;;;;;;;IAiBI;AACJ,wBAAsB,mBAAmB,CAAC,MAAM,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CAGpF;AAED;;;;;;;;;IASI;AACJ,wBAAsB,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,cAAc,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAG1G;AAED;;;;;;;;;;IAUI;AACJ,wBAAsB,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAGxE;AAED;;;;;;;;;;;;;IAaI;AACJ,wBAAsB,oBAAoB,CACxC,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,EACxB,UAAU,EAAE,cAAc,EAC1B,MAAM,CAAC,EAAE,mBAAmB,GAC3B,OAAO,CAAC,MAAM,CAAC,CAkBjB;AAED;;;;;;;;IAQI;AACJ,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,2BAA2B,GAAG,OAAO,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,CAAC,CAE3H;AAED;;;;;;;;IAQI;AACJ,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,0BAA0B,GAAG,OAAO,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,CAAC,CAExH;AAED;;;;;;;;GAQG;AACH,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,iCAAiC,GAAG,OAAO,CAAC,mBAAmB,CAAC,wBAAwB,CAAC,CAAC,CAE7I;AAED;;;;;;;;IAQI;AACJ,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,0BAA0B,GAAG,OAAO,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,CAAC,CAExH;AAED;;;;;;;;IAQI;AACJ,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,gCAAgC,GAAG,OAAO,CAAC,+BAA+B,CAAC,CAE7H;AAED;;;;;;;;IAQI;AACJ,wBAAgB,yBAAyB,CAAC,MAAM,EAAE,+BAA+B,GAAG,OAAO,CAAC,8BAA8B,CAAC,CAE1H;AAED;;;;;;;;IAQI;AACJ,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,4BAA4B,GAAG,OAAO,CAAC,2BAA2B,CAAC,CAEjH;AAED;;;;;;;;IAQI;AACJ,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,4BAA4B,GAAG,OAAO,CAAC,2BAA2B,CAAC,CAEjH;AAED;;;;;;;;IAQI;AACJ,wBAAsB,cAAc,CAAC,MAAM,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC,CAGzF;AAED;;;;;;;;GAQG;AACH,wBAAsB,iBAAiB,CAAC,MAAM,EAAE,uBAAuB,GAAG,OAAO,CAAC,aAAa,EAAE,CAAC,CAGjG;AAED;;;;;;;;GAQG;AACH,wBAAsB,gBAAgB,CAAC,MAAM,EAAE,sBAAsB,GAAG,OAAO,CAAC,wBAAwB,CAAC,CAGxG;;;;;;;;;;;;;;;;;;;;;;;AA6BD,wBAqBE"}
|
package/dist/index.mjs
CHANGED
|
@@ -160,8 +160,8 @@ const an = (e) => {
|
|
|
160
160
|
t[s] = r;
|
|
161
161
|
const o = j(r) ? [] : {};
|
|
162
162
|
return M(r, (i, c) => {
|
|
163
|
-
const
|
|
164
|
-
!J(
|
|
163
|
+
const l = n(i, s + 1);
|
|
164
|
+
!J(l) && (o[c] = l);
|
|
165
165
|
}), t[s] = void 0, o;
|
|
166
166
|
}
|
|
167
167
|
}
|
|
@@ -281,8 +281,8 @@ Object.defineProperties(m, st);
|
|
|
281
281
|
Object.defineProperty(rt, "isAxiosError", { value: !0 });
|
|
282
282
|
m.from = (e, t, n, r, s, o) => {
|
|
283
283
|
const i = Object.create(rt);
|
|
284
|
-
return a.toFlatObject(e, i, function(
|
|
285
|
-
return
|
|
284
|
+
return a.toFlatObject(e, i, function(l) {
|
|
285
|
+
return l !== Error.prototype;
|
|
286
286
|
}, (c) => c !== "isAxiosError"), m.call(i, e.message, t, n, r, s), i.cause = e, i.name = e.name, o && Object.assign(i, o), i;
|
|
287
287
|
};
|
|
288
288
|
const fn = null;
|
|
@@ -313,18 +313,18 @@ function se(e, t, n) {
|
|
|
313
313
|
}, !1, function(y, p) {
|
|
314
314
|
return !a.isUndefined(p[y]);
|
|
315
315
|
});
|
|
316
|
-
const r = n.metaTokens, s = n.visitor ||
|
|
316
|
+
const r = n.metaTokens, s = n.visitor || f, o = n.dots, i = n.indexes, l = (n.Blob || typeof Blob < "u" && Blob) && a.isSpecCompliantForm(t);
|
|
317
317
|
if (!a.isFunction(s))
|
|
318
318
|
throw new TypeError("visitor must be a function");
|
|
319
319
|
function u(h) {
|
|
320
320
|
if (h === null) return "";
|
|
321
321
|
if (a.isDate(h))
|
|
322
322
|
return h.toISOString();
|
|
323
|
-
if (!
|
|
323
|
+
if (!l && a.isBlob(h))
|
|
324
324
|
throw new m("Blob is not supported. Use a Buffer instead.");
|
|
325
|
-
return a.isArrayBuffer(h) || a.isTypedArray(h) ?
|
|
325
|
+
return a.isArrayBuffer(h) || a.isTypedArray(h) ? l && typeof Blob == "function" ? new Blob([h]) : Buffer.from(h) : h;
|
|
326
326
|
}
|
|
327
|
-
function
|
|
327
|
+
function f(h, y, p) {
|
|
328
328
|
let w = h;
|
|
329
329
|
if (h && !p && typeof h == "object") {
|
|
330
330
|
if (a.endsWith(y, "{}"))
|
|
@@ -341,7 +341,7 @@ function se(e, t, n) {
|
|
|
341
341
|
return he(h) ? !0 : (t.append(Ue(p, y, o), u(h)), !1);
|
|
342
342
|
}
|
|
343
343
|
const d = [], g = Object.assign(hn, {
|
|
344
|
-
defaultVisitor:
|
|
344
|
+
defaultVisitor: f,
|
|
345
345
|
convertValue: u,
|
|
346
346
|
isVisitable: he
|
|
347
347
|
});
|
|
@@ -508,8 +508,8 @@ function ut(e) {
|
|
|
508
508
|
function t(n, r, s, o) {
|
|
509
509
|
let i = n[o++];
|
|
510
510
|
if (i === "__proto__") return !0;
|
|
511
|
-
const c = Number.isFinite(+i),
|
|
512
|
-
return i = !i && a.isArray(s) ? s.length : i,
|
|
511
|
+
const c = Number.isFinite(+i), l = o >= n.length;
|
|
512
|
+
return i = !i && a.isArray(s) ? s.length : i, l ? (a.hasOwnProp(s, i) ? s[i] = [s[i], r] : s[i] = r, !c) : ((!s[i] || !a.isObject(s[i])) && (s[i] = []), t(n, r, s[i], o) && a.isArray(s[i]) && (s[i] = An(s[i])), !c);
|
|
513
513
|
}
|
|
514
514
|
if (a.isFormData(e) && a.isFunction(e.entries)) {
|
|
515
515
|
const n = {};
|
|
@@ -547,10 +547,10 @@ const W = {
|
|
|
547
547
|
if (r.indexOf("application/x-www-form-urlencoded") > -1)
|
|
548
548
|
return Rn(t, this.formSerializer).toString();
|
|
549
549
|
if ((c = a.isFileList(t)) || r.indexOf("multipart/form-data") > -1) {
|
|
550
|
-
const
|
|
550
|
+
const l = this.env && this.env.FormData;
|
|
551
551
|
return se(
|
|
552
552
|
c ? { "files[]": t } : t,
|
|
553
|
-
|
|
553
|
+
l && new l(),
|
|
554
554
|
this.formSerializer
|
|
555
555
|
);
|
|
556
556
|
}
|
|
@@ -668,21 +668,21 @@ let P = class {
|
|
|
668
668
|
}
|
|
669
669
|
set(t, n, r) {
|
|
670
670
|
const s = this;
|
|
671
|
-
function o(c,
|
|
672
|
-
const
|
|
673
|
-
if (!
|
|
671
|
+
function o(c, l, u) {
|
|
672
|
+
const f = V(l);
|
|
673
|
+
if (!f)
|
|
674
674
|
throw new Error("header name must be a non-empty string");
|
|
675
|
-
const d = a.findKey(s,
|
|
676
|
-
(!d || s[d] === void 0 || u === !0 || u === void 0 && s[d] !== !1) && (s[d ||
|
|
675
|
+
const d = a.findKey(s, f);
|
|
676
|
+
(!d || s[d] === void 0 || u === !0 || u === void 0 && s[d] !== !1) && (s[d || l] = Y(c));
|
|
677
677
|
}
|
|
678
|
-
const i = (c,
|
|
678
|
+
const i = (c, l) => a.forEach(c, (u, f) => o(u, f, l));
|
|
679
679
|
if (a.isPlainObject(t) || t instanceof this.constructor)
|
|
680
680
|
i(t, n);
|
|
681
681
|
else if (a.isString(t) && (t = t.trim()) && !Nn(t))
|
|
682
682
|
i(_n(t), n);
|
|
683
683
|
else if (a.isHeaders(t))
|
|
684
|
-
for (const [c,
|
|
685
|
-
o(
|
|
684
|
+
for (const [c, l] of t.entries())
|
|
685
|
+
o(l, c, r);
|
|
686
686
|
else
|
|
687
687
|
t != null && o(n, t, r);
|
|
688
688
|
return this;
|
|
@@ -825,26 +825,26 @@ function Fn(e, t) {
|
|
|
825
825
|
e = e || 10;
|
|
826
826
|
const n = new Array(e), r = new Array(e);
|
|
827
827
|
let s = 0, o = 0, i;
|
|
828
|
-
return t = t !== void 0 ? t : 1e3, function(
|
|
829
|
-
const u = Date.now(),
|
|
830
|
-
i || (i = u), n[s] =
|
|
828
|
+
return t = t !== void 0 ? t : 1e3, function(l) {
|
|
829
|
+
const u = Date.now(), f = r[o];
|
|
830
|
+
i || (i = u), n[s] = l, r[s] = u;
|
|
831
831
|
let d = o, g = 0;
|
|
832
832
|
for (; d !== s; )
|
|
833
833
|
g += n[d++], d = d % e;
|
|
834
834
|
if (s = (s + 1) % e, s === o && (o = (o + 1) % e), u - i < t)
|
|
835
835
|
return;
|
|
836
|
-
const E =
|
|
836
|
+
const E = f && u - f;
|
|
837
837
|
return E ? Math.round(g * 1e3 / E) : void 0;
|
|
838
838
|
};
|
|
839
839
|
}
|
|
840
840
|
function Bn(e, t) {
|
|
841
841
|
let n = 0, r = 1e3 / t, s, o;
|
|
842
|
-
const i = (u,
|
|
843
|
-
n =
|
|
842
|
+
const i = (u, f = Date.now()) => {
|
|
843
|
+
n = f, s = null, o && (clearTimeout(o), o = null), e.apply(null, u);
|
|
844
844
|
};
|
|
845
845
|
return [(...u) => {
|
|
846
|
-
const
|
|
847
|
-
d >= r ? i(u,
|
|
846
|
+
const f = Date.now(), d = f - n;
|
|
847
|
+
d >= r ? i(u, f) : (s = u, o || (o = setTimeout(() => {
|
|
848
848
|
o = null, i(s);
|
|
849
849
|
}, r - d)));
|
|
850
850
|
}, () => s && i(s)];
|
|
@@ -853,15 +853,15 @@ const Z = (e, t, n = 3) => {
|
|
|
853
853
|
let r = 0;
|
|
854
854
|
const s = Fn(50, 250);
|
|
855
855
|
return Bn((o) => {
|
|
856
|
-
const i = o.loaded, c = o.lengthComputable ? o.total : void 0,
|
|
856
|
+
const i = o.loaded, c = o.lengthComputable ? o.total : void 0, l = i - r, u = s(l), f = i <= c;
|
|
857
857
|
r = i;
|
|
858
858
|
const d = {
|
|
859
859
|
loaded: i,
|
|
860
860
|
total: c,
|
|
861
861
|
progress: c ? i / c : void 0,
|
|
862
|
-
bytes:
|
|
862
|
+
bytes: l,
|
|
863
863
|
rate: u || void 0,
|
|
864
|
-
estimated: u && c &&
|
|
864
|
+
estimated: u && c && f ? (c - i) / u : void 0,
|
|
865
865
|
event: o,
|
|
866
866
|
lengthComputable: c != null,
|
|
867
867
|
[t ? "download" : "upload"]: !0
|
|
@@ -946,32 +946,32 @@ const ve = (e) => e instanceof P ? { ...e } : e;
|
|
|
946
946
|
function q(e, t) {
|
|
947
947
|
t = t || {};
|
|
948
948
|
const n = {};
|
|
949
|
-
function r(u,
|
|
950
|
-
return a.isPlainObject(u) && a.isPlainObject(
|
|
949
|
+
function r(u, f, d) {
|
|
950
|
+
return a.isPlainObject(u) && a.isPlainObject(f) ? a.merge.call({ caseless: d }, u, f) : a.isPlainObject(f) ? a.merge({}, f) : a.isArray(f) ? f.slice() : f;
|
|
951
951
|
}
|
|
952
|
-
function s(u,
|
|
953
|
-
if (a.isUndefined(
|
|
952
|
+
function s(u, f, d) {
|
|
953
|
+
if (a.isUndefined(f)) {
|
|
954
954
|
if (!a.isUndefined(u))
|
|
955
955
|
return r(void 0, u, d);
|
|
956
|
-
} else return r(u,
|
|
956
|
+
} else return r(u, f, d);
|
|
957
957
|
}
|
|
958
|
-
function o(u,
|
|
959
|
-
if (!a.isUndefined(
|
|
960
|
-
return r(void 0,
|
|
958
|
+
function o(u, f) {
|
|
959
|
+
if (!a.isUndefined(f))
|
|
960
|
+
return r(void 0, f);
|
|
961
961
|
}
|
|
962
|
-
function i(u,
|
|
963
|
-
if (a.isUndefined(
|
|
962
|
+
function i(u, f) {
|
|
963
|
+
if (a.isUndefined(f)) {
|
|
964
964
|
if (!a.isUndefined(u))
|
|
965
965
|
return r(void 0, u);
|
|
966
|
-
} else return r(void 0,
|
|
966
|
+
} else return r(void 0, f);
|
|
967
967
|
}
|
|
968
|
-
function c(u,
|
|
968
|
+
function c(u, f, d) {
|
|
969
969
|
if (d in t)
|
|
970
|
-
return r(u,
|
|
970
|
+
return r(u, f);
|
|
971
971
|
if (d in e)
|
|
972
972
|
return r(void 0, u);
|
|
973
973
|
}
|
|
974
|
-
const
|
|
974
|
+
const l = {
|
|
975
975
|
url: o,
|
|
976
976
|
method: o,
|
|
977
977
|
data: o,
|
|
@@ -1000,11 +1000,11 @@ function q(e, t) {
|
|
|
1000
1000
|
socketPath: i,
|
|
1001
1001
|
responseEncoding: i,
|
|
1002
1002
|
validateStatus: c,
|
|
1003
|
-
headers: (u,
|
|
1003
|
+
headers: (u, f) => s(ve(u), ve(f), !0)
|
|
1004
1004
|
};
|
|
1005
|
-
return a.forEach(Object.keys(Object.assign({}, e, t)), function(
|
|
1006
|
-
const d = f
|
|
1007
|
-
a.isUndefined(g) && d !== c || (n[
|
|
1005
|
+
return a.forEach(Object.keys(Object.assign({}, e, t)), function(f) {
|
|
1006
|
+
const d = l[f] || s, g = d(e[f], t[f], f);
|
|
1007
|
+
a.isUndefined(g) && d !== c || (n[f] = g);
|
|
1008
1008
|
}), n;
|
|
1009
1009
|
}
|
|
1010
1010
|
const ht = (e) => {
|
|
@@ -1014,13 +1014,13 @@ const ht = (e) => {
|
|
|
1014
1014
|
"Authorization",
|
|
1015
1015
|
"Basic " + btoa((c.username || "") + ":" + (c.password ? unescape(encodeURIComponent(c.password)) : ""))
|
|
1016
1016
|
);
|
|
1017
|
-
let
|
|
1017
|
+
let l;
|
|
1018
1018
|
if (a.isFormData(n)) {
|
|
1019
1019
|
if (A.hasStandardBrowserEnv || A.hasStandardBrowserWebWorkerEnv)
|
|
1020
1020
|
i.setContentType(void 0);
|
|
1021
|
-
else if ((
|
|
1022
|
-
const [u, ...
|
|
1023
|
-
i.setContentType([u || "multipart/form-data", ...
|
|
1021
|
+
else if ((l = i.getContentType()) !== !1) {
|
|
1022
|
+
const [u, ...f] = l ? l.split(";").map((d) => d.trim()).filter(Boolean) : [];
|
|
1023
|
+
i.setContentType([u || "multipart/form-data", ...f].join("; "));
|
|
1024
1024
|
}
|
|
1025
1025
|
}
|
|
1026
1026
|
if (A.hasStandardBrowserEnv && (r && a.isFunction(r) && (r = r(t)), r || r !== !1 && kn(t.url))) {
|
|
@@ -1033,9 +1033,9 @@ const ht = (e) => {
|
|
|
1033
1033
|
const s = ht(e);
|
|
1034
1034
|
let o = s.data;
|
|
1035
1035
|
const i = P.from(s.headers).normalize();
|
|
1036
|
-
let { responseType: c, onUploadProgress:
|
|
1036
|
+
let { responseType: c, onUploadProgress: l, onDownloadProgress: u } = s, f, d, g, E, h;
|
|
1037
1037
|
function y() {
|
|
1038
|
-
E && E(), h && h(), s.cancelToken && s.cancelToken.unsubscribe(
|
|
1038
|
+
E && E(), h && h(), s.cancelToken && s.cancelToken.unsubscribe(f), s.signal && s.signal.removeEventListener("abort", f);
|
|
1039
1039
|
}
|
|
1040
1040
|
let p = new XMLHttpRequest();
|
|
1041
1041
|
p.open(s.method.toUpperCase(), s.url, !0), p.timeout = s.timeout;
|
|
@@ -1075,9 +1075,9 @@ const ht = (e) => {
|
|
|
1075
1075
|
)), p = null;
|
|
1076
1076
|
}, o === void 0 && i.setContentType(null), "setRequestHeader" in p && a.forEach(i.toJSON(), function(N, T) {
|
|
1077
1077
|
p.setRequestHeader(T, N);
|
|
1078
|
-
}), a.isUndefined(s.withCredentials) || (p.withCredentials = !!s.withCredentials), c && c !== "json" && (p.responseType = s.responseType), u && ([g, h] = Z(u, !0), p.addEventListener("progress", g)),
|
|
1078
|
+
}), a.isUndefined(s.withCredentials) || (p.withCredentials = !!s.withCredentials), c && c !== "json" && (p.responseType = s.responseType), u && ([g, h] = Z(u, !0), p.addEventListener("progress", g)), l && p.upload && ([d, E] = Z(l), p.upload.addEventListener("progress", d), p.upload.addEventListener("loadend", E)), (s.cancelToken || s.signal) && (f = (C) => {
|
|
1079
1079
|
p && (r(!C || C.type ? new H(null, e, p) : C), p.abort(), p = null);
|
|
1080
|
-
}, s.cancelToken && s.cancelToken.subscribe(
|
|
1080
|
+
}, s.cancelToken && s.cancelToken.subscribe(f), s.signal && (s.signal.aborted ? f() : s.signal.addEventListener("abort", f)));
|
|
1081
1081
|
const S = Dn(s.url);
|
|
1082
1082
|
if (S && A.protocols.indexOf(S) === -1) {
|
|
1083
1083
|
r(new m("Unsupported protocol " + S + ":", m.ERR_BAD_REQUEST, e));
|
|
@@ -1092,8 +1092,8 @@ const ht = (e) => {
|
|
|
1092
1092
|
const o = function(u) {
|
|
1093
1093
|
if (!s) {
|
|
1094
1094
|
s = !0, c();
|
|
1095
|
-
const
|
|
1096
|
-
r.abort(
|
|
1095
|
+
const f = u instanceof Error ? u : this.reason;
|
|
1096
|
+
r.abort(f instanceof m ? f : new H(f instanceof Error ? f.message : f));
|
|
1097
1097
|
}
|
|
1098
1098
|
};
|
|
1099
1099
|
let i = t && setTimeout(() => {
|
|
@@ -1105,8 +1105,8 @@ const ht = (e) => {
|
|
|
1105
1105
|
}), e = null);
|
|
1106
1106
|
};
|
|
1107
1107
|
e.forEach((u) => u.addEventListener("abort", o));
|
|
1108
|
-
const { signal:
|
|
1109
|
-
return
|
|
1108
|
+
const { signal: l } = r;
|
|
1109
|
+
return l.unsubscribe = () => a.asap(c), l;
|
|
1110
1110
|
}
|
|
1111
1111
|
}, zn = function* (e, t) {
|
|
1112
1112
|
let n = e.byteLength;
|
|
@@ -1138,29 +1138,29 @@ const ht = (e) => {
|
|
|
1138
1138
|
}
|
|
1139
1139
|
}, qe = (e, t, n, r) => {
|
|
1140
1140
|
const s = Vn(e, t);
|
|
1141
|
-
let o = 0, i, c = (
|
|
1142
|
-
i || (i = !0, r && r(
|
|
1141
|
+
let o = 0, i, c = (l) => {
|
|
1142
|
+
i || (i = !0, r && r(l));
|
|
1143
1143
|
};
|
|
1144
1144
|
return new ReadableStream({
|
|
1145
|
-
async pull(
|
|
1145
|
+
async pull(l) {
|
|
1146
1146
|
try {
|
|
1147
|
-
const { done: u, value:
|
|
1147
|
+
const { done: u, value: f } = await s.next();
|
|
1148
1148
|
if (u) {
|
|
1149
|
-
c(),
|
|
1149
|
+
c(), l.close();
|
|
1150
1150
|
return;
|
|
1151
1151
|
}
|
|
1152
|
-
let d =
|
|
1152
|
+
let d = f.byteLength;
|
|
1153
1153
|
if (n) {
|
|
1154
1154
|
let g = o += d;
|
|
1155
1155
|
n(g);
|
|
1156
1156
|
}
|
|
1157
|
-
|
|
1157
|
+
l.enqueue(new Uint8Array(f));
|
|
1158
1158
|
} catch (u) {
|
|
1159
1159
|
throw c(u), u;
|
|
1160
1160
|
}
|
|
1161
1161
|
},
|
|
1162
|
-
cancel(
|
|
1163
|
-
return c(
|
|
1162
|
+
cancel(l) {
|
|
1163
|
+
return c(l), s.return();
|
|
1164
1164
|
}
|
|
1165
1165
|
}, {
|
|
1166
1166
|
highWaterMark: 2
|
|
@@ -1217,9 +1217,9 @@ const Wn = async (e) => {
|
|
|
1217
1217
|
cancelToken: o,
|
|
1218
1218
|
timeout: i,
|
|
1219
1219
|
onDownloadProgress: c,
|
|
1220
|
-
onUploadProgress:
|
|
1220
|
+
onUploadProgress: l,
|
|
1221
1221
|
responseType: u,
|
|
1222
|
-
headers:
|
|
1222
|
+
headers: f,
|
|
1223
1223
|
withCredentials: d = "same-origin",
|
|
1224
1224
|
fetchOptions: g
|
|
1225
1225
|
} = ht(e);
|
|
@@ -1230,16 +1230,16 @@ const Wn = async (e) => {
|
|
|
1230
1230
|
});
|
|
1231
1231
|
let p;
|
|
1232
1232
|
try {
|
|
1233
|
-
if (
|
|
1233
|
+
if (l && Mn && n !== "get" && n !== "head" && (p = await Qn(f, r)) !== 0) {
|
|
1234
1234
|
let T = new Request(t, {
|
|
1235
1235
|
method: "POST",
|
|
1236
1236
|
body: r,
|
|
1237
1237
|
duplex: "half"
|
|
1238
1238
|
}), U;
|
|
1239
|
-
if (a.isFormData(r) && (U = T.headers.get("content-type")) &&
|
|
1239
|
+
if (a.isFormData(r) && (U = T.headers.get("content-type")) && f.setContentType(U), T.body) {
|
|
1240
1240
|
const [F, Q] = Be(
|
|
1241
1241
|
p,
|
|
1242
|
-
Z(ke(
|
|
1242
|
+
Z(ke(l))
|
|
1243
1243
|
);
|
|
1244
1244
|
r = qe(T.body, Ie, F, Q);
|
|
1245
1245
|
}
|
|
@@ -1250,7 +1250,7 @@ const Wn = async (e) => {
|
|
|
1250
1250
|
...g,
|
|
1251
1251
|
signal: E,
|
|
1252
1252
|
method: n.toUpperCase(),
|
|
1253
|
-
headers:
|
|
1253
|
+
headers: f.normalize().toJSON(),
|
|
1254
1254
|
body: r,
|
|
1255
1255
|
duplex: "half",
|
|
1256
1256
|
credentials: w ? d : void 0
|
|
@@ -1324,7 +1324,7 @@ const je = (e) => `- ${e}`, Xn = (e) => a.isFunction(e) || e === null || e === !
|
|
|
1324
1324
|
}
|
|
1325
1325
|
if (!r) {
|
|
1326
1326
|
const o = Object.entries(s).map(
|
|
1327
|
-
([c,
|
|
1327
|
+
([c, l]) => `adapter ${c} ` + (l === !1 ? "is not supported by the environment" : "is not available in the build")
|
|
1328
1328
|
);
|
|
1329
1329
|
let i = t ? o.length > 1 ? `since :
|
|
1330
1330
|
` + o.map(je).join(`
|
|
@@ -1393,9 +1393,9 @@ function Yn(e, t, n) {
|
|
|
1393
1393
|
for (; s-- > 0; ) {
|
|
1394
1394
|
const o = r[s], i = t[o];
|
|
1395
1395
|
if (i) {
|
|
1396
|
-
const c = e[o],
|
|
1397
|
-
if (
|
|
1398
|
-
throw new m("option " + o + " must be " +
|
|
1396
|
+
const c = e[o], l = c === void 0 || i(c, o, e);
|
|
1397
|
+
if (l !== !0)
|
|
1398
|
+
throw new m("option " + o + " must be " + l, m.ERR_BAD_OPTION_VALUE);
|
|
1399
1399
|
continue;
|
|
1400
1400
|
}
|
|
1401
1401
|
if (n !== !0)
|
|
@@ -1462,20 +1462,20 @@ let v = class {
|
|
|
1462
1462
|
}
|
|
1463
1463
|
), n.headers = P.concat(i, o);
|
|
1464
1464
|
const c = [];
|
|
1465
|
-
let
|
|
1465
|
+
let l = !0;
|
|
1466
1466
|
this.interceptors.request.forEach(function(y) {
|
|
1467
|
-
typeof y.runWhen == "function" && y.runWhen(n) === !1 || (
|
|
1467
|
+
typeof y.runWhen == "function" && y.runWhen(n) === !1 || (l = l && y.synchronous, c.unshift(y.fulfilled, y.rejected));
|
|
1468
1468
|
});
|
|
1469
1469
|
const u = [];
|
|
1470
1470
|
this.interceptors.response.forEach(function(y) {
|
|
1471
1471
|
u.push(y.fulfilled, y.rejected);
|
|
1472
1472
|
});
|
|
1473
|
-
let
|
|
1474
|
-
if (!
|
|
1473
|
+
let f, d = 0, g;
|
|
1474
|
+
if (!l) {
|
|
1475
1475
|
const h = [He.bind(this), void 0];
|
|
1476
|
-
for (h.unshift.apply(h, c), h.push.apply(h, u), g = h.length,
|
|
1477
|
-
|
|
1478
|
-
return
|
|
1476
|
+
for (h.unshift.apply(h, c), h.push.apply(h, u), g = h.length, f = Promise.resolve(n); d < g; )
|
|
1477
|
+
f = f.then(h[d++], h[d++]);
|
|
1478
|
+
return f;
|
|
1479
1479
|
}
|
|
1480
1480
|
g = c.length;
|
|
1481
1481
|
let E = n;
|
|
@@ -1489,13 +1489,13 @@ let v = class {
|
|
|
1489
1489
|
}
|
|
1490
1490
|
}
|
|
1491
1491
|
try {
|
|
1492
|
-
|
|
1492
|
+
f = He.call(this, E);
|
|
1493
1493
|
} catch (h) {
|
|
1494
1494
|
return Promise.reject(h);
|
|
1495
1495
|
}
|
|
1496
1496
|
for (d = 0, g = u.length; d < g; )
|
|
1497
|
-
|
|
1498
|
-
return
|
|
1497
|
+
f = f.then(u[d++], u[d++]);
|
|
1498
|
+
return f;
|
|
1499
1499
|
}
|
|
1500
1500
|
getUri(t) {
|
|
1501
1501
|
t = q(this.defaults, t);
|
|
@@ -1752,53 +1752,55 @@ class nr {
|
|
|
1752
1752
|
R(this, "_debug");
|
|
1753
1753
|
this.httpClient = t.httpClient, this._debug = t.debug;
|
|
1754
1754
|
}
|
|
1755
|
-
async create(t, n, r, s) {
|
|
1756
|
-
var
|
|
1755
|
+
async create(t, n, r, s, o) {
|
|
1756
|
+
var i;
|
|
1757
1757
|
try {
|
|
1758
1758
|
await this.httpClient.post({
|
|
1759
1759
|
path: "/affiliates",
|
|
1760
1760
|
postData: {
|
|
1761
1761
|
address: t,
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1762
|
+
blockchain: n,
|
|
1763
|
+
name: r,
|
|
1764
|
+
code: r,
|
|
1765
|
+
signature: s,
|
|
1766
|
+
account_chain_id: o
|
|
1766
1767
|
}
|
|
1767
1768
|
});
|
|
1768
|
-
} catch (
|
|
1769
|
-
if (
|
|
1770
|
-
const
|
|
1771
|
-
if (typeof (
|
|
1772
|
-
const
|
|
1773
|
-
throw
|
|
1774
|
-
} else if ((
|
|
1775
|
-
throw new ze(
|
|
1769
|
+
} catch (c) {
|
|
1770
|
+
if (c instanceof G) {
|
|
1771
|
+
const l = (i = c.response) == null ? void 0 : i.data;
|
|
1772
|
+
if (typeof (l == null ? void 0 : l.message) == "string") {
|
|
1773
|
+
const u = l.message.toLowerCase();
|
|
1774
|
+
throw u == "invalid signature" ? new Je() : u == "address in use" ? new Ve(t) : u == "code in use" ? new Ke(r) : new Error(u);
|
|
1775
|
+
} else if ((l == null ? void 0 : l.message) instanceof Array)
|
|
1776
|
+
throw new ze(l.message);
|
|
1776
1777
|
}
|
|
1777
|
-
throw
|
|
1778
|
+
throw c;
|
|
1778
1779
|
}
|
|
1779
1780
|
}
|
|
1780
|
-
async update(t, n, r, s) {
|
|
1781
|
-
var
|
|
1781
|
+
async update(t, n, r, s, o) {
|
|
1782
|
+
var i;
|
|
1782
1783
|
try {
|
|
1783
1784
|
await this.httpClient.post({
|
|
1784
1785
|
path: `/affiliates/${t}`,
|
|
1785
1786
|
postData: {
|
|
1786
|
-
code:
|
|
1787
|
+
code: r,
|
|
1787
1788
|
address: t,
|
|
1788
|
-
|
|
1789
|
-
|
|
1789
|
+
blockchain: n,
|
|
1790
|
+
signature: s,
|
|
1791
|
+
account_chain_id: o
|
|
1790
1792
|
}
|
|
1791
1793
|
});
|
|
1792
|
-
} catch (
|
|
1793
|
-
if (
|
|
1794
|
-
const
|
|
1795
|
-
if (typeof (
|
|
1796
|
-
const
|
|
1797
|
-
throw
|
|
1798
|
-
} else if ((
|
|
1799
|
-
throw new ze(
|
|
1794
|
+
} catch (c) {
|
|
1795
|
+
if (c instanceof G) {
|
|
1796
|
+
const l = (i = c.response) == null ? void 0 : i.data;
|
|
1797
|
+
if (typeof (l == null ? void 0 : l.message) == "string") {
|
|
1798
|
+
const u = l.message.toLowerCase();
|
|
1799
|
+
throw u == "invalid signature" ? new Je() : u == "address in use" ? new Ve(t) : u == "code in use" ? new Ke(r) : new Error(u);
|
|
1800
|
+
} else if ((l == null ? void 0 : l.message) instanceof Array)
|
|
1801
|
+
throw new ze(l.message);
|
|
1800
1802
|
}
|
|
1801
|
-
throw
|
|
1803
|
+
throw c;
|
|
1802
1804
|
}
|
|
1803
1805
|
}
|
|
1804
1806
|
async isCodeFree(t) {
|
|
@@ -1811,14 +1813,14 @@ class nr {
|
|
|
1811
1813
|
throw console.error("Fuul SDK: Could not check affiliate code", r), r;
|
|
1812
1814
|
}
|
|
1813
1815
|
}
|
|
1814
|
-
async getCode(t) {
|
|
1815
|
-
var
|
|
1816
|
+
async getCode(t, n) {
|
|
1817
|
+
var r;
|
|
1816
1818
|
try {
|
|
1817
|
-
return (await this.httpClient.get({ path: `/affiliates/${t}
|
|
1818
|
-
} catch (
|
|
1819
|
-
if (
|
|
1819
|
+
return (await this.httpClient.get({ path: `/affiliates/${t}`, queryParams: { blockchain: n } })).data.code;
|
|
1820
|
+
} catch (s) {
|
|
1821
|
+
if (s instanceof G && ((r = s.response) == null ? void 0 : r.status) === 404)
|
|
1820
1822
|
return null;
|
|
1821
|
-
throw console.error("Fuul SDK: Could not get affiliate code",
|
|
1823
|
+
throw console.error("Fuul SDK: Could not get affiliate code", s), s;
|
|
1822
1824
|
}
|
|
1823
1825
|
}
|
|
1824
1826
|
}
|
|
@@ -1874,10 +1876,10 @@ class ar {
|
|
|
1874
1876
|
const s = JSON.parse(r);
|
|
1875
1877
|
if (this.getCurrentTimestamp() - s.timestamp > ir)
|
|
1876
1878
|
return !1;
|
|
1877
|
-
let
|
|
1878
|
-
t.metadata && (
|
|
1879
|
+
let l = !1;
|
|
1880
|
+
t.metadata && (l = s.metadata.tracking_id === t.metadata.tracking_id && s.metadata.project_id === t.metadata.project_id && s.metadata.referrer === t.metadata.referrer && s.metadata.source === t.metadata.source && s.metadata.category === t.metadata.category && s.metadata.title === t.metadata.title && s.metadata.tag === t.metadata.tag && s.user_address === t.user_address && s.signature === t.signature && s.signature_message === t.signature_message);
|
|
1879
1881
|
let u = !1;
|
|
1880
|
-
return t.args && s.args && (u = s.args.page === t.args.page), u &&
|
|
1882
|
+
return t.args && s.args && (u = s.args.page === t.args.page), u && l;
|
|
1881
1883
|
}
|
|
1882
1884
|
getCurrentTimestamp() {
|
|
1883
1885
|
return Date.now() / 1e3;
|
|
@@ -1887,7 +1889,7 @@ class ar {
|
|
|
1887
1889
|
localStorage.setItem(n, JSON.stringify(s));
|
|
1888
1890
|
}
|
|
1889
1891
|
}
|
|
1890
|
-
const cr = "
|
|
1892
|
+
const cr = "5.0.0", ur = {
|
|
1891
1893
|
version: cr
|
|
1892
1894
|
};
|
|
1893
1895
|
class lr {
|
|
@@ -2077,23 +2079,23 @@ async function _r(e, t) {
|
|
|
2077
2079
|
e != null && e.address && (n.user_address = e.address), e != null && e.signature && (n.signature = e == null ? void 0 : e.signature, n.signature_message = e == null ? void 0 : e.message), e != null && e.accountChainId && (n.account_chain_id = e.accountChainId), await ie.sendEvent(n, t);
|
|
2078
2080
|
}
|
|
2079
2081
|
async function xr(e) {
|
|
2080
|
-
x(), await $.create(e.address, e.code, e.signature, e.accountChainId);
|
|
2082
|
+
x(), await $.create(e.address, e.blockchain, e.code, e.signature, e.accountChainId);
|
|
2081
2083
|
}
|
|
2082
2084
|
async function Nr(e) {
|
|
2083
|
-
x(), await $.update(e.address, e.code, e.signature, e.accountChainId);
|
|
2085
|
+
x(), await $.update(e.address, e.blockchain, e.code, e.signature, e.accountChainId);
|
|
2084
2086
|
}
|
|
2085
|
-
async function Ur(e) {
|
|
2086
|
-
return x(), await $.getCode(e);
|
|
2087
|
+
async function Ur(e, t) {
|
|
2088
|
+
return x(), await $.getCode(e, t);
|
|
2087
2089
|
}
|
|
2088
2090
|
async function Lr(e) {
|
|
2089
2091
|
return x(), await $.isCodeFree(e);
|
|
2090
2092
|
}
|
|
2091
|
-
async function Dr(e, t, n) {
|
|
2093
|
+
async function Dr(e, t, n, r) {
|
|
2092
2094
|
x();
|
|
2093
|
-
const
|
|
2094
|
-
af:
|
|
2095
|
+
const s = await $.getCode(t, n), o = new URLSearchParams({
|
|
2096
|
+
af: s ?? t
|
|
2095
2097
|
});
|
|
2096
|
-
return
|
|
2098
|
+
return r != null && r.title && o.append("af_title", r.title), r != null && r.format && o.append("af_format", r.format), r != null && r.place && o.append("af_place", r.place), `${e}?${o.toString()}`;
|
|
2097
2099
|
}
|
|
2098
2100
|
function Fr(e) {
|
|
2099
2101
|
return ae.getPayoutsLeaderboard(e);
|
package/dist/index.umd.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
(function(T,A){typeof exports=="object"&&typeof module<"u"?A(exports):typeof define=="function"&&define.amd?define(["exports"],A):(T=typeof globalThis<"u"?globalThis:T||self,A(T.Fuul={}))})(this,function(T){"use strict";var jr=Object.defineProperty;var Hr=(T,A,H)=>A in T?jr(T,A,{enumerable:!0,configurable:!0,writable:!0,value:H}):T[A]=H;var R=(T,A,H)=>Hr(T,typeof A!="symbol"?A+"":A,H);function A(e,t){return function(){return e.apply(t,arguments)}}const{toString:H}=Object.prototype,{getPrototypeOf:fe}=Object,Y=(e=>t=>{const n=H.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),N=e=>(e=e.toLowerCase(),t=>Y(t)===e),Z=e=>t=>typeof t===e,{isArray:$}=Array,M=Z("undefined");function At(e){return e!==null&&!M(e)&&e.constructor!==null&&!M(e.constructor)&&x(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const Be=N("ArrayBuffer");function Pt(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&Be(e.buffer),t}const Ot=Z("string"),x=Z("function"),ke=Z("number"),ee=e=>e!==null&&typeof e=="object",_t=e=>e===!0||e===!1,te=e=>{if(Y(e)!=="object")return!1;const t=fe(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},xt=N("Date"),Nt=N("File"),Ut=N("Blob"),Lt=N("FileList"),Dt=e=>ee(e)&&x(e.pipe),Ft=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||x(e.append)&&((t=Y(e))==="formdata"||t==="object"&&x(e.toString)&&e.toString()==="[object FormData]"))},Bt=N("URLSearchParams"),[kt,vt,It,qt]=["ReadableStream","Request","Response","Headers"].map(N),jt=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function W(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),$(e))for(r=0,s=e.length;r<s;r++)t.call(null,e[r],r,e);else{const o=n?Object.getOwnPropertyNames(e):Object.keys(e),i=o.length;let c;for(r=0;r<i;r++)c=o[r],t.call(null,e[c],c,e)}}function ve(e,t){t=t.toLowerCase();const n=Object.keys(e);let r=n.length,s;for(;r-- >0;)if(s=n[r],t===s.toLowerCase())return s;return null}const k=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,Ie=e=>!M(e)&&e!==k;function de(){const{caseless:e}=Ie(this)&&this||{},t={},n=(r,s)=>{const o=e&&ve(t,s)||s;te(t[o])&&te(r)?t[o]=de(t[o],r):te(r)?t[o]=de({},r):$(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r<s;r++)arguments[r]&&W(arguments[r],n);return t}const Ht=(e,t,n,{allOwnKeys:r}={})=>(W(t,(s,o)=>{n&&x(s)?e[o]=A(s,n):e[o]=s},{allOwnKeys:r}),e),$t=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Vt=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},zt=(e,t,n,r)=>{let s,o,i;const c={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!c[i]&&(t[i]=e[i],c[i]=!0);e=n!==!1&&fe(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Kt=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Jt=e=>{if(!e)return null;if($(e))return e;let t=e.length;if(!ke(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Mt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&fe(Uint8Array)),Wt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},Qt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Gt=N("HTMLFormElement"),Xt=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),qe=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),Yt=N("RegExp"),je=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};W(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},Zt=e=>{je(e,(t,n)=>{if(x(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(x(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},en=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return $(e)?r(e):r(String(e).split(t)),n},tn=()=>{},nn=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t,he="abcdefghijklmnopqrstuvwxyz",He="0123456789",$e={DIGIT:He,ALPHA:he,ALPHA_DIGIT:he+he.toUpperCase()+He},rn=(e=16,t=$e.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function sn(e){return!!(e&&x(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const on=e=>{const t=new Array(10),n=(r,s)=>{if(ee(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=$(r)?[]:{};return W(r,(i,c)=>{const f=n(i,s+1);!M(f)&&(o[c]=f)}),t[s]=void 0,o}}return r};return n(e,0)},an=N("AsyncFunction"),cn=e=>e&&(ee(e)||x(e))&&x(e.then)&&x(e.catch),Ve=((e,t)=>e?setImmediate:t?((n,r)=>(k.addEventListener("message",({source:s,data:o})=>{s===k&&o===n&&r.length&&r.shift()()},!1),s=>{r.push(s),k.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",x(k.postMessage)),un=typeof queueMicrotask<"u"?queueMicrotask.bind(k):typeof process<"u"&&process.nextTick||Ve,a={isArray:$,isArrayBuffer:Be,isBuffer:At,isFormData:Ft,isArrayBufferView:Pt,isString:Ot,isNumber:ke,isBoolean:_t,isObject:ee,isPlainObject:te,isReadableStream:kt,isRequest:vt,isResponse:It,isHeaders:qt,isUndefined:M,isDate:xt,isFile:Nt,isBlob:Ut,isRegExp:Yt,isFunction:x,isStream:Dt,isURLSearchParams:Bt,isTypedArray:Mt,isFileList:Lt,forEach:W,merge:de,extend:Ht,trim:jt,stripBOM:$t,inherits:Vt,toFlatObject:zt,kindOf:Y,kindOfTest:N,endsWith:Kt,toArray:Jt,forEachEntry:Wt,matchAll:Qt,isHTMLForm:Gt,hasOwnProperty:qe,hasOwnProp:qe,reduceDescriptors:je,freezeMethods:Zt,toObjectSet:en,toCamelCase:Xt,noop:tn,toFiniteNumber:nn,findKey:ve,global:k,isContextDefined:Ie,ALPHABET:$e,generateString:rn,isSpecCompliantForm:sn,toJSONObject:on,isAsyncFn:an,isThenable:cn,setImmediate:Ve,asap:un};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s,this.status=s.status?s.status:null)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.status}}});const ze=m.prototype,Ke={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Ke[e]={value:e}}),Object.defineProperties(m,Ke),Object.defineProperty(ze,"isAxiosError",{value:!0}),m.from=(e,t,n,r,s,o)=>{const i=Object.create(ze);return a.toFlatObject(e,i,function(f){return f!==Error.prototype},c=>c!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const ln=null;function pe(e){return a.isPlainObject(e)||a.isArray(e)}function Je(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function Me(e,t,n){return e?e.concat(t).map(function(s,o){return s=Je(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function fn(e){return a.isArray(e)&&!e.some(pe)}const dn=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function ne(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(y,p){return!a.isUndefined(p[y])});const r=n.metaTokens,s=n.visitor||l,o=n.dots,i=n.indexes,f=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function u(h){if(h===null)return"";if(a.isDate(h))return h.toISOString();if(!f&&a.isBlob(h))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(h)||a.isTypedArray(h)?f&&typeof Blob=="function"?new Blob([h]):Buffer.from(h):h}function l(h,y,p){let b=h;if(h&&!p&&typeof h=="object"){if(a.endsWith(y,"{}"))y=r?y:y.slice(0,-2),h=JSON.stringify(h);else if(a.isArray(h)&&fn(h)||(a.isFileList(h)||a.endsWith(y,"[]"))&&(b=a.toArray(h)))return y=Je(y),b.forEach(function(C,L){!(a.isUndefined(C)||C===null)&&t.append(i===!0?Me([y],L,o):i===null?y:y+"[]",u(C))}),!1}return pe(h)?!0:(t.append(Me(p,y,o),u(h)),!1)}const d=[],w=Object.assign(dn,{defaultVisitor:l,convertValue:u,isVisitable:pe});function E(h,y){if(!a.isUndefined(h)){if(d.indexOf(h)!==-1)throw Error("Circular reference detected in "+y.join("."));d.push(h),a.forEach(h,function(b,S){(!(a.isUndefined(b)||b===null)&&s.call(t,b,a.isString(S)?S.trim():S,y,w))===!0&&E(b,y?y.concat(S):[S])}),d.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return E(e),t}function We(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function me(e,t){this._pairs=[],e&&ne(e,this,t)}const Qe=me.prototype;Qe.append=function(t,n){this._pairs.push([t,n])},Qe.toString=function(t){const n=t?function(r){return t.call(this,r,We)}:We;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function hn(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Ge(e,t,n){if(!t)return e;const r=n&&n.encode||hn,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new me(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class Xe{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const Ye={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},pn={isBrowser:!0,classes:{URLSearchParams:typeof URLSearchParams<"u"?URLSearchParams:me,FormData:typeof FormData<"u"?FormData:null,Blob:typeof Blob<"u"?Blob:null},protocols:["http","https","file","blob","url","data"]},ye=typeof window<"u"&&typeof document<"u",ge=typeof navigator=="object"&&navigator||void 0,mn=ye&&(!ge||["ReactNative","NativeScript","NS"].indexOf(ge.product)<0),yn=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",gn=ye&&window.location.href||"http://localhost",P={...Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:ye,hasStandardBrowserEnv:mn,hasStandardBrowserWebWorkerEnv:yn,navigator:ge,origin:gn},Symbol.toStringTag,{value:"Module"})),...pn};function wn(e,t){return ne(e,new P.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return P.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function bn(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function En(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r<s;r++)o=n[r],t[o]=e[o];return t}function Ze(e){function t(n,r,s,o){let i=n[o++];if(i==="__proto__")return!0;const c=Number.isFinite(+i),f=o>=n.length;return i=!i&&a.isArray(s)?s.length:i,f?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!c):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=En(s[i])),!c)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(bn(r),s,n,0)}),n}return null}function Sn(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(0,JSON.stringify)(e)}const Q={transitional:Ye,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s?JSON.stringify(Ze(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t)||a.isReadableStream(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return wn(t,this.formSerializer).toString();if((c=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const f=this.env&&this.env.FormData;return ne(c?{"files[]":t}:t,f&&new f,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Sn(t)):t}],transformResponse:[function(t){const n=this.transitional||Q.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(a.isResponse(t)||a.isReadableStream(t))return t;if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(c){if(i)throw c.name==="SyntaxError"?m.from(c,m.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:P.classes.FormData,Blob:P.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{Q.headers[e]={}});const Cn=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Rn=e=>{const t={};let n,r,s;return e&&e.split(`
|
|
2
|
-
`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Cn[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},et=Symbol("internals");function G(e){return e&&String(e).trim().toLowerCase()}function re(e){return e===!1||e==null?e:a.isArray(e)?e.map(re):String(e)}function Tn(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const An=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function we(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function Pn(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function On(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}let O=class{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(c,
|
|
3
|
-
`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[et]=this[et]={accessors:{}}).accessors,s=this.prototype;function o(i){const c=G(i);r[c]||(On(s,i),r[c]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}};O.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),a.reduceDescriptors(O.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}}),a.freezeMethods(O);function be(e,t){const n=this||Q,r=t||n,s=O.from(r.headers);let o=r.data;return a.forEach(e,function(c){o=c.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function tt(e){return!!(e&&e.__CANCEL__)}function V(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(V,m,{__CANCEL__:!0});function nt(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function _n(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function xn(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(f){const u=Date.now(),l=r[o];i||(i=u),n[s]=f,r[s]=u;let d=o,w=0;for(;d!==s;)w+=n[d++],d=d%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),u-i<t)return;const E=l&&u-l;return E?Math.round(w*1e3/E):void 0}}function Nn(e,t){let n=0,r=1e3/t,s,o;const i=(u,l=Date.now())=>{n=l,s=null,o&&(clearTimeout(o),o=null),e.apply(null,u)};return[(...u)=>{const l=Date.now(),d=l-n;d>=r?i(u,l):(s=u,o||(o=setTimeout(()=>{o=null,i(s)},r-d)))},()=>s&&i(s)]}const se=(e,t,n=3)=>{let r=0;const s=xn(50,250);return Nn(o=>{const i=o.loaded,c=o.lengthComputable?o.total:void 0,f=i-r,u=s(f),l=i<=c;r=i;const d={loaded:i,total:c,progress:c?i/c:void 0,bytes:f,rate:u||void 0,estimated:u&&c&&l?(c-i)/u:void 0,event:o,lengthComputable:c!=null,[t?"download":"upload"]:!0};e(d)},n)},rt=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},st=e=>(...t)=>a.asap(()=>e(...t)),Un=P.hasStandardBrowserEnv?function(){const t=P.navigator&&/(msie|trident)/i.test(P.navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const c=a.isString(i)?s(i):i;return c.protocol===r.protocol&&c.host===r.host}}():function(){return function(){return!0}}(),Ln=P.hasStandardBrowserEnv?{write(e,t,n,r,s,o){const i=[e+"="+encodeURIComponent(t)];a.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),a.isString(r)&&i.push("path="+r),a.isString(s)&&i.push("domain="+s),o===!0&&i.push("secure"),document.cookie=i.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function Dn(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function Fn(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function ot(e,t){return e&&!Dn(t)?Fn(e,t):t}const it=e=>e instanceof O?{...e}:e;function v(e,t){t=t||{};const n={};function r(u,l,d){return a.isPlainObject(u)&&a.isPlainObject(l)?a.merge.call({caseless:d},u,l):a.isPlainObject(l)?a.merge({},l):a.isArray(l)?l.slice():l}function s(u,l,d){if(a.isUndefined(l)){if(!a.isUndefined(u))return r(void 0,u,d)}else return r(u,l,d)}function o(u,l){if(!a.isUndefined(l))return r(void 0,l)}function i(u,l){if(a.isUndefined(l)){if(!a.isUndefined(u))return r(void 0,u)}else return r(void 0,l)}function c(u,l,d){if(d in t)return r(u,l);if(d in e)return r(void 0,u)}const f={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:c,headers:(u,l)=>s(it(u),it(l),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(l){const d=f[l]||s,w=d(e[l],t[l],l);a.isUndefined(w)&&d!==c||(n[l]=w)}),n}const at=e=>{const t=v({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:s,xsrfCookieName:o,headers:i,auth:c}=t;t.headers=i=O.from(i),t.url=Ge(ot(t.baseURL,t.url),e.params,e.paramsSerializer),c&&i.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?unescape(encodeURIComponent(c.password)):"")));let f;if(a.isFormData(n)){if(P.hasStandardBrowserEnv||P.hasStandardBrowserWebWorkerEnv)i.setContentType(void 0);else if((f=i.getContentType())!==!1){const[u,...l]=f?f.split(";").map(d=>d.trim()).filter(Boolean):[];i.setContentType([u||"multipart/form-data",...l].join("; "))}}if(P.hasStandardBrowserEnv&&(r&&a.isFunction(r)&&(r=r(t)),r||r!==!1&&Un(t.url))){const u=s&&o&&Ln.read(o);u&&i.set(s,u)}return t},Bn=typeof XMLHttpRequest<"u"&&function(e){return new Promise(function(n,r){const s=at(e);let o=s.data;const i=O.from(s.headers).normalize();let{responseType:c,onUploadProgress:f,onDownloadProgress:u}=s,l,d,w,E,h;function y(){E&&E(),h&&h(),s.cancelToken&&s.cancelToken.unsubscribe(l),s.signal&&s.signal.removeEventListener("abort",l)}let p=new XMLHttpRequest;p.open(s.method.toUpperCase(),s.url,!0),p.timeout=s.timeout;function b(){if(!p)return;const C=O.from("getAllResponseHeaders"in p&&p.getAllResponseHeaders()),_={data:!c||c==="text"||c==="json"?p.responseText:p.response,status:p.status,statusText:p.statusText,headers:C,config:e,request:p};nt(function(j){n(j),y()},function(j){r(j),y()},_),p=null}"onloadend"in p?p.onloadend=b:p.onreadystatechange=function(){!p||p.readyState!==4||p.status===0&&!(p.responseURL&&p.responseURL.indexOf("file:")===0)||setTimeout(b)},p.onabort=function(){p&&(r(new m("Request aborted",m.ECONNABORTED,e,p)),p=null)},p.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,p)),p=null},p.ontimeout=function(){let L=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded";const _=s.transitional||Ye;s.timeoutErrorMessage&&(L=s.timeoutErrorMessage),r(new m(L,_.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,p)),p=null},o===void 0&&i.setContentType(null),"setRequestHeader"in p&&a.forEach(i.toJSON(),function(L,_){p.setRequestHeader(_,L)}),a.isUndefined(s.withCredentials)||(p.withCredentials=!!s.withCredentials),c&&c!=="json"&&(p.responseType=s.responseType),u&&([w,h]=se(u,!0),p.addEventListener("progress",w)),f&&p.upload&&([d,E]=se(f),p.upload.addEventListener("progress",d),p.upload.addEventListener("loadend",E)),(s.cancelToken||s.signal)&&(l=C=>{p&&(r(!C||C.type?new V(null,e,p):C),p.abort(),p=null)},s.cancelToken&&s.cancelToken.subscribe(l),s.signal&&(s.signal.aborted?l():s.signal.addEventListener("abort",l)));const S=_n(s.url);if(S&&P.protocols.indexOf(S)===-1){r(new m("Unsupported protocol "+S+":",m.ERR_BAD_REQUEST,e));return}p.send(o||null)})},kn=(e,t)=>{const{length:n}=e=e?e.filter(Boolean):[];if(t||n){let r=new AbortController,s;const o=function(u){if(!s){s=!0,c();const l=u instanceof Error?u:this.reason;r.abort(l instanceof m?l:new V(l instanceof Error?l.message:l))}};let i=t&&setTimeout(()=>{i=null,o(new m(`timeout ${t} of ms exceeded`,m.ETIMEDOUT))},t);const c=()=>{e&&(i&&clearTimeout(i),i=null,e.forEach(u=>{u.unsubscribe?u.unsubscribe(o):u.removeEventListener("abort",o)}),e=null)};e.forEach(u=>u.addEventListener("abort",o));const{signal:f}=r;return f.unsubscribe=()=>a.asap(c),f}},vn=function*(e,t){let n=e.byteLength;if(n<t){yield e;return}let r=0,s;for(;r<n;)s=r+t,yield e.slice(r,s),r=s},In=async function*(e,t){for await(const n of qn(e))yield*vn(n,t)},qn=async function*(e){if(e[Symbol.asyncIterator]){yield*e;return}const t=e.getReader();try{for(;;){const{done:n,value:r}=await t.read();if(n)break;yield r}}finally{await t.cancel()}},ct=(e,t,n,r)=>{const s=In(e,t);let o=0,i,c=f=>{i||(i=!0,r&&r(f))};return new ReadableStream({async pull(f){try{const{done:u,value:l}=await s.next();if(u){c(),f.close();return}let d=l.byteLength;if(n){let w=o+=d;n(w)}f.enqueue(new Uint8Array(l))}catch(u){throw c(u),u}},cancel(f){return c(f),s.return()}},{highWaterMark:2})},oe=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",ut=oe&&typeof ReadableStream=="function",jn=oe&&(typeof TextEncoder=="function"?(e=>t=>e.encode(t))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),lt=(e,...t)=>{try{return!!e(...t)}catch{return!1}},Hn=ut&<(()=>{let e=!1;const t=new Request(P.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t}),ft=64*1024,Ee=ut&<(()=>a.isReadableStream(new Response("").body)),ie={stream:Ee&&(e=>e.body)};oe&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(t=>{!ie[t]&&(ie[t]=a.isFunction(e[t])?n=>n[t]():(n,r)=>{throw new m(`Response type '${t}' is not supported`,m.ERR_NOT_SUPPORT,r)})})})(new Response);const $n=async e=>{if(e==null)return 0;if(a.isBlob(e))return e.size;if(a.isSpecCompliantForm(e))return(await new Request(P.origin,{method:"POST",body:e}).arrayBuffer()).byteLength;if(a.isArrayBufferView(e)||a.isArrayBuffer(e))return e.byteLength;if(a.isURLSearchParams(e)&&(e=e+""),a.isString(e))return(await jn(e)).byteLength},Vn=async(e,t)=>{const n=a.toFiniteNumber(e.getContentLength());return n??$n(t)},Se={http:ln,xhr:Bn,fetch:oe&&(async e=>{let{url:t,method:n,data:r,signal:s,cancelToken:o,timeout:i,onDownloadProgress:c,onUploadProgress:f,responseType:u,headers:l,withCredentials:d="same-origin",fetchOptions:w}=at(e);u=u?(u+"").toLowerCase():"text";let E=kn([s,o&&o.toAbortSignal()],i),h;const y=E&&E.unsubscribe&&(()=>{E.unsubscribe()});let p;try{if(f&&Hn&&n!=="get"&&n!=="head"&&(p=await Vn(l,r))!==0){let _=new Request(t,{method:"POST",body:r,duplex:"half"}),B;if(a.isFormData(r)&&(B=_.headers.get("content-type"))&&l.setContentType(B),_.body){const[j,le]=rt(p,se(st(f)));r=ct(_.body,ft,j,le)}}a.isString(d)||(d=d?"include":"omit");const b="credentials"in Request.prototype;h=new Request(t,{...w,signal:E,method:n.toUpperCase(),headers:l.normalize().toJSON(),body:r,duplex:"half",credentials:b?d:void 0});let S=await fetch(h);const C=Ee&&(u==="stream"||u==="response");if(Ee&&(c||C&&y)){const _={};["status","statusText","headers"].forEach(Rt=>{_[Rt]=S[Rt]});const B=a.toFiniteNumber(S.headers.get("content-length")),[j,le]=c&&rt(B,se(st(c),!0))||[];S=new Response(ct(S.body,ft,j,()=>{le&&le(),y&&y()}),_)}u=u||"text";let L=await ie[a.findKey(ie,u)||"text"](S,e);return!C&&y&&y(),await new Promise((_,B)=>{nt(_,B,{data:L,headers:O.from(S.headers),status:S.status,statusText:S.statusText,config:e,request:h})})}catch(b){throw y&&y(),b&&b.name==="TypeError"&&/fetch/i.test(b.message)?Object.assign(new m("Network Error",m.ERR_NETWORK,e,h),{cause:b.cause||b}):m.from(b,b&&b.code,e,h)}})};a.forEach(Se,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const dt=e=>`- ${e}`,zn=e=>a.isFunction(e)||e===null||e===!1,ht={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o<t;o++){n=e[o];let i;if(r=n,!zn(n)&&(r=Se[(i=String(n)).toLowerCase()],r===void 0))throw new m(`Unknown adapter '${i}'`);if(r)break;s[i||"#"+o]=r}if(!r){const o=Object.entries(s).map(([c,f])=>`adapter ${c} `+(f===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since :
|
|
1
|
+
(function(T,A){typeof exports=="object"&&typeof module<"u"?A(exports):typeof define=="function"&&define.amd?define(["exports"],A):(T=typeof globalThis<"u"?globalThis:T||self,A(T.Fuul={}))})(this,function(T){"use strict";var jr=Object.defineProperty;var Hr=(T,A,H)=>A in T?jr(T,A,{enumerable:!0,configurable:!0,writable:!0,value:H}):T[A]=H;var R=(T,A,H)=>Hr(T,typeof A!="symbol"?A+"":A,H);function A(e,t){return function(){return e.apply(t,arguments)}}const{toString:H}=Object.prototype,{getPrototypeOf:fe}=Object,Y=(e=>t=>{const n=H.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),N=e=>(e=e.toLowerCase(),t=>Y(t)===e),Z=e=>t=>typeof t===e,{isArray:$}=Array,M=Z("undefined");function At(e){return e!==null&&!M(e)&&e.constructor!==null&&!M(e.constructor)&&x(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const Be=N("ArrayBuffer");function Pt(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&Be(e.buffer),t}const Ot=Z("string"),x=Z("function"),ke=Z("number"),ee=e=>e!==null&&typeof e=="object",_t=e=>e===!0||e===!1,te=e=>{if(Y(e)!=="object")return!1;const t=fe(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},xt=N("Date"),Nt=N("File"),Ut=N("Blob"),Lt=N("FileList"),Dt=e=>ee(e)&&x(e.pipe),Ft=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||x(e.append)&&((t=Y(e))==="formdata"||t==="object"&&x(e.toString)&&e.toString()==="[object FormData]"))},Bt=N("URLSearchParams"),[kt,vt,It,qt]=["ReadableStream","Request","Response","Headers"].map(N),jt=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function W(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),$(e))for(r=0,s=e.length;r<s;r++)t.call(null,e[r],r,e);else{const o=n?Object.getOwnPropertyNames(e):Object.keys(e),i=o.length;let c;for(r=0;r<i;r++)c=o[r],t.call(null,e[c],c,e)}}function ve(e,t){t=t.toLowerCase();const n=Object.keys(e);let r=n.length,s;for(;r-- >0;)if(s=n[r],t===s.toLowerCase())return s;return null}const k=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,Ie=e=>!M(e)&&e!==k;function de(){const{caseless:e}=Ie(this)&&this||{},t={},n=(r,s)=>{const o=e&&ve(t,s)||s;te(t[o])&&te(r)?t[o]=de(t[o],r):te(r)?t[o]=de({},r):$(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r<s;r++)arguments[r]&&W(arguments[r],n);return t}const Ht=(e,t,n,{allOwnKeys:r}={})=>(W(t,(s,o)=>{n&&x(s)?e[o]=A(s,n):e[o]=s},{allOwnKeys:r}),e),$t=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Vt=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},zt=(e,t,n,r)=>{let s,o,i;const c={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!c[i]&&(t[i]=e[i],c[i]=!0);e=n!==!1&&fe(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Kt=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Jt=e=>{if(!e)return null;if($(e))return e;let t=e.length;if(!ke(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Mt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&fe(Uint8Array)),Wt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},Qt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Gt=N("HTMLFormElement"),Xt=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),qe=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),Yt=N("RegExp"),je=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};W(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},Zt=e=>{je(e,(t,n)=>{if(x(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(x(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},en=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return $(e)?r(e):r(String(e).split(t)),n},tn=()=>{},nn=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t,he="abcdefghijklmnopqrstuvwxyz",He="0123456789",$e={DIGIT:He,ALPHA:he,ALPHA_DIGIT:he+he.toUpperCase()+He},rn=(e=16,t=$e.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function sn(e){return!!(e&&x(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const on=e=>{const t=new Array(10),n=(r,s)=>{if(ee(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=$(r)?[]:{};return W(r,(i,c)=>{const l=n(i,s+1);!M(l)&&(o[c]=l)}),t[s]=void 0,o}}return r};return n(e,0)},an=N("AsyncFunction"),cn=e=>e&&(ee(e)||x(e))&&x(e.then)&&x(e.catch),Ve=((e,t)=>e?setImmediate:t?((n,r)=>(k.addEventListener("message",({source:s,data:o})=>{s===k&&o===n&&r.length&&r.shift()()},!1),s=>{r.push(s),k.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",x(k.postMessage)),un=typeof queueMicrotask<"u"?queueMicrotask.bind(k):typeof process<"u"&&process.nextTick||Ve,a={isArray:$,isArrayBuffer:Be,isBuffer:At,isFormData:Ft,isArrayBufferView:Pt,isString:Ot,isNumber:ke,isBoolean:_t,isObject:ee,isPlainObject:te,isReadableStream:kt,isRequest:vt,isResponse:It,isHeaders:qt,isUndefined:M,isDate:xt,isFile:Nt,isBlob:Ut,isRegExp:Yt,isFunction:x,isStream:Dt,isURLSearchParams:Bt,isTypedArray:Mt,isFileList:Lt,forEach:W,merge:de,extend:Ht,trim:jt,stripBOM:$t,inherits:Vt,toFlatObject:zt,kindOf:Y,kindOfTest:N,endsWith:Kt,toArray:Jt,forEachEntry:Wt,matchAll:Qt,isHTMLForm:Gt,hasOwnProperty:qe,hasOwnProp:qe,reduceDescriptors:je,freezeMethods:Zt,toObjectSet:en,toCamelCase:Xt,noop:tn,toFiniteNumber:nn,findKey:ve,global:k,isContextDefined:Ie,ALPHABET:$e,generateString:rn,isSpecCompliantForm:sn,toJSONObject:on,isAsyncFn:an,isThenable:cn,setImmediate:Ve,asap:un};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s,this.status=s.status?s.status:null)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.status}}});const ze=m.prototype,Ke={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Ke[e]={value:e}}),Object.defineProperties(m,Ke),Object.defineProperty(ze,"isAxiosError",{value:!0}),m.from=(e,t,n,r,s,o)=>{const i=Object.create(ze);return a.toFlatObject(e,i,function(l){return l!==Error.prototype},c=>c!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const ln=null;function pe(e){return a.isPlainObject(e)||a.isArray(e)}function Je(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function Me(e,t,n){return e?e.concat(t).map(function(s,o){return s=Je(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function fn(e){return a.isArray(e)&&!e.some(pe)}const dn=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function ne(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(y,p){return!a.isUndefined(p[y])});const r=n.metaTokens,s=n.visitor||f,o=n.dots,i=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function u(h){if(h===null)return"";if(a.isDate(h))return h.toISOString();if(!l&&a.isBlob(h))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(h)||a.isTypedArray(h)?l&&typeof Blob=="function"?new Blob([h]):Buffer.from(h):h}function f(h,y,p){let b=h;if(h&&!p&&typeof h=="object"){if(a.endsWith(y,"{}"))y=r?y:y.slice(0,-2),h=JSON.stringify(h);else if(a.isArray(h)&&fn(h)||(a.isFileList(h)||a.endsWith(y,"[]"))&&(b=a.toArray(h)))return y=Je(y),b.forEach(function(C,L){!(a.isUndefined(C)||C===null)&&t.append(i===!0?Me([y],L,o):i===null?y:y+"[]",u(C))}),!1}return pe(h)?!0:(t.append(Me(p,y,o),u(h)),!1)}const d=[],w=Object.assign(dn,{defaultVisitor:f,convertValue:u,isVisitable:pe});function E(h,y){if(!a.isUndefined(h)){if(d.indexOf(h)!==-1)throw Error("Circular reference detected in "+y.join("."));d.push(h),a.forEach(h,function(b,S){(!(a.isUndefined(b)||b===null)&&s.call(t,b,a.isString(S)?S.trim():S,y,w))===!0&&E(b,y?y.concat(S):[S])}),d.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return E(e),t}function We(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function me(e,t){this._pairs=[],e&&ne(e,this,t)}const Qe=me.prototype;Qe.append=function(t,n){this._pairs.push([t,n])},Qe.toString=function(t){const n=t?function(r){return t.call(this,r,We)}:We;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function hn(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Ge(e,t,n){if(!t)return e;const r=n&&n.encode||hn,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new me(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class Xe{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const Ye={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},pn={isBrowser:!0,classes:{URLSearchParams:typeof URLSearchParams<"u"?URLSearchParams:me,FormData:typeof FormData<"u"?FormData:null,Blob:typeof Blob<"u"?Blob:null},protocols:["http","https","file","blob","url","data"]},ye=typeof window<"u"&&typeof document<"u",ge=typeof navigator=="object"&&navigator||void 0,mn=ye&&(!ge||["ReactNative","NativeScript","NS"].indexOf(ge.product)<0),yn=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",gn=ye&&window.location.href||"http://localhost",P={...Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:ye,hasStandardBrowserEnv:mn,hasStandardBrowserWebWorkerEnv:yn,navigator:ge,origin:gn},Symbol.toStringTag,{value:"Module"})),...pn};function wn(e,t){return ne(e,new P.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return P.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function bn(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function En(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r<s;r++)o=n[r],t[o]=e[o];return t}function Ze(e){function t(n,r,s,o){let i=n[o++];if(i==="__proto__")return!0;const c=Number.isFinite(+i),l=o>=n.length;return i=!i&&a.isArray(s)?s.length:i,l?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!c):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=En(s[i])),!c)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(bn(r),s,n,0)}),n}return null}function Sn(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(0,JSON.stringify)(e)}const Q={transitional:Ye,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s?JSON.stringify(Ze(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t)||a.isReadableStream(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return wn(t,this.formSerializer).toString();if((c=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const l=this.env&&this.env.FormData;return ne(c?{"files[]":t}:t,l&&new l,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Sn(t)):t}],transformResponse:[function(t){const n=this.transitional||Q.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(a.isResponse(t)||a.isReadableStream(t))return t;if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(c){if(i)throw c.name==="SyntaxError"?m.from(c,m.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:P.classes.FormData,Blob:P.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{Q.headers[e]={}});const Cn=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Rn=e=>{const t={};let n,r,s;return e&&e.split(`
|
|
2
|
+
`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Cn[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},et=Symbol("internals");function G(e){return e&&String(e).trim().toLowerCase()}function re(e){return e===!1||e==null?e:a.isArray(e)?e.map(re):String(e)}function Tn(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const An=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function we(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function Pn(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function On(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}let O=class{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(c,l,u){const f=G(l);if(!f)throw new Error("header name must be a non-empty string");const d=a.findKey(s,f);(!d||s[d]===void 0||u===!0||u===void 0&&s[d]!==!1)&&(s[d||l]=re(c))}const i=(c,l)=>a.forEach(c,(u,f)=>o(u,f,l));if(a.isPlainObject(t)||t instanceof this.constructor)i(t,n);else if(a.isString(t)&&(t=t.trim())&&!An(t))i(Rn(t),n);else if(a.isHeaders(t))for(const[c,l]of t.entries())o(l,c,r);else t!=null&&o(n,t,r);return this}get(t,n){if(t=G(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Tn(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=G(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||we(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=G(i),i){const c=a.findKey(r,i);c&&(!n||we(r,r[c],c,n))&&(delete r[c],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||we(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=re(s),delete n[o];return}const c=t?Pn(o):String(o).trim();c!==o&&delete n[o],n[c]=re(s),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(`
|
|
3
|
+
`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[et]=this[et]={accessors:{}}).accessors,s=this.prototype;function o(i){const c=G(i);r[c]||(On(s,i),r[c]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}};O.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),a.reduceDescriptors(O.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}}),a.freezeMethods(O);function be(e,t){const n=this||Q,r=t||n,s=O.from(r.headers);let o=r.data;return a.forEach(e,function(c){o=c.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function tt(e){return!!(e&&e.__CANCEL__)}function V(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(V,m,{__CANCEL__:!0});function nt(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function _n(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function xn(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(l){const u=Date.now(),f=r[o];i||(i=u),n[s]=l,r[s]=u;let d=o,w=0;for(;d!==s;)w+=n[d++],d=d%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),u-i<t)return;const E=f&&u-f;return E?Math.round(w*1e3/E):void 0}}function Nn(e,t){let n=0,r=1e3/t,s,o;const i=(u,f=Date.now())=>{n=f,s=null,o&&(clearTimeout(o),o=null),e.apply(null,u)};return[(...u)=>{const f=Date.now(),d=f-n;d>=r?i(u,f):(s=u,o||(o=setTimeout(()=>{o=null,i(s)},r-d)))},()=>s&&i(s)]}const se=(e,t,n=3)=>{let r=0;const s=xn(50,250);return Nn(o=>{const i=o.loaded,c=o.lengthComputable?o.total:void 0,l=i-r,u=s(l),f=i<=c;r=i;const d={loaded:i,total:c,progress:c?i/c:void 0,bytes:l,rate:u||void 0,estimated:u&&c&&f?(c-i)/u:void 0,event:o,lengthComputable:c!=null,[t?"download":"upload"]:!0};e(d)},n)},rt=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},st=e=>(...t)=>a.asap(()=>e(...t)),Un=P.hasStandardBrowserEnv?function(){const t=P.navigator&&/(msie|trident)/i.test(P.navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const c=a.isString(i)?s(i):i;return c.protocol===r.protocol&&c.host===r.host}}():function(){return function(){return!0}}(),Ln=P.hasStandardBrowserEnv?{write(e,t,n,r,s,o){const i=[e+"="+encodeURIComponent(t)];a.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),a.isString(r)&&i.push("path="+r),a.isString(s)&&i.push("domain="+s),o===!0&&i.push("secure"),document.cookie=i.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function Dn(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function Fn(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function ot(e,t){return e&&!Dn(t)?Fn(e,t):t}const it=e=>e instanceof O?{...e}:e;function v(e,t){t=t||{};const n={};function r(u,f,d){return a.isPlainObject(u)&&a.isPlainObject(f)?a.merge.call({caseless:d},u,f):a.isPlainObject(f)?a.merge({},f):a.isArray(f)?f.slice():f}function s(u,f,d){if(a.isUndefined(f)){if(!a.isUndefined(u))return r(void 0,u,d)}else return r(u,f,d)}function o(u,f){if(!a.isUndefined(f))return r(void 0,f)}function i(u,f){if(a.isUndefined(f)){if(!a.isUndefined(u))return r(void 0,u)}else return r(void 0,f)}function c(u,f,d){if(d in t)return r(u,f);if(d in e)return r(void 0,u)}const l={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:c,headers:(u,f)=>s(it(u),it(f),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(f){const d=l[f]||s,w=d(e[f],t[f],f);a.isUndefined(w)&&d!==c||(n[f]=w)}),n}const at=e=>{const t=v({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:s,xsrfCookieName:o,headers:i,auth:c}=t;t.headers=i=O.from(i),t.url=Ge(ot(t.baseURL,t.url),e.params,e.paramsSerializer),c&&i.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?unescape(encodeURIComponent(c.password)):"")));let l;if(a.isFormData(n)){if(P.hasStandardBrowserEnv||P.hasStandardBrowserWebWorkerEnv)i.setContentType(void 0);else if((l=i.getContentType())!==!1){const[u,...f]=l?l.split(";").map(d=>d.trim()).filter(Boolean):[];i.setContentType([u||"multipart/form-data",...f].join("; "))}}if(P.hasStandardBrowserEnv&&(r&&a.isFunction(r)&&(r=r(t)),r||r!==!1&&Un(t.url))){const u=s&&o&&Ln.read(o);u&&i.set(s,u)}return t},Bn=typeof XMLHttpRequest<"u"&&function(e){return new Promise(function(n,r){const s=at(e);let o=s.data;const i=O.from(s.headers).normalize();let{responseType:c,onUploadProgress:l,onDownloadProgress:u}=s,f,d,w,E,h;function y(){E&&E(),h&&h(),s.cancelToken&&s.cancelToken.unsubscribe(f),s.signal&&s.signal.removeEventListener("abort",f)}let p=new XMLHttpRequest;p.open(s.method.toUpperCase(),s.url,!0),p.timeout=s.timeout;function b(){if(!p)return;const C=O.from("getAllResponseHeaders"in p&&p.getAllResponseHeaders()),_={data:!c||c==="text"||c==="json"?p.responseText:p.response,status:p.status,statusText:p.statusText,headers:C,config:e,request:p};nt(function(j){n(j),y()},function(j){r(j),y()},_),p=null}"onloadend"in p?p.onloadend=b:p.onreadystatechange=function(){!p||p.readyState!==4||p.status===0&&!(p.responseURL&&p.responseURL.indexOf("file:")===0)||setTimeout(b)},p.onabort=function(){p&&(r(new m("Request aborted",m.ECONNABORTED,e,p)),p=null)},p.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,p)),p=null},p.ontimeout=function(){let L=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded";const _=s.transitional||Ye;s.timeoutErrorMessage&&(L=s.timeoutErrorMessage),r(new m(L,_.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,p)),p=null},o===void 0&&i.setContentType(null),"setRequestHeader"in p&&a.forEach(i.toJSON(),function(L,_){p.setRequestHeader(_,L)}),a.isUndefined(s.withCredentials)||(p.withCredentials=!!s.withCredentials),c&&c!=="json"&&(p.responseType=s.responseType),u&&([w,h]=se(u,!0),p.addEventListener("progress",w)),l&&p.upload&&([d,E]=se(l),p.upload.addEventListener("progress",d),p.upload.addEventListener("loadend",E)),(s.cancelToken||s.signal)&&(f=C=>{p&&(r(!C||C.type?new V(null,e,p):C),p.abort(),p=null)},s.cancelToken&&s.cancelToken.subscribe(f),s.signal&&(s.signal.aborted?f():s.signal.addEventListener("abort",f)));const S=_n(s.url);if(S&&P.protocols.indexOf(S)===-1){r(new m("Unsupported protocol "+S+":",m.ERR_BAD_REQUEST,e));return}p.send(o||null)})},kn=(e,t)=>{const{length:n}=e=e?e.filter(Boolean):[];if(t||n){let r=new AbortController,s;const o=function(u){if(!s){s=!0,c();const f=u instanceof Error?u:this.reason;r.abort(f instanceof m?f:new V(f instanceof Error?f.message:f))}};let i=t&&setTimeout(()=>{i=null,o(new m(`timeout ${t} of ms exceeded`,m.ETIMEDOUT))},t);const c=()=>{e&&(i&&clearTimeout(i),i=null,e.forEach(u=>{u.unsubscribe?u.unsubscribe(o):u.removeEventListener("abort",o)}),e=null)};e.forEach(u=>u.addEventListener("abort",o));const{signal:l}=r;return l.unsubscribe=()=>a.asap(c),l}},vn=function*(e,t){let n=e.byteLength;if(n<t){yield e;return}let r=0,s;for(;r<n;)s=r+t,yield e.slice(r,s),r=s},In=async function*(e,t){for await(const n of qn(e))yield*vn(n,t)},qn=async function*(e){if(e[Symbol.asyncIterator]){yield*e;return}const t=e.getReader();try{for(;;){const{done:n,value:r}=await t.read();if(n)break;yield r}}finally{await t.cancel()}},ct=(e,t,n,r)=>{const s=In(e,t);let o=0,i,c=l=>{i||(i=!0,r&&r(l))};return new ReadableStream({async pull(l){try{const{done:u,value:f}=await s.next();if(u){c(),l.close();return}let d=f.byteLength;if(n){let w=o+=d;n(w)}l.enqueue(new Uint8Array(f))}catch(u){throw c(u),u}},cancel(l){return c(l),s.return()}},{highWaterMark:2})},oe=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",ut=oe&&typeof ReadableStream=="function",jn=oe&&(typeof TextEncoder=="function"?(e=>t=>e.encode(t))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),lt=(e,...t)=>{try{return!!e(...t)}catch{return!1}},Hn=ut&<(()=>{let e=!1;const t=new Request(P.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t}),ft=64*1024,Ee=ut&<(()=>a.isReadableStream(new Response("").body)),ie={stream:Ee&&(e=>e.body)};oe&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(t=>{!ie[t]&&(ie[t]=a.isFunction(e[t])?n=>n[t]():(n,r)=>{throw new m(`Response type '${t}' is not supported`,m.ERR_NOT_SUPPORT,r)})})})(new Response);const $n=async e=>{if(e==null)return 0;if(a.isBlob(e))return e.size;if(a.isSpecCompliantForm(e))return(await new Request(P.origin,{method:"POST",body:e}).arrayBuffer()).byteLength;if(a.isArrayBufferView(e)||a.isArrayBuffer(e))return e.byteLength;if(a.isURLSearchParams(e)&&(e=e+""),a.isString(e))return(await jn(e)).byteLength},Vn=async(e,t)=>{const n=a.toFiniteNumber(e.getContentLength());return n??$n(t)},Se={http:ln,xhr:Bn,fetch:oe&&(async e=>{let{url:t,method:n,data:r,signal:s,cancelToken:o,timeout:i,onDownloadProgress:c,onUploadProgress:l,responseType:u,headers:f,withCredentials:d="same-origin",fetchOptions:w}=at(e);u=u?(u+"").toLowerCase():"text";let E=kn([s,o&&o.toAbortSignal()],i),h;const y=E&&E.unsubscribe&&(()=>{E.unsubscribe()});let p;try{if(l&&Hn&&n!=="get"&&n!=="head"&&(p=await Vn(f,r))!==0){let _=new Request(t,{method:"POST",body:r,duplex:"half"}),B;if(a.isFormData(r)&&(B=_.headers.get("content-type"))&&f.setContentType(B),_.body){const[j,le]=rt(p,se(st(l)));r=ct(_.body,ft,j,le)}}a.isString(d)||(d=d?"include":"omit");const b="credentials"in Request.prototype;h=new Request(t,{...w,signal:E,method:n.toUpperCase(),headers:f.normalize().toJSON(),body:r,duplex:"half",credentials:b?d:void 0});let S=await fetch(h);const C=Ee&&(u==="stream"||u==="response");if(Ee&&(c||C&&y)){const _={};["status","statusText","headers"].forEach(Rt=>{_[Rt]=S[Rt]});const B=a.toFiniteNumber(S.headers.get("content-length")),[j,le]=c&&rt(B,se(st(c),!0))||[];S=new Response(ct(S.body,ft,j,()=>{le&&le(),y&&y()}),_)}u=u||"text";let L=await ie[a.findKey(ie,u)||"text"](S,e);return!C&&y&&y(),await new Promise((_,B)=>{nt(_,B,{data:L,headers:O.from(S.headers),status:S.status,statusText:S.statusText,config:e,request:h})})}catch(b){throw y&&y(),b&&b.name==="TypeError"&&/fetch/i.test(b.message)?Object.assign(new m("Network Error",m.ERR_NETWORK,e,h),{cause:b.cause||b}):m.from(b,b&&b.code,e,h)}})};a.forEach(Se,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const dt=e=>`- ${e}`,zn=e=>a.isFunction(e)||e===null||e===!1,ht={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o<t;o++){n=e[o];let i;if(r=n,!zn(n)&&(r=Se[(i=String(n)).toLowerCase()],r===void 0))throw new m(`Unknown adapter '${i}'`);if(r)break;s[i||"#"+o]=r}if(!r){const o=Object.entries(s).map(([c,l])=>`adapter ${c} `+(l===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since :
|
|
4
4
|
`+o.map(dt).join(`
|
|
5
|
-
`):" "+dt(o[0]):"as no adapter specified";throw new m("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:Se};function Ce(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new V(null,e)}function pt(e){return Ce(e),e.headers=O.from(e.headers),e.data=be.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),ht.getAdapter(e.adapter||Q.adapter)(e).then(function(r){return Ce(e),r.data=be.call(e,e.transformResponse,r),r.headers=O.from(r.headers),r},function(r){return tt(r)||(Ce(e),r&&r.response&&(r.response.data=be.call(e,e.transformResponse,r.response),r.response.headers=O.from(r.response.headers))),Promise.reject(r)})}const mt="1.7.7",Re={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{Re[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const yt={};Re.transitional=function(t,n,r){function s(o,i){return"[Axios v"+mt+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,c)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!yt[i]&&(yt[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,c):!0}};function Kn(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const c=e[o],
|
|
6
|
-
`+o):r.stack=o}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=v(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&Te.assertOptions(r,{silentJSONParsing:D.transitional(D.boolean),forcedJSONParsing:D.transitional(D.boolean),clarifyTimeoutError:D.transitional(D.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:Te.assertOptions(s,{encode:D.function,serialize:D.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],h=>{delete o[h]}),n.headers=O.concat(i,o);const c=[];let f=!0;this.interceptors.request.forEach(function(y){typeof y.runWhen=="function"&&y.runWhen(n)===!1||(f=f&&y.synchronous,c.unshift(y.fulfilled,y.rejected))});const u=[];this.interceptors.response.forEach(function(y){u.push(y.fulfilled,y.rejected)});let l,d=0,w;if(!f){const h=[pt.bind(this),void 0];for(h.unshift.apply(h,c),h.push.apply(h,u),w=h.length,l=Promise.resolve(n);d<w;)l=l.then(h[d++],h[d++]);return l}w=c.length;let E=n;for(d=0;d<w;){const h=c[d++],y=c[d++];try{E=h(E)}catch(p){y.call(this,p);break}}try{l=pt.call(this,E)}catch(h){return Promise.reject(h)}for(d=0,w=u.length;d<w;)l=l.then(u[d++],u[d++]);return l}getUri(t){t=v(this.defaults,t);const n=ot(t.baseURL,t.url);return Ge(n,t.params,t.paramsSerializer)}};a.forEach(["delete","get","head","options"],function(t){I.prototype[t]=function(n,r){return this.request(v(r||{},{method:t,url:n,data:(r||{}).data}))}}),a.forEach(["post","put","patch"],function(t){function n(r){return function(o,i,c){return this.request(v(c||{},{method:t,headers:r?{"Content-Type":"multipart/form-data"}:{},url:o,data:i}))}}I.prototype[t]=n(),I.prototype[t+"Form"]=n(!0)});let Jn=class Tt{constructor(t){if(typeof t!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(o){n=o});const r=this;this.promise.then(s=>{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(c=>{r.subscribe(c),o=c}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,c){r.reason||(r.reason=new V(o,i,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const t=new AbortController,n=r=>{t.abort(r)};return this.subscribe(n),t.signal.unsubscribe=()=>this.unsubscribe(n),t.signal}static source(){let t;return{token:new Tt(function(s){t=s}),cancel:t}}};function Mn(e){return function(n){return e.apply(null,n)}}function Wn(e){return a.isObject(e)&&e.isAxiosError===!0}const Ae={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Ae).forEach(([e,t])=>{Ae[t]=e});function gt(e){const t=new I(e),n=A(I.prototype.request,t);return a.extend(n,I.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return gt(v(e,s))},n}const g=gt(Q);g.Axios=I,g.CanceledError=V,g.CancelToken=Jn,g.isCancel=tt,g.VERSION=mt,g.toFormData=ne,g.AxiosError=m,g.Cancel=g.CanceledError,g.all=function(t){return Promise.all(t)},g.spread=Mn,g.isAxiosError=Wn,g.mergeConfig=v,g.AxiosHeaders=O,g.formToJSON=e=>Ze(a.isHTMLForm(e)?new FormData(e):e),g.getAdapter=ht.getAdapter,g.HttpStatusCode=Ae,g.default=g;const{Axios:Wr,AxiosError:ae,CanceledError:Qr,isCancel:Gr,CancelToken:Xr,VERSION:Yr,all:Zr,Cancel:es,isAxiosError:ts,spread:ns,toFormData:rs,AxiosHeaders:ss,HttpStatusCode:os,formToJSON:is,getAdapter:as,mergeConfig:cs}=g;class Pe extends Error{constructor(n){super(n.join(", "));R(this,"errors");this.name="ValidationError",this.errors=n}}class Oe extends Error{constructor(n){super("Address already registered.");R(this,"address");this.name="AddressInUseError",this.address=n}}class _e extends Error{constructor(n){super("Code already registered.");R(this,"code");this.name="CodeInUseError",this.code=n}}class xe extends Error{constructor(){super("Invalid signature provided"),this.name="InvalidSignatureError"}}class Qn{constructor(t){R(this,"httpClient");R(this,"_debug");this.httpClient=t.httpClient,this._debug=t.debug}async create(t,n,r,s){var o;try{await this.httpClient.post({path:"/affiliates",postData:{address:t,name:n,code:n,signature:r,account_chain_id:s}})}catch(i){if(i instanceof ae){const c=(o=i.response)==null?void 0:o.data;if(typeof(c==null?void 0:c.message)=="string"){const f=c.message.toLowerCase();throw f=="invalid signature"?new xe:f=="address in use"?new Oe(t):f=="code in use"?new _e(n):new Error(f)}else if((c==null?void 0:c.message)instanceof Array)throw new Pe(c.message)}throw i}}async update(t,n,r,s){var o;try{await this.httpClient.post({path:`/affiliates/${t}`,postData:{code:n,address:t,signature:r,account_chain_id:s}})}catch(i){if(i instanceof ae){const c=(o=i.response)==null?void 0:o.data;if(typeof(c==null?void 0:c.message)=="string"){const f=c.message.toLowerCase();throw f=="invalid signature"?new xe:f=="address in use"?new Oe(t):f=="code in use"?new _e(n):new Error(f)}else if((c==null?void 0:c.message)instanceof Array)throw new Pe(c.message)}throw i}}async isCodeFree(t){var n;try{return await this.httpClient.get({path:`/affiliates/codes/${t}`}),!1}catch(r){if(r instanceof ae&&((n=r.response)==null?void 0:n.status)===404)return!0;throw console.error("Fuul SDK: Could not check affiliate code",r),r}}async getCode(t){var n;try{return(await this.httpClient.get({path:`/affiliates/${t}`})).data.code}catch(r){if(r instanceof ae&&((n=r.response)==null?void 0:n.status)===404)return null;throw console.error("Fuul SDK: Could not get affiliate code",r),r}}}const Gn="/audiences";class Xn{constructor(t){R(this,"httpClient");R(this,"_debug");this.httpClient=t.httpClient,this._debug=t.debug}async getUserAudiences(t){return(await this.httpClient.get({path:`${Gn}/user`,queryParams:{...t}})).data}}class Yn{constructor(t){R(this,"httpClient");this.httpClient=t.httpClient}async getAll(t){const{data:n}=await this.httpClient.get({path:"conversions",queryParams:{...t}});return n}}const wt="fuul.sent",Zn=60;class er{constructor(t){R(this,"debug");R(this,"httpClient");this.httpClient=t.httpClient,this.debug=!!t.debug}async sendEvent(t,n){if(this.isDuplicate(t)){this.debug&&console.debug("Fuul SDK: Event is considered duplicate and will not be sent");return}if(!n||!Array.isArray(n)||n.length===0)await this.httpClient.post({path:"events",postData:t});else for(const r of n){const s=structuredClone({...t,project_id:r});s.metadata.project_id=r,await this.httpClient.post({path:"events",postData:s,queryParams:{project_id:r}})}this.debug&&console.debug(`Fuul SDK: Sent '${t.name}' event`),this.saveSentEvent(t)}isDuplicate(t){const n=`${wt}_${t.name}`,r=localStorage.getItem(n);if(!r)return!1;const s=JSON.parse(r);if(this.getCurrentTimestamp()-s.timestamp>Zn)return!1;let f=!1;t.metadata&&(f=s.metadata.tracking_id===t.metadata.tracking_id&&s.metadata.project_id===t.metadata.project_id&&s.metadata.referrer===t.metadata.referrer&&s.metadata.source===t.metadata.source&&s.metadata.category===t.metadata.category&&s.metadata.title===t.metadata.title&&s.metadata.tag===t.metadata.tag&&s.user_address===t.user_address&&s.signature===t.signature&&s.signature_message===t.signature_message);let u=!1;return t.args&&s.args&&(u=s.args.page===t.args.page),u&&f}getCurrentTimestamp(){return Date.now()/1e3}saveSentEvent(t){const n=`${wt}_${t.name}`,r=this.getCurrentTimestamp(),s={...t,timestamp:r};localStorage.setItem(n,JSON.stringify(s))}}const tr={version:"4.12.2"};class nr{constructor(t){R(this,"client");R(this,"defaultQueryParams");this.client=g.create({...t,headers:{Authorization:`Bearer ${t.apiKey}`,"X-Fuul-Sdk-Version":tr.version}}),this.defaultQueryParams=t.queryParams||{}}makeQueryParams(t){return Object.assign({},this.defaultQueryParams||{},t||{})}async get(t){return this.client.request({url:t.path,params:this.makeQueryParams(t.queryParams),method:"GET"})}async post(t){return this.client.request({url:t.path,params:this.makeQueryParams(t.queryParams),data:t.postData,method:"POST"})}async put(t){return this.client.request({url:t.path,params:this.makeQueryParams(t.queryParams),data:t.postData,method:"PUT"})}async delete(t){return this.client.request({url:t.path,params:this.makeQueryParams(t.queryParams),method:"DELETE"})}}class rr{constructor(t){R(this,"httpClient");this.httpClient=t.httpClient}async getPayoutsLeaderboard(t){return(await this.httpClient.get({path:"/payouts/leaderboard/payouts",queryParams:{...t}})).data}async getPointsLeaderboard(t){return(await this.httpClient.get({path:"/payouts/leaderboard/points",queryParams:{...t}})).data}async getReferredUsersLeaderboard(t){return(await this.httpClient.get({path:"/leaderboard/referred",queryParams:{...t}})).data}}const X="/payouts";class sr{constructor(t){R(this,"httpClient");R(this,"_debug");this.httpClient=t.httpClient,this._debug=t.debug}async getUserPayoutsByConversion(t){return(await this.httpClient.get({path:X,queryParams:{...t,type:"onchain-currency"}})).data}async getUserPointsByConversion(t){return(await this.httpClient.get({path:X,queryParams:{...t,type:"point"}})).data}async getUserPayoutMovements(t){return(await this.httpClient.get({path:`${X}/movements`,queryParams:{...t,type:"onchain-currency"}})).data}async getUserPointsMovements(t){return(await this.httpClient.get({path:`${X}/movements`,queryParams:{...t,type:"point"}})).data}async getVolumeLeaderboard(t){return(await this.httpClient.get({path:`${X}/leaderboard/volume`,queryParams:{...t}})).data}}let or=(e=21)=>crypto.getRandomValues(new Uint8Array(e)).reduce((t,n)=>(n&=63,n<36?t+=n.toString(36):n<62?t+=(n-26).toString(36).toUpperCase():n>62?t+="-":t+="_",t),"");const ir="fuul.tracking_id",Ne=()=>dr(ir,()=>or()),bt=()=>z("af")||z("referrer"),ar=()=>document.referrer,cr=()=>hr(),ur=()=>z("category"),lr=()=>z("title"),fr=()=>z("tag"),dr=(e,t)=>{const n=localStorage.getItem(e);if(n)return n;{const r=t();return r?localStorage.setItem(e,r):localStorage.removeItem(e),r}},z=e=>new URLSearchParams(window.location.search).get(e),hr=()=>{const e=z("source");if(e)return e},pr="/user";class mr{constructor(t){R(this,"httpClient");this.httpClient=t.httpClient}async getUserAffiliates(t){return(await this.httpClient.get({path:pr,queryParams:{...t}})).data.affiliates}}const yr="https://api.fuul.xyz/api/v1/";let q=!1,Ue=!1,Le,F,Et,St,K,ce,J,Ct,ue;function gr(e){q=!!e.debug,!Ue&&(Le=e.apiKey,vr(),F=Ir(e.baseApiUrl??yr,e.defaultQueryParams??{}),Et=new Yn({httpClient:F,debug:q}),ce=new er({httpClient:F,debug:q}),K=new Qn({httpClient:F,debug:q}),J=new sr({httpClient:F,debug:q}),St=new mr({httpClient:F}),Ct=new Xn({httpClient:F,debug:q}),ue=new rr({httpClient:F}),Ue=!0,q&&console.debug("Fuul SDK: init() complete"))}function U(){if(!Ue)throw new Error("Fuul SDK: You need to call init() to initialize the library before using any methods")}async function wr(e,t){U(),De(),Fe();const n={name:e,args:t??{},metadata:{tracking_id:Ne()}};await ce.sendEvent(n)}async function br(e,t){U(),De(),Fe();const n={name:"pageview",args:{page:e??document.location.pathname,locationOrigin:document.location.origin},metadata:{tracking_id:Ne(),referrer_url:ar(),source:cr(),affiliate_id:bt()??void 0,referrer:bt()??void 0,category:ur()??void 0,title:lr()??void 0,tag:fr()??void 0}};await ce.sendEvent(n,t)}async function Er(e,t){U(),De(),Fe();const n={name:"connect_wallet",args:{page:document.location.pathname,locationOrigin:document.location.origin},metadata:{tracking_id:Ne()}};e!=null&&e.address&&(n.user_address=e.address),e!=null&&e.signature&&(n.signature=e==null?void 0:e.signature,n.signature_message=e==null?void 0:e.message),e!=null&&e.accountChainId&&(n.account_chain_id=e.accountChainId),await ce.sendEvent(n,t)}async function Sr(e){U(),await K.create(e.address,e.code,e.signature,e.accountChainId)}async function Cr(e){U(),await K.update(e.address,e.code,e.signature,e.accountChainId)}async function Rr(e){return U(),await K.getCode(e)}async function Tr(e){return U(),await K.isCodeFree(e)}async function Ar(e,t,n){U();const r=await K.getCode(t),s=new URLSearchParams({af:r??t});return n!=null&&n.title&&s.append("af_title",n.title),n!=null&&n.format&&s.append("af_format",n.format),n!=null&&n.place&&s.append("af_place",n.place),`${e}?${s.toString()}`}function Pr(e){return ue.getPayoutsLeaderboard(e)}function Or(e){return ue.getPointsLeaderboard(e)}function _r(e){return ue.getReferredUsersLeaderboard(e)}function xr(e){return J.getVolumeLeaderboard(e)}function Nr(e){return J.getUserPayoutsByConversion(e)}function Ur(e){return J.getUserPointsByConversion(e)}function Lr(e){return J.getUserPayoutMovements(e)}function Dr(e){return J.getUserPointsMovements(e)}async function Fr(e){return U(),Et.getAll(e)}async function Br(e){return U(),St.getUserAffiliates(e)}async function kr(e){return U(),Ct.getUserAudiences(e)}function De(){if(typeof window>"u"||typeof document>"u")throw new Error("Fuul SDK: Browser context required")}function Fe(){if(navigator.webdriver)throw new Error("Fuul SDK: You are using a browser automation tool")}function vr(){if(!Le)throw new Error("Fuul SDK: Invalid API key")}function Ir(e,t){return new nr({baseURL:e,timeout:3e4,apiKey:Le,queryParams:t})}const qr={init:gr,sendEvent:wr,sendPageview:br,sendConnectWallet:Er,generateTrackingLink:Ar,getConversions:Fr,createAffiliateCode:Sr,updateAffiliateCode:Cr,getAffiliateCode:Rr,isAffiliateCodeFree:Tr,getPayoutsLeaderboard:Pr,getPointsLeaderboard:Or,getReferredUsersLeaderboard:_r,getUserAudiences:kr,getUserPayoutsByConversion:Nr,getUserPointsByConversion:Ur,getUserPointsMovements:Dr,getUserPayoutMovements:Lr,getUserAffiliates:Br,getVolumeLeaderboard:xr};T.AddressInUseError=Oe,T.CodeInUseError=_e,T.Fuul=qr,T.InvalidSignatureError=xe,T.ValidationError=Pe,Object.defineProperty(T,Symbol.toStringTag,{value:"Module"})});
|
|
5
|
+
`):" "+dt(o[0]):"as no adapter specified";throw new m("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:Se};function Ce(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new V(null,e)}function pt(e){return Ce(e),e.headers=O.from(e.headers),e.data=be.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),ht.getAdapter(e.adapter||Q.adapter)(e).then(function(r){return Ce(e),r.data=be.call(e,e.transformResponse,r),r.headers=O.from(r.headers),r},function(r){return tt(r)||(Ce(e),r&&r.response&&(r.response.data=be.call(e,e.transformResponse,r.response),r.response.headers=O.from(r.response.headers))),Promise.reject(r)})}const mt="1.7.7",Re={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{Re[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const yt={};Re.transitional=function(t,n,r){function s(o,i){return"[Axios v"+mt+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,c)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!yt[i]&&(yt[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,c):!0}};function Kn(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const c=e[o],l=c===void 0||i(c,o,e);if(l!==!0)throw new m("option "+o+" must be "+l,m.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new m("Unknown option "+o,m.ERR_BAD_OPTION)}}const Te={assertOptions:Kn,validators:Re},D=Te.validators;let I=class{constructor(t){this.defaults=t,this.interceptors={request:new Xe,response:new Xe}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let s;Error.captureStackTrace?Error.captureStackTrace(s={}):s=new Error;const o=s.stack?s.stack.replace(/^.+\n/,""):"";try{r.stack?o&&!String(r.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(r.stack+=`
|
|
6
|
+
`+o):r.stack=o}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=v(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&Te.assertOptions(r,{silentJSONParsing:D.transitional(D.boolean),forcedJSONParsing:D.transitional(D.boolean),clarifyTimeoutError:D.transitional(D.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:Te.assertOptions(s,{encode:D.function,serialize:D.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],h=>{delete o[h]}),n.headers=O.concat(i,o);const c=[];let l=!0;this.interceptors.request.forEach(function(y){typeof y.runWhen=="function"&&y.runWhen(n)===!1||(l=l&&y.synchronous,c.unshift(y.fulfilled,y.rejected))});const u=[];this.interceptors.response.forEach(function(y){u.push(y.fulfilled,y.rejected)});let f,d=0,w;if(!l){const h=[pt.bind(this),void 0];for(h.unshift.apply(h,c),h.push.apply(h,u),w=h.length,f=Promise.resolve(n);d<w;)f=f.then(h[d++],h[d++]);return f}w=c.length;let E=n;for(d=0;d<w;){const h=c[d++],y=c[d++];try{E=h(E)}catch(p){y.call(this,p);break}}try{f=pt.call(this,E)}catch(h){return Promise.reject(h)}for(d=0,w=u.length;d<w;)f=f.then(u[d++],u[d++]);return f}getUri(t){t=v(this.defaults,t);const n=ot(t.baseURL,t.url);return Ge(n,t.params,t.paramsSerializer)}};a.forEach(["delete","get","head","options"],function(t){I.prototype[t]=function(n,r){return this.request(v(r||{},{method:t,url:n,data:(r||{}).data}))}}),a.forEach(["post","put","patch"],function(t){function n(r){return function(o,i,c){return this.request(v(c||{},{method:t,headers:r?{"Content-Type":"multipart/form-data"}:{},url:o,data:i}))}}I.prototype[t]=n(),I.prototype[t+"Form"]=n(!0)});let Jn=class Tt{constructor(t){if(typeof t!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(o){n=o});const r=this;this.promise.then(s=>{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(c=>{r.subscribe(c),o=c}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,c){r.reason||(r.reason=new V(o,i,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const t=new AbortController,n=r=>{t.abort(r)};return this.subscribe(n),t.signal.unsubscribe=()=>this.unsubscribe(n),t.signal}static source(){let t;return{token:new Tt(function(s){t=s}),cancel:t}}};function Mn(e){return function(n){return e.apply(null,n)}}function Wn(e){return a.isObject(e)&&e.isAxiosError===!0}const Ae={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Ae).forEach(([e,t])=>{Ae[t]=e});function gt(e){const t=new I(e),n=A(I.prototype.request,t);return a.extend(n,I.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return gt(v(e,s))},n}const g=gt(Q);g.Axios=I,g.CanceledError=V,g.CancelToken=Jn,g.isCancel=tt,g.VERSION=mt,g.toFormData=ne,g.AxiosError=m,g.Cancel=g.CanceledError,g.all=function(t){return Promise.all(t)},g.spread=Mn,g.isAxiosError=Wn,g.mergeConfig=v,g.AxiosHeaders=O,g.formToJSON=e=>Ze(a.isHTMLForm(e)?new FormData(e):e),g.getAdapter=ht.getAdapter,g.HttpStatusCode=Ae,g.default=g;const{Axios:Wr,AxiosError:ae,CanceledError:Qr,isCancel:Gr,CancelToken:Xr,VERSION:Yr,all:Zr,Cancel:es,isAxiosError:ts,spread:ns,toFormData:rs,AxiosHeaders:ss,HttpStatusCode:os,formToJSON:is,getAdapter:as,mergeConfig:cs}=g;class Pe extends Error{constructor(n){super(n.join(", "));R(this,"errors");this.name="ValidationError",this.errors=n}}class Oe extends Error{constructor(n){super("Address already registered.");R(this,"address");this.name="AddressInUseError",this.address=n}}class _e extends Error{constructor(n){super("Code already registered.");R(this,"code");this.name="CodeInUseError",this.code=n}}class xe extends Error{constructor(){super("Invalid signature provided"),this.name="InvalidSignatureError"}}class Qn{constructor(t){R(this,"httpClient");R(this,"_debug");this.httpClient=t.httpClient,this._debug=t.debug}async create(t,n,r,s,o){var i;try{await this.httpClient.post({path:"/affiliates",postData:{address:t,blockchain:n,name:r,code:r,signature:s,account_chain_id:o}})}catch(c){if(c instanceof ae){const l=(i=c.response)==null?void 0:i.data;if(typeof(l==null?void 0:l.message)=="string"){const u=l.message.toLowerCase();throw u=="invalid signature"?new xe:u=="address in use"?new Oe(t):u=="code in use"?new _e(r):new Error(u)}else if((l==null?void 0:l.message)instanceof Array)throw new Pe(l.message)}throw c}}async update(t,n,r,s,o){var i;try{await this.httpClient.post({path:`/affiliates/${t}`,postData:{code:r,address:t,blockchain:n,signature:s,account_chain_id:o}})}catch(c){if(c instanceof ae){const l=(i=c.response)==null?void 0:i.data;if(typeof(l==null?void 0:l.message)=="string"){const u=l.message.toLowerCase();throw u=="invalid signature"?new xe:u=="address in use"?new Oe(t):u=="code in use"?new _e(r):new Error(u)}else if((l==null?void 0:l.message)instanceof Array)throw new Pe(l.message)}throw c}}async isCodeFree(t){var n;try{return await this.httpClient.get({path:`/affiliates/codes/${t}`}),!1}catch(r){if(r instanceof ae&&((n=r.response)==null?void 0:n.status)===404)return!0;throw console.error("Fuul SDK: Could not check affiliate code",r),r}}async getCode(t,n){var r;try{return(await this.httpClient.get({path:`/affiliates/${t}`,queryParams:{blockchain:n}})).data.code}catch(s){if(s instanceof ae&&((r=s.response)==null?void 0:r.status)===404)return null;throw console.error("Fuul SDK: Could not get affiliate code",s),s}}}const Gn="/audiences";class Xn{constructor(t){R(this,"httpClient");R(this,"_debug");this.httpClient=t.httpClient,this._debug=t.debug}async getUserAudiences(t){return(await this.httpClient.get({path:`${Gn}/user`,queryParams:{...t}})).data}}class Yn{constructor(t){R(this,"httpClient");this.httpClient=t.httpClient}async getAll(t){const{data:n}=await this.httpClient.get({path:"conversions",queryParams:{...t}});return n}}const wt="fuul.sent",Zn=60;class er{constructor(t){R(this,"debug");R(this,"httpClient");this.httpClient=t.httpClient,this.debug=!!t.debug}async sendEvent(t,n){if(this.isDuplicate(t)){this.debug&&console.debug("Fuul SDK: Event is considered duplicate and will not be sent");return}if(!n||!Array.isArray(n)||n.length===0)await this.httpClient.post({path:"events",postData:t});else for(const r of n){const s=structuredClone({...t,project_id:r});s.metadata.project_id=r,await this.httpClient.post({path:"events",postData:s,queryParams:{project_id:r}})}this.debug&&console.debug(`Fuul SDK: Sent '${t.name}' event`),this.saveSentEvent(t)}isDuplicate(t){const n=`${wt}_${t.name}`,r=localStorage.getItem(n);if(!r)return!1;const s=JSON.parse(r);if(this.getCurrentTimestamp()-s.timestamp>Zn)return!1;let l=!1;t.metadata&&(l=s.metadata.tracking_id===t.metadata.tracking_id&&s.metadata.project_id===t.metadata.project_id&&s.metadata.referrer===t.metadata.referrer&&s.metadata.source===t.metadata.source&&s.metadata.category===t.metadata.category&&s.metadata.title===t.metadata.title&&s.metadata.tag===t.metadata.tag&&s.user_address===t.user_address&&s.signature===t.signature&&s.signature_message===t.signature_message);let u=!1;return t.args&&s.args&&(u=s.args.page===t.args.page),u&&l}getCurrentTimestamp(){return Date.now()/1e3}saveSentEvent(t){const n=`${wt}_${t.name}`,r=this.getCurrentTimestamp(),s={...t,timestamp:r};localStorage.setItem(n,JSON.stringify(s))}}const tr={version:"5.0.0"};class nr{constructor(t){R(this,"client");R(this,"defaultQueryParams");this.client=g.create({...t,headers:{Authorization:`Bearer ${t.apiKey}`,"X-Fuul-Sdk-Version":tr.version}}),this.defaultQueryParams=t.queryParams||{}}makeQueryParams(t){return Object.assign({},this.defaultQueryParams||{},t||{})}async get(t){return this.client.request({url:t.path,params:this.makeQueryParams(t.queryParams),method:"GET"})}async post(t){return this.client.request({url:t.path,params:this.makeQueryParams(t.queryParams),data:t.postData,method:"POST"})}async put(t){return this.client.request({url:t.path,params:this.makeQueryParams(t.queryParams),data:t.postData,method:"PUT"})}async delete(t){return this.client.request({url:t.path,params:this.makeQueryParams(t.queryParams),method:"DELETE"})}}class rr{constructor(t){R(this,"httpClient");this.httpClient=t.httpClient}async getPayoutsLeaderboard(t){return(await this.httpClient.get({path:"/payouts/leaderboard/payouts",queryParams:{...t}})).data}async getPointsLeaderboard(t){return(await this.httpClient.get({path:"/payouts/leaderboard/points",queryParams:{...t}})).data}async getReferredUsersLeaderboard(t){return(await this.httpClient.get({path:"/leaderboard/referred",queryParams:{...t}})).data}}const X="/payouts";class sr{constructor(t){R(this,"httpClient");R(this,"_debug");this.httpClient=t.httpClient,this._debug=t.debug}async getUserPayoutsByConversion(t){return(await this.httpClient.get({path:X,queryParams:{...t,type:"onchain-currency"}})).data}async getUserPointsByConversion(t){return(await this.httpClient.get({path:X,queryParams:{...t,type:"point"}})).data}async getUserPayoutMovements(t){return(await this.httpClient.get({path:`${X}/movements`,queryParams:{...t,type:"onchain-currency"}})).data}async getUserPointsMovements(t){return(await this.httpClient.get({path:`${X}/movements`,queryParams:{...t,type:"point"}})).data}async getVolumeLeaderboard(t){return(await this.httpClient.get({path:`${X}/leaderboard/volume`,queryParams:{...t}})).data}}let or=(e=21)=>crypto.getRandomValues(new Uint8Array(e)).reduce((t,n)=>(n&=63,n<36?t+=n.toString(36):n<62?t+=(n-26).toString(36).toUpperCase():n>62?t+="-":t+="_",t),"");const ir="fuul.tracking_id",Ne=()=>dr(ir,()=>or()),bt=()=>z("af")||z("referrer"),ar=()=>document.referrer,cr=()=>hr(),ur=()=>z("category"),lr=()=>z("title"),fr=()=>z("tag"),dr=(e,t)=>{const n=localStorage.getItem(e);if(n)return n;{const r=t();return r?localStorage.setItem(e,r):localStorage.removeItem(e),r}},z=e=>new URLSearchParams(window.location.search).get(e),hr=()=>{const e=z("source");if(e)return e},pr="/user";class mr{constructor(t){R(this,"httpClient");this.httpClient=t.httpClient}async getUserAffiliates(t){return(await this.httpClient.get({path:pr,queryParams:{...t}})).data.affiliates}}const yr="https://api.fuul.xyz/api/v1/";let q=!1,Ue=!1,Le,F,Et,St,K,ce,J,Ct,ue;function gr(e){q=!!e.debug,!Ue&&(Le=e.apiKey,vr(),F=Ir(e.baseApiUrl??yr,e.defaultQueryParams??{}),Et=new Yn({httpClient:F,debug:q}),ce=new er({httpClient:F,debug:q}),K=new Qn({httpClient:F,debug:q}),J=new sr({httpClient:F,debug:q}),St=new mr({httpClient:F}),Ct=new Xn({httpClient:F,debug:q}),ue=new rr({httpClient:F}),Ue=!0,q&&console.debug("Fuul SDK: init() complete"))}function U(){if(!Ue)throw new Error("Fuul SDK: You need to call init() to initialize the library before using any methods")}async function wr(e,t){U(),De(),Fe();const n={name:e,args:t??{},metadata:{tracking_id:Ne()}};await ce.sendEvent(n)}async function br(e,t){U(),De(),Fe();const n={name:"pageview",args:{page:e??document.location.pathname,locationOrigin:document.location.origin},metadata:{tracking_id:Ne(),referrer_url:ar(),source:cr(),affiliate_id:bt()??void 0,referrer:bt()??void 0,category:ur()??void 0,title:lr()??void 0,tag:fr()??void 0}};await ce.sendEvent(n,t)}async function Er(e,t){U(),De(),Fe();const n={name:"connect_wallet",args:{page:document.location.pathname,locationOrigin:document.location.origin},metadata:{tracking_id:Ne()}};e!=null&&e.address&&(n.user_address=e.address),e!=null&&e.signature&&(n.signature=e==null?void 0:e.signature,n.signature_message=e==null?void 0:e.message),e!=null&&e.accountChainId&&(n.account_chain_id=e.accountChainId),await ce.sendEvent(n,t)}async function Sr(e){U(),await K.create(e.address,e.blockchain,e.code,e.signature,e.accountChainId)}async function Cr(e){U(),await K.update(e.address,e.blockchain,e.code,e.signature,e.accountChainId)}async function Rr(e,t){return U(),await K.getCode(e,t)}async function Tr(e){return U(),await K.isCodeFree(e)}async function Ar(e,t,n,r){U();const s=await K.getCode(t,n),o=new URLSearchParams({af:s??t});return r!=null&&r.title&&o.append("af_title",r.title),r!=null&&r.format&&o.append("af_format",r.format),r!=null&&r.place&&o.append("af_place",r.place),`${e}?${o.toString()}`}function Pr(e){return ue.getPayoutsLeaderboard(e)}function Or(e){return ue.getPointsLeaderboard(e)}function _r(e){return ue.getReferredUsersLeaderboard(e)}function xr(e){return J.getVolumeLeaderboard(e)}function Nr(e){return J.getUserPayoutsByConversion(e)}function Ur(e){return J.getUserPointsByConversion(e)}function Lr(e){return J.getUserPayoutMovements(e)}function Dr(e){return J.getUserPointsMovements(e)}async function Fr(e){return U(),Et.getAll(e)}async function Br(e){return U(),St.getUserAffiliates(e)}async function kr(e){return U(),Ct.getUserAudiences(e)}function De(){if(typeof window>"u"||typeof document>"u")throw new Error("Fuul SDK: Browser context required")}function Fe(){if(navigator.webdriver)throw new Error("Fuul SDK: You are using a browser automation tool")}function vr(){if(!Le)throw new Error("Fuul SDK: Invalid API key")}function Ir(e,t){return new nr({baseURL:e,timeout:3e4,apiKey:Le,queryParams:t})}const qr={init:gr,sendEvent:wr,sendPageview:br,sendConnectWallet:Er,generateTrackingLink:Ar,getConversions:Fr,createAffiliateCode:Sr,updateAffiliateCode:Cr,getAffiliateCode:Rr,isAffiliateCodeFree:Tr,getPayoutsLeaderboard:Pr,getPointsLeaderboard:Or,getReferredUsersLeaderboard:_r,getUserAudiences:kr,getUserPayoutsByConversion:Nr,getUserPointsByConversion:Ur,getUserPointsMovements:Dr,getUserPayoutMovements:Lr,getUserAffiliates:Br,getVolumeLeaderboard:xr};T.AddressInUseError=Oe,T.CodeInUseError=_e,T.Fuul=qr,T.InvalidSignatureError=xe,T.ValidationError=Pe,Object.defineProperty(T,Symbol.toStringTag,{value:"Module"})});
|
package/dist/release.json.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,QAAQ,aAAa;IACrB,MAAM,WAAW;CAClB"}
|
package/dist/types/sdk.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BlockchainType } from '.';
|
|
1
2
|
export type FuulSettings = {
|
|
2
3
|
debug?: boolean;
|
|
3
4
|
apiKey: string;
|
|
@@ -20,6 +21,7 @@ export type AffiliateLinkParams = {
|
|
|
20
21
|
};
|
|
21
22
|
export type AffiliateCodeParams = {
|
|
22
23
|
address: string;
|
|
24
|
+
blockchain: BlockchainType;
|
|
23
25
|
code: string;
|
|
24
26
|
signature: string;
|
|
25
27
|
accountChainId?: number;
|
package/dist/types/sdk.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdk.d.ts","sourceRoot":"","sources":["../../src/types/sdk.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,kBAAkB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC7C,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAChC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAChC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB,CAAC"}
|
|
1
|
+
{"version":3,"file":"sdk.d.ts","sourceRoot":"","sources":["../../src/types/sdk.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,GAAG,CAAC;AAEnC,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,kBAAkB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC7C,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAChC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAChC,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,cAAc,CAAC;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB,CAAC"}
|