From 714b9e6c985da8ae19e397b3823e5d486819f96c Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Wed, 16 Oct 2024 12:10:30 +0300 Subject: [PATCH] docs: update resolve path to use src (#9605) Update path used in `resolve` of modules to start with `src` --- .../modules/options/page.mdx | 2 +- www/apps/book/app/basics/modules/page.mdx | 4 ++-- .../custom-features/module/page.mdx | 2 +- .../integrate-systems/service/page.mdx | 2 +- .../modules-tests/module-example/page.mdx | 2 +- .../testing-tools/modules-tests/page.mdx | 4 ++-- www/apps/book/generated/edit-dates.mjs | 12 +++++------ .../cache/create/page.mdx | 2 +- .../event/create/page.mdx | 2 +- .../tax/module-options/page.mdx | 2 +- .../app/recipes/commerce-automation/page.mdx | 2 +- .../examples/standard/page.mdx | 4 ++-- .../integrate-ecommerce-stack/page.mdx | 2 +- .../examples/restaurant-delivery/page.mdx | 4 ++-- .../marketplace/examples/vendors/page.mdx | 2 +- .../subscriptions/examples/standard/page.mdx | 2 +- .../moduleIntegrationTestRunner/page.mdx | 2 +- www/apps/resources/generated/edit-dates.mjs | 20 +++++++++---------- .../merger-custom-options/auth-provider.ts | 2 +- .../constants/merger-custom-options/file.ts | 2 +- .../fulfillment-provider.ts | 2 +- .../merger-custom-options/notification.ts | 2 +- .../merger-custom-options/payment-provider.ts | 2 +- 23 files changed, 41 insertions(+), 41 deletions(-) diff --git a/www/apps/book/app/advanced-development/modules/options/page.mdx b/www/apps/book/app/advanced-development/modules/options/page.mdx index 78289eb80dbc1..3575ab0e21acc 100644 --- a/www/apps/book/app/advanced-development/modules/options/page.mdx +++ b/www/apps/book/app/advanced-development/modules/options/page.mdx @@ -25,7 +25,7 @@ module.exports = defineConfig({ // ... modules: [ { - resolve: "./modules/hello", + resolve: "./src/modules/hello", options: { capitalize: true, }, diff --git a/www/apps/book/app/basics/modules/page.mdx b/www/apps/book/app/basics/modules/page.mdx index 2dca6f60a1b50..c1356e985bffa 100644 --- a/www/apps/book/app/basics/modules/page.mdx +++ b/www/apps/book/app/basics/modules/page.mdx @@ -134,13 +134,13 @@ module.exports = defineConfig({ }, modules: [ { - resolve: "./modules/hello", + resolve: "./src/modules/hello", } ] }) ``` -Its value is an array of objects, each having a `resolve` property, whose value is either a path to module's directory relative to `src` (it shouldn't include `src` in the path), or an `npm` package’s name. +Its value is an array of objects, each having a `resolve` property, whose value is either a path to module's directory, or an `npm` package’s name. ### 5. Generate Migrations diff --git a/www/apps/book/app/customization/custom-features/module/page.mdx b/www/apps/book/app/customization/custom-features/module/page.mdx index ae3927d7642e5..9dc8ac4f2d3f4 100644 --- a/www/apps/book/app/customization/custom-features/module/page.mdx +++ b/www/apps/book/app/customization/custom-features/module/page.mdx @@ -104,7 +104,7 @@ module.exports = defineConfig({ // ... modules: [ { - resolve: "./modules/brand", + resolve: "./src/modules/brand", } ] }) diff --git a/www/apps/book/app/customization/integrate-systems/service/page.mdx b/www/apps/book/app/customization/integrate-systems/service/page.mdx index 0cbb8a587725d..cd79fa6c9d83f 100644 --- a/www/apps/book/app/customization/integrate-systems/service/page.mdx +++ b/www/apps/book/app/customization/integrate-systems/service/page.mdx @@ -187,7 +187,7 @@ module.exports = defineConfig({ // ... modules: [ { - resolve: "./modules/brand", + resolve: "./src/modules/brand", options: { apiKey: process.env.BRAND_API_KEY || "temp", }, diff --git a/www/apps/book/app/debugging-and-testing/testing-tools/modules-tests/module-example/page.mdx b/www/apps/book/app/debugging-and-testing/testing-tools/modules-tests/module-example/page.mdx index 713a5337a3870..48f828aa2ac11 100644 --- a/www/apps/book/app/debugging-and-testing/testing-tools/modules-tests/module-example/page.mdx +++ b/www/apps/book/app/debugging-and-testing/testing-tools/modules-tests/module-example/page.mdx @@ -47,7 +47,7 @@ import MyCustom from "../models/my-custom" moduleIntegrationTestRunner({ moduleName: HELLO_MODULE, moduleModels: [MyCustom], - resolve: "./modules/hello", + resolve: "./src/modules/hello", testSuite: ({ service }) => { describe("HelloModuleService", () => { it("says hello world", () => { diff --git a/www/apps/book/app/debugging-and-testing/testing-tools/modules-tests/page.mdx b/www/apps/book/app/debugging-and-testing/testing-tools/modules-tests/page.mdx index b116eca15bea5..4464c0f0d5276 100644 --- a/www/apps/book/app/debugging-and-testing/testing-tools/modules-tests/page.mdx +++ b/www/apps/book/app/debugging-and-testing/testing-tools/modules-tests/page.mdx @@ -32,7 +32,7 @@ import MyCustom from "../models/my-custom" moduleIntegrationTestRunner({ moduleName: HELLO_MODULE, moduleModels: [MyCustom], - resolve: "./modules/hello", + resolve: "./src/modules/hello", testSuite: ({ service }) => { // TODO write tests }, @@ -43,7 +43,7 @@ The `moduleIntegrationTestRunner` function accepts as a parameter an object with - `moduleName`: The name of the module. - `moduleModels`: An array of models in the module. Refer to [this section](#write-tests-for-modules-without-data-models) if your module doesn't have data models. -- `resolve`: The path to the model relative to the `src` directory. +- `resolve`: The path to the model. - `testSuite`: A function that defines the tests to run. The `testSuite` function accepts as a parameter an object having the `service` property, which is an instance of the module's main service. diff --git a/www/apps/book/generated/edit-dates.mjs b/www/apps/book/generated/edit-dates.mjs index d7b0ee26d522c..97fb67ab60289 100644 --- a/www/apps/book/generated/edit-dates.mjs +++ b/www/apps/book/generated/edit-dates.mjs @@ -44,7 +44,7 @@ export const generatedEditDates = { "app/advanced-development/data-models/write-migration/page.mdx": "2024-07-15T17:46:10+02:00", "app/advanced-development/data-models/manage-relationships/page.mdx": "2024-09-10T11:39:51.167Z", "app/advanced-development/modules/remote-query/page.mdx": "2024-07-21T21:20:24+02:00", - "app/advanced-development/modules/options/page.mdx": "2024-09-30T08:43:53.126Z", + "app/advanced-development/modules/options/page.mdx": "2024-10-16T08:49:27.162Z", "app/advanced-development/data-models/relationships/page.mdx": "2024-09-30T08:43:53.125Z", "app/advanced-development/workflows/compensation-function/page.mdx": "2024-09-30T08:43:53.128Z", "app/advanced-development/modules/service-factory/page.mdx": "2024-09-30T08:43:53.127Z", @@ -75,8 +75,8 @@ export const generatedEditDates = { "app/advanced-development/api-routes/validation/page.mdx": "2024-09-11T10:46:31.476Z", "app/advanced-development/api-routes/errors/page.mdx": "2024-09-30T08:43:53.121Z", "app/advanced-development/admin/constraints/page.mdx": "2024-09-10T11:39:51.165Z", - "app/debugging-and-testing/testing-tools/modules-tests/module-example/page.mdx": "2024-09-30T08:43:53.139Z", - "app/debugging-and-testing/testing-tools/modules-tests/page.mdx": "2024-09-30T08:43:53.139Z", + "app/debugging-and-testing/testing-tools/modules-tests/module-example/page.mdx": "2024-10-16T08:50:03.061Z", + "app/debugging-and-testing/testing-tools/modules-tests/page.mdx": "2024-10-16T08:50:23.232Z", "app/advanced-development/module-links/custom-columns/page.mdx": "2024-09-16T15:51:33.570Z", "app/advanced-development/module-links/directions/page.mdx": "2024-09-16T15:37:51.441Z", "app/advanced-development/module-links/page.mdx": "2024-09-16T15:36:48.190Z", @@ -90,7 +90,7 @@ export const generatedEditDates = { "app/advanced-development/workflows/page.mdx": "2024-09-18T08:00:57.364Z", "app/advanced-development/workflows/variable-manipulation/page.mdx": "2024-09-30T08:43:53.130Z", "app/customization/custom-features/api-route/page.mdx": "2024-09-12T12:42:34.201Z", - "app/customization/custom-features/module/page.mdx": "2024-10-03T13:03:41.359Z", + "app/customization/custom-features/module/page.mdx": "2024-10-16T08:49:44.676Z", "app/customization/custom-features/workflow/page.mdx": "2024-09-30T08:43:53.133Z", "app/customization/extend-models/create-links/page.mdx": "2024-09-30T08:43:53.133Z", "app/customization/extend-models/extend-create-product/page.mdx": "2024-09-30T08:43:53.134Z", @@ -104,7 +104,7 @@ export const generatedEditDates = { "app/customization/integrate-systems/handle-event/page.mdx": "2024-09-30T08:43:53.135Z", "app/customization/integrate-systems/page.mdx": "2024-09-12T12:33:29.827Z", "app/customization/integrate-systems/schedule-task/page.mdx": "2024-09-30T08:43:53.135Z", - "app/customization/integrate-systems/service/page.mdx": "2024-09-30T08:43:53.135Z", + "app/customization/integrate-systems/service/page.mdx": "2024-10-16T08:49:50.899Z", "app/customization/next-steps/page.mdx": "2024-09-12T10:50:04.873Z", "app/customization/page.mdx": "2024-09-12T11:16:18.504Z", "app/more-resources/cheatsheet/page.mdx": "2024-07-11T16:11:26.480Z", @@ -113,5 +113,5 @@ export const generatedEditDates = { "app/architecture/overview/page.mdx": "2024-09-23T12:55:01.339Z", "app/advanced-development/data-models/infer-type/page.mdx": "2024-09-30T08:43:53.123Z", "app/advanced-development/custom-cli-scripts/seed-data/page.mdx": "2024-10-03T11:11:07.181Z", - "app/basics/modules/page.mdx": "2024-10-03T13:05:49.551Z" + "app/basics/modules/page.mdx": "2024-10-16T08:49:39.997Z" } \ No newline at end of file diff --git a/www/apps/resources/app/architectural-modules/cache/create/page.mdx b/www/apps/resources/app/architectural-modules/cache/create/page.mdx index 73bb0d10d3be1..8c26df2de2bc7 100644 --- a/www/apps/resources/app/architectural-modules/cache/create/page.mdx +++ b/www/apps/resources/app/architectural-modules/cache/create/page.mdx @@ -161,7 +161,7 @@ module.exports = defineConfig({ // ... modules: [ { - resolve: "./modules/my-cache", + resolve: "./src/modules/my-cache", options: { // any options ttl: 30, diff --git a/www/apps/resources/app/architectural-modules/event/create/page.mdx b/www/apps/resources/app/architectural-modules/event/create/page.mdx index c34b9e1e83e37..9344ee3f490fd 100644 --- a/www/apps/resources/app/architectural-modules/event/create/page.mdx +++ b/www/apps/resources/app/architectural-modules/event/create/page.mdx @@ -116,7 +116,7 @@ module.exports = defineConfig({ // ... modules: [ { - resolve: "./modules/my-event", + resolve: "./src/modules/my-event", options: { // any options }, diff --git a/www/apps/resources/app/commerce-modules/tax/module-options/page.mdx b/www/apps/resources/app/commerce-modules/tax/module-options/page.mdx index 82cdfb0226d7c..90df4ae4b0160 100644 --- a/www/apps/resources/app/commerce-modules/tax/module-options/page.mdx +++ b/www/apps/resources/app/commerce-modules/tax/module-options/page.mdx @@ -46,6 +46,6 @@ module.exports = defineConfig({ The objects in the array accept the following properties: -- `resolve`: A string indicating the package name of the module provider or the path to it relative to the `src` directory. +- `resolve`: A string indicating the package name of the module provider or the path to it. - `id`: A string indicating the provider's unique name or ID. - `options`: An optional object of the module provider's options. diff --git a/www/apps/resources/app/recipes/commerce-automation/page.mdx b/www/apps/resources/app/recipes/commerce-automation/page.mdx index 53151076521dc..6199b84e87f95 100644 --- a/www/apps/resources/app/recipes/commerce-automation/page.mdx +++ b/www/apps/resources/app/recipes/commerce-automation/page.mdx @@ -157,7 +157,7 @@ export const restockModelHighlights = [ // ... modules: [ { - resolve: "./modules/restock-notification", + resolve: "./src/modules/restock-notification", }, ] }) diff --git a/www/apps/resources/app/recipes/digital-products/examples/standard/page.mdx b/www/apps/resources/app/recipes/digital-products/examples/standard/page.mdx index 3efba6aa25972..ca34386c22095 100644 --- a/www/apps/resources/app/recipes/digital-products/examples/standard/page.mdx +++ b/www/apps/resources/app/recipes/digital-products/examples/standard/page.mdx @@ -196,7 +196,7 @@ module.exports = defineConfig({ // ... modules: [ { - resolve: "./modules/digital-product", + resolve: "./src/modules/digital-product", }, ] }) @@ -1520,7 +1520,7 @@ module.exports = defineConfig({ id: "manual", }, { - resolve: "./modules/digital-product-fulfillment", + resolve: "./src/modules/digital-product-fulfillment", id: "digital", }, ], diff --git a/www/apps/resources/app/recipes/integrate-ecommerce-stack/page.mdx b/www/apps/resources/app/recipes/integrate-ecommerce-stack/page.mdx index bb1f1c36a9708..948a315b6c0b0 100644 --- a/www/apps/resources/app/recipes/integrate-ecommerce-stack/page.mdx +++ b/www/apps/resources/app/recipes/integrate-ecommerce-stack/page.mdx @@ -123,7 +123,7 @@ export const serviceHighlights = [ // ... modules: [ { - resolve: "./modules/erp", + resolve: "./src/modules/erp", options: { apiKey: process.env.ERP_API_KEY, }, diff --git a/www/apps/resources/app/recipes/marketplace/examples/restaurant-delivery/page.mdx b/www/apps/resources/app/recipes/marketplace/examples/restaurant-delivery/page.mdx index 12c8b2de8c41b..826206a882fe8 100644 --- a/www/apps/resources/app/recipes/marketplace/examples/restaurant-delivery/page.mdx +++ b/www/apps/resources/app/recipes/marketplace/examples/restaurant-delivery/page.mdx @@ -162,7 +162,7 @@ module.exports = defineConfig({ // ... modules: [ { - resolve: "./modules/restaurant", + resolve: "./src/modules/restaurant", }, ] }) @@ -306,7 +306,7 @@ module.exports = defineConfig({ // ... modules: [ { - resolve: "./modules/delivery", + resolve: "./src/modules/delivery", }, ] }) diff --git a/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx b/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx index 5ca0a32cdc9c0..83ed961f99e9a 100644 --- a/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx +++ b/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx @@ -142,7 +142,7 @@ module.exports = defineConfig({ // ... modules: [ { - resolve: "./modules/marketplace", + resolve: "./src/modules/marketplace", }, ] }) diff --git a/www/apps/resources/app/recipes/subscriptions/examples/standard/page.mdx b/www/apps/resources/app/recipes/subscriptions/examples/standard/page.mdx index 7c85b22b8dfcf..16ac0f8fc2c77 100644 --- a/www/apps/resources/app/recipes/subscriptions/examples/standard/page.mdx +++ b/www/apps/resources/app/recipes/subscriptions/examples/standard/page.mdx @@ -160,7 +160,7 @@ module.exports = defineConfig({ // ... modules: [ { - resolve: "./modules/subscription", + resolve: "./src/modules/subscription", }, ] }) diff --git a/www/apps/resources/app/test-tools-reference/moduleIntegrationTestRunner/page.mdx b/www/apps/resources/app/test-tools-reference/moduleIntegrationTestRunner/page.mdx index 739c4d5f2dbde..58bdbd8a111a4 100644 --- a/www/apps/resources/app/test-tools-reference/moduleIntegrationTestRunner/page.mdx +++ b/www/apps/resources/app/test-tools-reference/moduleIntegrationTestRunner/page.mdx @@ -19,7 +19,7 @@ import MyCustom from "../models/my-custom" moduleIntegrationTestRunner({ moduleName: HELLO_MODULE, moduleModels: [MyCustom], - resolve: "./modules/hello", + resolve: "./src/modules/hello", testSuite: ({ service }) => { // TODO write tests }, diff --git a/www/apps/resources/generated/edit-dates.mjs b/www/apps/resources/generated/edit-dates.mjs index 66207e068feb4..4eb5ed9653bcf 100644 --- a/www/apps/resources/generated/edit-dates.mjs +++ b/www/apps/resources/generated/edit-dates.mjs @@ -108,7 +108,7 @@ export const generatedEditDates = { "app/commerce-modules/tax/_events/_events-table/page.mdx": "2024-07-03T19:27:13+03:00", "app/commerce-modules/tax/_events/page.mdx": "2024-07-03T19:27:13+03:00", "app/commerce-modules/tax/examples/page.mdx": "2024-09-30T08:43:53.169Z", - "app/commerce-modules/tax/module-options/page.mdx": "2024-09-30T08:43:53.169Z", + "app/commerce-modules/tax/module-options/page.mdx": "2024-10-16T08:51:53.676Z", "app/commerce-modules/tax/tax-calculation-with-provider/page.mdx": "2024-07-01T10:21:19+03:00", "app/commerce-modules/tax/tax-rates-and-rules/page.mdx": "2024-06-26T07:55:59+00:00", "app/commerce-modules/tax/tax-region/page.mdx": "2024-05-29T11:08:06+00:00", @@ -133,19 +133,19 @@ export const generatedEditDates = { "app/medusa-workflows-reference/page.mdx": "2024-09-30T08:43:53.174Z", "app/nextjs-starter/page.mdx": "2024-07-01T10:21:19+03:00", "app/recipes/b2b/page.mdx": "2024-10-03T13:07:44.153Z", - "app/recipes/commerce-automation/page.mdx": "2024-10-03T13:07:44.147Z", - "app/recipes/digital-products/examples/standard/page.mdx": "2024-10-15T12:51:59.486Z", + "app/recipes/commerce-automation/page.mdx": "2024-10-16T08:52:01.585Z", + "app/recipes/digital-products/examples/standard/page.mdx": "2024-10-16T08:52:12.991Z", "app/recipes/digital-products/page.mdx": "2024-10-03T13:07:44.147Z", "app/recipes/ecommerce/page.mdx": "2024-06-09T15:18:43+02:00", - "app/recipes/integrate-ecommerce-stack/page.mdx": "2024-10-03T13:07:44.146Z", - "app/recipes/marketplace/examples/vendors/page.mdx": "2024-10-03T13:07:44.153Z", + "app/recipes/integrate-ecommerce-stack/page.mdx": "2024-10-16T08:52:16.760Z", + "app/recipes/marketplace/examples/vendors/page.mdx": "2024-10-16T08:52:24.906Z", "app/recipes/marketplace/page.mdx": "2024-10-03T13:07:44.153Z", "app/recipes/multi-region-store/page.mdx": "2024-10-03T13:07:13.813Z", "app/recipes/omnichannel/page.mdx": "2024-10-03T13:07:14.384Z", "app/recipes/oms/page.mdx": "2024-07-01T10:21:19+03:00", "app/recipes/personalized-products/page.mdx": "2024-10-03T13:07:44.153Z", "app/recipes/pos/page.mdx": "2024-10-03T13:07:13.964Z", - "app/recipes/subscriptions/examples/standard/page.mdx": "2024-10-04T11:13:47.459Z", + "app/recipes/subscriptions/examples/standard/page.mdx": "2024-10-16T08:52:27.606Z", "app/recipes/subscriptions/page.mdx": "2024-10-03T13:07:44.155Z", "app/recipes/page.mdx": "2024-07-11T15:56:41+00:00", "app/service-factory-reference/methods/create/page.mdx": "2024-07-31T17:01:33+03:00", @@ -241,10 +241,10 @@ export const generatedEditDates = { "app/architectural-modules/notification/send-notification/page.mdx": "2024-09-30T08:43:53.151Z", "app/architectural-modules/file/page.mdx": "2024-07-01T10:21:19+03:00", "app/architectural-modules/event/page.mdx": "2024-05-28T13:25:03+03:00", - "app/architectural-modules/cache/create/page.mdx": "2024-09-30T08:43:53.148Z", + "app/architectural-modules/cache/create/page.mdx": "2024-10-16T08:51:35.074Z", "app/admin-widget-injection-zones/page.mdx": "2024-09-30T08:43:53.147Z", "app/architectural-modules/notification/page.mdx": "2024-10-15T12:51:28.735Z", - "app/architectural-modules/event/create/page.mdx": "2024-09-30T08:43:53.149Z", + "app/architectural-modules/event/create/page.mdx": "2024-10-16T08:51:41.334Z", "app/troubleshooting/deployment/page.mdx": "2024-08-19T07:19:40.924Z", "references/core_flows/Order/functions/core_flows.Order.orderEditUpdateItemQuantityValidationStep/page.mdx": "2024-08-20T00:10:58.913Z", "references/core_flows/Order/functions/core_flows.Order.orderEditUpdateItemQuantityWorkflow/page.mdx": "2024-08-20T00:10:58.949Z", @@ -634,7 +634,7 @@ export const generatedEditDates = { "app/medusa-cli/commands/start/page.mdx": "2024-08-28T10:44:19.952Z", "app/medusa-cli/commands/telemtry/page.mdx": "2024-08-28T11:25:08.553Z", "app/medusa-cli/commands/user/page.mdx": "2024-08-28T10:44:52.489Z", - "app/recipes/marketplace/examples/restaurant-delivery/page.mdx": "2024-10-04T10:28:51.698Z", + "app/recipes/marketplace/examples/restaurant-delivery/page.mdx": "2024-10-16T08:52:21.948Z", "references/types/HttpTypes/interfaces/types.HttpTypes.AdminCreateCustomerGroup/page.mdx": "2024-08-30T00:11:02.074Z", "references/types/HttpTypes/interfaces/types.HttpTypes.AdminCreateReservation/page.mdx": "2024-08-30T00:11:02.342Z", "references/types/HttpTypes/interfaces/types.HttpTypes.AdminCustomerGroup/page.mdx": "2024-10-03T00:11:52.871Z", @@ -761,7 +761,7 @@ export const generatedEditDates = { "references/types/HttpTypes/interfaces/types.HttpTypes.AdminWorkflowExecutionResponse/page.mdx": "2024-08-30T00:11:02.514Z", "references/types/interfaces/types.BaseReturnItem/page.mdx": "2024-08-30T00:11:02.538Z", "app/test-tools-reference/medusaIntegrationTestRunner/page.mdx": "2024-09-02T12:12:48.492Z", - "app/test-tools-reference/moduleIntegrationTestRunner/page.mdx": "2024-09-02T12:18:33.134Z", + "app/test-tools-reference/moduleIntegrationTestRunner/page.mdx": "2024-10-16T08:52:30.701Z", "app/test-tools-reference/page.mdx": "2024-09-02T12:25:44.922Z", "references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetInvitesParams/page.mdx": "2024-09-03T00:10:55.319Z", "references/types/HttpTypes/interfaces/types.HttpTypes.AdminInventoryLevel/page.mdx": "2024-09-17T00:10:58.487Z", diff --git a/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/auth-provider.ts b/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/auth-provider.ts index c0b0e66ed68f8..dab3231b3bfc4 100644 --- a/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/auth-provider.ts +++ b/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/auth-provider.ts @@ -63,7 +63,7 @@ module.exports = defineConfig({ options: { providers: [ { - resolve: "./modules/my-auth", + resolve: "./src/modules/my-auth", id: "my-auth", options: { // provider options... diff --git a/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/file.ts b/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/file.ts index 001bb6485e9a9..7b00109fe97aa 100644 --- a/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/file.ts +++ b/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/file.ts @@ -69,7 +69,7 @@ module.exports = defineConfig({ options: { providers: [ { - resolve: "./modules/my-file", + resolve: "./src/modules/my-file", id: "my-file", options: { // provider options... diff --git a/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/fulfillment-provider.ts b/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/fulfillment-provider.ts index af3a42b840197..434ed68f7c80f 100644 --- a/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/fulfillment-provider.ts +++ b/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/fulfillment-provider.ts @@ -63,7 +63,7 @@ module.exports = defineConfig({ options: { providers: [ { - resolve: "./modules/my-fulfillment", + resolve: "./src/modules/my-fulfillment", id: "my-fulfillment", options: { // provider options... diff --git a/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/notification.ts b/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/notification.ts index 6a103a96b913d..f83fe0dd2d1db 100644 --- a/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/notification.ts +++ b/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/notification.ts @@ -73,7 +73,7 @@ module.exports = defineConfig({ options: { providers: [ { - resolve: "./modules/my-notification", + resolve: "./src/modules/my-notification", id: "my-notification", options: { channels: ["email"], diff --git a/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/payment-provider.ts b/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/payment-provider.ts index 7d880ecba0665..842ea16cd3223 100644 --- a/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/payment-provider.ts +++ b/www/utils/packages/typedoc-generate-references/src/constants/merger-custom-options/payment-provider.ts @@ -72,7 +72,7 @@ module.exports = defineConfig({ options: { providers: [ { - resolve: "./modules/my-payment", + resolve: "./src/modules/my-payment", id: "my-payment", options: { // provider options...