playcademy 0.15.6 → 0.16.0

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/cli.js CHANGED
@@ -2965,7 +2965,7 @@ import { join as join13 } from "path";
2965
2965
  // package.json with { type: 'json' }
2966
2966
  var package_default2 = {
2967
2967
  name: "playcademy",
2968
- version: "0.15.5",
2968
+ version: "0.15.6",
2969
2969
  type: "module",
2970
2970
  exports: {
2971
2971
  ".": {
package/dist/index.d.ts CHANGED
@@ -1354,6 +1354,58 @@ interface CallbackServerResult {
1354
1354
  /**
1355
1355
  * KV command types
1356
1356
  */
1357
+ /**
1358
+ * Base options for KV commands
1359
+ */
1360
+ interface BaseKVOptions {
1361
+ raw?: boolean;
1362
+ json?: boolean;
1363
+ remote?: boolean;
1364
+ env?: string;
1365
+ }
1366
+ /**
1367
+ * Options for kv list command
1368
+ */
1369
+ interface KVListOptions extends BaseKVOptions {
1370
+ prefix?: string;
1371
+ }
1372
+ /**
1373
+ * Options for kv get command
1374
+ */
1375
+ type KVGetOptions = BaseKVOptions;
1376
+ /**
1377
+ * Options for kv set command
1378
+ */
1379
+ interface KVSetOptions extends BaseKVOptions {
1380
+ file?: string;
1381
+ }
1382
+ /**
1383
+ * Options for kv delete command
1384
+ */
1385
+ interface KVDeleteOptions extends BaseKVOptions {
1386
+ force?: boolean;
1387
+ }
1388
+ /**
1389
+ * Options for kv inspect command
1390
+ */
1391
+ type KVInspectOptions = BaseKVOptions;
1392
+ /**
1393
+ * Options for kv stats command
1394
+ */
1395
+ type KVStatsOptions = BaseKVOptions;
1396
+ /**
1397
+ * Options for kv clear command
1398
+ */
1399
+ interface KVClearOptions extends BaseKVOptions {
1400
+ force?: boolean;
1401
+ }
1402
+ /**
1403
+ * Options for kv seed command
1404
+ */
1405
+ interface KVSeedOptions extends BaseKVOptions {
1406
+ replace?: boolean;
1407
+ force?: boolean;
1408
+ }
1357
1409
  /**
1358
1410
  * Statistics about KV storage
1359
1411
  */
@@ -1384,6 +1436,8 @@ interface KeyMetadata {
1384
1436
  value?: unknown;
1385
1437
  /** Type of value stored */
1386
1438
  valueType?: 'json' | 'string';
1439
+ /** Custom metadata attached to the key */
1440
+ customMetadata?: Record<string, unknown>;
1387
1441
  }
1388
1442
 
1389
1443
  /**
@@ -1509,4 +1563,4 @@ interface SecretDeleteOptions extends SecretCommandOptions {
1509
1563
  force?: boolean;
1510
1564
  }
1511
1565
 
1512
- export type { ApiConfig, ApiErrorResponse, ApiKeyListItem, ApiKeyWithSecret, ApiRequestOptions, AuthProfile, AuthStore, AuthStrategy, BackendBundle, BackendDeploymentMetadata, BackendDiff, BackendFeatures, BucketBulkOptions, BucketDeleteOptions, BucketGetOptions, BucketListOptions, BucketPutOptions, BuildDiff, BulkCollectionResult, BundleOptions, CallbackServerResult, CollectedFile, ComponentConfig, ComponentResourceConfig, ConfigDiff, CreateApiKeyResponse, CustomRoutesIntegrationOptions, DatabaseIntegrationOptions, DeployConfig, DeployNewGameOptions, DeployedGameInfo, DeploymentChanges, DeploymentContext, DeploymentDiffOptions, DeploymentPlan, DeploymentResult, DevServerOptions, EmbeddedSourcePaths, EngineConfig, EngineType, EnvironmentAuthProfiles, GameStore, IntegrationChangeDetector, IntegrationChangeDetectors, IntegrationConfigChange, IntegrationsConfig, IntegrationsDiff, KeyMetadata, KeyStats, LoadConfigResult, LogEntry, LogStreamConfig, LogStreamUrlOptions, LoginCredentials, LoginResponse, OrganizationConfig, PlaycademyConfig, PluginLogger, PreviewOptions, PreviewResponse, ProjectDirectoryInfo, ResourceConfig, ScaffoldResult, SecretCommandOptions, SecretDeleteOptions, SecretListOptions, SecretSetOptions, SignInResponse, SsoCallbackData, Template, TemplateFramework, TemplateHook, TemplateHookOptions, TemplateSource, TimebackBaseConfig, TimebackCourseConfig, TimebackCourseConfigWithOverrides, TimebackGrade, TimebackIntegrationConfig, TimebackSourcedIds, TimebackSubject, TokenType, UpdateExistingGameOptions };
1566
+ export type { ApiConfig, ApiErrorResponse, ApiKeyListItem, ApiKeyWithSecret, ApiRequestOptions, AuthProfile, AuthStore, AuthStrategy, BackendBundle, BackendDeploymentMetadata, BackendDiff, BackendFeatures, BaseKVOptions, BucketBulkOptions, BucketDeleteOptions, BucketGetOptions, BucketListOptions, BucketPutOptions, BuildDiff, BulkCollectionResult, BundleOptions, CallbackServerResult, CollectedFile, ComponentConfig, ComponentResourceConfig, ConfigDiff, CreateApiKeyResponse, CustomRoutesIntegrationOptions, DatabaseIntegrationOptions, DeployConfig, DeployNewGameOptions, DeployedGameInfo, DeploymentChanges, DeploymentContext, DeploymentDiffOptions, DeploymentPlan, DeploymentResult, DevServerOptions, EmbeddedSourcePaths, EngineConfig, EngineType, EnvironmentAuthProfiles, GameStore, IntegrationChangeDetector, IntegrationChangeDetectors, IntegrationConfigChange, IntegrationsConfig, IntegrationsDiff, KVClearOptions, KVDeleteOptions, KVGetOptions, KVInspectOptions, KVListOptions, KVSeedOptions, KVSetOptions, KVStatsOptions, KeyMetadata, KeyStats, LoadConfigResult, LogEntry, LogStreamConfig, LogStreamUrlOptions, LoginCredentials, LoginResponse, OrganizationConfig, PlaycademyConfig, PluginLogger, PreviewOptions, PreviewResponse, ProjectDirectoryInfo, ResourceConfig, ScaffoldResult, SecretCommandOptions, SecretDeleteOptions, SecretListOptions, SecretSetOptions, SignInResponse, SsoCallbackData, Template, TemplateFramework, TemplateHook, TemplateHookOptions, TemplateSource, TimebackBaseConfig, TimebackCourseConfig, TimebackCourseConfigWithOverrides, TimebackGrade, TimebackIntegrationConfig, TimebackSourcedIds, TimebackSubject, TokenType, UpdateExistingGameOptions };