@objectstack/spec 0.7.1 → 0.7.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.
- package/dist/ai/agent-action.zod.d.ts +8 -8
- package/dist/ai/model-registry.zod.d.ts +6 -6
- package/dist/ai/orchestration.zod.d.ts +6 -6
- package/dist/ai/predictive.zod.d.ts +2 -2
- package/dist/ai/rag-pipeline.zod.d.ts +2 -2
- package/dist/api/batch.zod.d.ts +81 -8
- package/dist/api/batch.zod.d.ts.map +1 -1
- package/dist/api/batch.zod.js +14 -1
- package/dist/api/graphql.zod.d.ts +224 -224
- package/dist/api/odata.zod.d.ts +379 -0
- package/dist/api/odata.zod.d.ts.map +1 -1
- package/dist/api/odata.zod.js +14 -1
- package/dist/api/protocol.zod.d.ts +18 -18
- package/dist/api/realtime.zod.d.ts +133 -0
- package/dist/api/realtime.zod.d.ts.map +1 -1
- package/dist/api/realtime.zod.js +14 -1
- package/dist/api/websocket.zod.d.ts +2 -2
- package/dist/auth/config.zod.d.ts +12 -12
- package/dist/auth/identity.zod.d.ts +3 -3
- package/dist/automation/approval.zod.d.ts +16 -16
- package/dist/automation/etl.zod.d.ts +2 -2
- package/dist/automation/sync.zod.d.ts +4 -4
- package/dist/automation/webhook.zod.d.ts +2 -2
- package/dist/automation/workflow.zod.d.ts +28 -28
- package/dist/data/object.zod.d.ts.map +1 -1
- package/dist/data/object.zod.js +3 -1
- package/dist/hub/composer.zod.d.ts +9 -8
- package/dist/hub/composer.zod.d.ts.map +1 -1
- package/dist/hub/marketplace.zod.d.ts +1 -0
- package/dist/hub/marketplace.zod.d.ts.map +1 -1
- package/dist/hub/plugin-registry.zod.d.ts +9 -9
- package/dist/hub/space.zod.d.ts +5 -4
- package/dist/hub/space.zod.d.ts.map +1 -1
- package/dist/integration/connector/database.zod.d.ts +33 -33
- package/dist/integration/connector/file-storage.zod.d.ts +52 -52
- package/dist/integration/connector/message-queue.zod.d.ts +43 -43
- package/dist/integration/connector/saas.zod.d.ts +31 -30
- package/dist/integration/connector/saas.zod.d.ts.map +1 -1
- package/dist/integration/connector.zod.d.ts +34 -34
- package/dist/stack.zod.d.ts +78 -78
- package/dist/system/change-management.zod.d.ts +2 -2
- package/dist/system/collaboration.zod.d.ts +6 -6
- package/dist/system/events.zod.d.ts +2536 -0
- package/dist/system/events.zod.d.ts.map +1 -1
- package/dist/system/events.zod.js +582 -1
- package/dist/system/http-server.zod.d.ts +2 -2
- package/dist/system/index.d.ts +1 -0
- package/dist/system/index.d.ts.map +1 -1
- package/dist/system/index.js +1 -0
- package/dist/system/job.zod.d.ts +3 -2
- package/dist/system/job.zod.d.ts.map +1 -1
- package/dist/system/logging.zod.d.ts +10 -10
- package/dist/system/manifest.zod.d.ts +6 -6
- package/dist/system/message-queue.zod.d.ts +10 -10
- package/dist/system/metadata-loader.zod.d.ts +3 -3
- package/dist/system/notification.zod.d.ts +12 -12
- package/dist/system/plugin-capability.zod.d.ts +6 -6
- package/dist/system/startup-orchestrator.zod.d.ts +2 -2
- package/dist/system/worker.zod.d.ts +1458 -0
- package/dist/system/worker.zod.d.ts.map +1 -0
- package/dist/system/worker.zod.js +479 -0
- package/json-schema/api/BatchConfig.json +51 -0
- package/json-schema/api/ODataConfig.json +132 -0
- package/json-schema/api/RealtimeConfig.json +90 -0
- package/json-schema/data/Object.json +4 -1
- package/json-schema/system/BatchProgress.json +72 -0
- package/json-schema/system/BatchTask.json +63 -0
- package/json-schema/system/DeadLetterQueueEntry.json +137 -0
- package/json-schema/system/Event.json +24 -0
- package/json-schema/system/EventBusConfig.json +552 -0
- package/json-schema/system/EventHandler.json +34 -0
- package/json-schema/system/EventLogEntry.json +153 -0
- package/json-schema/system/EventMessageQueueConfig.json +79 -0
- package/json-schema/system/EventMetadata.json +20 -0
- package/json-schema/system/EventPersistence.json +11 -0
- package/json-schema/system/EventPriority.json +16 -0
- package/json-schema/system/EventQueueConfig.json +67 -0
- package/json-schema/system/EventReplayConfig.json +50 -0
- package/json-schema/system/EventSourcingConfig.json +65 -0
- package/json-schema/system/EventTypeDefinition.json +45 -0
- package/json-schema/system/EventWebhookConfig.json +119 -0
- package/json-schema/system/QueueConfig.json +133 -0
- package/json-schema/system/RealTimeNotificationConfig.json +85 -0
- package/json-schema/system/Task.json +145 -0
- package/json-schema/system/TaskExecutionResult.json +85 -0
- package/json-schema/system/TaskPriority.json +16 -0
- package/json-schema/system/TaskRetryPolicy.json +46 -0
- package/json-schema/system/TaskStatus.json +19 -0
- package/json-schema/system/WorkerConfig.json +188 -0
- package/json-schema/system/WorkerStats.json +90 -0
- package/package.json +9 -1
package/dist/system/job.zod.d.ts
CHANGED
|
@@ -83,6 +83,7 @@ export type Schedule = z.infer<typeof ScheduleSchema>;
|
|
|
83
83
|
export type CronSchedule = z.infer<typeof CronScheduleSchema>;
|
|
84
84
|
export type IntervalSchedule = z.infer<typeof IntervalScheduleSchema>;
|
|
85
85
|
export type OnceSchedule = z.infer<typeof OnceScheduleSchema>;
|
|
86
|
+
export type JobSchedule = Schedule;
|
|
86
87
|
/**
|
|
87
88
|
* Retry Policy Schema
|
|
88
89
|
* Configuration for job retry behavior with exponential backoff
|
|
@@ -219,14 +220,14 @@ export declare const JobExecutionSchema: z.ZodObject<{
|
|
|
219
220
|
error: z.ZodOptional<z.ZodString>;
|
|
220
221
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
221
222
|
}, "strip", z.ZodTypeAny, {
|
|
222
|
-
status: "timeout" | "success" | "
|
|
223
|
+
status: "timeout" | "success" | "failed" | "running";
|
|
223
224
|
jobId: string;
|
|
224
225
|
startedAt: string;
|
|
225
226
|
error?: string | undefined;
|
|
226
227
|
duration?: number | undefined;
|
|
227
228
|
completedAt?: string | undefined;
|
|
228
229
|
}, {
|
|
229
|
-
status: "timeout" | "success" | "
|
|
230
|
+
status: "timeout" | "success" | "failed" | "running";
|
|
230
231
|
jobId: string;
|
|
231
232
|
startedAt: string;
|
|
232
233
|
error?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"job.zod.d.ts","sourceRoot":"","sources":["../../src/system/job.zod.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;EAI7B,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;EAGjC,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;EAG7B,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIzB,CAAC;AAEH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACtD,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC9D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"job.zod.d.ts","sourceRoot":"","sources":["../../src/system/job.zod.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;EAI7B,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;EAGjC,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;EAG7B,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIzB,CAAC;AAEH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACtD,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC9D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC9D,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC;AAEnC;;;GAGG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAI5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D;;;GAGG;AACH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQpB,CAAC;AAEH,MAAM,MAAM,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAE5C;;;GAGG;AACH,eAAO,MAAM,kBAAkB,wDAK7B,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;EAO7B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
|
|
@@ -762,7 +762,7 @@ export declare const LogDestinationSchema: z.ZodObject<{
|
|
|
762
762
|
*/
|
|
763
763
|
filterId: z.ZodOptional<z.ZodString>;
|
|
764
764
|
}, "strip", z.ZodTypeAny, {
|
|
765
|
-
type: "custom" | "file" | "redis" | "elasticsearch" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http"
|
|
765
|
+
type: "custom" | "file" | "redis" | "elasticsearch" | "kafka" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http";
|
|
766
766
|
enabled: boolean;
|
|
767
767
|
name: string;
|
|
768
768
|
format: "text" | "json" | "pretty";
|
|
@@ -822,7 +822,7 @@ export declare const LogDestinationSchema: z.ZodObject<{
|
|
|
822
822
|
} | undefined;
|
|
823
823
|
filterId?: string | undefined;
|
|
824
824
|
}, {
|
|
825
|
-
type: "custom" | "file" | "redis" | "elasticsearch" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http"
|
|
825
|
+
type: "custom" | "file" | "redis" | "elasticsearch" | "kafka" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http";
|
|
826
826
|
name: string;
|
|
827
827
|
enabled?: boolean | undefined;
|
|
828
828
|
file?: {
|
|
@@ -1048,13 +1048,13 @@ export declare const StructuredLogEntrySchema: z.ZodObject<{
|
|
|
1048
1048
|
pid: z.ZodOptional<z.ZodNumber>;
|
|
1049
1049
|
ip: z.ZodOptional<z.ZodString>;
|
|
1050
1050
|
}, "strip", z.ZodTypeAny, {
|
|
1051
|
+
ip?: string | undefined;
|
|
1051
1052
|
hostname?: string | undefined;
|
|
1052
1053
|
pid?: number | undefined;
|
|
1053
|
-
ip?: string | undefined;
|
|
1054
1054
|
}, {
|
|
1055
|
+
ip?: string | undefined;
|
|
1055
1056
|
hostname?: string | undefined;
|
|
1056
1057
|
pid?: number | undefined;
|
|
1057
|
-
ip?: string | undefined;
|
|
1058
1058
|
}>>;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* Environment
|
|
@@ -1139,9 +1139,9 @@ export declare const StructuredLogEntrySchema: z.ZodObject<{
|
|
|
1139
1139
|
traceFlags?: number | undefined;
|
|
1140
1140
|
} | undefined;
|
|
1141
1141
|
host?: {
|
|
1142
|
+
ip?: string | undefined;
|
|
1142
1143
|
hostname?: string | undefined;
|
|
1143
1144
|
pid?: number | undefined;
|
|
1144
|
-
ip?: string | undefined;
|
|
1145
1145
|
} | undefined;
|
|
1146
1146
|
request?: {
|
|
1147
1147
|
path?: string | undefined;
|
|
@@ -1184,9 +1184,9 @@ export declare const StructuredLogEntrySchema: z.ZodObject<{
|
|
|
1184
1184
|
traceFlags?: number | undefined;
|
|
1185
1185
|
} | undefined;
|
|
1186
1186
|
host?: {
|
|
1187
|
+
ip?: string | undefined;
|
|
1187
1188
|
hostname?: string | undefined;
|
|
1188
1189
|
pid?: number | undefined;
|
|
1189
|
-
ip?: string | undefined;
|
|
1190
1190
|
} | undefined;
|
|
1191
1191
|
request?: {
|
|
1192
1192
|
path?: string | undefined;
|
|
@@ -1673,7 +1673,7 @@ export declare const LoggingConfigSchema: z.ZodObject<{
|
|
|
1673
1673
|
*/
|
|
1674
1674
|
filterId: z.ZodOptional<z.ZodString>;
|
|
1675
1675
|
}, "strip", z.ZodTypeAny, {
|
|
1676
|
-
type: "custom" | "file" | "redis" | "elasticsearch" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http"
|
|
1676
|
+
type: "custom" | "file" | "redis" | "elasticsearch" | "kafka" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http";
|
|
1677
1677
|
enabled: boolean;
|
|
1678
1678
|
name: string;
|
|
1679
1679
|
format: "text" | "json" | "pretty";
|
|
@@ -1733,7 +1733,7 @@ export declare const LoggingConfigSchema: z.ZodObject<{
|
|
|
1733
1733
|
} | undefined;
|
|
1734
1734
|
filterId?: string | undefined;
|
|
1735
1735
|
}, {
|
|
1736
|
-
type: "custom" | "file" | "redis" | "elasticsearch" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http"
|
|
1736
|
+
type: "custom" | "file" | "redis" | "elasticsearch" | "kafka" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http";
|
|
1737
1737
|
name: string;
|
|
1738
1738
|
enabled?: boolean | undefined;
|
|
1739
1739
|
file?: {
|
|
@@ -1950,7 +1950,7 @@ export declare const LoggingConfigSchema: z.ZodObject<{
|
|
|
1950
1950
|
name: string;
|
|
1951
1951
|
level: "error" | "info" | "warn" | "debug" | "fatal" | "trace";
|
|
1952
1952
|
destinations: {
|
|
1953
|
-
type: "custom" | "file" | "redis" | "elasticsearch" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http"
|
|
1953
|
+
type: "custom" | "file" | "redis" | "elasticsearch" | "kafka" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http";
|
|
1954
1954
|
enabled: boolean;
|
|
1955
1955
|
name: string;
|
|
1956
1956
|
format: "text" | "json" | "pretty";
|
|
@@ -2066,7 +2066,7 @@ export declare const LoggingConfigSchema: z.ZodObject<{
|
|
|
2066
2066
|
label: string;
|
|
2067
2067
|
name: string;
|
|
2068
2068
|
destinations: {
|
|
2069
|
-
type: "custom" | "file" | "redis" | "elasticsearch" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http"
|
|
2069
|
+
type: "custom" | "file" | "redis" | "elasticsearch" | "kafka" | "console" | "syslog" | "cloudwatch" | "stackdriver" | "azure_monitor" | "datadog" | "splunk" | "loki" | "http";
|
|
2070
2070
|
name: string;
|
|
2071
2071
|
enabled?: boolean | undefined;
|
|
2072
2072
|
file?: {
|
|
@@ -442,7 +442,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
442
442
|
description?: string | undefined;
|
|
443
443
|
specification?: string | undefined;
|
|
444
444
|
};
|
|
445
|
-
conformance: "partial" | "full" | "
|
|
445
|
+
conformance: "partial" | "full" | "deprecated" | "experimental";
|
|
446
446
|
certified: boolean;
|
|
447
447
|
metadata?: Record<string, any> | undefined;
|
|
448
448
|
implementedFeatures?: string[] | undefined;
|
|
@@ -467,7 +467,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
467
467
|
specification?: string | undefined;
|
|
468
468
|
};
|
|
469
469
|
metadata?: Record<string, any> | undefined;
|
|
470
|
-
conformance?: "partial" | "full" | "
|
|
470
|
+
conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
|
|
471
471
|
implementedFeatures?: string[] | undefined;
|
|
472
472
|
features?: {
|
|
473
473
|
name: string;
|
|
@@ -699,7 +699,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
699
699
|
description?: string | undefined;
|
|
700
700
|
specification?: string | undefined;
|
|
701
701
|
};
|
|
702
|
-
conformance: "partial" | "full" | "
|
|
702
|
+
conformance: "partial" | "full" | "deprecated" | "experimental";
|
|
703
703
|
certified: boolean;
|
|
704
704
|
metadata?: Record<string, any> | undefined;
|
|
705
705
|
implementedFeatures?: string[] | undefined;
|
|
@@ -779,7 +779,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
779
779
|
specification?: string | undefined;
|
|
780
780
|
};
|
|
781
781
|
metadata?: Record<string, any> | undefined;
|
|
782
|
-
conformance?: "partial" | "full" | "
|
|
782
|
+
conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
|
|
783
783
|
implementedFeatures?: string[] | undefined;
|
|
784
784
|
features?: {
|
|
785
785
|
name: string;
|
|
@@ -875,7 +875,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
875
875
|
description?: string | undefined;
|
|
876
876
|
specification?: string | undefined;
|
|
877
877
|
};
|
|
878
|
-
conformance: "partial" | "full" | "
|
|
878
|
+
conformance: "partial" | "full" | "deprecated" | "experimental";
|
|
879
879
|
certified: boolean;
|
|
880
880
|
metadata?: Record<string, any> | undefined;
|
|
881
881
|
implementedFeatures?: string[] | undefined;
|
|
@@ -1028,7 +1028,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
1028
1028
|
specification?: string | undefined;
|
|
1029
1029
|
};
|
|
1030
1030
|
metadata?: Record<string, any> | undefined;
|
|
1031
|
-
conformance?: "partial" | "full" | "
|
|
1031
|
+
conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
|
|
1032
1032
|
implementedFeatures?: string[] | undefined;
|
|
1033
1033
|
features?: {
|
|
1034
1034
|
name: string;
|
|
@@ -130,17 +130,17 @@ export declare const MessageQueueConfigSchema: z.ZodObject<{
|
|
|
130
130
|
compressionType: "none" | "gzip" | "snappy" | "lz4";
|
|
131
131
|
retentionMs?: number | undefined;
|
|
132
132
|
}[];
|
|
133
|
+
deadLetterQueue?: {
|
|
134
|
+
enabled: boolean;
|
|
135
|
+
maxRetries: number;
|
|
136
|
+
queueName: string;
|
|
137
|
+
} | undefined;
|
|
133
138
|
consumers?: {
|
|
134
139
|
groupId: string;
|
|
135
140
|
autoOffsetReset: "earliest" | "latest";
|
|
136
141
|
enableAutoCommit: boolean;
|
|
137
142
|
maxPollRecords: number;
|
|
138
143
|
}[] | undefined;
|
|
139
|
-
deadLetterQueue?: {
|
|
140
|
-
enabled: boolean;
|
|
141
|
-
maxRetries: number;
|
|
142
|
-
queueName: string;
|
|
143
|
-
} | undefined;
|
|
144
144
|
sasl?: {
|
|
145
145
|
password: string;
|
|
146
146
|
username: string;
|
|
@@ -156,17 +156,17 @@ export declare const MessageQueueConfigSchema: z.ZodObject<{
|
|
|
156
156
|
compressionType?: "none" | "gzip" | "snappy" | "lz4" | undefined;
|
|
157
157
|
}[];
|
|
158
158
|
ssl?: boolean | undefined;
|
|
159
|
+
deadLetterQueue?: {
|
|
160
|
+
queueName: string;
|
|
161
|
+
enabled?: boolean | undefined;
|
|
162
|
+
maxRetries?: number | undefined;
|
|
163
|
+
} | undefined;
|
|
159
164
|
consumers?: {
|
|
160
165
|
groupId: string;
|
|
161
166
|
autoOffsetReset?: "earliest" | "latest" | undefined;
|
|
162
167
|
enableAutoCommit?: boolean | undefined;
|
|
163
168
|
maxPollRecords?: number | undefined;
|
|
164
169
|
}[] | undefined;
|
|
165
|
-
deadLetterQueue?: {
|
|
166
|
-
queueName: string;
|
|
167
|
-
enabled?: boolean | undefined;
|
|
168
|
-
maxRetries?: number | undefined;
|
|
169
|
-
} | undefined;
|
|
170
170
|
sasl?: {
|
|
171
171
|
password: string;
|
|
172
172
|
username: string;
|
|
@@ -107,10 +107,10 @@ export declare const MetadataLoadOptionsSchema: z.ZodObject<{
|
|
|
107
107
|
}, {
|
|
108
108
|
filter?: string | undefined;
|
|
109
109
|
limit?: number | undefined;
|
|
110
|
+
validate?: boolean | undefined;
|
|
110
111
|
patterns?: string[] | undefined;
|
|
111
112
|
ifNoneMatch?: string | undefined;
|
|
112
113
|
ifModifiedSince?: Date | undefined;
|
|
113
|
-
validate?: boolean | undefined;
|
|
114
114
|
useCache?: boolean | undefined;
|
|
115
115
|
recursive?: boolean | undefined;
|
|
116
116
|
}>;
|
|
@@ -244,15 +244,15 @@ export declare const MetadataImportOptionsSchema: z.ZodObject<{
|
|
|
244
244
|
*/
|
|
245
245
|
transform: z.ZodOptional<z.ZodString>;
|
|
246
246
|
}, "strip", z.ZodTypeAny, {
|
|
247
|
-
conflictResolution: "merge" | "skip" | "overwrite" | "fail";
|
|
248
247
|
validate: boolean;
|
|
248
|
+
conflictResolution: "merge" | "skip" | "overwrite" | "fail";
|
|
249
249
|
dryRun: boolean;
|
|
250
250
|
continueOnError: boolean;
|
|
251
251
|
transform?: string | undefined;
|
|
252
252
|
}, {
|
|
253
253
|
transform?: string | undefined;
|
|
254
|
-
conflictResolution?: "merge" | "skip" | "overwrite" | "fail" | undefined;
|
|
255
254
|
validate?: boolean | undefined;
|
|
255
|
+
conflictResolution?: "merge" | "skip" | "overwrite" | "fail" | undefined;
|
|
256
256
|
dryRun?: boolean | undefined;
|
|
257
257
|
continueOnError?: boolean | undefined;
|
|
258
258
|
}>;
|
|
@@ -539,12 +539,12 @@ export declare const NotificationConfigSchema: z.ZodObject<{
|
|
|
539
539
|
scheduledAt: z.ZodOptional<z.ZodNumber>;
|
|
540
540
|
}, "strip", z.ZodTypeAny, {
|
|
541
541
|
type: "immediate" | "delayed" | "scheduled";
|
|
542
|
-
delay?: number | undefined;
|
|
543
542
|
scheduledAt?: number | undefined;
|
|
543
|
+
delay?: number | undefined;
|
|
544
544
|
}, {
|
|
545
545
|
type: "immediate" | "delayed" | "scheduled";
|
|
546
|
-
delay?: number | undefined;
|
|
547
546
|
scheduledAt?: number | undefined;
|
|
547
|
+
delay?: number | undefined;
|
|
548
548
|
}>>;
|
|
549
549
|
/**
|
|
550
550
|
* Retry policy for failed deliveries
|
|
@@ -643,16 +643,16 @@ export declare const NotificationConfigSchema: z.ZodObject<{
|
|
|
643
643
|
cc?: string[] | undefined;
|
|
644
644
|
bcc?: string[] | undefined;
|
|
645
645
|
};
|
|
646
|
-
schedule?: {
|
|
647
|
-
type: "immediate" | "delayed" | "scheduled";
|
|
648
|
-
delay?: number | undefined;
|
|
649
|
-
scheduledAt?: number | undefined;
|
|
650
|
-
} | undefined;
|
|
651
646
|
retryPolicy?: {
|
|
652
647
|
enabled: boolean;
|
|
653
648
|
maxRetries: number;
|
|
654
649
|
backoffStrategy: "fixed" | "linear" | "exponential";
|
|
655
650
|
} | undefined;
|
|
651
|
+
schedule?: {
|
|
652
|
+
type: "immediate" | "delayed" | "scheduled";
|
|
653
|
+
scheduledAt?: number | undefined;
|
|
654
|
+
delay?: number | undefined;
|
|
655
|
+
} | undefined;
|
|
656
656
|
tracking?: {
|
|
657
657
|
trackOpens: boolean;
|
|
658
658
|
trackClicks: boolean;
|
|
@@ -700,16 +700,16 @@ export declare const NotificationConfigSchema: z.ZodObject<{
|
|
|
700
700
|
cc?: string[] | undefined;
|
|
701
701
|
bcc?: string[] | undefined;
|
|
702
702
|
};
|
|
703
|
-
schedule?: {
|
|
704
|
-
type: "immediate" | "delayed" | "scheduled";
|
|
705
|
-
delay?: number | undefined;
|
|
706
|
-
scheduledAt?: number | undefined;
|
|
707
|
-
} | undefined;
|
|
708
703
|
retryPolicy?: {
|
|
709
704
|
backoffStrategy: "fixed" | "linear" | "exponential";
|
|
710
705
|
enabled?: boolean | undefined;
|
|
711
706
|
maxRetries?: number | undefined;
|
|
712
707
|
} | undefined;
|
|
708
|
+
schedule?: {
|
|
709
|
+
type: "immediate" | "delayed" | "scheduled";
|
|
710
|
+
scheduledAt?: number | undefined;
|
|
711
|
+
delay?: number | undefined;
|
|
712
|
+
} | undefined;
|
|
713
713
|
tracking?: {
|
|
714
714
|
trackOpens?: boolean | undefined;
|
|
715
715
|
trackClicks?: boolean | undefined;
|
|
@@ -233,7 +233,7 @@ export declare const PluginCapabilitySchema: z.ZodObject<{
|
|
|
233
233
|
description?: string | undefined;
|
|
234
234
|
specification?: string | undefined;
|
|
235
235
|
};
|
|
236
|
-
conformance: "partial" | "full" | "
|
|
236
|
+
conformance: "partial" | "full" | "deprecated" | "experimental";
|
|
237
237
|
certified: boolean;
|
|
238
238
|
metadata?: Record<string, any> | undefined;
|
|
239
239
|
implementedFeatures?: string[] | undefined;
|
|
@@ -258,7 +258,7 @@ export declare const PluginCapabilitySchema: z.ZodObject<{
|
|
|
258
258
|
specification?: string | undefined;
|
|
259
259
|
};
|
|
260
260
|
metadata?: Record<string, any> | undefined;
|
|
261
|
-
conformance?: "partial" | "full" | "
|
|
261
|
+
conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
|
|
262
262
|
implementedFeatures?: string[] | undefined;
|
|
263
263
|
features?: {
|
|
264
264
|
name: string;
|
|
@@ -647,7 +647,7 @@ export declare const PluginCapabilityManifestSchema: z.ZodObject<{
|
|
|
647
647
|
description?: string | undefined;
|
|
648
648
|
specification?: string | undefined;
|
|
649
649
|
};
|
|
650
|
-
conformance: "partial" | "full" | "
|
|
650
|
+
conformance: "partial" | "full" | "deprecated" | "experimental";
|
|
651
651
|
certified: boolean;
|
|
652
652
|
metadata?: Record<string, any> | undefined;
|
|
653
653
|
implementedFeatures?: string[] | undefined;
|
|
@@ -672,7 +672,7 @@ export declare const PluginCapabilityManifestSchema: z.ZodObject<{
|
|
|
672
672
|
specification?: string | undefined;
|
|
673
673
|
};
|
|
674
674
|
metadata?: Record<string, any> | undefined;
|
|
675
|
-
conformance?: "partial" | "full" | "
|
|
675
|
+
conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
|
|
676
676
|
implementedFeatures?: string[] | undefined;
|
|
677
677
|
features?: {
|
|
678
678
|
name: string;
|
|
@@ -972,7 +972,7 @@ export declare const PluginCapabilityManifestSchema: z.ZodObject<{
|
|
|
972
972
|
description?: string | undefined;
|
|
973
973
|
specification?: string | undefined;
|
|
974
974
|
};
|
|
975
|
-
conformance: "partial" | "full" | "
|
|
975
|
+
conformance: "partial" | "full" | "deprecated" | "experimental";
|
|
976
976
|
certified: boolean;
|
|
977
977
|
metadata?: Record<string, any> | undefined;
|
|
978
978
|
implementedFeatures?: string[] | undefined;
|
|
@@ -1052,7 +1052,7 @@ export declare const PluginCapabilityManifestSchema: z.ZodObject<{
|
|
|
1052
1052
|
specification?: string | undefined;
|
|
1053
1053
|
};
|
|
1054
1054
|
metadata?: Record<string, any> | undefined;
|
|
1055
|
-
conformance?: "partial" | "full" | "
|
|
1055
|
+
conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
|
|
1056
1056
|
implementedFeatures?: string[] | undefined;
|
|
1057
1057
|
features?: {
|
|
1058
1058
|
name: string;
|
|
@@ -47,16 +47,16 @@ export declare const StartupOptionsSchema: z.ZodObject<{
|
|
|
47
47
|
context: z.ZodOptional<z.ZodAny>;
|
|
48
48
|
}, "strip", z.ZodTypeAny, {
|
|
49
49
|
timeout: number;
|
|
50
|
+
parallel: boolean;
|
|
50
51
|
rollbackOnFailure: boolean;
|
|
51
52
|
healthCheck: boolean;
|
|
52
|
-
parallel: boolean;
|
|
53
53
|
context?: any;
|
|
54
54
|
}, {
|
|
55
55
|
timeout?: number | undefined;
|
|
56
56
|
context?: any;
|
|
57
|
+
parallel?: boolean | undefined;
|
|
57
58
|
rollbackOnFailure?: boolean | undefined;
|
|
58
59
|
healthCheck?: boolean | undefined;
|
|
59
|
-
parallel?: boolean | undefined;
|
|
60
60
|
}>;
|
|
61
61
|
export type StartupOptions = z.infer<typeof StartupOptionsSchema>;
|
|
62
62
|
export type StartupOptionsInput = z.input<typeof StartupOptionsSchema>;
|