@objectstack/spec 1.0.6 → 1.0.7
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/index.d.mts +1 -1
- package/dist/ai/index.d.ts +1 -1
- package/dist/api/index.d.mts +1 -1
- package/dist/api/index.d.ts +1 -1
- package/dist/api/index.js +1869 -1780
- package/dist/api/index.js.map +1 -1
- package/dist/api/index.mjs +1869 -1780
- package/dist/api/index.mjs.map +1 -1
- package/dist/automation/index.d.mts +1 -1
- package/dist/automation/index.d.ts +1 -1
- package/dist/hub/index.d.mts +1 -1
- package/dist/hub/index.d.ts +1 -1
- package/dist/hub/index.js +796 -707
- package/dist/hub/index.js.map +1 -1
- package/dist/hub/index.mjs +796 -707
- package/dist/hub/index.mjs.map +1 -1
- package/dist/{index-CQ2ZwxNr.d.ts → index-CyognKSZ.d.ts} +146 -146
- package/dist/{index-BqQd0BcZ.d.mts → index-DE_lJ11p.d.mts} +146 -146
- package/dist/{index-C34qbBQr.d.mts → index-DLcySG7U.d.mts} +262 -241
- package/dist/{index-C34qbBQr.d.ts → index-DLcySG7U.d.ts} +262 -241
- package/dist/{index-D8XFyX0x.d.mts → index-Os7lItRe.d.mts} +108 -108
- package/dist/{index-D8XFyX0x.d.ts → index-Os7lItRe.d.ts} +108 -108
- package/dist/{index-CsF8m5Wj.d.mts → index-l6WIlmOD.d.mts} +39 -39
- package/dist/{index-CsF8m5Wj.d.ts → index-l6WIlmOD.d.ts} +39 -39
- package/dist/index.d.mts +158 -158
- package/dist/index.d.ts +158 -158
- package/dist/index.js +703 -668
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +703 -668
- package/dist/index.mjs.map +1 -1
- package/dist/kernel/index.d.mts +1 -1
- package/dist/kernel/index.d.ts +1 -1
- package/dist/kernel/index.js +705 -669
- package/dist/kernel/index.js.map +1 -1
- package/dist/kernel/index.mjs +704 -669
- package/dist/kernel/index.mjs.map +1 -1
- package/json-schema/api/CompileManifestResponse.json +6 -2
- package/json-schema/hub/ComposerResponse.json +6 -2
- package/json-schema/kernel/Manifest.json +6 -2
- package/json-schema/kernel/Plugin.json +28 -0
- package/package.json +1 -1
- package/dist/{index-iGrpxfqq.d.mts → index-D12rNohm.d.mts} +1 -1
- package/dist/{index-iGrpxfqq.d.ts → index-D12rNohm.d.ts} +1 -1
|
@@ -2937,15 +2937,18 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
2937
2937
|
version: z.ZodString;
|
|
2938
2938
|
/**
|
|
2939
2939
|
* Type of the package in the ObjectStack ecosystem.
|
|
2940
|
-
* -
|
|
2941
|
-
* -
|
|
2942
|
-
* - driver:
|
|
2940
|
+
* - plugin: General-purpose functionality extension (Runtime: standard)
|
|
2941
|
+
* - app: Business application package
|
|
2942
|
+
* - driver: Connectivity adapter
|
|
2943
|
+
* - server: Protocol gateway (Hono, GraphQL)
|
|
2944
|
+
* - ui: Frontend package (Static/SPA)
|
|
2945
|
+
* - theme: UI Theme
|
|
2946
|
+
* - agent: AI Agent
|
|
2943
2947
|
* - module: Reusable code library/shared module
|
|
2944
|
-
* - objectql: Core engine
|
|
2945
|
-
* -
|
|
2946
|
-
* - adapter: Host adapter - Runtime container (Express, Hono, Fastify, Serverless)
|
|
2948
|
+
* - objectql: Core engine
|
|
2949
|
+
* - adapter: Host adapter (Express, Fastify)
|
|
2947
2950
|
*/
|
|
2948
|
-
type: z.ZodEnum<["
|
|
2951
|
+
type: z.ZodEnum<["plugin", "ui", "driver", "server", "app", "theme", "agent", "objectql", "module", "gateway", "adapter"]>;
|
|
2949
2952
|
/**
|
|
2950
2953
|
* Human-readable name of the package.
|
|
2951
2954
|
* Displayed in the UI for users.
|
|
@@ -3210,6 +3213,11 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
3210
3213
|
input?: any;
|
|
3211
3214
|
output?: any;
|
|
3212
3215
|
}[] | undefined;
|
|
3216
|
+
drivers?: {
|
|
3217
|
+
label: string;
|
|
3218
|
+
id: string;
|
|
3219
|
+
description?: string | undefined;
|
|
3220
|
+
}[] | undefined;
|
|
3213
3221
|
kinds?: {
|
|
3214
3222
|
id: string;
|
|
3215
3223
|
globs: string[];
|
|
@@ -3229,11 +3237,6 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
3229
3237
|
path: string;
|
|
3230
3238
|
locale: string;
|
|
3231
3239
|
}[] | undefined;
|
|
3232
|
-
drivers?: {
|
|
3233
|
-
label: string;
|
|
3234
|
-
id: string;
|
|
3235
|
-
description?: string | undefined;
|
|
3236
|
-
}[] | undefined;
|
|
3237
3240
|
functions?: {
|
|
3238
3241
|
name: string;
|
|
3239
3242
|
description?: string | undefined;
|
|
@@ -3254,6 +3257,11 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
3254
3257
|
input?: any;
|
|
3255
3258
|
output?: any;
|
|
3256
3259
|
}[] | undefined;
|
|
3260
|
+
drivers?: {
|
|
3261
|
+
label: string;
|
|
3262
|
+
id: string;
|
|
3263
|
+
description?: string | undefined;
|
|
3264
|
+
}[] | undefined;
|
|
3257
3265
|
kinds?: {
|
|
3258
3266
|
id: string;
|
|
3259
3267
|
globs: string[];
|
|
@@ -3273,11 +3281,6 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
3273
3281
|
path: string;
|
|
3274
3282
|
locale: string;
|
|
3275
3283
|
}[] | undefined;
|
|
3276
|
-
drivers?: {
|
|
3277
|
-
label: string;
|
|
3278
|
-
id: string;
|
|
3279
|
-
description?: string | undefined;
|
|
3280
|
-
}[] | undefined;
|
|
3281
3284
|
functions?: {
|
|
3282
3285
|
name: string;
|
|
3283
3286
|
description?: string | undefined;
|
|
@@ -4471,7 +4474,7 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
4471
4474
|
} | undefined;
|
|
4472
4475
|
}>>;
|
|
4473
4476
|
}, "strip", z.ZodTypeAny, {
|
|
4474
|
-
type: "driver" | "app" | "
|
|
4477
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
4475
4478
|
name: string;
|
|
4476
4479
|
version: string;
|
|
4477
4480
|
id: string;
|
|
@@ -4712,6 +4715,11 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
4712
4715
|
input?: any;
|
|
4713
4716
|
output?: any;
|
|
4714
4717
|
}[] | undefined;
|
|
4718
|
+
drivers?: {
|
|
4719
|
+
label: string;
|
|
4720
|
+
id: string;
|
|
4721
|
+
description?: string | undefined;
|
|
4722
|
+
}[] | undefined;
|
|
4715
4723
|
kinds?: {
|
|
4716
4724
|
id: string;
|
|
4717
4725
|
globs: string[];
|
|
@@ -4731,11 +4739,6 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
4731
4739
|
path: string;
|
|
4732
4740
|
locale: string;
|
|
4733
4741
|
}[] | undefined;
|
|
4734
|
-
drivers?: {
|
|
4735
|
-
label: string;
|
|
4736
|
-
id: string;
|
|
4737
|
-
description?: string | undefined;
|
|
4738
|
-
}[] | undefined;
|
|
4739
4742
|
functions?: {
|
|
4740
4743
|
name: string;
|
|
4741
4744
|
description?: string | undefined;
|
|
@@ -4744,7 +4747,7 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
4744
4747
|
}[] | undefined;
|
|
4745
4748
|
} | undefined;
|
|
4746
4749
|
}, {
|
|
4747
|
-
type: "driver" | "app" | "
|
|
4750
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
4748
4751
|
name: string;
|
|
4749
4752
|
version: string;
|
|
4750
4753
|
id: string;
|
|
@@ -4985,6 +4988,11 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
4985
4988
|
input?: any;
|
|
4986
4989
|
output?: any;
|
|
4987
4990
|
}[] | undefined;
|
|
4991
|
+
drivers?: {
|
|
4992
|
+
label: string;
|
|
4993
|
+
id: string;
|
|
4994
|
+
description?: string | undefined;
|
|
4995
|
+
}[] | undefined;
|
|
4988
4996
|
kinds?: {
|
|
4989
4997
|
id: string;
|
|
4990
4998
|
globs: string[];
|
|
@@ -5004,11 +5012,6 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
5004
5012
|
path: string;
|
|
5005
5013
|
locale: string;
|
|
5006
5014
|
}[] | undefined;
|
|
5007
|
-
drivers?: {
|
|
5008
|
-
label: string;
|
|
5009
|
-
id: string;
|
|
5010
|
-
description?: string | undefined;
|
|
5011
|
-
}[] | undefined;
|
|
5012
5015
|
functions?: {
|
|
5013
5016
|
name: string;
|
|
5014
5017
|
description?: string | undefined;
|
|
@@ -16016,11 +16019,6 @@ declare const PluginContextSchema: z.ZodObject<{
|
|
|
16016
16019
|
} & {
|
|
16017
16020
|
[k: string]: unknown;
|
|
16018
16021
|
};
|
|
16019
|
-
drivers: {
|
|
16020
|
-
register: (...args: unknown[]) => void;
|
|
16021
|
-
} & {
|
|
16022
|
-
[k: string]: unknown;
|
|
16023
|
-
};
|
|
16024
16022
|
os: {
|
|
16025
16023
|
getCurrentUser: (...args: unknown[]) => any;
|
|
16026
16024
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -16041,6 +16039,11 @@ declare const PluginContextSchema: z.ZodObject<{
|
|
|
16041
16039
|
} & {
|
|
16042
16040
|
[k: string]: unknown;
|
|
16043
16041
|
};
|
|
16042
|
+
drivers: {
|
|
16043
|
+
register: (...args: unknown[]) => void;
|
|
16044
|
+
} & {
|
|
16045
|
+
[k: string]: unknown;
|
|
16046
|
+
};
|
|
16044
16047
|
}, {
|
|
16045
16048
|
events: Record<string, any>;
|
|
16046
16049
|
ql: {
|
|
@@ -16068,11 +16071,6 @@ declare const PluginContextSchema: z.ZodObject<{
|
|
|
16068
16071
|
} & {
|
|
16069
16072
|
[k: string]: unknown;
|
|
16070
16073
|
};
|
|
16071
|
-
drivers: {
|
|
16072
|
-
register: (...args: unknown[]) => void;
|
|
16073
|
-
} & {
|
|
16074
|
-
[k: string]: unknown;
|
|
16075
|
-
};
|
|
16076
16074
|
os: {
|
|
16077
16075
|
getCurrentUser: (...args: unknown[]) => any;
|
|
16078
16076
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -16093,6 +16091,11 @@ declare const PluginContextSchema: z.ZodObject<{
|
|
|
16093
16091
|
} & {
|
|
16094
16092
|
[k: string]: unknown;
|
|
16095
16093
|
};
|
|
16094
|
+
drivers: {
|
|
16095
|
+
register: (...args: unknown[]) => void;
|
|
16096
|
+
} & {
|
|
16097
|
+
[k: string]: unknown;
|
|
16098
|
+
};
|
|
16096
16099
|
}>;
|
|
16097
16100
|
type PluginContextData = z.infer<typeof PluginContextSchema>;
|
|
16098
16101
|
type PluginContext = PluginContextData;
|
|
@@ -16236,11 +16239,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16236
16239
|
} & {
|
|
16237
16240
|
[k: string]: unknown;
|
|
16238
16241
|
};
|
|
16239
|
-
drivers: {
|
|
16240
|
-
register: (...args: unknown[]) => void;
|
|
16241
|
-
} & {
|
|
16242
|
-
[k: string]: unknown;
|
|
16243
|
-
};
|
|
16244
16242
|
os: {
|
|
16245
16243
|
getCurrentUser: (...args: unknown[]) => any;
|
|
16246
16244
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -16261,6 +16259,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16261
16259
|
} & {
|
|
16262
16260
|
[k: string]: unknown;
|
|
16263
16261
|
};
|
|
16262
|
+
drivers: {
|
|
16263
|
+
register: (...args: unknown[]) => void;
|
|
16264
|
+
} & {
|
|
16265
|
+
[k: string]: unknown;
|
|
16266
|
+
};
|
|
16264
16267
|
}, {
|
|
16265
16268
|
events: Record<string, any>;
|
|
16266
16269
|
ql: {
|
|
@@ -16288,11 +16291,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16288
16291
|
} & {
|
|
16289
16292
|
[k: string]: unknown;
|
|
16290
16293
|
};
|
|
16291
|
-
drivers: {
|
|
16292
|
-
register: (...args: unknown[]) => void;
|
|
16293
|
-
} & {
|
|
16294
|
-
[k: string]: unknown;
|
|
16295
|
-
};
|
|
16296
16294
|
os: {
|
|
16297
16295
|
getCurrentUser: (...args: unknown[]) => any;
|
|
16298
16296
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -16313,6 +16311,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16313
16311
|
} & {
|
|
16314
16312
|
[k: string]: unknown;
|
|
16315
16313
|
};
|
|
16314
|
+
drivers: {
|
|
16315
|
+
register: (...args: unknown[]) => void;
|
|
16316
|
+
} & {
|
|
16317
|
+
[k: string]: unknown;
|
|
16318
|
+
};
|
|
16316
16319
|
}>], z.ZodUnknown>, z.ZodPromise<z.ZodVoid>>>;
|
|
16317
16320
|
onEnable: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
16318
16321
|
ql: z.ZodObject<{
|
|
@@ -16453,11 +16456,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16453
16456
|
} & {
|
|
16454
16457
|
[k: string]: unknown;
|
|
16455
16458
|
};
|
|
16456
|
-
drivers: {
|
|
16457
|
-
register: (...args: unknown[]) => void;
|
|
16458
|
-
} & {
|
|
16459
|
-
[k: string]: unknown;
|
|
16460
|
-
};
|
|
16461
16459
|
os: {
|
|
16462
16460
|
getCurrentUser: (...args: unknown[]) => any;
|
|
16463
16461
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -16478,6 +16476,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16478
16476
|
} & {
|
|
16479
16477
|
[k: string]: unknown;
|
|
16480
16478
|
};
|
|
16479
|
+
drivers: {
|
|
16480
|
+
register: (...args: unknown[]) => void;
|
|
16481
|
+
} & {
|
|
16482
|
+
[k: string]: unknown;
|
|
16483
|
+
};
|
|
16481
16484
|
}, {
|
|
16482
16485
|
events: Record<string, any>;
|
|
16483
16486
|
ql: {
|
|
@@ -16505,11 +16508,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16505
16508
|
} & {
|
|
16506
16509
|
[k: string]: unknown;
|
|
16507
16510
|
};
|
|
16508
|
-
drivers: {
|
|
16509
|
-
register: (...args: unknown[]) => void;
|
|
16510
|
-
} & {
|
|
16511
|
-
[k: string]: unknown;
|
|
16512
|
-
};
|
|
16513
16511
|
os: {
|
|
16514
16512
|
getCurrentUser: (...args: unknown[]) => any;
|
|
16515
16513
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -16530,6 +16528,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16530
16528
|
} & {
|
|
16531
16529
|
[k: string]: unknown;
|
|
16532
16530
|
};
|
|
16531
|
+
drivers: {
|
|
16532
|
+
register: (...args: unknown[]) => void;
|
|
16533
|
+
} & {
|
|
16534
|
+
[k: string]: unknown;
|
|
16535
|
+
};
|
|
16533
16536
|
}>], z.ZodUnknown>, z.ZodPromise<z.ZodVoid>>>;
|
|
16534
16537
|
onDisable: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
16535
16538
|
ql: z.ZodObject<{
|
|
@@ -16670,11 +16673,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16670
16673
|
} & {
|
|
16671
16674
|
[k: string]: unknown;
|
|
16672
16675
|
};
|
|
16673
|
-
drivers: {
|
|
16674
|
-
register: (...args: unknown[]) => void;
|
|
16675
|
-
} & {
|
|
16676
|
-
[k: string]: unknown;
|
|
16677
|
-
};
|
|
16678
16676
|
os: {
|
|
16679
16677
|
getCurrentUser: (...args: unknown[]) => any;
|
|
16680
16678
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -16695,6 +16693,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16695
16693
|
} & {
|
|
16696
16694
|
[k: string]: unknown;
|
|
16697
16695
|
};
|
|
16696
|
+
drivers: {
|
|
16697
|
+
register: (...args: unknown[]) => void;
|
|
16698
|
+
} & {
|
|
16699
|
+
[k: string]: unknown;
|
|
16700
|
+
};
|
|
16698
16701
|
}, {
|
|
16699
16702
|
events: Record<string, any>;
|
|
16700
16703
|
ql: {
|
|
@@ -16722,11 +16725,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16722
16725
|
} & {
|
|
16723
16726
|
[k: string]: unknown;
|
|
16724
16727
|
};
|
|
16725
|
-
drivers: {
|
|
16726
|
-
register: (...args: unknown[]) => void;
|
|
16727
|
-
} & {
|
|
16728
|
-
[k: string]: unknown;
|
|
16729
|
-
};
|
|
16730
16728
|
os: {
|
|
16731
16729
|
getCurrentUser: (...args: unknown[]) => any;
|
|
16732
16730
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -16747,6 +16745,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16747
16745
|
} & {
|
|
16748
16746
|
[k: string]: unknown;
|
|
16749
16747
|
};
|
|
16748
|
+
drivers: {
|
|
16749
|
+
register: (...args: unknown[]) => void;
|
|
16750
|
+
} & {
|
|
16751
|
+
[k: string]: unknown;
|
|
16752
|
+
};
|
|
16750
16753
|
}>], z.ZodUnknown>, z.ZodPromise<z.ZodVoid>>>;
|
|
16751
16754
|
onUninstall: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
16752
16755
|
ql: z.ZodObject<{
|
|
@@ -16887,11 +16890,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16887
16890
|
} & {
|
|
16888
16891
|
[k: string]: unknown;
|
|
16889
16892
|
};
|
|
16890
|
-
drivers: {
|
|
16891
|
-
register: (...args: unknown[]) => void;
|
|
16892
|
-
} & {
|
|
16893
|
-
[k: string]: unknown;
|
|
16894
|
-
};
|
|
16895
16893
|
os: {
|
|
16896
16894
|
getCurrentUser: (...args: unknown[]) => any;
|
|
16897
16895
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -16912,6 +16910,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16912
16910
|
} & {
|
|
16913
16911
|
[k: string]: unknown;
|
|
16914
16912
|
};
|
|
16913
|
+
drivers: {
|
|
16914
|
+
register: (...args: unknown[]) => void;
|
|
16915
|
+
} & {
|
|
16916
|
+
[k: string]: unknown;
|
|
16917
|
+
};
|
|
16915
16918
|
}, {
|
|
16916
16919
|
events: Record<string, any>;
|
|
16917
16920
|
ql: {
|
|
@@ -16939,11 +16942,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16939
16942
|
} & {
|
|
16940
16943
|
[k: string]: unknown;
|
|
16941
16944
|
};
|
|
16942
|
-
drivers: {
|
|
16943
|
-
register: (...args: unknown[]) => void;
|
|
16944
|
-
} & {
|
|
16945
|
-
[k: string]: unknown;
|
|
16946
|
-
};
|
|
16947
16945
|
os: {
|
|
16948
16946
|
getCurrentUser: (...args: unknown[]) => any;
|
|
16949
16947
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -16964,6 +16962,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
16964
16962
|
} & {
|
|
16965
16963
|
[k: string]: unknown;
|
|
16966
16964
|
};
|
|
16965
|
+
drivers: {
|
|
16966
|
+
register: (...args: unknown[]) => void;
|
|
16967
|
+
} & {
|
|
16968
|
+
[k: string]: unknown;
|
|
16969
|
+
};
|
|
16967
16970
|
}>], z.ZodUnknown>, z.ZodPromise<z.ZodVoid>>>;
|
|
16968
16971
|
onUpgrade: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
16969
16972
|
ql: z.ZodObject<{
|
|
@@ -17104,11 +17107,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17104
17107
|
} & {
|
|
17105
17108
|
[k: string]: unknown;
|
|
17106
17109
|
};
|
|
17107
|
-
drivers: {
|
|
17108
|
-
register: (...args: unknown[]) => void;
|
|
17109
|
-
} & {
|
|
17110
|
-
[k: string]: unknown;
|
|
17111
|
-
};
|
|
17112
17110
|
os: {
|
|
17113
17111
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17114
17112
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17129,6 +17127,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17129
17127
|
} & {
|
|
17130
17128
|
[k: string]: unknown;
|
|
17131
17129
|
};
|
|
17130
|
+
drivers: {
|
|
17131
|
+
register: (...args: unknown[]) => void;
|
|
17132
|
+
} & {
|
|
17133
|
+
[k: string]: unknown;
|
|
17134
|
+
};
|
|
17132
17135
|
}, {
|
|
17133
17136
|
events: Record<string, any>;
|
|
17134
17137
|
ql: {
|
|
@@ -17156,11 +17159,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17156
17159
|
} & {
|
|
17157
17160
|
[k: string]: unknown;
|
|
17158
17161
|
};
|
|
17159
|
-
drivers: {
|
|
17160
|
-
register: (...args: unknown[]) => void;
|
|
17161
|
-
} & {
|
|
17162
|
-
[k: string]: unknown;
|
|
17163
|
-
};
|
|
17164
17162
|
os: {
|
|
17165
17163
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17166
17164
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17181,6 +17179,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17181
17179
|
} & {
|
|
17182
17180
|
[k: string]: unknown;
|
|
17183
17181
|
};
|
|
17182
|
+
drivers: {
|
|
17183
|
+
register: (...args: unknown[]) => void;
|
|
17184
|
+
} & {
|
|
17185
|
+
[k: string]: unknown;
|
|
17186
|
+
};
|
|
17184
17187
|
}>, z.ZodString, z.ZodString], z.ZodUnknown>, z.ZodPromise<z.ZodVoid>>>;
|
|
17185
17188
|
}, "strip", z.ZodTypeAny, {
|
|
17186
17189
|
onInstall?: ((args_0: {
|
|
@@ -17210,11 +17213,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17210
17213
|
} & {
|
|
17211
17214
|
[k: string]: unknown;
|
|
17212
17215
|
};
|
|
17213
|
-
drivers: {
|
|
17214
|
-
register: (...args: unknown[]) => void;
|
|
17215
|
-
} & {
|
|
17216
|
-
[k: string]: unknown;
|
|
17217
|
-
};
|
|
17218
17216
|
os: {
|
|
17219
17217
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17220
17218
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17235,6 +17233,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17235
17233
|
} & {
|
|
17236
17234
|
[k: string]: unknown;
|
|
17237
17235
|
};
|
|
17236
|
+
drivers: {
|
|
17237
|
+
register: (...args: unknown[]) => void;
|
|
17238
|
+
} & {
|
|
17239
|
+
[k: string]: unknown;
|
|
17240
|
+
};
|
|
17238
17241
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
17239
17242
|
onEnable?: ((args_0: {
|
|
17240
17243
|
events: Record<string, any>;
|
|
@@ -17263,11 +17266,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17263
17266
|
} & {
|
|
17264
17267
|
[k: string]: unknown;
|
|
17265
17268
|
};
|
|
17266
|
-
drivers: {
|
|
17267
|
-
register: (...args: unknown[]) => void;
|
|
17268
|
-
} & {
|
|
17269
|
-
[k: string]: unknown;
|
|
17270
|
-
};
|
|
17271
17269
|
os: {
|
|
17272
17270
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17273
17271
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17288,6 +17286,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17288
17286
|
} & {
|
|
17289
17287
|
[k: string]: unknown;
|
|
17290
17288
|
};
|
|
17289
|
+
drivers: {
|
|
17290
|
+
register: (...args: unknown[]) => void;
|
|
17291
|
+
} & {
|
|
17292
|
+
[k: string]: unknown;
|
|
17293
|
+
};
|
|
17291
17294
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
17292
17295
|
onDisable?: ((args_0: {
|
|
17293
17296
|
events: Record<string, any>;
|
|
@@ -17316,11 +17319,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17316
17319
|
} & {
|
|
17317
17320
|
[k: string]: unknown;
|
|
17318
17321
|
};
|
|
17319
|
-
drivers: {
|
|
17320
|
-
register: (...args: unknown[]) => void;
|
|
17321
|
-
} & {
|
|
17322
|
-
[k: string]: unknown;
|
|
17323
|
-
};
|
|
17324
17322
|
os: {
|
|
17325
17323
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17326
17324
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17341,6 +17339,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17341
17339
|
} & {
|
|
17342
17340
|
[k: string]: unknown;
|
|
17343
17341
|
};
|
|
17342
|
+
drivers: {
|
|
17343
|
+
register: (...args: unknown[]) => void;
|
|
17344
|
+
} & {
|
|
17345
|
+
[k: string]: unknown;
|
|
17346
|
+
};
|
|
17344
17347
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
17345
17348
|
onUninstall?: ((args_0: {
|
|
17346
17349
|
events: Record<string, any>;
|
|
@@ -17369,11 +17372,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17369
17372
|
} & {
|
|
17370
17373
|
[k: string]: unknown;
|
|
17371
17374
|
};
|
|
17372
|
-
drivers: {
|
|
17373
|
-
register: (...args: unknown[]) => void;
|
|
17374
|
-
} & {
|
|
17375
|
-
[k: string]: unknown;
|
|
17376
|
-
};
|
|
17377
17375
|
os: {
|
|
17378
17376
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17379
17377
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17394,6 +17392,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17394
17392
|
} & {
|
|
17395
17393
|
[k: string]: unknown;
|
|
17396
17394
|
};
|
|
17395
|
+
drivers: {
|
|
17396
|
+
register: (...args: unknown[]) => void;
|
|
17397
|
+
} & {
|
|
17398
|
+
[k: string]: unknown;
|
|
17399
|
+
};
|
|
17397
17400
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
17398
17401
|
onUpgrade?: ((args_0: {
|
|
17399
17402
|
events: Record<string, any>;
|
|
@@ -17422,11 +17425,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17422
17425
|
} & {
|
|
17423
17426
|
[k: string]: unknown;
|
|
17424
17427
|
};
|
|
17425
|
-
drivers: {
|
|
17426
|
-
register: (...args: unknown[]) => void;
|
|
17427
|
-
} & {
|
|
17428
|
-
[k: string]: unknown;
|
|
17429
|
-
};
|
|
17430
17428
|
os: {
|
|
17431
17429
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17432
17430
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17447,6 +17445,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17447
17445
|
} & {
|
|
17448
17446
|
[k: string]: unknown;
|
|
17449
17447
|
};
|
|
17448
|
+
drivers: {
|
|
17449
|
+
register: (...args: unknown[]) => void;
|
|
17450
|
+
} & {
|
|
17451
|
+
[k: string]: unknown;
|
|
17452
|
+
};
|
|
17450
17453
|
}, args_1: string, args_2: string, ...args: unknown[]) => Promise<void>) | undefined;
|
|
17451
17454
|
}, {
|
|
17452
17455
|
onInstall?: ((args_0: {
|
|
@@ -17476,11 +17479,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17476
17479
|
} & {
|
|
17477
17480
|
[k: string]: unknown;
|
|
17478
17481
|
};
|
|
17479
|
-
drivers: {
|
|
17480
|
-
register: (...args: unknown[]) => void;
|
|
17481
|
-
} & {
|
|
17482
|
-
[k: string]: unknown;
|
|
17483
|
-
};
|
|
17484
17482
|
os: {
|
|
17485
17483
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17486
17484
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17501,6 +17499,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17501
17499
|
} & {
|
|
17502
17500
|
[k: string]: unknown;
|
|
17503
17501
|
};
|
|
17502
|
+
drivers: {
|
|
17503
|
+
register: (...args: unknown[]) => void;
|
|
17504
|
+
} & {
|
|
17505
|
+
[k: string]: unknown;
|
|
17506
|
+
};
|
|
17504
17507
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
17505
17508
|
onEnable?: ((args_0: {
|
|
17506
17509
|
events: Record<string, any>;
|
|
@@ -17529,11 +17532,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17529
17532
|
} & {
|
|
17530
17533
|
[k: string]: unknown;
|
|
17531
17534
|
};
|
|
17532
|
-
drivers: {
|
|
17533
|
-
register: (...args: unknown[]) => void;
|
|
17534
|
-
} & {
|
|
17535
|
-
[k: string]: unknown;
|
|
17536
|
-
};
|
|
17537
17535
|
os: {
|
|
17538
17536
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17539
17537
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17554,6 +17552,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17554
17552
|
} & {
|
|
17555
17553
|
[k: string]: unknown;
|
|
17556
17554
|
};
|
|
17555
|
+
drivers: {
|
|
17556
|
+
register: (...args: unknown[]) => void;
|
|
17557
|
+
} & {
|
|
17558
|
+
[k: string]: unknown;
|
|
17559
|
+
};
|
|
17557
17560
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
17558
17561
|
onDisable?: ((args_0: {
|
|
17559
17562
|
events: Record<string, any>;
|
|
@@ -17582,11 +17585,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17582
17585
|
} & {
|
|
17583
17586
|
[k: string]: unknown;
|
|
17584
17587
|
};
|
|
17585
|
-
drivers: {
|
|
17586
|
-
register: (...args: unknown[]) => void;
|
|
17587
|
-
} & {
|
|
17588
|
-
[k: string]: unknown;
|
|
17589
|
-
};
|
|
17590
17588
|
os: {
|
|
17591
17589
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17592
17590
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17607,6 +17605,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17607
17605
|
} & {
|
|
17608
17606
|
[k: string]: unknown;
|
|
17609
17607
|
};
|
|
17608
|
+
drivers: {
|
|
17609
|
+
register: (...args: unknown[]) => void;
|
|
17610
|
+
} & {
|
|
17611
|
+
[k: string]: unknown;
|
|
17612
|
+
};
|
|
17610
17613
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
17611
17614
|
onUninstall?: ((args_0: {
|
|
17612
17615
|
events: Record<string, any>;
|
|
@@ -17635,11 +17638,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17635
17638
|
} & {
|
|
17636
17639
|
[k: string]: unknown;
|
|
17637
17640
|
};
|
|
17638
|
-
drivers: {
|
|
17639
|
-
register: (...args: unknown[]) => void;
|
|
17640
|
-
} & {
|
|
17641
|
-
[k: string]: unknown;
|
|
17642
|
-
};
|
|
17643
17641
|
os: {
|
|
17644
17642
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17645
17643
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17660,6 +17658,11 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17660
17658
|
} & {
|
|
17661
17659
|
[k: string]: unknown;
|
|
17662
17660
|
};
|
|
17661
|
+
drivers: {
|
|
17662
|
+
register: (...args: unknown[]) => void;
|
|
17663
|
+
} & {
|
|
17664
|
+
[k: string]: unknown;
|
|
17665
|
+
};
|
|
17663
17666
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
17664
17667
|
onUpgrade?: ((args_0: {
|
|
17665
17668
|
events: Record<string, any>;
|
|
@@ -17688,11 +17691,6 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17688
17691
|
} & {
|
|
17689
17692
|
[k: string]: unknown;
|
|
17690
17693
|
};
|
|
17691
|
-
drivers: {
|
|
17692
|
-
register: (...args: unknown[]) => void;
|
|
17693
|
-
} & {
|
|
17694
|
-
[k: string]: unknown;
|
|
17695
|
-
};
|
|
17696
17694
|
os: {
|
|
17697
17695
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17698
17696
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17713,9 +17711,19 @@ declare const PluginLifecycleSchema: z.ZodObject<{
|
|
|
17713
17711
|
} & {
|
|
17714
17712
|
[k: string]: unknown;
|
|
17715
17713
|
};
|
|
17714
|
+
drivers: {
|
|
17715
|
+
register: (...args: unknown[]) => void;
|
|
17716
|
+
} & {
|
|
17717
|
+
[k: string]: unknown;
|
|
17718
|
+
};
|
|
17716
17719
|
}, args_1: string, args_2: string, ...args: unknown[]) => Promise<void>) | undefined;
|
|
17717
17720
|
}>;
|
|
17718
17721
|
type PluginLifecycleHooks = z.infer<typeof PluginLifecycleSchema>;
|
|
17722
|
+
/**
|
|
17723
|
+
* Shared Plugin Types
|
|
17724
|
+
* These are the specialized plugin types common between Manifest (Package) and Plugin (Runtime).
|
|
17725
|
+
*/
|
|
17726
|
+
declare const CORE_PLUGIN_TYPES: readonly ["ui", "driver", "server", "app", "theme", "agent", "objectql"];
|
|
17719
17727
|
declare const PluginSchema: z.ZodObject<{
|
|
17720
17728
|
onInstall: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
17721
17729
|
ql: z.ZodObject<{
|
|
@@ -17856,11 +17864,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
17856
17864
|
} & {
|
|
17857
17865
|
[k: string]: unknown;
|
|
17858
17866
|
};
|
|
17859
|
-
drivers: {
|
|
17860
|
-
register: (...args: unknown[]) => void;
|
|
17861
|
-
} & {
|
|
17862
|
-
[k: string]: unknown;
|
|
17863
|
-
};
|
|
17864
17867
|
os: {
|
|
17865
17868
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17866
17869
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17881,6 +17884,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
17881
17884
|
} & {
|
|
17882
17885
|
[k: string]: unknown;
|
|
17883
17886
|
};
|
|
17887
|
+
drivers: {
|
|
17888
|
+
register: (...args: unknown[]) => void;
|
|
17889
|
+
} & {
|
|
17890
|
+
[k: string]: unknown;
|
|
17891
|
+
};
|
|
17884
17892
|
}, {
|
|
17885
17893
|
events: Record<string, any>;
|
|
17886
17894
|
ql: {
|
|
@@ -17908,11 +17916,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
17908
17916
|
} & {
|
|
17909
17917
|
[k: string]: unknown;
|
|
17910
17918
|
};
|
|
17911
|
-
drivers: {
|
|
17912
|
-
register: (...args: unknown[]) => void;
|
|
17913
|
-
} & {
|
|
17914
|
-
[k: string]: unknown;
|
|
17915
|
-
};
|
|
17916
17919
|
os: {
|
|
17917
17920
|
getCurrentUser: (...args: unknown[]) => any;
|
|
17918
17921
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -17933,6 +17936,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
17933
17936
|
} & {
|
|
17934
17937
|
[k: string]: unknown;
|
|
17935
17938
|
};
|
|
17939
|
+
drivers: {
|
|
17940
|
+
register: (...args: unknown[]) => void;
|
|
17941
|
+
} & {
|
|
17942
|
+
[k: string]: unknown;
|
|
17943
|
+
};
|
|
17936
17944
|
}>], z.ZodUnknown>, z.ZodPromise<z.ZodVoid>>>;
|
|
17937
17945
|
onEnable: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
17938
17946
|
ql: z.ZodObject<{
|
|
@@ -18073,11 +18081,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18073
18081
|
} & {
|
|
18074
18082
|
[k: string]: unknown;
|
|
18075
18083
|
};
|
|
18076
|
-
drivers: {
|
|
18077
|
-
register: (...args: unknown[]) => void;
|
|
18078
|
-
} & {
|
|
18079
|
-
[k: string]: unknown;
|
|
18080
|
-
};
|
|
18081
18084
|
os: {
|
|
18082
18085
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18083
18086
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18098,6 +18101,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18098
18101
|
} & {
|
|
18099
18102
|
[k: string]: unknown;
|
|
18100
18103
|
};
|
|
18104
|
+
drivers: {
|
|
18105
|
+
register: (...args: unknown[]) => void;
|
|
18106
|
+
} & {
|
|
18107
|
+
[k: string]: unknown;
|
|
18108
|
+
};
|
|
18101
18109
|
}, {
|
|
18102
18110
|
events: Record<string, any>;
|
|
18103
18111
|
ql: {
|
|
@@ -18125,11 +18133,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18125
18133
|
} & {
|
|
18126
18134
|
[k: string]: unknown;
|
|
18127
18135
|
};
|
|
18128
|
-
drivers: {
|
|
18129
|
-
register: (...args: unknown[]) => void;
|
|
18130
|
-
} & {
|
|
18131
|
-
[k: string]: unknown;
|
|
18132
|
-
};
|
|
18133
18136
|
os: {
|
|
18134
18137
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18135
18138
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18150,6 +18153,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18150
18153
|
} & {
|
|
18151
18154
|
[k: string]: unknown;
|
|
18152
18155
|
};
|
|
18156
|
+
drivers: {
|
|
18157
|
+
register: (...args: unknown[]) => void;
|
|
18158
|
+
} & {
|
|
18159
|
+
[k: string]: unknown;
|
|
18160
|
+
};
|
|
18153
18161
|
}>], z.ZodUnknown>, z.ZodPromise<z.ZodVoid>>>;
|
|
18154
18162
|
onDisable: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
18155
18163
|
ql: z.ZodObject<{
|
|
@@ -18290,11 +18298,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18290
18298
|
} & {
|
|
18291
18299
|
[k: string]: unknown;
|
|
18292
18300
|
};
|
|
18293
|
-
drivers: {
|
|
18294
|
-
register: (...args: unknown[]) => void;
|
|
18295
|
-
} & {
|
|
18296
|
-
[k: string]: unknown;
|
|
18297
|
-
};
|
|
18298
18301
|
os: {
|
|
18299
18302
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18300
18303
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18315,6 +18318,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18315
18318
|
} & {
|
|
18316
18319
|
[k: string]: unknown;
|
|
18317
18320
|
};
|
|
18321
|
+
drivers: {
|
|
18322
|
+
register: (...args: unknown[]) => void;
|
|
18323
|
+
} & {
|
|
18324
|
+
[k: string]: unknown;
|
|
18325
|
+
};
|
|
18318
18326
|
}, {
|
|
18319
18327
|
events: Record<string, any>;
|
|
18320
18328
|
ql: {
|
|
@@ -18342,11 +18350,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18342
18350
|
} & {
|
|
18343
18351
|
[k: string]: unknown;
|
|
18344
18352
|
};
|
|
18345
|
-
drivers: {
|
|
18346
|
-
register: (...args: unknown[]) => void;
|
|
18347
|
-
} & {
|
|
18348
|
-
[k: string]: unknown;
|
|
18349
|
-
};
|
|
18350
18353
|
os: {
|
|
18351
18354
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18352
18355
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18367,6 +18370,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18367
18370
|
} & {
|
|
18368
18371
|
[k: string]: unknown;
|
|
18369
18372
|
};
|
|
18373
|
+
drivers: {
|
|
18374
|
+
register: (...args: unknown[]) => void;
|
|
18375
|
+
} & {
|
|
18376
|
+
[k: string]: unknown;
|
|
18377
|
+
};
|
|
18370
18378
|
}>], z.ZodUnknown>, z.ZodPromise<z.ZodVoid>>>;
|
|
18371
18379
|
onUninstall: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
18372
18380
|
ql: z.ZodObject<{
|
|
@@ -18507,11 +18515,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18507
18515
|
} & {
|
|
18508
18516
|
[k: string]: unknown;
|
|
18509
18517
|
};
|
|
18510
|
-
drivers: {
|
|
18511
|
-
register: (...args: unknown[]) => void;
|
|
18512
|
-
} & {
|
|
18513
|
-
[k: string]: unknown;
|
|
18514
|
-
};
|
|
18515
18518
|
os: {
|
|
18516
18519
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18517
18520
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18532,6 +18535,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18532
18535
|
} & {
|
|
18533
18536
|
[k: string]: unknown;
|
|
18534
18537
|
};
|
|
18538
|
+
drivers: {
|
|
18539
|
+
register: (...args: unknown[]) => void;
|
|
18540
|
+
} & {
|
|
18541
|
+
[k: string]: unknown;
|
|
18542
|
+
};
|
|
18535
18543
|
}, {
|
|
18536
18544
|
events: Record<string, any>;
|
|
18537
18545
|
ql: {
|
|
@@ -18559,11 +18567,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18559
18567
|
} & {
|
|
18560
18568
|
[k: string]: unknown;
|
|
18561
18569
|
};
|
|
18562
|
-
drivers: {
|
|
18563
|
-
register: (...args: unknown[]) => void;
|
|
18564
|
-
} & {
|
|
18565
|
-
[k: string]: unknown;
|
|
18566
|
-
};
|
|
18567
18570
|
os: {
|
|
18568
18571
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18569
18572
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18584,6 +18587,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18584
18587
|
} & {
|
|
18585
18588
|
[k: string]: unknown;
|
|
18586
18589
|
};
|
|
18590
|
+
drivers: {
|
|
18591
|
+
register: (...args: unknown[]) => void;
|
|
18592
|
+
} & {
|
|
18593
|
+
[k: string]: unknown;
|
|
18594
|
+
};
|
|
18587
18595
|
}>], z.ZodUnknown>, z.ZodPromise<z.ZodVoid>>>;
|
|
18588
18596
|
onUpgrade: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
18589
18597
|
ql: z.ZodObject<{
|
|
@@ -18724,11 +18732,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18724
18732
|
} & {
|
|
18725
18733
|
[k: string]: unknown;
|
|
18726
18734
|
};
|
|
18727
|
-
drivers: {
|
|
18728
|
-
register: (...args: unknown[]) => void;
|
|
18729
|
-
} & {
|
|
18730
|
-
[k: string]: unknown;
|
|
18731
|
-
};
|
|
18732
18735
|
os: {
|
|
18733
18736
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18734
18737
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18749,6 +18752,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18749
18752
|
} & {
|
|
18750
18753
|
[k: string]: unknown;
|
|
18751
18754
|
};
|
|
18755
|
+
drivers: {
|
|
18756
|
+
register: (...args: unknown[]) => void;
|
|
18757
|
+
} & {
|
|
18758
|
+
[k: string]: unknown;
|
|
18759
|
+
};
|
|
18752
18760
|
}, {
|
|
18753
18761
|
events: Record<string, any>;
|
|
18754
18762
|
ql: {
|
|
@@ -18776,11 +18784,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18776
18784
|
} & {
|
|
18777
18785
|
[k: string]: unknown;
|
|
18778
18786
|
};
|
|
18779
|
-
drivers: {
|
|
18780
|
-
register: (...args: unknown[]) => void;
|
|
18781
|
-
} & {
|
|
18782
|
-
[k: string]: unknown;
|
|
18783
|
-
};
|
|
18784
18787
|
os: {
|
|
18785
18788
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18786
18789
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18801,14 +18804,25 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18801
18804
|
} & {
|
|
18802
18805
|
[k: string]: unknown;
|
|
18803
18806
|
};
|
|
18807
|
+
drivers: {
|
|
18808
|
+
register: (...args: unknown[]) => void;
|
|
18809
|
+
} & {
|
|
18810
|
+
[k: string]: unknown;
|
|
18811
|
+
};
|
|
18804
18812
|
}>, z.ZodString, z.ZodString], z.ZodUnknown>, z.ZodPromise<z.ZodVoid>>>;
|
|
18805
18813
|
} & {
|
|
18806
18814
|
id: z.ZodOptional<z.ZodString>;
|
|
18815
|
+
type: z.ZodOptional<z.ZodDefault<z.ZodEnum<["standard", "ui", "driver", "server", "app", "theme", "agent", "objectql"]>>>;
|
|
18816
|
+
staticPath: z.ZodOptional<z.ZodString>;
|
|
18817
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
18818
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
18807
18819
|
version: z.ZodOptional<z.ZodString>;
|
|
18808
18820
|
description: z.ZodOptional<z.ZodString>;
|
|
18809
18821
|
author: z.ZodOptional<z.ZodString>;
|
|
18810
18822
|
homepage: z.ZodOptional<z.ZodString>;
|
|
18811
18823
|
}, "strip", z.ZodTypeAny, {
|
|
18824
|
+
type?: "theme" | "driver" | "app" | "standard" | "server" | "ui" | "agent" | "objectql" | undefined;
|
|
18825
|
+
default?: boolean | undefined;
|
|
18812
18826
|
description?: string | undefined;
|
|
18813
18827
|
version?: string | undefined;
|
|
18814
18828
|
id?: string | undefined;
|
|
@@ -18840,11 +18854,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18840
18854
|
} & {
|
|
18841
18855
|
[k: string]: unknown;
|
|
18842
18856
|
};
|
|
18843
|
-
drivers: {
|
|
18844
|
-
register: (...args: unknown[]) => void;
|
|
18845
|
-
} & {
|
|
18846
|
-
[k: string]: unknown;
|
|
18847
|
-
};
|
|
18848
18857
|
os: {
|
|
18849
18858
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18850
18859
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18865,6 +18874,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18865
18874
|
} & {
|
|
18866
18875
|
[k: string]: unknown;
|
|
18867
18876
|
};
|
|
18877
|
+
drivers: {
|
|
18878
|
+
register: (...args: unknown[]) => void;
|
|
18879
|
+
} & {
|
|
18880
|
+
[k: string]: unknown;
|
|
18881
|
+
};
|
|
18868
18882
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
18869
18883
|
onEnable?: ((args_0: {
|
|
18870
18884
|
events: Record<string, any>;
|
|
@@ -18893,11 +18907,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18893
18907
|
} & {
|
|
18894
18908
|
[k: string]: unknown;
|
|
18895
18909
|
};
|
|
18896
|
-
drivers: {
|
|
18897
|
-
register: (...args: unknown[]) => void;
|
|
18898
|
-
} & {
|
|
18899
|
-
[k: string]: unknown;
|
|
18900
|
-
};
|
|
18901
18910
|
os: {
|
|
18902
18911
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18903
18912
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18918,6 +18927,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18918
18927
|
} & {
|
|
18919
18928
|
[k: string]: unknown;
|
|
18920
18929
|
};
|
|
18930
|
+
drivers: {
|
|
18931
|
+
register: (...args: unknown[]) => void;
|
|
18932
|
+
} & {
|
|
18933
|
+
[k: string]: unknown;
|
|
18934
|
+
};
|
|
18921
18935
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
18922
18936
|
onDisable?: ((args_0: {
|
|
18923
18937
|
events: Record<string, any>;
|
|
@@ -18946,11 +18960,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18946
18960
|
} & {
|
|
18947
18961
|
[k: string]: unknown;
|
|
18948
18962
|
};
|
|
18949
|
-
drivers: {
|
|
18950
|
-
register: (...args: unknown[]) => void;
|
|
18951
|
-
} & {
|
|
18952
|
-
[k: string]: unknown;
|
|
18953
|
-
};
|
|
18954
18963
|
os: {
|
|
18955
18964
|
getCurrentUser: (...args: unknown[]) => any;
|
|
18956
18965
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -18971,6 +18980,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18971
18980
|
} & {
|
|
18972
18981
|
[k: string]: unknown;
|
|
18973
18982
|
};
|
|
18983
|
+
drivers: {
|
|
18984
|
+
register: (...args: unknown[]) => void;
|
|
18985
|
+
} & {
|
|
18986
|
+
[k: string]: unknown;
|
|
18987
|
+
};
|
|
18974
18988
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
18975
18989
|
onUninstall?: ((args_0: {
|
|
18976
18990
|
events: Record<string, any>;
|
|
@@ -18999,11 +19013,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
18999
19013
|
} & {
|
|
19000
19014
|
[k: string]: unknown;
|
|
19001
19015
|
};
|
|
19002
|
-
drivers: {
|
|
19003
|
-
register: (...args: unknown[]) => void;
|
|
19004
|
-
} & {
|
|
19005
|
-
[k: string]: unknown;
|
|
19006
|
-
};
|
|
19007
19016
|
os: {
|
|
19008
19017
|
getCurrentUser: (...args: unknown[]) => any;
|
|
19009
19018
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -19024,6 +19033,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19024
19033
|
} & {
|
|
19025
19034
|
[k: string]: unknown;
|
|
19026
19035
|
};
|
|
19036
|
+
drivers: {
|
|
19037
|
+
register: (...args: unknown[]) => void;
|
|
19038
|
+
} & {
|
|
19039
|
+
[k: string]: unknown;
|
|
19040
|
+
};
|
|
19027
19041
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
19028
19042
|
onUpgrade?: ((args_0: {
|
|
19029
19043
|
events: Record<string, any>;
|
|
@@ -19052,11 +19066,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19052
19066
|
} & {
|
|
19053
19067
|
[k: string]: unknown;
|
|
19054
19068
|
};
|
|
19055
|
-
drivers: {
|
|
19056
|
-
register: (...args: unknown[]) => void;
|
|
19057
|
-
} & {
|
|
19058
|
-
[k: string]: unknown;
|
|
19059
|
-
};
|
|
19060
19069
|
os: {
|
|
19061
19070
|
getCurrentUser: (...args: unknown[]) => any;
|
|
19062
19071
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -19077,9 +19086,18 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19077
19086
|
} & {
|
|
19078
19087
|
[k: string]: unknown;
|
|
19079
19088
|
};
|
|
19089
|
+
drivers: {
|
|
19090
|
+
register: (...args: unknown[]) => void;
|
|
19091
|
+
} & {
|
|
19092
|
+
[k: string]: unknown;
|
|
19093
|
+
};
|
|
19080
19094
|
}, args_1: string, args_2: string, ...args: unknown[]) => Promise<void>) | undefined;
|
|
19095
|
+
staticPath?: string | undefined;
|
|
19096
|
+
slug?: string | undefined;
|
|
19081
19097
|
homepage?: string | undefined;
|
|
19082
19098
|
}, {
|
|
19099
|
+
type?: "theme" | "driver" | "app" | "standard" | "server" | "ui" | "agent" | "objectql" | undefined;
|
|
19100
|
+
default?: boolean | undefined;
|
|
19083
19101
|
description?: string | undefined;
|
|
19084
19102
|
version?: string | undefined;
|
|
19085
19103
|
id?: string | undefined;
|
|
@@ -19111,11 +19129,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19111
19129
|
} & {
|
|
19112
19130
|
[k: string]: unknown;
|
|
19113
19131
|
};
|
|
19114
|
-
drivers: {
|
|
19115
|
-
register: (...args: unknown[]) => void;
|
|
19116
|
-
} & {
|
|
19117
|
-
[k: string]: unknown;
|
|
19118
|
-
};
|
|
19119
19132
|
os: {
|
|
19120
19133
|
getCurrentUser: (...args: unknown[]) => any;
|
|
19121
19134
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -19136,6 +19149,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19136
19149
|
} & {
|
|
19137
19150
|
[k: string]: unknown;
|
|
19138
19151
|
};
|
|
19152
|
+
drivers: {
|
|
19153
|
+
register: (...args: unknown[]) => void;
|
|
19154
|
+
} & {
|
|
19155
|
+
[k: string]: unknown;
|
|
19156
|
+
};
|
|
19139
19157
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
19140
19158
|
onEnable?: ((args_0: {
|
|
19141
19159
|
events: Record<string, any>;
|
|
@@ -19164,11 +19182,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19164
19182
|
} & {
|
|
19165
19183
|
[k: string]: unknown;
|
|
19166
19184
|
};
|
|
19167
|
-
drivers: {
|
|
19168
|
-
register: (...args: unknown[]) => void;
|
|
19169
|
-
} & {
|
|
19170
|
-
[k: string]: unknown;
|
|
19171
|
-
};
|
|
19172
19185
|
os: {
|
|
19173
19186
|
getCurrentUser: (...args: unknown[]) => any;
|
|
19174
19187
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -19189,6 +19202,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19189
19202
|
} & {
|
|
19190
19203
|
[k: string]: unknown;
|
|
19191
19204
|
};
|
|
19205
|
+
drivers: {
|
|
19206
|
+
register: (...args: unknown[]) => void;
|
|
19207
|
+
} & {
|
|
19208
|
+
[k: string]: unknown;
|
|
19209
|
+
};
|
|
19192
19210
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
19193
19211
|
onDisable?: ((args_0: {
|
|
19194
19212
|
events: Record<string, any>;
|
|
@@ -19217,11 +19235,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19217
19235
|
} & {
|
|
19218
19236
|
[k: string]: unknown;
|
|
19219
19237
|
};
|
|
19220
|
-
drivers: {
|
|
19221
|
-
register: (...args: unknown[]) => void;
|
|
19222
|
-
} & {
|
|
19223
|
-
[k: string]: unknown;
|
|
19224
|
-
};
|
|
19225
19238
|
os: {
|
|
19226
19239
|
getCurrentUser: (...args: unknown[]) => any;
|
|
19227
19240
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -19242,6 +19255,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19242
19255
|
} & {
|
|
19243
19256
|
[k: string]: unknown;
|
|
19244
19257
|
};
|
|
19258
|
+
drivers: {
|
|
19259
|
+
register: (...args: unknown[]) => void;
|
|
19260
|
+
} & {
|
|
19261
|
+
[k: string]: unknown;
|
|
19262
|
+
};
|
|
19245
19263
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
19246
19264
|
onUninstall?: ((args_0: {
|
|
19247
19265
|
events: Record<string, any>;
|
|
@@ -19270,11 +19288,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19270
19288
|
} & {
|
|
19271
19289
|
[k: string]: unknown;
|
|
19272
19290
|
};
|
|
19273
|
-
drivers: {
|
|
19274
|
-
register: (...args: unknown[]) => void;
|
|
19275
|
-
} & {
|
|
19276
|
-
[k: string]: unknown;
|
|
19277
|
-
};
|
|
19278
19291
|
os: {
|
|
19279
19292
|
getCurrentUser: (...args: unknown[]) => any;
|
|
19280
19293
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -19295,6 +19308,11 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19295
19308
|
} & {
|
|
19296
19309
|
[k: string]: unknown;
|
|
19297
19310
|
};
|
|
19311
|
+
drivers: {
|
|
19312
|
+
register: (...args: unknown[]) => void;
|
|
19313
|
+
} & {
|
|
19314
|
+
[k: string]: unknown;
|
|
19315
|
+
};
|
|
19298
19316
|
}, ...args: unknown[]) => Promise<void>) | undefined;
|
|
19299
19317
|
onUpgrade?: ((args_0: {
|
|
19300
19318
|
events: Record<string, any>;
|
|
@@ -19323,11 +19341,6 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19323
19341
|
} & {
|
|
19324
19342
|
[k: string]: unknown;
|
|
19325
19343
|
};
|
|
19326
|
-
drivers: {
|
|
19327
|
-
register: (...args: unknown[]) => void;
|
|
19328
|
-
} & {
|
|
19329
|
-
[k: string]: unknown;
|
|
19330
|
-
};
|
|
19331
19344
|
os: {
|
|
19332
19345
|
getCurrentUser: (...args: unknown[]) => any;
|
|
19333
19346
|
getConfig: (...args: unknown[]) => any;
|
|
@@ -19348,7 +19361,14 @@ declare const PluginSchema: z.ZodObject<{
|
|
|
19348
19361
|
} & {
|
|
19349
19362
|
[k: string]: unknown;
|
|
19350
19363
|
};
|
|
19364
|
+
drivers: {
|
|
19365
|
+
register: (...args: unknown[]) => void;
|
|
19366
|
+
} & {
|
|
19367
|
+
[k: string]: unknown;
|
|
19368
|
+
};
|
|
19351
19369
|
}, args_1: string, args_2: string, ...args: unknown[]) => Promise<void>) | undefined;
|
|
19370
|
+
staticPath?: string | undefined;
|
|
19371
|
+
slug?: string | undefined;
|
|
19352
19372
|
homepage?: string | undefined;
|
|
19353
19373
|
}>;
|
|
19354
19374
|
type PluginDefinition = z.infer<typeof PluginSchema>;
|
|
@@ -19983,6 +20003,7 @@ type index_AdvancedPluginLifecycleConfig = AdvancedPluginLifecycleConfig;
|
|
|
19983
20003
|
declare const index_AdvancedPluginLifecycleConfigSchema: typeof AdvancedPluginLifecycleConfigSchema;
|
|
19984
20004
|
type index_BreakingChange = BreakingChange;
|
|
19985
20005
|
declare const index_BreakingChangeSchema: typeof BreakingChangeSchema;
|
|
20006
|
+
declare const index_CORE_PLUGIN_TYPES: typeof CORE_PLUGIN_TYPES;
|
|
19986
20007
|
type index_CapabilityConformanceLevel = CapabilityConformanceLevel;
|
|
19987
20008
|
declare const index_CapabilityConformanceLevelSchema: typeof CapabilityConformanceLevelSchema;
|
|
19988
20009
|
type index_CompatibilityLevel = CompatibilityLevel;
|
|
@@ -20217,7 +20238,7 @@ declare const index_createEventTypeDefinition: typeof createEventTypeDefinition;
|
|
|
20217
20238
|
declare const index_createEventWebhookConfig: typeof createEventWebhookConfig;
|
|
20218
20239
|
declare const index_definePlugin: typeof definePlugin;
|
|
20219
20240
|
declare namespace index {
|
|
20220
|
-
export { type index_AdvancedPluginLifecycleConfig as AdvancedPluginLifecycleConfig, index_AdvancedPluginLifecycleConfigSchema as AdvancedPluginLifecycleConfigSchema, type index_BreakingChange as BreakingChange, index_BreakingChangeSchema as BreakingChangeSchema, type index_CapabilityConformanceLevel as CapabilityConformanceLevel, index_CapabilityConformanceLevelSchema as CapabilityConformanceLevelSchema, type index_CompatibilityLevel as CompatibilityLevel, index_CompatibilityLevelSchema as CompatibilityLevelSchema, type index_CompatibilityMatrixEntry as CompatibilityMatrixEntry, index_CompatibilityMatrixEntrySchema as CompatibilityMatrixEntrySchema, type index_DeadLetterQueueEntry as DeadLetterQueueEntry, index_DeadLetterQueueEntrySchema as DeadLetterQueueEntrySchema, type index_DependencyConflict as DependencyConflict, index_DependencyConflictSchema as DependencyConflictSchema, type index_DependencyResolutionResult as DependencyResolutionResult, index_DependencyResolutionResultSchema as DependencyResolutionResultSchema, type index_DeprecationNotice as DeprecationNotice, index_DeprecationNoticeSchema as DeprecationNoticeSchema, type index_DistributedStateConfig as DistributedStateConfig, index_DistributedStateConfigSchema as DistributedStateConfigSchema, index_EVENT_PRIORITY_VALUES as EVENT_PRIORITY_VALUES, type index_Event as Event, type index_EventBusConfig as EventBusConfig, index_EventBusConfigSchema as EventBusConfigSchema, type index_EventHandler as EventHandler, index_EventHandlerSchema as EventHandlerSchema, type index_EventLogEntry as EventLogEntry, index_EventLogEntrySchema as EventLogEntrySchema, type index_EventMessageQueueConfig as EventMessageQueueConfig, index_EventMessageQueueConfigSchema as EventMessageQueueConfigSchema, index_EventMetadataSchema as EventMetadataSchema, type index_EventPersistence as EventPersistence, index_EventPersistenceSchema as EventPersistenceSchema, type index_EventPhase as EventPhase, index_EventPhaseSchema as EventPhaseSchema, type index_EventPriority as EventPriority, type index_EventQueueConfig as EventQueueConfig, index_EventQueueConfigSchema as EventQueueConfigSchema, type index_EventReplayConfig as EventReplayConfig, index_EventReplayConfigSchema as EventReplayConfigSchema, type index_EventRoute as EventRoute, index_EventRouteSchema as EventRouteSchema, index_EventSchema as EventSchema, type index_EventSourcingConfig as EventSourcingConfig, index_EventSourcingConfigSchema as EventSourcingConfigSchema, type index_EventTypeDefinition as EventTypeDefinition, index_EventTypeDefinitionSchema as EventTypeDefinitionSchema, type index_EventWebhookConfig as EventWebhookConfig, index_EventWebhookConfigSchema as EventWebhookConfigSchema, type index_ExtensionPoint as ExtensionPoint, index_ExtensionPointSchema as ExtensionPointSchema, type index_FeatureFlag as FeatureFlag, index_FeatureFlagSchema as FeatureFlagSchema, index_FeatureStrategy as FeatureStrategy, type index_GracefulDegradation as GracefulDegradation, index_GracefulDegradationSchema as GracefulDegradationSchema, type index_HealthStatus as HealthStatus, index_HealthStatusSchema as HealthStatusSchema, type index_HookRegisteredEvent as HookRegisteredEvent, index_HookRegisteredEventSchema as HookRegisteredEventSchema, type index_HookTriggeredEvent as HookTriggeredEvent, index_HookTriggeredEventSchema as HookTriggeredEventSchema, type index_HotReloadConfig as HotReloadConfig, index_HotReloadConfigSchema as HotReloadConfigSchema, type index_KernelContext as KernelContext, index_KernelContextSchema as KernelContextSchema, index_KernelEventBaseSchema as KernelEventBaseSchema, type index_KernelReadyEvent as KernelReadyEvent, index_KernelReadyEventSchema as KernelReadyEventSchema, type index_KernelShutdownEvent as KernelShutdownEvent, index_KernelShutdownEventSchema as KernelShutdownEventSchema, index_ManifestSchema as ManifestSchema, type index_MetadataCollectionInfo as MetadataCollectionInfo, index_MetadataCollectionInfoSchema as MetadataCollectionInfoSchema, type index_MetadataExportOptions as MetadataExportOptions, index_MetadataExportOptionsSchema as MetadataExportOptionsSchema, type index_MetadataFormat as MetadataFormat, index_MetadataFormatSchema as MetadataFormatSchema, type index_MetadataImportOptions as MetadataImportOptions, index_MetadataImportOptionsSchema as MetadataImportOptionsSchema, type index_MetadataLoadOptions as MetadataLoadOptions, index_MetadataLoadOptionsSchema as MetadataLoadOptionsSchema, type index_MetadataLoadResult as MetadataLoadResult, index_MetadataLoadResultSchema as MetadataLoadResultSchema, type index_MetadataLoaderContract as MetadataLoaderContract, index_MetadataLoaderContractSchema as MetadataLoaderContractSchema, type index_MetadataManagerConfig as MetadataManagerConfig, index_MetadataManagerConfigSchema as MetadataManagerConfigSchema, type index_MetadataSaveOptions as MetadataSaveOptions, index_MetadataSaveOptionsSchema as MetadataSaveOptionsSchema, type index_MetadataSaveResult as MetadataSaveResult, index_MetadataSaveResultSchema as MetadataSaveResultSchema, type index_MetadataStats as MetadataStats, index_MetadataStatsSchema as MetadataStatsSchema, type index_MetadataWatchEvent as MetadataWatchEvent, index_MetadataWatchEventSchema as MetadataWatchEventSchema, type index_MultiVersionSupport as MultiVersionSupport, index_MultiVersionSupportSchema as MultiVersionSupportSchema, type index_ObjectStackManifest as ObjectStackManifest, index_OpsDomainModuleSchema as OpsDomainModuleSchema, index_OpsFilePathSchema as OpsFilePathSchema, index_OpsPluginStructureSchema as OpsPluginStructureSchema, type index_Permission as Permission, type index_PermissionAction as PermissionAction, index_PermissionActionSchema as PermissionActionSchema, index_PermissionSchema as PermissionSchema, type index_PermissionScope as PermissionScope, index_PermissionScopeSchema as PermissionScopeSchema, type index_PermissionSet as PermissionSet, index_PermissionSetSchema as PermissionSetSchema, type index_PluginCaching as PluginCaching, index_PluginCachingSchema as PluginCachingSchema, type index_PluginCapability as PluginCapability, type index_PluginCapabilityManifest as PluginCapabilityManifest, index_PluginCapabilityManifestSchema as PluginCapabilityManifestSchema, index_PluginCapabilitySchema as PluginCapabilitySchema, type index_PluginCodeSplitting as PluginCodeSplitting, index_PluginCodeSplittingSchema as PluginCodeSplittingSchema, type index_PluginCompatibilityMatrix as PluginCompatibilityMatrix, index_PluginCompatibilityMatrixSchema as PluginCompatibilityMatrixSchema, type index_PluginContext as PluginContext, type index_PluginContextData as PluginContextData, index_PluginContextSchema as PluginContextSchema, type index_PluginDefinition as PluginDefinition, type index_PluginDependency as PluginDependency, type index_PluginDependencyResolution as PluginDependencyResolution, index_PluginDependencyResolutionSchema as PluginDependencyResolutionSchema, index_PluginDependencySchema as PluginDependencySchema, type index_PluginDynamicImport as PluginDynamicImport, index_PluginDynamicImportSchema as PluginDynamicImportSchema, type index_PluginErrorEvent as PluginErrorEvent, index_PluginErrorEventSchema as PluginErrorEventSchema, index_PluginEventBaseSchema as PluginEventBaseSchema, type index_PluginHealthCheck as PluginHealthCheck, index_PluginHealthCheckSchema as PluginHealthCheckSchema, type index_PluginHealthReport as PluginHealthReport, index_PluginHealthReportSchema as PluginHealthReportSchema, type index_PluginHealthStatus as PluginHealthStatus, index_PluginHealthStatusSchema as PluginHealthStatusSchema, type index_PluginHotReload as PluginHotReload, index_PluginHotReloadSchema as PluginHotReloadSchema, type index_PluginInitialization as PluginInitialization, index_PluginInitializationSchema as PluginInitializationSchema, type index_PluginInterface as PluginInterface, index_PluginInterfaceSchema as PluginInterfaceSchema, type index_PluginLifecycleEventType as PluginLifecycleEventType, type index_PluginLifecycleHooks as PluginLifecycleHooks, type index_PluginLifecyclePhaseEvent as PluginLifecyclePhaseEvent, index_PluginLifecyclePhaseEventSchema as PluginLifecyclePhaseEventSchema, index_PluginLifecycleSchema as PluginLifecycleSchema, type index_PluginLoadingConfig as PluginLoadingConfig, index_PluginLoadingConfigSchema as PluginLoadingConfigSchema, type index_PluginLoadingEvent as PluginLoadingEvent, index_PluginLoadingEventSchema as PluginLoadingEventSchema, type index_PluginLoadingState as PluginLoadingState, index_PluginLoadingStateSchema as PluginLoadingStateSchema, type index_PluginLoadingStrategy as PluginLoadingStrategy, index_PluginLoadingStrategySchema as PluginLoadingStrategySchema, type index_PluginMetadata as PluginMetadata, index_PluginMetadataSchema as PluginMetadataSchema, type index_PluginPerformanceMonitoring as PluginPerformanceMonitoring, index_PluginPerformanceMonitoringSchema as PluginPerformanceMonitoringSchema, type index_PluginPreloadConfig as PluginPreloadConfig, index_PluginPreloadConfigSchema as PluginPreloadConfigSchema, type index_PluginRegisteredEvent as PluginRegisteredEvent, index_PluginRegisteredEventSchema as PluginRegisteredEventSchema, type index_PluginSandboxing as PluginSandboxing, index_PluginSandboxingSchema as PluginSandboxingSchema, index_PluginSchema as PluginSchema, type index_PluginSecurityManifest as PluginSecurityManifest, index_PluginSecurityManifestSchema as PluginSecurityManifestSchema, type index_PluginStartupResult as PluginStartupResult, index_PluginStartupResultSchema as PluginStartupResultSchema, type index_PluginStateSnapshot as PluginStateSnapshot, index_PluginStateSnapshotSchema as PluginStateSnapshotSchema, type index_PluginTrustLevel as PluginTrustLevel, index_PluginTrustLevelSchema as PluginTrustLevelSchema, type index_PluginUpdateStrategy as PluginUpdateStrategy, index_PluginUpdateStrategySchema as PluginUpdateStrategySchema, type index_PluginVersionMetadata as PluginVersionMetadata, index_PluginVersionMetadataSchema as PluginVersionMetadataSchema, type index_ProtocolFeature as ProtocolFeature, index_ProtocolFeatureSchema as ProtocolFeatureSchema, type index_ProtocolReference as ProtocolReference, index_ProtocolReferenceSchema as ProtocolReferenceSchema, type index_ProtocolVersion as ProtocolVersion, index_ProtocolVersionSchema as ProtocolVersionSchema, type index_RealTimeNotificationConfig as RealTimeNotificationConfig, index_RealTimeNotificationConfigSchema as RealTimeNotificationConfigSchema, type index_ResourceType as ResourceType, index_ResourceTypeSchema as ResourceTypeSchema, type index_RuntimeConfig as RuntimeConfig, index_RuntimeConfigSchema as RuntimeConfigSchema, type index_RuntimeMode as RuntimeMode, type index_SandboxConfig as SandboxConfig, index_SandboxConfigSchema as SandboxConfigSchema, type index_ScopeConfig as ScopeConfig, index_ScopeConfigSchema as ScopeConfigSchema, type index_ScopeInfo as ScopeInfo, index_ScopeInfoSchema as ScopeInfoSchema, type index_SecurityPolicy as SecurityPolicy, index_SecurityPolicySchema as SecurityPolicySchema, type index_SecurityScanResult as SecurityScanResult, index_SecurityScanResultSchema as SecurityScanResultSchema, type index_SecurityVulnerability as SecurityVulnerability, index_SecurityVulnerabilitySchema as SecurityVulnerabilitySchema, type index_SemanticVersion as SemanticVersion, index_SemanticVersionSchema as SemanticVersionSchema, type index_ServiceFactoryRegistration as ServiceFactoryRegistration, index_ServiceFactoryRegistrationSchema as ServiceFactoryRegistrationSchema, type index_ServiceMetadata as ServiceMetadata, index_ServiceMetadataSchema as ServiceMetadataSchema, type index_ServiceRegisteredEvent as ServiceRegisteredEvent, index_ServiceRegisteredEventSchema as ServiceRegisteredEventSchema, type index_ServiceRegistryConfig as ServiceRegistryConfig, type index_ServiceRegistryConfigInput as ServiceRegistryConfigInput, index_ServiceRegistryConfigSchema as ServiceRegistryConfigSchema, type index_ServiceScopeType as ServiceScopeType, type index_ServiceUnregisteredEvent as ServiceUnregisteredEvent, index_ServiceUnregisteredEventSchema as ServiceUnregisteredEventSchema, type index_StartupOptions as StartupOptions, type index_StartupOptionsInput as StartupOptionsInput, index_StartupOptionsSchema as StartupOptionsSchema, type index_StartupOrchestrationResult as StartupOrchestrationResult, index_StartupOrchestrationResultSchema as StartupOrchestrationResultSchema, type index_ValidationError as ValidationError, index_ValidationErrorSchema as ValidationErrorSchema, type index_ValidationResult as ValidationResult, index_ValidationResultSchema as ValidationResultSchema, type index_ValidationWarning as ValidationWarning, index_ValidationWarningSchema as ValidationWarningSchema, type index_VersionConstraint as VersionConstraint, index_VersionConstraintSchema as VersionConstraintSchema, index_createEventBusConfig as createEventBusConfig, index_createEventTypeDefinition as createEventTypeDefinition, index_createEventWebhookConfig as createEventWebhookConfig, index_definePlugin as definePlugin };
|
|
20241
|
+
export { type index_AdvancedPluginLifecycleConfig as AdvancedPluginLifecycleConfig, index_AdvancedPluginLifecycleConfigSchema as AdvancedPluginLifecycleConfigSchema, type index_BreakingChange as BreakingChange, index_BreakingChangeSchema as BreakingChangeSchema, index_CORE_PLUGIN_TYPES as CORE_PLUGIN_TYPES, type index_CapabilityConformanceLevel as CapabilityConformanceLevel, index_CapabilityConformanceLevelSchema as CapabilityConformanceLevelSchema, type index_CompatibilityLevel as CompatibilityLevel, index_CompatibilityLevelSchema as CompatibilityLevelSchema, type index_CompatibilityMatrixEntry as CompatibilityMatrixEntry, index_CompatibilityMatrixEntrySchema as CompatibilityMatrixEntrySchema, type index_DeadLetterQueueEntry as DeadLetterQueueEntry, index_DeadLetterQueueEntrySchema as DeadLetterQueueEntrySchema, type index_DependencyConflict as DependencyConflict, index_DependencyConflictSchema as DependencyConflictSchema, type index_DependencyResolutionResult as DependencyResolutionResult, index_DependencyResolutionResultSchema as DependencyResolutionResultSchema, type index_DeprecationNotice as DeprecationNotice, index_DeprecationNoticeSchema as DeprecationNoticeSchema, type index_DistributedStateConfig as DistributedStateConfig, index_DistributedStateConfigSchema as DistributedStateConfigSchema, index_EVENT_PRIORITY_VALUES as EVENT_PRIORITY_VALUES, type index_Event as Event, type index_EventBusConfig as EventBusConfig, index_EventBusConfigSchema as EventBusConfigSchema, type index_EventHandler as EventHandler, index_EventHandlerSchema as EventHandlerSchema, type index_EventLogEntry as EventLogEntry, index_EventLogEntrySchema as EventLogEntrySchema, type index_EventMessageQueueConfig as EventMessageQueueConfig, index_EventMessageQueueConfigSchema as EventMessageQueueConfigSchema, index_EventMetadataSchema as EventMetadataSchema, type index_EventPersistence as EventPersistence, index_EventPersistenceSchema as EventPersistenceSchema, type index_EventPhase as EventPhase, index_EventPhaseSchema as EventPhaseSchema, type index_EventPriority as EventPriority, type index_EventQueueConfig as EventQueueConfig, index_EventQueueConfigSchema as EventQueueConfigSchema, type index_EventReplayConfig as EventReplayConfig, index_EventReplayConfigSchema as EventReplayConfigSchema, type index_EventRoute as EventRoute, index_EventRouteSchema as EventRouteSchema, index_EventSchema as EventSchema, type index_EventSourcingConfig as EventSourcingConfig, index_EventSourcingConfigSchema as EventSourcingConfigSchema, type index_EventTypeDefinition as EventTypeDefinition, index_EventTypeDefinitionSchema as EventTypeDefinitionSchema, type index_EventWebhookConfig as EventWebhookConfig, index_EventWebhookConfigSchema as EventWebhookConfigSchema, type index_ExtensionPoint as ExtensionPoint, index_ExtensionPointSchema as ExtensionPointSchema, type index_FeatureFlag as FeatureFlag, index_FeatureFlagSchema as FeatureFlagSchema, index_FeatureStrategy as FeatureStrategy, type index_GracefulDegradation as GracefulDegradation, index_GracefulDegradationSchema as GracefulDegradationSchema, type index_HealthStatus as HealthStatus, index_HealthStatusSchema as HealthStatusSchema, type index_HookRegisteredEvent as HookRegisteredEvent, index_HookRegisteredEventSchema as HookRegisteredEventSchema, type index_HookTriggeredEvent as HookTriggeredEvent, index_HookTriggeredEventSchema as HookTriggeredEventSchema, type index_HotReloadConfig as HotReloadConfig, index_HotReloadConfigSchema as HotReloadConfigSchema, type index_KernelContext as KernelContext, index_KernelContextSchema as KernelContextSchema, index_KernelEventBaseSchema as KernelEventBaseSchema, type index_KernelReadyEvent as KernelReadyEvent, index_KernelReadyEventSchema as KernelReadyEventSchema, type index_KernelShutdownEvent as KernelShutdownEvent, index_KernelShutdownEventSchema as KernelShutdownEventSchema, index_ManifestSchema as ManifestSchema, type index_MetadataCollectionInfo as MetadataCollectionInfo, index_MetadataCollectionInfoSchema as MetadataCollectionInfoSchema, type index_MetadataExportOptions as MetadataExportOptions, index_MetadataExportOptionsSchema as MetadataExportOptionsSchema, type index_MetadataFormat as MetadataFormat, index_MetadataFormatSchema as MetadataFormatSchema, type index_MetadataImportOptions as MetadataImportOptions, index_MetadataImportOptionsSchema as MetadataImportOptionsSchema, type index_MetadataLoadOptions as MetadataLoadOptions, index_MetadataLoadOptionsSchema as MetadataLoadOptionsSchema, type index_MetadataLoadResult as MetadataLoadResult, index_MetadataLoadResultSchema as MetadataLoadResultSchema, type index_MetadataLoaderContract as MetadataLoaderContract, index_MetadataLoaderContractSchema as MetadataLoaderContractSchema, type index_MetadataManagerConfig as MetadataManagerConfig, index_MetadataManagerConfigSchema as MetadataManagerConfigSchema, type index_MetadataSaveOptions as MetadataSaveOptions, index_MetadataSaveOptionsSchema as MetadataSaveOptionsSchema, type index_MetadataSaveResult as MetadataSaveResult, index_MetadataSaveResultSchema as MetadataSaveResultSchema, type index_MetadataStats as MetadataStats, index_MetadataStatsSchema as MetadataStatsSchema, type index_MetadataWatchEvent as MetadataWatchEvent, index_MetadataWatchEventSchema as MetadataWatchEventSchema, type index_MultiVersionSupport as MultiVersionSupport, index_MultiVersionSupportSchema as MultiVersionSupportSchema, type index_ObjectStackManifest as ObjectStackManifest, index_OpsDomainModuleSchema as OpsDomainModuleSchema, index_OpsFilePathSchema as OpsFilePathSchema, index_OpsPluginStructureSchema as OpsPluginStructureSchema, type index_Permission as Permission, type index_PermissionAction as PermissionAction, index_PermissionActionSchema as PermissionActionSchema, index_PermissionSchema as PermissionSchema, type index_PermissionScope as PermissionScope, index_PermissionScopeSchema as PermissionScopeSchema, type index_PermissionSet as PermissionSet, index_PermissionSetSchema as PermissionSetSchema, type index_PluginCaching as PluginCaching, index_PluginCachingSchema as PluginCachingSchema, type index_PluginCapability as PluginCapability, type index_PluginCapabilityManifest as PluginCapabilityManifest, index_PluginCapabilityManifestSchema as PluginCapabilityManifestSchema, index_PluginCapabilitySchema as PluginCapabilitySchema, type index_PluginCodeSplitting as PluginCodeSplitting, index_PluginCodeSplittingSchema as PluginCodeSplittingSchema, type index_PluginCompatibilityMatrix as PluginCompatibilityMatrix, index_PluginCompatibilityMatrixSchema as PluginCompatibilityMatrixSchema, type index_PluginContext as PluginContext, type index_PluginContextData as PluginContextData, index_PluginContextSchema as PluginContextSchema, type index_PluginDefinition as PluginDefinition, type index_PluginDependency as PluginDependency, type index_PluginDependencyResolution as PluginDependencyResolution, index_PluginDependencyResolutionSchema as PluginDependencyResolutionSchema, index_PluginDependencySchema as PluginDependencySchema, type index_PluginDynamicImport as PluginDynamicImport, index_PluginDynamicImportSchema as PluginDynamicImportSchema, type index_PluginErrorEvent as PluginErrorEvent, index_PluginErrorEventSchema as PluginErrorEventSchema, index_PluginEventBaseSchema as PluginEventBaseSchema, type index_PluginHealthCheck as PluginHealthCheck, index_PluginHealthCheckSchema as PluginHealthCheckSchema, type index_PluginHealthReport as PluginHealthReport, index_PluginHealthReportSchema as PluginHealthReportSchema, type index_PluginHealthStatus as PluginHealthStatus, index_PluginHealthStatusSchema as PluginHealthStatusSchema, type index_PluginHotReload as PluginHotReload, index_PluginHotReloadSchema as PluginHotReloadSchema, type index_PluginInitialization as PluginInitialization, index_PluginInitializationSchema as PluginInitializationSchema, type index_PluginInterface as PluginInterface, index_PluginInterfaceSchema as PluginInterfaceSchema, type index_PluginLifecycleEventType as PluginLifecycleEventType, type index_PluginLifecycleHooks as PluginLifecycleHooks, type index_PluginLifecyclePhaseEvent as PluginLifecyclePhaseEvent, index_PluginLifecyclePhaseEventSchema as PluginLifecyclePhaseEventSchema, index_PluginLifecycleSchema as PluginLifecycleSchema, type index_PluginLoadingConfig as PluginLoadingConfig, index_PluginLoadingConfigSchema as PluginLoadingConfigSchema, type index_PluginLoadingEvent as PluginLoadingEvent, index_PluginLoadingEventSchema as PluginLoadingEventSchema, type index_PluginLoadingState as PluginLoadingState, index_PluginLoadingStateSchema as PluginLoadingStateSchema, type index_PluginLoadingStrategy as PluginLoadingStrategy, index_PluginLoadingStrategySchema as PluginLoadingStrategySchema, type index_PluginMetadata as PluginMetadata, index_PluginMetadataSchema as PluginMetadataSchema, type index_PluginPerformanceMonitoring as PluginPerformanceMonitoring, index_PluginPerformanceMonitoringSchema as PluginPerformanceMonitoringSchema, type index_PluginPreloadConfig as PluginPreloadConfig, index_PluginPreloadConfigSchema as PluginPreloadConfigSchema, type index_PluginRegisteredEvent as PluginRegisteredEvent, index_PluginRegisteredEventSchema as PluginRegisteredEventSchema, type index_PluginSandboxing as PluginSandboxing, index_PluginSandboxingSchema as PluginSandboxingSchema, index_PluginSchema as PluginSchema, type index_PluginSecurityManifest as PluginSecurityManifest, index_PluginSecurityManifestSchema as PluginSecurityManifestSchema, type index_PluginStartupResult as PluginStartupResult, index_PluginStartupResultSchema as PluginStartupResultSchema, type index_PluginStateSnapshot as PluginStateSnapshot, index_PluginStateSnapshotSchema as PluginStateSnapshotSchema, type index_PluginTrustLevel as PluginTrustLevel, index_PluginTrustLevelSchema as PluginTrustLevelSchema, type index_PluginUpdateStrategy as PluginUpdateStrategy, index_PluginUpdateStrategySchema as PluginUpdateStrategySchema, type index_PluginVersionMetadata as PluginVersionMetadata, index_PluginVersionMetadataSchema as PluginVersionMetadataSchema, type index_ProtocolFeature as ProtocolFeature, index_ProtocolFeatureSchema as ProtocolFeatureSchema, type index_ProtocolReference as ProtocolReference, index_ProtocolReferenceSchema as ProtocolReferenceSchema, type index_ProtocolVersion as ProtocolVersion, index_ProtocolVersionSchema as ProtocolVersionSchema, type index_RealTimeNotificationConfig as RealTimeNotificationConfig, index_RealTimeNotificationConfigSchema as RealTimeNotificationConfigSchema, type index_ResourceType as ResourceType, index_ResourceTypeSchema as ResourceTypeSchema, type index_RuntimeConfig as RuntimeConfig, index_RuntimeConfigSchema as RuntimeConfigSchema, type index_RuntimeMode as RuntimeMode, type index_SandboxConfig as SandboxConfig, index_SandboxConfigSchema as SandboxConfigSchema, type index_ScopeConfig as ScopeConfig, index_ScopeConfigSchema as ScopeConfigSchema, type index_ScopeInfo as ScopeInfo, index_ScopeInfoSchema as ScopeInfoSchema, type index_SecurityPolicy as SecurityPolicy, index_SecurityPolicySchema as SecurityPolicySchema, type index_SecurityScanResult as SecurityScanResult, index_SecurityScanResultSchema as SecurityScanResultSchema, type index_SecurityVulnerability as SecurityVulnerability, index_SecurityVulnerabilitySchema as SecurityVulnerabilitySchema, type index_SemanticVersion as SemanticVersion, index_SemanticVersionSchema as SemanticVersionSchema, type index_ServiceFactoryRegistration as ServiceFactoryRegistration, index_ServiceFactoryRegistrationSchema as ServiceFactoryRegistrationSchema, type index_ServiceMetadata as ServiceMetadata, index_ServiceMetadataSchema as ServiceMetadataSchema, type index_ServiceRegisteredEvent as ServiceRegisteredEvent, index_ServiceRegisteredEventSchema as ServiceRegisteredEventSchema, type index_ServiceRegistryConfig as ServiceRegistryConfig, type index_ServiceRegistryConfigInput as ServiceRegistryConfigInput, index_ServiceRegistryConfigSchema as ServiceRegistryConfigSchema, type index_ServiceScopeType as ServiceScopeType, type index_ServiceUnregisteredEvent as ServiceUnregisteredEvent, index_ServiceUnregisteredEventSchema as ServiceUnregisteredEventSchema, type index_StartupOptions as StartupOptions, type index_StartupOptionsInput as StartupOptionsInput, index_StartupOptionsSchema as StartupOptionsSchema, type index_StartupOrchestrationResult as StartupOrchestrationResult, index_StartupOrchestrationResultSchema as StartupOrchestrationResultSchema, type index_ValidationError as ValidationError, index_ValidationErrorSchema as ValidationErrorSchema, type index_ValidationResult as ValidationResult, index_ValidationResultSchema as ValidationResultSchema, type index_ValidationWarning as ValidationWarning, index_ValidationWarningSchema as ValidationWarningSchema, type index_VersionConstraint as VersionConstraint, index_VersionConstraintSchema as VersionConstraintSchema, index_createEventBusConfig as createEventBusConfig, index_createEventTypeDefinition as createEventTypeDefinition, index_createEventWebhookConfig as createEventWebhookConfig, index_definePlugin as definePlugin };
|
|
20221
20242
|
}
|
|
20222
20243
|
|
|
20223
|
-
export { MetadataWatchEventSchema as $, EventMessageQueueConfigSchema as A, type EventMessageQueueConfig as B, RealTimeNotificationConfigSchema as C, DeadLetterQueueEntrySchema as D, EventPriority as E, type RealTimeNotificationConfig as F, EventBusConfigSchema as G, type EventBusConfig as H, createEventBusConfig as I, createEventTypeDefinition as J, KernelContextSchema as K, createEventWebhookConfig as L, FeatureStrategy as M, FeatureFlagSchema as N, FeatureFlag as O, type PluginContext as P, ManifestSchema as Q, RuntimeMode as R, type ObjectStackManifest as S, MetadataFormatSchema as T, MetadataStatsSchema as U, MetadataLoadOptionsSchema as V, MetadataSaveOptionsSchema as W, MetadataExportOptionsSchema as X, MetadataImportOptionsSchema as Y, MetadataLoadResultSchema as Z, MetadataSaveResultSchema as _, type KernelContext as a, type ServiceUnregisteredEvent as a$, MetadataCollectionInfoSchema as a0, MetadataLoaderContractSchema as a1, MetadataManagerConfigSchema as a2, type MetadataFormat as a3, type MetadataStats as a4, type MetadataLoadOptions as a5, type MetadataSaveOptions as a6, type MetadataExportOptions as a7, type MetadataImportOptions as a8, type MetadataLoadResult as a9, DistributedStateConfigSchema as aA, HotReloadConfigSchema as aB, GracefulDegradationSchema as aC, PluginUpdateStrategySchema as aD, PluginStateSnapshotSchema as aE, AdvancedPluginLifecycleConfigSchema as aF, type PluginHealthStatus as aG, type PluginHealthCheck as aH, type PluginHealthReport as aI, type DistributedStateConfig as aJ, type HotReloadConfig as aK, type GracefulDegradation as aL, type PluginUpdateStrategy as aM, type PluginStateSnapshot as aN, type AdvancedPluginLifecycleConfig as aO, EventPhaseSchema as aP, type EventPhase as aQ, PluginEventBaseSchema as aR, PluginRegisteredEventSchema as aS, type PluginRegisteredEvent as aT, PluginLifecyclePhaseEventSchema as aU, type PluginLifecyclePhaseEvent as aV, PluginErrorEventSchema as aW, type PluginErrorEvent as aX, ServiceRegisteredEventSchema as aY, type ServiceRegisteredEvent as aZ, ServiceUnregisteredEventSchema as a_, type MetadataSaveResult as aa, type MetadataWatchEvent as ab, type MetadataCollectionInfo as ac, type MetadataLoaderContract as ad, type MetadataManagerConfig as ae, CapabilityConformanceLevelSchema as af, ProtocolVersionSchema as ag, ProtocolReferenceSchema as ah, ProtocolFeatureSchema as ai, PluginCapabilitySchema as aj, PluginInterfaceSchema as ak, PluginDependencySchema as al, ExtensionPointSchema as am, PluginCapabilityManifestSchema as an, type CapabilityConformanceLevel as ao, type ProtocolVersion as ap, type ProtocolReference as aq, type ProtocolFeature as ar, type PluginCapability as as, type PluginInterface as at, type PluginDependency as au, type ExtensionPoint as av, type PluginCapabilityManifest as aw, PluginHealthStatusSchema as ax, PluginHealthCheckSchema as ay, PluginHealthReportSchema as az, EVENT_PRIORITY_VALUES as b, ValidationErrorSchema as b$, HookRegisteredEventSchema as b0, type HookRegisteredEvent as b1, HookTriggeredEventSchema as b2, type HookTriggeredEvent as b3, KernelEventBaseSchema as b4, KernelReadyEventSchema as b5, type KernelReadyEvent as b6, KernelShutdownEventSchema as b7, type KernelShutdownEvent as b8, PluginLifecycleEventType as b9, PermissionScopeSchema as bA, PermissionActionSchema as bB, ResourceTypeSchema as bC, PermissionSchema as bD, PermissionSetSchema as bE, RuntimeConfigSchema as bF, SandboxConfigSchema as bG, SecurityVulnerabilitySchema as bH, SecurityScanResultSchema as bI, SecurityPolicySchema as bJ, PluginTrustLevelSchema as bK, PluginSecurityManifestSchema as bL, type PermissionScope as bM, type PermissionAction as bN, type ResourceType as bO, type Permission as bP, type PermissionSet as bQ, type RuntimeConfig as bR, type SandboxConfig as bS, type SecurityVulnerability as bT, type SecurityScanResult as bU, type SecurityPolicy as bV, type PluginTrustLevel as bW, type PluginSecurityManifest as bX, OpsFilePathSchema as bY, OpsDomainModuleSchema as bZ, OpsPluginStructureSchema as b_, PluginLoadingStrategySchema as ba, PluginPreloadConfigSchema as bb, PluginCodeSplittingSchema as bc, PluginDynamicImportSchema as bd, PluginInitializationSchema as be, PluginDependencyResolutionSchema as bf, PluginHotReloadSchema as bg, PluginCachingSchema as bh, PluginSandboxingSchema as bi, PluginPerformanceMonitoringSchema as bj, PluginLoadingConfigSchema as bk, PluginLoadingEventSchema as bl, PluginLoadingStateSchema as bm, type PluginLoadingStrategy as bn, type PluginPreloadConfig as bo, type PluginCodeSplitting as bp, type PluginDynamicImport as bq, type PluginInitialization as br, type PluginDependencyResolution as bs, type PluginHotReload as bt, type PluginCaching as bu, type PluginSandboxing as bv, type PluginPerformanceMonitoring as bw, type PluginLoadingConfig as bx, type PluginLoadingEvent as by, type PluginLoadingState as bz, EventMetadataSchema as c, type ValidationError as c0, ValidationWarningSchema as c1, type ValidationWarning as c2, ValidationResultSchema as c3, type ValidationResult as c4, PluginMetadataSchema as c5, type PluginMetadata as c6, SemanticVersionSchema as c7, VersionConstraintSchema as c8, CompatibilityLevelSchema as c9,
|
|
20244
|
+
export { MetadataWatchEventSchema as $, EventMessageQueueConfigSchema as A, type EventMessageQueueConfig as B, RealTimeNotificationConfigSchema as C, DeadLetterQueueEntrySchema as D, EventPriority as E, type RealTimeNotificationConfig as F, EventBusConfigSchema as G, type EventBusConfig as H, createEventBusConfig as I, createEventTypeDefinition as J, KernelContextSchema as K, createEventWebhookConfig as L, FeatureStrategy as M, FeatureFlagSchema as N, FeatureFlag as O, type PluginContext as P, ManifestSchema as Q, RuntimeMode as R, type ObjectStackManifest as S, MetadataFormatSchema as T, MetadataStatsSchema as U, MetadataLoadOptionsSchema as V, MetadataSaveOptionsSchema as W, MetadataExportOptionsSchema as X, MetadataImportOptionsSchema as Y, MetadataLoadResultSchema as Z, MetadataSaveResultSchema as _, type KernelContext as a, type ServiceUnregisteredEvent as a$, MetadataCollectionInfoSchema as a0, MetadataLoaderContractSchema as a1, MetadataManagerConfigSchema as a2, type MetadataFormat as a3, type MetadataStats as a4, type MetadataLoadOptions as a5, type MetadataSaveOptions as a6, type MetadataExportOptions as a7, type MetadataImportOptions as a8, type MetadataLoadResult as a9, DistributedStateConfigSchema as aA, HotReloadConfigSchema as aB, GracefulDegradationSchema as aC, PluginUpdateStrategySchema as aD, PluginStateSnapshotSchema as aE, AdvancedPluginLifecycleConfigSchema as aF, type PluginHealthStatus as aG, type PluginHealthCheck as aH, type PluginHealthReport as aI, type DistributedStateConfig as aJ, type HotReloadConfig as aK, type GracefulDegradation as aL, type PluginUpdateStrategy as aM, type PluginStateSnapshot as aN, type AdvancedPluginLifecycleConfig as aO, EventPhaseSchema as aP, type EventPhase as aQ, PluginEventBaseSchema as aR, PluginRegisteredEventSchema as aS, type PluginRegisteredEvent as aT, PluginLifecyclePhaseEventSchema as aU, type PluginLifecyclePhaseEvent as aV, PluginErrorEventSchema as aW, type PluginErrorEvent as aX, ServiceRegisteredEventSchema as aY, type ServiceRegisteredEvent as aZ, ServiceUnregisteredEventSchema as a_, type MetadataSaveResult as aa, type MetadataWatchEvent as ab, type MetadataCollectionInfo as ac, type MetadataLoaderContract as ad, type MetadataManagerConfig as ae, CapabilityConformanceLevelSchema as af, ProtocolVersionSchema as ag, ProtocolReferenceSchema as ah, ProtocolFeatureSchema as ai, PluginCapabilitySchema as aj, PluginInterfaceSchema as ak, PluginDependencySchema as al, ExtensionPointSchema as am, PluginCapabilityManifestSchema as an, type CapabilityConformanceLevel as ao, type ProtocolVersion as ap, type ProtocolReference as aq, type ProtocolFeature as ar, type PluginCapability as as, type PluginInterface as at, type PluginDependency as au, type ExtensionPoint as av, type PluginCapabilityManifest as aw, PluginHealthStatusSchema as ax, PluginHealthCheckSchema as ay, PluginHealthReportSchema as az, EVENT_PRIORITY_VALUES as b, ValidationErrorSchema as b$, HookRegisteredEventSchema as b0, type HookRegisteredEvent as b1, HookTriggeredEventSchema as b2, type HookTriggeredEvent as b3, KernelEventBaseSchema as b4, KernelReadyEventSchema as b5, type KernelReadyEvent as b6, KernelShutdownEventSchema as b7, type KernelShutdownEvent as b8, PluginLifecycleEventType as b9, PermissionScopeSchema as bA, PermissionActionSchema as bB, ResourceTypeSchema as bC, PermissionSchema as bD, PermissionSetSchema as bE, RuntimeConfigSchema as bF, SandboxConfigSchema as bG, SecurityVulnerabilitySchema as bH, SecurityScanResultSchema as bI, SecurityPolicySchema as bJ, PluginTrustLevelSchema as bK, PluginSecurityManifestSchema as bL, type PermissionScope as bM, type PermissionAction as bN, type ResourceType as bO, type Permission as bP, type PermissionSet as bQ, type RuntimeConfig as bR, type SandboxConfig as bS, type SecurityVulnerability as bT, type SecurityScanResult as bU, type SecurityPolicy as bV, type PluginTrustLevel as bW, type PluginSecurityManifest as bX, OpsFilePathSchema as bY, OpsDomainModuleSchema as bZ, OpsPluginStructureSchema as b_, PluginLoadingStrategySchema as ba, PluginPreloadConfigSchema as bb, PluginCodeSplittingSchema as bc, PluginDynamicImportSchema as bd, PluginInitializationSchema as be, PluginDependencyResolutionSchema as bf, PluginHotReloadSchema as bg, PluginCachingSchema as bh, PluginSandboxingSchema as bi, PluginPerformanceMonitoringSchema as bj, PluginLoadingConfigSchema as bk, PluginLoadingEventSchema as bl, PluginLoadingStateSchema as bm, type PluginLoadingStrategy as bn, type PluginPreloadConfig as bo, type PluginCodeSplitting as bp, type PluginDynamicImport as bq, type PluginInitialization as br, type PluginDependencyResolution as bs, type PluginHotReload as bt, type PluginCaching as bu, type PluginSandboxing as bv, type PluginPerformanceMonitoring as bw, type PluginLoadingConfig as bx, type PluginLoadingEvent as by, type PluginLoadingState as bz, EventMetadataSchema as c, type ValidationError as c0, ValidationWarningSchema as c1, type ValidationWarning as c2, ValidationResultSchema as c3, type ValidationResult as c4, PluginMetadataSchema as c5, type PluginMetadata as c6, SemanticVersionSchema as c7, VersionConstraintSchema as c8, CompatibilityLevelSchema as c9, ServiceScopeType as cA, ServiceMetadataSchema as cB, type ServiceMetadata as cC, ServiceRegistryConfigSchema as cD, type ServiceRegistryConfig as cE, type ServiceRegistryConfigInput as cF, ServiceFactoryRegistrationSchema as cG, type ServiceFactoryRegistration as cH, ScopeConfigSchema as cI, type ScopeConfig as cJ, ScopeInfoSchema as cK, type ScopeInfo as cL, StartupOptionsSchema as cM, type StartupOptions as cN, type StartupOptionsInput as cO, HealthStatusSchema as cP, type HealthStatus as cQ, PluginStartupResultSchema as cR, type PluginStartupResult as cS, StartupOrchestrationResultSchema as cT, type StartupOrchestrationResult as cU, BreakingChangeSchema as ca, DeprecationNoticeSchema as cb, CompatibilityMatrixEntrySchema as cc, PluginCompatibilityMatrixSchema as cd, DependencyConflictSchema as ce, DependencyResolutionResultSchema as cf, MultiVersionSupportSchema as cg, PluginVersionMetadataSchema as ch, type SemanticVersion as ci, type VersionConstraint as cj, type CompatibilityLevel as ck, type BreakingChange as cl, type DeprecationNotice as cm, type CompatibilityMatrixEntry as cn, type PluginCompatibilityMatrix as co, type DependencyConflict as cp, type DependencyResolutionResult as cq, type MultiVersionSupport as cr, type PluginVersionMetadata as cs, PluginContextSchema as ct, type PluginContextData as cu, PluginLifecycleSchema as cv, type PluginLifecycleHooks as cw, CORE_PLUGIN_TYPES as cx, PluginSchema as cy, type PluginDefinition as cz, definePlugin as d, EventTypeDefinitionSchema as e, type EventTypeDefinition as f, EventSchema as g, type Event as h, index as i, EventHandlerSchema as j, type EventHandler as k, EventRouteSchema as l, type EventRoute as m, EventPersistenceSchema as n, type EventPersistence as o, EventQueueConfigSchema as p, type EventQueueConfig as q, EventReplayConfigSchema as r, type EventReplayConfig as s, EventSourcingConfigSchema as t, type EventSourcingConfig as u, type DeadLetterQueueEntry as v, EventLogEntrySchema as w, type EventLogEntry as x, EventWebhookConfigSchema as y, type EventWebhookConfig as z };
|