@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
@@ -17,8 +17,8 @@ export declare const PluginVendorSchema: z.ZodObject<{
17
17
  verified: z.ZodDefault<z.ZodBoolean>;
18
18
  trustLevel: z.ZodDefault<z.ZodEnum<{
19
19
  verified: "verified";
20
- official: "official";
21
20
  community: "community";
21
+ official: "official";
22
22
  unverified: "unverified";
23
23
  }>>;
24
24
  }, z.core.$strip>;
@@ -100,8 +100,8 @@ export declare const PluginRegistryEntrySchema: z.ZodObject<{
100
100
  verified: z.ZodDefault<z.ZodBoolean>;
101
101
  trustLevel: z.ZodDefault<z.ZodEnum<{
102
102
  verified: "verified";
103
- official: "official";
104
103
  community: "community";
104
+ official: "official";
105
105
  unverified: "unverified";
106
106
  }>>;
107
107
  }, z.core.$strip>;
@@ -307,8 +307,8 @@ export declare const PluginSearchFiltersSchema: z.ZodObject<{
307
307
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
308
308
  trustLevel: z.ZodOptional<z.ZodArray<z.ZodEnum<{
309
309
  verified: "verified";
310
- official: "official";
311
310
  community: "community";
311
+ official: "official";
312
312
  unverified: "unverified";
313
313
  }>>>;
314
314
  implementsProtocols: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -530,16 +530,16 @@ export declare const PluginTrustScoreSchema: z.ZodObject<{
530
530
  level: z.ZodEnum<{
531
531
  verified: "verified";
532
532
  trusted: "trusted";
533
- neutral: "neutral";
534
533
  untrusted: "untrusted";
535
534
  blocked: "blocked";
535
+ neutral: "neutral";
536
536
  }>;
537
537
  badges: z.ZodDefault<z.ZodArray<z.ZodEnum<{
538
+ "open-source": "open-source";
538
539
  official: "official";
539
540
  "verified-vendor": "verified-vendor";
540
541
  "security-scanned": "security-scanned";
541
542
  "code-signed": "code-signed";
542
- "open-source": "open-source";
543
543
  popular: "popular";
544
544
  }>>>;
545
545
  updatedAt: z.ZodString;
@@ -1011,16 +1011,16 @@ export declare const PluginSecurityProtocol: {
1011
1011
  level: z.ZodEnum<{
1012
1012
  verified: "verified";
1013
1013
  trusted: "trusted";
1014
- neutral: "neutral";
1015
1014
  untrusted: "untrusted";
1016
1015
  blocked: "blocked";
1016
+ neutral: "neutral";
1017
1017
  }>;
1018
1018
  badges: z.ZodDefault<z.ZodArray<z.ZodEnum<{
1019
+ "open-source": "open-source";
1019
1020
  official: "official";
1020
1021
  "verified-vendor": "verified-vendor";
1021
1022
  "security-scanned": "security-scanned";
1022
1023
  "code-signed": "code-signed";
1023
- "open-source": "open-source";
1024
1024
  popular: "popular";
1025
1025
  }>>>;
1026
1026
  updatedAt: z.ZodString;
@@ -50,8 +50,8 @@ export declare const SpaceSubscriptionSchema: z.ZodObject<{
50
50
  */
51
51
  export declare const DeploymentTargetSchema: z.ZodObject<{
52
52
  provider: z.ZodEnum<{
53
- vercel: "vercel";
54
53
  docker: "docker";
54
+ vercel: "vercel";
55
55
  kubernetes: "kubernetes";
56
56
  }>;
57
57
  region: z.ZodOptional<z.ZodString>;
@@ -130,8 +130,8 @@ export declare const HubSpaceSchema: z.ZodObject<{
130
130
  }, z.core.$strip>>;
131
131
  deployment: z.ZodOptional<z.ZodObject<{
132
132
  provider: z.ZodEnum<{
133
- vercel: "vercel";
134
133
  docker: "docker";
134
+ vercel: "vercel";
135
135
  kubernetes: "kubernetes";
136
136
  }>;
137
137
  region: z.ZodOptional<z.ZodString>;
@@ -361,8 +361,8 @@ export declare const DatabaseConnectorSchema: z.ZodObject<{
361
361
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
362
362
  error: "error";
363
363
  active: "active";
364
- inactive: "inactive";
365
364
  configuring: "configuring";
365
+ inactive: "inactive";
366
366
  }>>>;
367
367
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
368
368
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -349,8 +349,8 @@ export declare const FileStorageConnectorSchema: z.ZodObject<{
349
349
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
350
350
  error: "error";
351
351
  active: "active";
352
- inactive: "inactive";
353
352
  configuring: "configuring";
353
+ inactive: "inactive";
354
354
  }>>>;
355
355
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
356
356
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -380,8 +380,8 @@ export declare const GitHubConnectorSchema: z.ZodObject<{
380
380
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
381
381
  error: "error";
382
382
  active: "active";
383
- inactive: "inactive";
384
383
  configuring: "configuring";
384
+ inactive: "inactive";
385
385
  }>>>;
386
386
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
387
387
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -420,8 +420,8 @@ export declare const MessageQueueConnectorSchema: z.ZodObject<{
420
420
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
421
421
  error: "error";
422
422
  active: "active";
423
- inactive: "inactive";
424
423
  configuring: "configuring";
424
+ inactive: "inactive";
425
425
  }>>>;
426
426
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
427
427
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -12,9 +12,9 @@ import { z } from 'zod';
12
12
  export declare const SaasProviderSchema: z.ZodEnum<{
13
13
  custom: "custom";
14
14
  slack: "slack";
15
+ stripe: "stripe";
15
16
  salesforce: "salesforce";
16
17
  hubspot: "hubspot";
17
- stripe: "stripe";
18
18
  shopify: "shopify";
19
19
  zendesk: "zendesk";
20
20
  intercom: "intercom";
@@ -330,8 +330,8 @@ export declare const SaasConnectorSchema: z.ZodObject<{
330
330
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
331
331
  error: "error";
332
332
  active: "active";
333
- inactive: "inactive";
334
333
  configuring: "configuring";
334
+ inactive: "inactive";
335
335
  }>>>;
336
336
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
337
337
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -339,9 +339,9 @@ export declare const SaasConnectorSchema: z.ZodObject<{
339
339
  provider: z.ZodEnum<{
340
340
  custom: "custom";
341
341
  slack: "slack";
342
+ stripe: "stripe";
342
343
  salesforce: "salesforce";
343
344
  hubspot: "hubspot";
344
- stripe: "stripe";
345
345
  shopify: "shopify";
346
346
  zendesk: "zendesk";
347
347
  intercom: "intercom";
@@ -53,9 +53,9 @@ export type VercelProvider = z.infer<typeof VercelProviderSchema>;
53
53
  export declare const VercelFrameworkSchema: z.ZodEnum<{
54
54
  static: "static";
55
55
  other: "other";
56
- nextjs: "nextjs";
57
56
  react: "react";
58
57
  vue: "vue";
58
+ nextjs: "nextjs";
59
59
  nuxtjs: "nuxtjs";
60
60
  gatsby: "gatsby";
61
61
  remix: "remix";
@@ -166,9 +166,9 @@ export declare const VercelProjectSchema: z.ZodObject<{
166
166
  framework: z.ZodOptional<z.ZodEnum<{
167
167
  static: "static";
168
168
  other: "other";
169
- nextjs: "nextjs";
170
169
  react: "react";
171
170
  vue: "vue";
171
+ nextjs: "nextjs";
172
172
  nuxtjs: "nuxtjs";
173
173
  gatsby: "gatsby";
174
174
  remix: "remix";
@@ -515,8 +515,8 @@ export declare const VercelConnectorSchema: z.ZodObject<{
515
515
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
516
516
  error: "error";
517
517
  active: "active";
518
- inactive: "inactive";
519
518
  configuring: "configuring";
519
+ inactive: "inactive";
520
520
  }>>>;
521
521
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
522
522
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -534,9 +534,9 @@ export declare const VercelConnectorSchema: z.ZodObject<{
534
534
  framework: z.ZodOptional<z.ZodEnum<{
535
535
  static: "static";
536
536
  other: "other";
537
- nextjs: "nextjs";
538
537
  react: "react";
539
538
  vue: "vue";
539
+ nextjs: "nextjs";
540
540
  nuxtjs: "nuxtjs";
541
541
  gatsby: "gatsby";
542
542
  remix: "remix";
@@ -417,8 +417,8 @@ export type ConnectorType = z.infer<typeof ConnectorTypeSchema>;
417
417
  export declare const ConnectorStatusSchema: z.ZodEnum<{
418
418
  error: "error";
419
419
  active: "active";
420
- inactive: "inactive";
421
420
  configuring: "configuring";
421
+ inactive: "inactive";
422
422
  }>;
423
423
  export type ConnectorStatus = z.infer<typeof ConnectorStatusSchema>;
424
424
  /**
@@ -669,8 +669,8 @@ export declare const ConnectorSchema: z.ZodObject<{
669
669
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
670
670
  error: "error";
671
671
  active: "active";
672
- inactive: "inactive";
673
672
  configuring: "configuring";
673
+ inactive: "inactive";
674
674
  }>>>;
675
675
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
676
676
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -2658,8 +2658,8 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
2658
2658
  type: z.ZodEnum<{
2659
2659
  script: "script";
2660
2660
  flow: "flow";
2661
- object_operation: "object_operation";
2662
2661
  proxy: "proxy";
2662
+ object_operation: "object_operation";
2663
2663
  }>;
2664
2664
  target: z.ZodString;
2665
2665
  objectParams: z.ZodOptional<z.ZodObject<{
@@ -6201,8 +6201,8 @@ export declare const ObjectStackSchema: z.ZodObject<{
6201
6201
  type: z.ZodEnum<{
6202
6202
  script: "script";
6203
6203
  flow: "flow";
6204
- object_operation: "object_operation";
6205
6204
  proxy: "proxy";
6205
+ object_operation: "object_operation";
6206
6206
  }>;
6207
6207
  target: z.ZodString;
6208
6208
  objectParams: z.ZodOptional<z.ZodObject<{
@@ -8546,7 +8546,7 @@ export declare const defineStack: (config: z.input<typeof ObjectStackDefinitionS
8546
8546
  name: string;
8547
8547
  path: string;
8548
8548
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
8549
- type: "script" | "flow" | "object_operation" | "proxy";
8549
+ type: "script" | "flow" | "proxy" | "object_operation";
8550
8550
  target: string;
8551
8551
  summary?: string | undefined;
8552
8552
  description?: string | undefined;
@@ -9296,8 +9296,8 @@ export declare const ObjectOSCapabilitiesSchema: z.ZodObject<{
9296
9296
  type: z.ZodEnum<{
9297
9297
  script: "script";
9298
9298
  flow: "flow";
9299
- object_operation: "object_operation";
9300
9299
  proxy: "proxy";
9300
+ object_operation: "object_operation";
9301
9301
  }>;
9302
9302
  target: z.ZodString;
9303
9303
  objectParams: z.ZodOptional<z.ZodObject<{
@@ -9459,8 +9459,8 @@ export declare const ObjectStackCapabilitiesSchema: z.ZodObject<{
9459
9459
  type: z.ZodEnum<{
9460
9460
  script: "script";
9461
9461
  flow: "flow";
9462
- object_operation: "object_operation";
9463
9462
  proxy: "proxy";
9463
+ object_operation: "object_operation";
9464
9464
  }>;
9465
9465
  target: z.ZodString;
9466
9466
  objectParams: z.ZodOptional<z.ZodObject<{
@@ -23,6 +23,9 @@ export * from './plugin-capability.zod';
23
23
  export * from './plugin-loading.zod';
24
24
  export * from './plugin-validator.zod';
25
25
  export * from './plugin-lifecycle-events.zod';
26
+ export * from './plugin-lifecycle-advanced.zod';
27
+ export * from './plugin-versioning.zod';
28
+ export * from './plugin-security-advanced.zod';
26
29
  export * from './startup-orchestrator.zod';
27
30
  export * from './service-registry.zod';
28
31
  export * from './context.zod';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/system/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,SAAS,CAAC;AAGxB,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAG9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AAMjC,cAAc,sBAAsB,CAAC;AAGrC,cAAc,aAAa,CAAC;AAG5B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,uBAAuB,CAAC;AAGtC,cAAc,qBAAqB,CAAC;AAGpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAG9B,cAAc,oBAAoB,CAAC;AAGnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,iBAAiB,CAAC;AAGhC,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/system/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,SAAS,CAAC;AAGxB,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAG9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iCAAiC,CAAC;AAChD,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AAMjC,cAAc,sBAAsB,CAAC;AAGrC,cAAc,aAAa,CAAC;AAG5B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,uBAAuB,CAAC;AAGtC,cAAc,qBAAqB,CAAC;AAGpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAG9B,cAAc,oBAAoB,CAAC;AAGnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,iBAAiB,CAAC;AAGhC,cAAc,mBAAmB,CAAC"}
@@ -41,6 +41,9 @@ __exportStar(require("./plugin-capability.zod"), exports);
41
41
  __exportStar(require("./plugin-loading.zod"), exports);
42
42
  __exportStar(require("./plugin-validator.zod"), exports);
43
43
  __exportStar(require("./plugin-lifecycle-events.zod"), exports);
44
+ __exportStar(require("./plugin-lifecycle-advanced.zod"), exports);
45
+ __exportStar(require("./plugin-versioning.zod"), exports);
46
+ __exportStar(require("./plugin-security-advanced.zod"), exports);
44
47
  __exportStar(require("./startup-orchestrator.zod"), exports);
45
48
  __exportStar(require("./service-registry.zod"), exports);
46
49
  __exportStar(require("./context.zod"), exports);
@@ -20,6 +20,7 @@ export declare const LogLevel: z.ZodEnum<{
20
20
  warn: "warn";
21
21
  debug: "debug";
22
22
  fatal: "fatal";
23
+ silent: "silent";
23
24
  }>;
24
25
  export type LogLevel = z.infer<typeof LogLevel>;
25
26
  /**
@@ -43,6 +44,7 @@ export declare const LoggerConfigSchema: z.ZodObject<{
43
44
  warn: "warn";
44
45
  debug: "debug";
45
46
  fatal: "fatal";
47
+ silent: "silent";
46
48
  }>>>;
47
49
  format: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
48
50
  text: "text";
@@ -70,6 +72,7 @@ export declare const LogEntrySchema: z.ZodObject<{
70
72
  warn: "warn";
71
73
  debug: "debug";
72
74
  fatal: "fatal";
75
+ silent: "silent";
73
76
  }>;
74
77
  message: z.ZodString;
75
78
  context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -406,6 +409,7 @@ export declare const LoggingConfigSchema: z.ZodObject<{
406
409
  warn: "warn";
407
410
  debug: "debug";
408
411
  fatal: "fatal";
412
+ silent: "silent";
409
413
  }>>>;
410
414
  format: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
411
415
  text: "text";
@@ -428,6 +432,7 @@ export declare const LoggingConfigSchema: z.ZodObject<{
428
432
  warn: "warn";
429
433
  debug: "debug";
430
434
  fatal: "fatal";
435
+ silent: "silent";
431
436
  }>>>;
432
437
  format: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
433
438
  text: "text";
@@ -1 +1 @@
1
- {"version":3,"file":"logging.zod.d.ts","sourceRoot":"","sources":["../../src/system/logging.zod.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"logging.zod.d.ts","sourceRoot":"","sources":["../../src/system/logging.zod.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;;;;;;;;;GAUG;AAMH;;;GAGG;AACH,eAAO,MAAM,QAAQ;;;;;;;EAOY,CAAC;AAElC,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC;AAEhD;;GAEG;AACH,eAAO,MAAM,SAAS;;;;EAIU,CAAC;AAEjC,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;iBAwC7B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D;;;GAGG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;iBAczB,CAAC;AAEH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAMtD;;;GAGG;AACH,eAAO,MAAM,gBAAgB;;;;;;;EAOa,CAAC;AAE3C,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;EAeI,CAAC;AAEpC,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE;;GAEG;AACH,eAAO,MAAM,8BAA8B;;;;;;;iBAeK,CAAC;AAEjD,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AAEtF;;GAEG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;iBAwCK,CAAC;AAE9C,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF;;GAEG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAmEK,CAAC;AAE9C,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF;;;GAGG;AACH,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;iBAgCM,CAAC;AAE1D,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sCAAsC,CAAC,CAAC;AAEtG;;;GAGG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAoDW,CAAC;AAE7C,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE;;;GAGG;AACH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;iBA4CK,CAAC;AAE5C,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E;;;GAGG;AACH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAgGF,CAAC;AAEpC,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E;;;GAGG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAuHI,CAAC;AAErC,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
@@ -25,7 +25,8 @@ exports.LogLevel = zod_1.z.enum([
25
25
  'info',
26
26
  'warn',
27
27
  'error',
28
- 'fatal'
28
+ 'fatal',
29
+ 'silent'
29
30
  ]).describe('Log severity level');
30
31
  /**
31
32
  * Log Format Enum
@@ -235,9 +235,9 @@ export declare const NotificationConfigSchema: z.ZodObject<{
235
235
  }, z.core.$strip>;
236
236
  schedule: z.ZodOptional<z.ZodObject<{
237
237
  type: z.ZodEnum<{
238
+ scheduled: "scheduled";
238
239
  immediate: "immediate";
239
240
  delayed: "delayed";
240
- scheduled: "scheduled";
241
241
  }>;
242
242
  delay: z.ZodOptional<z.ZodNumber>;
243
243
  scheduledAt: z.ZodOptional<z.ZodNumber>;