@ctx-core/version__app
Advanced tools
Comparing version 9.1.3 to 9.1.5
# @ctx-core/version\_\_app | ||
## 9.1.5 | ||
### Patch Changes | ||
- update dependencies | ||
- Updated dependencies [undefined] | ||
- @ctx-core/env@10.1.4 | ||
- @ctx-core/store@24.8.4 | ||
## 9.1.4 | ||
### Patch Changes | ||
- Updated dependencies [undefined] | ||
- @ctx-core/object@18.0.0 | ||
- @ctx-core/env@10.1.3 | ||
- @ctx-core/store@24.8.3 | ||
## 9.1.3 | ||
@@ -4,0 +22,0 @@ |
{ | ||
"name": "@ctx-core/version__app", | ||
"version": "9.1.3", | ||
"version": "9.1.5", | ||
"description": "ctx-core version__app", | ||
@@ -23,6 +23,6 @@ "keywords": [ | ||
"dependencies": { | ||
"@ctx-core/atob": "^7.1.2", | ||
"@ctx-core/env": "^10.1.2", | ||
"@ctx-core/object": "^17.6.2", | ||
"@ctx-core/store": "^24.8.2", | ||
"@ctx-core/atob": "^7.1.4", | ||
"@ctx-core/env": "^10.1.4", | ||
"@ctx-core/object": "^18.0.0", | ||
"@ctx-core/store": "^24.8.4", | ||
"svelte": "3.38.2" | ||
@@ -29,0 +29,0 @@ }, |
@@ -1,2 +0,10 @@ | ||
export declare const app_version_b: import("@ctx-core/object").Be<import("@ctx-core/store").Readable<string | number>, object>; | ||
import { Readable$ } from '@ctx-core/store'; | ||
import { CACHE_VERSION_ctx_I, VERSION_ctx_I } from '@ctx-core/env'; | ||
export interface app_version_Ctx extends CACHE_VERSION_ctx_I, VERSION_ctx_I { | ||
app_version?: app_version_T; | ||
} | ||
export declare const app_version_b: import("@ctx-core/object").Be<app_version_Ctx, "app_version">; | ||
export declare type $app_version_T = string; | ||
export interface app_version_T extends Readable$<$app_version_T> { | ||
} | ||
export { app_version_b as b__version__app }; |
import { _b } from '@ctx-core/object'; | ||
import { derived } from '@ctx-core/store'; | ||
import { derived$ } from '@ctx-core/store'; | ||
import { CACHE_VERSION_b, VERSION_b } from '@ctx-core/env'; | ||
export const app_version_b = _b('app_version', ctx => derived([ | ||
const key = 'app_version'; | ||
export const app_version_b = _b(key, ctx => derived$([ | ||
CACHE_VERSION_b(ctx), | ||
@@ -9,3 +10,3 @@ VERSION_b(ctx), | ||
|| $VERSION | ||
|| Math.random())); | ||
|| Math.random().toString())); | ||
export { app_version_b as b__version__app }; |
import { _b } from '@ctx-core/object' | ||
import { derived } from '@ctx-core/store' | ||
import { CACHE_VERSION_b, VERSION_b } from '@ctx-core/env' | ||
export const app_version_b = _b('app_version', ctx=> | ||
derived([ | ||
import { derived$, Readable$ } from '@ctx-core/store' | ||
import { CACHE_VERSION_b, CACHE_VERSION_ctx_I, VERSION_b, VERSION_ctx_I } from '@ctx-core/env' | ||
const key = 'app_version' | ||
export interface app_version_Ctx | ||
extends CACHE_VERSION_ctx_I, VERSION_ctx_I { | ||
app_version?:app_version_T | ||
} | ||
export const app_version_b = _b<app_version_Ctx, typeof key>(key, ctx=> | ||
derived$([ | ||
CACHE_VERSION_b(ctx), | ||
@@ -12,3 +17,5 @@ VERSION_b(ctx), | ||
|| $VERSION | ||
|| Math.random())) | ||
|| Math.random().toString())) | ||
export type $app_version_T = string | ||
export interface app_version_T extends Readable$<$app_version_T> {} | ||
export { app_version_b as b__version__app } |
@@ -1,2 +0,10 @@ | ||
export declare const app_version_query_b: import("@ctx-core/object").Be<import("@ctx-core/store").Readable<string>, object>; | ||
import { Readable$ } from '@ctx-core/store'; | ||
import { app_version_Ctx } from './app_version_b'; | ||
export interface app_version_query_Ctx extends app_version_Ctx { | ||
app_version_query?: app_version_query_T; | ||
} | ||
export declare const app_version_query_b: import("@ctx-core/object").Be<app_version_query_Ctx, "app_version_query">; | ||
export declare type $app_version_query_T = string; | ||
export interface app_version_query_T extends Readable$<$app_version_query_T> { | ||
} | ||
export { app_version_query_b as b__query__version__app }; |
import { _b } from '@ctx-core/object'; | ||
import { derived } from '@ctx-core/store'; | ||
import { derived$ } from '@ctx-core/store'; | ||
import { app_version_b } from './app_version_b'; | ||
export const app_version_query_b = _b('app_version_query', ctx => derived(app_version_b(ctx), app_version => `v=${encodeURIComponent(app_version)}`)); | ||
const key = 'app_version_query'; | ||
export const app_version_query_b = _b(key, ctx => derived$(app_version_b(ctx), app_version => `v=${encodeURIComponent(app_version)}`)); | ||
export { app_version_query_b as b__query__version__app }; |
import { _b } from '@ctx-core/object' | ||
import { derived } from '@ctx-core/store' | ||
import { app_version_b } from './app_version_b' | ||
export const app_version_query_b = _b('app_version_query', ctx=> | ||
derived( | ||
import { derived$, Readable$ } from '@ctx-core/store' | ||
import { app_version_b, app_version_Ctx } from './app_version_b' | ||
const key = 'app_version_query' | ||
export interface app_version_query_Ctx extends app_version_Ctx { | ||
app_version_query?:app_version_query_T | ||
} | ||
export const app_version_query_b = _b<app_version_query_Ctx, typeof key>(key, ctx=> | ||
derived$( | ||
app_version_b(ctx), | ||
app_version=> | ||
`v=${encodeURIComponent(app_version as string|number)}`)) | ||
export type $app_version_query_T = string | ||
export interface app_version_query_T extends Readable$<$app_version_query_T> {} | ||
export { app_version_query_b as b__query__version__app } |
37557
381
- Removed@ctx-core/object@17.6.2(transitive)
Updated@ctx-core/atob@^7.1.4
Updated@ctx-core/env@^10.1.4
Updated@ctx-core/object@^18.0.0
Updated@ctx-core/store@^24.8.4