@chevre/domain 20.14.0 → 21.0.0-alpha.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/example/src/chevre/ownershipInfosCsv2peopleJson.ts +1 -2
- package/example/src/chevre/saveTasks.ts +38 -0
- package/lib/chevre/repo/account.d.ts +1 -1
- package/lib/chevre/repo/account.js +5 -6
- package/lib/chevre/repo/accountTitle.d.ts +25 -1
- package/lib/chevre/repo/accountTransaction.js +3 -2
- package/lib/chevre/repo/action.js +9 -6
- package/lib/chevre/repo/assetTransaction.d.ts +25 -1
- package/lib/chevre/repo/assetTransaction.js +3 -2
- package/lib/chevre/repo/categoryCode.d.ts +25 -1
- package/lib/chevre/repo/code.js +3 -2
- package/lib/chevre/repo/comment.d.ts +25 -1
- package/lib/chevre/repo/comment.js +3 -2
- package/lib/chevre/repo/creativeWork.d.ts +29 -3
- package/lib/chevre/repo/creativeWork.js +3 -2
- package/lib/chevre/repo/customer.d.ts +25 -1
- package/lib/chevre/repo/customer.js +3 -2
- package/lib/chevre/repo/emailMessage.d.ts +28 -2
- package/lib/chevre/repo/event.d.ts +27 -3
- package/lib/chevre/repo/event.js +3 -2
- package/lib/chevre/repo/merchantReturnPolicy.d.ts +29 -3
- package/lib/chevre/repo/merchantReturnPolicy.js +3 -2
- package/lib/chevre/repo/mongoose/model/account.d.ts +24 -1
- package/lib/chevre/repo/mongoose/model/accountTitle.d.ts +34 -1
- package/lib/chevre/repo/mongoose/model/accountTransaction.d.ts +37 -1
- package/lib/chevre/repo/mongoose/model/accountingReport.d.ts +28 -1
- package/lib/chevre/repo/mongoose/model/action.d.ts +43 -1
- package/lib/chevre/repo/mongoose/model/additionalProperty.d.ts +30 -1
- package/lib/chevre/repo/mongoose/model/aggregation.d.ts +24 -1
- package/lib/chevre/repo/mongoose/model/assetTransaction.d.ts +42 -1
- package/lib/chevre/repo/mongoose/model/authorization.d.ts +31 -1
- package/lib/chevre/repo/mongoose/model/categoryCode.d.ts +34 -1
- package/lib/chevre/repo/mongoose/model/comments.d.ts +35 -1
- package/lib/chevre/repo/mongoose/model/creativeWork.d.ts +43 -1
- package/lib/chevre/repo/mongoose/model/customer.d.ts +34 -1
- package/lib/chevre/repo/mongoose/model/emailMessages.d.ts +32 -1
- package/lib/chevre/repo/mongoose/model/event.d.ts +57 -1
- package/lib/chevre/repo/mongoose/model/member.d.ts +28 -1
- package/lib/chevre/repo/mongoose/model/merchantReturnPolicy.d.ts +32 -1
- package/lib/chevre/repo/mongoose/model/offer.d.ts +53 -1
- package/lib/chevre/repo/mongoose/model/offerCatalog.d.ts +34 -1
- package/lib/chevre/repo/mongoose/model/order.d.ts +47 -1
- package/lib/chevre/repo/mongoose/model/ownershipInfo.d.ts +34 -1
- package/lib/chevre/repo/mongoose/model/place.d.ts +46 -1
- package/lib/chevre/repo/mongoose/model/priceSpecification.d.ts +36 -1
- package/lib/chevre/repo/mongoose/model/product.d.ts +37 -1
- package/lib/chevre/repo/mongoose/model/project.d.ts +33 -1
- package/lib/chevre/repo/mongoose/model/reservation.d.ts +52 -1
- package/lib/chevre/repo/mongoose/model/role.d.ts +27 -1
- package/lib/chevre/repo/mongoose/model/seller.d.ts +37 -1
- package/lib/chevre/repo/mongoose/model/serviceOutput.d.ts +27 -1
- package/lib/chevre/repo/mongoose/model/task.d.ts +35 -1
- package/lib/chevre/repo/mongoose/model/telemetry.d.ts +32 -1
- package/lib/chevre/repo/mongoose/model/transaction.d.ts +40 -1
- package/lib/chevre/repo/mongoose/model/trip.d.ts +27 -1
- package/lib/chevre/repo/offer.d.ts +26 -2
- package/lib/chevre/repo/offer.js +3 -2
- package/lib/chevre/repo/offerCatalog.d.ts +25 -1
- package/lib/chevre/repo/offerCatalog.js +2 -22
- package/lib/chevre/repo/order.js +4 -3
- package/lib/chevre/repo/ownershipInfo.d.ts +25 -5
- package/lib/chevre/repo/ownershipInfo.js +7 -10
- package/lib/chevre/repo/place.d.ts +25 -1
- package/lib/chevre/repo/place.js +8 -6
- package/lib/chevre/repo/priceSpecification.d.ts +27 -8
- package/lib/chevre/repo/priceSpecification.js +3 -2
- package/lib/chevre/repo/product.d.ts +25 -1
- package/lib/chevre/repo/product.js +3 -2
- package/lib/chevre/repo/project.d.ts +25 -1
- package/lib/chevre/repo/project.js +3 -2
- package/lib/chevre/repo/reservation.d.ts +1 -1
- package/lib/chevre/repo/reservation.js +5 -4
- package/lib/chevre/repo/seller.d.ts +25 -1
- package/lib/chevre/repo/seller.js +3 -2
- package/lib/chevre/repo/serviceOutput.d.ts +1 -1
- package/lib/chevre/repo/serviceOutput.js +3 -3
- package/lib/chevre/repo/task.d.ts +4 -7
- package/lib/chevre/repo/task.js +10 -5
- package/lib/chevre/repo/transaction.js +3 -2
- package/lib/chevre/service/assetTransaction/cancelReservation.d.ts +3 -1
- package/lib/chevre/service/assetTransaction/moneyTransfer.d.ts +3 -1
- package/lib/chevre/service/assetTransaction/pay.d.ts +3 -1
- package/lib/chevre/service/assetTransaction/refund.d.ts +3 -1
- package/lib/chevre/service/assetTransaction/registerService.d.ts +3 -1
- package/lib/chevre/service/assetTransaction/reserve.d.ts +3 -1
- package/lib/chevre/service/assetTransaction.d.ts +3 -1
- package/lib/chevre/service/assetTransaction.js +8 -8
- package/lib/chevre/service/payment/any/onPaid.d.ts +3 -1
- package/lib/chevre/service/payment/any/onRefund.d.ts +3 -1
- package/lib/chevre/service/reserve/cancelReservation.js +10 -6
- package/package.json +4 -4
- package/example/src/chevre/retryTasks.ts +0 -69
|
@@ -3,5 +3,61 @@ declare const modelName = "Event";
|
|
|
3
3
|
/**
|
|
4
4
|
* イベント(公演など)スキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
checkInCount: number;
|
|
32
|
+
attendeeCount: number;
|
|
33
|
+
_id?: string | undefined;
|
|
34
|
+
name?: any;
|
|
35
|
+
project?: any;
|
|
36
|
+
alternateName?: any;
|
|
37
|
+
description?: any;
|
|
38
|
+
additionalProperty?: any;
|
|
39
|
+
identifier?: string | undefined;
|
|
40
|
+
startDate?: Date | undefined;
|
|
41
|
+
endDate?: Date | undefined;
|
|
42
|
+
location?: any;
|
|
43
|
+
duration?: string | undefined;
|
|
44
|
+
alternativeHeadline?: any;
|
|
45
|
+
headline?: any;
|
|
46
|
+
offers?: any;
|
|
47
|
+
doorTime?: Date | undefined;
|
|
48
|
+
eventStatus?: string | undefined;
|
|
49
|
+
superEvent?: any;
|
|
50
|
+
coaInfo?: any;
|
|
51
|
+
workPerformed?: any;
|
|
52
|
+
aggregateEntranceGate?: any;
|
|
53
|
+
aggregateReservation?: any;
|
|
54
|
+
aggregateOffer?: any;
|
|
55
|
+
maximumAttendeeCapacity?: number | undefined;
|
|
56
|
+
remainingAttendeeCapacity?: number | undefined;
|
|
57
|
+
videoFormat?: any;
|
|
58
|
+
soundFormat?: any;
|
|
59
|
+
subtitleLanguage?: any;
|
|
60
|
+
dubLanguage?: any;
|
|
61
|
+
kanaName?: string | undefined;
|
|
62
|
+
}>;
|
|
7
63
|
export { modelName, schema };
|
|
@@ -3,5 +3,32 @@ declare const modelName = "Member";
|
|
|
3
3
|
/**
|
|
4
4
|
* プロジェクトメンバースキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
project?: any;
|
|
32
|
+
member?: any;
|
|
33
|
+
}>;
|
|
7
34
|
export { modelName, schema };
|
|
@@ -3,5 +3,36 @@ declare const modelName = "MerchantReturnPolicy";
|
|
|
3
3
|
/**
|
|
4
4
|
* 返品ポリシースキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
name?: any;
|
|
32
|
+
project?: any;
|
|
33
|
+
additionalProperty?: any;
|
|
34
|
+
identifier?: string | undefined;
|
|
35
|
+
customerRemorseReturnFees?: string | undefined;
|
|
36
|
+
customerRemorseReturnFeesMovieTicket?: string | undefined;
|
|
37
|
+
}>;
|
|
7
38
|
export { modelName, schema };
|
|
@@ -3,5 +3,57 @@ declare const modelName = "Offer";
|
|
|
3
3
|
/**
|
|
4
4
|
* オファースキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
additionalProperty: any[];
|
|
30
|
+
addOn: any[];
|
|
31
|
+
availableAtOrFrom: any[];
|
|
32
|
+
_id?: string | undefined;
|
|
33
|
+
name?: any;
|
|
34
|
+
typeOf?: string | undefined;
|
|
35
|
+
project?: any;
|
|
36
|
+
alternateName?: any;
|
|
37
|
+
description?: any;
|
|
38
|
+
identifier?: string | undefined;
|
|
39
|
+
itemOffered?: any;
|
|
40
|
+
eligibleQuantity?: any;
|
|
41
|
+
priceCurrency?: string | undefined;
|
|
42
|
+
color?: any;
|
|
43
|
+
validFrom?: Date | undefined;
|
|
44
|
+
category?: any;
|
|
45
|
+
availability?: string | undefined;
|
|
46
|
+
hasMerchantReturnPolicy?: any;
|
|
47
|
+
priceSpecification?: any;
|
|
48
|
+
eligibleCustomerType?: any;
|
|
49
|
+
eligibleDuration?: any;
|
|
50
|
+
eligibleMembershipType?: any;
|
|
51
|
+
eligibleMonetaryAmount?: any;
|
|
52
|
+
eligibleRegion?: any;
|
|
53
|
+
eligibleSeatingType?: any;
|
|
54
|
+
eligibleSubReservation?: any;
|
|
55
|
+
settings?: any;
|
|
56
|
+
validThrough?: Date | undefined;
|
|
57
|
+
validRateLimit?: any;
|
|
58
|
+
}>;
|
|
7
59
|
export { modelName, schema };
|
|
@@ -3,5 +3,38 @@ declare const modelName = "OfferCatalog";
|
|
|
3
3
|
/**
|
|
4
4
|
* オファーカタログスキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
}>;
|
|
7
40
|
export { modelName, schema };
|
|
@@ -3,5 +3,51 @@ declare const modelName = "Order";
|
|
|
3
3
|
/**
|
|
4
4
|
* 注文スキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
}>;
|
|
7
53
|
export { modelName, schema };
|
|
@@ -3,5 +3,38 @@ declare const modelName = "OwnershipInfo";
|
|
|
3
3
|
/**
|
|
4
4
|
* 所有権スキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
}>;
|
|
7
40
|
export { modelName, schema };
|
|
@@ -3,5 +3,50 @@ declare const modelName = "Place";
|
|
|
3
3
|
/**
|
|
4
4
|
* 場所スキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
}>;
|
|
7
52
|
export { modelName, schema };
|
|
@@ -3,5 +3,40 @@ declare const modelName = "PriceSpecification";
|
|
|
3
3
|
/**
|
|
4
4
|
* 価格仕様スキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
}>;
|
|
7
42
|
export { modelName, schema };
|
|
@@ -3,5 +3,41 @@ declare const modelName = "Product";
|
|
|
3
3
|
/**
|
|
4
4
|
* プロダクトスキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
}>;
|
|
7
43
|
export { modelName, schema };
|
|
@@ -3,5 +3,37 @@ declare const modelName = "Project";
|
|
|
3
3
|
/**
|
|
4
4
|
* プロジェクトスキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
}>;
|
|
7
39
|
export { modelName, schema };
|
|
@@ -3,5 +3,56 @@ declare const modelName = "Reservation";
|
|
|
3
3
|
/**
|
|
4
4
|
* 予約スキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
reservationNumber: string;
|
|
32
|
+
reservationStatus: string;
|
|
33
|
+
checkedIn: boolean;
|
|
34
|
+
attended: boolean;
|
|
35
|
+
_id?: string | undefined;
|
|
36
|
+
project?: any;
|
|
37
|
+
additionalProperty?: any;
|
|
38
|
+
reservationFor?: any;
|
|
39
|
+
price?: any;
|
|
40
|
+
priceCurrency?: string | undefined;
|
|
41
|
+
issuedThrough?: any;
|
|
42
|
+
reservedTicket?: any;
|
|
43
|
+
subReservation?: any;
|
|
44
|
+
additionalTicketText?: string | undefined;
|
|
45
|
+
bookingTime?: Date | undefined;
|
|
46
|
+
broker?: any;
|
|
47
|
+
modifiedTime?: Date | undefined;
|
|
48
|
+
numSeats?: number | undefined;
|
|
49
|
+
programMembershipUsed?: any;
|
|
50
|
+
underName?: any;
|
|
51
|
+
bookingAgent?: any;
|
|
52
|
+
cancelReservationUrl?: string | undefined;
|
|
53
|
+
checkinUrl?: string | undefined;
|
|
54
|
+
confirmReservationUrl?: string | undefined;
|
|
55
|
+
modifyReservationUrl?: string | undefined;
|
|
56
|
+
previousReservationStatus?: string | undefined;
|
|
57
|
+
}>;
|
|
7
58
|
export { modelName, schema };
|
|
@@ -3,5 +3,31 @@ declare const modelName = "Role";
|
|
|
3
3
|
/**
|
|
4
4
|
* ロールスキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
}>;
|
|
7
33
|
export { modelName, schema };
|
|
@@ -3,5 +3,41 @@ declare const modelName = "Seller";
|
|
|
3
3
|
/**
|
|
4
4
|
* 販売者スキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
}>;
|
|
7
43
|
export { modelName, schema };
|
|
@@ -3,5 +3,31 @@ declare const modelName = "ServiceOutput";
|
|
|
3
3
|
/**
|
|
4
4
|
* 許可証スキーマ
|
|
5
5
|
*/
|
|
6
|
-
declare const schema: mongoose.Schema<
|
|
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
|
+
}>;
|
|
7
33
|
export { modelName, schema };
|