@kiminix/tp-client 2.21.0 → 2.22.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/business/admin-apis.d.ts +8 -12
- package/dist/business/admin-apis.js +1 -11
- package/dist/notify/apis.d.ts +1 -2
- package/dist/notify/apis.js +5 -21
- package/package.json +1 -1
|
@@ -7,21 +7,17 @@ export declare class BusinessAdminAPIs {
|
|
|
7
7
|
* @returns
|
|
8
8
|
*/
|
|
9
9
|
static get(token?: string): Promise<Business>;
|
|
10
|
-
static subscription(props:
|
|
10
|
+
static subscription(props: BusinessAdminAPIs.SubscriptionRequest): Promise<any>;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace BusinessAdminAPIs {
|
|
13
|
+
interface SubscriptionRequest {
|
|
14
|
+
code: string;
|
|
11
15
|
name: string;
|
|
12
16
|
address: string;
|
|
17
|
+
phone: string;
|
|
13
18
|
firstName: string;
|
|
14
19
|
lastName: string;
|
|
15
|
-
phone: string;
|
|
16
20
|
email: string;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
day: string;
|
|
20
|
-
discount: string;
|
|
21
|
-
}[] | undefined;
|
|
22
|
-
openingHours?: {
|
|
23
|
-
from: string;
|
|
24
|
-
to: string;
|
|
25
|
-
}[] | undefined;
|
|
26
|
-
}): Promise<any>;
|
|
21
|
+
password: string;
|
|
22
|
+
}
|
|
27
23
|
}
|
|
@@ -71,17 +71,7 @@ var BusinessAdminAPIs = /** @class */ (function () {
|
|
|
71
71
|
return __awaiter(this, void 0, void 0, function () {
|
|
72
72
|
return __generator(this, function (_a) {
|
|
73
73
|
return [2 /*return*/, RequestUtils.send(function () {
|
|
74
|
-
return axios.post(base + "/business/subscriptions", {
|
|
75
|
-
name: props.name,
|
|
76
|
-
address: props.address,
|
|
77
|
-
firstName: props.firstName,
|
|
78
|
-
lastName: props.lastName,
|
|
79
|
-
phone: props.phone,
|
|
80
|
-
email: props.email,
|
|
81
|
-
message: props.message,
|
|
82
|
-
discounts: props.discounts,
|
|
83
|
-
openingHours: props.openingHours
|
|
84
|
-
}, {})
|
|
74
|
+
return axios.post(base + "/business/subscriptions", props, {})
|
|
85
75
|
.then(function (response) { return response.data; });
|
|
86
76
|
})];
|
|
87
77
|
});
|
package/dist/notify/apis.d.ts
CHANGED
package/dist/notify/apis.js
CHANGED
|
@@ -35,8 +35,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
import axios from "axios";
|
|
38
|
-
import { Left, Right } from "purify-ts";
|
|
39
38
|
import { base } from "../constants";
|
|
39
|
+
import { RequestUtils } from "../utils/request-utils";
|
|
40
40
|
// notify module APIs
|
|
41
41
|
var NotifyAPIs = /** @class */ (function () {
|
|
42
42
|
function NotifyAPIs() {
|
|
@@ -44,8 +44,8 @@ var NotifyAPIs = /** @class */ (function () {
|
|
|
44
44
|
NotifyAPIs.notify = function (recipient, context, metadata) {
|
|
45
45
|
return __awaiter(this, void 0, void 0, function () {
|
|
46
46
|
return __generator(this, function (_a) {
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
return [2 /*return*/, RequestUtils.send(function () {
|
|
48
|
+
return axios.post(base + "/notifications", {
|
|
49
49
|
recipient: recipient,
|
|
50
50
|
context: context,
|
|
51
51
|
metadata: metadata
|
|
@@ -54,24 +54,8 @@ var NotifyAPIs = /** @class */ (function () {
|
|
|
54
54
|
'Content-Type': 'application/json'
|
|
55
55
|
}
|
|
56
56
|
})
|
|
57
|
-
.then(function (response) {
|
|
58
|
-
|
|
59
|
-
})
|
|
60
|
-
.catch(function (error) {
|
|
61
|
-
if (error.response.status == 400) {
|
|
62
|
-
// we put in left side only expected errors:
|
|
63
|
-
// invalid_email_format
|
|
64
|
-
// invalid_phone_format
|
|
65
|
-
var response = error.response.data;
|
|
66
|
-
return (Left(Error(response.code)));
|
|
67
|
-
}
|
|
68
|
-
else
|
|
69
|
-
throw new Error('internal_error', error);
|
|
70
|
-
})];
|
|
71
|
-
case 1:
|
|
72
|
-
// Send the data to the server in JSON format.
|
|
73
|
-
return [2 /*return*/, _a.sent()];
|
|
74
|
-
}
|
|
57
|
+
.then(function (response) { return response.data; });
|
|
58
|
+
})];
|
|
75
59
|
});
|
|
76
60
|
});
|
|
77
61
|
};
|