@chrryai/waffles 1.1.89 → 1.1.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5,17 +5,9 @@ import process2 from 'process';
|
|
|
5
5
|
import { faker } from '@faker-js/faker';
|
|
6
6
|
|
|
7
7
|
// src/utils.ts
|
|
8
|
-
var TEST_GUEST_FINGERPRINTS = ["
|
|
9
|
-
var TEST_MEMBER_FINGERPRINTS = [
|
|
10
|
-
|
|
11
|
-
"244517e0-2a29-4202-a4fc-facc7ba3ce47",
|
|
12
|
-
"5bf88c9b-6975-49ae-a5db-74e85ada82d6"
|
|
13
|
-
];
|
|
14
|
-
var TEST_MEMBER_EMAILS = [
|
|
15
|
-
"feedbackwallet@gmail.com",
|
|
16
|
-
"diplomatictechno@gmail.com",
|
|
17
|
-
"localswaphub@gmail.com"
|
|
18
|
-
];
|
|
8
|
+
var TEST_GUEST_FINGERPRINTS = ["EDIT"];
|
|
9
|
+
var TEST_MEMBER_FINGERPRINTS = ["EDIT"];
|
|
10
|
+
var TEST_MEMBER_EMAILS = ["EDIT"];
|
|
19
11
|
var VEX_TEST_EMAIL = process.env.VEX_TEST_EMAIL_1;
|
|
20
12
|
var VEX_TEST_PASSWORD = process.env.VEX_TEST_PASSWORD_1;
|
|
21
13
|
var VEX_TEST_FINGERPRINT = TEST_MEMBER_FINGERPRINTS[0];
|
|
@@ -27,7 +19,7 @@ var VEX_TEST_PASSWORD_3 = process.env.VEX_TEST_PASSWORD_3;
|
|
|
27
19
|
var VEX_TEST_FINGERPRINT_3 = TEST_MEMBER_FINGERPRINTS[2];
|
|
28
20
|
dotenv.config();
|
|
29
21
|
var TEST_URL = process.env.TEST_URL;
|
|
30
|
-
var LIVE_URL = "https://
|
|
22
|
+
var LIVE_URL = "https://chrry.ai";
|
|
31
23
|
var wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
32
24
|
var isCI = process.env.NEXT_PUBLIC_CI || process.env.CI;
|
|
33
25
|
var getURL = ({
|