@stacksjs/payments 0.58.50 → 0.58.52
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/index.js +21 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -26,6 +26,21 @@ var __export = (target, all) => {
|
|
|
26
26
|
});
|
|
27
27
|
};
|
|
28
28
|
|
|
29
|
+
// /home/runner/work/stacks/stacks/node_modules/es-errors/range.js
|
|
30
|
+
var require_range = __commonJS((exports, module) => {
|
|
31
|
+
module.exports = RangeError;
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
// /home/runner/work/stacks/stacks/node_modules/es-errors/syntax.js
|
|
35
|
+
var require_syntax = __commonJS((exports, module) => {
|
|
36
|
+
module.exports = SyntaxError;
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
// /home/runner/work/stacks/stacks/node_modules/es-errors/type.js
|
|
40
|
+
var require_type = __commonJS((exports, module) => {
|
|
41
|
+
module.exports = TypeError;
|
|
42
|
+
});
|
|
43
|
+
|
|
29
44
|
// /home/runner/work/stacks/stacks/node_modules/has-symbols/shams.js
|
|
30
45
|
var require_shams = __commonJS((exports, module) => {
|
|
31
46
|
module.exports = function hasSymbols() {
|
|
@@ -191,9 +206,10 @@ var require_hasown = __commonJS((exports, module) => {
|
|
|
191
206
|
// /home/runner/work/stacks/stacks/node_modules/get-intrinsic/index.js
|
|
192
207
|
var require_get_intrinsic = __commonJS((exports, module) => {
|
|
193
208
|
var undefined2;
|
|
194
|
-
var $
|
|
209
|
+
var $RangeError = require_range();
|
|
210
|
+
var $SyntaxError = require_syntax();
|
|
211
|
+
var $TypeError = require_type();
|
|
195
212
|
var $Function = Function;
|
|
196
|
-
var $TypeError = TypeError;
|
|
197
213
|
var getEvalledConstructor = function(expressionSyntax) {
|
|
198
214
|
try {
|
|
199
215
|
return $Function('"use strict"; return (' + expressionSyntax + ").constructor;")();
|
|
@@ -231,6 +247,7 @@ var require_get_intrinsic = __commonJS((exports, module) => {
|
|
|
231
247
|
var needsEval = {};
|
|
232
248
|
var TypedArray = typeof Uint8Array === "undefined" || !getProto ? undefined2 : getProto(Uint8Array);
|
|
233
249
|
var INTRINSICS = {
|
|
250
|
+
__proto__: null,
|
|
234
251
|
"%AggregateError%": typeof AggregateError === "undefined" ? undefined2 : AggregateError,
|
|
235
252
|
"%Array%": Array,
|
|
236
253
|
"%ArrayBuffer%": typeof ArrayBuffer === "undefined" ? undefined2 : ArrayBuffer,
|
|
@@ -275,7 +292,7 @@ var require_get_intrinsic = __commonJS((exports, module) => {
|
|
|
275
292
|
"%parseInt%": parseInt,
|
|
276
293
|
"%Promise%": typeof Promise === "undefined" ? undefined2 : Promise,
|
|
277
294
|
"%Proxy%": typeof Proxy === "undefined" ? undefined2 : Proxy,
|
|
278
|
-
"%RangeError%": RangeError,
|
|
295
|
+
"%RangeError%": $RangeError,
|
|
279
296
|
"%ReferenceError%": ReferenceError,
|
|
280
297
|
"%Reflect%": typeof Reflect === "undefined" ? undefined2 : Reflect,
|
|
281
298
|
"%RegExp%": RegExp,
|
|
@@ -330,6 +347,7 @@ var require_get_intrinsic = __commonJS((exports, module) => {
|
|
|
330
347
|
return value;
|
|
331
348
|
};
|
|
332
349
|
var LEGACY_ALIASES = {
|
|
350
|
+
__proto__: null,
|
|
333
351
|
"%ArrayBufferPrototype%": ["ArrayBuffer", "prototype"],
|
|
334
352
|
"%ArrayPrototype%": ["Array", "prototype"],
|
|
335
353
|
"%ArrayProto_entries%": ["Array", "prototype", "entries"],
|