@contractspec/lib.contracts 1.45.5 → 1.45.6
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/app-config/contracts.d.ts +50 -50
- package/dist/app-config/events.d.ts +27 -27
- package/dist/app-config/lifecycle-contracts.d.ts +54 -54
- package/dist/examples/schema.d.ts +7 -7
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -2
- package/dist/integrations/openbanking/contracts/accounts.d.ts +66 -66
- package/dist/integrations/openbanking/contracts/balances.d.ts +34 -34
- package/dist/integrations/openbanking/contracts/transactions.d.ts +48 -48
- package/dist/integrations/openbanking/models.d.ts +55 -55
- package/dist/integrations/operations.d.ts +102 -102
- package/dist/knowledge/operations.d.ts +66 -66
- package/dist/onboarding-base.d.ts +29 -29
- package/dist/workspace-config/contractsrc-schema.d.ts +57 -8
- package/dist/workspace-config/contractsrc-schema.js +26 -2
- package/dist/workspace-config/index.d.ts +2 -2
- package/dist/workspace-config/index.js +2 -2
- package/package.json +5 -5
|
@@ -218,6 +218,29 @@ const VersioningConfigSchema = z$2.object({
|
|
|
218
218
|
exclude: z$2.array(z$2.string()).optional()
|
|
219
219
|
});
|
|
220
220
|
/**
|
|
221
|
+
* Supported rule synchronization targets.
|
|
222
|
+
*/
|
|
223
|
+
const RuleSyncTargetSchema = z$2.enum([
|
|
224
|
+
"cursor",
|
|
225
|
+
"windsurf",
|
|
226
|
+
"cline",
|
|
227
|
+
"claude-code",
|
|
228
|
+
"copilot",
|
|
229
|
+
"subagent",
|
|
230
|
+
"skill"
|
|
231
|
+
]);
|
|
232
|
+
/**
|
|
233
|
+
* Configuration for AI agent rules synchronization (rulesync).
|
|
234
|
+
*/
|
|
235
|
+
const RuleSyncConfigSchema = z$2.object({
|
|
236
|
+
enabled: z$2.boolean().default(false),
|
|
237
|
+
rulesDir: z$2.string().default("./.rules"),
|
|
238
|
+
rules: z$2.array(z$2.string()).default(["**/*.rule.md"]),
|
|
239
|
+
targets: z$2.array(RuleSyncTargetSchema).default(["cursor", "windsurf"]),
|
|
240
|
+
autoSync: z$2.boolean().default(true),
|
|
241
|
+
ejectMode: z$2.boolean().default(false)
|
|
242
|
+
});
|
|
243
|
+
/**
|
|
221
244
|
* Rule severity levels (inspired by ESLint).
|
|
222
245
|
*/
|
|
223
246
|
const RuleSeveritySchema = z$2.enum([
|
|
@@ -302,7 +325,8 @@ const ContractsrcSchema = z$2.object({
|
|
|
302
325
|
hooks: HooksConfigSchema.optional(),
|
|
303
326
|
schemaFormat: SchemaFormatSchema.default("contractspec"),
|
|
304
327
|
formatter: FormatterConfigSchema.optional(),
|
|
305
|
-
versioning: VersioningConfigSchema.optional()
|
|
328
|
+
versioning: VersioningConfigSchema.optional(),
|
|
329
|
+
ruleSync: RuleSyncConfigSchema.optional()
|
|
306
330
|
});
|
|
307
331
|
/**
|
|
308
332
|
* Default configuration values.
|
|
@@ -325,4 +349,4 @@ const DEFAULT_CONTRACTSRC = {
|
|
|
325
349
|
};
|
|
326
350
|
|
|
327
351
|
//#endregion
|
|
328
|
-
export { BumpStrategySchema, ChangelogFormatSchema, ChangelogTierSchema, CheckRunConfigSchema, CiConfigSchema, ContractsrcSchema, DEFAULT_CONTRACTSRC, ExternalWorkspaceSchema, FolderConventionsSchema, FormatterConfigSchema, FormatterTypeSchema, GroupingRuleSchema, GroupingStrategySchema, HooksConfigSchema, ImpactConfigSchema, LintRulesSchema, MetaRepoConfigSchema, OpenApiConfigSchema, OpenApiExportConfigSchema, OpenApiSourceConfigSchema, PrCommentConfigSchema, RuleSeveritySchema, RulesConfigSchema, SchemaFormatSchema, SpecKindSchema, VersioningConfigSchema };
|
|
352
|
+
export { BumpStrategySchema, ChangelogFormatSchema, ChangelogTierSchema, CheckRunConfigSchema, CiConfigSchema, ContractsrcSchema, DEFAULT_CONTRACTSRC, ExternalWorkspaceSchema, FolderConventionsSchema, FormatterConfigSchema, FormatterTypeSchema, GroupingRuleSchema, GroupingStrategySchema, HooksConfigSchema, ImpactConfigSchema, LintRulesSchema, MetaRepoConfigSchema, OpenApiConfigSchema, OpenApiExportConfigSchema, OpenApiSourceConfigSchema, PrCommentConfigSchema, RuleSeveritySchema, RuleSyncConfigSchema, RuleSyncTargetSchema, RulesConfigSchema, SchemaFormatSchema, SpecKindSchema, VersioningConfigSchema };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { BumpStrategy, BumpStrategySchema, ChangelogFormat, ChangelogFormatSchema, ChangelogTier, ChangelogTierSchema, ContractsrcConfig, ContractsrcSchema, DEFAULT_CONTRACTSRC, FolderConventions, FolderConventionsSchema, FormatterConfig, FormatterConfigSchema, FormatterType, FormatterTypeSchema, OpenApiConfig, OpenApiConfigSchema, OpenApiExportConfig, OpenApiExportConfigSchema, OpenApiSourceConfig, OpenApiSourceConfigSchema, SchemaFormat, SchemaFormatSchema, VersioningConfig, VersioningConfigSchema } from "./contractsrc-schema.js";
|
|
2
|
-
export { type BumpStrategy, BumpStrategySchema, type ChangelogFormat, ChangelogFormatSchema, type ChangelogTier, ChangelogTierSchema, type ContractsrcConfig, ContractsrcSchema, DEFAULT_CONTRACTSRC, type FolderConventions, FolderConventionsSchema, type FormatterConfig, FormatterConfigSchema, type FormatterType, FormatterTypeSchema, type OpenApiConfig, OpenApiConfigSchema, type OpenApiExportConfig, OpenApiExportConfigSchema, type OpenApiSourceConfig, OpenApiSourceConfigSchema, type SchemaFormat, SchemaFormatSchema, type VersioningConfig, VersioningConfigSchema };
|
|
1
|
+
import { BumpStrategy, BumpStrategySchema, ChangelogFormat, ChangelogFormatSchema, ChangelogTier, ChangelogTierSchema, ContractsrcConfig, ContractsrcSchema, DEFAULT_CONTRACTSRC, FolderConventions, FolderConventionsSchema, FormatterConfig, FormatterConfigSchema, FormatterType, FormatterTypeSchema, OpenApiConfig, OpenApiConfigSchema, OpenApiExportConfig, OpenApiExportConfigSchema, OpenApiSourceConfig, OpenApiSourceConfigSchema, RuleSyncConfig, RuleSyncConfigSchema, RuleSyncTarget, RuleSyncTargetSchema, SchemaFormat, SchemaFormatSchema, VersioningConfig, VersioningConfigSchema } from "./contractsrc-schema.js";
|
|
2
|
+
export { type BumpStrategy, BumpStrategySchema, type ChangelogFormat, ChangelogFormatSchema, type ChangelogTier, ChangelogTierSchema, type ContractsrcConfig, ContractsrcSchema, DEFAULT_CONTRACTSRC, type FolderConventions, FolderConventionsSchema, type FormatterConfig, FormatterConfigSchema, type FormatterType, FormatterTypeSchema, type OpenApiConfig, OpenApiConfigSchema, type OpenApiExportConfig, OpenApiExportConfigSchema, type OpenApiSourceConfig, OpenApiSourceConfigSchema, type RuleSyncConfig, RuleSyncConfigSchema, type RuleSyncTarget, RuleSyncTargetSchema, type SchemaFormat, SchemaFormatSchema, type VersioningConfig, VersioningConfigSchema };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { BumpStrategySchema, ChangelogFormatSchema, ChangelogTierSchema, ContractsrcSchema, DEFAULT_CONTRACTSRC, FolderConventionsSchema, FormatterConfigSchema, FormatterTypeSchema, OpenApiConfigSchema, OpenApiExportConfigSchema, OpenApiSourceConfigSchema, SchemaFormatSchema, VersioningConfigSchema } from "./contractsrc-schema.js";
|
|
1
|
+
import { BumpStrategySchema, ChangelogFormatSchema, ChangelogTierSchema, ContractsrcSchema, DEFAULT_CONTRACTSRC, FolderConventionsSchema, FormatterConfigSchema, FormatterTypeSchema, OpenApiConfigSchema, OpenApiExportConfigSchema, OpenApiSourceConfigSchema, RuleSyncConfigSchema, RuleSyncTargetSchema, SchemaFormatSchema, VersioningConfigSchema } from "./contractsrc-schema.js";
|
|
2
2
|
|
|
3
|
-
export { BumpStrategySchema, ChangelogFormatSchema, ChangelogTierSchema, ContractsrcSchema, DEFAULT_CONTRACTSRC, FolderConventionsSchema, FormatterConfigSchema, FormatterTypeSchema, OpenApiConfigSchema, OpenApiExportConfigSchema, OpenApiSourceConfigSchema, SchemaFormatSchema, VersioningConfigSchema };
|
|
3
|
+
export { BumpStrategySchema, ChangelogFormatSchema, ChangelogTierSchema, ContractsrcSchema, DEFAULT_CONTRACTSRC, FolderConventionsSchema, FormatterConfigSchema, FormatterTypeSchema, OpenApiConfigSchema, OpenApiExportConfigSchema, OpenApiSourceConfigSchema, RuleSyncConfigSchema, RuleSyncTargetSchema, SchemaFormatSchema, VersioningConfigSchema };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.contracts",
|
|
3
|
-
"version": "1.45.
|
|
3
|
+
"version": "1.45.6",
|
|
4
4
|
"description": "Core contract specification definitions and runtime",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"test": "bun test"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@contractspec/tool.tsdown": "1.45.
|
|
29
|
-
"@contractspec/tool.typescript": "1.45.
|
|
28
|
+
"@contractspec/tool.tsdown": "1.45.6",
|
|
29
|
+
"@contractspec/tool.typescript": "1.45.6",
|
|
30
30
|
"@types/express": "^5.0.3",
|
|
31
31
|
"@types/turndown": "^5.0.6",
|
|
32
32
|
"tsdown": "^0.18.3",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@aws-sdk/client-secrets-manager": "^3.958.0",
|
|
37
37
|
"@aws-sdk/client-sqs": "^3.958.0",
|
|
38
|
-
"@contractspec/lib.logger": "1.45.
|
|
39
|
-
"@contractspec/lib.schema": "1.45.
|
|
38
|
+
"@contractspec/lib.logger": "1.45.6",
|
|
39
|
+
"@contractspec/lib.schema": "1.45.6",
|
|
40
40
|
"@elevenlabs/elevenlabs-js": "^2.27.0",
|
|
41
41
|
"@google-cloud/secret-manager": "^6.1.1",
|
|
42
42
|
"@google-cloud/storage": "^7.18.0",
|