@lssm/lib.contracts 0.0.0-canary-20251217063201 → 0.0.0-canary-20251217073102
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/app-config.feature.js +53 -1
- package/dist/app-config/contracts.d.ts +50 -50
- package/dist/app-config/contracts.js +396 -1
- package/dist/app-config/docs/app-config.docblock.js +22 -220
- package/dist/app-config/events.d.ts +27 -27
- package/dist/app-config/events.js +168 -1
- package/dist/app-config/index.js +8 -1
- package/dist/app-config/lifecycle-contracts.d.ts +80 -80
- package/dist/app-config/lifecycle-contracts.js +441 -1
- package/dist/app-config/runtime.js +617 -1
- package/dist/app-config/spec.js +36 -1
- package/dist/app-config/validation.js +538 -1
- package/dist/capabilities/docs/capabilities.docblock.js +22 -1
- package/dist/capabilities/openbanking.js +92 -1
- package/dist/capabilities.js +50 -1
- package/dist/client/index.js +9 -1
- package/dist/client/react/drivers/rn-reusables.js +21 -1
- package/dist/client/react/drivers/shadcn.js +11 -1
- package/dist/client/react/feature-render.js +43 -1
- package/dist/client/react/form-render.js +298 -1
- package/dist/client/react/index.js +8 -1
- package/dist/contract-registry/index.js +3 -1
- package/dist/contract-registry/schemas.js +61 -1
- package/dist/contracts-adapter-hydration.js +41 -1
- package/dist/contracts-adapter-input.js +77 -1
- package/dist/data-views/docs/data-views.docblock.js +22 -1
- package/dist/data-views/query-generator.js +48 -1
- package/dist/data-views/runtime.js +39 -1
- package/dist/data-views.js +35 -1
- package/dist/docs/PUBLISHING.docblock.js +17 -76
- package/dist/docs/accessibility_wcag_compliance_specs.docblock.js +17 -350
- package/dist/docs/index.js +33 -1
- package/dist/docs/meta.docs.js +15 -2
- package/dist/docs/presentations.js +77 -1
- package/dist/docs/registry.js +51 -1
- package/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +17 -383
- package/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +17 -68
- package/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +17 -140
- package/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +17 -86
- package/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js +17 -1
- package/dist/docs/tech/auth/better-auth-nextjs.docblock.js +25 -2
- package/dist/docs/tech/contracts/README.docblock.js +21 -1
- package/dist/docs/tech/contracts/create-subscription.docblock.js +21 -1
- package/dist/docs/tech/contracts/graphql-typed-outputs.docblock.js +21 -180
- package/dist/docs/tech/contracts/migrations.docblock.js +21 -1
- package/dist/docs/tech/contracts/openapi-export.docblock.js +22 -2
- package/dist/docs/tech/contracts/ops-to-presentation-linking.docblock.js +19 -60
- package/dist/docs/tech/contracts/overlays.docblock.js +21 -68
- package/dist/docs/tech/contracts/tests.docblock.js +21 -132
- package/dist/docs/tech/contracts/themes.docblock.js +21 -1
- package/dist/docs/tech/contracts/vertical-pocket-family-office.docblock.js +21 -106
- package/dist/docs/tech/lifecycle-stage-system.docblock.js +17 -213
- package/dist/docs/tech/llm/llm-integration.docblock.js +74 -5
- package/dist/docs/tech/mcp-endpoints.docblock.js +38 -1
- package/dist/docs/tech/presentation-runtime.docblock.js +17 -1
- package/dist/docs/tech/schema/README.docblock.js +21 -262
- package/dist/docs/tech/studio/learning-events.docblock.js +49 -1
- package/dist/docs/tech/studio/learning-journeys.docblock.js +25 -2
- package/dist/docs/tech/studio/platform-admin-panel.docblock.js +24 -2
- package/dist/docs/tech/studio/project-access-teams.docblock.js +26 -16
- package/dist/docs/tech/studio/project-routing.docblock.js +68 -1
- package/dist/docs/tech/studio/sandbox-unlogged.docblock.js +23 -2
- package/dist/docs/tech/studio/team-invitations.docblock.js +41 -36
- package/dist/docs/tech/studio/workspace-ops.docblock.js +48 -1
- package/dist/docs/tech/studio/workspaces.docblock.js +24 -2
- package/dist/docs/tech/telemetry-ingest.docblock.js +37 -3
- package/dist/docs/tech/templates/runtime.docblock.js +21 -1
- package/dist/docs/tech/vscode-extension.docblock.js +37 -3
- package/dist/docs/tech/workflows/overview.docblock.js +21 -1
- package/dist/docs/tech-contracts.docs.js +19 -2
- package/dist/events.js +12 -1
- package/dist/experiments/docs/experiments.docblock.js +22 -128
- package/dist/experiments/evaluator.js +101 -1
- package/dist/experiments/spec.js +33 -1
- package/dist/features.js +68 -1
- package/dist/forms/docs/forms.docblock.js +22 -1
- package/dist/forms.js +119 -1
- package/dist/index.js +107 -1
- package/dist/install.js +40 -1
- package/dist/integrations/contracts.d.ts +102 -102
- package/dist/integrations/contracts.js +388 -1
- package/dist/integrations/docs/integrations.docblock.js +95 -1
- package/dist/integrations/health.js +69 -1
- package/dist/integrations/index.js +23 -1
- package/dist/integrations/openbanking/contracts/accounts.d.ts +66 -66
- package/dist/integrations/openbanking/contracts/accounts.js +237 -1
- package/dist/integrations/openbanking/contracts/balances.d.ts +34 -34
- package/dist/integrations/openbanking/contracts/balances.js +167 -1
- package/dist/integrations/openbanking/contracts/index.js +12 -1
- package/dist/integrations/openbanking/contracts/transactions.d.ts +48 -48
- package/dist/integrations/openbanking/contracts/transactions.js +218 -1
- package/dist/integrations/openbanking/guards.js +32 -1
- package/dist/integrations/openbanking/models.d.ts +55 -55
- package/dist/integrations/openbanking/models.js +242 -1
- package/dist/integrations/openbanking/openbanking.feature.js +68 -1
- package/dist/integrations/openbanking/telemetry.js +39 -1
- package/dist/integrations/providers/elevenlabs.js +56 -1
- package/dist/integrations/providers/gcs-storage.js +79 -1
- package/dist/integrations/providers/gmail.js +91 -1
- package/dist/integrations/providers/google-calendar.js +70 -1
- package/dist/integrations/providers/impls/elevenlabs-voice.js +95 -1
- package/dist/integrations/providers/impls/gcs-storage.js +88 -1
- package/dist/integrations/providers/impls/gmail-inbound.js +200 -1
- package/dist/integrations/providers/impls/gmail-outbound.js +104 -5
- package/dist/integrations/providers/impls/google-calendar.js +154 -1
- package/dist/integrations/providers/impls/index.js +16 -1
- package/dist/integrations/providers/impls/mistral-embedding.js +41 -1
- package/dist/integrations/providers/impls/mistral-llm.js +247 -1
- package/dist/integrations/providers/impls/postmark-email.js +55 -1
- package/dist/integrations/providers/impls/powens-client.js +171 -1
- package/dist/integrations/providers/impls/powens-openbanking.js +218 -1
- package/dist/integrations/providers/impls/provider-factory.js +142 -1
- package/dist/integrations/providers/impls/qdrant-vector.js +69 -1
- package/dist/integrations/providers/impls/stripe-payments.js +202 -1
- package/dist/integrations/providers/impls/twilio-sms.js +58 -1
- package/dist/integrations/providers/index.js +13 -1
- package/dist/integrations/providers/mistral.js +72 -1
- package/dist/integrations/providers/postmark.js +72 -1
- package/dist/integrations/providers/powens.js +120 -1
- package/dist/integrations/providers/qdrant.js +77 -1
- package/dist/integrations/providers/registry.js +34 -1
- package/dist/integrations/providers/stripe.js +87 -1
- package/dist/integrations/providers/twilio-sms.js +65 -1
- package/dist/integrations/runtime.js +186 -1
- package/dist/integrations/secrets/aws-secret-manager.js +231 -1
- package/dist/integrations/secrets/env-secret-provider.js +81 -1
- package/dist/integrations/secrets/gcp-secret-manager.js +229 -1
- package/dist/integrations/secrets/index.js +8 -1
- package/dist/integrations/secrets/manager.js +103 -1
- package/dist/integrations/secrets/provider.js +58 -1
- package/dist/integrations/secrets/scaleway-secret-manager.js +247 -1
- package/dist/integrations/spec.js +39 -1
- package/dist/jobs/define-job.js +16 -1
- package/dist/jobs/gcp-cloud-tasks.js +53 -1
- package/dist/jobs/gcp-pubsub.js +39 -1
- package/dist/jobs/handlers/gmail-sync-handler.js +9 -1
- package/dist/jobs/handlers/index.js +12 -1
- package/dist/jobs/handlers/ping-handler.js +15 -1
- package/dist/jobs/handlers/storage-document-handler.js +14 -1
- package/dist/jobs/index.js +4 -1
- package/dist/jobs/memory-queue.js +71 -1
- package/dist/jobs/queue.js +33 -1
- package/dist/jobs/scaleway-sqs-queue.js +153 -1
- package/dist/jsonschema.d.ts +3 -3
- package/dist/jsonschema.js +32 -1
- package/dist/knowledge/contracts.d.ts +66 -66
- package/dist/knowledge/contracts.js +317 -1
- package/dist/knowledge/docs/knowledge.docblock.js +22 -138
- package/dist/knowledge/index.js +10 -1
- package/dist/knowledge/ingestion/document-processor.js +54 -1
- package/dist/knowledge/ingestion/embedding-service.js +25 -1
- package/dist/knowledge/ingestion/gmail-adapter.js +50 -5
- package/dist/knowledge/ingestion/index.js +7 -1
- package/dist/knowledge/ingestion/storage-adapter.js +26 -1
- package/dist/knowledge/ingestion/vector-indexer.js +32 -1
- package/dist/knowledge/query/index.js +3 -1
- package/dist/knowledge/query/service.js +64 -2
- package/dist/knowledge/runtime.js +49 -1
- package/dist/knowledge/spaces/email-threads.js +38 -1
- package/dist/knowledge/spaces/financial-docs.js +38 -1
- package/dist/knowledge/spaces/financial-overview.js +42 -1
- package/dist/knowledge/spaces/index.js +8 -1
- package/dist/knowledge/spaces/product-canon.js +38 -1
- package/dist/knowledge/spaces/support-faq.js +41 -1
- package/dist/knowledge/spaces/uploaded-docs.js +38 -1
- package/dist/knowledge/spec.js +39 -1
- package/dist/llm/exporters.js +541 -8
- package/dist/llm/index.js +4 -1
- package/dist/llm/prompts.js +246 -56
- package/dist/markdown.js +116 -3
- package/dist/migrations.js +33 -1
- package/dist/onboarding-base.d.ts +29 -29
- package/dist/onboarding-base.js +196 -1
- package/dist/openapi.js +75 -1
- package/dist/openbanking/docs/openbanking.docblock.js +22 -109
- package/dist/ownership.js +40 -1
- package/dist/policy/docs/policy.docblock.js +22 -1
- package/dist/policy/engine.js +223 -1
- package/dist/policy/opa-adapter.js +71 -1
- package/dist/policy/spec.js +33 -1
- package/dist/presentations/docs/presentations-conventions.docblock.js +21 -7
- package/dist/presentations.backcompat.js +47 -1
- package/dist/presentations.d.ts +3 -3
- package/dist/presentations.js +66 -1
- package/dist/presentations.v2.js +278 -6
- package/dist/prompt.js +10 -1
- package/dist/promptRegistry.js +34 -1
- package/dist/regenerator/docs/regenerator.docblock.js +22 -184
- package/dist/regenerator/executor.js +86 -1
- package/dist/regenerator/index.js +6 -1
- package/dist/regenerator/service.js +92 -1
- package/dist/regenerator/sinks.js +32 -1
- package/dist/regenerator/utils.js +51 -1
- package/dist/registry.js +208 -1
- package/dist/resources.js +47 -1
- package/dist/schema/dist/EnumType.js +2 -1
- package/dist/schema/dist/FieldType.js +49 -1
- package/dist/schema/dist/ScalarTypeEnum.js +236 -1
- package/dist/schema/dist/SchemaModel.js +39 -1
- package/dist/schema/dist/entity/defineEntity.js +1 -1
- package/dist/schema/dist/entity/index.js +2 -1
- package/dist/schema/dist/entity/types.js +1 -1
- package/dist/schema/dist/index.js +6 -1
- package/dist/schema-to-markdown.js +214 -10
- package/dist/server/graphql-pothos.js +128 -1
- package/dist/server/index.js +10 -1
- package/dist/server/mcp/createMcpServer.js +28 -1
- package/dist/server/mcp/registerPresentations.js +151 -1
- package/dist/server/mcp/registerPrompts.js +36 -2
- package/dist/server/mcp/registerResources.js +35 -1
- package/dist/server/mcp/registerTools.js +22 -1
- package/dist/server/provider-mcp.js +3 -1
- package/dist/server/rest-elysia.js +20 -1
- package/dist/server/rest-express.js +39 -1
- package/dist/server/rest-generic.js +125 -1
- package/dist/server/rest-next-app.js +38 -1
- package/dist/server/rest-next-mcp.js +45 -1
- package/dist/server/rest-next-pages.js +25 -1
- package/dist/spec.js +35 -1
- package/dist/telemetry/anomaly.js +48 -1
- package/dist/telemetry/docs/telemetry.docblock.js +22 -139
- package/dist/telemetry/index.js +5 -1
- package/dist/telemetry/spec.js +69 -1
- package/dist/telemetry/tracker.js +76 -1
- package/dist/tests/index.js +4 -1
- package/dist/tests/runner.js +150 -1
- package/dist/tests/spec.js +33 -1
- package/dist/themes.js +39 -1
- package/dist/workflow/adapters/db-adapter.js +83 -1
- package/dist/workflow/adapters/file-adapter.js +11 -1
- package/dist/workflow/adapters/index.js +5 -1
- package/dist/workflow/adapters/memory-store.js +58 -1
- package/dist/workflow/expression.js +98 -1
- package/dist/workflow/index.js +9 -1
- package/dist/workflow/runner.js +337 -1
- package/dist/workflow/sla-monitor.js +47 -1
- package/dist/workflow/spec.js +32 -1
- package/dist/workflow/validation.js +175 -1
- package/package.json +11 -4
|
@@ -2,80 +2,80 @@ import { EventSpec } from "../events.js";
|
|
|
2
2
|
import { ContractSpec } from "../spec.js";
|
|
3
3
|
import { SpecRegistry } from "../registry.js";
|
|
4
4
|
import "../index.js";
|
|
5
|
-
import * as
|
|
5
|
+
import * as _lssm_lib_schema193 from "@lssm/lib.schema";
|
|
6
6
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
7
7
|
|
|
8
8
|
//#region src/app-config/lifecycle-contracts.d.ts
|
|
9
9
|
declare const CreateTenantConfigDraftCommand: ContractSpec<SchemaModel<{
|
|
10
10
|
tenantId: {
|
|
11
|
-
type:
|
|
11
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
12
12
|
isOptional: false;
|
|
13
13
|
};
|
|
14
14
|
appId: {
|
|
15
|
-
type:
|
|
15
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
blueprintName: {
|
|
19
|
-
type:
|
|
19
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
20
20
|
isOptional: false;
|
|
21
21
|
};
|
|
22
22
|
blueprintVersion: {
|
|
23
|
-
type:
|
|
23
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
24
24
|
isOptional: false;
|
|
25
25
|
};
|
|
26
26
|
environment: {
|
|
27
|
-
type:
|
|
27
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
28
28
|
isOptional: true;
|
|
29
29
|
};
|
|
30
30
|
fromVersion: {
|
|
31
|
-
type:
|
|
31
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
32
32
|
isOptional: true;
|
|
33
33
|
};
|
|
34
34
|
createdBy: {
|
|
35
|
-
type:
|
|
35
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
}>, SchemaModel<{
|
|
39
39
|
version: {
|
|
40
|
-
type:
|
|
40
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
41
41
|
isOptional: false;
|
|
42
42
|
};
|
|
43
43
|
status: {
|
|
44
|
-
type:
|
|
44
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
45
45
|
isOptional: false;
|
|
46
46
|
};
|
|
47
47
|
createdAt: {
|
|
48
|
-
type:
|
|
48
|
+
type: _lssm_lib_schema193.FieldType<Date, string>;
|
|
49
49
|
isOptional: false;
|
|
50
50
|
};
|
|
51
51
|
}>, {
|
|
52
52
|
ref: EventSpec<SchemaModel<{
|
|
53
53
|
tenantId: {
|
|
54
|
-
type:
|
|
54
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
55
55
|
isOptional: false;
|
|
56
56
|
};
|
|
57
57
|
appId: {
|
|
58
|
-
type:
|
|
58
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
59
59
|
isOptional: false;
|
|
60
60
|
};
|
|
61
61
|
version: {
|
|
62
|
-
type:
|
|
62
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
63
63
|
isOptional: false;
|
|
64
64
|
};
|
|
65
65
|
blueprintName: {
|
|
66
|
-
type:
|
|
66
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
67
67
|
isOptional: false;
|
|
68
68
|
};
|
|
69
69
|
blueprintVersion: {
|
|
70
|
-
type:
|
|
70
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
71
71
|
isOptional: false;
|
|
72
72
|
};
|
|
73
73
|
createdBy: {
|
|
74
|
-
type:
|
|
74
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
75
75
|
isOptional: false;
|
|
76
76
|
};
|
|
77
77
|
clonedFrom: {
|
|
78
|
-
type:
|
|
78
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
79
79
|
isOptional: true;
|
|
80
80
|
};
|
|
81
81
|
}>>;
|
|
@@ -83,55 +83,55 @@ declare const CreateTenantConfigDraftCommand: ContractSpec<SchemaModel<{
|
|
|
83
83
|
}[]>;
|
|
84
84
|
declare const PromoteTenantConfigToPreviewCommand: ContractSpec<SchemaModel<{
|
|
85
85
|
tenantId: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
87
87
|
isOptional: false;
|
|
88
88
|
};
|
|
89
89
|
appId: {
|
|
90
|
-
type:
|
|
90
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
91
91
|
isOptional: false;
|
|
92
92
|
};
|
|
93
93
|
version: {
|
|
94
|
-
type:
|
|
94
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
95
95
|
isOptional: false;
|
|
96
96
|
};
|
|
97
97
|
promotedBy: {
|
|
98
|
-
type:
|
|
98
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
99
99
|
isOptional: false;
|
|
100
100
|
};
|
|
101
101
|
}>, SchemaModel<{
|
|
102
102
|
version: {
|
|
103
|
-
type:
|
|
103
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
104
104
|
isOptional: false;
|
|
105
105
|
};
|
|
106
106
|
status: {
|
|
107
|
-
type:
|
|
107
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
108
108
|
isOptional: false;
|
|
109
109
|
};
|
|
110
110
|
warnings: {
|
|
111
|
-
type:
|
|
111
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
112
112
|
isOptional: true;
|
|
113
113
|
isArray: true;
|
|
114
114
|
};
|
|
115
115
|
}>, {
|
|
116
116
|
ref: EventSpec<SchemaModel<{
|
|
117
117
|
tenantId: {
|
|
118
|
-
type:
|
|
118
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
119
119
|
isOptional: false;
|
|
120
120
|
};
|
|
121
121
|
appId: {
|
|
122
|
-
type:
|
|
122
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
123
123
|
isOptional: false;
|
|
124
124
|
};
|
|
125
125
|
version: {
|
|
126
|
-
type:
|
|
126
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
127
127
|
isOptional: false;
|
|
128
128
|
};
|
|
129
129
|
promotedBy: {
|
|
130
|
-
type:
|
|
130
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
131
131
|
isOptional: false;
|
|
132
132
|
};
|
|
133
133
|
warnings: {
|
|
134
|
-
type:
|
|
134
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
135
135
|
isOptional: true;
|
|
136
136
|
isArray: true;
|
|
137
137
|
};
|
|
@@ -140,74 +140,74 @@ declare const PromoteTenantConfigToPreviewCommand: ContractSpec<SchemaModel<{
|
|
|
140
140
|
}[]>;
|
|
141
141
|
declare const PublishTenantConfigCommand: ContractSpec<SchemaModel<{
|
|
142
142
|
tenantId: {
|
|
143
|
-
type:
|
|
143
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
144
144
|
isOptional: false;
|
|
145
145
|
};
|
|
146
146
|
appId: {
|
|
147
|
-
type:
|
|
147
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
148
148
|
isOptional: false;
|
|
149
149
|
};
|
|
150
150
|
version: {
|
|
151
|
-
type:
|
|
151
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
152
152
|
isOptional: false;
|
|
153
153
|
};
|
|
154
154
|
environment: {
|
|
155
|
-
type:
|
|
155
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
156
156
|
isOptional: true;
|
|
157
157
|
};
|
|
158
158
|
publishedBy: {
|
|
159
|
-
type:
|
|
159
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
160
160
|
isOptional: false;
|
|
161
161
|
};
|
|
162
162
|
changeSummary: {
|
|
163
|
-
type:
|
|
163
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
164
164
|
isOptional: true;
|
|
165
165
|
};
|
|
166
166
|
}>, SchemaModel<{
|
|
167
167
|
version: {
|
|
168
|
-
type:
|
|
168
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
169
169
|
isOptional: false;
|
|
170
170
|
};
|
|
171
171
|
status: {
|
|
172
|
-
type:
|
|
172
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
173
173
|
isOptional: false;
|
|
174
174
|
};
|
|
175
175
|
previousVersion: {
|
|
176
|
-
type:
|
|
176
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
177
177
|
isOptional: true;
|
|
178
178
|
};
|
|
179
179
|
publishedAt: {
|
|
180
|
-
type:
|
|
180
|
+
type: _lssm_lib_schema193.FieldType<Date, string>;
|
|
181
181
|
isOptional: false;
|
|
182
182
|
};
|
|
183
183
|
}>, {
|
|
184
184
|
ref: EventSpec<SchemaModel<{
|
|
185
185
|
tenantId: {
|
|
186
|
-
type:
|
|
186
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
187
187
|
isOptional: false;
|
|
188
188
|
};
|
|
189
189
|
appId: {
|
|
190
|
-
type:
|
|
190
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
191
191
|
isOptional: false;
|
|
192
192
|
};
|
|
193
193
|
version: {
|
|
194
|
-
type:
|
|
194
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
195
195
|
isOptional: false;
|
|
196
196
|
};
|
|
197
197
|
previousVersion: {
|
|
198
|
-
type:
|
|
198
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
199
199
|
isOptional: true;
|
|
200
200
|
};
|
|
201
201
|
publishedBy: {
|
|
202
|
-
type:
|
|
202
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
203
203
|
isOptional: false;
|
|
204
204
|
};
|
|
205
205
|
changeSummary: {
|
|
206
|
-
type:
|
|
206
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
207
207
|
isOptional: true;
|
|
208
208
|
};
|
|
209
209
|
changedSections: {
|
|
210
|
-
type:
|
|
210
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
211
211
|
isOptional: true;
|
|
212
212
|
isArray: true;
|
|
213
213
|
};
|
|
@@ -216,70 +216,70 @@ declare const PublishTenantConfigCommand: ContractSpec<SchemaModel<{
|
|
|
216
216
|
}[]>;
|
|
217
217
|
declare const RollbackTenantConfigCommand: ContractSpec<SchemaModel<{
|
|
218
218
|
tenantId: {
|
|
219
|
-
type:
|
|
219
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
220
220
|
isOptional: false;
|
|
221
221
|
};
|
|
222
222
|
appId: {
|
|
223
|
-
type:
|
|
223
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
224
224
|
isOptional: false;
|
|
225
225
|
};
|
|
226
226
|
toVersion: {
|
|
227
|
-
type:
|
|
227
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
228
228
|
isOptional: false;
|
|
229
229
|
};
|
|
230
230
|
environment: {
|
|
231
|
-
type:
|
|
231
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
232
232
|
isOptional: true;
|
|
233
233
|
};
|
|
234
234
|
rolledBackBy: {
|
|
235
|
-
type:
|
|
235
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
236
236
|
isOptional: false;
|
|
237
237
|
};
|
|
238
238
|
reason: {
|
|
239
|
-
type:
|
|
239
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
240
240
|
isOptional: false;
|
|
241
241
|
};
|
|
242
242
|
}>, SchemaModel<{
|
|
243
243
|
newVersion: {
|
|
244
|
-
type:
|
|
244
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
245
245
|
isOptional: false;
|
|
246
246
|
};
|
|
247
247
|
status: {
|
|
248
|
-
type:
|
|
248
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
249
249
|
isOptional: false;
|
|
250
250
|
};
|
|
251
251
|
rolledBackFrom: {
|
|
252
|
-
type:
|
|
252
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
253
253
|
isOptional: false;
|
|
254
254
|
};
|
|
255
255
|
}>, {
|
|
256
256
|
ref: EventSpec<SchemaModel<{
|
|
257
257
|
tenantId: {
|
|
258
|
-
type:
|
|
258
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
259
259
|
isOptional: false;
|
|
260
260
|
};
|
|
261
261
|
appId: {
|
|
262
|
-
type:
|
|
262
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
263
263
|
isOptional: false;
|
|
264
264
|
};
|
|
265
265
|
newVersion: {
|
|
266
|
-
type:
|
|
266
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
267
267
|
isOptional: false;
|
|
268
268
|
};
|
|
269
269
|
rolledBackFrom: {
|
|
270
|
-
type:
|
|
270
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
271
271
|
isOptional: false;
|
|
272
272
|
};
|
|
273
273
|
rolledBackTo: {
|
|
274
|
-
type:
|
|
274
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
275
275
|
isOptional: false;
|
|
276
276
|
};
|
|
277
277
|
rolledBackBy: {
|
|
278
|
-
type:
|
|
278
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
279
279
|
isOptional: false;
|
|
280
280
|
};
|
|
281
281
|
reason: {
|
|
282
|
-
type:
|
|
282
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
283
283
|
isOptional: false;
|
|
284
284
|
};
|
|
285
285
|
}>>;
|
|
@@ -287,22 +287,22 @@ declare const RollbackTenantConfigCommand: ContractSpec<SchemaModel<{
|
|
|
287
287
|
}[]>;
|
|
288
288
|
declare const ListTenantConfigVersionsQuery: ContractSpec<SchemaModel<{
|
|
289
289
|
tenantId: {
|
|
290
|
-
type:
|
|
290
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
291
291
|
isOptional: false;
|
|
292
292
|
};
|
|
293
293
|
appId: {
|
|
294
|
-
type:
|
|
294
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
295
295
|
isOptional: false;
|
|
296
296
|
};
|
|
297
297
|
}>, SchemaModel<{
|
|
298
298
|
versions: {
|
|
299
299
|
type: SchemaModel<{
|
|
300
300
|
meta: {
|
|
301
|
-
type:
|
|
301
|
+
type: _lssm_lib_schema193.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
302
302
|
isOptional: false;
|
|
303
303
|
};
|
|
304
304
|
config: {
|
|
305
|
-
type:
|
|
305
|
+
type: _lssm_lib_schema193.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
306
306
|
isOptional: false;
|
|
307
307
|
};
|
|
308
308
|
}>;
|
|
@@ -312,35 +312,35 @@ declare const ListTenantConfigVersionsQuery: ContractSpec<SchemaModel<{
|
|
|
312
312
|
transitions: {
|
|
313
313
|
type: SchemaModel<{
|
|
314
314
|
tenantId: {
|
|
315
|
-
type:
|
|
315
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
316
316
|
isOptional: false;
|
|
317
317
|
};
|
|
318
318
|
appId: {
|
|
319
|
-
type:
|
|
319
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
320
320
|
isOptional: false;
|
|
321
321
|
};
|
|
322
322
|
fromStatus: {
|
|
323
|
-
type:
|
|
323
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
324
324
|
isOptional: false;
|
|
325
325
|
};
|
|
326
326
|
toStatus: {
|
|
327
|
-
type:
|
|
327
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
328
328
|
isOptional: false;
|
|
329
329
|
};
|
|
330
330
|
version: {
|
|
331
|
-
type:
|
|
331
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
332
332
|
isOptional: false;
|
|
333
333
|
};
|
|
334
334
|
timestamp: {
|
|
335
|
-
type:
|
|
335
|
+
type: _lssm_lib_schema193.FieldType<Date, string>;
|
|
336
336
|
isOptional: false;
|
|
337
337
|
};
|
|
338
338
|
actor: {
|
|
339
|
-
type:
|
|
339
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
340
340
|
isOptional: false;
|
|
341
341
|
};
|
|
342
342
|
reason: {
|
|
343
|
-
type:
|
|
343
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
344
344
|
isOptional: true;
|
|
345
345
|
};
|
|
346
346
|
}>;
|
|
@@ -350,26 +350,26 @@ declare const ListTenantConfigVersionsQuery: ContractSpec<SchemaModel<{
|
|
|
350
350
|
}>, undefined>;
|
|
351
351
|
declare const GetTenantConfigVersionQuery: ContractSpec<SchemaModel<{
|
|
352
352
|
tenantId: {
|
|
353
|
-
type:
|
|
353
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
354
354
|
isOptional: false;
|
|
355
355
|
};
|
|
356
356
|
appId: {
|
|
357
|
-
type:
|
|
357
|
+
type: _lssm_lib_schema193.FieldType<string, string>;
|
|
358
358
|
isOptional: false;
|
|
359
359
|
};
|
|
360
360
|
version: {
|
|
361
|
-
type:
|
|
361
|
+
type: _lssm_lib_schema193.FieldType<number, number>;
|
|
362
362
|
isOptional: false;
|
|
363
363
|
};
|
|
364
364
|
}>, SchemaModel<{
|
|
365
365
|
version: {
|
|
366
366
|
type: SchemaModel<{
|
|
367
367
|
meta: {
|
|
368
|
-
type:
|
|
368
|
+
type: _lssm_lib_schema193.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
369
369
|
isOptional: false;
|
|
370
370
|
};
|
|
371
371
|
config: {
|
|
372
|
-
type:
|
|
372
|
+
type: _lssm_lib_schema193.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
373
373
|
isOptional: false;
|
|
374
374
|
};
|
|
375
375
|
}>;
|