@be-link/tfs-cli-nodejs 0.0.121 → 0.0.123
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/index.d.ts +2 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/tfs/modules/insuranceRecord/service.d.ts +1 -0
- package/tfs/modules/insuranceRecord/service.js +3 -0
- package/tfs/modules/insuranceRecord/service.js.map +1 -1
- package/tfs/modules/insuranceRecord/type.d.ts +1 -0
package/index.d.ts
CHANGED
|
@@ -11,5 +11,6 @@ import jobService from './tfs/modules/job/service';
|
|
|
11
11
|
import tradeOrderCouponCodeService from './tfs/modules/tradeOrderCouponCode/service';
|
|
12
12
|
import groupBookingService from './tfs/modules/groupBooking/service';
|
|
13
13
|
import fulfillInfoService from './tfs/modules/fulfillInfo/service';
|
|
14
|
+
import insuranceRecordService from './tfs/modules/insuranceRecord/service';
|
|
14
15
|
/** 业务模块 */
|
|
15
|
-
export { BizError, rescheduleService, tourTeamService, tourGroupService, tourismInfoService, itineraryService, departureGroupService, departureGroupSearchService, contractService, jobService, tradeOrderCouponCodeService, groupBookingService, fulfillInfoService };
|
|
16
|
+
export { BizError, rescheduleService, tourTeamService, tourGroupService, tourismInfoService, itineraryService, departureGroupService, departureGroupSearchService, contractService, jobService, tradeOrderCouponCodeService, groupBookingService, fulfillInfoService, insuranceRecordService };
|
package/index.js
CHANGED
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.fulfillInfoService = exports.groupBookingService = exports.tradeOrderCouponCodeService = exports.jobService = exports.contractService = exports.departureGroupSearchService = exports.departureGroupService = exports.itineraryService = exports.tourismInfoService = exports.tourGroupService = exports.tourTeamService = exports.rescheduleService = exports.BizError = void 0;
|
|
6
|
+
exports.insuranceRecordService = exports.fulfillInfoService = exports.groupBookingService = exports.tradeOrderCouponCodeService = exports.jobService = exports.contractService = exports.departureGroupSearchService = exports.departureGroupService = exports.itineraryService = exports.tourismInfoService = exports.tourGroupService = exports.tourTeamService = exports.rescheduleService = exports.BizError = void 0;
|
|
7
7
|
const BizError_1 = __importDefault(require("./errors/BizError"));
|
|
8
8
|
exports.BizError = BizError_1.default;
|
|
9
9
|
const service_1 = __importDefault(require("./tfs/modules/reschedule/service"));
|
|
@@ -30,4 +30,6 @@ const service_11 = __importDefault(require("./tfs/modules/groupBooking/service")
|
|
|
30
30
|
exports.groupBookingService = service_11.default;
|
|
31
31
|
const service_12 = __importDefault(require("./tfs/modules/fulfillInfo/service"));
|
|
32
32
|
exports.fulfillInfoService = service_12.default;
|
|
33
|
+
const service_13 = __importDefault(require("./tfs/modules/insuranceRecord/service"));
|
|
34
|
+
exports.insuranceRecordService = service_13.default;
|
|
33
35
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,iEAAwC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,iEAAwC;AAiBtC,mBAjBK,kBAAQ,CAiBL;AAhBV,+EAAgE;AAiB9D,4BAjBK,iBAAiB,CAiBL;AAhBnB,6EAA4D;AAiB1D,0BAjBK,iBAAe,CAiBL;AAhBjB,8EAA8D;AAiB5D,2BAjBK,iBAAgB,CAiBL;AAhBlB,gFAAkE;AAiBhE,6BAjBK,iBAAkB,CAiBL;AAhBpB,8EAA8D;AAiB5D,2BAjBK,iBAAgB,CAiBL;AAhBlB,mFAAwE;AAiBtE,gCAjBK,iBAAqB,CAiBL;AAhBvB,6FAAwF;AAiBtF,sCAjBK,iBAA2B,CAiBL;AAhB7B,6EAA4D;AAiB1D,0BAjBK,iBAAe,CAiBL;AAhBjB,wEAAkD;AAiBhD,qBAjBK,iBAAU,CAiBL;AAhBZ,0FAAoF;AAiBlF,sCAjBK,kBAA2B,CAiBL;AAhB7B,kFAAoE;AAiBlE,8BAjBK,kBAAmB,CAiBL;AAhBrB,iFAAkE;AAiBhE,6BAjBK,kBAAkB,CAiBL;AAhBpB,qFAA0E;AAiBxE,iCAjBK,kBAAsB,CAiBL"}
|
package/package.json
CHANGED
|
@@ -3,6 +3,7 @@ import { InsuranceRecord } from './type';
|
|
|
3
3
|
declare class InsuranceRecordService extends BaseService implements InsuranceRecord.Controller {
|
|
4
4
|
protected prefixUrl: string;
|
|
5
5
|
partyAndFarmInsuranceRecordInit(request: InsuranceRecord.Request.IPartyAndFarmInsuranceInit): Promise<void>;
|
|
6
|
+
stockOrderInsuranceRecordInit(): Promise<void>;
|
|
6
7
|
}
|
|
7
8
|
declare const insuranceRecordService: InsuranceRecordService;
|
|
8
9
|
export default insuranceRecordService;
|
|
@@ -13,6 +13,9 @@ class InsuranceRecordService extends baseService_1.default {
|
|
|
13
13
|
partyAndFarmInsuranceRecordInit(request) {
|
|
14
14
|
return (0, http_1.callApi)(this.getApiUrl(this.partyAndFarmInsuranceRecordInit), request);
|
|
15
15
|
}
|
|
16
|
+
stockOrderInsuranceRecordInit() {
|
|
17
|
+
return (0, http_1.callApi)(this.getApiUrl(this.stockOrderInsuranceRecordInit));
|
|
18
|
+
}
|
|
16
19
|
}
|
|
17
20
|
const insuranceRecordService = new InsuranceRecordService();
|
|
18
21
|
exports.default = insuranceRecordService;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/tfs/modules/insuranceRecord/service.ts"],"names":[],"mappings":";;;;;AAAA,qCAAoC;AACpC,iEAAwC;AAGxC,MAAM,sBAAuB,SAAQ,qBAAW;IAAhD;;QACY,cAAS,GAAW,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/tfs/modules/insuranceRecord/service.ts"],"names":[],"mappings":";;;;;AAAA,qCAAoC;AACpC,iEAAwC;AAGxC,MAAM,sBAAuB,SAAQ,qBAAW;IAAhD;;QACY,cAAS,GAAW,mBAAmB,CAAA;IAQnD,CAAC;IANC,+BAA+B,CAAC,OAA2D;QACzF,OAAO,IAAA,cAAO,EAAgE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,+BAA+B,CAAC,EAAE,OAAO,CAAC,CAAA;IAC9I,CAAC;IACD,6BAA6B;QAC3B,OAAO,IAAA,cAAO,EAA8D,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,6BAA6B,CAAC,CAAC,CAAA;IACjI,CAAC;CACF;AAED,MAAM,sBAAsB,GAAG,IAAI,sBAAsB,EAAE,CAAA;AAE3D,kBAAe,sBAAsB,CAAA"}
|