@etaio/core-types 1.0.2 → 1.0.5
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/assets/asset-adapter.d.ts +1 -1
- package/dist/assets/asset-adapter.d.ts.map +1 -1
- package/dist/base/index.d.ts +1 -0
- package/dist/base/index.d.ts.map +1 -1
- package/dist/index.d.ts +18 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.js +3482 -230
- package/dist/index.umd.js +1 -1
- package/dist/providers/index.d.ts +7 -0
- package/dist/providers/index.d.ts.map +1 -0
- package/dist/validators/asset-schemas.d.ts +934 -0
- package/dist/validators/asset-schemas.d.ts.map +1 -0
- package/dist/validators/index.d.ts +9 -0
- package/dist/validators/index.d.ts.map +1 -0
- package/dist/validators/request-schemas.d.ts +663 -0
- package/dist/validators/request-schemas.d.ts.map +1 -0
- package/dist/validators/response-schemas.d.ts +972 -0
- package/dist/validators/response-schemas.d.ts.map +1 -0
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"asset-adapter.d.ts","sourceRoot":"","sources":["../../src/assets/asset-adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,SAAS,EAAa,MAAM,eAAe,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAmC,MAAM,aAAa,CAAC;AACxE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAiC,MAAM,
|
|
1
|
+
{"version":3,"file":"asset-adapter.d.ts","sourceRoot":"","sources":["../../src/assets/asset-adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,SAAS,EAAa,MAAM,eAAe,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAmC,MAAM,aAAa,CAAC;AACxE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAiC,MAAM,qBAAqB,CAAC;AAM1F,qBAAa,YAAY;IAMvB;;;OAGG;IACH,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,GAAG,GAAG,SAAS;IAqBzC;;;OAGG;IACH,MAAM,CAAC,UAAU,CACf,IAAI,EAAE,SAAS,EACf,QAAQ,CAAC,EAAE,OAAO,CAAC,QAAQ,CAAC,GAC3B,QAAQ;IAkBX;;;OAGG;IACH,MAAM,CAAC,aAAa,CAAC,IAAI,EAAE,UAAU,GAAG,QAAQ;IAiBhD;;;OAGG;IACH,MAAM,CAAC,WAAW,CAChB,KAAK,EAAE,QAAQ,EACf,OAAO,CAAC,EAAE,QAAQ,EAClB,cAAc,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,GACnC,UAAU;IAwHb;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,kBAAkB;IAkCjC;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,kBAAkB;IAgBjC;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,UAAU;IAczB;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAahC;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,gBAAgB;IAmB/B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,eAAe;IAO9B;;OAEG;IACH,MAAM,CAAC,WAAW,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,UAAU;IAU/C;;OAEG;IACH,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,QAAQ;CAQ7C"}
|
package/dist/base/index.d.ts
CHANGED
package/dist/base/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/base/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/base/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @etaio/core-types - Core Type System
|
|
3
|
+
*
|
|
4
|
+
* Fundamental base types for the entire ShotRush ecosystem.
|
|
5
|
+
* This package provides the foundation types that all other packages build upon.
|
|
6
|
+
*
|
|
7
|
+
* Architecture:
|
|
8
|
+
* - BaseAsset: The fundamental asset type (ID, type, URL, project)
|
|
9
|
+
* - ApiAsset: Extends BaseAsset with API-specific metadata
|
|
10
|
+
* - AssetAdapter: Converts between different asset representations
|
|
11
|
+
* - Request/Response: Standardized API contracts
|
|
12
|
+
* - Validation: Runtime type checking with Zod
|
|
13
|
+
* - Providers: Interface definitions for generation services
|
|
14
|
+
*/
|
|
1
15
|
export * from './base';
|
|
2
|
-
export * from './base/generative-asset';
|
|
3
|
-
export * from './providers/generative-provider';
|
|
4
16
|
export * from './assets';
|
|
17
|
+
export * from './providers';
|
|
18
|
+
export * from './validators';
|
|
19
|
+
export declare const VERSION = "1.0.0";
|
|
20
|
+
export declare const PACKAGE_NAME = "@etaio/core-types";
|
|
5
21
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAKH,cAAc,QAAQ,CAAC;AAKvB,cAAc,UAAU,CAAC;AAKzB,cAAc,aAAa,CAAC;AAK5B,cAAc,cAAc,CAAC;AAK7B,eAAO,MAAM,OAAO,UAAU,CAAC;AAC/B,eAAO,MAAM,YAAY,sBAAsB,CAAC"}
|