@chevre/domain 21.0.0-alpha.1 → 21.0.0-alpha.10
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/lib/chevre/errorHandler.d.ts +1 -0
- package/lib/chevre/errorHandler.js +6 -2
- package/lib/chevre/index.d.ts +1 -2
- package/lib/chevre/index.js +1 -3
- package/lib/chevre/repo/account.d.ts +0 -2
- package/lib/chevre/repo/account.js +10 -6
- package/lib/chevre/repo/accountTitle.js +6 -2
- package/lib/chevre/repo/accountTransaction.d.ts +0 -2
- package/lib/chevre/repo/accountTransaction.js +9 -6
- package/lib/chevre/repo/accountingReport.js +7 -3
- package/lib/chevre/repo/action.d.ts +1 -2
- package/lib/chevre/repo/action.js +9 -6
- package/lib/chevre/repo/additionalProperty.js +8 -4
- package/lib/chevre/repo/aggregation.js +6 -2
- package/lib/chevre/repo/assetTransaction.d.ts +1 -2
- package/lib/chevre/repo/assetTransaction.js +9 -6
- package/lib/chevre/repo/categoryCode.js +8 -4
- package/lib/chevre/repo/code.d.ts +1 -1
- package/lib/chevre/repo/code.js +10 -5
- package/lib/chevre/repo/comment.js +8 -4
- package/lib/chevre/repo/creativeWork.d.ts +0 -2
- package/lib/chevre/repo/creativeWork.js +9 -6
- package/lib/chevre/repo/customer.js +8 -4
- package/lib/chevre/repo/emailMessage.js +8 -4
- package/lib/chevre/repo/event.js +8 -4
- package/lib/chevre/repo/member.js +16 -9
- package/lib/chevre/repo/merchantReturnPolicy.d.ts +0 -2
- package/lib/chevre/repo/merchantReturnPolicy.js +9 -6
- package/lib/chevre/repo/mongoose/onIndexCreated.d.ts +2 -0
- package/lib/chevre/repo/mongoose/onIndexCreated.js +11 -0
- package/lib/chevre/repo/mongoose/schemas/account.d.ts +54 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/account.js +4 -14
- package/lib/chevre/repo/mongoose/schemas/accountTitle.d.ts +64 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/accountTitle.js +10 -35
- package/lib/chevre/repo/mongoose/schemas/accountTransaction.d.ts +67 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/accountTransaction.js +9 -19
- package/lib/chevre/repo/mongoose/schemas/accountingReport.d.ts +58 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/accountingReport.js +7 -17
- package/lib/chevre/repo/mongoose/schemas/action.d.ts +73 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/action.js +17 -27
- package/lib/chevre/repo/mongoose/schemas/additionalProperty.d.ts +60 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/additionalProperty.js +7 -17
- package/lib/chevre/repo/mongoose/schemas/aggregation.d.ts +54 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/aggregation.js +4 -14
- package/lib/chevre/repo/mongoose/schemas/assetTransaction.d.ts +72 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/assetTransaction.js +13 -23
- package/lib/chevre/repo/mongoose/schemas/authorization.d.ts +61 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/authorization.js +6 -16
- package/lib/chevre/repo/mongoose/schemas/categoryCode.d.ts +64 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/categoryCode.js +9 -19
- package/lib/chevre/repo/mongoose/schemas/comments.d.ts +65 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/comments.js +9 -19
- package/lib/chevre/repo/mongoose/schemas/creativeWork.d.ts +73 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/creativeWork.js +10 -20
- package/lib/chevre/repo/mongoose/schemas/customer.d.ts +64 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/customer.js +8 -18
- package/lib/chevre/repo/mongoose/schemas/emailMessages.d.ts +62 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/emailMessages.js +8 -18
- package/lib/chevre/repo/mongoose/{model → schemas}/event.d.ts +26 -2
- package/lib/chevre/repo/mongoose/{model → schemas}/event.js +24 -34
- package/lib/chevre/repo/mongoose/schemas/member.d.ts +58 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/member.js +6 -16
- package/lib/chevre/repo/mongoose/schemas/merchantReturnPolicy.d.ts +62 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/merchantReturnPolicy.js +7 -17
- package/lib/chevre/repo/mongoose/schemas/offer.d.ts +83 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/offer.js +28 -38
- package/lib/chevre/repo/mongoose/schemas/offerCatalog.d.ts +64 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/offerCatalog.js +11 -21
- package/lib/chevre/repo/mongoose/schemas/order.d.ts +77 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/order.js +15 -25
- package/lib/chevre/repo/mongoose/schemas/ownershipInfo.d.ts +64 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/ownershipInfo.js +9 -19
- package/lib/chevre/repo/mongoose/schemas/place.d.ts +76 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/place.js +17 -27
- package/lib/chevre/repo/mongoose/schemas/priceSpecification.d.ts +66 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/priceSpecification.js +9 -19
- package/lib/chevre/repo/mongoose/schemas/product.d.ts +67 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/product.js +14 -24
- package/lib/chevre/repo/mongoose/schemas/project.d.ts +63 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/project.js +7 -17
- package/lib/chevre/repo/mongoose/{model → schemas}/reservation.d.ts +26 -2
- package/lib/chevre/repo/mongoose/{model → schemas}/reservation.js +15 -25
- package/lib/chevre/repo/mongoose/schemas/role.d.ts +57 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/role.js +4 -14
- package/lib/chevre/repo/mongoose/schemas/seller.d.ts +67 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/seller.js +12 -22
- package/lib/chevre/repo/mongoose/schemas/serviceOutput.d.ts +57 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/serviceOutput.js +5 -15
- package/lib/chevre/repo/mongoose/schemas/task.d.ts +65 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/task.js +7 -17
- package/lib/chevre/repo/mongoose/schemas/telemetry.d.ts +62 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/telemetry.js +9 -19
- package/lib/chevre/repo/mongoose/schemas/transaction.d.ts +70 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/transaction.js +12 -22
- package/lib/chevre/repo/mongoose/schemas/trip.d.ts +57 -0
- package/lib/chevre/repo/mongoose/{model → schemas}/trip.js +5 -15
- package/lib/chevre/repo/mongoose/writeConcern.d.ts +3 -0
- package/lib/chevre/repo/mongoose/writeConcern.js +5 -0
- package/lib/chevre/repo/offer.js +11 -6
- package/lib/chevre/repo/offerCatalog.js +8 -4
- package/lib/chevre/repo/order.d.ts +0 -2
- package/lib/chevre/repo/order.js +12 -9
- package/lib/chevre/repo/ownershipInfo.d.ts +0 -2
- package/lib/chevre/repo/ownershipInfo.js +10 -7
- package/lib/chevre/repo/permit.js +6 -2
- package/lib/chevre/repo/place.js +16 -12
- package/lib/chevre/repo/priceSpecification.js +8 -4
- package/lib/chevre/repo/product.js +8 -4
- package/lib/chevre/repo/project.js +7 -3
- package/lib/chevre/repo/reservation.js +8 -21
- package/lib/chevre/repo/role.js +8 -4
- package/lib/chevre/repo/seller.js +8 -4
- package/lib/chevre/repo/serviceOutput.js +8 -4
- package/lib/chevre/repo/task.js +8 -4
- package/lib/chevre/repo/telemetry.js +6 -2
- package/lib/chevre/repo/transaction.d.ts +1 -2
- package/lib/chevre/repo/transaction.js +9 -6
- package/lib/chevre/repo/trip.js +8 -4
- package/lib/chevre/service/accountTransaction/deposit.js +0 -5
- package/lib/chevre/service/accountTransaction/transfer.js +0 -5
- package/lib/chevre/service/accountTransaction/withdraw.js +0 -5
- package/lib/chevre/service/assetTransaction/moneyTransfer.js +0 -5
- package/lib/chevre/service/assetTransaction/refund.js +0 -5
- package/lib/chevre/service/assetTransaction/registerService.js +0 -5
- package/lib/chevre/service/assetTransaction/reserve.js +0 -10
- package/lib/chevre/service/code.js +6 -1
- package/lib/chevre/service/order/onOrderStatusChanged/factory.js +6 -1
- package/lib/chevre/service/report/ownershipInfo.js +4 -0
- package/lib/chevre/service/transaction/moneyTransfer.js +0 -5
- package/lib/chevre/service/transaction/placeOrderInProgress.js +2 -2
- package/lib/chevre/service/transaction/returnOrder.js +1 -1
- package/package.json +7 -7
- package/lib/chevre/repo/mongoose/model/account.d.ts +0 -30
- package/lib/chevre/repo/mongoose/model/accountTitle.d.ts +0 -40
- package/lib/chevre/repo/mongoose/model/accountTransaction.d.ts +0 -43
- package/lib/chevre/repo/mongoose/model/accountingReport.d.ts +0 -34
- package/lib/chevre/repo/mongoose/model/action.d.ts +0 -49
- package/lib/chevre/repo/mongoose/model/additionalProperty.d.ts +0 -36
- package/lib/chevre/repo/mongoose/model/aggregation.d.ts +0 -30
- package/lib/chevre/repo/mongoose/model/assetTransaction.d.ts +0 -48
- package/lib/chevre/repo/mongoose/model/authorization.d.ts +0 -37
- package/lib/chevre/repo/mongoose/model/categoryCode.d.ts +0 -40
- package/lib/chevre/repo/mongoose/model/comments.d.ts +0 -41
- package/lib/chevre/repo/mongoose/model/creativeWork.d.ts +0 -49
- package/lib/chevre/repo/mongoose/model/customer.d.ts +0 -40
- package/lib/chevre/repo/mongoose/model/emailMessages.d.ts +0 -38
- package/lib/chevre/repo/mongoose/model/member.d.ts +0 -34
- package/lib/chevre/repo/mongoose/model/merchantReturnPolicy.d.ts +0 -38
- package/lib/chevre/repo/mongoose/model/offer.d.ts +0 -59
- package/lib/chevre/repo/mongoose/model/offerCatalog.d.ts +0 -40
- package/lib/chevre/repo/mongoose/model/order.d.ts +0 -53
- package/lib/chevre/repo/mongoose/model/ownershipInfo.d.ts +0 -40
- package/lib/chevre/repo/mongoose/model/place.d.ts +0 -52
- package/lib/chevre/repo/mongoose/model/priceSpecification.d.ts +0 -42
- package/lib/chevre/repo/mongoose/model/product.d.ts +0 -43
- package/lib/chevre/repo/mongoose/model/project.d.ts +0 -39
- package/lib/chevre/repo/mongoose/model/role.d.ts +0 -33
- package/lib/chevre/repo/mongoose/model/seller.d.ts +0 -43
- package/lib/chevre/repo/mongoose/model/serviceOutput.d.ts +0 -33
- package/lib/chevre/repo/mongoose/model/task.d.ts +0 -41
- package/lib/chevre/repo/mongoose/model/telemetry.d.ts +0 -38
- package/lib/chevre/repo/mongoose/model/transaction.d.ts +0 -46
- package/lib/chevre/repo/mongoose/model/trip.d.ts +0 -33
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "OfferCatalog";
|
|
3
|
-
/**
|
|
4
|
-
* オファーカタログスキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
timestamps: {
|
|
13
|
-
createdAt: string;
|
|
14
|
-
updatedAt: string;
|
|
15
|
-
};
|
|
16
|
-
toJSON: {
|
|
17
|
-
getters: false;
|
|
18
|
-
virtuals: false;
|
|
19
|
-
minimize: false;
|
|
20
|
-
versionKey: false;
|
|
21
|
-
};
|
|
22
|
-
toObject: {
|
|
23
|
-
getters: false;
|
|
24
|
-
virtuals: true;
|
|
25
|
-
minimize: false;
|
|
26
|
-
versionKey: false;
|
|
27
|
-
};
|
|
28
|
-
}>, {
|
|
29
|
-
typeOf: string;
|
|
30
|
-
additionalProperty: any[];
|
|
31
|
-
identifier: string;
|
|
32
|
-
itemListElement: any[];
|
|
33
|
-
_id?: string | undefined;
|
|
34
|
-
name?: any;
|
|
35
|
-
project?: any;
|
|
36
|
-
alternateName?: any;
|
|
37
|
-
description?: any;
|
|
38
|
-
itemOffered?: any;
|
|
39
|
-
}>;
|
|
40
|
-
export { modelName, schema };
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "Order";
|
|
3
|
-
/**
|
|
4
|
-
* 注文スキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
typeOf: string;
|
|
31
|
-
additionalProperty: any[];
|
|
32
|
-
identifier: any[];
|
|
33
|
-
acceptedOffers: any[];
|
|
34
|
-
paymentMethods: any[];
|
|
35
|
-
discounts: any[];
|
|
36
|
-
orderedItem: any[];
|
|
37
|
-
name?: string | undefined;
|
|
38
|
-
url?: string | undefined;
|
|
39
|
-
project?: any;
|
|
40
|
-
orderNumber?: string | undefined;
|
|
41
|
-
seller?: any;
|
|
42
|
-
price?: number | undefined;
|
|
43
|
-
priceCurrency?: string | undefined;
|
|
44
|
-
broker?: any;
|
|
45
|
-
customer?: any;
|
|
46
|
-
returner?: any;
|
|
47
|
-
confirmationNumber?: string | undefined;
|
|
48
|
-
orderStatus?: string | undefined;
|
|
49
|
-
orderDate?: Date | undefined;
|
|
50
|
-
isGift?: boolean | undefined;
|
|
51
|
-
dateReturned?: Date | undefined;
|
|
52
|
-
}>;
|
|
53
|
-
export { modelName, schema };
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "OwnershipInfo";
|
|
3
|
-
/**
|
|
4
|
-
* 所有権スキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
typeOf: string;
|
|
31
|
-
_id?: string | undefined;
|
|
32
|
-
project?: any;
|
|
33
|
-
identifier?: any;
|
|
34
|
-
typeOfGood?: any;
|
|
35
|
-
ownedBy?: any;
|
|
36
|
-
acquiredFrom?: any;
|
|
37
|
-
ownedFrom?: Date | undefined;
|
|
38
|
-
ownedThrough?: Date | undefined;
|
|
39
|
-
}>;
|
|
40
|
-
export { modelName, schema };
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "Place";
|
|
3
|
-
/**
|
|
4
|
-
* 場所スキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
typeOf: string;
|
|
31
|
-
additionalProperty: any[];
|
|
32
|
-
containsPlace: any[];
|
|
33
|
-
hasEntranceGate: any[];
|
|
34
|
-
hasPOS: any[];
|
|
35
|
-
name?: any;
|
|
36
|
-
url?: string | undefined;
|
|
37
|
-
project?: any;
|
|
38
|
-
alternateName?: any;
|
|
39
|
-
description?: any;
|
|
40
|
-
offers?: any;
|
|
41
|
-
branchCode?: string | undefined;
|
|
42
|
-
telephone?: string | undefined;
|
|
43
|
-
maximumAttendeeCapacity?: number | undefined;
|
|
44
|
-
kanaName?: string | undefined;
|
|
45
|
-
address?: any;
|
|
46
|
-
containedInPlace?: any;
|
|
47
|
-
openingHoursSpecification?: any;
|
|
48
|
-
smokingAllowed?: boolean | undefined;
|
|
49
|
-
sameAs?: string | undefined;
|
|
50
|
-
parentOrganization?: any;
|
|
51
|
-
}>;
|
|
52
|
-
export { modelName, schema };
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "PriceSpecification";
|
|
3
|
-
/**
|
|
4
|
-
* 価格仕様スキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
typeOf: string;
|
|
31
|
-
price: number;
|
|
32
|
-
name?: any;
|
|
33
|
-
project?: any;
|
|
34
|
-
priceCurrency?: string | undefined;
|
|
35
|
-
valueAddedTaxIncluded?: boolean | undefined;
|
|
36
|
-
appliesToCategoryCode?: any;
|
|
37
|
-
appliesToVideoFormat?: string | undefined;
|
|
38
|
-
appliesToMovieTicket?: any;
|
|
39
|
-
validFrom?: Date | undefined;
|
|
40
|
-
validThrough?: Date | undefined;
|
|
41
|
-
}>;
|
|
42
|
-
export { modelName, schema };
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "Product";
|
|
3
|
-
/**
|
|
4
|
-
* プロダクトスキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
typeOf: string;
|
|
31
|
-
additionalProperty: any[];
|
|
32
|
-
offers: any[];
|
|
33
|
-
productID: string;
|
|
34
|
-
provider: any[];
|
|
35
|
-
name?: any;
|
|
36
|
-
project?: any;
|
|
37
|
-
description?: any;
|
|
38
|
-
serviceOutput?: any;
|
|
39
|
-
serviceType?: any;
|
|
40
|
-
availableChannel?: any;
|
|
41
|
-
hasOfferCatalog?: any;
|
|
42
|
-
}>;
|
|
43
|
-
export { modelName, schema };
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "Project";
|
|
3
|
-
/**
|
|
4
|
-
* プロジェクトスキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
typeOf: string;
|
|
31
|
-
_id?: string | undefined;
|
|
32
|
-
name?: string | undefined;
|
|
33
|
-
alternateName?: string | undefined;
|
|
34
|
-
logo?: string | undefined;
|
|
35
|
-
aggregateReservation?: any;
|
|
36
|
-
settings?: any;
|
|
37
|
-
subscription?: any;
|
|
38
|
-
}>;
|
|
39
|
-
export { modelName, schema };
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "Role";
|
|
3
|
-
/**
|
|
4
|
-
* ロールスキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: false;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
permissions: string[];
|
|
31
|
-
typeOf?: string | undefined;
|
|
32
|
-
}>;
|
|
33
|
-
export { modelName, schema };
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "Seller";
|
|
3
|
-
/**
|
|
4
|
-
* 販売者スキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
typeOf: string;
|
|
31
|
-
additionalProperty: any[];
|
|
32
|
-
hasMerchantReturnPolicy: any[];
|
|
33
|
-
areaServed: any[];
|
|
34
|
-
makesOffer: any[];
|
|
35
|
-
paymentAccepted: any[];
|
|
36
|
-
name?: any;
|
|
37
|
-
url?: string | undefined;
|
|
38
|
-
project?: any;
|
|
39
|
-
branchCode?: string | undefined;
|
|
40
|
-
telephone?: string | undefined;
|
|
41
|
-
parentOrganization?: any;
|
|
42
|
-
}>;
|
|
43
|
-
export { modelName, schema };
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "ServiceOutput";
|
|
3
|
-
/**
|
|
4
|
-
* 許可証スキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: false;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
typeOf: string;
|
|
31
|
-
project?: any;
|
|
32
|
-
}>;
|
|
33
|
-
export { modelName, schema };
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "Task";
|
|
3
|
-
/**
|
|
4
|
-
* タスクスキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
executionResults: any[];
|
|
31
|
-
name?: string | undefined;
|
|
32
|
-
status?: string | undefined;
|
|
33
|
-
data?: any;
|
|
34
|
-
project?: any;
|
|
35
|
-
runsAt?: Date | undefined;
|
|
36
|
-
remainingNumberOfTries?: number | undefined;
|
|
37
|
-
lastTriedAt?: Date | undefined;
|
|
38
|
-
numberOfTried?: number | undefined;
|
|
39
|
-
dateAborted?: Date | undefined;
|
|
40
|
-
}>;
|
|
41
|
-
export { modelName, schema };
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "Telemetry";
|
|
3
|
-
/**
|
|
4
|
-
* 測定スキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
object?: any;
|
|
31
|
-
error?: any;
|
|
32
|
-
project?: any;
|
|
33
|
-
startDate?: Date | undefined;
|
|
34
|
-
endDate?: Date | undefined;
|
|
35
|
-
result?: any;
|
|
36
|
-
purpose?: any;
|
|
37
|
-
}>;
|
|
38
|
-
export { modelName, schema };
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "Transaction";
|
|
3
|
-
/**
|
|
4
|
-
* 取引スキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: true;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
object?: any;
|
|
31
|
-
typeOf?: string | undefined;
|
|
32
|
-
status?: string | undefined;
|
|
33
|
-
expires?: Date | undefined;
|
|
34
|
-
error?: any;
|
|
35
|
-
project?: any;
|
|
36
|
-
agent?: any;
|
|
37
|
-
recipient?: any;
|
|
38
|
-
startDate?: Date | undefined;
|
|
39
|
-
endDate?: Date | undefined;
|
|
40
|
-
potentialActions?: any;
|
|
41
|
-
tasksExportationStatus?: string | undefined;
|
|
42
|
-
tasksExportedAt?: Date | undefined;
|
|
43
|
-
result?: any;
|
|
44
|
-
seller?: any;
|
|
45
|
-
}>;
|
|
46
|
-
export { modelName, schema };
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import * as mongoose from 'mongoose';
|
|
2
|
-
declare const modelName = "Trip";
|
|
3
|
-
/**
|
|
4
|
-
* トリップスキーマ
|
|
5
|
-
*/
|
|
6
|
-
declare const schema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.ResolveSchemaOptions<{
|
|
7
|
-
collection: string;
|
|
8
|
-
id: true;
|
|
9
|
-
read: string;
|
|
10
|
-
writeConcern: import("mongodb").WriteConcern;
|
|
11
|
-
strict: false;
|
|
12
|
-
useNestedStrict: boolean;
|
|
13
|
-
timestamps: {
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
toJSON: {
|
|
18
|
-
getters: false;
|
|
19
|
-
virtuals: false;
|
|
20
|
-
minimize: false;
|
|
21
|
-
versionKey: false;
|
|
22
|
-
};
|
|
23
|
-
toObject: {
|
|
24
|
-
getters: false;
|
|
25
|
-
virtuals: true;
|
|
26
|
-
minimize: false;
|
|
27
|
-
versionKey: false;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
typeOf: string;
|
|
31
|
-
project?: any;
|
|
32
|
-
}>;
|
|
33
|
-
export { modelName, schema };
|