@flamingo-stack/openframe-frontend-core 0.0.440 → 0.0.441
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.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +29 -1
package/dist/index.d.ts
CHANGED
|
@@ -13,4 +13,5 @@ export * from './hooks';
|
|
|
13
13
|
export * from './utils';
|
|
14
14
|
export * from './types';
|
|
15
15
|
export * from './assets';
|
|
16
|
+
export type { BlogAuthor, BlogCategory, BlogMediaAsset, BlogPagination, BlogPost, BlogPostCategory, BlogPostPlatform, BlogPostSummary, BlogPostTag, BlogSearchParams, BlogStatus, BlogTag, CaseStudy, CaseStudyFilters, CaseStudyListResponse, CustomerInterview, CustomerInterviewConfig, CustomerInterviewFilters, CustomerInterviewListResponse, } from './types';
|
|
16
17
|
//# 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":"AACA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,uBAAuB,CAAA;AACrC,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,uBAAuB,CAAA;AAErC,cAAc,mBAAmB,CAAA;AAEjC,cAAc,gCAAgC,CAAA;AAE9C,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAA;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACjD,cAAc,oBAAoB,CAAA;AAClC,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,uBAAuB,CAAA;AACrC,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,uBAAuB,CAAA;AAErC,cAAc,mBAAmB,CAAA;AAEjC,cAAc,gCAAgC,CAAA;AAE9C,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAA;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACjD,cAAc,oBAAoB,CAAA;AAClC,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AAQxB,YAAY,EACV,UAAU,EACV,YAAY,EACZ,cAAc,EACd,cAAc,EACd,QAAQ,EACR,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,WAAW,EACX,gBAAgB,EAChB,UAAU,EACV,OAAO,EACP,SAAS,EACT,gBAAgB,EAChB,qBAAqB,EACrB,iBAAiB,EACjB,uBAAuB,EACvB,wBAAwB,EACxB,6BAA6B,GAC9B,MAAM,SAAS,CAAA"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -16,4 +16,32 @@ export * from './types/logs.types'
|
|
|
16
16
|
export * from './hooks'
|
|
17
17
|
export * from './utils'
|
|
18
18
|
export * from './types'
|
|
19
|
-
export * from './assets'
|
|
19
|
+
export * from './assets'
|
|
20
|
+
|
|
21
|
+
// Disambiguation: these names are star-exported by BOTH './components/chat'
|
|
22
|
+
// (chat entity-card payload types) and './types' (CMS domain types). With two
|
|
23
|
+
// star exports TypeScript treats the names as ambiguous and DROPS them from
|
|
24
|
+
// this barrel (consumers see TS2308). Explicitly re-export the CMS domain
|
|
25
|
+
// shapes as canonical here; the chat payload variants stay available from the
|
|
26
|
+
// './components/chat' subpath.
|
|
27
|
+
export type {
|
|
28
|
+
BlogAuthor,
|
|
29
|
+
BlogCategory,
|
|
30
|
+
BlogMediaAsset,
|
|
31
|
+
BlogPagination,
|
|
32
|
+
BlogPost,
|
|
33
|
+
BlogPostCategory,
|
|
34
|
+
BlogPostPlatform,
|
|
35
|
+
BlogPostSummary,
|
|
36
|
+
BlogPostTag,
|
|
37
|
+
BlogSearchParams,
|
|
38
|
+
BlogStatus,
|
|
39
|
+
BlogTag,
|
|
40
|
+
CaseStudy,
|
|
41
|
+
CaseStudyFilters,
|
|
42
|
+
CaseStudyListResponse,
|
|
43
|
+
CustomerInterview,
|
|
44
|
+
CustomerInterviewConfig,
|
|
45
|
+
CustomerInterviewFilters,
|
|
46
|
+
CustomerInterviewListResponse,
|
|
47
|
+
} from './types'
|