@famgia/omnify-laravel 0.0.102 → 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.js
CHANGED
package/dist/plugin.cjs
CHANGED
|
@@ -4256,12 +4256,12 @@ function resolveOptions5(options) {
|
|
|
4256
4256
|
baseRequestsPath: options?.baseRequestsPath ?? joinPath(base, "app/Http/Requests/OmnifyBase"),
|
|
4257
4257
|
requestNamespace: options?.requestNamespace ?? "App\\Http\\Requests",
|
|
4258
4258
|
baseRequestNamespace: options?.baseRequestNamespace ?? "App\\Http\\Requests\\OmnifyBase",
|
|
4259
|
-
generateRequests: options?.generateRequests ??
|
|
4259
|
+
generateRequests: options?.generateRequests ?? true,
|
|
4260
4260
|
resourcesPath: options?.resourcesPath ?? joinPath(base, "app/Http/Resources"),
|
|
4261
4261
|
baseResourcesPath: options?.baseResourcesPath ?? joinPath(base, "app/Http/Resources/OmnifyBase"),
|
|
4262
4262
|
resourceNamespace: options?.resourceNamespace ?? "App\\Http\\Resources",
|
|
4263
4263
|
baseResourceNamespace: options?.baseResourceNamespace ?? "App\\Http\\Resources\\OmnifyBase",
|
|
4264
|
-
generateResources: options?.generateResources ??
|
|
4264
|
+
generateResources: options?.generateResources ?? true
|
|
4265
4265
|
};
|
|
4266
4266
|
}
|
|
4267
4267
|
function laravelPlugin(options) {
|