@contractspec/example.marketplace 1.56.1 → 1.58.0
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/browser/docs/index.js +103 -0
- package/dist/browser/docs/marketplace.docblock.js +103 -0
- package/dist/browser/entities/index.js +721 -0
- package/dist/browser/entities/order.js +167 -0
- package/dist/browser/entities/payout.js +142 -0
- package/dist/browser/entities/product.js +152 -0
- package/dist/browser/entities/review.js +129 -0
- package/dist/browser/entities/store.js +97 -0
- package/dist/browser/example.js +42 -0
- package/dist/browser/handlers/index.js +303 -0
- package/dist/browser/handlers/marketplace.handlers.js +303 -0
- package/dist/browser/index.js +2016 -0
- package/dist/browser/marketplace.capability.js +40 -0
- package/dist/browser/marketplace.feature.js +137 -0
- package/dist/browser/order/index.js +307 -0
- package/dist/browser/order/order.enum.js +17 -0
- package/dist/browser/order/order.event.js +131 -0
- package/dist/browser/order/order.operations.js +172 -0
- package/dist/browser/order/order.presentation.js +153 -0
- package/dist/browser/order/order.schema.js +79 -0
- package/dist/browser/payout/index.js +152 -0
- package/dist/browser/payout/payout.enum.js +12 -0
- package/dist/browser/payout/payout.event.js +55 -0
- package/dist/browser/payout/payout.operations.js +94 -0
- package/dist/browser/payout/payout.presentation.js +111 -0
- package/dist/browser/payout/payout.schema.js +61 -0
- package/dist/browser/product/index.js +249 -0
- package/dist/browser/product/product.enum.js +13 -0
- package/dist/browser/product/product.event.js +74 -0
- package/dist/browser/product/product.operations.js +171 -0
- package/dist/browser/product/product.presentation.js +158 -0
- package/dist/browser/product/product.schema.js +84 -0
- package/dist/browser/review/index.js +206 -0
- package/dist/browser/review/review.enum.js +11 -0
- package/dist/browser/review/review.event.js +50 -0
- package/dist/browser/review/review.operations.js +152 -0
- package/dist/browser/review/review.presentation.js +123 -0
- package/dist/browser/review/review.schema.js +74 -0
- package/dist/browser/seeders/index.js +12 -0
- package/dist/browser/store/index.js +142 -0
- package/dist/browser/store/store.enum.js +11 -0
- package/dist/browser/store/store.event.js +52 -0
- package/dist/browser/store/store.operations.js +88 -0
- package/dist/browser/store/store.presentation.js +94 -0
- package/dist/browser/store/store.schema.js +43 -0
- package/dist/browser/tests/operations.test-spec.js +139 -0
- package/dist/browser/ui/MarketplaceDashboard.js +418 -0
- package/dist/browser/ui/hooks/index.js +59 -0
- package/dist/browser/ui/hooks/useMarketplaceData.js +56 -0
- package/dist/browser/ui/index.js +668 -0
- package/dist/browser/ui/renderers/index.js +248 -0
- package/dist/browser/ui/renderers/marketplace.markdown.js +248 -0
- package/dist/docs/index.d.ts +2 -1
- package/dist/docs/index.d.ts.map +1 -0
- package/dist/docs/index.js +104 -1
- package/dist/docs/marketplace.docblock.d.ts +2 -1
- package/dist/docs/marketplace.docblock.d.ts.map +1 -0
- package/dist/docs/marketplace.docblock.js +46 -57
- package/dist/entities/index.d.ts +302 -307
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/index.js +719 -43
- package/dist/entities/order.d.ts +77 -82
- package/dist/entities/order.d.ts.map +1 -1
- package/dist/entities/order.js +162 -167
- package/dist/entities/payout.d.ts +64 -69
- package/dist/entities/payout.d.ts.map +1 -1
- package/dist/entities/payout.js +137 -156
- package/dist/entities/product.d.ts +69 -74
- package/dist/entities/product.d.ts.map +1 -1
- package/dist/entities/product.js +148 -156
- package/dist/entities/review.d.ts +55 -60
- package/dist/entities/review.d.ts.map +1 -1
- package/dist/entities/review.js +124 -146
- package/dist/entities/store.d.ts +40 -45
- package/dist/entities/store.d.ts.map +1 -1
- package/dist/entities/store.js +94 -106
- package/dist/example.d.ts +2 -6
- package/dist/example.d.ts.map +1 -1
- package/dist/example.js +40 -55
- package/dist/handlers/index.d.ts +2 -2
- package/dist/handlers/index.d.ts.map +1 -0
- package/dist/handlers/index.js +304 -3
- package/dist/handlers/marketplace.handlers.d.ts +138 -138
- package/dist/handlers/marketplace.handlers.d.ts.map +1 -1
- package/dist/handlers/marketplace.handlers.js +284 -309
- package/dist/index.d.ts +13 -31
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2017 -32
- package/dist/marketplace.capability.d.ts +3 -8
- package/dist/marketplace.capability.d.ts.map +1 -1
- package/dist/marketplace.capability.js +41 -34
- package/dist/marketplace.feature.d.ts +1 -7
- package/dist/marketplace.feature.d.ts.map +1 -1
- package/dist/marketplace.feature.js +136 -313
- package/dist/node/docs/index.js +103 -0
- package/dist/node/docs/marketplace.docblock.js +103 -0
- package/dist/node/entities/index.js +721 -0
- package/dist/node/entities/order.js +167 -0
- package/dist/node/entities/payout.js +142 -0
- package/dist/node/entities/product.js +152 -0
- package/dist/node/entities/review.js +129 -0
- package/dist/node/entities/store.js +97 -0
- package/dist/node/example.js +42 -0
- package/dist/node/handlers/index.js +303 -0
- package/dist/node/handlers/marketplace.handlers.js +303 -0
- package/dist/node/index.js +2016 -0
- package/dist/node/marketplace.capability.js +40 -0
- package/dist/node/marketplace.feature.js +137 -0
- package/dist/node/order/index.js +307 -0
- package/dist/node/order/order.enum.js +17 -0
- package/dist/node/order/order.event.js +131 -0
- package/dist/node/order/order.operations.js +172 -0
- package/dist/node/order/order.presentation.js +153 -0
- package/dist/node/order/order.schema.js +79 -0
- package/dist/node/payout/index.js +152 -0
- package/dist/node/payout/payout.enum.js +12 -0
- package/dist/node/payout/payout.event.js +55 -0
- package/dist/node/payout/payout.operations.js +94 -0
- package/dist/node/payout/payout.presentation.js +111 -0
- package/dist/node/payout/payout.schema.js +61 -0
- package/dist/node/product/index.js +249 -0
- package/dist/node/product/product.enum.js +13 -0
- package/dist/node/product/product.event.js +74 -0
- package/dist/node/product/product.operations.js +171 -0
- package/dist/node/product/product.presentation.js +158 -0
- package/dist/node/product/product.schema.js +84 -0
- package/dist/node/review/index.js +206 -0
- package/dist/node/review/review.enum.js +11 -0
- package/dist/node/review/review.event.js +50 -0
- package/dist/node/review/review.operations.js +152 -0
- package/dist/node/review/review.presentation.js +123 -0
- package/dist/node/review/review.schema.js +74 -0
- package/dist/node/seeders/index.js +12 -0
- package/dist/node/store/index.js +142 -0
- package/dist/node/store/store.enum.js +11 -0
- package/dist/node/store/store.event.js +52 -0
- package/dist/node/store/store.operations.js +88 -0
- package/dist/node/store/store.presentation.js +94 -0
- package/dist/node/store/store.schema.js +43 -0
- package/dist/node/tests/operations.test-spec.js +139 -0
- package/dist/node/ui/MarketplaceDashboard.js +418 -0
- package/dist/node/ui/hooks/index.js +59 -0
- package/dist/node/ui/hooks/useMarketplaceData.js +56 -0
- package/dist/node/ui/index.js +668 -0
- package/dist/node/ui/renderers/index.js +248 -0
- package/dist/node/ui/renderers/marketplace.markdown.js +248 -0
- package/dist/order/index.d.ts +8 -5
- package/dist/order/index.d.ts.map +1 -0
- package/dist/order/index.js +307 -5
- package/dist/order/order.enum.d.ts +1 -6
- package/dist/order/order.enum.d.ts.map +1 -1
- package/dist/order/order.enum.js +16 -20
- package/dist/order/order.event.d.ts +133 -139
- package/dist/order/order.event.d.ts.map +1 -1
- package/dist/order/order.event.js +121 -205
- package/dist/order/order.operations.d.ts +291 -297
- package/dist/order/order.operations.d.ts.map +1 -1
- package/dist/order/order.operations.js +169 -115
- package/dist/order/order.presentation.d.ts +3 -8
- package/dist/order/order.presentation.d.ts.map +1 -1
- package/dist/order/order.presentation.js +149 -81
- package/dist/order/order.schema.d.ts +143 -148
- package/dist/order/order.schema.d.ts.map +1 -1
- package/dist/order/order.schema.js +75 -150
- package/dist/payout/index.d.ts +8 -5
- package/dist/payout/index.d.ts.map +1 -0
- package/dist/payout/index.js +152 -5
- package/dist/payout/payout.enum.d.ts +1 -6
- package/dist/payout/payout.enum.d.ts.map +1 -1
- package/dist/payout/payout.enum.js +11 -15
- package/dist/payout/payout.event.d.ts +54 -60
- package/dist/payout/payout.event.d.ts.map +1 -1
- package/dist/payout/payout.event.js +51 -87
- package/dist/payout/payout.operations.d.ts +82 -88
- package/dist/payout/payout.operations.d.ts.map +1 -1
- package/dist/payout/payout.operations.js +92 -50
- package/dist/payout/payout.presentation.d.ts +2 -7
- package/dist/payout/payout.presentation.d.ts.map +1 -1
- package/dist/payout/payout.presentation.js +108 -56
- package/dist/payout/payout.schema.d.ts +139 -144
- package/dist/payout/payout.schema.d.ts.map +1 -1
- package/dist/payout/payout.schema.js +58 -112
- package/dist/product/index.d.ts +8 -5
- package/dist/product/index.d.ts.map +1 -0
- package/dist/product/index.js +249 -5
- package/dist/product/product.enum.d.ts +1 -6
- package/dist/product/product.enum.d.ts.map +1 -1
- package/dist/product/product.enum.js +12 -16
- package/dist/product/product.event.d.ts +63 -69
- package/dist/product/product.event.d.ts.map +1 -1
- package/dist/product/product.event.js +68 -113
- package/dist/product/product.operations.d.ts +225 -231
- package/dist/product/product.operations.d.ts.map +1 -1
- package/dist/product/product.operations.js +168 -104
- package/dist/product/product.presentation.d.ts +3 -8
- package/dist/product/product.presentation.d.ts.map +1 -1
- package/dist/product/product.presentation.js +154 -81
- package/dist/product/product.schema.d.ts +196 -201
- package/dist/product/product.schema.d.ts.map +1 -1
- package/dist/product/product.schema.js +80 -171
- package/dist/review/index.d.ts +8 -5
- package/dist/review/index.d.ts.map +1 -0
- package/dist/review/index.js +206 -5
- package/dist/review/review.enum.d.ts +1 -6
- package/dist/review/review.enum.d.ts.map +1 -1
- package/dist/review/review.enum.js +10 -14
- package/dist/review/review.event.d.ts +46 -52
- package/dist/review/review.event.d.ts.map +1 -1
- package/dist/review/review.event.js +46 -79
- package/dist/review/review.operations.d.ts +190 -196
- package/dist/review/review.operations.d.ts.map +1 -1
- package/dist/review/review.operations.js +149 -102
- package/dist/review/review.presentation.d.ts +2 -7
- package/dist/review/review.presentation.d.ts.map +1 -1
- package/dist/review/review.presentation.js +120 -56
- package/dist/review/review.schema.d.ts +164 -169
- package/dist/review/review.schema.d.ts.map +1 -1
- package/dist/review/review.schema.js +70 -151
- package/dist/seeders/index.d.ts +4 -8
- package/dist/seeders/index.d.ts.map +1 -1
- package/dist/seeders/index.js +11 -16
- package/dist/store/index.d.ts +8 -5
- package/dist/store/index.d.ts.map +1 -0
- package/dist/store/index.js +142 -5
- package/dist/store/store.enum.d.ts +1 -6
- package/dist/store/store.enum.d.ts.map +1 -1
- package/dist/store/store.enum.js +10 -14
- package/dist/store/store.event.d.ts +42 -48
- package/dist/store/store.event.d.ts.map +1 -1
- package/dist/store/store.event.js +48 -75
- package/dist/store/store.operations.d.ts +98 -104
- package/dist/store/store.operations.d.ts.map +1 -1
- package/dist/store/store.operations.js +86 -58
- package/dist/store/store.presentation.d.ts +2 -7
- package/dist/store/store.presentation.d.ts.map +1 -1
- package/dist/store/store.presentation.js +91 -56
- package/dist/store/store.schema.d.ts +70 -75
- package/dist/store/store.schema.d.ts.map +1 -1
- package/dist/store/store.schema.js +41 -90
- package/dist/tests/operations.test-spec.d.ts +5 -10
- package/dist/tests/operations.test-spec.d.ts.map +1 -1
- package/dist/tests/operations.test-spec.js +134 -146
- package/dist/ui/MarketplaceDashboard.d.ts +1 -6
- package/dist/ui/MarketplaceDashboard.d.ts.map +1 -1
- package/dist/ui/MarketplaceDashboard.js +413 -313
- package/dist/ui/hooks/index.d.ts +2 -2
- package/dist/ui/hooks/index.d.ts.map +1 -0
- package/dist/ui/hooks/index.js +59 -4
- package/dist/ui/hooks/useMarketplaceData.d.ts +16 -20
- package/dist/ui/hooks/useMarketplaceData.d.ts.map +1 -1
- package/dist/ui/hooks/useMarketplaceData.js +53 -60
- package/dist/ui/index.d.ts +7 -6
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +668 -5
- package/dist/ui/renderers/index.d.ts +2 -2
- package/dist/ui/renderers/index.d.ts.map +1 -0
- package/dist/ui/renderers/index.js +249 -3
- package/dist/ui/renderers/marketplace.markdown.d.ts +13 -15
- package/dist/ui/renderers/marketplace.markdown.d.ts.map +1 -1
- package/dist/ui/renderers/marketplace.markdown.js +241 -236
- package/package.json +529 -110
- package/dist/docs/marketplace.docblock.js.map +0 -1
- package/dist/entities/index.js.map +0 -1
- package/dist/entities/order.js.map +0 -1
- package/dist/entities/payout.js.map +0 -1
- package/dist/entities/product.js.map +0 -1
- package/dist/entities/review.js.map +0 -1
- package/dist/entities/store.js.map +0 -1
- package/dist/example.js.map +0 -1
- package/dist/handlers/marketplace.handlers.js.map +0 -1
- package/dist/marketplace.capability.js.map +0 -1
- package/dist/marketplace.feature.js.map +0 -1
- package/dist/order/order.enum.js.map +0 -1
- package/dist/order/order.event.js.map +0 -1
- package/dist/order/order.operations.js.map +0 -1
- package/dist/order/order.presentation.js.map +0 -1
- package/dist/order/order.schema.js.map +0 -1
- package/dist/payout/payout.enum.js.map +0 -1
- package/dist/payout/payout.event.js.map +0 -1
- package/dist/payout/payout.operations.js.map +0 -1
- package/dist/payout/payout.presentation.js.map +0 -1
- package/dist/payout/payout.schema.js.map +0 -1
- package/dist/product/product.enum.js.map +0 -1
- package/dist/product/product.event.js.map +0 -1
- package/dist/product/product.operations.js.map +0 -1
- package/dist/product/product.presentation.js.map +0 -1
- package/dist/product/product.schema.js.map +0 -1
- package/dist/review/review.enum.js.map +0 -1
- package/dist/review/review.event.js.map +0 -1
- package/dist/review/review.operations.js.map +0 -1
- package/dist/review/review.presentation.js.map +0 -1
- package/dist/review/review.schema.js.map +0 -1
- package/dist/seeders/index.js.map +0 -1
- package/dist/store/store.enum.js.map +0 -1
- package/dist/store/store.event.js.map +0 -1
- package/dist/store/store.operations.js.map +0 -1
- package/dist/store/store.presentation.js.map +0 -1
- package/dist/store/store.schema.js.map +0 -1
- package/dist/tests/operations.test-spec.js.map +0 -1
- package/dist/ui/MarketplaceDashboard.js.map +0 -1
- package/dist/ui/hooks/useMarketplaceData.js.map +0 -1
- package/dist/ui/renderers/marketplace.markdown.js.map +0 -1
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
// src/payout/payout.enum.ts
|
|
2
|
+
import { defineEnum } from "@contractspec/lib.schema";
|
|
3
|
+
var PayoutStatusEnum = defineEnum("PayoutStatus", [
|
|
4
|
+
"PENDING",
|
|
5
|
+
"PROCESSING",
|
|
6
|
+
"PAID",
|
|
7
|
+
"FAILED",
|
|
8
|
+
"CANCELLED"
|
|
9
|
+
]);
|
|
10
|
+
|
|
11
|
+
// src/payout/payout.schema.ts
|
|
12
|
+
import { defineSchemaModel, ScalarTypeEnum } from "@contractspec/lib.schema";
|
|
13
|
+
var PayoutModel = defineSchemaModel({
|
|
14
|
+
name: "PayoutModel",
|
|
15
|
+
description: "A payout to seller",
|
|
16
|
+
fields: {
|
|
17
|
+
id: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
18
|
+
payoutNumber: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
19
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
20
|
+
status: { type: PayoutStatusEnum, isOptional: false },
|
|
21
|
+
grossAmount: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
22
|
+
platformFees: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
23
|
+
netAmount: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
24
|
+
currency: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
25
|
+
periodStart: { type: ScalarTypeEnum.DateTime(), isOptional: false },
|
|
26
|
+
periodEnd: { type: ScalarTypeEnum.DateTime(), isOptional: false },
|
|
27
|
+
orderCount: { type: ScalarTypeEnum.Int_unsecure(), isOptional: false },
|
|
28
|
+
createdAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },
|
|
29
|
+
paidAt: { type: ScalarTypeEnum.DateTime(), isOptional: true }
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
var ListPayoutsInputModel = defineSchemaModel({
|
|
33
|
+
name: "ListPayoutsInput",
|
|
34
|
+
fields: {
|
|
35
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
36
|
+
status: { type: PayoutStatusEnum, isOptional: true },
|
|
37
|
+
limit: {
|
|
38
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
39
|
+
isOptional: true,
|
|
40
|
+
defaultValue: 20
|
|
41
|
+
},
|
|
42
|
+
offset: {
|
|
43
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
44
|
+
isOptional: true,
|
|
45
|
+
defaultValue: 0
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
var ListPayoutsOutputModel = defineSchemaModel({
|
|
50
|
+
name: "ListPayoutsOutput",
|
|
51
|
+
fields: {
|
|
52
|
+
payouts: { type: PayoutModel, isArray: true, isOptional: false },
|
|
53
|
+
total: { type: ScalarTypeEnum.Int_unsecure(), isOptional: false },
|
|
54
|
+
totalPending: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false }
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
// src/payout/payout.operations.ts
|
|
59
|
+
import { defineQuery } from "@contractspec/lib.contracts/operations";
|
|
60
|
+
var OWNERS = ["@example.marketplace"];
|
|
61
|
+
var ListPayoutsContract = defineQuery({
|
|
62
|
+
meta: {
|
|
63
|
+
key: "marketplace.payout.list",
|
|
64
|
+
version: "1.0.0",
|
|
65
|
+
stability: "stable",
|
|
66
|
+
owners: [...OWNERS],
|
|
67
|
+
tags: ["marketplace", "payout", "list"],
|
|
68
|
+
description: "List payouts for a store.",
|
|
69
|
+
goal: "View payout history.",
|
|
70
|
+
context: "Seller dashboard."
|
|
71
|
+
},
|
|
72
|
+
io: { input: ListPayoutsInputModel, output: ListPayoutsOutputModel },
|
|
73
|
+
policy: { auth: "user" },
|
|
74
|
+
acceptance: {
|
|
75
|
+
scenarios: [
|
|
76
|
+
{
|
|
77
|
+
key: "list-payouts-happy-path",
|
|
78
|
+
given: ["Store has payout history"],
|
|
79
|
+
when: ["Seller lists payouts"],
|
|
80
|
+
then: ["List of payouts is returned"]
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
examples: [
|
|
84
|
+
{
|
|
85
|
+
key: "list-recent",
|
|
86
|
+
input: { limit: 10, offset: 0 },
|
|
87
|
+
output: { items: [], total: 5, hasMore: false }
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
}
|
|
91
|
+
});
|
|
92
|
+
export {
|
|
93
|
+
ListPayoutsContract
|
|
94
|
+
};
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
// src/payout/payout.enum.ts
|
|
2
|
+
import { defineEnum } from "@contractspec/lib.schema";
|
|
3
|
+
var PayoutStatusEnum = defineEnum("PayoutStatus", [
|
|
4
|
+
"PENDING",
|
|
5
|
+
"PROCESSING",
|
|
6
|
+
"PAID",
|
|
7
|
+
"FAILED",
|
|
8
|
+
"CANCELLED"
|
|
9
|
+
]);
|
|
10
|
+
|
|
11
|
+
// src/payout/payout.schema.ts
|
|
12
|
+
import { defineSchemaModel, ScalarTypeEnum } from "@contractspec/lib.schema";
|
|
13
|
+
var PayoutModel = defineSchemaModel({
|
|
14
|
+
name: "PayoutModel",
|
|
15
|
+
description: "A payout to seller",
|
|
16
|
+
fields: {
|
|
17
|
+
id: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
18
|
+
payoutNumber: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
19
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
20
|
+
status: { type: PayoutStatusEnum, isOptional: false },
|
|
21
|
+
grossAmount: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
22
|
+
platformFees: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
23
|
+
netAmount: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
24
|
+
currency: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
25
|
+
periodStart: { type: ScalarTypeEnum.DateTime(), isOptional: false },
|
|
26
|
+
periodEnd: { type: ScalarTypeEnum.DateTime(), isOptional: false },
|
|
27
|
+
orderCount: { type: ScalarTypeEnum.Int_unsecure(), isOptional: false },
|
|
28
|
+
createdAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },
|
|
29
|
+
paidAt: { type: ScalarTypeEnum.DateTime(), isOptional: true }
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
var ListPayoutsInputModel = defineSchemaModel({
|
|
33
|
+
name: "ListPayoutsInput",
|
|
34
|
+
fields: {
|
|
35
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
36
|
+
status: { type: PayoutStatusEnum, isOptional: true },
|
|
37
|
+
limit: {
|
|
38
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
39
|
+
isOptional: true,
|
|
40
|
+
defaultValue: 20
|
|
41
|
+
},
|
|
42
|
+
offset: {
|
|
43
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
44
|
+
isOptional: true,
|
|
45
|
+
defaultValue: 0
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
var ListPayoutsOutputModel = defineSchemaModel({
|
|
50
|
+
name: "ListPayoutsOutput",
|
|
51
|
+
fields: {
|
|
52
|
+
payouts: { type: PayoutModel, isArray: true, isOptional: false },
|
|
53
|
+
total: { type: ScalarTypeEnum.Int_unsecure(), isOptional: false },
|
|
54
|
+
totalPending: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false }
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
// src/payout/payout.presentation.ts
|
|
59
|
+
import { definePresentation, StabilityEnum } from "@contractspec/lib.contracts";
|
|
60
|
+
var PayoutListPresentation = definePresentation({
|
|
61
|
+
meta: {
|
|
62
|
+
key: "marketplace.payout.viewList",
|
|
63
|
+
version: "1.0.0",
|
|
64
|
+
title: "Payout List",
|
|
65
|
+
description: "List of payouts for sellers",
|
|
66
|
+
domain: "marketplace",
|
|
67
|
+
owners: ["@marketplace-team"],
|
|
68
|
+
tags: ["marketplace", "payout", "list"],
|
|
69
|
+
stability: StabilityEnum.Experimental,
|
|
70
|
+
goal: "Show sellers their historical and pending payouts.",
|
|
71
|
+
context: "Financial dashboard for sellers."
|
|
72
|
+
},
|
|
73
|
+
source: {
|
|
74
|
+
type: "component",
|
|
75
|
+
framework: "react",
|
|
76
|
+
componentKey: "PayoutList",
|
|
77
|
+
props: PayoutModel
|
|
78
|
+
},
|
|
79
|
+
targets: ["react", "markdown"],
|
|
80
|
+
policy: {
|
|
81
|
+
flags: ["marketplace.payouts.enabled"]
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
var PayoutDetailPresentation = definePresentation({
|
|
85
|
+
meta: {
|
|
86
|
+
key: "marketplace.payout.detail",
|
|
87
|
+
version: "1.0.0",
|
|
88
|
+
title: "Payout Details",
|
|
89
|
+
description: "Payout detail with breakdown",
|
|
90
|
+
domain: "marketplace",
|
|
91
|
+
owners: ["@marketplace-team"],
|
|
92
|
+
tags: ["marketplace", "payout", "detail"],
|
|
93
|
+
stability: StabilityEnum.Experimental,
|
|
94
|
+
goal: "Show the breakdown of a specific payout including fees and orders.",
|
|
95
|
+
context: "Accessed from the payout list."
|
|
96
|
+
},
|
|
97
|
+
source: {
|
|
98
|
+
type: "component",
|
|
99
|
+
framework: "react",
|
|
100
|
+
componentKey: "PayoutDetail",
|
|
101
|
+
props: PayoutModel
|
|
102
|
+
},
|
|
103
|
+
targets: ["react", "markdown"],
|
|
104
|
+
policy: {
|
|
105
|
+
flags: ["marketplace.payouts.enabled"]
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
export {
|
|
109
|
+
PayoutListPresentation,
|
|
110
|
+
PayoutDetailPresentation
|
|
111
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
// src/payout/payout.enum.ts
|
|
2
|
+
import { defineEnum } from "@contractspec/lib.schema";
|
|
3
|
+
var PayoutStatusEnum = defineEnum("PayoutStatus", [
|
|
4
|
+
"PENDING",
|
|
5
|
+
"PROCESSING",
|
|
6
|
+
"PAID",
|
|
7
|
+
"FAILED",
|
|
8
|
+
"CANCELLED"
|
|
9
|
+
]);
|
|
10
|
+
|
|
11
|
+
// src/payout/payout.schema.ts
|
|
12
|
+
import { defineSchemaModel, ScalarTypeEnum } from "@contractspec/lib.schema";
|
|
13
|
+
var PayoutModel = defineSchemaModel({
|
|
14
|
+
name: "PayoutModel",
|
|
15
|
+
description: "A payout to seller",
|
|
16
|
+
fields: {
|
|
17
|
+
id: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
18
|
+
payoutNumber: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
19
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
20
|
+
status: { type: PayoutStatusEnum, isOptional: false },
|
|
21
|
+
grossAmount: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
22
|
+
platformFees: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
23
|
+
netAmount: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
24
|
+
currency: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
25
|
+
periodStart: { type: ScalarTypeEnum.DateTime(), isOptional: false },
|
|
26
|
+
periodEnd: { type: ScalarTypeEnum.DateTime(), isOptional: false },
|
|
27
|
+
orderCount: { type: ScalarTypeEnum.Int_unsecure(), isOptional: false },
|
|
28
|
+
createdAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },
|
|
29
|
+
paidAt: { type: ScalarTypeEnum.DateTime(), isOptional: true }
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
var ListPayoutsInputModel = defineSchemaModel({
|
|
33
|
+
name: "ListPayoutsInput",
|
|
34
|
+
fields: {
|
|
35
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
36
|
+
status: { type: PayoutStatusEnum, isOptional: true },
|
|
37
|
+
limit: {
|
|
38
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
39
|
+
isOptional: true,
|
|
40
|
+
defaultValue: 20
|
|
41
|
+
},
|
|
42
|
+
offset: {
|
|
43
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
44
|
+
isOptional: true,
|
|
45
|
+
defaultValue: 0
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
var ListPayoutsOutputModel = defineSchemaModel({
|
|
50
|
+
name: "ListPayoutsOutput",
|
|
51
|
+
fields: {
|
|
52
|
+
payouts: { type: PayoutModel, isArray: true, isOptional: false },
|
|
53
|
+
total: { type: ScalarTypeEnum.Int_unsecure(), isOptional: false },
|
|
54
|
+
totalPending: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false }
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
export {
|
|
58
|
+
PayoutModel,
|
|
59
|
+
ListPayoutsOutputModel,
|
|
60
|
+
ListPayoutsInputModel
|
|
61
|
+
};
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
// src/product/product.enum.ts
|
|
2
|
+
import { defineEnum } from "@contractspec/lib.schema";
|
|
3
|
+
var ProductStatusEnum = defineEnum("ProductStatus", [
|
|
4
|
+
"DRAFT",
|
|
5
|
+
"PENDING_REVIEW",
|
|
6
|
+
"ACTIVE",
|
|
7
|
+
"OUT_OF_STOCK",
|
|
8
|
+
"DISCONTINUED",
|
|
9
|
+
"REJECTED"
|
|
10
|
+
]);
|
|
11
|
+
|
|
12
|
+
// src/product/product.schema.ts
|
|
13
|
+
import { defineSchemaModel, ScalarTypeEnum } from "@contractspec/lib.schema";
|
|
14
|
+
var ProductModel = defineSchemaModel({
|
|
15
|
+
name: "ProductModel",
|
|
16
|
+
description: "A product listing",
|
|
17
|
+
fields: {
|
|
18
|
+
id: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
19
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
20
|
+
name: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
21
|
+
slug: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
22
|
+
description: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
23
|
+
status: { type: ProductStatusEnum, isOptional: false },
|
|
24
|
+
price: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
25
|
+
currency: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
26
|
+
quantity: { type: ScalarTypeEnum.Int_unsecure(), isOptional: false },
|
|
27
|
+
categoryId: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
28
|
+
primaryImageId: {
|
|
29
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
30
|
+
isOptional: true
|
|
31
|
+
},
|
|
32
|
+
averageRating: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
33
|
+
totalSold: { type: ScalarTypeEnum.Int_unsecure(), isOptional: false },
|
|
34
|
+
createdAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
var CreateProductInputModel = defineSchemaModel({
|
|
38
|
+
name: "CreateProductInput",
|
|
39
|
+
fields: {
|
|
40
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
41
|
+
name: { type: ScalarTypeEnum.NonEmptyString(), isOptional: false },
|
|
42
|
+
slug: { type: ScalarTypeEnum.NonEmptyString(), isOptional: false },
|
|
43
|
+
description: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
44
|
+
price: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
45
|
+
currency: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
46
|
+
quantity: { type: ScalarTypeEnum.Int_unsecure(), isOptional: true },
|
|
47
|
+
categoryId: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
48
|
+
sku: { type: ScalarTypeEnum.String_unsecure(), isOptional: true }
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
var ListProductsInputModel = defineSchemaModel({
|
|
52
|
+
name: "ListProductsInput",
|
|
53
|
+
fields: {
|
|
54
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
55
|
+
categoryId: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
56
|
+
status: { type: ProductStatusEnum, isOptional: true },
|
|
57
|
+
search: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
58
|
+
minPrice: { type: ScalarTypeEnum.Float_unsecure(), isOptional: true },
|
|
59
|
+
maxPrice: { type: ScalarTypeEnum.Float_unsecure(), isOptional: true },
|
|
60
|
+
limit: {
|
|
61
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
62
|
+
isOptional: true,
|
|
63
|
+
defaultValue: 20
|
|
64
|
+
},
|
|
65
|
+
offset: {
|
|
66
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
67
|
+
isOptional: true,
|
|
68
|
+
defaultValue: 0
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
var ListProductsOutputModel = defineSchemaModel({
|
|
73
|
+
name: "ListProductsOutput",
|
|
74
|
+
fields: {
|
|
75
|
+
products: { type: ProductModel, isArray: true, isOptional: false },
|
|
76
|
+
total: { type: ScalarTypeEnum.Int_unsecure(), isOptional: false }
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
// src/product/product.operations.ts
|
|
81
|
+
import {
|
|
82
|
+
defineCommand,
|
|
83
|
+
defineQuery
|
|
84
|
+
} from "@contractspec/lib.contracts/operations";
|
|
85
|
+
var OWNERS = ["@example.marketplace"];
|
|
86
|
+
var CreateProductContract = defineCommand({
|
|
87
|
+
meta: {
|
|
88
|
+
key: "marketplace.product.create",
|
|
89
|
+
version: "1.0.0",
|
|
90
|
+
stability: "stable",
|
|
91
|
+
owners: [...OWNERS],
|
|
92
|
+
tags: ["marketplace", "product", "create"],
|
|
93
|
+
description: "Create a new product listing.",
|
|
94
|
+
goal: "Allow sellers to list products.",
|
|
95
|
+
context: "Product management."
|
|
96
|
+
},
|
|
97
|
+
io: { input: CreateProductInputModel, output: ProductModel },
|
|
98
|
+
policy: { auth: "user" },
|
|
99
|
+
sideEffects: {
|
|
100
|
+
emits: [
|
|
101
|
+
{
|
|
102
|
+
key: "marketplace.product.created",
|
|
103
|
+
version: "1.0.0",
|
|
104
|
+
when: "Product is created",
|
|
105
|
+
payload: ProductModel
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
audit: ["marketplace.product.created"]
|
|
109
|
+
},
|
|
110
|
+
acceptance: {
|
|
111
|
+
scenarios: [
|
|
112
|
+
{
|
|
113
|
+
key: "create-product-happy-path",
|
|
114
|
+
given: ["User is a seller"],
|
|
115
|
+
when: ["User creates a product listing"],
|
|
116
|
+
then: ["Product is created", "ProductCreated event is emitted"]
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
examples: [
|
|
120
|
+
{
|
|
121
|
+
key: "create-t-shirt",
|
|
122
|
+
input: {
|
|
123
|
+
title: "Classic T-Shirt",
|
|
124
|
+
price: 25,
|
|
125
|
+
stock: 100,
|
|
126
|
+
storeId: "store-123"
|
|
127
|
+
},
|
|
128
|
+
output: {
|
|
129
|
+
id: "prod-456",
|
|
130
|
+
title: "Classic T-Shirt",
|
|
131
|
+
status: "published"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
});
|
|
137
|
+
var ListProductsContract = defineQuery({
|
|
138
|
+
meta: {
|
|
139
|
+
key: "marketplace.product.list",
|
|
140
|
+
version: "1.0.0",
|
|
141
|
+
stability: "stable",
|
|
142
|
+
owners: [...OWNERS],
|
|
143
|
+
tags: ["marketplace", "product", "list"],
|
|
144
|
+
description: "List products with filters.",
|
|
145
|
+
goal: "Browse products on the marketplace.",
|
|
146
|
+
context: "Product catalog, search."
|
|
147
|
+
},
|
|
148
|
+
io: { input: ListProductsInputModel, output: ListProductsOutputModel },
|
|
149
|
+
policy: { auth: "anonymous" },
|
|
150
|
+
acceptance: {
|
|
151
|
+
scenarios: [
|
|
152
|
+
{
|
|
153
|
+
key: "list-products-happy-path",
|
|
154
|
+
given: ["Products exist"],
|
|
155
|
+
when: ["User searches for products"],
|
|
156
|
+
then: ["List of products is returned"]
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
examples: [
|
|
160
|
+
{
|
|
161
|
+
key: "search-t-shirts",
|
|
162
|
+
input: { search: "t-shirt", limit: 20 },
|
|
163
|
+
output: { items: [], total: 50, hasMore: true }
|
|
164
|
+
}
|
|
165
|
+
]
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
|
|
169
|
+
// src/product/product.event.ts
|
|
170
|
+
import { ScalarTypeEnum as ScalarTypeEnum2, defineSchemaModel as defineSchemaModel2 } from "@contractspec/lib.schema";
|
|
171
|
+
import { defineEvent } from "@contractspec/lib.contracts";
|
|
172
|
+
var ProductCreatedPayload = defineSchemaModel2({
|
|
173
|
+
name: "ProductCreatedEventPayload",
|
|
174
|
+
fields: {
|
|
175
|
+
productId: { type: ScalarTypeEnum2.String_unsecure(), isOptional: false },
|
|
176
|
+
storeId: { type: ScalarTypeEnum2.String_unsecure(), isOptional: false },
|
|
177
|
+
name: { type: ScalarTypeEnum2.String_unsecure(), isOptional: false },
|
|
178
|
+
price: { type: ScalarTypeEnum2.Float_unsecure(), isOptional: false },
|
|
179
|
+
currency: { type: ScalarTypeEnum2.String_unsecure(), isOptional: false },
|
|
180
|
+
timestamp: { type: ScalarTypeEnum2.DateTime(), isOptional: false }
|
|
181
|
+
}
|
|
182
|
+
});
|
|
183
|
+
var ProductPublishedPayload = defineSchemaModel2({
|
|
184
|
+
name: "ProductPublishedEventPayload",
|
|
185
|
+
fields: {
|
|
186
|
+
productId: { type: ScalarTypeEnum2.String_unsecure(), isOptional: false },
|
|
187
|
+
storeId: { type: ScalarTypeEnum2.String_unsecure(), isOptional: false },
|
|
188
|
+
timestamp: { type: ScalarTypeEnum2.DateTime(), isOptional: false }
|
|
189
|
+
}
|
|
190
|
+
});
|
|
191
|
+
var InventoryUpdatedPayload = defineSchemaModel2({
|
|
192
|
+
name: "InventoryUpdatedEventPayload",
|
|
193
|
+
fields: {
|
|
194
|
+
productId: { type: ScalarTypeEnum2.String_unsecure(), isOptional: false },
|
|
195
|
+
variantId: { type: ScalarTypeEnum2.String_unsecure(), isOptional: true },
|
|
196
|
+
previousQuantity: {
|
|
197
|
+
type: ScalarTypeEnum2.Int_unsecure(),
|
|
198
|
+
isOptional: false
|
|
199
|
+
},
|
|
200
|
+
newQuantity: { type: ScalarTypeEnum2.Int_unsecure(), isOptional: false },
|
|
201
|
+
reason: { type: ScalarTypeEnum2.String_unsecure(), isOptional: false },
|
|
202
|
+
timestamp: { type: ScalarTypeEnum2.DateTime(), isOptional: false }
|
|
203
|
+
}
|
|
204
|
+
});
|
|
205
|
+
var ProductCreatedEvent = defineEvent({
|
|
206
|
+
meta: {
|
|
207
|
+
key: "marketplace.product.created",
|
|
208
|
+
version: "1.0.0",
|
|
209
|
+
description: "A new product has been created.",
|
|
210
|
+
stability: "experimental",
|
|
211
|
+
owners: ["@marketplace-team"],
|
|
212
|
+
tags: ["marketplace", "product"]
|
|
213
|
+
},
|
|
214
|
+
payload: ProductCreatedPayload
|
|
215
|
+
});
|
|
216
|
+
var ProductPublishedEvent = defineEvent({
|
|
217
|
+
meta: {
|
|
218
|
+
key: "marketplace.product.published",
|
|
219
|
+
version: "1.0.0",
|
|
220
|
+
description: "A product has been published.",
|
|
221
|
+
stability: "experimental",
|
|
222
|
+
owners: ["@marketplace-team"],
|
|
223
|
+
tags: ["marketplace", "product"]
|
|
224
|
+
},
|
|
225
|
+
payload: ProductPublishedPayload
|
|
226
|
+
});
|
|
227
|
+
var InventoryUpdatedEvent = defineEvent({
|
|
228
|
+
meta: {
|
|
229
|
+
key: "marketplace.inventory.updated",
|
|
230
|
+
version: "1.0.0",
|
|
231
|
+
description: "Product inventory has been updated.",
|
|
232
|
+
stability: "experimental",
|
|
233
|
+
owners: ["@marketplace-team"],
|
|
234
|
+
tags: ["marketplace", "product", "inventory"]
|
|
235
|
+
},
|
|
236
|
+
payload: InventoryUpdatedPayload
|
|
237
|
+
});
|
|
238
|
+
export {
|
|
239
|
+
ProductStatusEnum,
|
|
240
|
+
ProductPublishedEvent,
|
|
241
|
+
ProductModel,
|
|
242
|
+
ProductCreatedEvent,
|
|
243
|
+
ListProductsOutputModel,
|
|
244
|
+
ListProductsInputModel,
|
|
245
|
+
ListProductsContract,
|
|
246
|
+
InventoryUpdatedEvent,
|
|
247
|
+
CreateProductInputModel,
|
|
248
|
+
CreateProductContract
|
|
249
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// src/product/product.enum.ts
|
|
2
|
+
import { defineEnum } from "@contractspec/lib.schema";
|
|
3
|
+
var ProductStatusEnum = defineEnum("ProductStatus", [
|
|
4
|
+
"DRAFT",
|
|
5
|
+
"PENDING_REVIEW",
|
|
6
|
+
"ACTIVE",
|
|
7
|
+
"OUT_OF_STOCK",
|
|
8
|
+
"DISCONTINUED",
|
|
9
|
+
"REJECTED"
|
|
10
|
+
]);
|
|
11
|
+
export {
|
|
12
|
+
ProductStatusEnum
|
|
13
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
// src/product/product.event.ts
|
|
2
|
+
import { ScalarTypeEnum, defineSchemaModel } from "@contractspec/lib.schema";
|
|
3
|
+
import { defineEvent } from "@contractspec/lib.contracts";
|
|
4
|
+
var ProductCreatedPayload = defineSchemaModel({
|
|
5
|
+
name: "ProductCreatedEventPayload",
|
|
6
|
+
fields: {
|
|
7
|
+
productId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
8
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
9
|
+
name: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
10
|
+
price: { type: ScalarTypeEnum.Float_unsecure(), isOptional: false },
|
|
11
|
+
currency: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
12
|
+
timestamp: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
var ProductPublishedPayload = defineSchemaModel({
|
|
16
|
+
name: "ProductPublishedEventPayload",
|
|
17
|
+
fields: {
|
|
18
|
+
productId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
19
|
+
storeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
20
|
+
timestamp: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
var InventoryUpdatedPayload = defineSchemaModel({
|
|
24
|
+
name: "InventoryUpdatedEventPayload",
|
|
25
|
+
fields: {
|
|
26
|
+
productId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
27
|
+
variantId: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
28
|
+
previousQuantity: {
|
|
29
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
30
|
+
isOptional: false
|
|
31
|
+
},
|
|
32
|
+
newQuantity: { type: ScalarTypeEnum.Int_unsecure(), isOptional: false },
|
|
33
|
+
reason: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
34
|
+
timestamp: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
var ProductCreatedEvent = defineEvent({
|
|
38
|
+
meta: {
|
|
39
|
+
key: "marketplace.product.created",
|
|
40
|
+
version: "1.0.0",
|
|
41
|
+
description: "A new product has been created.",
|
|
42
|
+
stability: "experimental",
|
|
43
|
+
owners: ["@marketplace-team"],
|
|
44
|
+
tags: ["marketplace", "product"]
|
|
45
|
+
},
|
|
46
|
+
payload: ProductCreatedPayload
|
|
47
|
+
});
|
|
48
|
+
var ProductPublishedEvent = defineEvent({
|
|
49
|
+
meta: {
|
|
50
|
+
key: "marketplace.product.published",
|
|
51
|
+
version: "1.0.0",
|
|
52
|
+
description: "A product has been published.",
|
|
53
|
+
stability: "experimental",
|
|
54
|
+
owners: ["@marketplace-team"],
|
|
55
|
+
tags: ["marketplace", "product"]
|
|
56
|
+
},
|
|
57
|
+
payload: ProductPublishedPayload
|
|
58
|
+
});
|
|
59
|
+
var InventoryUpdatedEvent = defineEvent({
|
|
60
|
+
meta: {
|
|
61
|
+
key: "marketplace.inventory.updated",
|
|
62
|
+
version: "1.0.0",
|
|
63
|
+
description: "Product inventory has been updated.",
|
|
64
|
+
stability: "experimental",
|
|
65
|
+
owners: ["@marketplace-team"],
|
|
66
|
+
tags: ["marketplace", "product", "inventory"]
|
|
67
|
+
},
|
|
68
|
+
payload: InventoryUpdatedPayload
|
|
69
|
+
});
|
|
70
|
+
export {
|
|
71
|
+
ProductPublishedEvent,
|
|
72
|
+
ProductCreatedEvent,
|
|
73
|
+
InventoryUpdatedEvent
|
|
74
|
+
};
|