@lssm/example.marketplace 0.0.0-canary-20251206181705 → 0.0.0-canary-20251207012602
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/contracts/index.d.ts +454 -454
- 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/events.d.ts +192 -192
- package/dist/index.d.ts +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/entities/store.d.ts
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema1202 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/entities/store.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Store status enum.
|
|
6
6
|
*/
|
|
7
|
-
declare const StoreStatusEnum:
|
|
7
|
+
declare const StoreStatusEnum: _lssm_lib_schema1202.EntityEnumDef;
|
|
8
8
|
/**
|
|
9
9
|
* Store type enum.
|
|
10
10
|
*/
|
|
11
|
-
declare const StoreTypeEnum:
|
|
11
|
+
declare const StoreTypeEnum: _lssm_lib_schema1202.EntityEnumDef;
|
|
12
12
|
/**
|
|
13
13
|
* Store entity - a seller's storefront on the marketplace.
|
|
14
14
|
*/
|
|
15
|
-
declare const StoreEntity:
|
|
16
|
-
id:
|
|
17
|
-
name:
|
|
18
|
-
slug:
|
|
19
|
-
description:
|
|
20
|
-
status:
|
|
21
|
-
type:
|
|
22
|
-
ownerId:
|
|
23
|
-
organizationId:
|
|
24
|
-
logoFileId:
|
|
25
|
-
bannerFileId:
|
|
26
|
-
email:
|
|
27
|
-
phone:
|
|
28
|
-
website:
|
|
29
|
-
country:
|
|
30
|
-
currency:
|
|
31
|
-
timezone:
|
|
32
|
-
commissionRate:
|
|
33
|
-
isVerified:
|
|
34
|
-
verifiedAt:
|
|
35
|
-
settings:
|
|
36
|
-
metadata:
|
|
37
|
-
totalProducts:
|
|
38
|
-
totalOrders:
|
|
39
|
-
totalRevenue:
|
|
40
|
-
averageRating:
|
|
41
|
-
createdAt:
|
|
42
|
-
updatedAt:
|
|
43
|
-
products:
|
|
44
|
-
orders:
|
|
45
|
-
payouts:
|
|
15
|
+
declare const StoreEntity: _lssm_lib_schema1202.EntitySpec<{
|
|
16
|
+
id: _lssm_lib_schema1202.EntityScalarField;
|
|
17
|
+
name: _lssm_lib_schema1202.EntityScalarField;
|
|
18
|
+
slug: _lssm_lib_schema1202.EntityScalarField;
|
|
19
|
+
description: _lssm_lib_schema1202.EntityScalarField;
|
|
20
|
+
status: _lssm_lib_schema1202.EntityEnumField;
|
|
21
|
+
type: _lssm_lib_schema1202.EntityEnumField;
|
|
22
|
+
ownerId: _lssm_lib_schema1202.EntityScalarField;
|
|
23
|
+
organizationId: _lssm_lib_schema1202.EntityScalarField;
|
|
24
|
+
logoFileId: _lssm_lib_schema1202.EntityScalarField;
|
|
25
|
+
bannerFileId: _lssm_lib_schema1202.EntityScalarField;
|
|
26
|
+
email: _lssm_lib_schema1202.EntityScalarField;
|
|
27
|
+
phone: _lssm_lib_schema1202.EntityScalarField;
|
|
28
|
+
website: _lssm_lib_schema1202.EntityScalarField;
|
|
29
|
+
country: _lssm_lib_schema1202.EntityScalarField;
|
|
30
|
+
currency: _lssm_lib_schema1202.EntityScalarField;
|
|
31
|
+
timezone: _lssm_lib_schema1202.EntityScalarField;
|
|
32
|
+
commissionRate: _lssm_lib_schema1202.EntityScalarField;
|
|
33
|
+
isVerified: _lssm_lib_schema1202.EntityScalarField;
|
|
34
|
+
verifiedAt: _lssm_lib_schema1202.EntityScalarField;
|
|
35
|
+
settings: _lssm_lib_schema1202.EntityScalarField;
|
|
36
|
+
metadata: _lssm_lib_schema1202.EntityScalarField;
|
|
37
|
+
totalProducts: _lssm_lib_schema1202.EntityScalarField;
|
|
38
|
+
totalOrders: _lssm_lib_schema1202.EntityScalarField;
|
|
39
|
+
totalRevenue: _lssm_lib_schema1202.EntityScalarField;
|
|
40
|
+
averageRating: _lssm_lib_schema1202.EntityScalarField;
|
|
41
|
+
createdAt: _lssm_lib_schema1202.EntityScalarField;
|
|
42
|
+
updatedAt: _lssm_lib_schema1202.EntityScalarField;
|
|
43
|
+
products: _lssm_lib_schema1202.EntityRelationField;
|
|
44
|
+
orders: _lssm_lib_schema1202.EntityRelationField;
|
|
45
|
+
payouts: _lssm_lib_schema1202.EntityRelationField;
|
|
46
46
|
}>;
|
|
47
47
|
/**
|
|
48
48
|
* Store category entity - categorization for stores.
|
|
49
49
|
*/
|
|
50
|
-
declare const StoreCategoryEntity:
|
|
51
|
-
id:
|
|
52
|
-
storeId:
|
|
53
|
-
categoryId:
|
|
54
|
-
isPrimary:
|
|
55
|
-
createdAt:
|
|
56
|
-
store:
|
|
50
|
+
declare const StoreCategoryEntity: _lssm_lib_schema1202.EntitySpec<{
|
|
51
|
+
id: _lssm_lib_schema1202.EntityScalarField;
|
|
52
|
+
storeId: _lssm_lib_schema1202.EntityScalarField;
|
|
53
|
+
categoryId: _lssm_lib_schema1202.EntityScalarField;
|
|
54
|
+
isPrimary: _lssm_lib_schema1202.EntityScalarField;
|
|
55
|
+
createdAt: _lssm_lib_schema1202.EntityScalarField;
|
|
56
|
+
store: _lssm_lib_schema1202.EntityRelationField;
|
|
57
57
|
}>;
|
|
58
58
|
//#endregion
|
|
59
59
|
export { StoreCategoryEntity, StoreEntity, StoreStatusEnum, StoreTypeEnum };
|