@contractspec/example.marketplace 1.53.0 → 1.55.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/entities/index.d.ts +296 -296
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/order.d.ts +78 -78
- package/dist/entities/payout.d.ts +65 -65
- package/dist/entities/product.d.ts +70 -70
- package/dist/entities/review.d.ts +56 -56
- package/dist/entities/store.d.ts +41 -41
- package/dist/order/order.enum.d.ts +2 -2
- package/dist/order/order.enum.d.ts.map +1 -1
- package/dist/order/order.event.d.ts +38 -38
- package/dist/order/order.event.d.ts.map +1 -1
- package/dist/order/order.operations.d.ts +89 -89
- package/dist/order/order.operations.d.ts.map +1 -1
- package/dist/order/order.schema.d.ts +39 -39
- package/dist/payout/payout.enum.d.ts +2 -2
- package/dist/payout/payout.event.d.ts +17 -17
- package/dist/payout/payout.operations.d.ts +24 -24
- package/dist/payout/payout.presentation.d.ts +3 -3
- package/dist/payout/payout.schema.d.ts +37 -37
- package/dist/product/product.enum.d.ts +2 -2
- package/dist/product/product.event.d.ts +20 -20
- package/dist/product/product.operations.d.ts +68 -68
- package/dist/product/product.presentation.d.ts +4 -4
- package/dist/product/product.schema.d.ts +52 -52
- package/dist/product/product.schema.d.ts.map +1 -1
- package/dist/review/review.enum.d.ts +2 -2
- package/dist/review/review.event.d.ts +15 -15
- package/dist/review/review.operations.d.ts +59 -59
- package/dist/review/review.presentation.d.ts +3 -3
- package/dist/review/review.schema.d.ts +45 -45
- package/dist/store/store.enum.d.ts +2 -2
- package/dist/store/store.enum.d.ts.map +1 -1
- package/dist/store/store.event.d.ts +14 -14
- package/dist/store/store.event.d.ts.map +1 -1
- package/dist/store/store.operations.d.ts +32 -32
- package/dist/store/store.schema.d.ts +20 -20
- package/dist/tests/operations.test-spec.d.ts +6 -6
- package/package.json +10 -10
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema848 from "@contractspec/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/payout/payout.enum.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Payout status enum.
|
|
6
6
|
*/
|
|
7
|
-
declare const PayoutStatusEnum:
|
|
7
|
+
declare const PayoutStatusEnum: _contractspec_lib_schema848.EnumType<[string, string, string, string, string]>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { PayoutStatusEnum };
|
|
10
10
|
//# sourceMappingURL=payout.enum.d.ts.map
|
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts22 from "@contractspec/lib.contracts";
|
|
2
|
+
import * as _contractspec_lib_schema849 from "@contractspec/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/payout/payout.event.d.ts
|
|
5
|
-
declare const PayoutCreatedEvent:
|
|
5
|
+
declare const PayoutCreatedEvent: _contractspec_lib_contracts22.EventSpec<_contractspec_lib_schema849.SchemaModel<{
|
|
6
6
|
payoutId: {
|
|
7
|
-
type:
|
|
7
|
+
type: _contractspec_lib_schema849.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
|
9
9
|
};
|
|
10
10
|
payoutNumber: {
|
|
11
|
-
type:
|
|
11
|
+
type: _contractspec_lib_schema849.FieldType<string, string>;
|
|
12
12
|
isOptional: false;
|
|
13
13
|
};
|
|
14
14
|
storeId: {
|
|
15
|
-
type:
|
|
15
|
+
type: _contractspec_lib_schema849.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
netAmount: {
|
|
19
|
-
type:
|
|
19
|
+
type: _contractspec_lib_schema849.FieldType<number, number>;
|
|
20
20
|
isOptional: false;
|
|
21
21
|
};
|
|
22
22
|
currency: {
|
|
23
|
-
type:
|
|
23
|
+
type: _contractspec_lib_schema849.FieldType<string, string>;
|
|
24
24
|
isOptional: false;
|
|
25
25
|
};
|
|
26
26
|
orderCount: {
|
|
27
|
-
type:
|
|
27
|
+
type: _contractspec_lib_schema849.FieldType<number, number>;
|
|
28
28
|
isOptional: false;
|
|
29
29
|
};
|
|
30
30
|
timestamp: {
|
|
31
|
-
type:
|
|
31
|
+
type: _contractspec_lib_schema849.FieldType<Date, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
}>>;
|
|
35
|
-
declare const PayoutPaidEvent:
|
|
35
|
+
declare const PayoutPaidEvent: _contractspec_lib_contracts22.EventSpec<_contractspec_lib_schema849.SchemaModel<{
|
|
36
36
|
payoutId: {
|
|
37
|
-
type:
|
|
37
|
+
type: _contractspec_lib_schema849.FieldType<string, string>;
|
|
38
38
|
isOptional: false;
|
|
39
39
|
};
|
|
40
40
|
payoutNumber: {
|
|
41
|
-
type:
|
|
41
|
+
type: _contractspec_lib_schema849.FieldType<string, string>;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
storeId: {
|
|
45
|
-
type:
|
|
45
|
+
type: _contractspec_lib_schema849.FieldType<string, string>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
netAmount: {
|
|
49
|
-
type:
|
|
49
|
+
type: _contractspec_lib_schema849.FieldType<number, number>;
|
|
50
50
|
isOptional: false;
|
|
51
51
|
};
|
|
52
52
|
paymentReference: {
|
|
53
|
-
type:
|
|
53
|
+
type: _contractspec_lib_schema849.FieldType<string, string>;
|
|
54
54
|
isOptional: true;
|
|
55
55
|
};
|
|
56
56
|
timestamp: {
|
|
57
|
-
type:
|
|
57
|
+
type: _contractspec_lib_schema849.FieldType<Date, string>;
|
|
58
58
|
isOptional: false;
|
|
59
59
|
};
|
|
60
60
|
}>>;
|
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts24 from "@contractspec/lib.contracts";
|
|
2
|
+
import * as _contractspec_lib_schema915 from "@contractspec/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/payout/payout.operations.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* List payouts for a store.
|
|
7
7
|
*/
|
|
8
|
-
declare const ListPayoutsContract:
|
|
8
|
+
declare const ListPayoutsContract: _contractspec_lib_contracts24.OperationSpec<_contractspec_lib_schema915.SchemaModel<{
|
|
9
9
|
storeId: {
|
|
10
|
-
type:
|
|
10
|
+
type: _contractspec_lib_schema915.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
status: {
|
|
14
|
-
type:
|
|
14
|
+
type: _contractspec_lib_schema915.EnumType<[string, string, string, string, string]>;
|
|
15
15
|
isOptional: true;
|
|
16
16
|
};
|
|
17
17
|
limit: {
|
|
18
|
-
type:
|
|
18
|
+
type: _contractspec_lib_schema915.FieldType<number, number>;
|
|
19
19
|
isOptional: true;
|
|
20
20
|
defaultValue: number;
|
|
21
21
|
};
|
|
22
22
|
offset: {
|
|
23
|
-
type:
|
|
23
|
+
type: _contractspec_lib_schema915.FieldType<number, number>;
|
|
24
24
|
isOptional: true;
|
|
25
25
|
defaultValue: number;
|
|
26
26
|
};
|
|
27
|
-
}>,
|
|
27
|
+
}>, _contractspec_lib_schema915.SchemaModel<{
|
|
28
28
|
payouts: {
|
|
29
|
-
type:
|
|
29
|
+
type: _contractspec_lib_schema915.SchemaModel<{
|
|
30
30
|
id: {
|
|
31
|
-
type:
|
|
31
|
+
type: _contractspec_lib_schema915.FieldType<string, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
payoutNumber: {
|
|
35
|
-
type:
|
|
35
|
+
type: _contractspec_lib_schema915.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
storeId: {
|
|
39
|
-
type:
|
|
39
|
+
type: _contractspec_lib_schema915.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
status: {
|
|
43
|
-
type:
|
|
43
|
+
type: _contractspec_lib_schema915.EnumType<[string, string, string, string, string]>;
|
|
44
44
|
isOptional: false;
|
|
45
45
|
};
|
|
46
46
|
grossAmount: {
|
|
47
|
-
type:
|
|
47
|
+
type: _contractspec_lib_schema915.FieldType<number, number>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
platformFees: {
|
|
51
|
-
type:
|
|
51
|
+
type: _contractspec_lib_schema915.FieldType<number, number>;
|
|
52
52
|
isOptional: false;
|
|
53
53
|
};
|
|
54
54
|
netAmount: {
|
|
55
|
-
type:
|
|
55
|
+
type: _contractspec_lib_schema915.FieldType<number, number>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
currency: {
|
|
59
|
-
type:
|
|
59
|
+
type: _contractspec_lib_schema915.FieldType<string, string>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
periodStart: {
|
|
63
|
-
type:
|
|
63
|
+
type: _contractspec_lib_schema915.FieldType<Date, string>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
periodEnd: {
|
|
67
|
-
type:
|
|
67
|
+
type: _contractspec_lib_schema915.FieldType<Date, string>;
|
|
68
68
|
isOptional: false;
|
|
69
69
|
};
|
|
70
70
|
orderCount: {
|
|
71
|
-
type:
|
|
71
|
+
type: _contractspec_lib_schema915.FieldType<number, number>;
|
|
72
72
|
isOptional: false;
|
|
73
73
|
};
|
|
74
74
|
createdAt: {
|
|
75
|
-
type:
|
|
75
|
+
type: _contractspec_lib_schema915.FieldType<Date, string>;
|
|
76
76
|
isOptional: false;
|
|
77
77
|
};
|
|
78
78
|
paidAt: {
|
|
79
|
-
type:
|
|
79
|
+
type: _contractspec_lib_schema915.FieldType<Date, string>;
|
|
80
80
|
isOptional: true;
|
|
81
81
|
};
|
|
82
82
|
}>;
|
|
@@ -84,11 +84,11 @@ declare const ListPayoutsContract: _contractspec_lib_contracts16.OperationSpec<_
|
|
|
84
84
|
isOptional: false;
|
|
85
85
|
};
|
|
86
86
|
total: {
|
|
87
|
-
type:
|
|
87
|
+
type: _contractspec_lib_schema915.FieldType<number, number>;
|
|
88
88
|
isOptional: false;
|
|
89
89
|
};
|
|
90
90
|
totalPending: {
|
|
91
|
-
type:
|
|
91
|
+
type: _contractspec_lib_schema915.FieldType<number, number>;
|
|
92
92
|
isOptional: false;
|
|
93
93
|
};
|
|
94
94
|
}>, undefined>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts25 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/payout/payout.presentation.d.ts
|
|
4
|
-
declare const PayoutListPresentation:
|
|
5
|
-
declare const PayoutDetailPresentation:
|
|
4
|
+
declare const PayoutListPresentation: _contractspec_lib_contracts25.PresentationSpec;
|
|
5
|
+
declare const PayoutDetailPresentation: _contractspec_lib_contracts25.PresentationSpec;
|
|
6
6
|
//#endregion
|
|
7
7
|
export { PayoutDetailPresentation, PayoutListPresentation };
|
|
8
8
|
//# sourceMappingURL=payout.presentation.d.ts.map
|
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema938 from "@contractspec/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/payout/payout.schema.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* A payout to seller.
|
|
6
6
|
*/
|
|
7
|
-
declare const PayoutModel:
|
|
7
|
+
declare const PayoutModel: _contractspec_lib_schema938.SchemaModel<{
|
|
8
8
|
id: {
|
|
9
|
-
type:
|
|
9
|
+
type: _contractspec_lib_schema938.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
payoutNumber: {
|
|
13
|
-
type:
|
|
13
|
+
type: _contractspec_lib_schema938.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
storeId: {
|
|
17
|
-
type:
|
|
17
|
+
type: _contractspec_lib_schema938.FieldType<string, string>;
|
|
18
18
|
isOptional: false;
|
|
19
19
|
};
|
|
20
20
|
status: {
|
|
21
|
-
type:
|
|
21
|
+
type: _contractspec_lib_schema938.EnumType<[string, string, string, string, string]>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
grossAmount: {
|
|
25
|
-
type:
|
|
25
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
platformFees: {
|
|
29
|
-
type:
|
|
29
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
30
30
|
isOptional: false;
|
|
31
31
|
};
|
|
32
32
|
netAmount: {
|
|
33
|
-
type:
|
|
33
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
34
34
|
isOptional: false;
|
|
35
35
|
};
|
|
36
36
|
currency: {
|
|
37
|
-
type:
|
|
37
|
+
type: _contractspec_lib_schema938.FieldType<string, string>;
|
|
38
38
|
isOptional: false;
|
|
39
39
|
};
|
|
40
40
|
periodStart: {
|
|
41
|
-
type:
|
|
41
|
+
type: _contractspec_lib_schema938.FieldType<Date, string>;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
periodEnd: {
|
|
45
|
-
type:
|
|
45
|
+
type: _contractspec_lib_schema938.FieldType<Date, string>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
orderCount: {
|
|
49
|
-
type:
|
|
49
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
50
50
|
isOptional: false;
|
|
51
51
|
};
|
|
52
52
|
createdAt: {
|
|
53
|
-
type:
|
|
53
|
+
type: _contractspec_lib_schema938.FieldType<Date, string>;
|
|
54
54
|
isOptional: false;
|
|
55
55
|
};
|
|
56
56
|
paidAt: {
|
|
57
|
-
type:
|
|
57
|
+
type: _contractspec_lib_schema938.FieldType<Date, string>;
|
|
58
58
|
isOptional: true;
|
|
59
59
|
};
|
|
60
60
|
}>;
|
|
61
61
|
/**
|
|
62
62
|
* Input for listing payouts.
|
|
63
63
|
*/
|
|
64
|
-
declare const ListPayoutsInputModel:
|
|
64
|
+
declare const ListPayoutsInputModel: _contractspec_lib_schema938.SchemaModel<{
|
|
65
65
|
storeId: {
|
|
66
|
-
type:
|
|
66
|
+
type: _contractspec_lib_schema938.FieldType<string, string>;
|
|
67
67
|
isOptional: false;
|
|
68
68
|
};
|
|
69
69
|
status: {
|
|
70
|
-
type:
|
|
70
|
+
type: _contractspec_lib_schema938.EnumType<[string, string, string, string, string]>;
|
|
71
71
|
isOptional: true;
|
|
72
72
|
};
|
|
73
73
|
limit: {
|
|
74
|
-
type:
|
|
74
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
75
75
|
isOptional: true;
|
|
76
76
|
defaultValue: number;
|
|
77
77
|
};
|
|
78
78
|
offset: {
|
|
79
|
-
type:
|
|
79
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
80
80
|
isOptional: true;
|
|
81
81
|
defaultValue: number;
|
|
82
82
|
};
|
|
@@ -84,59 +84,59 @@ declare const ListPayoutsInputModel: _contractspec_lib_schema801.SchemaModel<{
|
|
|
84
84
|
/**
|
|
85
85
|
* Output for listing payouts.
|
|
86
86
|
*/
|
|
87
|
-
declare const ListPayoutsOutputModel:
|
|
87
|
+
declare const ListPayoutsOutputModel: _contractspec_lib_schema938.SchemaModel<{
|
|
88
88
|
payouts: {
|
|
89
|
-
type:
|
|
89
|
+
type: _contractspec_lib_schema938.SchemaModel<{
|
|
90
90
|
id: {
|
|
91
|
-
type:
|
|
91
|
+
type: _contractspec_lib_schema938.FieldType<string, string>;
|
|
92
92
|
isOptional: false;
|
|
93
93
|
};
|
|
94
94
|
payoutNumber: {
|
|
95
|
-
type:
|
|
95
|
+
type: _contractspec_lib_schema938.FieldType<string, string>;
|
|
96
96
|
isOptional: false;
|
|
97
97
|
};
|
|
98
98
|
storeId: {
|
|
99
|
-
type:
|
|
99
|
+
type: _contractspec_lib_schema938.FieldType<string, string>;
|
|
100
100
|
isOptional: false;
|
|
101
101
|
};
|
|
102
102
|
status: {
|
|
103
|
-
type:
|
|
103
|
+
type: _contractspec_lib_schema938.EnumType<[string, string, string, string, string]>;
|
|
104
104
|
isOptional: false;
|
|
105
105
|
};
|
|
106
106
|
grossAmount: {
|
|
107
|
-
type:
|
|
107
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
108
108
|
isOptional: false;
|
|
109
109
|
};
|
|
110
110
|
platformFees: {
|
|
111
|
-
type:
|
|
111
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
112
112
|
isOptional: false;
|
|
113
113
|
};
|
|
114
114
|
netAmount: {
|
|
115
|
-
type:
|
|
115
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
116
116
|
isOptional: false;
|
|
117
117
|
};
|
|
118
118
|
currency: {
|
|
119
|
-
type:
|
|
119
|
+
type: _contractspec_lib_schema938.FieldType<string, string>;
|
|
120
120
|
isOptional: false;
|
|
121
121
|
};
|
|
122
122
|
periodStart: {
|
|
123
|
-
type:
|
|
123
|
+
type: _contractspec_lib_schema938.FieldType<Date, string>;
|
|
124
124
|
isOptional: false;
|
|
125
125
|
};
|
|
126
126
|
periodEnd: {
|
|
127
|
-
type:
|
|
127
|
+
type: _contractspec_lib_schema938.FieldType<Date, string>;
|
|
128
128
|
isOptional: false;
|
|
129
129
|
};
|
|
130
130
|
orderCount: {
|
|
131
|
-
type:
|
|
131
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
132
132
|
isOptional: false;
|
|
133
133
|
};
|
|
134
134
|
createdAt: {
|
|
135
|
-
type:
|
|
135
|
+
type: _contractspec_lib_schema938.FieldType<Date, string>;
|
|
136
136
|
isOptional: false;
|
|
137
137
|
};
|
|
138
138
|
paidAt: {
|
|
139
|
-
type:
|
|
139
|
+
type: _contractspec_lib_schema938.FieldType<Date, string>;
|
|
140
140
|
isOptional: true;
|
|
141
141
|
};
|
|
142
142
|
}>;
|
|
@@ -144,11 +144,11 @@ declare const ListPayoutsOutputModel: _contractspec_lib_schema801.SchemaModel<{
|
|
|
144
144
|
isOptional: false;
|
|
145
145
|
};
|
|
146
146
|
total: {
|
|
147
|
-
type:
|
|
147
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
148
148
|
isOptional: false;
|
|
149
149
|
};
|
|
150
150
|
totalPending: {
|
|
151
|
-
type:
|
|
151
|
+
type: _contractspec_lib_schema938.FieldType<number, number>;
|
|
152
152
|
isOptional: false;
|
|
153
153
|
};
|
|
154
154
|
}>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema725 from "@contractspec/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/product/product.enum.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Product status enum.
|
|
6
6
|
*/
|
|
7
|
-
declare const ProductStatusEnum:
|
|
7
|
+
declare const ProductStatusEnum: _contractspec_lib_schema725.EnumType<[string, string, string, string, string, string]>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { ProductStatusEnum };
|
|
10
10
|
//# sourceMappingURL=product.enum.d.ts.map
|
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts14 from "@contractspec/lib.contracts";
|
|
2
|
+
import * as _contractspec_lib_schema764 from "@contractspec/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/product/product.event.d.ts
|
|
5
|
-
declare const ProductCreatedEvent:
|
|
5
|
+
declare const ProductCreatedEvent: _contractspec_lib_contracts14.EventSpec<_contractspec_lib_schema764.SchemaModel<{
|
|
6
6
|
productId: {
|
|
7
|
-
type:
|
|
7
|
+
type: _contractspec_lib_schema764.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
|
9
9
|
};
|
|
10
10
|
storeId: {
|
|
11
|
-
type:
|
|
11
|
+
type: _contractspec_lib_schema764.FieldType<string, string>;
|
|
12
12
|
isOptional: false;
|
|
13
13
|
};
|
|
14
14
|
name: {
|
|
15
|
-
type:
|
|
15
|
+
type: _contractspec_lib_schema764.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
price: {
|
|
19
|
-
type:
|
|
19
|
+
type: _contractspec_lib_schema764.FieldType<number, number>;
|
|
20
20
|
isOptional: false;
|
|
21
21
|
};
|
|
22
22
|
currency: {
|
|
23
|
-
type:
|
|
23
|
+
type: _contractspec_lib_schema764.FieldType<string, string>;
|
|
24
24
|
isOptional: false;
|
|
25
25
|
};
|
|
26
26
|
timestamp: {
|
|
27
|
-
type:
|
|
27
|
+
type: _contractspec_lib_schema764.FieldType<Date, string>;
|
|
28
28
|
isOptional: false;
|
|
29
29
|
};
|
|
30
30
|
}>>;
|
|
31
|
-
declare const ProductPublishedEvent:
|
|
31
|
+
declare const ProductPublishedEvent: _contractspec_lib_contracts14.EventSpec<_contractspec_lib_schema764.SchemaModel<{
|
|
32
32
|
productId: {
|
|
33
|
-
type:
|
|
33
|
+
type: _contractspec_lib_schema764.FieldType<string, string>;
|
|
34
34
|
isOptional: false;
|
|
35
35
|
};
|
|
36
36
|
storeId: {
|
|
37
|
-
type:
|
|
37
|
+
type: _contractspec_lib_schema764.FieldType<string, string>;
|
|
38
38
|
isOptional: false;
|
|
39
39
|
};
|
|
40
40
|
timestamp: {
|
|
41
|
-
type:
|
|
41
|
+
type: _contractspec_lib_schema764.FieldType<Date, string>;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
}>>;
|
|
45
|
-
declare const InventoryUpdatedEvent:
|
|
45
|
+
declare const InventoryUpdatedEvent: _contractspec_lib_contracts14.EventSpec<_contractspec_lib_schema764.SchemaModel<{
|
|
46
46
|
productId: {
|
|
47
|
-
type:
|
|
47
|
+
type: _contractspec_lib_schema764.FieldType<string, string>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
variantId: {
|
|
51
|
-
type:
|
|
51
|
+
type: _contractspec_lib_schema764.FieldType<string, string>;
|
|
52
52
|
isOptional: true;
|
|
53
53
|
};
|
|
54
54
|
previousQuantity: {
|
|
55
|
-
type:
|
|
55
|
+
type: _contractspec_lib_schema764.FieldType<number, number>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
newQuantity: {
|
|
59
|
-
type:
|
|
59
|
+
type: _contractspec_lib_schema764.FieldType<number, number>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
reason: {
|
|
63
|
-
type:
|
|
63
|
+
type: _contractspec_lib_schema764.FieldType<string, string>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
timestamp: {
|
|
67
|
-
type:
|
|
67
|
+
type: _contractspec_lib_schema764.FieldType<Date, string>;
|
|
68
68
|
isOptional: false;
|
|
69
69
|
};
|
|
70
70
|
}>>;
|