@serve.zone/interfaces 6.2.0 → 6.2.1

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/changelog.md CHANGED
@@ -3,6 +3,11 @@
3
3
  ## Pending
4
4
 
5
5
 
6
+ ## 2026-05-28 - 6.2.1
7
+
8
+ - replace Redis platform contract identifiers with Valkey
9
+ - Updates App Store platform requirements and platform database engine contracts to use Valkey naming.
10
+
6
11
  ## 2026-05-26 - 6.2.0
7
12
 
8
13
  - add hosted app parent upgrade admin contracts (hostedapp)
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '6.2.0',
6
+ version: '6.2.1',
7
7
  description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHVGQUF1RjtDQUNyRyxDQUFBIn0=
@@ -1,4 +1,4 @@
1
- export type TAppStorePlatformRequirement = 'mongodb' | 's3' | 'clickhouse' | 'redis' | 'mariadb';
1
+ export type TAppStorePlatformRequirement = 'mongodb' | 's3' | 'clickhouse' | 'valkey' | 'mariadb';
2
2
  export type TAppStoreSourceType = 'inline' | 'repoManifest' | 'dockerImage';
3
3
  export type TAppStoreTrackingMode = 'tag' | 'digest';
4
4
  export type TAppStoreUpgradeStrategy = 'semver' | 'branch' | 'dockerDigest';
@@ -1,4 +1,4 @@
1
- export type TPlatformDatabaseEngine = 'postgres' | 'mongodb' | 'mysql' | 'redis';
1
+ export type TPlatformDatabaseEngine = 'postgres' | 'mongodb' | 'mysql' | 'valkey';
2
2
  export interface IPlatformDatabaseBindingConfig {
3
3
  engine: TPlatformDatabaseEngine;
4
4
  databaseName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "6.2.0",
3
+ "version": "6.2.1",
4
4
  "private": false,
5
5
  "description": "Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.",
6
6
  "exports": {
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '6.2.0',
6
+ version: '6.2.1',
7
7
  description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
8
8
  }
@@ -1,4 +1,4 @@
1
- export type TAppStorePlatformRequirement = 'mongodb' | 's3' | 'clickhouse' | 'redis' | 'mariadb';
1
+ export type TAppStorePlatformRequirement = 'mongodb' | 's3' | 'clickhouse' | 'valkey' | 'mariadb';
2
2
  export type TAppStoreSourceType = 'inline' | 'repoManifest' | 'dockerImage';
3
3
  export type TAppStoreTrackingMode = 'tag' | 'digest';
4
4
  export type TAppStoreUpgradeStrategy = 'semver' | 'branch' | 'dockerDigest';
@@ -1,4 +1,4 @@
1
- export type TPlatformDatabaseEngine = 'postgres' | 'mongodb' | 'mysql' | 'redis';
1
+ export type TPlatformDatabaseEngine = 'postgres' | 'mongodb' | 'mysql' | 'valkey';
2
2
 
3
3
  export interface IPlatformDatabaseBindingConfig {
4
4
  engine: TPlatformDatabaseEngine;