@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.
Files changed (163) hide show
  1. package/lib/chevre/errorHandler.d.ts +1 -0
  2. package/lib/chevre/errorHandler.js +6 -2
  3. package/lib/chevre/index.d.ts +1 -2
  4. package/lib/chevre/index.js +1 -3
  5. package/lib/chevre/repo/account.d.ts +0 -2
  6. package/lib/chevre/repo/account.js +10 -6
  7. package/lib/chevre/repo/accountTitle.js +6 -2
  8. package/lib/chevre/repo/accountTransaction.d.ts +0 -2
  9. package/lib/chevre/repo/accountTransaction.js +9 -6
  10. package/lib/chevre/repo/accountingReport.js +7 -3
  11. package/lib/chevre/repo/action.d.ts +1 -2
  12. package/lib/chevre/repo/action.js +9 -6
  13. package/lib/chevre/repo/additionalProperty.js +8 -4
  14. package/lib/chevre/repo/aggregation.js +6 -2
  15. package/lib/chevre/repo/assetTransaction.d.ts +1 -2
  16. package/lib/chevre/repo/assetTransaction.js +9 -6
  17. package/lib/chevre/repo/categoryCode.js +8 -4
  18. package/lib/chevre/repo/code.d.ts +1 -1
  19. package/lib/chevre/repo/code.js +10 -5
  20. package/lib/chevre/repo/comment.js +8 -4
  21. package/lib/chevre/repo/creativeWork.d.ts +0 -2
  22. package/lib/chevre/repo/creativeWork.js +9 -6
  23. package/lib/chevre/repo/customer.js +8 -4
  24. package/lib/chevre/repo/emailMessage.js +8 -4
  25. package/lib/chevre/repo/event.js +8 -4
  26. package/lib/chevre/repo/member.js +16 -9
  27. package/lib/chevre/repo/merchantReturnPolicy.d.ts +0 -2
  28. package/lib/chevre/repo/merchantReturnPolicy.js +9 -6
  29. package/lib/chevre/repo/mongoose/onIndexCreated.d.ts +2 -0
  30. package/lib/chevre/repo/mongoose/onIndexCreated.js +11 -0
  31. package/lib/chevre/repo/mongoose/schemas/account.d.ts +54 -0
  32. package/lib/chevre/repo/mongoose/{model → schemas}/account.js +4 -14
  33. package/lib/chevre/repo/mongoose/schemas/accountTitle.d.ts +64 -0
  34. package/lib/chevre/repo/mongoose/{model → schemas}/accountTitle.js +10 -35
  35. package/lib/chevre/repo/mongoose/schemas/accountTransaction.d.ts +67 -0
  36. package/lib/chevre/repo/mongoose/{model → schemas}/accountTransaction.js +9 -19
  37. package/lib/chevre/repo/mongoose/schemas/accountingReport.d.ts +58 -0
  38. package/lib/chevre/repo/mongoose/{model → schemas}/accountingReport.js +7 -17
  39. package/lib/chevre/repo/mongoose/schemas/action.d.ts +73 -0
  40. package/lib/chevre/repo/mongoose/{model → schemas}/action.js +17 -27
  41. package/lib/chevre/repo/mongoose/schemas/additionalProperty.d.ts +60 -0
  42. package/lib/chevre/repo/mongoose/{model → schemas}/additionalProperty.js +7 -17
  43. package/lib/chevre/repo/mongoose/schemas/aggregation.d.ts +54 -0
  44. package/lib/chevre/repo/mongoose/{model → schemas}/aggregation.js +4 -14
  45. package/lib/chevre/repo/mongoose/schemas/assetTransaction.d.ts +72 -0
  46. package/lib/chevre/repo/mongoose/{model → schemas}/assetTransaction.js +13 -23
  47. package/lib/chevre/repo/mongoose/schemas/authorization.d.ts +61 -0
  48. package/lib/chevre/repo/mongoose/{model → schemas}/authorization.js +6 -16
  49. package/lib/chevre/repo/mongoose/schemas/categoryCode.d.ts +64 -0
  50. package/lib/chevre/repo/mongoose/{model → schemas}/categoryCode.js +9 -19
  51. package/lib/chevre/repo/mongoose/schemas/comments.d.ts +65 -0
  52. package/lib/chevre/repo/mongoose/{model → schemas}/comments.js +9 -19
  53. package/lib/chevre/repo/mongoose/schemas/creativeWork.d.ts +73 -0
  54. package/lib/chevre/repo/mongoose/{model → schemas}/creativeWork.js +10 -20
  55. package/lib/chevre/repo/mongoose/schemas/customer.d.ts +64 -0
  56. package/lib/chevre/repo/mongoose/{model → schemas}/customer.js +8 -18
  57. package/lib/chevre/repo/mongoose/schemas/emailMessages.d.ts +62 -0
  58. package/lib/chevre/repo/mongoose/{model → schemas}/emailMessages.js +8 -18
  59. package/lib/chevre/repo/mongoose/{model → schemas}/event.d.ts +26 -2
  60. package/lib/chevre/repo/mongoose/{model → schemas}/event.js +24 -34
  61. package/lib/chevre/repo/mongoose/schemas/member.d.ts +58 -0
  62. package/lib/chevre/repo/mongoose/{model → schemas}/member.js +6 -16
  63. package/lib/chevre/repo/mongoose/schemas/merchantReturnPolicy.d.ts +62 -0
  64. package/lib/chevre/repo/mongoose/{model → schemas}/merchantReturnPolicy.js +7 -17
  65. package/lib/chevre/repo/mongoose/schemas/offer.d.ts +83 -0
  66. package/lib/chevre/repo/mongoose/{model → schemas}/offer.js +28 -38
  67. package/lib/chevre/repo/mongoose/schemas/offerCatalog.d.ts +64 -0
  68. package/lib/chevre/repo/mongoose/{model → schemas}/offerCatalog.js +11 -21
  69. package/lib/chevre/repo/mongoose/schemas/order.d.ts +77 -0
  70. package/lib/chevre/repo/mongoose/{model → schemas}/order.js +15 -25
  71. package/lib/chevre/repo/mongoose/schemas/ownershipInfo.d.ts +64 -0
  72. package/lib/chevre/repo/mongoose/{model → schemas}/ownershipInfo.js +9 -19
  73. package/lib/chevre/repo/mongoose/schemas/place.d.ts +76 -0
  74. package/lib/chevre/repo/mongoose/{model → schemas}/place.js +17 -27
  75. package/lib/chevre/repo/mongoose/schemas/priceSpecification.d.ts +66 -0
  76. package/lib/chevre/repo/mongoose/{model → schemas}/priceSpecification.js +9 -19
  77. package/lib/chevre/repo/mongoose/schemas/product.d.ts +67 -0
  78. package/lib/chevre/repo/mongoose/{model → schemas}/product.js +14 -24
  79. package/lib/chevre/repo/mongoose/schemas/project.d.ts +63 -0
  80. package/lib/chevre/repo/mongoose/{model → schemas}/project.js +7 -17
  81. package/lib/chevre/repo/mongoose/{model → schemas}/reservation.d.ts +26 -2
  82. package/lib/chevre/repo/mongoose/{model → schemas}/reservation.js +15 -25
  83. package/lib/chevre/repo/mongoose/schemas/role.d.ts +57 -0
  84. package/lib/chevre/repo/mongoose/{model → schemas}/role.js +4 -14
  85. package/lib/chevre/repo/mongoose/schemas/seller.d.ts +67 -0
  86. package/lib/chevre/repo/mongoose/{model → schemas}/seller.js +12 -22
  87. package/lib/chevre/repo/mongoose/schemas/serviceOutput.d.ts +57 -0
  88. package/lib/chevre/repo/mongoose/{model → schemas}/serviceOutput.js +5 -15
  89. package/lib/chevre/repo/mongoose/schemas/task.d.ts +65 -0
  90. package/lib/chevre/repo/mongoose/{model → schemas}/task.js +7 -17
  91. package/lib/chevre/repo/mongoose/schemas/telemetry.d.ts +62 -0
  92. package/lib/chevre/repo/mongoose/{model → schemas}/telemetry.js +9 -19
  93. package/lib/chevre/repo/mongoose/schemas/transaction.d.ts +70 -0
  94. package/lib/chevre/repo/mongoose/{model → schemas}/transaction.js +12 -22
  95. package/lib/chevre/repo/mongoose/schemas/trip.d.ts +57 -0
  96. package/lib/chevre/repo/mongoose/{model → schemas}/trip.js +5 -15
  97. package/lib/chevre/repo/mongoose/writeConcern.d.ts +3 -0
  98. package/lib/chevre/repo/mongoose/writeConcern.js +5 -0
  99. package/lib/chevre/repo/offer.js +11 -6
  100. package/lib/chevre/repo/offerCatalog.js +8 -4
  101. package/lib/chevre/repo/order.d.ts +0 -2
  102. package/lib/chevre/repo/order.js +12 -9
  103. package/lib/chevre/repo/ownershipInfo.d.ts +0 -2
  104. package/lib/chevre/repo/ownershipInfo.js +10 -7
  105. package/lib/chevre/repo/permit.js +6 -2
  106. package/lib/chevre/repo/place.js +16 -12
  107. package/lib/chevre/repo/priceSpecification.js +8 -4
  108. package/lib/chevre/repo/product.js +8 -4
  109. package/lib/chevre/repo/project.js +7 -3
  110. package/lib/chevre/repo/reservation.js +8 -21
  111. package/lib/chevre/repo/role.js +8 -4
  112. package/lib/chevre/repo/seller.js +8 -4
  113. package/lib/chevre/repo/serviceOutput.js +8 -4
  114. package/lib/chevre/repo/task.js +8 -4
  115. package/lib/chevre/repo/telemetry.js +6 -2
  116. package/lib/chevre/repo/transaction.d.ts +1 -2
  117. package/lib/chevre/repo/transaction.js +9 -6
  118. package/lib/chevre/repo/trip.js +8 -4
  119. package/lib/chevre/service/accountTransaction/deposit.js +0 -5
  120. package/lib/chevre/service/accountTransaction/transfer.js +0 -5
  121. package/lib/chevre/service/accountTransaction/withdraw.js +0 -5
  122. package/lib/chevre/service/assetTransaction/moneyTransfer.js +0 -5
  123. package/lib/chevre/service/assetTransaction/refund.js +0 -5
  124. package/lib/chevre/service/assetTransaction/registerService.js +0 -5
  125. package/lib/chevre/service/assetTransaction/reserve.js +0 -10
  126. package/lib/chevre/service/code.js +6 -1
  127. package/lib/chevre/service/order/onOrderStatusChanged/factory.js +6 -1
  128. package/lib/chevre/service/report/ownershipInfo.js +4 -0
  129. package/lib/chevre/service/transaction/moneyTransfer.js +0 -5
  130. package/lib/chevre/service/transaction/placeOrderInProgress.js +2 -2
  131. package/lib/chevre/service/transaction/returnOrder.js +1 -1
  132. package/package.json +7 -7
  133. package/lib/chevre/repo/mongoose/model/account.d.ts +0 -30
  134. package/lib/chevre/repo/mongoose/model/accountTitle.d.ts +0 -40
  135. package/lib/chevre/repo/mongoose/model/accountTransaction.d.ts +0 -43
  136. package/lib/chevre/repo/mongoose/model/accountingReport.d.ts +0 -34
  137. package/lib/chevre/repo/mongoose/model/action.d.ts +0 -49
  138. package/lib/chevre/repo/mongoose/model/additionalProperty.d.ts +0 -36
  139. package/lib/chevre/repo/mongoose/model/aggregation.d.ts +0 -30
  140. package/lib/chevre/repo/mongoose/model/assetTransaction.d.ts +0 -48
  141. package/lib/chevre/repo/mongoose/model/authorization.d.ts +0 -37
  142. package/lib/chevre/repo/mongoose/model/categoryCode.d.ts +0 -40
  143. package/lib/chevre/repo/mongoose/model/comments.d.ts +0 -41
  144. package/lib/chevre/repo/mongoose/model/creativeWork.d.ts +0 -49
  145. package/lib/chevre/repo/mongoose/model/customer.d.ts +0 -40
  146. package/lib/chevre/repo/mongoose/model/emailMessages.d.ts +0 -38
  147. package/lib/chevre/repo/mongoose/model/member.d.ts +0 -34
  148. package/lib/chevre/repo/mongoose/model/merchantReturnPolicy.d.ts +0 -38
  149. package/lib/chevre/repo/mongoose/model/offer.d.ts +0 -59
  150. package/lib/chevre/repo/mongoose/model/offerCatalog.d.ts +0 -40
  151. package/lib/chevre/repo/mongoose/model/order.d.ts +0 -53
  152. package/lib/chevre/repo/mongoose/model/ownershipInfo.d.ts +0 -40
  153. package/lib/chevre/repo/mongoose/model/place.d.ts +0 -52
  154. package/lib/chevre/repo/mongoose/model/priceSpecification.d.ts +0 -42
  155. package/lib/chevre/repo/mongoose/model/product.d.ts +0 -43
  156. package/lib/chevre/repo/mongoose/model/project.d.ts +0 -39
  157. package/lib/chevre/repo/mongoose/model/role.d.ts +0 -33
  158. package/lib/chevre/repo/mongoose/model/seller.d.ts +0 -43
  159. package/lib/chevre/repo/mongoose/model/serviceOutput.d.ts +0 -33
  160. package/lib/chevre/repo/mongoose/model/task.d.ts +0 -41
  161. package/lib/chevre/repo/mongoose/model/telemetry.d.ts +0 -38
  162. package/lib/chevre/repo/mongoose/model/transaction.d.ts +0 -46
  163. package/lib/chevre/repo/mongoose/model/trip.d.ts +0 -33
@@ -1,30 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "Account";
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
- export { modelName, schema };
@@ -1,40 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "AccountTitle";
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
- timestamps: {
12
- createdAt: string;
13
- updatedAt: string;
14
- };
15
- toJSON: {
16
- getters: false;
17
- virtuals: false;
18
- minimize: false;
19
- versionKey: false;
20
- };
21
- toObject: {
22
- getters: false;
23
- virtuals: true;
24
- minimize: false;
25
- versionKey: false;
26
- };
27
- }>, {
28
- typeOf: string;
29
- name?: string | undefined;
30
- project?: any;
31
- codeValue?: string | undefined;
32
- alternateName?: string | undefined;
33
- description?: string | undefined;
34
- inCodeSet?: any;
35
- hasCategoryCode?: any;
36
- inDefinedTermSet?: any;
37
- hasDefinedTerm?: any;
38
- additionalProperty?: any;
39
- }>;
40
- export { modelName, schema };
@@ -1,43 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "AccountTransaction";
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
- status: string;
32
- transactionNumber: string;
33
- object?: any;
34
- expires?: Date | undefined;
35
- project?: any;
36
- identifier?: string | undefined;
37
- agent?: any;
38
- recipient?: any;
39
- startDate?: Date | undefined;
40
- endDate?: Date | undefined;
41
- potentialActions?: any;
42
- }>;
43
- export { modelName, schema };
@@ -1,34 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "AccountingReport";
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
- hasPart: (typeof mongoose.Schema.Types.Mixed)[];
31
- mainEntity: typeof mongoose.Schema.Types.Mixed;
32
- project: typeof mongoose.Schema.Types.Mixed;
33
- }>;
34
- export { modelName, schema };
@@ -1,49 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "Action";
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
- error?: any;
33
- project?: any;
34
- description?: string | undefined;
35
- agent?: any;
36
- recipient?: any;
37
- startDate?: Date | undefined;
38
- endDate?: Date | undefined;
39
- potentialActions?: any;
40
- fromLocation?: any;
41
- toLocation?: any;
42
- actionStatus?: string | undefined;
43
- result?: any;
44
- purpose?: any;
45
- amount?: any;
46
- instrument?: any;
47
- location?: any;
48
- }>;
49
- export { modelName, schema };
@@ -1,36 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "AdditionalProperty";
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
- codeValue: string;
32
- name?: any;
33
- project?: any;
34
- inCodeSet?: any;
35
- }>;
36
- export { modelName, schema };
@@ -1,30 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "Aggregation";
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
- export { modelName, schema };
@@ -1,48 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "AssetTransaction";
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
- transactionNumber?: string | undefined;
42
- tasksExportationStatus?: string | undefined;
43
- tasksExportedAt?: Date | undefined;
44
- result?: any;
45
- location?: any;
46
- seller?: any;
47
- }>;
48
- export { modelName, schema };
@@ -1,37 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "Authorization";
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
- project?: any;
33
- code?: string | undefined;
34
- validFrom?: Date | undefined;
35
- validUntil?: Date | undefined;
36
- }>;
37
- export { modelName, schema };
@@ -1,40 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "CategoryCode";
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
- codeValue: string;
32
- additionalProperty: any[];
33
- name?: any;
34
- project?: any;
35
- inCodeSet?: any;
36
- paymentMethod?: any;
37
- color?: string | undefined;
38
- image?: string | undefined;
39
- }>;
40
- export { modelName, schema };
@@ -1,41 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "Comment";
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
- text: string;
31
- typeOf: string;
32
- additionalProperty: any[];
33
- commentCount: number;
34
- mentions: any[];
35
- project?: any;
36
- about?: any;
37
- author?: any;
38
- dateCreated?: Date | undefined;
39
- dateModified?: Date | undefined;
40
- }>;
41
- export { modelName, schema };
@@ -1,49 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "CreativeWork";
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
- name?: any;
32
- project?: any;
33
- alternateName?: string | undefined;
34
- description?: string | undefined;
35
- additionalProperty?: any;
36
- identifier?: string | undefined;
37
- duration?: string | undefined;
38
- alternativeHeadline?: string | undefined;
39
- copyrightHolder?: any;
40
- copyrightYear?: number | undefined;
41
- datePublished?: Date | undefined;
42
- distributor?: any;
43
- headline?: string | undefined;
44
- license?: string | undefined;
45
- thumbnailUrl?: string | undefined;
46
- contentRating?: string | undefined;
47
- offers?: any;
48
- }>;
49
- export { modelName, schema };
@@ -1,40 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "Customer";
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
- contactPoint: any[];
33
- name?: any;
34
- url?: string | undefined;
35
- project?: any;
36
- email?: string | undefined;
37
- branchCode?: string | undefined;
38
- telephone?: string | undefined;
39
- }>;
40
- export { modelName, schema };
@@ -1,38 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "EmailMessage";
3
- /**
4
- * Eメールメッセージスキーマ
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
- text?: string | undefined;
32
- name?: any;
33
- project?: any;
34
- identifier?: string | undefined;
35
- about?: any;
36
- sender?: any;
37
- }>;
38
- export { modelName, schema };
@@ -1,34 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "Member";
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
- project?: any;
32
- member?: any;
33
- }>;
34
- export { modelName, schema };
@@ -1,38 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "MerchantReturnPolicy";
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
- name?: any;
32
- project?: any;
33
- additionalProperty?: any;
34
- identifier?: string | undefined;
35
- customerRemorseReturnFees?: string | undefined;
36
- customerRemorseReturnFeesMovieTicket?: string | undefined;
37
- }>;
38
- export { modelName, schema };
@@ -1,59 +0,0 @@
1
- import * as mongoose from 'mongoose';
2
- declare const modelName = "Offer";
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
- 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
- }>;
59
- export { modelName, schema };