@adobe/aio-commerce-lib-app 0.1.1 → 0.3.0

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.
Files changed (50) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/dist/cjs/actions/index.cjs +824 -0
  3. package/dist/cjs/actions/index.d.cts +18 -0
  4. package/dist/cjs/app-Dx0ca6oL.d.cts +181 -0
  5. package/dist/cjs/commands/generate/actions/templates/app-management/custom-scripts.js.template +28 -0
  6. package/dist/cjs/commands/generate/actions/templates/app-management/get-app-config.js.template +62 -0
  7. package/dist/cjs/commands/generate/actions/templates/app-management/installation.js.template +21 -0
  8. package/dist/cjs/commands/generate/actions/templates/{get-app-config.js.template → business-configuration/get-config-schema.js.template} +13 -11
  9. package/dist/cjs/commands/generate/actions/templates/business-configuration/get-configuration.js.template +104 -0
  10. package/dist/cjs/commands/generate/actions/templates/business-configuration/get-scope-tree.js.template +69 -0
  11. package/dist/cjs/commands/generate/actions/templates/business-configuration/set-configuration.js.template +125 -0
  12. package/dist/cjs/commands/generate/actions/templates/business-configuration/set-custom-scope-tree.js.template +83 -0
  13. package/dist/cjs/commands/generate/actions/templates/business-configuration/sync-commerce-scopes.js.template +113 -0
  14. package/dist/cjs/commands/generate/actions/templates/business-configuration/unsync-commerce-scopes.js.template +56 -0
  15. package/dist/cjs/commands/index.cjs +1075 -117
  16. package/dist/cjs/config/index.cjs +20 -1
  17. package/dist/cjs/config/index.d.cts +591 -364
  18. package/dist/cjs/config-JQ_n-5Nk.cjs +565 -0
  19. package/dist/cjs/error-Byj1DVHZ.cjs +344 -0
  20. package/dist/cjs/index-C5SutkJQ.d.cts +345 -0
  21. package/dist/cjs/logging-DYwr5WQk.cjs +25 -0
  22. package/dist/cjs/management/index.cjs +9 -0
  23. package/dist/cjs/management/index.d.cts +2 -0
  24. package/dist/cjs/management-Dm5h0E6l.cjs +1246 -0
  25. package/dist/es/actions/index.d.mts +18 -0
  26. package/dist/es/actions/index.mjs +822 -0
  27. package/dist/es/app-Cx1-6dn0.d.mts +181 -0
  28. package/dist/es/commands/generate/actions/templates/app-management/custom-scripts.js.template +28 -0
  29. package/dist/es/commands/generate/actions/templates/app-management/get-app-config.js.template +62 -0
  30. package/dist/es/commands/generate/actions/templates/app-management/installation.js.template +21 -0
  31. package/dist/es/commands/generate/actions/templates/{get-app-config.js.template → business-configuration/get-config-schema.js.template} +13 -11
  32. package/dist/es/commands/generate/actions/templates/business-configuration/get-configuration.js.template +104 -0
  33. package/dist/es/commands/generate/actions/templates/business-configuration/get-scope-tree.js.template +69 -0
  34. package/dist/es/commands/generate/actions/templates/business-configuration/set-configuration.js.template +125 -0
  35. package/dist/es/commands/generate/actions/templates/business-configuration/set-custom-scope-tree.js.template +83 -0
  36. package/dist/es/commands/generate/actions/templates/business-configuration/sync-commerce-scopes.js.template +113 -0
  37. package/dist/es/commands/generate/actions/templates/business-configuration/unsync-commerce-scopes.js.template +56 -0
  38. package/dist/es/commands/index.mjs +1070 -117
  39. package/dist/es/config/index.d.mts +591 -364
  40. package/dist/es/config/index.mjs +4 -1
  41. package/dist/es/config-BSGerqCG.mjs +457 -0
  42. package/dist/es/error-P7JgUTds.mjs +251 -0
  43. package/dist/es/index-Bxr3zvCT.d.mts +345 -0
  44. package/dist/es/logging-VgerMhp6.mjs +18 -0
  45. package/dist/es/management/index.d.mts +3 -0
  46. package/dist/es/management/index.mjs +3 -0
  47. package/dist/es/management-Y7pwEbNI.mjs +1204 -0
  48. package/package.json +46 -6
  49. package/dist/cjs/parser-x_oUOtEM.cjs +0 -1
  50. package/dist/es/parser-djQHmDCQ.mjs +0 -1
@@ -1 +1,20 @@
1
- const require_parser=require(`../parser-x_oUOtEM.cjs`);function defineConfig(config){return config}exports.defineConfig=defineConfig,exports.parseCommerceAppConfig=require_parser.t,exports.readBundledCommerceAppConfig=require_parser.n,exports.readCommerceAppConfig=require_parser.r,exports.resolveCommerceAppConfig=require_parser.i,exports.validateCommerceAppConfig=require_parser.a,exports.validateCommerceAppConfigDomain=require_parser.o;
1
+ const require_error = require('../error-Byj1DVHZ.cjs');
2
+ const require_config = require('../config-JQ_n-5Nk.cjs');
3
+
4
+ exports.CommerceAppConfigSchemas = require_config.CommerceAppConfigSchemas;
5
+ exports.defineConfig = require_config.defineConfig;
6
+ exports.getConfigDomains = require_config.getConfigDomains;
7
+ exports.hasBusinessConfig = require_config.hasBusinessConfig;
8
+ exports.hasBusinessConfigSchema = require_config.hasBusinessConfigSchema;
9
+ exports.hasCommerceEvents = require_error.hasCommerceEvents;
10
+ exports.hasConfigDomain = require_config.hasConfigDomain;
11
+ exports.hasCustomInstallation = require_error.hasCustomInstallation;
12
+ exports.hasCustomInstallationSteps = require_error.hasCustomInstallationSteps;
13
+ exports.hasEventing = require_error.hasEventing;
14
+ exports.hasExternalEvents = require_error.hasExternalEvents;
15
+ exports.hasMetadata = require_config.hasMetadata;
16
+ exports.parseCommerceAppConfig = require_config.parseCommerceAppConfig;
17
+ exports.readCommerceAppConfig = require_config.readCommerceAppConfig;
18
+ exports.resolveCommerceAppConfig = require_config.resolveCommerceAppConfig;
19
+ exports.validateCommerceAppConfig = require_config.validateCommerceAppConfig;
20
+ exports.validateCommerceAppConfigDomain = require_config.validateCommerceAppConfigDomain;