@famgia/omnify-types 2.0.21 → 2.0.22

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/index.d.cts CHANGED
@@ -834,6 +834,11 @@ interface PackageLaravelOutputConfig {
834
834
  * @default 'database/factories'
835
835
  */
836
836
  readonly factoriesPath?: string;
837
+ /**
838
+ * Factory namespace for the package.
839
+ * @default derived from modelsNamespace (e.g., 'Omnify\\SsoClient\\Models' -> 'Omnify\\SsoClient\\Database\\Factories')
840
+ */
841
+ readonly factoriesNamespace?: string;
837
842
  }
838
843
  /**
839
844
  * Package-level output configuration.
package/dist/index.d.ts CHANGED
@@ -834,6 +834,11 @@ interface PackageLaravelOutputConfig {
834
834
  * @default 'database/factories'
835
835
  */
836
836
  readonly factoriesPath?: string;
837
+ /**
838
+ * Factory namespace for the package.
839
+ * @default derived from modelsNamespace (e.g., 'Omnify\\SsoClient\\Models' -> 'Omnify\\SsoClient\\Database\\Factories')
840
+ */
841
+ readonly factoriesNamespace?: string;
837
842
  }
838
843
  /**
839
844
  * Package-level output configuration.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@famgia/omnify-types",
3
- "version": "2.0.21",
3
+ "version": "2.0.22",
4
4
  "description": "Shared TypeScript types for omnify-schema",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",