@chevre/domain 21.11.0-alpha.0 → 21.11.0-alpha.2
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/offer/searchAllByIdsAndOfferCatalogId.ts +8 -5
- package/example/src/chevre/place/adminHasPOS.ts +40 -0
- package/lib/chevre/errorHandler.js +3 -0
- package/lib/chevre/repo/mongoose/schemas/project.d.ts +3 -3
- package/lib/chevre/repo/place/hasPOS.d.ts +50 -0
- package/lib/chevre/repo/place/hasPOS.js +136 -0
- package/lib/chevre/repository.d.ts +8 -0
- package/lib/chevre/repository.js +11 -1
- package/lib/chevre/service/offer/event/searchEventTicketOffers.js +8 -0
- package/lib/chevre/service/offer/product/searchProductOffers.js +8 -0
- package/package.json +2 -2
|
@@ -12,10 +12,10 @@ async function main() {
|
|
|
12
12
|
const offers = await offerRepo.searchAllByIdsAndOfferCatalogId({
|
|
13
13
|
ids: ['xx', 'xxx', '1001', '901'],
|
|
14
14
|
includedInDataCatalog: {
|
|
15
|
-
id: ['0001'],
|
|
16
|
-
isOfferCatalogItem: false
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
// id: ['0001'],
|
|
16
|
+
// isOfferCatalogItem: false
|
|
17
|
+
id: ['6509262f69b07dde13c708eb', '6509262f69b07dde13c708ex', '6508dd91584bb60769914d2b', '651360e04df434b49114e4bb'],
|
|
18
|
+
isOfferCatalogItem: true
|
|
19
19
|
},
|
|
20
20
|
excludeAppliesToMovieTicket: false
|
|
21
21
|
});
|
|
@@ -28,4 +28,7 @@ async function main() {
|
|
|
28
28
|
|
|
29
29
|
main()
|
|
30
30
|
.then(console.log)
|
|
31
|
-
.catch(
|
|
31
|
+
.catch((error) => {
|
|
32
|
+
console.error(chevre.errorHandler.handleMongoError(error));
|
|
33
|
+
console.error(error.name, error.code, error.message);
|
|
34
|
+
});
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// tslint:disable:no-console
|
|
2
|
+
// import * as redis from 'redis';
|
|
3
|
+
import * as mongoose from 'mongoose';
|
|
4
|
+
|
|
5
|
+
import { chevre } from '../../../../lib/index';
|
|
6
|
+
|
|
7
|
+
const project = { typeOf: chevre.factory.organizationType.Project, id: String(process.env.PROJECT_ID) };
|
|
8
|
+
|
|
9
|
+
async function main() {
|
|
10
|
+
await mongoose.connect(<string>process.env.MONGOLAB_URI, { autoIndex: false });
|
|
11
|
+
|
|
12
|
+
const posRepo = new chevre.repository.place.HasPOS(mongoose.connection, { id: '5bfb841d5a78d7948369979a' });
|
|
13
|
+
|
|
14
|
+
const poses = await posRepo.search({
|
|
15
|
+
limit: 10,
|
|
16
|
+
page: 1,
|
|
17
|
+
project: { id: { $eq: project.id } }
|
|
18
|
+
});
|
|
19
|
+
console.log(poses);
|
|
20
|
+
console.log(poses.length);
|
|
21
|
+
|
|
22
|
+
// await posRepo.create({
|
|
23
|
+
// project: { id: project.id },
|
|
24
|
+
// id: '004',
|
|
25
|
+
// name: 'test'
|
|
26
|
+
// });
|
|
27
|
+
// await posRepo.update({
|
|
28
|
+
// project: { id: project.id },
|
|
29
|
+
// id: '004',
|
|
30
|
+
// name: 'test2'
|
|
31
|
+
// });
|
|
32
|
+
// await posRepo.deleteByBranchCode({
|
|
33
|
+
// project: { id: project.id },
|
|
34
|
+
// branchCode: '004'
|
|
35
|
+
// });
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
main()
|
|
39
|
+
.then(console.log)
|
|
40
|
+
.catch(console.error);
|
|
@@ -33,6 +33,9 @@ function handleMongoError(error) {
|
|
|
33
33
|
default:
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
|
+
if (mongoose_1.mongo.BSON.BSONError.isBSONError(handledError)) {
|
|
37
|
+
handledError = new factory_1.errors.Argument('', handledError.message);
|
|
38
|
+
}
|
|
36
39
|
return handledError;
|
|
37
40
|
}
|
|
38
41
|
exports.handleMongoError = handleMongoError;
|
|
@@ -55,27 +55,27 @@ declare const schema: Schema<any, import("mongoose").Model<any, any, any, any, a
|
|
|
55
55
|
typeOf: string;
|
|
56
56
|
_id?: string | undefined;
|
|
57
57
|
name?: string | undefined;
|
|
58
|
+
logo?: string | undefined;
|
|
58
59
|
alternateName?: string | undefined;
|
|
59
60
|
settings?: any;
|
|
60
|
-
logo?: string | undefined;
|
|
61
61
|
aggregateReservation?: any;
|
|
62
62
|
subscription?: any;
|
|
63
63
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
64
64
|
typeOf: string;
|
|
65
65
|
_id?: string | undefined;
|
|
66
66
|
name?: string | undefined;
|
|
67
|
+
logo?: string | undefined;
|
|
67
68
|
alternateName?: string | undefined;
|
|
68
69
|
settings?: any;
|
|
69
|
-
logo?: string | undefined;
|
|
70
70
|
aggregateReservation?: any;
|
|
71
71
|
subscription?: any;
|
|
72
72
|
}>> & Omit<import("mongoose").FlatRecord<{
|
|
73
73
|
typeOf: string;
|
|
74
74
|
_id?: string | undefined;
|
|
75
75
|
name?: string | undefined;
|
|
76
|
+
logo?: string | undefined;
|
|
76
77
|
alternateName?: string | undefined;
|
|
77
78
|
settings?: any;
|
|
78
|
-
logo?: string | undefined;
|
|
79
79
|
aggregateReservation?: any;
|
|
80
80
|
subscription?: any;
|
|
81
81
|
}> & Required<{
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Connection } from 'mongoose';
|
|
2
|
+
import * as factory from '../../factory';
|
|
3
|
+
/**
|
|
4
|
+
* POSを操作する組織
|
|
5
|
+
*/
|
|
6
|
+
interface IOperator {
|
|
7
|
+
/**
|
|
8
|
+
* 施設ID
|
|
9
|
+
*/
|
|
10
|
+
id: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* 施設のPOSリポジトリ
|
|
14
|
+
*/
|
|
15
|
+
export declare class MongoRepository {
|
|
16
|
+
private readonly placeModel;
|
|
17
|
+
private readonly operater;
|
|
18
|
+
constructor(connection: Connection, operater: IOperator);
|
|
19
|
+
search(params: {
|
|
20
|
+
limit?: number;
|
|
21
|
+
page?: number;
|
|
22
|
+
project?: {
|
|
23
|
+
id?: {
|
|
24
|
+
$eq?: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
}): Promise<Pick<factory.place.movieTheater.IPOS, 'branchCode' | 'name'>[]>;
|
|
28
|
+
createByBranchCode(params: Pick<factory.place.movieTheater.IPOS, 'branchCode' | 'name'> & {
|
|
29
|
+
project: {
|
|
30
|
+
id: string;
|
|
31
|
+
};
|
|
32
|
+
}): Promise<{
|
|
33
|
+
id: string;
|
|
34
|
+
}>;
|
|
35
|
+
updateByBranchCode(params: Pick<factory.place.movieTheater.IPOS, 'branchCode' | 'name'> & {
|
|
36
|
+
project: {
|
|
37
|
+
id: string;
|
|
38
|
+
};
|
|
39
|
+
}): Promise<{
|
|
40
|
+
id: string;
|
|
41
|
+
}>;
|
|
42
|
+
deleteByBranchCode(params: Pick<factory.place.movieTheater.IPOS, 'branchCode'> & {
|
|
43
|
+
project: {
|
|
44
|
+
id: string;
|
|
45
|
+
};
|
|
46
|
+
}): Promise<{
|
|
47
|
+
id: string;
|
|
48
|
+
}>;
|
|
49
|
+
}
|
|
50
|
+
export {};
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.MongoRepository = void 0;
|
|
13
|
+
const mongoose_1 = require("mongoose");
|
|
14
|
+
const place_1 = require("../mongoose/schemas/place");
|
|
15
|
+
const factory = require("../../factory");
|
|
16
|
+
const settings_1 = require("../../settings");
|
|
17
|
+
/**
|
|
18
|
+
* 施設のPOSリポジトリ
|
|
19
|
+
*/
|
|
20
|
+
class MongoRepository {
|
|
21
|
+
constructor(connection, operater) {
|
|
22
|
+
this.placeModel = connection.model(place_1.modelName, place_1.schema);
|
|
23
|
+
this.operater = operater;
|
|
24
|
+
}
|
|
25
|
+
search(params) {
|
|
26
|
+
var _a, _b;
|
|
27
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
28
|
+
const matchStages = [
|
|
29
|
+
{ $match: { _id: { $eq: new mongoose_1.Types.ObjectId(this.operater.id) } } }
|
|
30
|
+
];
|
|
31
|
+
const projectIdEq = (_b = (_a = params.project) === null || _a === void 0 ? void 0 : _a.id) === null || _b === void 0 ? void 0 : _b.$eq;
|
|
32
|
+
if (typeof projectIdEq === 'string') {
|
|
33
|
+
matchStages.push({ $match: { 'project.id': { $eq: projectIdEq } } });
|
|
34
|
+
}
|
|
35
|
+
const aggregate = this.placeModel.aggregate([
|
|
36
|
+
{
|
|
37
|
+
$unwind: {
|
|
38
|
+
path: '$hasPOS'
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
...matchStages,
|
|
42
|
+
{ $sort: { 'hasPOS.branchCode': factory.sortType.Ascending } },
|
|
43
|
+
{
|
|
44
|
+
$project: {
|
|
45
|
+
_id: 0,
|
|
46
|
+
id: '$hasPOS.branchCode',
|
|
47
|
+
branchCode: '$hasPOS.branchCode',
|
|
48
|
+
name: '$hasPOS.name'
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
]);
|
|
52
|
+
if (typeof params.limit === 'number' && params.limit > 0) {
|
|
53
|
+
const page = (typeof params.page === 'number' && params.page > 0) ? params.page : 1;
|
|
54
|
+
aggregate.limit(params.limit * page)
|
|
55
|
+
.skip(params.limit * (page - 1));
|
|
56
|
+
}
|
|
57
|
+
return aggregate.option({ maxTimeMS: settings_1.MONGO_MAX_TIME_MS })
|
|
58
|
+
.exec();
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
createByBranchCode(params) {
|
|
62
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
63
|
+
// 施設存在確認
|
|
64
|
+
let doc = yield this.placeModel.findOne({
|
|
65
|
+
'project.id': { $eq: params.project.id },
|
|
66
|
+
_id: { $eq: this.operater.id }
|
|
67
|
+
}, { _id: 1, typeOf: 1 })
|
|
68
|
+
.exec();
|
|
69
|
+
if (doc === null) {
|
|
70
|
+
throw new factory.errors.NotFound(factory.placeType.MovieTheater);
|
|
71
|
+
}
|
|
72
|
+
const creatingPOS = {
|
|
73
|
+
id: params.branchCode,
|
|
74
|
+
branchCode: params.branchCode,
|
|
75
|
+
name: params.name
|
|
76
|
+
};
|
|
77
|
+
doc = yield this.placeModel.findOneAndUpdate({
|
|
78
|
+
'project.id': { $eq: params.project.id },
|
|
79
|
+
_id: { $eq: this.operater.id },
|
|
80
|
+
'hasPOS.branchCode': { $ne: params.branchCode }
|
|
81
|
+
}, {
|
|
82
|
+
$push: { hasPOS: creatingPOS }
|
|
83
|
+
}, {
|
|
84
|
+
new: true,
|
|
85
|
+
projection: { _id: 1 }
|
|
86
|
+
})
|
|
87
|
+
.exec();
|
|
88
|
+
// 存在しなければID重複
|
|
89
|
+
if (doc === null) {
|
|
90
|
+
throw new factory.errors.AlreadyInUse('hasPOS', ['id']);
|
|
91
|
+
}
|
|
92
|
+
return doc.toObject();
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
updateByBranchCode(params) {
|
|
96
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
97
|
+
const doc = yield this.placeModel.findOneAndUpdate({
|
|
98
|
+
'project.id': { $eq: params.project.id },
|
|
99
|
+
_id: { $eq: this.operater.id },
|
|
100
|
+
'hasPOS.branchCode': { $eq: params.branchCode }
|
|
101
|
+
}, Object.assign({}, (params.name !== undefined && params.name !== null)
|
|
102
|
+
? { 'hasPOS.$[pos].name': params.name }
|
|
103
|
+
: undefined), {
|
|
104
|
+
new: true,
|
|
105
|
+
arrayFilters: [
|
|
106
|
+
{ 'pos.branchCode': { $eq: params.branchCode } }
|
|
107
|
+
],
|
|
108
|
+
projection: { _id: 1 }
|
|
109
|
+
})
|
|
110
|
+
.exec();
|
|
111
|
+
if (doc === null) {
|
|
112
|
+
throw new factory.errors.NotFound('hasPOS');
|
|
113
|
+
}
|
|
114
|
+
return doc.toObject();
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
deleteByBranchCode(params) {
|
|
118
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
119
|
+
const doc = yield this.placeModel.findOneAndUpdate({
|
|
120
|
+
'project.id': { $eq: params.project.id },
|
|
121
|
+
_id: { $eq: this.operater.id },
|
|
122
|
+
'hasPOS.branchCode': { $eq: params.branchCode }
|
|
123
|
+
}, {
|
|
124
|
+
$pull: { hasPOS: { branchCode: { $eq: params.branchCode } } }
|
|
125
|
+
}, {
|
|
126
|
+
projection: { _id: 1 }
|
|
127
|
+
})
|
|
128
|
+
.exec();
|
|
129
|
+
if (doc === null) {
|
|
130
|
+
throw new factory.errors.NotFound('hasPOS');
|
|
131
|
+
}
|
|
132
|
+
return doc.toObject();
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
exports.MongoRepository = MongoRepository;
|
|
@@ -28,6 +28,7 @@ import { MongoRepository as OwnershipInfoRepo } from './repo/ownershipInfo';
|
|
|
28
28
|
import { MongoRepository as PaymentServiceProviderRepo } from './repo/paymentServiceProvider';
|
|
29
29
|
import { MongoRepository as PermitRepo } from './repo/permit';
|
|
30
30
|
import { MongoRepository as PlaceRepo } from './repo/place';
|
|
31
|
+
import { MongoRepository as HasPOSRepo } from './repo/place/hasPOS';
|
|
31
32
|
import { MongoRepository as PriceSpecificationRepo } from './repo/priceSpecification';
|
|
32
33
|
import { MongoRepository as ProductRepo } from './repo/product';
|
|
33
34
|
import { MongoRepository as ProductOfferRepo } from './repo/productOffer';
|
|
@@ -177,6 +178,13 @@ export declare class Permit extends PermitRepo {
|
|
|
177
178
|
}
|
|
178
179
|
export declare class Place extends PlaceRepo {
|
|
179
180
|
}
|
|
181
|
+
export declare namespace place {
|
|
182
|
+
/**
|
|
183
|
+
* 施設のPoints-of-Salesリポジトリ
|
|
184
|
+
*/
|
|
185
|
+
class HasPOS extends HasPOSRepo {
|
|
186
|
+
}
|
|
187
|
+
}
|
|
180
188
|
export declare class PriceSpecification extends PriceSpecificationRepo {
|
|
181
189
|
}
|
|
182
190
|
export declare class Product extends ProductRepo {
|
package/lib/chevre/repository.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.rateLimit = exports.Trip = exports.TransactionNumber = exports.Transaction = exports.Telemetry = exports.Task = exports.StockHolder = exports.ServiceOutputIdentifier = exports.ServiceOutput = exports.Seller = exports.Role = exports.Reservation = exports.Project = exports.ProductOffer = exports.Product = exports.PriceSpecification = exports.Place = exports.Permit = exports.Person = exports.paymentMethod = exports.PaymentServiceProvider = exports.OwnershipInfo = exports.OrderNumber = exports.Order = exports.Offer = exports.OfferItemCondition = exports.OfferCatalogItem = exports.OfferCatalog = exports.MerchantReturnPolicy = exports.Member = exports.Event = exports.EmailMessage = exports.Customer = exports.CreativeWork = exports.ConfirmationNumber = exports.Comment = exports.Code = exports.CategoryCode = exports.AssetTransaction = exports.action = exports.Aggregation = exports.AggregateOffer = exports.AdditionalProperty = exports.Action = exports.AccountTransaction = exports.AccountTitle = exports.AccountingReport = exports.Account = void 0;
|
|
3
|
+
exports.rateLimit = exports.Trip = exports.TransactionNumber = exports.Transaction = exports.Telemetry = exports.Task = exports.StockHolder = exports.ServiceOutputIdentifier = exports.ServiceOutput = exports.Seller = exports.Role = exports.Reservation = exports.Project = exports.ProductOffer = exports.Product = exports.PriceSpecification = exports.place = exports.Place = exports.Permit = exports.Person = exports.paymentMethod = exports.PaymentServiceProvider = exports.OwnershipInfo = exports.OrderNumber = exports.Order = exports.Offer = exports.OfferItemCondition = exports.OfferCatalogItem = exports.OfferCatalog = exports.MerchantReturnPolicy = exports.Member = exports.Event = exports.EmailMessage = exports.Customer = exports.CreativeWork = exports.ConfirmationNumber = exports.Comment = exports.Code = exports.CategoryCode = exports.AssetTransaction = exports.action = exports.Aggregation = exports.AggregateOffer = exports.AdditionalProperty = exports.Action = exports.AccountTransaction = exports.AccountTitle = exports.AccountingReport = exports.Account = void 0;
|
|
4
4
|
// tslint:disable:max-classes-per-file completed-docs
|
|
5
5
|
/**
|
|
6
6
|
* リポジトリ
|
|
@@ -32,6 +32,7 @@ const ownershipInfo_1 = require("./repo/ownershipInfo");
|
|
|
32
32
|
const paymentServiceProvider_1 = require("./repo/paymentServiceProvider");
|
|
33
33
|
const permit_1 = require("./repo/permit");
|
|
34
34
|
const place_1 = require("./repo/place");
|
|
35
|
+
const hasPOS_1 = require("./repo/place/hasPOS");
|
|
35
36
|
const priceSpecification_1 = require("./repo/priceSpecification");
|
|
36
37
|
const product_1 = require("./repo/product");
|
|
37
38
|
const productOffer_1 = require("./repo/productOffer");
|
|
@@ -215,6 +216,15 @@ exports.Permit = Permit;
|
|
|
215
216
|
class Place extends place_1.MongoRepository {
|
|
216
217
|
}
|
|
217
218
|
exports.Place = Place;
|
|
219
|
+
var place;
|
|
220
|
+
(function (place) {
|
|
221
|
+
/**
|
|
222
|
+
* 施設のPoints-of-Salesリポジトリ
|
|
223
|
+
*/
|
|
224
|
+
class HasPOS extends hasPOS_1.MongoRepository {
|
|
225
|
+
}
|
|
226
|
+
place.HasPOS = HasPOS;
|
|
227
|
+
})(place = exports.place || (exports.place = {}));
|
|
218
228
|
class PriceSpecification extends priceSpecification_1.MongoRepository {
|
|
219
229
|
}
|
|
220
230
|
exports.PriceSpecification = PriceSpecification;
|
|
@@ -40,6 +40,14 @@ function searchTicketOffersByItemOffered(params) {
|
|
|
40
40
|
}
|
|
41
41
|
// 明示的にカタログ指定可能にする
|
|
42
42
|
if (typeof ((_c = params.includedInDataCatalog) === null || _c === void 0 ? void 0 : _c.id) === 'string' && params.includedInDataCatalog.id.length > 0) {
|
|
43
|
+
if (isOfferCatalogItem) {
|
|
44
|
+
// no op
|
|
45
|
+
}
|
|
46
|
+
else {
|
|
47
|
+
if (subOfferCatalogId !== params.includedInDataCatalog.id) {
|
|
48
|
+
throw new factory.errors.Argument('includedInDataCatalog.id', 'invalid offerCatalog');
|
|
49
|
+
}
|
|
50
|
+
}
|
|
43
51
|
subOfferCatalogId = params.includedInDataCatalog.id;
|
|
44
52
|
}
|
|
45
53
|
const { offers, sortedOfferIds } = yield repos.offer.searchByOfferCatalogIdWithSortIndex({
|
|
@@ -42,6 +42,14 @@ function searchProductOffers(params) {
|
|
|
42
42
|
}
|
|
43
43
|
// 明示的にカタログ指定可能にする
|
|
44
44
|
if (typeof ((_b = params.includedInDataCatalog) === null || _b === void 0 ? void 0 : _b.id) === 'string' && params.includedInDataCatalog.id.length > 0) {
|
|
45
|
+
if (isOfferCatalogItem) {
|
|
46
|
+
// no op
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
if (subOfferCatalogId !== params.includedInDataCatalog.id) {
|
|
50
|
+
throw new factory.errors.Argument('includedInDataCatalog.id', 'invalid offerCatalog');
|
|
51
|
+
}
|
|
52
|
+
}
|
|
45
53
|
subOfferCatalogId = params.includedInDataCatalog.id;
|
|
46
54
|
}
|
|
47
55
|
const searchByOfferCatalogIdResult = yield repos.offer.searchByOfferCatalogIdWithSortIndex({
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@chevre/factory": "4.
|
|
12
|
+
"@chevre/factory": "4.333.0",
|
|
13
13
|
"@cinerino/sdk": "3.170.0",
|
|
14
14
|
"@motionpicture/coa-service": "9.2.0",
|
|
15
15
|
"@motionpicture/gmo-service": "5.2.0",
|
|
@@ -117,5 +117,5 @@
|
|
|
117
117
|
"postversion": "git push origin --tags",
|
|
118
118
|
"prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
|
|
119
119
|
},
|
|
120
|
-
"version": "21.11.0-alpha.
|
|
120
|
+
"version": "21.11.0-alpha.2"
|
|
121
121
|
}
|