@lssm/example.marketplace 0.0.0-canary-20251217060834 → 0.0.0-canary-20251217072406
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/docs/index.js +1 -1
- package/dist/docs/marketplace.docblock.js +61 -5
- package/dist/entities/index.d.ts +296 -296
- package/dist/entities/index.js +45 -1
- package/dist/entities/order.d.ts +78 -78
- package/dist/entities/order.js +173 -1
- package/dist/entities/payout.d.ts +65 -65
- package/dist/entities/payout.js +162 -1
- package/dist/entities/product.d.ts +70 -70
- package/dist/entities/product.js +161 -1
- package/dist/entities/review.d.ts +56 -56
- package/dist/entities/review.js +152 -1
- package/dist/entities/store.d.ts +41 -41
- package/dist/entities/store.js +110 -1
- package/dist/example.js +50 -1
- package/dist/index.d.ts +0 -5
- package/dist/index.js +27 -1
- package/dist/libs/contracts/dist/capabilities/openbanking.js +88 -0
- package/dist/libs/contracts/dist/client/index.js +5 -0
- package/dist/libs/contracts/dist/client/react/feature-render.js +2 -0
- package/dist/libs/contracts/dist/client/react/form-render.js +4 -0
- package/dist/libs/contracts/dist/client/react/index.js +4 -0
- package/dist/libs/contracts/dist/contract-registry/index.js +1 -0
- package/dist/libs/contracts/dist/contract-registry/schemas.js +60 -0
- package/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js +16 -0
- package/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js +16 -0
- package/dist/libs/contracts/dist/docs/index.js +29 -0
- package/dist/libs/contracts/dist/docs/presentations.js +71 -0
- package/dist/libs/contracts/dist/docs/registry.js +44 -0
- package/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +16 -0
- package/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +16 -0
- package/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +16 -0
- package/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +16 -0
- package/dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js +16 -0
- package/dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js +80 -0
- package/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js +57 -0
- package/dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js +16 -0
- package/dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js +357 -0
- package/dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js +37 -0
- package/dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js +16 -0
- package/dist/libs/contracts/dist/docs/tech/schema/README.docblock.js +20 -0
- package/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js +48 -0
- package/dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js +79 -0
- package/dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js +84 -0
- package/dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js +45 -0
- package/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js +67 -0
- package/dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js +40 -0
- package/dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js +69 -0
- package/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js +47 -0
- package/dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js +62 -0
- package/dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js +155 -0
- package/dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js +20 -0
- package/dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js +101 -0
- package/dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js +20 -0
- package/dist/libs/contracts/dist/events.js +10 -0
- package/dist/libs/contracts/dist/experiments/evaluator.js +1 -0
- package/dist/libs/contracts/dist/index.js +71 -0
- package/dist/libs/contracts/dist/install.js +2 -0
- package/dist/libs/contracts/dist/integrations/contracts.js +377 -0
- package/dist/libs/contracts/dist/integrations/index.js +18 -0
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/accounts.js +228 -0
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/balances.js +159 -0
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/index.js +3 -0
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/transactions.js +210 -0
- package/dist/libs/contracts/dist/integrations/openbanking/models.js +242 -0
- package/dist/libs/contracts/dist/integrations/openbanking/telemetry.js +13 -0
- package/dist/libs/contracts/dist/integrations/providers/elevenlabs.js +52 -0
- package/dist/libs/contracts/dist/integrations/providers/gcs-storage.js +75 -0
- package/dist/libs/contracts/dist/integrations/providers/gmail.js +87 -0
- package/dist/libs/contracts/dist/integrations/providers/google-calendar.js +66 -0
- package/dist/libs/contracts/dist/integrations/providers/index.js +11 -0
- package/dist/libs/contracts/dist/integrations/providers/mistral.js +68 -0
- package/dist/libs/contracts/dist/integrations/providers/postmark.js +68 -0
- package/dist/libs/contracts/dist/integrations/providers/powens.js +116 -0
- package/dist/libs/contracts/dist/integrations/providers/qdrant.js +73 -0
- package/dist/libs/contracts/dist/integrations/providers/registry.js +10 -0
- package/dist/libs/contracts/dist/integrations/providers/stripe.js +83 -0
- package/dist/libs/contracts/dist/integrations/providers/twilio-sms.js +61 -0
- package/dist/libs/contracts/dist/jsonschema.js +1 -0
- package/dist/libs/contracts/dist/knowledge/contracts.js +306 -0
- package/dist/libs/contracts/dist/knowledge/index.js +7 -0
- package/dist/libs/contracts/dist/knowledge/spaces/email-threads.js +34 -0
- package/dist/libs/contracts/dist/knowledge/spaces/financial-docs.js +34 -0
- package/dist/libs/contracts/dist/knowledge/spaces/financial-overview.js +38 -0
- package/dist/libs/contracts/dist/knowledge/spaces/index.js +6 -0
- package/dist/libs/contracts/dist/knowledge/spaces/product-canon.js +34 -0
- package/dist/libs/contracts/dist/knowledge/spaces/support-faq.js +37 -0
- package/dist/libs/contracts/dist/knowledge/spaces/uploaded-docs.js +34 -0
- package/dist/libs/contracts/dist/llm/exporters.js +19 -0
- package/dist/libs/contracts/dist/llm/index.js +2 -0
- package/dist/libs/contracts/dist/llm/prompts.js +1 -0
- package/dist/libs/contracts/dist/onboarding-base.js +196 -0
- package/dist/libs/contracts/dist/openapi.js +1 -0
- package/dist/libs/contracts/dist/ownership.js +21 -0
- package/dist/libs/contracts/dist/presentations.js +1 -0
- package/dist/libs/contracts/dist/presentations.v2.js +11 -0
- package/dist/libs/contracts/dist/prompt.js +1 -0
- package/dist/libs/contracts/dist/promptRegistry.js +1 -0
- package/dist/libs/contracts/dist/regenerator/index.js +1 -0
- package/dist/libs/contracts/dist/regenerator/service.js +6 -0
- package/dist/libs/contracts/dist/registry.js +2 -0
- package/dist/libs/contracts/dist/resources.js +1 -0
- package/dist/libs/contracts/dist/schema/dist/EnumType.js +2 -0
- package/dist/libs/contracts/dist/schema/dist/FieldType.js +49 -0
- package/dist/libs/contracts/dist/schema/dist/ScalarTypeEnum.js +236 -0
- package/dist/libs/contracts/dist/schema/dist/SchemaModel.js +34 -0
- package/dist/libs/contracts/dist/schema/dist/entity/defineEntity.js +1 -0
- package/dist/libs/contracts/dist/schema/dist/entity/index.js +2 -0
- package/dist/libs/contracts/dist/schema/dist/entity/types.js +1 -0
- package/dist/libs/contracts/dist/schema/dist/index.js +6 -0
- package/dist/libs/contracts/dist/server/graphql-pothos.js +6 -0
- package/dist/libs/contracts/dist/server/index.js +8 -0
- package/dist/libs/contracts/dist/server/mcp/createMcpServer.js +4 -0
- package/dist/libs/contracts/dist/server/mcp/registerPresentations.js +2 -0
- package/dist/libs/contracts/dist/server/mcp/registerPrompts.js +1 -0
- package/dist/libs/contracts/dist/server/mcp/registerResources.js +2 -0
- package/dist/libs/contracts/dist/server/mcp/registerTools.js +1 -0
- package/dist/libs/contracts/dist/server/provider-mcp.js +1 -0
- package/dist/libs/contracts/dist/server/rest-elysia.js +1 -0
- package/dist/libs/contracts/dist/server/rest-express.js +1 -0
- package/dist/libs/contracts/dist/server/rest-generic.js +1 -0
- package/dist/libs/contracts/dist/server/rest-next-app.js +1 -0
- package/dist/libs/contracts/dist/server/rest-next-pages.js +1 -0
- package/dist/libs/contracts/dist/spec.js +34 -0
- package/dist/libs/contracts/dist/telemetry/index.js +1 -0
- package/dist/libs/contracts/dist/telemetry/tracker.js +1 -0
- package/dist/libs/contracts/dist/tests/index.js +1 -0
- package/dist/libs/contracts/dist/tests/runner.js +2 -0
- package/dist/libs/contracts/dist/workflow/index.js +1 -0
- package/dist/libs/contracts/dist/workflow/runner.js +1 -0
- package/dist/libs/schema/dist/EnumType.js +56 -0
- package/dist/libs/schema/dist/FieldType.js +49 -0
- package/dist/libs/schema/dist/ScalarTypeEnum.js +236 -0
- package/dist/libs/schema/dist/SchemaModel.js +39 -0
- package/dist/libs/schema/dist/entity/defineEntity.js +236 -0
- package/dist/libs/schema/dist/entity/index.js +2 -0
- package/dist/libs/schema/dist/entity/types.js +1 -0
- package/dist/libs/schema/dist/index.js +6 -0
- package/dist/marketplace.feature.js +308 -1
- package/dist/order/index.js +6 -1
- package/dist/order/order.contracts.d.ts +90 -90
- package/dist/order/order.contracts.js +74 -1
- package/dist/order/order.enum.d.ts +2 -2
- package/dist/order/order.enum.js +22 -1
- package/dist/order/order.event.d.ts +39 -39
- package/dist/order/order.event.js +193 -1
- package/dist/order/order.presentation.js +72 -1
- package/dist/order/order.schema.d.ts +39 -39
- package/dist/order/order.schema.js +156 -1
- package/dist/payout/index.js +6 -1
- package/dist/payout/payout.contracts.d.ts +24 -24
- package/dist/payout/payout.contracts.js +32 -1
- package/dist/payout/payout.enum.d.ts +2 -2
- package/dist/payout/payout.enum.js +17 -1
- package/dist/payout/payout.event.d.ts +17 -17
- package/dist/payout/payout.event.js +84 -1
- package/dist/payout/payout.presentation.js +50 -1
- package/dist/payout/payout.schema.d.ts +37 -37
- package/dist/payout/payout.schema.js +117 -1
- package/dist/product/index.js +6 -1
- package/dist/product/product.contracts.d.ts +68 -68
- package/dist/product/product.contracts.js +65 -1
- package/dist/product/product.enum.d.ts +2 -2
- package/dist/product/product.enum.js +18 -1
- package/dist/product/product.event.d.ts +20 -20
- package/dist/product/product.event.js +103 -1
- package/dist/product/product.presentation.js +72 -1
- package/dist/product/product.schema.d.ts +52 -52
- package/dist/product/product.schema.js +177 -1
- package/dist/review/index.js +6 -1
- package/dist/review/review.contracts.d.ts +59 -59
- package/dist/review/review.contracts.js +65 -1
- package/dist/review/review.enum.d.ts +2 -2
- package/dist/review/review.enum.js +16 -1
- package/dist/review/review.event.d.ts +15 -15
- package/dist/review/review.event.js +76 -1
- package/dist/review/review.presentation.js +50 -1
- package/dist/review/review.schema.d.ts +45 -45
- package/dist/review/review.schema.js +157 -1
- package/dist/store/index.js +6 -1
- package/dist/store/store.contracts.d.ts +33 -33
- package/dist/store/store.contracts.js +41 -1
- package/dist/store/store.enum.d.ts +2 -2
- package/dist/store/store.enum.js +16 -1
- package/dist/store/store.event.d.ts +14 -14
- package/dist/store/store.event.js +72 -1
- package/dist/store/store.presentation.js +50 -1
- package/dist/store/store.schema.js +94 -1
- package/package.json +12 -12
|
@@ -1 +1,308 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/marketplace.feature.ts
|
|
2
|
+
/**
|
|
3
|
+
* Marketplace feature module that bundles multi-vendor marketplace
|
|
4
|
+
* capabilities including stores, products, orders, payouts, and reviews.
|
|
5
|
+
*/
|
|
6
|
+
const MarketplaceFeature = {
|
|
7
|
+
meta: {
|
|
8
|
+
key: "marketplace",
|
|
9
|
+
title: "Multi-Vendor Marketplace",
|
|
10
|
+
description: "Full-featured marketplace with stores, products, orders, payouts, and reviews",
|
|
11
|
+
domain: "marketplace",
|
|
12
|
+
owners: ["@marketplace-team"],
|
|
13
|
+
tags: [
|
|
14
|
+
"marketplace",
|
|
15
|
+
"ecommerce",
|
|
16
|
+
"multi-vendor",
|
|
17
|
+
"payments"
|
|
18
|
+
],
|
|
19
|
+
stability: "experimental"
|
|
20
|
+
},
|
|
21
|
+
operations: [
|
|
22
|
+
{
|
|
23
|
+
name: "marketplace.store.create",
|
|
24
|
+
version: 1
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: "marketplace.product.create",
|
|
28
|
+
version: 1
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: "marketplace.product.list",
|
|
32
|
+
version: 1
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: "marketplace.order.create",
|
|
36
|
+
version: 1
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: "marketplace.order.updateStatus",
|
|
40
|
+
version: 1
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: "marketplace.payout.list",
|
|
44
|
+
version: 1
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: "marketplace.review.create",
|
|
48
|
+
version: 1
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: "marketplace.review.list",
|
|
52
|
+
version: 1
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
events: [
|
|
56
|
+
{
|
|
57
|
+
name: "marketplace.store.created",
|
|
58
|
+
version: 1
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: "marketplace.store.statusChanged",
|
|
62
|
+
version: 1
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
name: "marketplace.product.created",
|
|
66
|
+
version: 1
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: "marketplace.product.published",
|
|
70
|
+
version: 1
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "marketplace.inventory.updated",
|
|
74
|
+
version: 1
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
name: "marketplace.order.created",
|
|
78
|
+
version: 1
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
name: "marketplace.order.paid",
|
|
82
|
+
version: 1
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: "marketplace.order.statusUpdated",
|
|
86
|
+
version: 1
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: "marketplace.order.shipped",
|
|
90
|
+
version: 1
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: "marketplace.order.completed",
|
|
94
|
+
version: 1
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
name: "marketplace.payout.created",
|
|
98
|
+
version: 1
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
name: "marketplace.payout.paid",
|
|
102
|
+
version: 1
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
name: "marketplace.review.created",
|
|
106
|
+
version: 1
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
name: "marketplace.review.responded",
|
|
110
|
+
version: 1
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
presentations: [
|
|
114
|
+
{
|
|
115
|
+
name: "marketplace.store.profile",
|
|
116
|
+
version: 1
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
name: "marketplace.seller.dashboard",
|
|
120
|
+
version: 1
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
name: "marketplace.product.catalog",
|
|
124
|
+
version: 1
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
name: "marketplace.product.detail",
|
|
128
|
+
version: 1
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
name: "marketplace.product.editor",
|
|
132
|
+
version: 1
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
name: "marketplace.order.list",
|
|
136
|
+
version: 1
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
name: "marketplace.order.detail",
|
|
140
|
+
version: 1
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
name: "marketplace.checkout",
|
|
144
|
+
version: 1
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
name: "marketplace.payout.list",
|
|
148
|
+
version: 1
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
name: "marketplace.payout.detail",
|
|
152
|
+
version: 1
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
name: "marketplace.review.list",
|
|
156
|
+
version: 1
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
name: "marketplace.review.form",
|
|
160
|
+
version: 1
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
opToPresentation: [
|
|
164
|
+
{
|
|
165
|
+
op: {
|
|
166
|
+
name: "marketplace.product.list",
|
|
167
|
+
version: 1
|
|
168
|
+
},
|
|
169
|
+
pres: {
|
|
170
|
+
name: "marketplace.product.catalog",
|
|
171
|
+
version: 1
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
op: {
|
|
176
|
+
name: "marketplace.order.create",
|
|
177
|
+
version: 1
|
|
178
|
+
},
|
|
179
|
+
pres: {
|
|
180
|
+
name: "marketplace.checkout",
|
|
181
|
+
version: 1
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
op: {
|
|
186
|
+
name: "marketplace.payout.list",
|
|
187
|
+
version: 1
|
|
188
|
+
},
|
|
189
|
+
pres: {
|
|
190
|
+
name: "marketplace.payout.list",
|
|
191
|
+
version: 1
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
op: {
|
|
196
|
+
name: "marketplace.review.list",
|
|
197
|
+
version: 1
|
|
198
|
+
},
|
|
199
|
+
pres: {
|
|
200
|
+
name: "marketplace.review.list",
|
|
201
|
+
version: 1
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
op: {
|
|
206
|
+
name: "marketplace.review.create",
|
|
207
|
+
version: 1
|
|
208
|
+
},
|
|
209
|
+
pres: {
|
|
210
|
+
name: "marketplace.review.form",
|
|
211
|
+
version: 1
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
presentationsTargets: [
|
|
216
|
+
{
|
|
217
|
+
name: "marketplace.store.profile",
|
|
218
|
+
version: 1,
|
|
219
|
+
targets: ["react", "markdown"]
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
name: "marketplace.seller.dashboard",
|
|
223
|
+
version: 1,
|
|
224
|
+
targets: ["react"]
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
name: "marketplace.product.catalog",
|
|
228
|
+
version: 1,
|
|
229
|
+
targets: ["react", "markdown"]
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
name: "marketplace.product.detail",
|
|
233
|
+
version: 1,
|
|
234
|
+
targets: ["react", "markdown"]
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
name: "marketplace.product.editor",
|
|
238
|
+
version: 1,
|
|
239
|
+
targets: ["react"]
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
name: "marketplace.order.list",
|
|
243
|
+
version: 1,
|
|
244
|
+
targets: ["react", "markdown"]
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: "marketplace.order.detail",
|
|
248
|
+
version: 1,
|
|
249
|
+
targets: ["react", "markdown"]
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
name: "marketplace.checkout",
|
|
253
|
+
version: 1,
|
|
254
|
+
targets: ["react"]
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
name: "marketplace.payout.list",
|
|
258
|
+
version: 1,
|
|
259
|
+
targets: ["react", "markdown"]
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
name: "marketplace.review.list",
|
|
263
|
+
version: 1,
|
|
264
|
+
targets: ["react", "markdown"]
|
|
265
|
+
}
|
|
266
|
+
],
|
|
267
|
+
capabilities: {
|
|
268
|
+
requires: [
|
|
269
|
+
{
|
|
270
|
+
key: "identity",
|
|
271
|
+
version: 1
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
key: "audit-trail",
|
|
275
|
+
version: 1
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
key: "notifications",
|
|
279
|
+
version: 1
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
key: "files",
|
|
283
|
+
version: 1
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
key: "metering",
|
|
287
|
+
version: 1
|
|
288
|
+
}
|
|
289
|
+
],
|
|
290
|
+
provides: [
|
|
291
|
+
{
|
|
292
|
+
key: "marketplace",
|
|
293
|
+
version: 1
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
key: "ecommerce",
|
|
297
|
+
version: 1
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
key: "payments",
|
|
301
|
+
version: 1
|
|
302
|
+
}
|
|
303
|
+
]
|
|
304
|
+
}
|
|
305
|
+
};
|
|
306
|
+
|
|
307
|
+
//#endregion
|
|
308
|
+
export { MarketplaceFeature };
|
package/dist/order/index.js
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { OrderStatusEnum } from "./order.enum.js";
|
|
2
|
+
import { CreateOrderInputModel, OrderItemModel, OrderModel, UpdateOrderStatusInputModel } from "./order.schema.js";
|
|
3
|
+
import { CreateOrderContract, UpdateOrderStatusContract } from "./order.contracts.js";
|
|
4
|
+
import { OrderCompletedEvent, OrderCreatedEvent, OrderPaidEvent, OrderShippedEvent, OrderStatusUpdatedEvent } from "./order.event.js";
|
|
5
|
+
|
|
6
|
+
export { CreateOrderContract, CreateOrderInputModel, OrderCompletedEvent, OrderCreatedEvent, OrderItemModel, OrderModel, OrderPaidEvent, OrderShippedEvent, OrderStatusEnum, OrderStatusUpdatedEvent, UpdateOrderStatusContract, UpdateOrderStatusInputModel };
|