feat: v1.0.0

This commit is contained in:
Sergey Shehovcov 2024-07-05 11:37:03 +03:00
parent 6b5f233599
commit 0271933e11
13 changed files with 44 additions and 8 deletions

View File

@ -1,7 +1,8 @@
// Type definitions for crypto-pro-js-m 0.1.3 // Type definitions for crypto-pro-js-m 1.0.0
// Project: crypto-pro-js-m // Project: crypto-pro-js-m
// Definitions by: Serge Schekhovtsov https://github.com/schekhovtsov // Definitions by: Serge Schekhovtsov https://github.com/schekhovtsov
export as namespace cryptoPro; export as namespace cryptoPro;
export * from './api'; export * from './api';
export * from './helpers';

View File

@ -4768,6 +4768,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
}; };
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(__webpack_require__(/*! ./api */ "./api/index.ts"), exports); __exportStar(__webpack_require__(/*! ./api */ "./api/index.ts"), exports);
__exportStar(__webpack_require__(/*! ./helpers */ "./helpers/index.ts"), exports);
/***/ }), /***/ }),
@ -5359,6 +5360,20 @@ exports.getSignType = function (cadesplugin, signType) {
}; };
/***/ }),
/***/ "./helpers/index.ts":
/*!**************************!*\
!*** ./helpers/index.ts ***!
\**************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/***/ }), /***/ }),
/***/ "./vendor/cadesplugin_api.js": /***/ "./vendor/cadesplugin_api.js":

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1
dist/helpers/index.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export { SignType } from './getSignType';

View File

@ -1,5 +1,6 @@
// Type definitions for crypto-pro-js-m 0.1.3 // Type definitions for crypto-pro-js-m 1.0.0
// Project: crypto-pro-js-m // Project: crypto-pro-js-m
// Definitions by: Serge Schekhovtsov https://github.com/schekhovtsov // Definitions by: Serge Schekhovtsov https://github.com/schekhovtsov
export * from './api'; export * from './api';
export * from './helpers';

View File

@ -4267,6 +4267,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
}; };
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(__webpack_require__(/*! ./api */ "./api/index.ts"), exports); __exportStar(__webpack_require__(/*! ./api */ "./api/index.ts"), exports);
__exportStar(__webpack_require__(/*! ./helpers */ "./helpers/index.ts"), exports);
/***/ }), /***/ }),
@ -4773,6 +4774,20 @@ exports.getSignType = (cadesplugin, signType) => {
}; };
/***/ }),
/***/ "./helpers/index.ts":
/*!**************************!*\
!*** ./helpers/index.ts ***!
\**************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/***/ }), /***/ }),
/***/ "./vendor/cadesplugin_api.js": /***/ "./vendor/cadesplugin_api.js":

File diff suppressed because one or more lines are too long

1
lib/helpers/index.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export { SignType } from './getSignType';

View File

@ -1,6 +1,6 @@
{ {
"name": "crypto-pro-js-m", "name": "crypto-pro-js-m",
"version": "0.1.5", "version": "1.0.0",
"description": "Асинхронный JavaScript API для работы с КриптоПРО ЭЦП Browser Plug-In. Forked from https://github.com/crypto-pro-web/crypto-pro-js", "description": "Асинхронный JavaScript API для работы с КриптоПРО ЭЦП Browser Plug-In. Forked from https://github.com/crypto-pro-web/crypto-pro-js",
"main": "./lib/crypto-pro-js-m.js", "main": "./lib/crypto-pro-js-m.js",
"types": "./lib/crypto-pro-js-m.d.ts", "types": "./lib/crypto-pro-js-m.d.ts",

View File

@ -1 +1,2 @@
export * from './api'; export * from './api';
export * from './helpers';

1
src/helpers/index.ts Normal file
View File

@ -0,0 +1 @@
export { SignType } from './getSignType';