@infuro/cms-core 1.0.41 → 1.0.42
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 +5 -18
- package/dist/admin.cjs +903 -287
- package/dist/admin.d.cts +11 -1
- package/dist/admin.d.ts +11 -1
- package/dist/admin.js +903 -287
- package/dist/api.cjs +35 -35
- package/dist/api.js +3 -3
- package/dist/auth.cjs +51 -51
- package/dist/auth.js +3 -3
- package/dist/{chunk-UXMDSNIG.js → chunk-BLR6H5GL.js} +1 -1
- package/dist/{chunk-P7QCLE5W.js → chunk-DN65KDIA.js} +11 -1
- package/dist/{chunk-QU554KAZ.cjs → chunk-GINYYPXK.cjs} +796 -149
- package/dist/{chunk-4BG7XYSH.js → chunk-I6NH72MO.js} +1 -1
- package/dist/{chunk-ETZN4OQI.cjs → chunk-TAHX46EI.cjs} +6 -6
- package/dist/{chunk-EG4ICILK.js → chunk-W2NL365N.js} +745 -110
- package/dist/{chunk-WMXPKKXU.cjs → chunk-X6UQFV4X.cjs} +11 -1
- package/dist/{chunk-OIGCAGH7.cjs → chunk-ZMRQ72F6.cjs} +7 -7
- package/dist/index.cjs +290 -242
- package/dist/index.d.cts +110 -5
- package/dist/index.d.ts +110 -5
- package/dist/index.js +6 -6
- package/dist/migrations/1781300000000-BrandIsCatalog.ts +61 -0
- package/dist/migrations/1781400000000-ComboEventIdNullable.ts +30 -0
- package/dist/migrations/1781500000000-ProductApprovalWorkflow.ts +30 -0
- package/dist/migrations/1781600000000-ProductApprovalStatusColumn.ts +53 -0
- package/dist/migrations/1781700000000-EventApprovalWorkflow.ts +32 -0
- package/dist/{rbac-debug-db-QWHOENBR.js → rbac-debug-db-2SGNLANF.js} +1 -1
- package/dist/{rbac-debug-db-KHG4FJC3.cjs → rbac-debug-db-4Z6A425H.cjs} +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var chunkHT5DI3XW_cjs = require('./chunk-HT5DI3XW.cjs');
|
|
4
|
-
var
|
|
4
|
+
var chunkGINYYPXK_cjs = require('./chunk-GINYYPXK.cjs');
|
|
5
5
|
var chunk22FFHLTO_cjs = require('./chunk-22FFHLTO.cjs');
|
|
6
6
|
var chunkUCKN4BBY_cjs = require('./chunk-UCKN4BBY.cjs');
|
|
7
7
|
require('./chunk-7NMT3GBR.cjs');
|
|
@@ -11,9 +11,9 @@ require('./chunk-3DZRIZOD.cjs');
|
|
|
11
11
|
require('./chunk-OOTLNH63.cjs');
|
|
12
12
|
var chunkSPQFNIYJ_cjs = require('./chunk-SPQFNIYJ.cjs');
|
|
13
13
|
var chunkXQ3QUHWR_cjs = require('./chunk-XQ3QUHWR.cjs');
|
|
14
|
-
var
|
|
15
|
-
var
|
|
16
|
-
var
|
|
14
|
+
var chunkTAHX46EI_cjs = require('./chunk-TAHX46EI.cjs');
|
|
15
|
+
var chunkZMRQ72F6_cjs = require('./chunk-ZMRQ72F6.cjs');
|
|
16
|
+
var chunkX6UQFV4X_cjs = require('./chunk-X6UQFV4X.cjs');
|
|
17
17
|
var chunkHF3L2GIT_cjs = require('./chunk-HF3L2GIT.cjs');
|
|
18
18
|
var chunkD5FBNKQM_cjs = require('./chunk-D5FBNKQM.cjs');
|
|
19
19
|
require('./chunk-UPLVMVRX.cjs');
|
|
@@ -2413,14 +2413,14 @@ chunkUSNT2KNT_cjs.__name(seedDefaultAdmin, "seedDefaultAdmin");
|
|
|
2413
2413
|
// src/lib/enrich-user-vendor-context.ts
|
|
2414
2414
|
async function enrichUserWithVendorContext(dataSource, user) {
|
|
2415
2415
|
if (!user) return null;
|
|
2416
|
-
const multiVendorEnabled = await
|
|
2417
|
-
const ctx = await
|
|
2418
|
-
const isRBACAdmin =
|
|
2416
|
+
const multiVendorEnabled = await chunkGINYYPXK_cjs.checkMultiVendorEnabled(dataSource);
|
|
2417
|
+
const ctx = await chunkGINYYPXK_cjs.loadUserVendorContext(dataSource, user.id);
|
|
2418
|
+
const isRBACAdmin = chunkX6UQFV4X_cjs.isSuperAdmin({
|
|
2419
2419
|
groupId: user.groupId ?? void 0,
|
|
2420
2420
|
groupName: user.group?.name,
|
|
2421
2421
|
isRBACAdmin: false
|
|
2422
2422
|
});
|
|
2423
|
-
const isVendorOnlyUser = !isRBACAdmin && (ctx.vendorIds.length > 0 ||
|
|
2423
|
+
const isVendorOnlyUser = !isRBACAdmin && (ctx.vendorIds.length > 0 || chunkX6UQFV4X_cjs.isVendorGroupName(user.group?.name));
|
|
2424
2424
|
if (!multiVendorEnabled && isVendorOnlyUser) {
|
|
2425
2425
|
console.log("[enrich-vendor]", {
|
|
2426
2426
|
email: user.email,
|
|
@@ -2471,7 +2471,7 @@ async function loadPublicThemeSettings(config) {
|
|
|
2471
2471
|
footerOverrides: {}
|
|
2472
2472
|
};
|
|
2473
2473
|
try {
|
|
2474
|
-
const raw = await
|
|
2474
|
+
const raw = await chunkGINYYPXK_cjs.getPublicSettingsGroup({
|
|
2475
2475
|
dataSource: config.dataSource,
|
|
2476
2476
|
entityMap: config.entityMap,
|
|
2477
2477
|
encryptionKey: config.encryptionKey
|
|
@@ -2769,7 +2769,7 @@ function blogGeneratorPlugin(config = {}) {
|
|
|
2769
2769
|
context.logger.warn("Blog Generator plugin skipped: disabled in config");
|
|
2770
2770
|
return void 0;
|
|
2771
2771
|
}
|
|
2772
|
-
return new
|
|
2772
|
+
return new chunkGINYYPXK_cjs.BlogGeneratorService();
|
|
2773
2773
|
}
|
|
2774
2774
|
};
|
|
2775
2775
|
}
|
|
@@ -2846,739 +2846,787 @@ Object.defineProperty(exports, "fireOrderNotificationTrigger", {
|
|
|
2846
2846
|
});
|
|
2847
2847
|
Object.defineProperty(exports, "Address", {
|
|
2848
2848
|
enumerable: true,
|
|
2849
|
-
get: function () { return
|
|
2849
|
+
get: function () { return chunkGINYYPXK_cjs.Address; }
|
|
2850
2850
|
});
|
|
2851
2851
|
Object.defineProperty(exports, "Attendee", {
|
|
2852
2852
|
enumerable: true,
|
|
2853
|
-
get: function () { return
|
|
2853
|
+
get: function () { return chunkGINYYPXK_cjs.Attendee; }
|
|
2854
2854
|
});
|
|
2855
2855
|
Object.defineProperty(exports, "Attribute", {
|
|
2856
2856
|
enumerable: true,
|
|
2857
|
-
get: function () { return
|
|
2857
|
+
get: function () { return chunkGINYYPXK_cjs.Attribute; }
|
|
2858
2858
|
});
|
|
2859
2859
|
Object.defineProperty(exports, "BLOG_GENERATOR_AGENT_NAME", {
|
|
2860
2860
|
enumerable: true,
|
|
2861
|
-
get: function () { return
|
|
2861
|
+
get: function () { return chunkGINYYPXK_cjs.BLOG_GENERATOR_AGENT_NAME; }
|
|
2862
2862
|
});
|
|
2863
2863
|
Object.defineProperty(exports, "BLOG_GENERATOR_DEFAULT_SYSTEM_INSTRUCTION", {
|
|
2864
2864
|
enumerable: true,
|
|
2865
|
-
get: function () { return
|
|
2865
|
+
get: function () { return chunkGINYYPXK_cjs.BLOG_GENERATOR_DEFAULT_SYSTEM_INSTRUCTION; }
|
|
2866
2866
|
});
|
|
2867
2867
|
Object.defineProperty(exports, "BLOG_GENERATOR_DEFAULT_VALIDATION_RULES", {
|
|
2868
2868
|
enumerable: true,
|
|
2869
|
-
get: function () { return
|
|
2869
|
+
get: function () { return chunkGINYYPXK_cjs.BLOG_GENERATOR_DEFAULT_VALIDATION_RULES; }
|
|
2870
2870
|
});
|
|
2871
2871
|
Object.defineProperty(exports, "BLOG_GENERATOR_LLM_AGENT_SLUG", {
|
|
2872
2872
|
enumerable: true,
|
|
2873
|
-
get: function () { return
|
|
2873
|
+
get: function () { return chunkGINYYPXK_cjs.BLOG_GENERATOR_LLM_AGENT_SLUG; }
|
|
2874
2874
|
});
|
|
2875
2875
|
Object.defineProperty(exports, "BLOG_GENERATOR_MARKDOWN_ARTICLE_SEPARATOR", {
|
|
2876
2876
|
enumerable: true,
|
|
2877
|
-
get: function () { return
|
|
2877
|
+
get: function () { return chunkGINYYPXK_cjs.BLOG_GENERATOR_MARKDOWN_ARTICLE_SEPARATOR; }
|
|
2878
2878
|
});
|
|
2879
2879
|
Object.defineProperty(exports, "BLOG_METADATA_ENRICHER_AGENT_NAME", {
|
|
2880
2880
|
enumerable: true,
|
|
2881
|
-
get: function () { return
|
|
2881
|
+
get: function () { return chunkGINYYPXK_cjs.BLOG_METADATA_ENRICHER_AGENT_NAME; }
|
|
2882
2882
|
});
|
|
2883
2883
|
Object.defineProperty(exports, "BLOG_METADATA_ENRICHER_DEFAULT_SYSTEM_INSTRUCTION", {
|
|
2884
2884
|
enumerable: true,
|
|
2885
|
-
get: function () { return
|
|
2885
|
+
get: function () { return chunkGINYYPXK_cjs.BLOG_METADATA_ENRICHER_DEFAULT_SYSTEM_INSTRUCTION; }
|
|
2886
2886
|
});
|
|
2887
2887
|
Object.defineProperty(exports, "BLOG_METADATA_ENRICHER_DEFAULT_VALIDATION_RULES", {
|
|
2888
2888
|
enumerable: true,
|
|
2889
|
-
get: function () { return
|
|
2889
|
+
get: function () { return chunkGINYYPXK_cjs.BLOG_METADATA_ENRICHER_DEFAULT_VALIDATION_RULES; }
|
|
2890
2890
|
});
|
|
2891
2891
|
Object.defineProperty(exports, "BLOG_METADATA_ENRICHER_LLM_AGENT_SLUG", {
|
|
2892
2892
|
enumerable: true,
|
|
2893
|
-
get: function () { return
|
|
2893
|
+
get: function () { return chunkGINYYPXK_cjs.BLOG_METADATA_ENRICHER_LLM_AGENT_SLUG; }
|
|
2894
2894
|
});
|
|
2895
2895
|
Object.defineProperty(exports, "Blog", {
|
|
2896
2896
|
enumerable: true,
|
|
2897
|
-
get: function () { return
|
|
2897
|
+
get: function () { return chunkGINYYPXK_cjs.Blog; }
|
|
2898
2898
|
});
|
|
2899
2899
|
Object.defineProperty(exports, "BlogGeneratorService", {
|
|
2900
2900
|
enumerable: true,
|
|
2901
|
-
get: function () { return
|
|
2901
|
+
get: function () { return chunkGINYYPXK_cjs.BlogGeneratorService; }
|
|
2902
2902
|
});
|
|
2903
2903
|
Object.defineProperty(exports, "Brand", {
|
|
2904
2904
|
enumerable: true,
|
|
2905
|
-
get: function () { return
|
|
2905
|
+
get: function () { return chunkGINYYPXK_cjs.Brand; }
|
|
2906
2906
|
});
|
|
2907
2907
|
Object.defineProperty(exports, "CMS_ENTITY_MAP", {
|
|
2908
2908
|
enumerable: true,
|
|
2909
|
-
get: function () { return
|
|
2909
|
+
get: function () { return chunkGINYYPXK_cjs.CMS_ENTITY_MAP; }
|
|
2910
2910
|
});
|
|
2911
2911
|
Object.defineProperty(exports, "Cart", {
|
|
2912
2912
|
enumerable: true,
|
|
2913
|
-
get: function () { return
|
|
2913
|
+
get: function () { return chunkGINYYPXK_cjs.Cart; }
|
|
2914
2914
|
});
|
|
2915
2915
|
Object.defineProperty(exports, "CartItem", {
|
|
2916
2916
|
enumerable: true,
|
|
2917
|
-
get: function () { return
|
|
2917
|
+
get: function () { return chunkGINYYPXK_cjs.CartItem; }
|
|
2918
2918
|
});
|
|
2919
2919
|
Object.defineProperty(exports, "Category", {
|
|
2920
2920
|
enumerable: true,
|
|
2921
|
-
get: function () { return
|
|
2921
|
+
get: function () { return chunkGINYYPXK_cjs.Category; }
|
|
2922
2922
|
});
|
|
2923
2923
|
Object.defineProperty(exports, "ChatConversation", {
|
|
2924
2924
|
enumerable: true,
|
|
2925
|
-
get: function () { return
|
|
2925
|
+
get: function () { return chunkGINYYPXK_cjs.ChatConversation; }
|
|
2926
2926
|
});
|
|
2927
2927
|
Object.defineProperty(exports, "ChatMessage", {
|
|
2928
2928
|
enumerable: true,
|
|
2929
|
-
get: function () { return
|
|
2929
|
+
get: function () { return chunkGINYYPXK_cjs.ChatMessage; }
|
|
2930
2930
|
});
|
|
2931
2931
|
Object.defineProperty(exports, "Collection", {
|
|
2932
2932
|
enumerable: true,
|
|
2933
|
-
get: function () { return
|
|
2933
|
+
get: function () { return chunkGINYYPXK_cjs.Collection; }
|
|
2934
2934
|
});
|
|
2935
2935
|
Object.defineProperty(exports, "Combo", {
|
|
2936
2936
|
enumerable: true,
|
|
2937
|
-
get: function () { return
|
|
2937
|
+
get: function () { return chunkGINYYPXK_cjs.Combo; }
|
|
2938
2938
|
});
|
|
2939
2939
|
Object.defineProperty(exports, "ComboItem", {
|
|
2940
2940
|
enumerable: true,
|
|
2941
|
-
get: function () { return
|
|
2941
|
+
get: function () { return chunkGINYYPXK_cjs.ComboItem; }
|
|
2942
2942
|
});
|
|
2943
2943
|
Object.defineProperty(exports, "Comment", {
|
|
2944
2944
|
enumerable: true,
|
|
2945
|
-
get: function () { return
|
|
2945
|
+
get: function () { return chunkGINYYPXK_cjs.Comment; }
|
|
2946
2946
|
});
|
|
2947
2947
|
Object.defineProperty(exports, "Config", {
|
|
2948
2948
|
enumerable: true,
|
|
2949
|
-
get: function () { return
|
|
2949
|
+
get: function () { return chunkGINYYPXK_cjs.Config; }
|
|
2950
2950
|
});
|
|
2951
2951
|
Object.defineProperty(exports, "Contact", {
|
|
2952
2952
|
enumerable: true,
|
|
2953
|
-
get: function () { return
|
|
2953
|
+
get: function () { return chunkGINYYPXK_cjs.Contact; }
|
|
2954
2954
|
});
|
|
2955
2955
|
Object.defineProperty(exports, "Currency", {
|
|
2956
2956
|
enumerable: true,
|
|
2957
|
-
get: function () { return
|
|
2957
|
+
get: function () { return chunkGINYYPXK_cjs.Currency; }
|
|
2958
2958
|
});
|
|
2959
2959
|
Object.defineProperty(exports, "CurrencyExchange", {
|
|
2960
2960
|
enumerable: true,
|
|
2961
|
-
get: function () { return
|
|
2961
|
+
get: function () { return chunkGINYYPXK_cjs.CurrencyExchange; }
|
|
2962
2962
|
});
|
|
2963
2963
|
Object.defineProperty(exports, "Customer", {
|
|
2964
2964
|
enumerable: true,
|
|
2965
|
-
get: function () { return
|
|
2965
|
+
get: function () { return chunkGINYYPXK_cjs.Customer; }
|
|
2966
2966
|
});
|
|
2967
2967
|
Object.defineProperty(exports, "Customer_Contacts", {
|
|
2968
2968
|
enumerable: true,
|
|
2969
|
-
get: function () { return
|
|
2969
|
+
get: function () { return chunkGINYYPXK_cjs.Customer_Contacts; }
|
|
2970
2970
|
});
|
|
2971
2971
|
Object.defineProperty(exports, "Discount", {
|
|
2972
2972
|
enumerable: true,
|
|
2973
|
-
get: function () { return
|
|
2973
|
+
get: function () { return chunkGINYYPXK_cjs.Discount; }
|
|
2974
2974
|
});
|
|
2975
2975
|
Object.defineProperty(exports, "DiscountRules", {
|
|
2976
2976
|
enumerable: true,
|
|
2977
|
-
get: function () { return
|
|
2977
|
+
get: function () { return chunkGINYYPXK_cjs.DiscountRules; }
|
|
2978
2978
|
});
|
|
2979
2979
|
Object.defineProperty(exports, "Event", {
|
|
2980
2980
|
enumerable: true,
|
|
2981
|
-
get: function () { return
|
|
2981
|
+
get: function () { return chunkGINYYPXK_cjs.Event; }
|
|
2982
2982
|
});
|
|
2983
2983
|
Object.defineProperty(exports, "EventProduct", {
|
|
2984
2984
|
enumerable: true,
|
|
2985
|
-
get: function () { return
|
|
2985
|
+
get: function () { return chunkGINYYPXK_cjs.EventProduct; }
|
|
2986
2986
|
});
|
|
2987
2987
|
Object.defineProperty(exports, "Form", {
|
|
2988
2988
|
enumerable: true,
|
|
2989
|
-
get: function () { return
|
|
2989
|
+
get: function () { return chunkGINYYPXK_cjs.Form; }
|
|
2990
2990
|
});
|
|
2991
2991
|
Object.defineProperty(exports, "FormField", {
|
|
2992
2992
|
enumerable: true,
|
|
2993
|
-
get: function () { return
|
|
2993
|
+
get: function () { return chunkGINYYPXK_cjs.FormField; }
|
|
2994
2994
|
});
|
|
2995
2995
|
Object.defineProperty(exports, "FormSubmission", {
|
|
2996
2996
|
enumerable: true,
|
|
2997
|
-
get: function () { return
|
|
2997
|
+
get: function () { return chunkGINYYPXK_cjs.FormSubmission; }
|
|
2998
2998
|
});
|
|
2999
2999
|
Object.defineProperty(exports, "JobSchedule", {
|
|
3000
3000
|
enumerable: true,
|
|
3001
|
-
get: function () { return
|
|
3001
|
+
get: function () { return chunkGINYYPXK_cjs.JobSchedule; }
|
|
3002
3002
|
});
|
|
3003
3003
|
Object.defineProperty(exports, "JobScheduleRun", {
|
|
3004
3004
|
enumerable: true,
|
|
3005
|
-
get: function () { return
|
|
3005
|
+
get: function () { return chunkGINYYPXK_cjs.JobScheduleRun; }
|
|
3006
3006
|
});
|
|
3007
3007
|
Object.defineProperty(exports, "KnowledgeBaseChunk", {
|
|
3008
3008
|
enumerable: true,
|
|
3009
|
-
get: function () { return
|
|
3009
|
+
get: function () { return chunkGINYYPXK_cjs.KnowledgeBaseChunk; }
|
|
3010
3010
|
});
|
|
3011
3011
|
Object.defineProperty(exports, "KnowledgeBaseDocument", {
|
|
3012
3012
|
enumerable: true,
|
|
3013
|
-
get: function () { return
|
|
3013
|
+
get: function () { return chunkGINYYPXK_cjs.KnowledgeBaseDocument; }
|
|
3014
3014
|
});
|
|
3015
3015
|
Object.defineProperty(exports, "LlmAgent", {
|
|
3016
3016
|
enumerable: true,
|
|
3017
|
-
get: function () { return
|
|
3017
|
+
get: function () { return chunkGINYYPXK_cjs.LlmAgent; }
|
|
3018
3018
|
});
|
|
3019
3019
|
Object.defineProperty(exports, "Media", {
|
|
3020
3020
|
enumerable: true,
|
|
3021
|
-
get: function () { return
|
|
3021
|
+
get: function () { return chunkGINYYPXK_cjs.Media; }
|
|
3022
3022
|
});
|
|
3023
3023
|
Object.defineProperty(exports, "MessageTemplate", {
|
|
3024
3024
|
enumerable: true,
|
|
3025
|
-
get: function () { return
|
|
3025
|
+
get: function () { return chunkGINYYPXK_cjs.MessageTemplate; }
|
|
3026
3026
|
});
|
|
3027
3027
|
Object.defineProperty(exports, "Order", {
|
|
3028
3028
|
enumerable: true,
|
|
3029
|
-
get: function () { return
|
|
3029
|
+
get: function () { return chunkGINYYPXK_cjs.Order; }
|
|
3030
3030
|
});
|
|
3031
3031
|
Object.defineProperty(exports, "OrderAddresses", {
|
|
3032
3032
|
enumerable: true,
|
|
3033
|
-
get: function () { return
|
|
3033
|
+
get: function () { return chunkGINYYPXK_cjs.OrderAddresses; }
|
|
3034
3034
|
});
|
|
3035
3035
|
Object.defineProperty(exports, "OrderDiscounts", {
|
|
3036
3036
|
enumerable: true,
|
|
3037
|
-
get: function () { return
|
|
3037
|
+
get: function () { return chunkGINYYPXK_cjs.OrderDiscounts; }
|
|
3038
3038
|
});
|
|
3039
3039
|
Object.defineProperty(exports, "OrderItem", {
|
|
3040
3040
|
enumerable: true,
|
|
3041
|
-
get: function () { return
|
|
3041
|
+
get: function () { return chunkGINYYPXK_cjs.OrderItem; }
|
|
3042
3042
|
});
|
|
3043
3043
|
Object.defineProperty(exports, "OrderNotificationBinding", {
|
|
3044
3044
|
enumerable: true,
|
|
3045
|
-
get: function () { return
|
|
3045
|
+
get: function () { return chunkGINYYPXK_cjs.OrderNotificationBinding; }
|
|
3046
3046
|
});
|
|
3047
3047
|
Object.defineProperty(exports, "OrderNotificationTrigger", {
|
|
3048
3048
|
enumerable: true,
|
|
3049
|
-
get: function () { return
|
|
3049
|
+
get: function () { return chunkGINYYPXK_cjs.OrderNotificationTrigger; }
|
|
3050
3050
|
});
|
|
3051
3051
|
Object.defineProperty(exports, "OtpChallenge", {
|
|
3052
3052
|
enumerable: true,
|
|
3053
|
-
get: function () { return
|
|
3053
|
+
get: function () { return chunkGINYYPXK_cjs.OtpChallenge; }
|
|
3054
3054
|
});
|
|
3055
3055
|
Object.defineProperty(exports, "Page", {
|
|
3056
3056
|
enumerable: true,
|
|
3057
|
-
get: function () { return
|
|
3057
|
+
get: function () { return chunkGINYYPXK_cjs.Page; }
|
|
3058
3058
|
});
|
|
3059
3059
|
Object.defineProperty(exports, "PasswordResetToken", {
|
|
3060
3060
|
enumerable: true,
|
|
3061
|
-
get: function () { return
|
|
3061
|
+
get: function () { return chunkGINYYPXK_cjs.PasswordResetToken; }
|
|
3062
3062
|
});
|
|
3063
3063
|
Object.defineProperty(exports, "Payment", {
|
|
3064
3064
|
enumerable: true,
|
|
3065
|
-
get: function () { return
|
|
3065
|
+
get: function () { return chunkGINYYPXK_cjs.Payment; }
|
|
3066
3066
|
});
|
|
3067
3067
|
Object.defineProperty(exports, "Permission", {
|
|
3068
3068
|
enumerable: true,
|
|
3069
|
-
get: function () { return
|
|
3069
|
+
get: function () { return chunkGINYYPXK_cjs.Permission; }
|
|
3070
3070
|
});
|
|
3071
3071
|
Object.defineProperty(exports, "Product", {
|
|
3072
3072
|
enumerable: true,
|
|
3073
|
-
get: function () { return
|
|
3073
|
+
get: function () { return chunkGINYYPXK_cjs.Product; }
|
|
3074
3074
|
});
|
|
3075
3075
|
Object.defineProperty(exports, "ProductAttribute", {
|
|
3076
3076
|
enumerable: true,
|
|
3077
|
-
get: function () { return
|
|
3077
|
+
get: function () { return chunkGINYYPXK_cjs.ProductAttribute; }
|
|
3078
3078
|
});
|
|
3079
3079
|
Object.defineProperty(exports, "ProductCategory", {
|
|
3080
3080
|
enumerable: true,
|
|
3081
|
-
get: function () { return
|
|
3081
|
+
get: function () { return chunkGINYYPXK_cjs.ProductCategory; }
|
|
3082
3082
|
});
|
|
3083
3083
|
Object.defineProperty(exports, "ProductConfig", {
|
|
3084
3084
|
enumerable: true,
|
|
3085
|
-
get: function () { return
|
|
3085
|
+
get: function () { return chunkGINYYPXK_cjs.ProductConfig; }
|
|
3086
3086
|
});
|
|
3087
3087
|
Object.defineProperty(exports, "ProductVariant", {
|
|
3088
3088
|
enumerable: true,
|
|
3089
|
-
get: function () { return
|
|
3089
|
+
get: function () { return chunkGINYYPXK_cjs.ProductVariant; }
|
|
3090
3090
|
});
|
|
3091
3091
|
Object.defineProperty(exports, "RefundPolicy", {
|
|
3092
3092
|
enumerable: true,
|
|
3093
|
-
get: function () { return
|
|
3093
|
+
get: function () { return chunkGINYYPXK_cjs.RefundPolicy; }
|
|
3094
3094
|
});
|
|
3095
3095
|
Object.defineProperty(exports, "RefundRequest", {
|
|
3096
3096
|
enumerable: true,
|
|
3097
|
-
get: function () { return
|
|
3097
|
+
get: function () { return chunkGINYYPXK_cjs.RefundRequest; }
|
|
3098
3098
|
});
|
|
3099
3099
|
Object.defineProperty(exports, "RssArticle", {
|
|
3100
3100
|
enumerable: true,
|
|
3101
|
-
get: function () { return
|
|
3101
|
+
get: function () { return chunkGINYYPXK_cjs.RssArticle; }
|
|
3102
3102
|
});
|
|
3103
3103
|
Object.defineProperty(exports, "RssFeed", {
|
|
3104
3104
|
enumerable: true,
|
|
3105
|
-
get: function () { return
|
|
3105
|
+
get: function () { return chunkGINYYPXK_cjs.RssFeed; }
|
|
3106
3106
|
});
|
|
3107
3107
|
Object.defineProperty(exports, "Seo", {
|
|
3108
3108
|
enumerable: true,
|
|
3109
|
-
get: function () { return
|
|
3109
|
+
get: function () { return chunkGINYYPXK_cjs.Seo; }
|
|
3110
3110
|
});
|
|
3111
3111
|
Object.defineProperty(exports, "Tag", {
|
|
3112
3112
|
enumerable: true,
|
|
3113
|
-
get: function () { return
|
|
3113
|
+
get: function () { return chunkGINYYPXK_cjs.Tag; }
|
|
3114
3114
|
});
|
|
3115
3115
|
Object.defineProperty(exports, "Tax", {
|
|
3116
3116
|
enumerable: true,
|
|
3117
|
-
get: function () { return
|
|
3117
|
+
get: function () { return chunkGINYYPXK_cjs.Tax; }
|
|
3118
3118
|
});
|
|
3119
3119
|
Object.defineProperty(exports, "User", {
|
|
3120
3120
|
enumerable: true,
|
|
3121
|
-
get: function () { return
|
|
3121
|
+
get: function () { return chunkGINYYPXK_cjs.User; }
|
|
3122
3122
|
});
|
|
3123
3123
|
Object.defineProperty(exports, "UserGroup", {
|
|
3124
3124
|
enumerable: true,
|
|
3125
|
-
get: function () { return
|
|
3125
|
+
get: function () { return chunkGINYYPXK_cjs.UserGroup; }
|
|
3126
3126
|
});
|
|
3127
3127
|
Object.defineProperty(exports, "Vendor", {
|
|
3128
3128
|
enumerable: true,
|
|
3129
|
-
get: function () { return
|
|
3129
|
+
get: function () { return chunkGINYYPXK_cjs.Vendor; }
|
|
3130
3130
|
});
|
|
3131
3131
|
Object.defineProperty(exports, "VendorCustomer", {
|
|
3132
3132
|
enumerable: true,
|
|
3133
|
-
get: function () { return
|
|
3133
|
+
get: function () { return chunkGINYYPXK_cjs.VendorCustomer; }
|
|
3134
3134
|
});
|
|
3135
3135
|
Object.defineProperty(exports, "VendorRole", {
|
|
3136
3136
|
enumerable: true,
|
|
3137
|
-
get: function () { return
|
|
3137
|
+
get: function () { return chunkGINYYPXK_cjs.VendorRole; }
|
|
3138
3138
|
});
|
|
3139
3139
|
Object.defineProperty(exports, "VendorRolePermission", {
|
|
3140
3140
|
enumerable: true,
|
|
3141
|
-
get: function () { return
|
|
3141
|
+
get: function () { return chunkGINYYPXK_cjs.VendorRolePermission; }
|
|
3142
3142
|
});
|
|
3143
3143
|
Object.defineProperty(exports, "VendorUser", {
|
|
3144
3144
|
enumerable: true,
|
|
3145
|
-
get: function () { return
|
|
3145
|
+
get: function () { return chunkGINYYPXK_cjs.VendorUser; }
|
|
3146
3146
|
});
|
|
3147
3147
|
Object.defineProperty(exports, "Wishlist", {
|
|
3148
3148
|
enumerable: true,
|
|
3149
|
-
get: function () { return
|
|
3149
|
+
get: function () { return chunkGINYYPXK_cjs.Wishlist; }
|
|
3150
3150
|
});
|
|
3151
3151
|
Object.defineProperty(exports, "WishlistItem", {
|
|
3152
3152
|
enumerable: true,
|
|
3153
|
-
get: function () { return
|
|
3153
|
+
get: function () { return chunkGINYYPXK_cjs.WishlistItem; }
|
|
3154
3154
|
});
|
|
3155
3155
|
Object.defineProperty(exports, "ZIP_MIME_TYPES", {
|
|
3156
3156
|
enumerable: true,
|
|
3157
|
-
get: function () { return
|
|
3157
|
+
get: function () { return chunkGINYYPXK_cjs.ZIP_MIME_TYPES; }
|
|
3158
|
+
});
|
|
3159
|
+
Object.defineProperty(exports, "applyApprovalStatusSideEffects", {
|
|
3160
|
+
enumerable: true,
|
|
3161
|
+
get: function () { return chunkGINYYPXK_cjs.applyApprovalStatusSideEffects; }
|
|
3162
|
+
});
|
|
3163
|
+
Object.defineProperty(exports, "applyEventApprovalStatusSideEffects", {
|
|
3164
|
+
enumerable: true,
|
|
3165
|
+
get: function () { return chunkGINYYPXK_cjs.applyEventApprovalStatusSideEffects; }
|
|
3158
3166
|
});
|
|
3159
3167
|
Object.defineProperty(exports, "applyRotatingVendorInvite", {
|
|
3160
3168
|
enumerable: true,
|
|
3161
|
-
get: function () { return
|
|
3169
|
+
get: function () { return chunkGINYYPXK_cjs.applyRotatingVendorInvite; }
|
|
3162
3170
|
});
|
|
3163
3171
|
Object.defineProperty(exports, "applyVendorCustomersContactFilter", {
|
|
3164
3172
|
enumerable: true,
|
|
3165
|
-
get: function () { return
|
|
3173
|
+
get: function () { return chunkGINYYPXK_cjs.applyVendorCustomersContactFilter; }
|
|
3174
|
+
});
|
|
3175
|
+
Object.defineProperty(exports, "applyVendorEventCreateApproval", {
|
|
3176
|
+
enumerable: true,
|
|
3177
|
+
get: function () { return chunkGINYYPXK_cjs.applyVendorEventCreateApproval; }
|
|
3178
|
+
});
|
|
3179
|
+
Object.defineProperty(exports, "applyVendorProductCreateApproval", {
|
|
3180
|
+
enumerable: true,
|
|
3181
|
+
get: function () { return chunkGINYYPXK_cjs.applyVendorProductCreateApproval; }
|
|
3166
3182
|
});
|
|
3167
3183
|
Object.defineProperty(exports, "assertCaptchaOk", {
|
|
3168
3184
|
enumerable: true,
|
|
3169
|
-
get: function () { return
|
|
3185
|
+
get: function () { return chunkGINYYPXK_cjs.assertCaptchaOk; }
|
|
3170
3186
|
});
|
|
3171
3187
|
Object.defineProperty(exports, "assertContactAllowedForVendorOrder", {
|
|
3172
3188
|
enumerable: true,
|
|
3173
|
-
get: function () { return
|
|
3189
|
+
get: function () { return chunkGINYYPXK_cjs.assertContactAllowedForVendorOrder; }
|
|
3190
|
+
});
|
|
3191
|
+
Object.defineProperty(exports, "assertEventApprovalUpdate", {
|
|
3192
|
+
enumerable: true,
|
|
3193
|
+
get: function () { return chunkGINYYPXK_cjs.assertEventApprovalUpdate; }
|
|
3194
|
+
});
|
|
3195
|
+
Object.defineProperty(exports, "assertProductApprovalUpdate", {
|
|
3196
|
+
enumerable: true,
|
|
3197
|
+
get: function () { return chunkGINYYPXK_cjs.assertProductApprovalUpdate; }
|
|
3174
3198
|
});
|
|
3175
3199
|
Object.defineProperty(exports, "buildBlogMetadataUserPrompt", {
|
|
3176
3200
|
enumerable: true,
|
|
3177
|
-
get: function () { return
|
|
3201
|
+
get: function () { return chunkGINYYPXK_cjs.buildBlogMetadataUserPrompt; }
|
|
3178
3202
|
});
|
|
3179
3203
|
Object.defineProperty(exports, "buildCronFromSchedule", {
|
|
3180
3204
|
enumerable: true,
|
|
3181
|
-
get: function () { return
|
|
3205
|
+
get: function () { return chunkGINYYPXK_cjs.buildCronFromSchedule; }
|
|
3182
3206
|
});
|
|
3183
3207
|
Object.defineProperty(exports, "buildRssUserPromptFromFeeds", {
|
|
3184
3208
|
enumerable: true,
|
|
3185
|
-
get: function () { return
|
|
3209
|
+
get: function () { return chunkGINYYPXK_cjs.buildRssUserPromptFromFeeds; }
|
|
3186
3210
|
});
|
|
3187
3211
|
Object.defineProperty(exports, "buildVendorInviteLink", {
|
|
3188
3212
|
enumerable: true,
|
|
3189
|
-
get: function () { return
|
|
3213
|
+
get: function () { return chunkGINYYPXK_cjs.buildVendorInviteLink; }
|
|
3190
3214
|
});
|
|
3191
3215
|
Object.defineProperty(exports, "calculateOrderRefundPreview", {
|
|
3192
3216
|
enumerable: true,
|
|
3193
|
-
get: function () { return
|
|
3217
|
+
get: function () { return chunkGINYYPXK_cjs.calculateOrderRefundPreview; }
|
|
3194
3218
|
});
|
|
3195
3219
|
Object.defineProperty(exports, "calculateRefundFromPolicy", {
|
|
3196
3220
|
enumerable: true,
|
|
3197
|
-
get: function () { return
|
|
3221
|
+
get: function () { return chunkGINYYPXK_cjs.calculateRefundFromPolicy; }
|
|
3198
3222
|
});
|
|
3199
3223
|
Object.defineProperty(exports, "checkEventsEnabled", {
|
|
3200
3224
|
enumerable: true,
|
|
3201
|
-
get: function () { return
|
|
3225
|
+
get: function () { return chunkGINYYPXK_cjs.checkEventsEnabled; }
|
|
3202
3226
|
});
|
|
3203
3227
|
Object.defineProperty(exports, "checkMultiVendorEnabled", {
|
|
3204
3228
|
enumerable: true,
|
|
3205
|
-
get: function () { return
|
|
3229
|
+
get: function () { return chunkGINYYPXK_cjs.checkMultiVendorEnabled; }
|
|
3206
3230
|
});
|
|
3207
3231
|
Object.defineProperty(exports, "contactIsVendorCustomer", {
|
|
3208
3232
|
enumerable: true,
|
|
3209
|
-
get: function () { return
|
|
3233
|
+
get: function () { return chunkGINYYPXK_cjs.contactIsVendorCustomer; }
|
|
3210
3234
|
});
|
|
3211
3235
|
Object.defineProperty(exports, "countRecentOtpSends", {
|
|
3212
3236
|
enumerable: true,
|
|
3213
|
-
get: function () { return
|
|
3237
|
+
get: function () { return chunkGINYYPXK_cjs.countRecentOtpSends; }
|
|
3214
3238
|
});
|
|
3215
3239
|
Object.defineProperty(exports, "createAnalyticsHandlers", {
|
|
3216
3240
|
enumerable: true,
|
|
3217
|
-
get: function () { return
|
|
3241
|
+
get: function () { return chunkGINYYPXK_cjs.createAnalyticsHandlers; }
|
|
3218
3242
|
});
|
|
3219
3243
|
Object.defineProperty(exports, "createBlogBySlugHandler", {
|
|
3220
3244
|
enumerable: true,
|
|
3221
|
-
get: function () { return
|
|
3245
|
+
get: function () { return chunkGINYYPXK_cjs.createBlogBySlugHandler; }
|
|
3222
3246
|
});
|
|
3223
3247
|
Object.defineProperty(exports, "createChangePasswordHandler", {
|
|
3224
3248
|
enumerable: true,
|
|
3225
|
-
get: function () { return
|
|
3249
|
+
get: function () { return chunkGINYYPXK_cjs.createChangePasswordHandler; }
|
|
3226
3250
|
});
|
|
3227
3251
|
Object.defineProperty(exports, "createCmsApiHandler", {
|
|
3228
3252
|
enumerable: true,
|
|
3229
|
-
get: function () { return
|
|
3253
|
+
get: function () { return chunkGINYYPXK_cjs.createCmsApiHandler; }
|
|
3230
3254
|
});
|
|
3231
3255
|
Object.defineProperty(exports, "createCmsApp", {
|
|
3232
3256
|
enumerable: true,
|
|
3233
|
-
get: function () { return
|
|
3257
|
+
get: function () { return chunkGINYYPXK_cjs.createCmsApp; }
|
|
3234
3258
|
});
|
|
3235
3259
|
Object.defineProperty(exports, "createCmsAppWithMessaging", {
|
|
3236
3260
|
enumerable: true,
|
|
3237
|
-
get: function () { return
|
|
3261
|
+
get: function () { return chunkGINYYPXK_cjs.createCmsAppWithMessaging; }
|
|
3238
3262
|
});
|
|
3239
3263
|
Object.defineProperty(exports, "createCrudByIdHandler", {
|
|
3240
3264
|
enumerable: true,
|
|
3241
|
-
get: function () { return
|
|
3265
|
+
get: function () { return chunkGINYYPXK_cjs.createCrudByIdHandler; }
|
|
3242
3266
|
});
|
|
3243
3267
|
Object.defineProperty(exports, "createCrudHandler", {
|
|
3244
3268
|
enumerable: true,
|
|
3245
|
-
get: function () { return
|
|
3269
|
+
get: function () { return chunkGINYYPXK_cjs.createCrudHandler; }
|
|
3246
3270
|
});
|
|
3247
3271
|
Object.defineProperty(exports, "createDashboardStatsHandler", {
|
|
3248
3272
|
enumerable: true,
|
|
3249
|
-
get: function () { return
|
|
3273
|
+
get: function () { return chunkGINYYPXK_cjs.createDashboardStatsHandler; }
|
|
3250
3274
|
});
|
|
3251
3275
|
Object.defineProperty(exports, "createEcommerceAnalyticsHandler", {
|
|
3252
3276
|
enumerable: true,
|
|
3253
|
-
get: function () { return
|
|
3277
|
+
get: function () { return chunkGINYYPXK_cjs.createEcommerceAnalyticsHandler; }
|
|
3254
3278
|
});
|
|
3255
3279
|
Object.defineProperty(exports, "createEventOrderMessageTemplateHandlers", {
|
|
3256
3280
|
enumerable: true,
|
|
3257
|
-
get: function () { return
|
|
3281
|
+
get: function () { return chunkGINYYPXK_cjs.createEventOrderMessageTemplateHandlers; }
|
|
3258
3282
|
});
|
|
3259
3283
|
Object.defineProperty(exports, "createForgotPasswordHandler", {
|
|
3260
3284
|
enumerable: true,
|
|
3261
|
-
get: function () { return
|
|
3285
|
+
get: function () { return chunkGINYYPXK_cjs.createForgotPasswordHandler; }
|
|
3262
3286
|
});
|
|
3263
3287
|
Object.defineProperty(exports, "createFormBySlugHandler", {
|
|
3264
3288
|
enumerable: true,
|
|
3265
|
-
get: function () { return
|
|
3289
|
+
get: function () { return chunkGINYYPXK_cjs.createFormBySlugHandler; }
|
|
3266
3290
|
});
|
|
3267
3291
|
Object.defineProperty(exports, "createInviteAcceptHandler", {
|
|
3268
3292
|
enumerable: true,
|
|
3269
|
-
get: function () { return
|
|
3293
|
+
get: function () { return chunkGINYYPXK_cjs.createInviteAcceptHandler; }
|
|
3270
3294
|
});
|
|
3271
3295
|
Object.defineProperty(exports, "createJobScheduleHandlers", {
|
|
3272
3296
|
enumerable: true,
|
|
3273
|
-
get: function () { return
|
|
3297
|
+
get: function () { return chunkGINYYPXK_cjs.createJobScheduleHandlers; }
|
|
3274
3298
|
});
|
|
3275
3299
|
Object.defineProperty(exports, "createLlmAgentKnowledgeHandlers", {
|
|
3276
3300
|
enumerable: true,
|
|
3277
|
-
get: function () { return
|
|
3301
|
+
get: function () { return chunkGINYYPXK_cjs.createLlmAgentKnowledgeHandlers; }
|
|
3278
3302
|
});
|
|
3279
3303
|
Object.defineProperty(exports, "createMediaZipExtractHandler", {
|
|
3280
3304
|
enumerable: true,
|
|
3281
|
-
get: function () { return
|
|
3305
|
+
get: function () { return chunkGINYYPXK_cjs.createMediaZipExtractHandler; }
|
|
3282
3306
|
});
|
|
3283
3307
|
Object.defineProperty(exports, "createMessageTemplateRowLoader", {
|
|
3284
3308
|
enumerable: true,
|
|
3285
|
-
get: function () { return
|
|
3309
|
+
get: function () { return chunkGINYYPXK_cjs.createMessageTemplateRowLoader; }
|
|
3286
3310
|
});
|
|
3287
3311
|
Object.defineProperty(exports, "createOtpChallenge", {
|
|
3288
3312
|
enumerable: true,
|
|
3289
|
-
get: function () { return
|
|
3313
|
+
get: function () { return chunkGINYYPXK_cjs.createOtpChallenge; }
|
|
3290
3314
|
});
|
|
3291
3315
|
Object.defineProperty(exports, "createSetPasswordHandler", {
|
|
3292
3316
|
enumerable: true,
|
|
3293
|
-
get: function () { return
|
|
3317
|
+
get: function () { return chunkGINYYPXK_cjs.createSetPasswordHandler; }
|
|
3294
3318
|
});
|
|
3295
3319
|
Object.defineProperty(exports, "createSettingsApiHandlers", {
|
|
3296
3320
|
enumerable: true,
|
|
3297
|
-
get: function () { return
|
|
3321
|
+
get: function () { return chunkGINYYPXK_cjs.createSettingsApiHandlers; }
|
|
3298
3322
|
});
|
|
3299
3323
|
Object.defineProperty(exports, "createSocialMediaHandlers", {
|
|
3300
3324
|
enumerable: true,
|
|
3301
|
-
get: function () { return
|
|
3325
|
+
get: function () { return chunkGINYYPXK_cjs.createSocialMediaHandlers; }
|
|
3302
3326
|
});
|
|
3303
3327
|
Object.defineProperty(exports, "createStorefrontApiHandler", {
|
|
3304
3328
|
enumerable: true,
|
|
3305
|
-
get: function () { return
|
|
3329
|
+
get: function () { return chunkGINYYPXK_cjs.createStorefrontApiHandler; }
|
|
3306
3330
|
});
|
|
3307
3331
|
Object.defineProperty(exports, "createUploadHandler", {
|
|
3308
3332
|
enumerable: true,
|
|
3309
|
-
get: function () { return
|
|
3333
|
+
get: function () { return chunkGINYYPXK_cjs.createUploadHandler; }
|
|
3310
3334
|
});
|
|
3311
3335
|
Object.defineProperty(exports, "createUserAuthApiRouter", {
|
|
3312
3336
|
enumerable: true,
|
|
3313
|
-
get: function () { return
|
|
3337
|
+
get: function () { return chunkGINYYPXK_cjs.createUserAuthApiRouter; }
|
|
3314
3338
|
});
|
|
3315
3339
|
Object.defineProperty(exports, "createUserAvatarHandler", {
|
|
3316
3340
|
enumerable: true,
|
|
3317
|
-
get: function () { return
|
|
3341
|
+
get: function () { return chunkGINYYPXK_cjs.createUserAvatarHandler; }
|
|
3318
3342
|
});
|
|
3319
3343
|
Object.defineProperty(exports, "createUserProfileHandler", {
|
|
3320
3344
|
enumerable: true,
|
|
3321
|
-
get: function () { return
|
|
3345
|
+
get: function () { return chunkGINYYPXK_cjs.createUserProfileHandler; }
|
|
3322
3346
|
});
|
|
3323
3347
|
Object.defineProperty(exports, "createUsersApiHandlers", {
|
|
3324
3348
|
enumerable: true,
|
|
3325
|
-
get: function () { return
|
|
3349
|
+
get: function () { return chunkGINYYPXK_cjs.createUsersApiHandlers; }
|
|
3326
3350
|
});
|
|
3327
3351
|
Object.defineProperty(exports, "createVendorDashboardHandler", {
|
|
3328
3352
|
enumerable: true,
|
|
3329
|
-
get: function () { return
|
|
3353
|
+
get: function () { return chunkGINYYPXK_cjs.createVendorDashboardHandler; }
|
|
3330
3354
|
});
|
|
3331
3355
|
Object.defineProperty(exports, "createVendorOnboardHandlers", {
|
|
3332
3356
|
enumerable: true,
|
|
3333
|
-
get: function () { return
|
|
3357
|
+
get: function () { return chunkGINYYPXK_cjs.createVendorOnboardHandlers; }
|
|
3334
3358
|
});
|
|
3335
3359
|
Object.defineProperty(exports, "customerPhoneForUser", {
|
|
3336
3360
|
enumerable: true,
|
|
3337
|
-
get: function () { return
|
|
3361
|
+
get: function () { return chunkGINYYPXK_cjs.customerPhoneForUser; }
|
|
3338
3362
|
});
|
|
3339
3363
|
Object.defineProperty(exports, "daysBeforeEventStart", {
|
|
3340
3364
|
enumerable: true,
|
|
3341
|
-
get: function () { return
|
|
3365
|
+
get: function () { return chunkGINYYPXK_cjs.daysBeforeEventStart; }
|
|
3342
3366
|
});
|
|
3343
3367
|
Object.defineProperty(exports, "describeEventTierPolicy", {
|
|
3344
3368
|
enumerable: true,
|
|
3345
|
-
get: function () { return
|
|
3369
|
+
get: function () { return chunkGINYYPXK_cjs.describeEventTierPolicy; }
|
|
3346
3370
|
});
|
|
3347
3371
|
Object.defineProperty(exports, "ensureCustomerForUser", {
|
|
3348
3372
|
enumerable: true,
|
|
3349
|
-
get: function () { return
|
|
3373
|
+
get: function () { return chunkGINYYPXK_cjs.ensureCustomerForUser; }
|
|
3350
3374
|
});
|
|
3351
3375
|
Object.defineProperty(exports, "ensureMessagingPluginsOnCms", {
|
|
3352
3376
|
enumerable: true,
|
|
3353
|
-
get: function () { return
|
|
3377
|
+
get: function () { return chunkGINYYPXK_cjs.ensureMessagingPluginsOnCms; }
|
|
3354
3378
|
});
|
|
3355
3379
|
Object.defineProperty(exports, "ensureScheduleQueueWorker", {
|
|
3356
3380
|
enumerable: true,
|
|
3357
|
-
get: function () { return
|
|
3381
|
+
get: function () { return chunkGINYYPXK_cjs.ensureScheduleQueueWorker; }
|
|
3358
3382
|
});
|
|
3359
3383
|
Object.defineProperty(exports, "ensureVendorCustomerForOrderContact", {
|
|
3360
3384
|
enumerable: true,
|
|
3361
|
-
get: function () { return
|
|
3385
|
+
get: function () { return chunkGINYYPXK_cjs.ensureVendorCustomerForOrderContact; }
|
|
3362
3386
|
});
|
|
3363
3387
|
Object.defineProperty(exports, "findActiveRefundPolicyForVendor", {
|
|
3364
3388
|
enumerable: true,
|
|
3365
|
-
get: function () { return
|
|
3389
|
+
get: function () { return chunkGINYYPXK_cjs.findActiveRefundPolicyForVendor; }
|
|
3366
3390
|
});
|
|
3367
3391
|
Object.defineProperty(exports, "findVendorByInviteToken", {
|
|
3368
3392
|
enumerable: true,
|
|
3369
|
-
get: function () { return
|
|
3393
|
+
get: function () { return chunkGINYYPXK_cjs.findVendorByInviteToken; }
|
|
3370
3394
|
});
|
|
3371
3395
|
Object.defineProperty(exports, "formatTierRange", {
|
|
3372
3396
|
enumerable: true,
|
|
3373
|
-
get: function () { return
|
|
3397
|
+
get: function () { return chunkGINYYPXK_cjs.formatTierRange; }
|
|
3374
3398
|
});
|
|
3375
3399
|
Object.defineProperty(exports, "generateNumericOtp", {
|
|
3376
3400
|
enumerable: true,
|
|
3377
|
-
get: function () { return
|
|
3401
|
+
get: function () { return chunkGINYYPXK_cjs.generateNumericOtp; }
|
|
3378
3402
|
});
|
|
3379
3403
|
Object.defineProperty(exports, "getPublicSettingsGroup", {
|
|
3380
3404
|
enumerable: true,
|
|
3381
|
-
get: function () { return
|
|
3405
|
+
get: function () { return chunkGINYYPXK_cjs.getPublicSettingsGroup; }
|
|
3406
|
+
});
|
|
3407
|
+
Object.defineProperty(exports, "getRequireEventApproval", {
|
|
3408
|
+
enumerable: true,
|
|
3409
|
+
get: function () { return chunkGINYYPXK_cjs.getRequireEventApproval; }
|
|
3410
|
+
});
|
|
3411
|
+
Object.defineProperty(exports, "getRequireProductApproval", {
|
|
3412
|
+
enumerable: true,
|
|
3413
|
+
get: function () { return chunkGINYYPXK_cjs.getRequireProductApproval; }
|
|
3382
3414
|
});
|
|
3383
3415
|
Object.defineProperty(exports, "getRssArticleSummaryFromItem", {
|
|
3384
3416
|
enumerable: true,
|
|
3385
|
-
get: function () { return
|
|
3417
|
+
get: function () { return chunkGINYYPXK_cjs.getRssArticleSummaryFromItem; }
|
|
3418
|
+
});
|
|
3419
|
+
Object.defineProperty(exports, "getVendorCatalogCreateFlags", {
|
|
3420
|
+
enumerable: true,
|
|
3421
|
+
get: function () { return chunkGINYYPXK_cjs.getVendorCatalogCreateFlags; }
|
|
3386
3422
|
});
|
|
3387
3423
|
Object.defineProperty(exports, "hashOtpCode", {
|
|
3388
3424
|
enumerable: true,
|
|
3389
|
-
get: function () { return
|
|
3425
|
+
get: function () { return chunkGINYYPXK_cjs.hashOtpCode; }
|
|
3390
3426
|
});
|
|
3391
3427
|
Object.defineProperty(exports, "hydrateVendorSessionUser", {
|
|
3392
3428
|
enumerable: true,
|
|
3393
|
-
get: function () { return
|
|
3429
|
+
get: function () { return chunkGINYYPXK_cjs.hydrateVendorSessionUser; }
|
|
3394
3430
|
});
|
|
3395
3431
|
Object.defineProperty(exports, "invalidateEventsCache", {
|
|
3396
3432
|
enumerable: true,
|
|
3397
|
-
get: function () { return
|
|
3433
|
+
get: function () { return chunkGINYYPXK_cjs.invalidateEventsCache; }
|
|
3398
3434
|
});
|
|
3399
3435
|
Object.defineProperty(exports, "invalidateMultiVendorCache", {
|
|
3400
3436
|
enumerable: true,
|
|
3401
|
-
get: function () { return
|
|
3437
|
+
get: function () { return chunkGINYYPXK_cjs.invalidateMultiVendorCache; }
|
|
3438
|
+
});
|
|
3439
|
+
Object.defineProperty(exports, "invalidateRequireEventApprovalCache", {
|
|
3440
|
+
enumerable: true,
|
|
3441
|
+
get: function () { return chunkGINYYPXK_cjs.invalidateRequireEventApprovalCache; }
|
|
3442
|
+
});
|
|
3443
|
+
Object.defineProperty(exports, "invalidateRequireProductApprovalCache", {
|
|
3444
|
+
enumerable: true,
|
|
3445
|
+
get: function () { return chunkGINYYPXK_cjs.invalidateRequireProductApprovalCache; }
|
|
3446
|
+
});
|
|
3447
|
+
Object.defineProperty(exports, "invalidateVendorCatalogCreateFlagsCache", {
|
|
3448
|
+
enumerable: true,
|
|
3449
|
+
get: function () { return chunkGINYYPXK_cjs.invalidateVendorCatalogCreateFlagsCache; }
|
|
3402
3450
|
});
|
|
3403
3451
|
Object.defineProperty(exports, "isCustomerTypeContact", {
|
|
3404
3452
|
enumerable: true,
|
|
3405
|
-
get: function () { return
|
|
3453
|
+
get: function () { return chunkGINYYPXK_cjs.isCustomerTypeContact; }
|
|
3406
3454
|
});
|
|
3407
3455
|
Object.defineProperty(exports, "isZipMedia", {
|
|
3408
3456
|
enumerable: true,
|
|
3409
|
-
get: function () { return
|
|
3457
|
+
get: function () { return chunkGINYYPXK_cjs.isZipMedia; }
|
|
3410
3458
|
});
|
|
3411
3459
|
Object.defineProperty(exports, "linkUnclaimedContactToUser", {
|
|
3412
3460
|
enumerable: true,
|
|
3413
|
-
get: function () { return
|
|
3461
|
+
get: function () { return chunkGINYYPXK_cjs.linkUnclaimedContactToUser; }
|
|
3414
3462
|
});
|
|
3415
3463
|
Object.defineProperty(exports, "llmAgentToChatAgentOptions", {
|
|
3416
3464
|
enumerable: true,
|
|
3417
|
-
get: function () { return
|
|
3465
|
+
get: function () { return chunkGINYYPXK_cjs.llmAgentToChatAgentOptions; }
|
|
3418
3466
|
});
|
|
3419
3467
|
Object.defineProperty(exports, "loadSettingsGroupFromDb", {
|
|
3420
3468
|
enumerable: true,
|
|
3421
|
-
get: function () { return
|
|
3469
|
+
get: function () { return chunkGINYYPXK_cjs.loadSettingsGroupFromDb; }
|
|
3422
3470
|
});
|
|
3423
3471
|
Object.defineProperty(exports, "loadUserVendorContext", {
|
|
3424
3472
|
enumerable: true,
|
|
3425
|
-
get: function () { return
|
|
3473
|
+
get: function () { return chunkGINYYPXK_cjs.loadUserVendorContext; }
|
|
3426
3474
|
});
|
|
3427
3475
|
Object.defineProperty(exports, "mergeGuardrailsIntoSystemPrompt", {
|
|
3428
3476
|
enumerable: true,
|
|
3429
|
-
get: function () { return
|
|
3477
|
+
get: function () { return chunkGINYYPXK_cjs.mergeGuardrailsIntoSystemPrompt; }
|
|
3430
3478
|
});
|
|
3431
3479
|
Object.defineProperty(exports, "messagingPlugins", {
|
|
3432
3480
|
enumerable: true,
|
|
3433
|
-
get: function () { return
|
|
3481
|
+
get: function () { return chunkGINYYPXK_cjs.messagingPlugins; }
|
|
3434
3482
|
});
|
|
3435
3483
|
Object.defineProperty(exports, "metaFetchUserManagedPages", {
|
|
3436
3484
|
enumerable: true,
|
|
3437
|
-
get: function () { return
|
|
3485
|
+
get: function () { return chunkGINYYPXK_cjs.metaFetchUserManagedPages; }
|
|
3438
3486
|
});
|
|
3439
3487
|
Object.defineProperty(exports, "metaPostPageFeed", {
|
|
3440
3488
|
enumerable: true,
|
|
3441
|
-
get: function () { return
|
|
3489
|
+
get: function () { return chunkGINYYPXK_cjs.metaPostPageFeed; }
|
|
3442
3490
|
});
|
|
3443
3491
|
Object.defineProperty(exports, "metaPostPagePhoto", {
|
|
3444
3492
|
enumerable: true,
|
|
3445
|
-
get: function () { return
|
|
3493
|
+
get: function () { return chunkGINYYPXK_cjs.metaPostPagePhoto; }
|
|
3446
3494
|
});
|
|
3447
3495
|
Object.defineProperty(exports, "metaResolvePageAccessToken", {
|
|
3448
3496
|
enumerable: true,
|
|
3449
|
-
get: function () { return
|
|
3497
|
+
get: function () { return chunkGINYYPXK_cjs.metaResolvePageAccessToken; }
|
|
3450
3498
|
});
|
|
3451
3499
|
Object.defineProperty(exports, "normalizePhoneE164", {
|
|
3452
3500
|
enumerable: true,
|
|
3453
|
-
get: function () { return
|
|
3501
|
+
get: function () { return chunkGINYYPXK_cjs.normalizePhoneE164; }
|
|
3454
3502
|
});
|
|
3455
3503
|
Object.defineProperty(exports, "normalizeRefundTiers", {
|
|
3456
3504
|
enumerable: true,
|
|
3457
|
-
get: function () { return
|
|
3505
|
+
get: function () { return chunkGINYYPXK_cjs.normalizeRefundTiers; }
|
|
3458
3506
|
});
|
|
3459
3507
|
Object.defineProperty(exports, "overlayCmsPlugins", {
|
|
3460
3508
|
enumerable: true,
|
|
3461
|
-
get: function () { return
|
|
3509
|
+
get: function () { return chunkGINYYPXK_cjs.overlayCmsPlugins; }
|
|
3462
3510
|
});
|
|
3463
3511
|
Object.defineProperty(exports, "parseBlogGeneratorAgentContent", {
|
|
3464
3512
|
enumerable: true,
|
|
3465
|
-
get: function () { return
|
|
3513
|
+
get: function () { return chunkGINYYPXK_cjs.parseBlogGeneratorAgentContent; }
|
|
3466
3514
|
});
|
|
3467
3515
|
Object.defineProperty(exports, "parseBlogGeneratorModelOutput", {
|
|
3468
3516
|
enumerable: true,
|
|
3469
|
-
get: function () { return
|
|
3517
|
+
get: function () { return chunkGINYYPXK_cjs.parseBlogGeneratorModelOutput; }
|
|
3470
3518
|
});
|
|
3471
3519
|
Object.defineProperty(exports, "parseBlogMetadataEnrichmentJson", {
|
|
3472
3520
|
enumerable: true,
|
|
3473
|
-
get: function () { return
|
|
3521
|
+
get: function () { return chunkGINYYPXK_cjs.parseBlogMetadataEnrichmentJson; }
|
|
3474
3522
|
});
|
|
3475
3523
|
Object.defineProperty(exports, "parseLlmAgentValidationRules", {
|
|
3476
3524
|
enumerable: true,
|
|
3477
|
-
get: function () { return
|
|
3525
|
+
get: function () { return chunkGINYYPXK_cjs.parseLlmAgentValidationRules; }
|
|
3478
3526
|
});
|
|
3479
3527
|
Object.defineProperty(exports, "pgBossScheduleNameForId", {
|
|
3480
3528
|
enumerable: true,
|
|
3481
|
-
get: function () { return
|
|
3529
|
+
get: function () { return chunkGINYYPXK_cjs.pgBossScheduleNameForId; }
|
|
3482
3530
|
});
|
|
3483
3531
|
Object.defineProperty(exports, "queueErpCreateContactIfEnabled", {
|
|
3484
3532
|
enumerable: true,
|
|
3485
|
-
get: function () { return
|
|
3533
|
+
get: function () { return chunkGINYYPXK_cjs.queueErpCreateContactIfEnabled; }
|
|
3486
3534
|
});
|
|
3487
3535
|
Object.defineProperty(exports, "queueJobScheduleNow", {
|
|
3488
3536
|
enumerable: true,
|
|
3489
|
-
get: function () { return
|
|
3537
|
+
get: function () { return chunkGINYYPXK_cjs.queueJobScheduleNow; }
|
|
3490
3538
|
});
|
|
3491
3539
|
Object.defineProperty(exports, "queuePlugin", {
|
|
3492
3540
|
enumerable: true,
|
|
3493
|
-
get: function () { return
|
|
3541
|
+
get: function () { return chunkGINYYPXK_cjs.queuePlugin; }
|
|
3494
3542
|
});
|
|
3495
3543
|
Object.defineProperty(exports, "queueSms", {
|
|
3496
3544
|
enumerable: true,
|
|
3497
|
-
get: function () { return
|
|
3545
|
+
get: function () { return chunkGINYYPXK_cjs.queueSms; }
|
|
3498
3546
|
});
|
|
3499
3547
|
Object.defineProperty(exports, "registerJobRunnerWorker", {
|
|
3500
3548
|
enumerable: true,
|
|
3501
|
-
get: function () { return
|
|
3549
|
+
get: function () { return chunkGINYYPXK_cjs.registerJobRunnerWorker; }
|
|
3502
3550
|
});
|
|
3503
3551
|
Object.defineProperty(exports, "registerMessagingQueueProcessors", {
|
|
3504
3552
|
enumerable: true,
|
|
3505
|
-
get: function () { return
|
|
3553
|
+
get: function () { return chunkGINYYPXK_cjs.registerMessagingQueueProcessors; }
|
|
3506
3554
|
});
|
|
3507
3555
|
Object.defineProperty(exports, "registerSmsQueueProcessor", {
|
|
3508
3556
|
enumerable: true,
|
|
3509
|
-
get: function () { return
|
|
3557
|
+
get: function () { return chunkGINYYPXK_cjs.registerSmsQueueProcessor; }
|
|
3510
3558
|
});
|
|
3511
3559
|
Object.defineProperty(exports, "relativePathFromMediaParentId", {
|
|
3512
3560
|
enumerable: true,
|
|
3513
|
-
get: function () { return
|
|
3561
|
+
get: function () { return chunkGINYYPXK_cjs.relativePathFromMediaParentId; }
|
|
3514
3562
|
});
|
|
3515
3563
|
Object.defineProperty(exports, "resolveBlogCategoryIdByName", {
|
|
3516
3564
|
enumerable: true,
|
|
3517
|
-
get: function () { return
|
|
3565
|
+
get: function () { return chunkGINYYPXK_cjs.resolveBlogCategoryIdByName; }
|
|
3518
3566
|
});
|
|
3519
3567
|
Object.defineProperty(exports, "resolveSettingsEncryptionKey", {
|
|
3520
3568
|
enumerable: true,
|
|
3521
|
-
get: function () { return
|
|
3569
|
+
get: function () { return chunkGINYYPXK_cjs.resolveSettingsEncryptionKey; }
|
|
3522
3570
|
});
|
|
3523
3571
|
Object.defineProperty(exports, "resolveVendorIdForContactCheck", {
|
|
3524
3572
|
enumerable: true,
|
|
3525
|
-
get: function () { return
|
|
3573
|
+
get: function () { return chunkGINYYPXK_cjs.resolveVendorIdForContactCheck; }
|
|
3526
3574
|
});
|
|
3527
3575
|
Object.defineProperty(exports, "sanitizeMediaFolderPath", {
|
|
3528
3576
|
enumerable: true,
|
|
3529
|
-
get: function () { return
|
|
3577
|
+
get: function () { return chunkGINYYPXK_cjs.sanitizeMediaFolderPath; }
|
|
3530
3578
|
});
|
|
3531
3579
|
Object.defineProperty(exports, "sanitizeStorageSegment", {
|
|
3532
3580
|
enumerable: true,
|
|
3533
|
-
get: function () { return
|
|
3581
|
+
get: function () { return chunkGINYYPXK_cjs.sanitizeStorageSegment; }
|
|
3534
3582
|
});
|
|
3535
3583
|
Object.defineProperty(exports, "sendVendorOnboardEmails", {
|
|
3536
3584
|
enumerable: true,
|
|
3537
|
-
get: function () { return
|
|
3585
|
+
get: function () { return chunkGINYYPXK_cjs.sendVendorOnboardEmails; }
|
|
3538
3586
|
});
|
|
3539
3587
|
Object.defineProperty(exports, "simpleDecrypt", {
|
|
3540
3588
|
enumerable: true,
|
|
3541
|
-
get: function () { return
|
|
3589
|
+
get: function () { return chunkGINYYPXK_cjs.simpleDecrypt; }
|
|
3542
3590
|
});
|
|
3543
3591
|
Object.defineProperty(exports, "simpleEncrypt", {
|
|
3544
3592
|
enumerable: true,
|
|
3545
|
-
get: function () { return
|
|
3593
|
+
get: function () { return chunkGINYYPXK_cjs.simpleEncrypt; }
|
|
3546
3594
|
});
|
|
3547
3595
|
Object.defineProperty(exports, "syncJobScheduleToPgBoss", {
|
|
3548
3596
|
enumerable: true,
|
|
3549
|
-
get: function () { return
|
|
3597
|
+
get: function () { return chunkGINYYPXK_cjs.syncJobScheduleToPgBoss; }
|
|
3550
3598
|
});
|
|
3551
3599
|
Object.defineProperty(exports, "validateRefundTiers", {
|
|
3552
3600
|
enumerable: true,
|
|
3553
|
-
get: function () { return
|
|
3601
|
+
get: function () { return chunkGINYYPXK_cjs.validateRefundTiers; }
|
|
3554
3602
|
});
|
|
3555
3603
|
Object.defineProperty(exports, "validateScheduleInput", {
|
|
3556
3604
|
enumerable: true,
|
|
3557
|
-
get: function () { return
|
|
3605
|
+
get: function () { return chunkGINYYPXK_cjs.validateScheduleInput; }
|
|
3558
3606
|
});
|
|
3559
3607
|
Object.defineProperty(exports, "validateUserMessageAgainstAgentRules", {
|
|
3560
3608
|
enumerable: true,
|
|
3561
|
-
get: function () { return
|
|
3609
|
+
get: function () { return chunkGINYYPXK_cjs.validateUserMessageAgainstAgentRules; }
|
|
3562
3610
|
});
|
|
3563
3611
|
Object.defineProperty(exports, "validateUserMessageAgainstStructuredRules", {
|
|
3564
3612
|
enumerable: true,
|
|
3565
|
-
get: function () { return
|
|
3613
|
+
get: function () { return chunkGINYYPXK_cjs.validateUserMessageAgainstStructuredRules; }
|
|
3566
3614
|
});
|
|
3567
3615
|
Object.defineProperty(exports, "verifyAndConsumeOtpChallenge", {
|
|
3568
3616
|
enumerable: true,
|
|
3569
|
-
get: function () { return
|
|
3617
|
+
get: function () { return chunkGINYYPXK_cjs.verifyAndConsumeOtpChallenge; }
|
|
3570
3618
|
});
|
|
3571
3619
|
Object.defineProperty(exports, "verifyOtpCodeHash", {
|
|
3572
3620
|
enumerable: true,
|
|
3573
|
-
get: function () { return
|
|
3621
|
+
get: function () { return chunkGINYYPXK_cjs.verifyOtpCodeHash; }
|
|
3574
3622
|
});
|
|
3575
3623
|
Object.defineProperty(exports, "whatsappPlugin", {
|
|
3576
3624
|
enumerable: true,
|
|
3577
|
-
get: function () { return
|
|
3625
|
+
get: function () { return chunkGINYYPXK_cjs.whatsappPlugin; }
|
|
3578
3626
|
});
|
|
3579
3627
|
Object.defineProperty(exports, "wrapGetCmsWithMessaging", {
|
|
3580
3628
|
enumerable: true,
|
|
3581
|
-
get: function () { return
|
|
3629
|
+
get: function () { return chunkGINYYPXK_cjs.wrapGetCmsWithMessaging; }
|
|
3582
3630
|
});
|
|
3583
3631
|
Object.defineProperty(exports, "EmailService", {
|
|
3584
3632
|
enumerable: true,
|
|
@@ -3690,195 +3738,195 @@ Object.defineProperty(exports, "PgBossService", {
|
|
|
3690
3738
|
});
|
|
3691
3739
|
Object.defineProperty(exports, "createCmsMiddleware", {
|
|
3692
3740
|
enumerable: true,
|
|
3693
|
-
get: function () { return
|
|
3741
|
+
get: function () { return chunkTAHX46EI_cjs.createCmsMiddleware; }
|
|
3694
3742
|
});
|
|
3695
3743
|
Object.defineProperty(exports, "defaultPublicApiMethods", {
|
|
3696
3744
|
enumerable: true,
|
|
3697
|
-
get: function () { return
|
|
3745
|
+
get: function () { return chunkTAHX46EI_cjs.defaultPublicApiMethods; }
|
|
3698
3746
|
});
|
|
3699
3747
|
Object.defineProperty(exports, "getNextAuthOptions", {
|
|
3700
3748
|
enumerable: true,
|
|
3701
|
-
get: function () { return
|
|
3749
|
+
get: function () { return chunkTAHX46EI_cjs.getNextAuthOptions; }
|
|
3702
3750
|
});
|
|
3703
3751
|
Object.defineProperty(exports, "getStorefrontNextAuthOptions", {
|
|
3704
3752
|
enumerable: true,
|
|
3705
|
-
get: function () { return
|
|
3753
|
+
get: function () { return chunkTAHX46EI_cjs.getStorefrontNextAuthOptions; }
|
|
3706
3754
|
});
|
|
3707
3755
|
Object.defineProperty(exports, "isAuthDebugClientEnabled", {
|
|
3708
3756
|
enumerable: true,
|
|
3709
|
-
get: function () { return
|
|
3757
|
+
get: function () { return chunkTAHX46EI_cjs.isAuthDebugClientEnabled; }
|
|
3710
3758
|
});
|
|
3711
3759
|
Object.defineProperty(exports, "isAuthDebugEnabled", {
|
|
3712
3760
|
enumerable: true,
|
|
3713
|
-
get: function () { return
|
|
3761
|
+
get: function () { return chunkTAHX46EI_cjs.isAuthDebugEnabled; }
|
|
3714
3762
|
});
|
|
3715
3763
|
Object.defineProperty(exports, "logAuth", {
|
|
3716
3764
|
enumerable: true,
|
|
3717
|
-
get: function () { return
|
|
3765
|
+
get: function () { return chunkTAHX46EI_cjs.logAuth; }
|
|
3718
3766
|
});
|
|
3719
3767
|
Object.defineProperty(exports, "logAuthClient", {
|
|
3720
3768
|
enumerable: true,
|
|
3721
|
-
get: function () { return
|
|
3769
|
+
get: function () { return chunkTAHX46EI_cjs.logAuthClient; }
|
|
3722
3770
|
});
|
|
3723
3771
|
Object.defineProperty(exports, "nextAuthCookieDebugInfo", {
|
|
3724
3772
|
enumerable: true,
|
|
3725
|
-
get: function () { return
|
|
3773
|
+
get: function () { return chunkTAHX46EI_cjs.nextAuthCookieDebugInfo; }
|
|
3726
3774
|
});
|
|
3727
3775
|
Object.defineProperty(exports, "seedAdministratorPermissions", {
|
|
3728
3776
|
enumerable: true,
|
|
3729
|
-
get: function () { return
|
|
3777
|
+
get: function () { return chunkTAHX46EI_cjs.seedAdministratorPermissions; }
|
|
3730
3778
|
});
|
|
3731
3779
|
Object.defineProperty(exports, "summarizeSessionUserForLog", {
|
|
3732
3780
|
enumerable: true,
|
|
3733
|
-
get: function () { return
|
|
3781
|
+
get: function () { return chunkTAHX46EI_cjs.summarizeSessionUserForLog; }
|
|
3734
3782
|
});
|
|
3735
3783
|
Object.defineProperty(exports, "OPEN_ENDPOINTS", {
|
|
3736
3784
|
enumerable: true,
|
|
3737
|
-
get: function () { return
|
|
3785
|
+
get: function () { return chunkZMRQ72F6_cjs.OPEN_ENDPOINTS; }
|
|
3738
3786
|
});
|
|
3739
3787
|
Object.defineProperty(exports, "PERMISSION_REQUIRED_ENDPOINTS", {
|
|
3740
3788
|
enumerable: true,
|
|
3741
|
-
get: function () { return
|
|
3789
|
+
get: function () { return chunkZMRQ72F6_cjs.PERMISSION_REQUIRED_ENDPOINTS; }
|
|
3742
3790
|
});
|
|
3743
3791
|
Object.defineProperty(exports, "RBAC_ADMIN_ONLY_ENTITIES", {
|
|
3744
3792
|
enumerable: true,
|
|
3745
|
-
get: function () { return
|
|
3793
|
+
get: function () { return chunkZMRQ72F6_cjs.RBAC_ADMIN_ONLY_ENTITIES; }
|
|
3746
3794
|
});
|
|
3747
3795
|
Object.defineProperty(exports, "canManageRoles", {
|
|
3748
3796
|
enumerable: true,
|
|
3749
|
-
get: function () { return
|
|
3797
|
+
get: function () { return chunkZMRQ72F6_cjs.canManageRoles; }
|
|
3750
3798
|
});
|
|
3751
3799
|
Object.defineProperty(exports, "createAuthHelpers", {
|
|
3752
3800
|
enumerable: true,
|
|
3753
|
-
get: function () { return
|
|
3801
|
+
get: function () { return chunkZMRQ72F6_cjs.createAuthHelpers; }
|
|
3754
3802
|
});
|
|
3755
3803
|
Object.defineProperty(exports, "createCmsAuthBundle", {
|
|
3756
3804
|
enumerable: true,
|
|
3757
|
-
get: function () { return
|
|
3805
|
+
get: function () { return chunkZMRQ72F6_cjs.createCmsAuthBundle; }
|
|
3758
3806
|
});
|
|
3759
3807
|
Object.defineProperty(exports, "getRequiredPermission", {
|
|
3760
3808
|
enumerable: true,
|
|
3761
|
-
get: function () { return
|
|
3809
|
+
get: function () { return chunkZMRQ72F6_cjs.getRequiredPermission; }
|
|
3762
3810
|
});
|
|
3763
3811
|
Object.defineProperty(exports, "isOpenEndpoint", {
|
|
3764
3812
|
enumerable: true,
|
|
3765
|
-
get: function () { return
|
|
3813
|
+
get: function () { return chunkZMRQ72F6_cjs.isOpenEndpoint; }
|
|
3766
3814
|
});
|
|
3767
3815
|
Object.defineProperty(exports, "isPublicMethod", {
|
|
3768
3816
|
enumerable: true,
|
|
3769
|
-
get: function () { return
|
|
3817
|
+
get: function () { return chunkZMRQ72F6_cjs.isPublicMethod; }
|
|
3770
3818
|
});
|
|
3771
3819
|
Object.defineProperty(exports, "sessionHasEntityAccess", {
|
|
3772
3820
|
enumerable: true,
|
|
3773
|
-
get: function () { return
|
|
3821
|
+
get: function () { return chunkZMRQ72F6_cjs.sessionHasEntityAccess; }
|
|
3774
3822
|
});
|
|
3775
3823
|
Object.defineProperty(exports, "ADMIN_GROUP_NAME", {
|
|
3776
3824
|
enumerable: true,
|
|
3777
|
-
get: function () { return
|
|
3825
|
+
get: function () { return chunkX6UQFV4X_cjs.ADMIN_GROUP_NAME; }
|
|
3778
3826
|
});
|
|
3779
3827
|
Object.defineProperty(exports, "SUPER_ADMIN_GROUP_ID", {
|
|
3780
3828
|
enumerable: true,
|
|
3781
|
-
get: function () { return
|
|
3829
|
+
get: function () { return chunkX6UQFV4X_cjs.SUPER_ADMIN_GROUP_ID; }
|
|
3782
3830
|
});
|
|
3783
3831
|
Object.defineProperty(exports, "VENDOR_ADMIN_GROUP_ID", {
|
|
3784
3832
|
enumerable: true,
|
|
3785
|
-
get: function () { return
|
|
3833
|
+
get: function () { return chunkX6UQFV4X_cjs.VENDOR_ADMIN_GROUP_ID; }
|
|
3786
3834
|
});
|
|
3787
3835
|
Object.defineProperty(exports, "VENDOR_OWNER_GROUP_NAME", {
|
|
3788
3836
|
enumerable: true,
|
|
3789
|
-
get: function () { return
|
|
3837
|
+
get: function () { return chunkX6UQFV4X_cjs.VENDOR_OWNER_GROUP_NAME; }
|
|
3790
3838
|
});
|
|
3791
3839
|
Object.defineProperty(exports, "VENDOR_SCOPED_STORE_ENTITIES", {
|
|
3792
3840
|
enumerable: true,
|
|
3793
|
-
get: function () { return
|
|
3841
|
+
get: function () { return chunkX6UQFV4X_cjs.VENDOR_SCOPED_STORE_ENTITIES; }
|
|
3794
3842
|
});
|
|
3795
3843
|
Object.defineProperty(exports, "VENDOR_STORE_RBAC_ENTITIES", {
|
|
3796
3844
|
enumerable: true,
|
|
3797
|
-
get: function () { return
|
|
3845
|
+
get: function () { return chunkX6UQFV4X_cjs.VENDOR_STORE_RBAC_ENTITIES; }
|
|
3798
3846
|
});
|
|
3799
3847
|
Object.defineProperty(exports, "canManageVendorRoles", {
|
|
3800
3848
|
enumerable: true,
|
|
3801
|
-
get: function () { return
|
|
3849
|
+
get: function () { return chunkX6UQFV4X_cjs.canManageVendorRoles; }
|
|
3802
3850
|
});
|
|
3803
3851
|
Object.defineProperty(exports, "canManageVendorTeam", {
|
|
3804
3852
|
enumerable: true,
|
|
3805
|
-
get: function () { return
|
|
3853
|
+
get: function () { return chunkX6UQFV4X_cjs.canManageVendorTeam; }
|
|
3806
3854
|
});
|
|
3807
3855
|
Object.defineProperty(exports, "canOnboardVendors", {
|
|
3808
3856
|
enumerable: true,
|
|
3809
|
-
get: function () { return
|
|
3857
|
+
get: function () { return chunkX6UQFV4X_cjs.canOnboardVendors; }
|
|
3810
3858
|
});
|
|
3811
3859
|
Object.defineProperty(exports, "explainSessionEntityAccess", {
|
|
3812
3860
|
enumerable: true,
|
|
3813
|
-
get: function () { return
|
|
3861
|
+
get: function () { return chunkX6UQFV4X_cjs.explainSessionEntityAccess; }
|
|
3814
3862
|
});
|
|
3815
3863
|
Object.defineProperty(exports, "getPermissionableEntityKeys", {
|
|
3816
3864
|
enumerable: true,
|
|
3817
|
-
get: function () { return
|
|
3865
|
+
get: function () { return chunkX6UQFV4X_cjs.getPermissionableEntityKeys; }
|
|
3818
3866
|
});
|
|
3819
3867
|
Object.defineProperty(exports, "hasEntityPermission", {
|
|
3820
3868
|
enumerable: true,
|
|
3821
|
-
get: function () { return
|
|
3869
|
+
get: function () { return chunkX6UQFV4X_cjs.hasEntityPermission; }
|
|
3822
3870
|
});
|
|
3823
3871
|
Object.defineProperty(exports, "isPlatformAdministrator", {
|
|
3824
3872
|
enumerable: true,
|
|
3825
|
-
get: function () { return
|
|
3873
|
+
get: function () { return chunkX6UQFV4X_cjs.isPlatformAdministrator; }
|
|
3826
3874
|
});
|
|
3827
3875
|
Object.defineProperty(exports, "isRbacDebugEnabled", {
|
|
3828
3876
|
enumerable: true,
|
|
3829
|
-
get: function () { return
|
|
3877
|
+
get: function () { return chunkX6UQFV4X_cjs.isRbacDebugEnabled; }
|
|
3830
3878
|
});
|
|
3831
3879
|
Object.defineProperty(exports, "isSuperAdmin", {
|
|
3832
3880
|
enumerable: true,
|
|
3833
|
-
get: function () { return
|
|
3881
|
+
get: function () { return chunkX6UQFV4X_cjs.isSuperAdmin; }
|
|
3834
3882
|
});
|
|
3835
3883
|
Object.defineProperty(exports, "isSuperAdminGroupName", {
|
|
3836
3884
|
enumerable: true,
|
|
3837
|
-
get: function () { return
|
|
3885
|
+
get: function () { return chunkX6UQFV4X_cjs.isSuperAdminGroupName; }
|
|
3838
3886
|
});
|
|
3839
3887
|
Object.defineProperty(exports, "isVendorAdmin", {
|
|
3840
3888
|
enumerable: true,
|
|
3841
|
-
get: function () { return
|
|
3889
|
+
get: function () { return chunkX6UQFV4X_cjs.isVendorAdmin; }
|
|
3842
3890
|
});
|
|
3843
3891
|
Object.defineProperty(exports, "isVendorGroupName", {
|
|
3844
3892
|
enumerable: true,
|
|
3845
|
-
get: function () { return
|
|
3893
|
+
get: function () { return chunkX6UQFV4X_cjs.isVendorGroupName; }
|
|
3846
3894
|
});
|
|
3847
3895
|
Object.defineProperty(exports, "isVendorOwner", {
|
|
3848
3896
|
enumerable: true,
|
|
3849
|
-
get: function () { return
|
|
3897
|
+
get: function () { return chunkX6UQFV4X_cjs.isVendorOwner; }
|
|
3850
3898
|
});
|
|
3851
3899
|
Object.defineProperty(exports, "isVendorPortalUser", {
|
|
3852
3900
|
enumerable: true,
|
|
3853
|
-
get: function () { return
|
|
3901
|
+
get: function () { return chunkX6UQFV4X_cjs.isVendorPortalUser; }
|
|
3854
3902
|
});
|
|
3855
3903
|
Object.defineProperty(exports, "isVendorStaff", {
|
|
3856
3904
|
enumerable: true,
|
|
3857
|
-
get: function () { return
|
|
3905
|
+
get: function () { return chunkX6UQFV4X_cjs.isVendorStaff; }
|
|
3858
3906
|
});
|
|
3859
3907
|
Object.defineProperty(exports, "logEntityAccessDecision", {
|
|
3860
3908
|
enumerable: true,
|
|
3861
|
-
get: function () { return
|
|
3909
|
+
get: function () { return chunkX6UQFV4X_cjs.logEntityAccessDecision; }
|
|
3862
3910
|
});
|
|
3863
3911
|
Object.defineProperty(exports, "logRbac", {
|
|
3864
3912
|
enumerable: true,
|
|
3865
|
-
get: function () { return
|
|
3913
|
+
get: function () { return chunkX6UQFV4X_cjs.logRbac; }
|
|
3866
3914
|
});
|
|
3867
3915
|
Object.defineProperty(exports, "permissionRowsToRecord", {
|
|
3868
3916
|
enumerable: true,
|
|
3869
|
-
get: function () { return
|
|
3917
|
+
get: function () { return chunkX6UQFV4X_cjs.permissionRowsToRecord; }
|
|
3870
3918
|
});
|
|
3871
3919
|
Object.defineProperty(exports, "resolveVendorScopeFromSessionUser", {
|
|
3872
3920
|
enumerable: true,
|
|
3873
|
-
get: function () { return
|
|
3921
|
+
get: function () { return chunkX6UQFV4X_cjs.resolveVendorScopeFromSessionUser; }
|
|
3874
3922
|
});
|
|
3875
3923
|
Object.defineProperty(exports, "summarizeEntityPerms", {
|
|
3876
3924
|
enumerable: true,
|
|
3877
|
-
get: function () { return
|
|
3925
|
+
get: function () { return chunkX6UQFV4X_cjs.summarizeEntityPerms; }
|
|
3878
3926
|
});
|
|
3879
3927
|
Object.defineProperty(exports, "vendorPortalFlagsFromUser", {
|
|
3880
3928
|
enumerable: true,
|
|
3881
|
-
get: function () { return
|
|
3929
|
+
get: function () { return chunkX6UQFV4X_cjs.vendorPortalFlagsFromUser; }
|
|
3882
3930
|
});
|
|
3883
3931
|
Object.defineProperty(exports, "queueErpPaidOrderForOrderId", {
|
|
3884
3932
|
enumerable: true,
|