@escapenavigator/services 1.4.41 → 1.4.42
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.
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getVerificationLink = void 0;
|
|
4
|
+
var getVerificationLink = function (cashboxId) { return ({
|
|
5
|
+
url: "/cashboxes/verification-link/".concat(cashboxId),
|
|
6
|
+
method: 'GET',
|
|
7
|
+
}); };
|
|
8
|
+
exports.getVerificationLink = getVerificationLink;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { create } from './create';
|
|
2
2
|
import { getOne } from './get-one';
|
|
3
|
+
import { getVerificationLink } from './get-verification-link';
|
|
3
4
|
import { query } from './query';
|
|
4
5
|
import { remove } from './remove';
|
|
5
6
|
import { update } from './update';
|
|
6
7
|
declare type ApiDeclaration = {
|
|
8
|
+
getVerificationLink: typeof getVerificationLink;
|
|
7
9
|
getOne: typeof getOne;
|
|
8
10
|
create: typeof create;
|
|
9
11
|
remove: typeof remove;
|
|
@@ -3,11 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.cashboxesApiDeclaration = void 0;
|
|
4
4
|
var create_1 = require("./create");
|
|
5
5
|
var get_one_1 = require("./get-one");
|
|
6
|
+
var get_verification_link_1 = require("./get-verification-link");
|
|
6
7
|
var query_1 = require("./query");
|
|
7
8
|
var remove_1 = require("./remove");
|
|
8
9
|
var update_1 = require("./update");
|
|
9
10
|
exports.cashboxesApiDeclaration = {
|
|
10
11
|
create: create_1.create,
|
|
12
|
+
getVerificationLink: get_verification_link_1.getVerificationLink,
|
|
11
13
|
remove: remove_1.remove,
|
|
12
14
|
query: query_1.query,
|
|
13
15
|
getOne: get_one_1.getOne,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escapenavigator/services",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.42",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "rm -rf dist && tsc --project tsconfig.json"
|
|
14
14
|
},
|
|
15
|
-
"gitHead": "
|
|
15
|
+
"gitHead": "a3974bc6bed2a9028ec1d168d6bd41c8cf68089a",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@escapenavigator/types": "^1.4.
|
|
17
|
+
"@escapenavigator/types": "^1.4.42",
|
|
18
18
|
"@paypal/react-paypal-js": "^7.8.3",
|
|
19
19
|
"axios": "^0.21.4",
|
|
20
20
|
"class-transformer": "^0.5.1",
|