@mohasinac/appkit 3.7.0 → 3.8.1
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/_internal/server/features/categories/data.js +2 -2
- package/dist/_internal/shared/actions/action-registry.js +8 -0
- package/dist/constants/api-endpoints.d.ts +3 -0
- package/dist/constants/api-endpoints.js +1 -0
- package/dist/features/admin/components/AdminBidsView.js +6 -6
- package/dist/features/admin/components/AdminBrandsView.js +2 -2
- package/dist/features/admin/components/AdminCartsView.js +3 -6
- package/dist/features/admin/components/AdminPrizeDrawsView.js +3 -3
- package/dist/features/admin/components/AdminReviewsView.js +5 -5
- package/dist/features/admin/components/AdminSublistingCategoriesView.js +1 -1
- package/dist/features/auth/repository/session.repository.d.ts +2 -0
- package/dist/features/auth/repository/session.repository.js +4 -1
- package/dist/features/categories/api/route.js +2 -2
- package/dist/features/categories/components/CategoriesIndexListing.js +1 -1
- package/dist/features/events/repository/event-entry.repository.js +1 -0
- package/dist/features/events/schemas/firestore.d.ts +3 -1
- package/dist/features/events/schemas/firestore.js +1 -0
- package/dist/features/layout/BottomNavbar.js +1 -1
- package/dist/features/layout/NavItem.js +1 -1
- package/dist/features/layout/NavbarLayout.js +2 -2
- package/dist/features/products/constants/sieve.d.ts +0 -6
- package/dist/features/products/constants/sieve.js +4 -2
- package/dist/features/products/repository/products.repository.d.ts +20 -0
- package/dist/features/products/repository/products.repository.js +5 -0
- package/dist/features/promotions/components/CouponsIndexListing.js +16 -3
- package/dist/features/search/hooks/useNavSuggestions.js +20 -1
- package/dist/features/seller/components/SellerArtView.js +1 -1
- package/dist/features/seller/components/SellerAuctionsView.js +3 -3
- package/dist/features/seller/components/SellerClassifiedView.js +1 -1
- package/dist/features/seller/components/SellerCouponsView.js +1 -1
- package/dist/features/seller/components/SellerDigitalCodesView.js +1 -1
- package/dist/features/seller/components/SellerLiveView.js +1 -1
- package/dist/features/seller/components/SellerPreOrdersView.js +3 -3
- package/dist/features/seller/components/SellerPrizeDrawsView.js +3 -3
- package/dist/features/seller/components/SellerStickersView.js +1 -1
- package/dist/features/stores/components/StoreDetailLayoutView.js +1 -1
- package/dist/features/stores/repository/store.repository.js +3 -0
- package/dist/features/tester/components/AdminTesterFeedbackView.js +22 -2
- package/dist/features/tester/repository/tester-checklist-response.repository.d.ts +8 -0
- package/dist/features/tester/repository/tester-checklist-response.repository.js +98 -0
- package/dist/features/tester/seed-data/tester-checklist-seed-data.js +1 -1
- package/dist/index.d.ts +0 -27
- package/dist/index.js +0 -81
- package/dist/seed/bids-seed-data.js +63 -184
- package/dist/server.d.ts +26 -0
- package/dist/server.js +27 -0
- package/dist/styles.css +19 -19
- package/dist/tailwind-utilities.css +1 -1
- package/dist/tokens/themes/default-dark.js +9 -9
- package/dist/tokens/themes/default-light.js +9 -9
- package/dist/tokens/tokens.css +18 -18
- package/dist/ui/components/ListingToolbar.js +1 -1
- package/package.json +1 -1
package/dist/server.d.ts
CHANGED
|
@@ -454,6 +454,32 @@ export { applyRateLimit } from "./security/index";
|
|
|
454
454
|
export { rateLimitByIdentifier } from "./security/index";
|
|
455
455
|
export { RateLimitPresets } from "./security/index";
|
|
456
456
|
export { maskPublicEventEntry } from "./security/index";
|
|
457
|
+
export { encryptValue } from "./security/index";
|
|
458
|
+
export { decryptValue } from "./security/index";
|
|
459
|
+
export { hmacBlindIndex } from "./security/index";
|
|
460
|
+
export { encryptPiiFields } from "./security/index";
|
|
461
|
+
export { decryptPiiFields } from "./security/index";
|
|
462
|
+
export { encryptPii } from "./security/index";
|
|
463
|
+
export { decryptPii } from "./security/index";
|
|
464
|
+
export { isPiiEncrypted } from "./security/index";
|
|
465
|
+
export { piiBlindIndex } from "./security/index";
|
|
466
|
+
export { addPiiIndices } from "./security/index";
|
|
467
|
+
export { getPiiConfigError } from "./security/index";
|
|
468
|
+
export { encryptShippingAddress } from "./security/index";
|
|
469
|
+
export { decryptShippingAddress } from "./security/index";
|
|
470
|
+
export { encryptPayoutDetails } from "./security/index";
|
|
471
|
+
export { decryptPayoutDetails } from "./security/index";
|
|
472
|
+
export { encryptShippingConfig } from "./security/index";
|
|
473
|
+
export { decryptShippingConfig } from "./security/index";
|
|
474
|
+
export { encryptPayoutBankAccount } from "./security/index";
|
|
475
|
+
export { decryptPayoutBankAccount } from "./security/index";
|
|
476
|
+
export { maskName } from "./security/index";
|
|
477
|
+
export { maskEmail } from "./security/index";
|
|
478
|
+
export { maskPublicReview } from "./security/index";
|
|
479
|
+
export { maskPublicBid } from "./security/index";
|
|
480
|
+
export { maskOfferForSeller } from "./security/index";
|
|
481
|
+
export { ENC_PREFIX } from "./security/index";
|
|
482
|
+
export { HMAC_PREFIX } from "./security/index";
|
|
457
483
|
export { createInstrumentation } from "./instrumentation/index";
|
|
458
484
|
export { SEO_CONFIG } from "./seo/index";
|
|
459
485
|
export { createSeoConfig } from "./seo/index";
|
package/dist/server.js
CHANGED
|
@@ -1312,6 +1312,33 @@ export { rateLimitByIdentifier } from "./security/index";
|
|
|
1312
1312
|
export { RateLimitPresets } from "./security/index";
|
|
1313
1313
|
// maskPublicEventEntry - Redact PII from event entries before public exposure.
|
|
1314
1314
|
export { maskPublicEventEntry } from "./security/index";
|
|
1315
|
+
// PII encryption/masking (server-only -- crypto module via node:module, must never leak into a client bundle; see appkit Export Rules in CLAUDE.md)
|
|
1316
|
+
export { encryptValue } from "./security/index";
|
|
1317
|
+
export { decryptValue } from "./security/index";
|
|
1318
|
+
export { hmacBlindIndex } from "./security/index";
|
|
1319
|
+
export { encryptPiiFields } from "./security/index";
|
|
1320
|
+
export { decryptPiiFields } from "./security/index";
|
|
1321
|
+
export { encryptPii } from "./security/index";
|
|
1322
|
+
export { decryptPii } from "./security/index";
|
|
1323
|
+
export { isPiiEncrypted } from "./security/index";
|
|
1324
|
+
export { piiBlindIndex } from "./security/index";
|
|
1325
|
+
export { addPiiIndices } from "./security/index";
|
|
1326
|
+
export { getPiiConfigError } from "./security/index";
|
|
1327
|
+
export { encryptShippingAddress } from "./security/index";
|
|
1328
|
+
export { decryptShippingAddress } from "./security/index";
|
|
1329
|
+
export { encryptPayoutDetails } from "./security/index";
|
|
1330
|
+
export { decryptPayoutDetails } from "./security/index";
|
|
1331
|
+
export { encryptShippingConfig } from "./security/index";
|
|
1332
|
+
export { decryptShippingConfig } from "./security/index";
|
|
1333
|
+
export { encryptPayoutBankAccount } from "./security/index";
|
|
1334
|
+
export { decryptPayoutBankAccount } from "./security/index";
|
|
1335
|
+
export { maskName } from "./security/index";
|
|
1336
|
+
export { maskEmail } from "./security/index";
|
|
1337
|
+
export { maskPublicReview } from "./security/index";
|
|
1338
|
+
export { maskPublicBid } from "./security/index";
|
|
1339
|
+
export { maskOfferForSeller } from "./security/index";
|
|
1340
|
+
export { ENC_PREFIX } from "./security/index";
|
|
1341
|
+
export { HMAC_PREFIX } from "./security/index";
|
|
1315
1342
|
// -- Instrumentation ---------------------------------------------------------
|
|
1316
1343
|
// createInstrumentation - Factory for Next.js instrumentation hooks.
|
|
1317
1344
|
export { createInstrumentation } from "./instrumentation/index";
|