@famgia/omnify-laravel 0.0.103 → 0.0.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-U2QZI3HY.js → chunk-XR2DTIIS.js} +3 -3
- package/dist/chunk-XR2DTIIS.js.map +1 -0
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/plugin.cjs +2 -2
- package/dist/plugin.cjs.map +1 -1
- package/dist/plugin.d.cts +2 -2
- package/dist/plugin.d.ts +2 -2
- package/dist/plugin.js +1 -1
- package/package.json +4 -4
- package/dist/chunk-U2QZI3HY.js.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -4333,12 +4333,12 @@ function resolveOptions5(options) {
|
|
|
4333
4333
|
baseRequestsPath: options?.baseRequestsPath ?? joinPath(base, "app/Http/Requests/OmnifyBase"),
|
|
4334
4334
|
requestNamespace: options?.requestNamespace ?? "App\\Http\\Requests",
|
|
4335
4335
|
baseRequestNamespace: options?.baseRequestNamespace ?? "App\\Http\\Requests\\OmnifyBase",
|
|
4336
|
-
generateRequests: options?.generateRequests ??
|
|
4336
|
+
generateRequests: options?.generateRequests ?? true,
|
|
4337
4337
|
resourcesPath: options?.resourcesPath ?? joinPath(base, "app/Http/Resources"),
|
|
4338
4338
|
baseResourcesPath: options?.baseResourcesPath ?? joinPath(base, "app/Http/Resources/OmnifyBase"),
|
|
4339
4339
|
resourceNamespace: options?.resourceNamespace ?? "App\\Http\\Resources",
|
|
4340
4340
|
baseResourceNamespace: options?.baseResourceNamespace ?? "App\\Http\\Resources\\OmnifyBase",
|
|
4341
|
-
generateResources: options?.generateResources ??
|
|
4341
|
+
generateResources: options?.generateResources ?? true
|
|
4342
4342
|
};
|
|
4343
4343
|
}
|
|
4344
4344
|
function laravelPlugin(options) {
|