@objectstack/spec 0.9.1 → 0.9.2

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.
Files changed (117) hide show
  1. package/README.md +14 -0
  2. package/dist/ai/cost.zod.d.ts +1 -1
  3. package/dist/ai/devops-agent.zod.d.ts +6 -6
  4. package/dist/ai/index.d.ts +4 -0
  5. package/dist/ai/index.d.ts.map +1 -1
  6. package/dist/ai/index.js +4 -0
  7. package/dist/ai/plugin-development.zod.d.ts +415 -0
  8. package/dist/ai/plugin-development.zod.d.ts.map +1 -0
  9. package/dist/ai/plugin-development.zod.js +576 -0
  10. package/dist/ai/runtime-ops.zod.d.ts +480 -0
  11. package/dist/ai/runtime-ops.zod.d.ts.map +1 -0
  12. package/dist/ai/runtime-ops.zod.js +578 -0
  13. package/dist/api/discovery.zod.d.ts +1 -1
  14. package/dist/api/endpoint.zod.d.ts +2 -2
  15. package/dist/api/hub.zod.d.ts +74 -74
  16. package/dist/api/realtime.zod.d.ts +2 -2
  17. package/dist/api/websocket.zod.d.ts +6 -6
  18. package/dist/automation/trigger-registry.zod.d.ts +6 -6
  19. package/dist/contracts/service-registry.d.ts +1 -1
  20. package/dist/hub/hub-federation.zod.d.ts +4 -4
  21. package/dist/hub/index.d.ts +1 -0
  22. package/dist/hub/index.d.ts.map +1 -1
  23. package/dist/hub/index.js +1 -0
  24. package/dist/hub/license.zod.d.ts +1 -1
  25. package/dist/hub/marketplace-enhanced.zod.d.ts +1028 -0
  26. package/dist/hub/marketplace-enhanced.zod.d.ts.map +1 -0
  27. package/dist/hub/marketplace-enhanced.zod.js +728 -0
  28. package/dist/hub/plugin-registry.zod.d.ts +3 -3
  29. package/dist/hub/plugin-security.zod.d.ts +4 -4
  30. package/dist/hub/space.zod.d.ts +2 -2
  31. package/dist/integration/connector/database.zod.d.ts +1 -1
  32. package/dist/integration/connector/file-storage.zod.d.ts +1 -1
  33. package/dist/integration/connector/github.zod.d.ts +1 -1
  34. package/dist/integration/connector/message-queue.zod.d.ts +1 -1
  35. package/dist/integration/connector/saas.zod.d.ts +3 -3
  36. package/dist/integration/connector/vercel.zod.d.ts +4 -4
  37. package/dist/integration/connector.zod.d.ts +2 -2
  38. package/dist/stack.zod.d.ts +5 -5
  39. package/dist/system/index.d.ts +3 -0
  40. package/dist/system/index.d.ts.map +1 -1
  41. package/dist/system/index.js +3 -0
  42. package/dist/system/logging.zod.d.ts +5 -0
  43. package/dist/system/logging.zod.d.ts.map +1 -1
  44. package/dist/system/logging.zod.js +2 -1
  45. package/dist/system/notification.zod.d.ts +1 -1
  46. package/dist/system/plugin-lifecycle-advanced.zod.d.ts +357 -0
  47. package/dist/system/plugin-lifecycle-advanced.zod.d.ts.map +1 -0
  48. package/dist/system/plugin-lifecycle-advanced.zod.js +411 -0
  49. package/dist/system/plugin-security-advanced.zod.d.ts +904 -0
  50. package/dist/system/plugin-security-advanced.zod.d.ts.map +1 -0
  51. package/dist/system/plugin-security-advanced.zod.js +606 -0
  52. package/dist/system/plugin-versioning.zod.d.ts +438 -0
  53. package/dist/system/plugin-versioning.zod.d.ts.map +1 -0
  54. package/dist/system/plugin-versioning.zod.js +397 -0
  55. package/json-schema/ai/AICodeReviewResult.json +7 -0
  56. package/json-schema/ai/AIOpsAgentConfig.json +7 -0
  57. package/json-schema/ai/AnomalyDetectionConfig.json +7 -0
  58. package/json-schema/ai/AutoScalingPolicy.json +7 -0
  59. package/json-schema/ai/CodeGenerationRequest.json +7 -0
  60. package/json-schema/ai/GeneratedCode.json +7 -0
  61. package/json-schema/ai/PerformanceOptimization.json +7 -0
  62. package/json-schema/ai/PluginCompositionRequest.json +7 -0
  63. package/json-schema/ai/PluginCompositionResult.json +7 -0
  64. package/json-schema/ai/PluginRecommendation.json +7 -0
  65. package/json-schema/ai/PluginRecommendationRequest.json +7 -0
  66. package/json-schema/ai/PluginScaffoldingTemplate.json +7 -0
  67. package/json-schema/ai/RootCauseAnalysisRequest.json +7 -0
  68. package/json-schema/ai/RootCauseAnalysisResult.json +7 -0
  69. package/json-schema/ai/SelfHealingAction.json +7 -0
  70. package/json-schema/ai/SelfHealingConfig.json +7 -0
  71. package/json-schema/hub/MarketplaceQualityMetrics.json +7 -0
  72. package/json-schema/hub/PluginCategory.json +7 -0
  73. package/json-schema/hub/PluginCertification.json +7 -0
  74. package/json-schema/hub/PluginInstallationRequest.json +7 -0
  75. package/json-schema/hub/PluginInstallationStatus.json +7 -0
  76. package/json-schema/hub/PluginLicense.json +7 -0
  77. package/json-schema/hub/PluginMarketplaceListing.json +7 -0
  78. package/json-schema/hub/PluginRating.json +7 -0
  79. package/json-schema/hub/PluginRevenueSharing.json +7 -0
  80. package/json-schema/hub/PluginSearchQuery.json +7 -0
  81. package/json-schema/hub/PluginTag.json +7 -0
  82. package/json-schema/hub/RegistryConfig.json +7 -0
  83. package/json-schema/hub/RegistrySyncPolicy.json +7 -0
  84. package/json-schema/hub/RegistryUpstream.json +7 -0
  85. package/json-schema/system/AdvancedPluginLifecycleConfig.json +7 -0
  86. package/json-schema/system/BreakingChange.json +7 -0
  87. package/json-schema/system/CompatibilityLevel.json +7 -0
  88. package/json-schema/system/CompatibilityMatrixEntry.json +7 -0
  89. package/json-schema/system/DependencyConflict.json +7 -0
  90. package/json-schema/system/DependencyResolutionResult.json +7 -0
  91. package/json-schema/system/DeprecationNotice.json +7 -0
  92. package/json-schema/system/DistributedStateConfig.json +7 -0
  93. package/json-schema/system/GracefulDegradation.json +7 -0
  94. package/json-schema/system/HotReloadConfig.json +7 -0
  95. package/json-schema/system/MultiVersionSupport.json +7 -0
  96. package/json-schema/system/Permission.json +7 -0
  97. package/json-schema/system/PermissionAction.json +7 -0
  98. package/json-schema/system/PermissionScope.json +7 -0
  99. package/json-schema/system/PermissionSet.json +7 -0
  100. package/json-schema/system/PluginCompatibilityMatrix.json +7 -0
  101. package/json-schema/system/PluginHealthCheck.json +7 -0
  102. package/json-schema/system/PluginHealthReport.json +7 -0
  103. package/json-schema/system/PluginHealthStatus.json +7 -0
  104. package/json-schema/system/PluginSecurityManifest.json +7 -0
  105. package/json-schema/system/PluginStateSnapshot.json +7 -0
  106. package/json-schema/system/PluginTrustLevel.json +7 -0
  107. package/json-schema/system/PluginUpdateStrategy.json +7 -0
  108. package/json-schema/system/PluginVersionMetadata.json +7 -0
  109. package/json-schema/system/ResourceType.json +7 -0
  110. package/json-schema/system/RuntimeConfig.json +7 -0
  111. package/json-schema/system/SandboxConfig.json +7 -0
  112. package/json-schema/system/SecurityPolicy.json +7 -0
  113. package/json-schema/system/SecurityScanResult.json +7 -0
  114. package/json-schema/system/SecurityVulnerability.json +7 -0
  115. package/json-schema/system/SemanticVersion.json +7 -0
  116. package/json-schema/system/VersionConstraint.json +7 -0
  117. package/package.json +1 -1
@@ -115,8 +115,8 @@ export declare const CreateSpaceRequestSchema: z.ZodObject<{
115
115
  }, z.core.$strip>>>;
116
116
  deployment: z.ZodOptional<z.ZodOptional<z.ZodObject<{
117
117
  provider: z.ZodEnum<{
118
- vercel: "vercel";
119
118
  docker: "docker";
119
+ vercel: "vercel";
120
120
  kubernetes: "kubernetes";
121
121
  }>;
122
122
  region: z.ZodOptional<z.ZodString>;
@@ -199,8 +199,8 @@ export declare const UpdateSpaceRequestSchema: z.ZodObject<{
199
199
  }, z.core.$strip>>>>;
200
200
  deployment: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
201
201
  provider: z.ZodEnum<{
202
- vercel: "vercel";
203
202
  docker: "docker";
203
+ vercel: "vercel";
204
204
  kubernetes: "kubernetes";
205
205
  }>;
206
206
  region: z.ZodOptional<z.ZodString>;
@@ -305,8 +305,8 @@ export declare const SpaceResponseSchema: z.ZodObject<{
305
305
  }, z.core.$strip>>;
306
306
  deployment: z.ZodOptional<z.ZodObject<{
307
307
  provider: z.ZodEnum<{
308
- vercel: "vercel";
309
308
  docker: "docker";
309
+ vercel: "vercel";
310
310
  kubernetes: "kubernetes";
311
311
  }>;
312
312
  region: z.ZodOptional<z.ZodString>;
@@ -427,8 +427,8 @@ export declare const ListSpacesResponseSchema: z.ZodObject<{
427
427
  }, z.core.$strip>>;
428
428
  deployment: z.ZodOptional<z.ZodObject<{
429
429
  provider: z.ZodEnum<{
430
- vercel: "vercel";
431
430
  docker: "docker";
431
+ vercel: "vercel";
432
432
  kubernetes: "kubernetes";
433
433
  }>;
434
434
  region: z.ZodOptional<z.ZodString>;
@@ -707,6 +707,17 @@ export declare const PublishPluginRequestSchema: z.ZodObject<{
707
707
  bugs: z.ZodOptional<z.ZodString>;
708
708
  changelog: z.ZodOptional<z.ZodString>;
709
709
  }, z.core.$strip>>;
710
+ compatibility: z.ZodOptional<z.ZodObject<{
711
+ minObjectStackVersion: z.ZodOptional<z.ZodString>;
712
+ maxObjectStackVersion: z.ZodOptional<z.ZodString>;
713
+ nodeVersion: z.ZodOptional<z.ZodString>;
714
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<{
715
+ linux: "linux";
716
+ darwin: "darwin";
717
+ win32: "win32";
718
+ browser: "browser";
719
+ }>>>;
720
+ }, z.core.$strip>>;
710
721
  media: z.ZodOptional<z.ZodObject<{
711
722
  icon: z.ZodOptional<z.ZodString>;
712
723
  logo: z.ZodOptional<z.ZodString>;
@@ -737,22 +748,11 @@ export declare const PublishPluginRequestSchema: z.ZodObject<{
737
748
  verified: z.ZodDefault<z.ZodBoolean>;
738
749
  trustLevel: z.ZodDefault<z.ZodEnum<{
739
750
  verified: "verified";
740
- official: "official";
741
751
  community: "community";
752
+ official: "official";
742
753
  unverified: "unverified";
743
754
  }>>;
744
755
  }, z.core.$strip>;
745
- compatibility: z.ZodOptional<z.ZodObject<{
746
- minObjectStackVersion: z.ZodOptional<z.ZodString>;
747
- maxObjectStackVersion: z.ZodOptional<z.ZodString>;
748
- nodeVersion: z.ZodOptional<z.ZodString>;
749
- platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<{
750
- linux: "linux";
751
- darwin: "darwin";
752
- win32: "win32";
753
- browser: "browser";
754
- }>>>;
755
- }, z.core.$strip>>;
756
756
  deprecationMessage: z.ZodOptional<z.ZodString>;
757
757
  replacedBy: z.ZodOptional<z.ZodString>;
758
758
  flags: z.ZodOptional<z.ZodObject<{
@@ -894,6 +894,17 @@ export declare const UpdatePluginRequestSchema: z.ZodObject<{
894
894
  bugs: z.ZodOptional<z.ZodString>;
895
895
  changelog: z.ZodOptional<z.ZodString>;
896
896
  }, z.core.$strip>>>;
897
+ compatibility: z.ZodOptional<z.ZodOptional<z.ZodObject<{
898
+ minObjectStackVersion: z.ZodOptional<z.ZodString>;
899
+ maxObjectStackVersion: z.ZodOptional<z.ZodString>;
900
+ nodeVersion: z.ZodOptional<z.ZodString>;
901
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<{
902
+ linux: "linux";
903
+ darwin: "darwin";
904
+ win32: "win32";
905
+ browser: "browser";
906
+ }>>>;
907
+ }, z.core.$strip>>>;
897
908
  media: z.ZodOptional<z.ZodOptional<z.ZodObject<{
898
909
  icon: z.ZodOptional<z.ZodString>;
899
910
  logo: z.ZodOptional<z.ZodString>;
@@ -924,22 +935,11 @@ export declare const UpdatePluginRequestSchema: z.ZodObject<{
924
935
  verified: z.ZodDefault<z.ZodBoolean>;
925
936
  trustLevel: z.ZodDefault<z.ZodEnum<{
926
937
  verified: "verified";
927
- official: "official";
928
938
  community: "community";
939
+ official: "official";
929
940
  unverified: "unverified";
930
941
  }>>;
931
942
  }, z.core.$strip>>;
932
- compatibility: z.ZodOptional<z.ZodOptional<z.ZodObject<{
933
- minObjectStackVersion: z.ZodOptional<z.ZodString>;
934
- maxObjectStackVersion: z.ZodOptional<z.ZodString>;
935
- nodeVersion: z.ZodOptional<z.ZodString>;
936
- platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<{
937
- linux: "linux";
938
- darwin: "darwin";
939
- win32: "win32";
940
- browser: "browser";
941
- }>>>;
942
- }, z.core.$strip>>>;
943
943
  deprecationMessage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
944
944
  replacedBy: z.ZodOptional<z.ZodOptional<z.ZodString>>;
945
945
  flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
@@ -980,8 +980,8 @@ export declare const PluginResponseSchema: z.ZodObject<{
980
980
  verified: z.ZodDefault<z.ZodBoolean>;
981
981
  trustLevel: z.ZodDefault<z.ZodEnum<{
982
982
  verified: "verified";
983
- official: "official";
984
983
  community: "community";
984
+ official: "official";
985
985
  unverified: "unverified";
986
986
  }>>;
987
987
  }, z.core.$strip>;
@@ -1200,8 +1200,8 @@ export declare const SearchPluginsRequestSchema: z.ZodObject<{
1200
1200
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1201
1201
  trustLevel: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1202
1202
  verified: "verified";
1203
- official: "official";
1204
1203
  community: "community";
1204
+ official: "official";
1205
1205
  unverified: "unverified";
1206
1206
  }>>>;
1207
1207
  implementsProtocols: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -1295,8 +1295,8 @@ export declare const SearchPluginsResponseSchema: z.ZodObject<{
1295
1295
  verified: z.ZodDefault<z.ZodBoolean>;
1296
1296
  trustLevel: z.ZodDefault<z.ZodEnum<{
1297
1297
  verified: "verified";
1298
- official: "official";
1299
1298
  community: "community";
1299
+ official: "official";
1300
1300
  unverified: "unverified";
1301
1301
  }>>;
1302
1302
  }, z.core.$strip>;
@@ -1697,8 +1697,8 @@ export declare const LicenseResponseSchema: z.ZodObject<{
1697
1697
  status: z.ZodEnum<{
1698
1698
  active: "active";
1699
1699
  expired: "expired";
1700
- suspended: "suspended";
1701
1700
  trial: "trial";
1701
+ suspended: "suspended";
1702
1702
  }>;
1703
1703
  customFeatures: z.ZodOptional<z.ZodArray<z.ZodString>>;
1704
1704
  customLimits: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
@@ -1748,8 +1748,8 @@ export declare const ValidateLicenseResponseSchema: z.ZodObject<{
1748
1748
  status: z.ZodEnum<{
1749
1749
  active: "active";
1750
1750
  expired: "expired";
1751
- suspended: "suspended";
1752
1751
  trial: "trial";
1752
+ suspended: "suspended";
1753
1753
  }>;
1754
1754
  customFeatures: z.ZodOptional<z.ZodArray<z.ZodString>>;
1755
1755
  customLimits: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
@@ -1782,8 +1782,8 @@ export declare const ListLicensesRequestSchema: z.ZodObject<{
1782
1782
  status: z.ZodOptional<z.ZodEnum<{
1783
1783
  active: "active";
1784
1784
  expired: "expired";
1785
- suspended: "suspended";
1786
1785
  trial: "trial";
1786
+ suspended: "suspended";
1787
1787
  }>>;
1788
1788
  }, z.core.$strip>;
1789
1789
  /**
@@ -1798,8 +1798,8 @@ export declare const ListLicensesResponseSchema: z.ZodObject<{
1798
1798
  status: z.ZodEnum<{
1799
1799
  active: "active";
1800
1800
  expired: "expired";
1801
- suspended: "suspended";
1802
1801
  trial: "trial";
1802
+ suspended: "suspended";
1803
1803
  }>;
1804
1804
  customFeatures: z.ZodOptional<z.ZodArray<z.ZodString>>;
1805
1805
  customLimits: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
@@ -2558,8 +2558,8 @@ export declare const HubAPIContract: {
2558
2558
  }, z.core.$strip>>>;
2559
2559
  deployment: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2560
2560
  provider: z.ZodEnum<{
2561
- vercel: "vercel";
2562
2561
  docker: "docker";
2562
+ vercel: "vercel";
2563
2563
  kubernetes: "kubernetes";
2564
2564
  }>;
2565
2565
  region: z.ZodOptional<z.ZodString>;
@@ -2636,8 +2636,8 @@ export declare const HubAPIContract: {
2636
2636
  }, z.core.$strip>>;
2637
2637
  deployment: z.ZodOptional<z.ZodObject<{
2638
2638
  provider: z.ZodEnum<{
2639
- vercel: "vercel";
2640
2639
  docker: "docker";
2640
+ vercel: "vercel";
2641
2641
  kubernetes: "kubernetes";
2642
2642
  }>;
2643
2643
  region: z.ZodOptional<z.ZodString>;
@@ -2707,8 +2707,8 @@ export declare const HubAPIContract: {
2707
2707
  }, z.core.$strip>>>>;
2708
2708
  deployment: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
2709
2709
  provider: z.ZodEnum<{
2710
- vercel: "vercel";
2711
2710
  docker: "docker";
2711
+ vercel: "vercel";
2712
2712
  kubernetes: "kubernetes";
2713
2713
  }>;
2714
2714
  region: z.ZodOptional<z.ZodString>;
@@ -2785,8 +2785,8 @@ export declare const HubAPIContract: {
2785
2785
  }, z.core.$strip>>;
2786
2786
  deployment: z.ZodOptional<z.ZodObject<{
2787
2787
  provider: z.ZodEnum<{
2788
- vercel: "vercel";
2789
2788
  docker: "docker";
2789
+ vercel: "vercel";
2790
2790
  kubernetes: "kubernetes";
2791
2791
  }>;
2792
2792
  region: z.ZodOptional<z.ZodString>;
@@ -2867,8 +2867,8 @@ export declare const HubAPIContract: {
2867
2867
  }, z.core.$strip>>;
2868
2868
  deployment: z.ZodOptional<z.ZodObject<{
2869
2869
  provider: z.ZodEnum<{
2870
- vercel: "vercel";
2871
2870
  docker: "docker";
2871
+ vercel: "vercel";
2872
2872
  kubernetes: "kubernetes";
2873
2873
  }>;
2874
2874
  region: z.ZodOptional<z.ZodString>;
@@ -2961,8 +2961,8 @@ export declare const HubAPIContract: {
2961
2961
  }, z.core.$strip>>;
2962
2962
  deployment: z.ZodOptional<z.ZodObject<{
2963
2963
  provider: z.ZodEnum<{
2964
- vercel: "vercel";
2965
2964
  docker: "docker";
2965
+ vercel: "vercel";
2966
2966
  kubernetes: "kubernetes";
2967
2967
  }>;
2968
2968
  region: z.ZodOptional<z.ZodString>;
@@ -3247,6 +3247,17 @@ export declare const HubAPIContract: {
3247
3247
  bugs: z.ZodOptional<z.ZodString>;
3248
3248
  changelog: z.ZodOptional<z.ZodString>;
3249
3249
  }, z.core.$strip>>;
3250
+ compatibility: z.ZodOptional<z.ZodObject<{
3251
+ minObjectStackVersion: z.ZodOptional<z.ZodString>;
3252
+ maxObjectStackVersion: z.ZodOptional<z.ZodString>;
3253
+ nodeVersion: z.ZodOptional<z.ZodString>;
3254
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3255
+ linux: "linux";
3256
+ darwin: "darwin";
3257
+ win32: "win32";
3258
+ browser: "browser";
3259
+ }>>>;
3260
+ }, z.core.$strip>>;
3250
3261
  media: z.ZodOptional<z.ZodObject<{
3251
3262
  icon: z.ZodOptional<z.ZodString>;
3252
3263
  logo: z.ZodOptional<z.ZodString>;
@@ -3277,22 +3288,11 @@ export declare const HubAPIContract: {
3277
3288
  verified: z.ZodDefault<z.ZodBoolean>;
3278
3289
  trustLevel: z.ZodDefault<z.ZodEnum<{
3279
3290
  verified: "verified";
3280
- official: "official";
3281
3291
  community: "community";
3292
+ official: "official";
3282
3293
  unverified: "unverified";
3283
3294
  }>>;
3284
3295
  }, z.core.$strip>;
3285
- compatibility: z.ZodOptional<z.ZodObject<{
3286
- minObjectStackVersion: z.ZodOptional<z.ZodString>;
3287
- maxObjectStackVersion: z.ZodOptional<z.ZodString>;
3288
- nodeVersion: z.ZodOptional<z.ZodString>;
3289
- platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3290
- linux: "linux";
3291
- darwin: "darwin";
3292
- win32: "win32";
3293
- browser: "browser";
3294
- }>>>;
3295
- }, z.core.$strip>>;
3296
3296
  deprecationMessage: z.ZodOptional<z.ZodString>;
3297
3297
  replacedBy: z.ZodOptional<z.ZodString>;
3298
3298
  flags: z.ZodOptional<z.ZodObject<{
@@ -3330,8 +3330,8 @@ export declare const HubAPIContract: {
3330
3330
  verified: z.ZodDefault<z.ZodBoolean>;
3331
3331
  trustLevel: z.ZodDefault<z.ZodEnum<{
3332
3332
  verified: "verified";
3333
- official: "official";
3334
3333
  community: "community";
3334
+ official: "official";
3335
3335
  unverified: "unverified";
3336
3336
  }>>;
3337
3337
  }, z.core.$strip>;
@@ -3659,6 +3659,17 @@ export declare const HubAPIContract: {
3659
3659
  bugs: z.ZodOptional<z.ZodString>;
3660
3660
  changelog: z.ZodOptional<z.ZodString>;
3661
3661
  }, z.core.$strip>>>;
3662
+ compatibility: z.ZodOptional<z.ZodOptional<z.ZodObject<{
3663
+ minObjectStackVersion: z.ZodOptional<z.ZodString>;
3664
+ maxObjectStackVersion: z.ZodOptional<z.ZodString>;
3665
+ nodeVersion: z.ZodOptional<z.ZodString>;
3666
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3667
+ linux: "linux";
3668
+ darwin: "darwin";
3669
+ win32: "win32";
3670
+ browser: "browser";
3671
+ }>>>;
3672
+ }, z.core.$strip>>>;
3662
3673
  media: z.ZodOptional<z.ZodOptional<z.ZodObject<{
3663
3674
  icon: z.ZodOptional<z.ZodString>;
3664
3675
  logo: z.ZodOptional<z.ZodString>;
@@ -3689,22 +3700,11 @@ export declare const HubAPIContract: {
3689
3700
  verified: z.ZodDefault<z.ZodBoolean>;
3690
3701
  trustLevel: z.ZodDefault<z.ZodEnum<{
3691
3702
  verified: "verified";
3692
- official: "official";
3693
3703
  community: "community";
3704
+ official: "official";
3694
3705
  unverified: "unverified";
3695
3706
  }>>;
3696
3707
  }, z.core.$strip>>;
3697
- compatibility: z.ZodOptional<z.ZodOptional<z.ZodObject<{
3698
- minObjectStackVersion: z.ZodOptional<z.ZodString>;
3699
- maxObjectStackVersion: z.ZodOptional<z.ZodString>;
3700
- nodeVersion: z.ZodOptional<z.ZodString>;
3701
- platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3702
- linux: "linux";
3703
- darwin: "darwin";
3704
- win32: "win32";
3705
- browser: "browser";
3706
- }>>>;
3707
- }, z.core.$strip>>>;
3708
3708
  deprecationMessage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3709
3709
  replacedBy: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3710
3710
  flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
@@ -3742,8 +3742,8 @@ export declare const HubAPIContract: {
3742
3742
  verified: z.ZodDefault<z.ZodBoolean>;
3743
3743
  trustLevel: z.ZodDefault<z.ZodEnum<{
3744
3744
  verified: "verified";
3745
- official: "official";
3746
3745
  community: "community";
3746
+ official: "official";
3747
3747
  unverified: "unverified";
3748
3748
  }>>;
3749
3749
  }, z.core.$strip>;
@@ -3970,8 +3970,8 @@ export declare const HubAPIContract: {
3970
3970
  verified: z.ZodDefault<z.ZodBoolean>;
3971
3971
  trustLevel: z.ZodDefault<z.ZodEnum<{
3972
3972
  verified: "verified";
3973
- official: "official";
3974
3973
  community: "community";
3974
+ official: "official";
3975
3975
  unverified: "unverified";
3976
3976
  }>>;
3977
3977
  }, z.core.$strip>;
@@ -4176,8 +4176,8 @@ export declare const HubAPIContract: {
4176
4176
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
4177
4177
  trustLevel: z.ZodOptional<z.ZodArray<z.ZodEnum<{
4178
4178
  verified: "verified";
4179
- official: "official";
4180
4179
  community: "community";
4180
+ official: "official";
4181
4181
  unverified: "unverified";
4182
4182
  }>>>;
4183
4183
  implementsProtocols: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -4231,8 +4231,8 @@ export declare const HubAPIContract: {
4231
4231
  verified: z.ZodDefault<z.ZodBoolean>;
4232
4232
  trustLevel: z.ZodDefault<z.ZodEnum<{
4233
4233
  verified: "verified";
4234
- official: "official";
4235
4234
  community: "community";
4235
+ official: "official";
4236
4236
  unverified: "unverified";
4237
4237
  }>>;
4238
4238
  }, z.core.$strip>;
@@ -4601,8 +4601,8 @@ export declare const HubAPIContract: {
4601
4601
  status: z.ZodEnum<{
4602
4602
  active: "active";
4603
4603
  expired: "expired";
4604
- suspended: "suspended";
4605
4604
  trial: "trial";
4605
+ suspended: "suspended";
4606
4606
  }>;
4607
4607
  customFeatures: z.ZodOptional<z.ZodArray<z.ZodString>>;
4608
4608
  customLimits: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
@@ -4625,8 +4625,8 @@ export declare const HubAPIContract: {
4625
4625
  status: z.ZodEnum<{
4626
4626
  active: "active";
4627
4627
  expired: "expired";
4628
- suspended: "suspended";
4629
4628
  trial: "trial";
4629
+ suspended: "suspended";
4630
4630
  }>;
4631
4631
  customFeatures: z.ZodOptional<z.ZodArray<z.ZodString>>;
4632
4632
  customLimits: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
@@ -4660,8 +4660,8 @@ export declare const HubAPIContract: {
4660
4660
  status: z.ZodOptional<z.ZodEnum<{
4661
4661
  active: "active";
4662
4662
  expired: "expired";
4663
- suspended: "suspended";
4664
4663
  trial: "trial";
4664
+ suspended: "suspended";
4665
4665
  }>>;
4666
4666
  }, z.core.$strip>;
4667
4667
  readonly response: z.ZodObject<{
@@ -4673,8 +4673,8 @@ export declare const HubAPIContract: {
4673
4673
  status: z.ZodEnum<{
4674
4674
  active: "active";
4675
4675
  expired: "expired";
4676
- suspended: "suspended";
4677
4676
  trial: "trial";
4677
+ suspended: "suspended";
4678
4678
  }>;
4679
4679
  customFeatures: z.ZodOptional<z.ZodArray<z.ZodString>>;
4680
4680
  customLimits: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
@@ -63,9 +63,9 @@ export type Subscription = z.infer<typeof SubscriptionSchema>;
63
63
  * User online/offline status
64
64
  */
65
65
  export declare const PresenceStatus: z.ZodEnum<{
66
+ offline: "offline";
66
67
  online: "online";
67
68
  away: "away";
68
- offline: "offline";
69
69
  }>;
70
70
  export type PresenceStatus = z.infer<typeof PresenceStatus>;
71
71
  /**
@@ -75,9 +75,9 @@ export type PresenceStatus = z.infer<typeof PresenceStatus>;
75
75
  export declare const PresenceSchema: z.ZodObject<{
76
76
  userId: z.ZodString;
77
77
  status: z.ZodEnum<{
78
+ offline: "offline";
78
79
  online: "online";
79
80
  away: "away";
80
- offline: "offline";
81
81
  }>;
82
82
  lastSeen: z.ZodString;
83
83
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -120,9 +120,9 @@ export type UnsubscribeRequest = z.infer<typeof UnsubscribeRequestSchema>;
120
120
  * User availability status for presence tracking
121
121
  */
122
122
  export declare const WebSocketPresenceStatus: z.ZodEnum<{
123
+ offline: "offline";
123
124
  online: "online";
124
125
  away: "away";
125
- offline: "offline";
126
126
  busy: "busy";
127
127
  }>;
128
128
  export type WebSocketPresenceStatus = z.infer<typeof WebSocketPresenceStatus>;
@@ -134,9 +134,9 @@ export declare const PresenceStateSchema: z.ZodObject<{
134
134
  userId: z.ZodString;
135
135
  sessionId: z.ZodString;
136
136
  status: z.ZodEnum<{
137
+ offline: "offline";
137
138
  online: "online";
138
139
  away: "away";
139
- offline: "offline";
140
140
  busy: "busy";
141
141
  }>;
142
142
  lastSeen: z.ZodString;
@@ -157,9 +157,9 @@ export type PresenceState = z.infer<typeof PresenceStateSchema>;
157
157
  */
158
158
  export declare const PresenceUpdateSchema: z.ZodObject<{
159
159
  status: z.ZodOptional<z.ZodEnum<{
160
+ offline: "offline";
160
161
  online: "online";
161
162
  away: "away";
162
- offline: "offline";
163
163
  busy: "busy";
164
164
  }>>;
165
165
  currentLocation: z.ZodOptional<z.ZodString>;
@@ -313,9 +313,9 @@ export declare const PresenceMessageSchema: z.ZodObject<{
313
313
  userId: z.ZodString;
314
314
  sessionId: z.ZodString;
315
315
  status: z.ZodEnum<{
316
+ offline: "offline";
316
317
  online: "online";
317
318
  away: "away";
318
- offline: "offline";
319
319
  busy: "busy";
320
320
  }>;
321
321
  lastSeen: z.ZodString;
@@ -492,9 +492,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
492
492
  userId: z.ZodString;
493
493
  sessionId: z.ZodString;
494
494
  status: z.ZodEnum<{
495
+ offline: "offline";
495
496
  online: "online";
496
497
  away: "away";
497
- offline: "offline";
498
498
  busy: "busy";
499
499
  }>;
500
500
  lastSeen: z.ZodString;
@@ -665,9 +665,9 @@ export declare const SimplePresenceStateSchema: z.ZodObject<{
665
665
  userId: z.ZodString;
666
666
  userName: z.ZodString;
667
667
  status: z.ZodEnum<{
668
+ offline: "offline";
668
669
  online: "online";
669
670
  away: "away";
670
- offline: "offline";
671
671
  }>;
672
672
  lastSeen: z.ZodNumber;
673
673
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -64,17 +64,17 @@ import { z } from 'zod';
64
64
  export declare const ConnectorCategorySchema: z.ZodEnum<{
65
65
  database: "database";
66
66
  storage: "storage";
67
+ support: "support";
67
68
  other: "other";
68
69
  analytics: "analytics";
70
+ communication: "communication";
69
71
  crm: "crm";
72
+ productivity: "productivity";
70
73
  payment: "payment";
71
- communication: "communication";
72
74
  marketing: "marketing";
73
75
  accounting: "accounting";
74
76
  hr: "hr";
75
- productivity: "productivity";
76
77
  ecommerce: "ecommerce";
77
- support: "support";
78
78
  devtools: "devtools";
79
79
  social: "social";
80
80
  }>;
@@ -280,17 +280,17 @@ export declare const ConnectorSchema: z.ZodObject<{
280
280
  category: z.ZodEnum<{
281
281
  database: "database";
282
282
  storage: "storage";
283
+ support: "support";
283
284
  other: "other";
284
285
  analytics: "analytics";
286
+ communication: "communication";
285
287
  crm: "crm";
288
+ productivity: "productivity";
286
289
  payment: "payment";
287
- communication: "communication";
288
290
  marketing: "marketing";
289
291
  accounting: "accounting";
290
292
  hr: "hr";
291
- productivity: "productivity";
292
293
  ecommerce: "ecommerce";
293
- support: "support";
294
294
  devtools: "devtools";
295
295
  social: "social";
296
296
  }>;
@@ -62,7 +62,7 @@ export interface IBasicServiceRegistry extends IServiceRegistry {
62
62
  }
63
63
  /**
64
64
  * AdvancedServiceRegistry - Enhanced implementation with additional features
65
- * Used by EnhancedObjectKernel for advanced service management
65
+ * Used by ObjectKernel for advanced service management
66
66
  */
67
67
  export interface IAdvancedServiceRegistry extends IServiceRegistry {
68
68
  /**
@@ -77,8 +77,8 @@ export declare const RegionSchema: z.ZodObject<{
77
77
  status: z.ZodDefault<z.ZodEnum<{
78
78
  deprecated: "deprecated";
79
79
  active: "active";
80
- "read-only": "read-only";
81
80
  maintenance: "maintenance";
81
+ "read-only": "read-only";
82
82
  }>>;
83
83
  limits: z.ZodOptional<z.ZodObject<{
84
84
  maxSpaces: z.ZodOptional<z.ZodNumber>;
@@ -192,8 +192,8 @@ export declare const FederationTopologySchema: z.ZodObject<{
192
192
  status: z.ZodDefault<z.ZodEnum<{
193
193
  deprecated: "deprecated";
194
194
  active: "active";
195
- "read-only": "read-only";
196
195
  maintenance: "maintenance";
196
+ "read-only": "read-only";
197
197
  }>>;
198
198
  limits: z.ZodOptional<z.ZodObject<{
199
199
  maxSpaces: z.ZodOptional<z.ZodNumber>;
@@ -463,8 +463,8 @@ export declare const HubFederationProtocol: {
463
463
  status: z.ZodDefault<z.ZodEnum<{
464
464
  deprecated: "deprecated";
465
465
  active: "active";
466
- "read-only": "read-only";
467
466
  maintenance: "maintenance";
467
+ "read-only": "read-only";
468
468
  }>>;
469
469
  limits: z.ZodOptional<z.ZodObject<{
470
470
  maxSpaces: z.ZodOptional<z.ZodNumber>;
@@ -568,8 +568,8 @@ export declare const HubFederationProtocol: {
568
568
  status: z.ZodDefault<z.ZodEnum<{
569
569
  deprecated: "deprecated";
570
570
  active: "active";
571
- "read-only": "read-only";
572
571
  maintenance: "maintenance";
572
+ "read-only": "read-only";
573
573
  }>>;
574
574
  limits: z.ZodOptional<z.ZodObject<{
575
575
  maxSpaces: z.ZodOptional<z.ZodNumber>;
@@ -1,5 +1,6 @@
1
1
  export * from './composer.zod';
2
2
  export * from './marketplace.zod';
3
+ export * from './marketplace-enhanced.zod';
3
4
  export * from './plugin-registry.zod';
4
5
  export * from './space.zod';
5
6
  export * from './tenant.zod';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hub/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAG9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hub/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAG9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC"}
package/dist/hub/index.js CHANGED
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  // Export Hub Components
18
18
  __exportStar(require("./composer.zod"), exports);
19
19
  __exportStar(require("./marketplace.zod"), exports);
20
+ __exportStar(require("./marketplace-enhanced.zod"), exports);
20
21
  __exportStar(require("./plugin-registry.zod"), exports);
21
22
  __exportStar(require("./space.zod"), exports);
22
23
  __exportStar(require("./tenant.zod"), exports);
@@ -55,8 +55,8 @@ export declare const LicenseSchema: z.ZodObject<{
55
55
  status: z.ZodEnum<{
56
56
  active: "active";
57
57
  expired: "expired";
58
- suspended: "suspended";
59
58
  trial: "trial";
59
+ suspended: "suspended";
60
60
  }>;
61
61
  customFeatures: z.ZodOptional<z.ZodArray<z.ZodString>>;
62
62
  customLimits: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;