@things-factory/geography 5.0.7 → 6.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/dist-server/controllers/index.js.map +1 -1
- package/dist-server/index.js +4 -17
- package/dist-server/index.js.map +1 -1
- package/dist-server/middlewares/index.js.map +1 -1
- package/dist-server/migrations/index.js.map +1 -1
- package/dist-server/routes.js +0 -1
- package/dist-server/routes.js.map +1 -1
- package/dist-server/service/geo-area/geo-area-mutation.js +34 -45
- package/dist-server/service/geo-area/geo-area-mutation.js.map +1 -1
- package/dist-server/service/geo-area/geo-area-query.js +75 -48
- package/dist-server/service/geo-area/geo-area-query.js.map +1 -1
- package/dist-server/service/geo-area/geo-area-type.js +44 -52
- package/dist-server/service/geo-area/geo-area-type.js.map +1 -1
- package/dist-server/service/geo-area/geo-area.js +37 -46
- package/dist-server/service/geo-area/geo-area.js.map +1 -1
- package/dist-server/service/geo-area/index.js.map +1 -1
- package/dist-server/service/geo-city/geo-city-mutation.js +34 -45
- package/dist-server/service/geo-city/geo-city-mutation.js.map +1 -1
- package/dist-server/service/geo-city/geo-city-query.js +41 -54
- package/dist-server/service/geo-city/geo-city-query.js.map +1 -1
- package/dist-server/service/geo-city/geo-city-type.js +28 -36
- package/dist-server/service/geo-city/geo-city-type.js.map +1 -1
- package/dist-server/service/geo-city/geo-city.js +33 -42
- package/dist-server/service/geo-city/geo-city.js.map +1 -1
- package/dist-server/service/geo-city/index.js.map +1 -1
- package/dist-server/service/geo-continent/geo-continent-mutation.js +34 -45
- package/dist-server/service/geo-continent/geo-continent-mutation.js.map +1 -1
- package/dist-server/service/geo-continent/geo-continent-query.js +29 -42
- package/dist-server/service/geo-continent/geo-continent-query.js.map +1 -1
- package/dist-server/service/geo-continent/geo-continent-type.js +20 -28
- package/dist-server/service/geo-continent/geo-continent-type.js.map +1 -1
- package/dist-server/service/geo-continent/geo-continent.js +20 -29
- package/dist-server/service/geo-continent/geo-continent.js.map +1 -1
- package/dist-server/service/geo-continent/index.js.map +1 -1
- package/dist-server/service/geo-country/geo-country-mutation.js +34 -45
- package/dist-server/service/geo-country/geo-country-mutation.js.map +1 -1
- package/dist-server/service/geo-country/geo-country-query.js +46 -48
- package/dist-server/service/geo-country/geo-country-query.js.map +1 -1
- package/dist-server/service/geo-country/geo-country-type.js +24 -32
- package/dist-server/service/geo-country/geo-country-type.js.map +1 -1
- package/dist-server/service/geo-country/geo-country.js +26 -35
- package/dist-server/service/geo-country/geo-country.js.map +1 -1
- package/dist-server/service/geo-country/index.js.map +1 -1
- package/dist-server/service/geo-state/geo-state-mutation.js +34 -45
- package/dist-server/service/geo-state/geo-state-mutation.js.map +1 -1
- package/dist-server/service/geo-state/geo-state-query.js +35 -48
- package/dist-server/service/geo-state/geo-state-query.js.map +1 -1
- package/dist-server/service/geo-state/geo-state-type.js +28 -36
- package/dist-server/service/geo-state/geo-state-type.js.map +1 -1
- package/dist-server/service/geo-state/geo-state.js +28 -37
- package/dist-server/service/geo-state/geo-state.js.map +1 -1
- package/dist-server/service/geo-state/index.js.map +1 -1
- package/dist-server/service/index.js +6 -19
- package/dist-server/service/index.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -0
- package/package.json +5 -5
- package/server/routes.ts +0 -2
- package/server/service/geo-area/geo-area-mutation.ts +11 -6
- package/server/service/geo-area/geo-area-query.ts +42 -8
- package/server/service/geo-area/geo-area.ts +1 -1
- package/server/service/geo-city/geo-city-mutation.ts +14 -6
- package/server/service/geo-city/geo-city-query.ts +10 -9
- package/server/service/geo-city/geo-city.ts +1 -1
- package/server/service/geo-continent/geo-continent-mutation.ts +10 -6
- package/server/service/geo-continent/geo-continent-query.ts +8 -7
- package/server/service/geo-country/geo-country-mutation.ts +13 -6
- package/server/service/geo-country/geo-country-query.ts +16 -8
- package/server/service/geo-state/geo-state-mutation.ts +10 -6
- package/server/service/geo-state/geo-state-query.ts +9 -8
|
@@ -1,18 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
-
};
|
|
14
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
3
|
exports.GeoStateMutation = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
16
5
|
const type_graphql_1 = require("type-graphql");
|
|
17
6
|
const typeorm_1 = require("typeorm");
|
|
18
7
|
const geo_state_1 = require("./geo-state");
|
|
@@ -46,7 +35,7 @@ let GeoStateMutation = class GeoStateMutation {
|
|
|
46
35
|
if (_updateRecords.length > 0) {
|
|
47
36
|
for (let i = 0; i < _updateRecords.length; i++) {
|
|
48
37
|
const newRecord = _updateRecords[i];
|
|
49
|
-
const geoState = await geoStateRepo.
|
|
38
|
+
const geoState = await geoStateRepo.findOneBy({ id: newRecord.id });
|
|
50
39
|
const result = await geoStateRepo.save(Object.assign(Object.assign(Object.assign({}, geoState), newRecord), { updater: user }));
|
|
51
40
|
results.push(Object.assign(Object.assign({}, result), { cuFlag: 'M' }));
|
|
52
41
|
}
|
|
@@ -66,53 +55,53 @@ let GeoStateMutation = class GeoStateMutation {
|
|
|
66
55
|
return true;
|
|
67
56
|
}
|
|
68
57
|
};
|
|
69
|
-
__decorate([
|
|
58
|
+
tslib_1.__decorate([
|
|
70
59
|
(0, type_graphql_1.Directive)('@transaction'),
|
|
71
60
|
(0, type_graphql_1.Mutation)(returns => geo_state_1.GeoState, { description: 'To create new GeoState' }),
|
|
72
|
-
__param(0, (0, type_graphql_1.Arg)('geoState')),
|
|
73
|
-
__param(1, (0, type_graphql_1.Ctx)()),
|
|
74
|
-
__metadata("design:type", Function),
|
|
75
|
-
__metadata("design:paramtypes", [geo_state_type_1.NewGeoState, Object]),
|
|
76
|
-
__metadata("design:returntype", Promise)
|
|
61
|
+
tslib_1.__param(0, (0, type_graphql_1.Arg)('geoState')),
|
|
62
|
+
tslib_1.__param(1, (0, type_graphql_1.Ctx)()),
|
|
63
|
+
tslib_1.__metadata("design:type", Function),
|
|
64
|
+
tslib_1.__metadata("design:paramtypes", [geo_state_type_1.NewGeoState, Object]),
|
|
65
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
77
66
|
], GeoStateMutation.prototype, "createGeoState", null);
|
|
78
|
-
__decorate([
|
|
67
|
+
tslib_1.__decorate([
|
|
79
68
|
(0, type_graphql_1.Directive)('@transaction'),
|
|
80
69
|
(0, type_graphql_1.Mutation)(returns => geo_state_1.GeoState, { description: 'To modify GeoState information' }),
|
|
81
|
-
__param(0, (0, type_graphql_1.Arg)('id')),
|
|
82
|
-
__param(1, (0, type_graphql_1.Arg)('patch')),
|
|
83
|
-
__param(2, (0, type_graphql_1.Ctx)()),
|
|
84
|
-
__metadata("design:type", Function),
|
|
85
|
-
__metadata("design:paramtypes", [String, geo_state_type_1.GeoStatePatch, Object]),
|
|
86
|
-
__metadata("design:returntype", Promise)
|
|
70
|
+
tslib_1.__param(0, (0, type_graphql_1.Arg)('id')),
|
|
71
|
+
tslib_1.__param(1, (0, type_graphql_1.Arg)('patch')),
|
|
72
|
+
tslib_1.__param(2, (0, type_graphql_1.Ctx)()),
|
|
73
|
+
tslib_1.__metadata("design:type", Function),
|
|
74
|
+
tslib_1.__metadata("design:paramtypes", [String, geo_state_type_1.GeoStatePatch, Object]),
|
|
75
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
87
76
|
], GeoStateMutation.prototype, "updateGeoState", null);
|
|
88
|
-
__decorate([
|
|
77
|
+
tslib_1.__decorate([
|
|
89
78
|
(0, type_graphql_1.Directive)('@transaction'),
|
|
90
79
|
(0, type_graphql_1.Mutation)(returns => [geo_state_1.GeoState], { description: "To modify multiple GeoStates' information" }),
|
|
91
|
-
__param(0, (0, type_graphql_1.Arg)('patches', type => [geo_state_type_1.GeoStatePatch])),
|
|
92
|
-
__param(1, (0, type_graphql_1.Ctx)()),
|
|
93
|
-
__metadata("design:type", Function),
|
|
94
|
-
__metadata("design:paramtypes", [Array, Object]),
|
|
95
|
-
__metadata("design:returntype", Promise)
|
|
80
|
+
tslib_1.__param(0, (0, type_graphql_1.Arg)('patches', type => [geo_state_type_1.GeoStatePatch])),
|
|
81
|
+
tslib_1.__param(1, (0, type_graphql_1.Ctx)()),
|
|
82
|
+
tslib_1.__metadata("design:type", Function),
|
|
83
|
+
tslib_1.__metadata("design:paramtypes", [Array, Object]),
|
|
84
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
96
85
|
], GeoStateMutation.prototype, "updateMultipleGeoState", null);
|
|
97
|
-
__decorate([
|
|
86
|
+
tslib_1.__decorate([
|
|
98
87
|
(0, type_graphql_1.Directive)('@transaction'),
|
|
99
88
|
(0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete GeoState' }),
|
|
100
|
-
__param(0, (0, type_graphql_1.Arg)('id')),
|
|
101
|
-
__param(1, (0, type_graphql_1.Ctx)()),
|
|
102
|
-
__metadata("design:type", Function),
|
|
103
|
-
__metadata("design:paramtypes", [String, Object]),
|
|
104
|
-
__metadata("design:returntype", Promise)
|
|
89
|
+
tslib_1.__param(0, (0, type_graphql_1.Arg)('id')),
|
|
90
|
+
tslib_1.__param(1, (0, type_graphql_1.Ctx)()),
|
|
91
|
+
tslib_1.__metadata("design:type", Function),
|
|
92
|
+
tslib_1.__metadata("design:paramtypes", [String, Object]),
|
|
93
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
105
94
|
], GeoStateMutation.prototype, "deleteGeoState", null);
|
|
106
|
-
__decorate([
|
|
95
|
+
tslib_1.__decorate([
|
|
107
96
|
(0, type_graphql_1.Directive)('@transaction'),
|
|
108
97
|
(0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete multiple geoStates' }),
|
|
109
|
-
__param(0, (0, type_graphql_1.Arg)('ids', type => [String])),
|
|
110
|
-
__param(1, (0, type_graphql_1.Ctx)()),
|
|
111
|
-
__metadata("design:type", Function),
|
|
112
|
-
__metadata("design:paramtypes", [Array, Object]),
|
|
113
|
-
__metadata("design:returntype", Promise)
|
|
98
|
+
tslib_1.__param(0, (0, type_graphql_1.Arg)('ids', type => [String])),
|
|
99
|
+
tslib_1.__param(1, (0, type_graphql_1.Ctx)()),
|
|
100
|
+
tslib_1.__metadata("design:type", Function),
|
|
101
|
+
tslib_1.__metadata("design:paramtypes", [Array, Object]),
|
|
102
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
114
103
|
], GeoStateMutation.prototype, "deleteGeoStates", null);
|
|
115
|
-
GeoStateMutation = __decorate([
|
|
104
|
+
GeoStateMutation = tslib_1.__decorate([
|
|
116
105
|
(0, type_graphql_1.Resolver)(geo_state_1.GeoState)
|
|
117
106
|
], GeoStateMutation);
|
|
118
107
|
exports.GeoStateMutation = GeoStateMutation;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"geo-state-mutation.js","sourceRoot":"","sources":["../../../server/service/geo-state/geo-state-mutation.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"geo-state-mutation.js","sourceRoot":"","sources":["../../../server/service/geo-state/geo-state-mutation.ts"],"names":[],"mappings":"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","sourcesContent":["import { Arg, Ctx, Directive, Mutation, Resolver } from 'type-graphql'\nimport { In } from 'typeorm'\n\nimport { GeoState } from './geo-state'\nimport { GeoStatePatch, NewGeoState } from './geo-state-type'\n\n@Resolver(GeoState)\nexport class GeoStateMutation {\n @Directive('@transaction')\n @Mutation(returns => GeoState, { description: 'To create new GeoState' })\n async createGeoState(@Arg('geoState') geoState: NewGeoState, @Ctx() context: ResolverContext): Promise<GeoState> {\n const { user, tx } = context.state\n\n return await tx.getRepository(GeoState).save({\n ...geoState,\n creator: user,\n updater: user\n })\n }\n\n @Directive('@transaction')\n @Mutation(returns => GeoState, { description: 'To modify GeoState information' })\n async updateGeoState(\n @Arg('id') id: string,\n @Arg('patch') patch: GeoStatePatch,\n @Ctx() context: ResolverContext\n ): Promise<GeoState> {\n const { user, tx } = context.state\n\n const repository = tx.getRepository(GeoState)\n const geoState = await repository.findOne({\n where: { id }\n })\n\n return await repository.save({\n ...geoState,\n ...patch,\n updater: user\n })\n }\n\n @Directive('@transaction')\n @Mutation(returns => [GeoState], { description: \"To modify multiple GeoStates' information\" })\n async updateMultipleGeoState(\n @Arg('patches', type => [GeoStatePatch]) patches: GeoStatePatch[],\n @Ctx() context: ResolverContext\n ): Promise<GeoState[]> {\n const { user, tx } = context.state\n\n let results = []\n const _createRecords = patches.filter((patch: any) => patch.cuFlag.toUpperCase() === '+')\n const _updateRecords = patches.filter((patch: any) => patch.cuFlag.toUpperCase() === 'M')\n const geoStateRepo = tx.getRepository(GeoState)\n\n if (_createRecords.length > 0) {\n for (let i = 0; i < _createRecords.length; i++) {\n const newRecord = _createRecords[i]\n\n const result = await geoStateRepo.save({\n ...newRecord,\n creator: user,\n updater: user\n })\n\n results.push({ ...result, cuFlag: '+' })\n }\n }\n\n if (_updateRecords.length > 0) {\n for (let i = 0; i < _updateRecords.length; i++) {\n const newRecord = _updateRecords[i]\n const geoState = await geoStateRepo.findOneBy({ id: newRecord.id })\n\n const result = await geoStateRepo.save({\n ...geoState,\n ...newRecord,\n updater: user\n })\n\n results.push({ ...result, cuFlag: 'M' })\n }\n }\n\n return results\n }\n\n @Directive('@transaction')\n @Mutation(returns => Boolean, { description: 'To delete GeoState' })\n async deleteGeoState(@Arg('id') id: string, @Ctx() context: ResolverContext): Promise<boolean> {\n const { tx } = context.state\n\n await tx.getRepository(GeoState).delete({ id })\n return true\n }\n\n @Directive('@transaction')\n @Mutation(returns => Boolean, { description: 'To delete multiple geoStates' })\n async deleteGeoStates(\n @Arg('ids', type => [String]) ids: string[],\n @Ctx() context: ResolverContext\n ): Promise<boolean> {\n const { tx } = context.state\n\n await tx.getRepository(GeoState).delete({\n id: In(ids)\n })\n\n return true\n }\n}\n"]}
|
|
@@ -1,85 +1,72 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
-
};
|
|
14
|
-
var _a;
|
|
15
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
3
|
exports.GeoStateQuery = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const type_graphql_1 = require("type-graphql");
|
|
17
6
|
const auth_base_1 = require("@things-factory/auth-base");
|
|
18
7
|
const shell_1 = require("@things-factory/shell");
|
|
19
|
-
const type_graphql_1 = require("type-graphql");
|
|
20
|
-
const typeorm_1 = require("typeorm");
|
|
21
8
|
const geo_country_1 = require("../geo-country/geo-country");
|
|
22
9
|
const geo_state_1 = require("./geo-state");
|
|
23
10
|
const geo_state_type_1 = require("./geo-state-type");
|
|
24
11
|
let GeoStateQuery = class GeoStateQuery {
|
|
25
12
|
async geoState(id, context) {
|
|
26
|
-
return await (0,
|
|
13
|
+
return await (0, shell_1.getRepository)(geo_state_1.GeoState).findOne({
|
|
27
14
|
where: { id }
|
|
28
15
|
});
|
|
29
16
|
}
|
|
30
17
|
async geoStates(params, context) {
|
|
31
18
|
const convertedParams = (0, shell_1.convertListParams)(params);
|
|
32
|
-
const [items, total] = await (0,
|
|
19
|
+
const [items, total] = await (0, shell_1.getRepository)(geo_state_1.GeoState).findAndCount(convertedParams);
|
|
33
20
|
return { items, total };
|
|
34
21
|
}
|
|
35
22
|
async geoCountry(geoState) {
|
|
36
|
-
return await (0,
|
|
23
|
+
return await (0, shell_1.getRepository)(geo_country_1.GeoCountry).findOneBy({ id: geoState.geoCountryId });
|
|
37
24
|
}
|
|
38
25
|
async updater(geoState) {
|
|
39
|
-
return await (0,
|
|
26
|
+
return await (0, shell_1.getRepository)(auth_base_1.User).findOneBy({ id: geoState.updaterId });
|
|
40
27
|
}
|
|
41
28
|
async creator(geoState) {
|
|
42
|
-
return await (0,
|
|
29
|
+
return await (0, shell_1.getRepository)(auth_base_1.User).findOneBy({ id: geoState.creatorId });
|
|
43
30
|
}
|
|
44
31
|
};
|
|
45
|
-
__decorate([
|
|
32
|
+
tslib_1.__decorate([
|
|
46
33
|
(0, type_graphql_1.Query)(returns => geo_state_1.GeoState, { description: 'To fetch a GeoState' }),
|
|
47
|
-
__param(0, (0, type_graphql_1.Arg)('id')),
|
|
48
|
-
__param(1, (0, type_graphql_1.Ctx)()),
|
|
49
|
-
__metadata("design:type", Function),
|
|
50
|
-
__metadata("design:paramtypes", [String, Object]),
|
|
51
|
-
__metadata("design:returntype", Promise)
|
|
34
|
+
tslib_1.__param(0, (0, type_graphql_1.Arg)('id')),
|
|
35
|
+
tslib_1.__param(1, (0, type_graphql_1.Ctx)()),
|
|
36
|
+
tslib_1.__metadata("design:type", Function),
|
|
37
|
+
tslib_1.__metadata("design:paramtypes", [String, Object]),
|
|
38
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
52
39
|
], GeoStateQuery.prototype, "geoState", null);
|
|
53
|
-
__decorate([
|
|
40
|
+
tslib_1.__decorate([
|
|
54
41
|
(0, type_graphql_1.Query)(returns => geo_state_type_1.GeoStateList, { description: 'To fetch multiple GeoStates' }),
|
|
55
|
-
__param(0, (0, type_graphql_1.Args)()),
|
|
56
|
-
__param(1, (0, type_graphql_1.Ctx)()),
|
|
57
|
-
__metadata("design:type", Function),
|
|
58
|
-
__metadata("design:paramtypes", [
|
|
59
|
-
__metadata("design:returntype", Promise)
|
|
42
|
+
tslib_1.__param(0, (0, type_graphql_1.Args)()),
|
|
43
|
+
tslib_1.__param(1, (0, type_graphql_1.Ctx)()),
|
|
44
|
+
tslib_1.__metadata("design:type", Function),
|
|
45
|
+
tslib_1.__metadata("design:paramtypes", [shell_1.ListParam, Object]),
|
|
46
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
60
47
|
], GeoStateQuery.prototype, "geoStates", null);
|
|
61
|
-
__decorate([
|
|
48
|
+
tslib_1.__decorate([
|
|
62
49
|
(0, type_graphql_1.FieldResolver)(type => geo_country_1.GeoCountry),
|
|
63
|
-
__param(0, (0, type_graphql_1.Root)()),
|
|
64
|
-
__metadata("design:type", Function),
|
|
65
|
-
__metadata("design:paramtypes", [geo_state_1.GeoState]),
|
|
66
|
-
__metadata("design:returntype", Promise)
|
|
50
|
+
tslib_1.__param(0, (0, type_graphql_1.Root)()),
|
|
51
|
+
tslib_1.__metadata("design:type", Function),
|
|
52
|
+
tslib_1.__metadata("design:paramtypes", [geo_state_1.GeoState]),
|
|
53
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
67
54
|
], GeoStateQuery.prototype, "geoCountry", null);
|
|
68
|
-
__decorate([
|
|
55
|
+
tslib_1.__decorate([
|
|
69
56
|
(0, type_graphql_1.FieldResolver)(type => auth_base_1.User),
|
|
70
|
-
__param(0, (0, type_graphql_1.Root)()),
|
|
71
|
-
__metadata("design:type", Function),
|
|
72
|
-
__metadata("design:paramtypes", [geo_state_1.GeoState]),
|
|
73
|
-
__metadata("design:returntype", Promise)
|
|
57
|
+
tslib_1.__param(0, (0, type_graphql_1.Root)()),
|
|
58
|
+
tslib_1.__metadata("design:type", Function),
|
|
59
|
+
tslib_1.__metadata("design:paramtypes", [geo_state_1.GeoState]),
|
|
60
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
74
61
|
], GeoStateQuery.prototype, "updater", null);
|
|
75
|
-
__decorate([
|
|
62
|
+
tslib_1.__decorate([
|
|
76
63
|
(0, type_graphql_1.FieldResolver)(type => auth_base_1.User),
|
|
77
|
-
__param(0, (0, type_graphql_1.Root)()),
|
|
78
|
-
__metadata("design:type", Function),
|
|
79
|
-
__metadata("design:paramtypes", [geo_state_1.GeoState]),
|
|
80
|
-
__metadata("design:returntype", Promise)
|
|
64
|
+
tslib_1.__param(0, (0, type_graphql_1.Root)()),
|
|
65
|
+
tslib_1.__metadata("design:type", Function),
|
|
66
|
+
tslib_1.__metadata("design:paramtypes", [geo_state_1.GeoState]),
|
|
67
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
81
68
|
], GeoStateQuery.prototype, "creator", null);
|
|
82
|
-
GeoStateQuery = __decorate([
|
|
69
|
+
GeoStateQuery = tslib_1.__decorate([
|
|
83
70
|
(0, type_graphql_1.Resolver)(geo_state_1.GeoState)
|
|
84
71
|
], GeoStateQuery);
|
|
85
72
|
exports.GeoStateQuery = GeoStateQuery;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"geo-state-query.js","sourceRoot":"","sources":["../../../server/service/geo-state/geo-state-query.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"geo-state-query.js","sourceRoot":"","sources":["../../../server/service/geo-state/geo-state-query.ts"],"names":[],"mappings":";;;;AAAA,+CAAmF;AAEnF,yDAAgD;AAChD,iDAAmF;AAEnF,4DAAuD;AACvD,2CAAsC;AACtC,qDAA+C;AAG/C,IAAa,aAAa,GAA1B,MAAa,aAAa;IAExB,KAAK,CAAC,QAAQ,CAAY,EAAU,EAAS,OAAwB;QACnE,OAAO,MAAM,IAAA,qBAAa,EAAC,oBAAQ,CAAC,CAAC,OAAO,CAAC;YAC3C,KAAK,EAAE,EAAE,EAAE,EAAE;SACd,CAAC,CAAA;IACJ,CAAC;IAGD,KAAK,CAAC,SAAS,CAAS,MAAiB,EAAS,OAAwB;QACxE,MAAM,eAAe,GAAG,IAAA,yBAAiB,EAAC,MAAM,CAAC,CAAA;QACjD,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,GAAG,MAAM,IAAA,qBAAa,EAAC,oBAAQ,CAAC,CAAC,YAAY,CAAC,eAAe,CAAC,CAAA;QAElF,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAA;IACzB,CAAC;IAGD,KAAK,CAAC,UAAU,CAAS,QAAkB;QACzC,OAAO,MAAM,IAAA,qBAAa,EAAC,wBAAU,CAAC,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,QAAQ,CAAC,YAAY,EAAE,CAAC,CAAA;IACjF,CAAC;IAGD,KAAK,CAAC,OAAO,CAAS,QAAkB;QACtC,OAAO,MAAM,IAAA,qBAAa,EAAC,gBAAI,CAAC,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,QAAQ,CAAC,SAAS,EAAE,CAAC,CAAA;IACxE,CAAC;IAGD,KAAK,CAAC,OAAO,CAAS,QAAkB;QACtC,OAAO,MAAM,IAAA,qBAAa,EAAC,gBAAI,CAAC,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,QAAQ,CAAC,SAAS,EAAE,CAAC,CAAA;IACxE,CAAC;CACF,CAAA;AA5BC;IADC,IAAA,oBAAK,EAAC,OAAO,CAAC,EAAE,CAAC,oBAAQ,EAAE,EAAE,WAAW,EAAE,qBAAqB,EAAE,CAAC;IACnD,mBAAA,IAAA,kBAAG,EAAC,IAAI,CAAC,CAAA;IAAc,mBAAA,IAAA,kBAAG,GAAE,CAAA;;;;6CAI3C;AAGD;IADC,IAAA,oBAAK,EAAC,OAAO,CAAC,EAAE,CAAC,6BAAY,EAAE,EAAE,WAAW,EAAE,6BAA6B,EAAE,CAAC;IAC9D,mBAAA,IAAA,mBAAI,GAAE,CAAA;IAAqB,mBAAA,IAAA,kBAAG,GAAE,CAAA;;6CAAjB,iBAAS;;8CAKxC;AAGD;IADC,IAAA,4BAAa,EAAC,IAAI,CAAC,EAAE,CAAC,wBAAU,CAAC;IAChB,mBAAA,IAAA,mBAAI,GAAE,CAAA;;6CAAW,oBAAQ;;+CAE1C;AAGD;IADC,IAAA,4BAAa,EAAC,IAAI,CAAC,EAAE,CAAC,gBAAI,CAAC;IACb,mBAAA,IAAA,mBAAI,GAAE,CAAA;;6CAAW,oBAAQ;;4CAEvC;AAGD;IADC,IAAA,4BAAa,EAAC,IAAI,CAAC,EAAE,CAAC,gBAAI,CAAC;IACb,mBAAA,IAAA,mBAAI,GAAE,CAAA;;6CAAW,oBAAQ;;4CAEvC;AA7BU,aAAa;IADzB,IAAA,uBAAQ,EAAC,oBAAQ,CAAC;GACN,aAAa,CA8BzB;AA9BY,sCAAa","sourcesContent":["import { Arg, Args, Ctx, FieldResolver, Query, Resolver, Root } from 'type-graphql'\n\nimport { User } from '@things-factory/auth-base'\nimport { convertListParams, getRepository, ListParam } from '@things-factory/shell'\n\nimport { GeoCountry } from '../geo-country/geo-country'\nimport { GeoState } from './geo-state'\nimport { GeoStateList } from './geo-state-type'\n\n@Resolver(GeoState)\nexport class GeoStateQuery {\n @Query(returns => GeoState, { description: 'To fetch a GeoState' })\n async geoState(@Arg('id') id: string, @Ctx() context: ResolverContext): Promise<GeoState> {\n return await getRepository(GeoState).findOne({\n where: { id }\n })\n }\n\n @Query(returns => GeoStateList, { description: 'To fetch multiple GeoStates' })\n async geoStates(@Args() params: ListParam, @Ctx() context: ResolverContext): Promise<GeoStateList> {\n const convertedParams = convertListParams(params)\n const [items, total] = await getRepository(GeoState).findAndCount(convertedParams)\n\n return { items, total }\n }\n\n @FieldResolver(type => GeoCountry)\n async geoCountry(@Root() geoState: GeoState): Promise<GeoCountry> {\n return await getRepository(GeoCountry).findOneBy({ id: geoState.geoCountryId })\n }\n\n @FieldResolver(type => User)\n async updater(@Root() geoState: GeoState): Promise<User> {\n return await getRepository(User).findOneBy({ id: geoState.updaterId })\n }\n\n @FieldResolver(type => User)\n async creator(@Root() geoState: GeoState): Promise<User> {\n return await getRepository(User).findOneBy({ id: geoState.creatorId })\n }\n}\n"]}
|
|
@@ -1,80 +1,72 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
3
|
exports.GeoStateList = exports.GeoStatePatch = exports.NewGeoState = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
13
5
|
const type_graphql_1 = require("type-graphql");
|
|
14
6
|
const geo_state_1 = require("./geo-state");
|
|
15
7
|
let NewGeoState = class NewGeoState {
|
|
16
8
|
};
|
|
17
|
-
__decorate([
|
|
9
|
+
tslib_1.__decorate([
|
|
18
10
|
(0, type_graphql_1.Field)(),
|
|
19
|
-
__metadata("design:type", String)
|
|
11
|
+
tslib_1.__metadata("design:type", String)
|
|
20
12
|
], NewGeoState.prototype, "name", void 0);
|
|
21
|
-
__decorate([
|
|
13
|
+
tslib_1.__decorate([
|
|
22
14
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
23
|
-
__metadata("design:type", String)
|
|
15
|
+
tslib_1.__metadata("design:type", String)
|
|
24
16
|
], NewGeoState.prototype, "description", void 0);
|
|
25
|
-
__decorate([
|
|
17
|
+
tslib_1.__decorate([
|
|
26
18
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
27
|
-
__metadata("design:type", String)
|
|
19
|
+
tslib_1.__metadata("design:type", String)
|
|
28
20
|
], NewGeoState.prototype, "latitude", void 0);
|
|
29
|
-
__decorate([
|
|
21
|
+
tslib_1.__decorate([
|
|
30
22
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
31
|
-
__metadata("design:type", String)
|
|
23
|
+
tslib_1.__metadata("design:type", String)
|
|
32
24
|
], NewGeoState.prototype, "longitude", void 0);
|
|
33
|
-
NewGeoState = __decorate([
|
|
25
|
+
NewGeoState = tslib_1.__decorate([
|
|
34
26
|
(0, type_graphql_1.InputType)()
|
|
35
27
|
], NewGeoState);
|
|
36
28
|
exports.NewGeoState = NewGeoState;
|
|
37
29
|
let GeoStatePatch = class GeoStatePatch {
|
|
38
30
|
};
|
|
39
|
-
__decorate([
|
|
31
|
+
tslib_1.__decorate([
|
|
40
32
|
(0, type_graphql_1.Field)(type => type_graphql_1.ID, { nullable: true }),
|
|
41
|
-
__metadata("design:type", String)
|
|
33
|
+
tslib_1.__metadata("design:type", String)
|
|
42
34
|
], GeoStatePatch.prototype, "id", void 0);
|
|
43
|
-
__decorate([
|
|
35
|
+
tslib_1.__decorate([
|
|
44
36
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
45
|
-
__metadata("design:type", String)
|
|
37
|
+
tslib_1.__metadata("design:type", String)
|
|
46
38
|
], GeoStatePatch.prototype, "name", void 0);
|
|
47
|
-
__decorate([
|
|
39
|
+
tslib_1.__decorate([
|
|
48
40
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
49
|
-
__metadata("design:type", String)
|
|
41
|
+
tslib_1.__metadata("design:type", String)
|
|
50
42
|
], GeoStatePatch.prototype, "description", void 0);
|
|
51
|
-
__decorate([
|
|
43
|
+
tslib_1.__decorate([
|
|
52
44
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
53
|
-
__metadata("design:type", String)
|
|
45
|
+
tslib_1.__metadata("design:type", String)
|
|
54
46
|
], GeoStatePatch.prototype, "latitude", void 0);
|
|
55
|
-
__decorate([
|
|
47
|
+
tslib_1.__decorate([
|
|
56
48
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
57
|
-
__metadata("design:type", String)
|
|
49
|
+
tslib_1.__metadata("design:type", String)
|
|
58
50
|
], GeoStatePatch.prototype, "longitude", void 0);
|
|
59
|
-
__decorate([
|
|
51
|
+
tslib_1.__decorate([
|
|
60
52
|
(0, type_graphql_1.Field)(),
|
|
61
|
-
__metadata("design:type", String)
|
|
53
|
+
tslib_1.__metadata("design:type", String)
|
|
62
54
|
], GeoStatePatch.prototype, "cuFlag", void 0);
|
|
63
|
-
GeoStatePatch = __decorate([
|
|
55
|
+
GeoStatePatch = tslib_1.__decorate([
|
|
64
56
|
(0, type_graphql_1.InputType)()
|
|
65
57
|
], GeoStatePatch);
|
|
66
58
|
exports.GeoStatePatch = GeoStatePatch;
|
|
67
59
|
let GeoStateList = class GeoStateList {
|
|
68
60
|
};
|
|
69
|
-
__decorate([
|
|
61
|
+
tslib_1.__decorate([
|
|
70
62
|
(0, type_graphql_1.Field)(type => [geo_state_1.GeoState]),
|
|
71
|
-
__metadata("design:type", Array)
|
|
63
|
+
tslib_1.__metadata("design:type", Array)
|
|
72
64
|
], GeoStateList.prototype, "items", void 0);
|
|
73
|
-
__decorate([
|
|
65
|
+
tslib_1.__decorate([
|
|
74
66
|
(0, type_graphql_1.Field)(type => type_graphql_1.Int),
|
|
75
|
-
__metadata("design:type", Number)
|
|
67
|
+
tslib_1.__metadata("design:type", Number)
|
|
76
68
|
], GeoStateList.prototype, "total", void 0);
|
|
77
|
-
GeoStateList = __decorate([
|
|
69
|
+
GeoStateList = tslib_1.__decorate([
|
|
78
70
|
(0, type_graphql_1.ObjectType)()
|
|
79
71
|
], GeoStateList);
|
|
80
72
|
exports.GeoStateList = GeoStateList;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"geo-state-type.js","sourceRoot":"","sources":["../../../server/service/geo-state/geo-state-type.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"geo-state-type.js","sourceRoot":"","sources":["../../../server/service/geo-state/geo-state-type.ts"],"names":[],"mappings":";;;;AAAA,+CAAoE;AACpE,2CAAsC;AAGtC,IAAa,WAAW,GAAxB,MAAa,WAAW;CAYvB,CAAA;AAVC;IADC,IAAA,oBAAK,GAAE;;yCACI;AAGZ;IADC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACN;AAGpB;IADC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACT;AAGjB;IADC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CACR;AAXP,WAAW;IADvB,IAAA,wBAAS,GAAE;GACC,WAAW,CAYvB;AAZY,kCAAW;AAexB,IAAa,aAAa,GAA1B,MAAa,aAAa;CAkBzB,CAAA;AAhBC;IADC,IAAA,oBAAK,EAAC,IAAI,CAAC,EAAE,CAAC,iBAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yCAC3B;AAGX;IADC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACb;AAGb;IADC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDACN;AAGpB;IADC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACT;AAGjB;IADC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACR;AAGlB;IADC,IAAA,oBAAK,GAAE;;6CACM;AAjBH,aAAa;IADzB,IAAA,wBAAS,GAAE;GACC,aAAa,CAkBzB;AAlBY,sCAAa;AAqB1B,IAAa,YAAY,GAAzB,MAAa,YAAY;CAMxB,CAAA;AAJC;IADC,IAAA,oBAAK,EAAC,IAAI,CAAC,EAAE,CAAC,CAAC,oBAAQ,CAAC,CAAC;;2CACT;AAGjB;IADC,IAAA,oBAAK,EAAC,IAAI,CAAC,EAAE,CAAC,kBAAG,CAAC;;2CACN;AALF,YAAY;IADxB,IAAA,yBAAU,GAAE;GACA,YAAY,CAMxB;AANY,oCAAY","sourcesContent":["import { Field, ID, InputType, Int, ObjectType } from 'type-graphql'\nimport { GeoState } from './geo-state'\n\n@InputType()\nexport class NewGeoState {\n @Field()\n name: string\n\n @Field({ nullable: true })\n description?: string\n\n @Field({ nullable: true })\n latitude?: string\n\n @Field({ nullable: true })\n longitude?: string\n}\n\n@InputType()\nexport class GeoStatePatch {\n @Field(type => ID, { nullable: true })\n id?: string\n\n @Field({ nullable: true })\n name?: string\n\n @Field({ nullable: true })\n description?: string\n\n @Field({ nullable: true })\n latitude?: string\n\n @Field({ nullable: true })\n longitude?: string\n\n @Field()\n cuFlag: string\n}\n\n@ObjectType()\nexport class GeoStateList {\n @Field(type => [GeoState])\n items: GeoState[]\n\n @Field(type => Int)\n total: number\n}\n"]}
|
|
@@ -1,91 +1,82 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var _a, _b;
|
|
12
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
3
|
exports.GeoState = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
14
5
|
const auth_base_1 = require("@things-factory/auth-base");
|
|
15
6
|
const type_graphql_1 = require("type-graphql");
|
|
16
7
|
const typeorm_1 = require("typeorm");
|
|
17
8
|
const geo_country_1 = require("../geo-country/geo-country");
|
|
18
9
|
let GeoState = class GeoState {
|
|
19
10
|
};
|
|
20
|
-
__decorate([
|
|
11
|
+
tslib_1.__decorate([
|
|
21
12
|
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
22
13
|
(0, type_graphql_1.Field)(type => type_graphql_1.ID),
|
|
23
|
-
__metadata("design:type", String)
|
|
14
|
+
tslib_1.__metadata("design:type", String)
|
|
24
15
|
], GeoState.prototype, "id", void 0);
|
|
25
|
-
__decorate([
|
|
16
|
+
tslib_1.__decorate([
|
|
26
17
|
(0, typeorm_1.ManyToOne)(type => geo_country_1.GeoCountry),
|
|
27
18
|
(0, type_graphql_1.Field)(),
|
|
28
|
-
__metadata("design:type", geo_country_1.GeoCountry)
|
|
19
|
+
tslib_1.__metadata("design:type", geo_country_1.GeoCountry)
|
|
29
20
|
], GeoState.prototype, "geoCountry", void 0);
|
|
30
|
-
__decorate([
|
|
21
|
+
tslib_1.__decorate([
|
|
31
22
|
(0, typeorm_1.RelationId)((geoState) => geoState.geoCountry),
|
|
32
|
-
__metadata("design:type", String)
|
|
23
|
+
tslib_1.__metadata("design:type", String)
|
|
33
24
|
], GeoState.prototype, "geoCountryId", void 0);
|
|
34
|
-
__decorate([
|
|
25
|
+
tslib_1.__decorate([
|
|
35
26
|
(0, typeorm_1.Column)(),
|
|
36
27
|
(0, type_graphql_1.Field)(),
|
|
37
|
-
__metadata("design:type", String)
|
|
28
|
+
tslib_1.__metadata("design:type", String)
|
|
38
29
|
], GeoState.prototype, "name", void 0);
|
|
39
|
-
__decorate([
|
|
30
|
+
tslib_1.__decorate([
|
|
40
31
|
(0, typeorm_1.Column)({
|
|
41
32
|
nullable: true
|
|
42
33
|
}),
|
|
43
34
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
44
|
-
__metadata("design:type", String)
|
|
35
|
+
tslib_1.__metadata("design:type", String)
|
|
45
36
|
], GeoState.prototype, "description", void 0);
|
|
46
|
-
__decorate([
|
|
37
|
+
tslib_1.__decorate([
|
|
47
38
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
48
39
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
49
|
-
__metadata("design:type", String)
|
|
40
|
+
tslib_1.__metadata("design:type", String)
|
|
50
41
|
], GeoState.prototype, "latitude", void 0);
|
|
51
|
-
__decorate([
|
|
42
|
+
tslib_1.__decorate([
|
|
52
43
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
53
44
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
54
|
-
__metadata("design:type", String)
|
|
45
|
+
tslib_1.__metadata("design:type", String)
|
|
55
46
|
], GeoState.prototype, "longitude", void 0);
|
|
56
|
-
__decorate([
|
|
47
|
+
tslib_1.__decorate([
|
|
57
48
|
(0, typeorm_1.CreateDateColumn)(),
|
|
58
49
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
59
|
-
__metadata("design:type", Date)
|
|
50
|
+
tslib_1.__metadata("design:type", Date)
|
|
60
51
|
], GeoState.prototype, "createdAt", void 0);
|
|
61
|
-
__decorate([
|
|
52
|
+
tslib_1.__decorate([
|
|
62
53
|
(0, typeorm_1.UpdateDateColumn)(),
|
|
63
54
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
64
|
-
__metadata("design:type", Date)
|
|
55
|
+
tslib_1.__metadata("design:type", Date)
|
|
65
56
|
], GeoState.prototype, "updatedAt", void 0);
|
|
66
|
-
__decorate([
|
|
57
|
+
tslib_1.__decorate([
|
|
67
58
|
(0, typeorm_1.ManyToOne)(type => auth_base_1.User, {
|
|
68
59
|
nullable: true
|
|
69
60
|
}),
|
|
70
61
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
71
|
-
__metadata("design:type",
|
|
62
|
+
tslib_1.__metadata("design:type", auth_base_1.User)
|
|
72
63
|
], GeoState.prototype, "creator", void 0);
|
|
73
|
-
__decorate([
|
|
64
|
+
tslib_1.__decorate([
|
|
74
65
|
(0, typeorm_1.RelationId)((geoState) => geoState.creator),
|
|
75
|
-
__metadata("design:type", String)
|
|
66
|
+
tslib_1.__metadata("design:type", String)
|
|
76
67
|
], GeoState.prototype, "creatorId", void 0);
|
|
77
|
-
__decorate([
|
|
68
|
+
tslib_1.__decorate([
|
|
78
69
|
(0, typeorm_1.ManyToOne)(type => auth_base_1.User, {
|
|
79
70
|
nullable: true
|
|
80
71
|
}),
|
|
81
72
|
(0, type_graphql_1.Field)({ nullable: true }),
|
|
82
|
-
__metadata("design:type",
|
|
73
|
+
tslib_1.__metadata("design:type", auth_base_1.User)
|
|
83
74
|
], GeoState.prototype, "updater", void 0);
|
|
84
|
-
__decorate([
|
|
75
|
+
tslib_1.__decorate([
|
|
85
76
|
(0, typeorm_1.RelationId)((geoState) => geoState.creator),
|
|
86
|
-
__metadata("design:type", String)
|
|
77
|
+
tslib_1.__metadata("design:type", String)
|
|
87
78
|
], GeoState.prototype, "updaterId", void 0);
|
|
88
|
-
GeoState = __decorate([
|
|
79
|
+
GeoState = tslib_1.__decorate([
|
|
89
80
|
(0, typeorm_1.Entity)(),
|
|
90
81
|
(0, typeorm_1.Index)('ix_geo_state_0', (geoState) => [geoState.geoCountry, geoState.name], { unique: true }),
|
|
91
82
|
(0, type_graphql_1.ObjectType)({ description: 'Entity for GeoState' })
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"geo-state.js","sourceRoot":"","sources":["../../../server/service/geo-state/geo-state.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"geo-state.js","sourceRoot":"","sources":["../../../server/service/geo-state/geo-state.ts"],"names":[],"mappings":";;;;AAAA,yDAAgD;AAChD,+CAAoD;AACpD,qCASgB;AAChB,4DAAuD;AAKvD,IAAa,QAAQ,GAArB,MAAa,QAAQ;CAuDpB,CAAA;AApDC;IAFC,IAAA,gCAAsB,EAAC,MAAM,CAAC;IAC9B,IAAA,oBAAK,EAAC,IAAI,CAAC,EAAE,CAAC,iBAAE,CAAC;;oCACC;AAInB;IAFC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,wBAAU,CAAC;IAC7B,IAAA,oBAAK,GAAE;sCACI,wBAAU;4CAAA;AAGtB;IADC,IAAA,oBAAU,EAAC,CAAC,QAAkB,EAAE,EAAE,CAAC,QAAQ,CAAC,UAAU,CAAC;;8CACpC;AAIpB;IAFC,IAAA,gBAAM,GAAE;IACR,IAAA,oBAAK,GAAE;;sCACI;AAMZ;IAJC,IAAA,gBAAM,EAAC;QACN,QAAQ,EAAE,IAAI;KACf,CAAC;IACD,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACN;AAIpB;IAFC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC1B,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CACT;AAIjB;IAFC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC1B,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACR;AAIlB;IAFC,IAAA,0BAAgB,GAAE;IAClB,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;sCACd,IAAI;2CAAA;AAIhB;IAFC,IAAA,0BAAgB,GAAE;IAClB,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;sCACd,IAAI;2CAAA;AAMhB;IAJC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,gBAAI,EAAE;QACvB,QAAQ,EAAE,IAAI;KACf,CAAC;IACD,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;sCAChB,gBAAI;yCAAA;AAGd;IADC,IAAA,oBAAU,EAAC,CAAC,QAAkB,EAAE,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC;;2CACnC;AAMlB;IAJC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,gBAAI,EAAE;QACvB,QAAQ,EAAE,IAAI;KACf,CAAC;IACD,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;sCAChB,gBAAI;yCAAA;AAGd;IADC,IAAA,oBAAU,EAAC,CAAC,QAAkB,EAAE,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC;;2CACnC;AAtDP,QAAQ;IAHpB,IAAA,gBAAM,GAAE;IACR,IAAA,eAAK,EAAC,gBAAgB,EAAE,CAAC,QAAkB,EAAE,EAAE,CAAC,CAAC,QAAQ,CAAC,UAAU,EAAE,QAAQ,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;IACvG,IAAA,yBAAU,EAAC,EAAE,WAAW,EAAE,qBAAqB,EAAE,CAAC;GACtC,QAAQ,CAuDpB;AAvDY,4BAAQ","sourcesContent":["import { User } from '@things-factory/auth-base'\nimport { Field, ID, ObjectType } from 'type-graphql'\nimport {\n Column,\n CreateDateColumn,\n Entity,\n Index,\n ManyToOne,\n PrimaryGeneratedColumn,\n RelationId,\n UpdateDateColumn\n} from 'typeorm'\nimport { GeoCountry } from '../geo-country/geo-country'\n\n@Entity()\n@Index('ix_geo_state_0', (geoState: GeoState) => [geoState.geoCountry, geoState.name], { unique: true })\n@ObjectType({ description: 'Entity for GeoState' })\nexport class GeoState {\n @PrimaryGeneratedColumn('uuid')\n @Field(type => ID)\n readonly id: string\n\n @ManyToOne(type => GeoCountry)\n @Field()\n geoCountry: GeoCountry\n\n @RelationId((geoState: GeoState) => geoState.geoCountry)\n geoCountryId: string\n\n @Column()\n @Field()\n name: string\n\n @Column({\n nullable: true\n })\n @Field({ nullable: true })\n description?: string\n\n @Column({ nullable: true })\n @Field({ nullable: true })\n latitude?: string\n\n @Column({ nullable: true })\n @Field({ nullable: true })\n longitude?: string\n\n @CreateDateColumn()\n @Field({ nullable: true })\n createdAt?: Date\n\n @UpdateDateColumn()\n @Field({ nullable: true })\n updatedAt?: Date\n\n @ManyToOne(type => User, {\n nullable: true\n })\n @Field({ nullable: true })\n creator?: User\n\n @RelationId((geoState: GeoState) => geoState.creator)\n creatorId?: string\n\n @ManyToOne(type => User, {\n nullable: true\n })\n @Field({ nullable: true })\n updater?: User\n\n @RelationId((geoState: GeoState) => geoState.creator)\n updaterId?: string\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../server/service/geo-state/index.ts"],"names":[],"mappings":";;;AAAA,2CAAsC;AACtC,uDAAiD;AACjD,6DAAuD;AAE1C,QAAA,QAAQ,GAAG,CAAC,oBAAQ,CAAC,CAAA;AACrB,QAAA,SAAS,GAAG,CAAC,+BAAa,EAAE,qCAAgB,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../server/service/geo-state/index.ts"],"names":[],"mappings":";;;AAAA,2CAAsC;AACtC,uDAAiD;AACjD,6DAAuD;AAE1C,QAAA,QAAQ,GAAG,CAAC,oBAAQ,CAAC,CAAA;AACrB,QAAA,SAAS,GAAG,CAAC,+BAAa,EAAE,qCAAgB,CAAC,CAAA","sourcesContent":["import { GeoState } from './geo-state'\nimport { GeoStateQuery } from './geo-state-query'\nimport { GeoStateMutation } from './geo-state-mutation'\n\nexport const entities = [GeoState]\nexport const resolvers = [GeoStateQuery, GeoStateMutation]\n"]}
|
|
@@ -1,26 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
3
|
exports.schema = exports.entities = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
18
5
|
/* EXPORT ENTITY TYPES */
|
|
19
|
-
__exportStar(require("./geo-area/geo-area"), exports);
|
|
20
|
-
__exportStar(require("./geo-city/geo-city"), exports);
|
|
21
|
-
__exportStar(require("./geo-state/geo-state"), exports);
|
|
22
|
-
__exportStar(require("./geo-country/geo-country"), exports);
|
|
23
|
-
__exportStar(require("./geo-continent/geo-continent"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./geo-area/geo-area"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./geo-city/geo-city"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./geo-state/geo-state"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./geo-country/geo-country"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./geo-continent/geo-continent"), exports);
|
|
24
11
|
/* IMPORT ENTITIES AND RESOLVERS */
|
|
25
12
|
const geo_area_1 = require("./geo-area");
|
|
26
13
|
const geo_city_1 = require("./geo-city");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/service/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/service/index.ts"],"names":[],"mappings":";;;;AAAA,yBAAyB;AACzB,8DAAmC;AACnC,8DAAmC;AACnC,gEAAqC;AACrC,oEAAyC;AACzC,wEAA6C;AAE7C,mCAAmC;AACnC,yCAAuF;AACvF,yCAAuF;AACvF,2CAA0F;AAC1F,+CAAgG;AAChG,mDAAsG;AAEzF,QAAA,QAAQ,GAAG;IACtB,cAAc;IACd,GAAG,mBAAe;IAClB,GAAG,mBAAe;IAClB,GAAG,oBAAgB;IACnB,GAAG,sBAAkB;IACrB,GAAG,wBAAoB;CACxB,CAAA;AAEY,QAAA,MAAM,GAAG;IACpB,eAAe,EAAE;QACf,sBAAsB;QACtB,GAAG,oBAAgB;QACnB,GAAG,oBAAgB;QACnB,GAAG,qBAAiB;QACpB,GAAG,uBAAmB;QACtB,GAAG,yBAAqB;KACzB;CACF,CAAA","sourcesContent":["/* EXPORT ENTITY TYPES */\nexport * from './geo-area/geo-area'\nexport * from './geo-city/geo-city'\nexport * from './geo-state/geo-state'\nexport * from './geo-country/geo-country'\nexport * from './geo-continent/geo-continent'\n\n/* IMPORT ENTITIES AND RESOLVERS */\nimport { entities as GeoAreaEntities, resolvers as GeoAreaResolvers } from './geo-area'\nimport { entities as GeoCityEntities, resolvers as GeoCityResolvers } from './geo-city'\nimport { entities as GeoStateEntities, resolvers as GeoStateResolvers } from './geo-state'\nimport { entities as GeoCountryEntities, resolvers as GeoCountryResolvers } from './geo-country'\nimport { entities as GeoContinentEntities, resolvers as GeoContinentResolvers } from './geo-continent'\n\nexport const entities = [\n /* ENTITIES */\n ...GeoAreaEntities,\n ...GeoCityEntities,\n ...GeoStateEntities,\n ...GeoCountryEntities,\n ...GeoContinentEntities\n]\n\nexport const schema = {\n resolverClasses: [\n /* RESOLVER CLASSES */\n ...GeoAreaResolvers,\n ...GeoCityResolvers,\n ...GeoStateResolvers,\n ...GeoCountryResolvers,\n ...GeoContinentResolvers\n ]\n}\n"]}
|