addio-admin-sdk 1.7.164 → 1.7.165
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/.claude/settings.local.json +7 -0
- package/.env +5 -6
- package/dist/lib/Cart/index.js +1 -1
- package/dist/lib/Cart/index.js.map +1 -1
- package/dist/services/g2/utils.js +10 -12
- package/dist/services/g2/utils.js.map +1 -1
- package/package.json +1 -1
- package/dist/lib/Queue/index.d.ts +0 -40
- package/dist/lib/Queue/index.js +0 -255
- package/dist/lib/Queue/index.js.map +0 -1
package/.env
CHANGED
|
@@ -2,14 +2,13 @@ NEXT_PUBLIC_FIREBASE_CONFIG_API_KEY_DEV='AIzaSyBNtwzdIe2__HJD23S87RIbWbIqKQVtFiw
|
|
|
2
2
|
NEXT_PUBLIC_FIREBASE_CONFIG_API_KEY_PROD='AIzaSyDK6WQZkCrsMGunAPHn9KkdCGPky4hTgL4'
|
|
3
3
|
NEXT_PUBLIC_MESSAGING_SENDER_ID_DEV='188490998694'
|
|
4
4
|
NEXT_PUBLIC_MESSAGING_SENDER_ID_PROD='725873016982'
|
|
5
|
-
NEXT_PUBLIC_FIREBASE_APP_ID_PROD='1:725873016982:web:9b1f6d77819909e19102b7'
|
|
6
5
|
NEXT_PUBLIC_FIREBASE_APP_ID_DEV='1:188490998694:web:eecd719e7b18f38d272567'
|
|
6
|
+
NEXT_PUBLIC_FIREBASE_APP_ID_PROD='1:725873016982:web:9b1f6d77819909e19102b7'
|
|
7
7
|
NEXT_PUBLIC_MEASUREMENT_ID_DEV='G-4BB66ZRTWZ'
|
|
8
8
|
NEXT_PUBLIC_MEASUREMENT_ID_PROD='G-BB8HHZ466R'
|
|
9
|
-
|
|
10
9
|
NEXT_PUBLIC_SERVICE_DATABASE_READ_PROVIDER=nobase
|
|
11
|
-
NEXT_PUBLIC_SERVICE_DATABASE_WRITE_PROVIDER=nobase
|
|
10
|
+
NEXT_PUBLIC_SERVICE_DATABASE_WRITE_PROVIDER=nobase,firebase
|
|
12
11
|
NEXT_PUBLIC_SERVICE_DATABASE_URL=https://db-test.addiocommerce.com/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
NEXT_PUBLIC_SERVICE_DATABASE_TOKEN=$SERVICE_DATABASE_TOKEN
|
|
13
|
+
# NEXT_PUBLIC_API_URL=https://api-test.addiocommerce.com/v1
|
|
14
|
+
NEXT_PUBLIC_API_URL=http://localhost:8080
|
package/dist/lib/Cart/index.js
CHANGED
|
@@ -3494,7 +3494,7 @@ class Cart extends baseService_1.BaseServiceClass {
|
|
|
3494
3494
|
if (!!!red.external_service_association)
|
|
3495
3495
|
continue;
|
|
3496
3496
|
for (let extService of red.external_service_association) {
|
|
3497
|
-
if (!!item.sku.includes(extService.value))
|
|
3497
|
+
if (!!extService.value && item.sku.includes(extService.value))
|
|
3498
3498
|
isEscSupp = true;
|
|
3499
3499
|
}
|
|
3500
3500
|
}
|