@tillhub/javascript-sdk 4.155.0 → 4.156.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/CHANGELOG.md +13 -0
- package/dist/types/v1/appointment-reminder-templates.d.ts +39 -0
- package/dist/types/v1/appointment_reminders.d.ts +4 -4
- package/dist/types/v1/index.d.ts +2 -1
- package/dist/v1/appointment-reminder-templates.js +69 -0
- package/dist/v1/appointment-reminder-templates.js.map +1 -0
- package/dist/v1/appointment_reminders.js +4 -0
- package/dist/v1/appointment_reminders.js.map +1 -1
- package/dist/v1/index.js +3 -1
- package/dist/v1/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# [4.156.0](https://github.com/tillhub/tillhub-sdk-javascript/compare/v4.155.0...v4.156.0) (2024-10-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **appointment_reminders_v1:** remove unused variable (UNTIL 12146) ([#598](https://github.com/tillhub/tillhub-sdk-javascript/issues/598)) ([4986841](https://github.com/tillhub/tillhub-sdk-javascript/commit/4986841637dc93f59803e4f671722a406301b1a8))
|
|
7
|
+
* **appointment-reminders:** update appointment reminder type (UNTIL 12146) ([#596](https://github.com/tillhub/tillhub-sdk-javascript/issues/596)) ([ed3b514](https://github.com/tillhub/tillhub-sdk-javascript/commit/ed3b514f95b41094bd4d3b74fd5bf84a4afc8aa9))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **appointment-reminders:** add endpoint for templates (UNTIL 12146) ([#597](https://github.com/tillhub/tillhub-sdk-javascript/issues/597)) ([b05e9b5](https://github.com/tillhub/tillhub-sdk-javascript/commit/b05e9b5f867962f80139be24bf93129ad45d41e9))
|
|
13
|
+
|
|
1
14
|
# [4.155.0](https://github.com/tillhub/tillhub-sdk-javascript/compare/v4.154.0...v4.155.0) (2024-10-09)
|
|
2
15
|
|
|
3
16
|
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Client } from '../client';
|
|
2
|
+
import { UriHelper } from '../uri-helper';
|
|
3
|
+
import { ThBaseHandler } from '../base';
|
|
4
|
+
import { BaseError } from '../errors';
|
|
5
|
+
export interface AppointmentReminderTemplatesOptions {
|
|
6
|
+
user?: string;
|
|
7
|
+
base?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare type AppointmentReminderTemplateType = 'email' | 'sms';
|
|
10
|
+
export interface AppointmentReminderTemplateTypeEntity {
|
|
11
|
+
id?: string;
|
|
12
|
+
type?: AppointmentReminderTemplateType;
|
|
13
|
+
language?: string;
|
|
14
|
+
name?: string;
|
|
15
|
+
content?: string;
|
|
16
|
+
subject?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface AppointmentReminderTemplatesResponse {
|
|
19
|
+
data?: AppointmentReminderTemplateTypeEntity[];
|
|
20
|
+
metadata?: {
|
|
21
|
+
count?: number;
|
|
22
|
+
patch?: any;
|
|
23
|
+
};
|
|
24
|
+
msg?: string;
|
|
25
|
+
}
|
|
26
|
+
export declare class AppointmentReminderTemplates extends ThBaseHandler {
|
|
27
|
+
static baseEndpoint: string;
|
|
28
|
+
endpoint: string;
|
|
29
|
+
http: Client;
|
|
30
|
+
options: AppointmentReminderTemplatesOptions;
|
|
31
|
+
uriHelper: UriHelper;
|
|
32
|
+
constructor(options: AppointmentReminderTemplatesOptions, http: Client);
|
|
33
|
+
getAll(): Promise<AppointmentReminderTemplatesResponse>;
|
|
34
|
+
}
|
|
35
|
+
export declare class AppointmentReminderTemplatesFetchFailed extends BaseError {
|
|
36
|
+
message: string;
|
|
37
|
+
name: string;
|
|
38
|
+
constructor(message?: string, properties?: Record<string, unknown>);
|
|
39
|
+
}
|
|
@@ -2,19 +2,18 @@ import { Client } from '../client';
|
|
|
2
2
|
import { UriHelper } from '../uri-helper';
|
|
3
3
|
import { ThBaseHandler } from '../base';
|
|
4
4
|
import { BaseError } from '../errors';
|
|
5
|
+
import { AppointmentReminderTemplates } from './appointment-reminder-templates';
|
|
5
6
|
export interface AppointmentRemindersOptions {
|
|
6
7
|
user?: string;
|
|
7
8
|
base?: string;
|
|
8
9
|
}
|
|
9
|
-
export declare type ReminderType = 'email' | 'sms'
|
|
10
|
+
export declare type ReminderType = 'email' | 'sms';
|
|
10
11
|
export interface AppointmentReminderEntity {
|
|
11
12
|
id?: string;
|
|
12
13
|
type?: ReminderType;
|
|
13
|
-
emailSubject?: string;
|
|
14
|
-
smsSender?: string;
|
|
15
|
-
text?: string;
|
|
16
14
|
locationId?: string;
|
|
17
15
|
active?: boolean;
|
|
16
|
+
templateId?: string;
|
|
18
17
|
reminderLeadTime?: {
|
|
19
18
|
type: 'day' | 'hour' | 'month';
|
|
20
19
|
value: number;
|
|
@@ -38,6 +37,7 @@ export declare class AppointmentReminders extends ThBaseHandler {
|
|
|
38
37
|
get(): Promise<AppointmentRemindersResponse>;
|
|
39
38
|
post(appointmentReminder: AppointmentReminderEntity): Promise<AppointmentRemindersResponse>;
|
|
40
39
|
patch(id: string, appointmentReminder: AppointmentReminderEntity): Promise<AppointmentRemindersResponse>;
|
|
40
|
+
templates(): AppointmentReminderTemplates;
|
|
41
41
|
}
|
|
42
42
|
export declare class AppointmentReminderPatchFailed extends BaseError {
|
|
43
43
|
message: string;
|
package/dist/types/v1/index.d.ts
CHANGED
|
@@ -20,7 +20,8 @@ import { NotificationsMsu } from './notifications-msu';
|
|
|
20
20
|
import { NotificationsUnsubscribe } from './notifications-unsubscribe';
|
|
21
21
|
import { Promotions } from './promotions';
|
|
22
22
|
import { AppointmentReminders } from './appointment_reminders';
|
|
23
|
-
|
|
23
|
+
import { AppointmentReminderTemplates } from './appointment-reminder-templates';
|
|
24
|
+
export { Auth, Pricebooks, Products, Templates, Transactions, TransactionsLegacy, Registers, Balances, Vouchers, Customers, Carts, Tags, SafesLogBook, ExportsV1, StocksBook, analytics, AuditLogs, Branches, Configurations, NotificationsMsu, NotificationsUnsubscribe, Promotions, AppointmentReminders, AppointmentReminderTemplates };
|
|
24
25
|
export interface AnalyticsHandlersV1Types {
|
|
25
26
|
analytics: {
|
|
26
27
|
reports: {
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppointmentReminderTemplatesFetchFailed = exports.AppointmentReminderTemplates = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var uri_helper_1 = require("../uri-helper");
|
|
6
|
+
var base_1 = require("../base");
|
|
7
|
+
var errors_1 = require("../errors");
|
|
8
|
+
var AppointmentReminderTemplates = (function (_super) {
|
|
9
|
+
tslib_1.__extends(AppointmentReminderTemplates, _super);
|
|
10
|
+
function AppointmentReminderTemplates(options, http) {
|
|
11
|
+
var _a, _b;
|
|
12
|
+
var _this = _super.call(this, http, {
|
|
13
|
+
endpoint: AppointmentReminderTemplates.baseEndpoint,
|
|
14
|
+
base: (_a = options.base) !== null && _a !== void 0 ? _a : 'https://api.tillhub.com'
|
|
15
|
+
}) || this;
|
|
16
|
+
_this.options = options;
|
|
17
|
+
_this.http = http;
|
|
18
|
+
_this.endpoint = AppointmentReminderTemplates.baseEndpoint;
|
|
19
|
+
_this.options.base = (_b = _this.options.base) !== null && _b !== void 0 ? _b : 'https://api.tillhub.com';
|
|
20
|
+
_this.uriHelper = new uri_helper_1.UriHelper(_this.endpoint, _this.options);
|
|
21
|
+
return _this;
|
|
22
|
+
}
|
|
23
|
+
AppointmentReminderTemplates.prototype.getAll = function () {
|
|
24
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
25
|
+
var uri, response, error_1;
|
|
26
|
+
return tslib_1.__generator(this, function (_a) {
|
|
27
|
+
switch (_a.label) {
|
|
28
|
+
case 0:
|
|
29
|
+
uri = this.uriHelper.generateBaseUri('/templates');
|
|
30
|
+
_a.label = 1;
|
|
31
|
+
case 1:
|
|
32
|
+
_a.trys.push([1, 3, , 4]);
|
|
33
|
+
return [4, this.http.getClient().get(uri)];
|
|
34
|
+
case 2:
|
|
35
|
+
response = _a.sent();
|
|
36
|
+
if (response.status !== 200) {
|
|
37
|
+
throw new AppointmentReminderTemplatesFetchFailed(undefined, { status: response.status });
|
|
38
|
+
}
|
|
39
|
+
return [2, {
|
|
40
|
+
data: response.data.results,
|
|
41
|
+
msg: response.data.msg,
|
|
42
|
+
metadata: { count: response.data.results.length }
|
|
43
|
+
}];
|
|
44
|
+
case 3:
|
|
45
|
+
error_1 = _a.sent();
|
|
46
|
+
throw new AppointmentReminderTemplatesFetchFailed(error_1.message, { error: error_1 });
|
|
47
|
+
case 4: return [2];
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
};
|
|
52
|
+
AppointmentReminderTemplates.baseEndpoint = '/api/v1/notifications/appointment-reminders';
|
|
53
|
+
return AppointmentReminderTemplates;
|
|
54
|
+
}(base_1.ThBaseHandler));
|
|
55
|
+
exports.AppointmentReminderTemplates = AppointmentReminderTemplates;
|
|
56
|
+
var AppointmentReminderTemplatesFetchFailed = (function (_super) {
|
|
57
|
+
tslib_1.__extends(AppointmentReminderTemplatesFetchFailed, _super);
|
|
58
|
+
function AppointmentReminderTemplatesFetchFailed(message, properties) {
|
|
59
|
+
if (message === void 0) { message = 'Could not fetch appointment reminder templates.'; }
|
|
60
|
+
var _this = _super.call(this, message, properties) || this;
|
|
61
|
+
_this.message = message;
|
|
62
|
+
_this.name = 'AppointmentReminderTemplatesFetchFailed';
|
|
63
|
+
Object.setPrototypeOf(_this, AppointmentReminderTemplatesFetchFailed.prototype);
|
|
64
|
+
return _this;
|
|
65
|
+
}
|
|
66
|
+
return AppointmentReminderTemplatesFetchFailed;
|
|
67
|
+
}(errors_1.BaseError));
|
|
68
|
+
exports.AppointmentReminderTemplatesFetchFailed = AppointmentReminderTemplatesFetchFailed;
|
|
69
|
+
//# sourceMappingURL=appointment-reminder-templates.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"appointment-reminder-templates.js","sourceRoot":"","sources":["../../src/v1/appointment-reminder-templates.ts"],"names":[],"mappings":";;;;AACA,4CAAyC;AACzC,gCAAuC;AACvC,oCAAqC;AA2BrC;IAAkD,wDAAa;IAO7D,sCAAa,OAA4C,EAAE,IAAY;;QAAvE,YACE,kBAAM,IAAI,EAAE;YACV,QAAQ,EAAE,4BAA4B,CAAC,YAAY;YACnD,IAAI,QAAE,OAAO,CAAC,IAAI,mCAAI,yBAAyB;SAChD,CAAC,SAOH;QANC,KAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,KAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAEhB,KAAI,CAAC,QAAQ,GAAG,4BAA4B,CAAC,YAAY,CAAA;QACzD,KAAI,CAAC,OAAO,CAAC,IAAI,SAAG,KAAI,CAAC,OAAO,CAAC,IAAI,mCAAI,yBAAyB,CAAA;QAClE,KAAI,CAAC,SAAS,GAAG,IAAI,sBAAS,CAAC,KAAI,CAAC,QAAQ,EAAE,KAAI,CAAC,OAAO,CAAC,CAAA;;IAC7D,CAAC;IAEK,6CAAM,GAAZ;;;;;;wBACQ,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,YAAY,CAAC,CAAA;;;;wBAGrC,WAAM,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,EAAA;;wBAA/C,QAAQ,GAAG,SAAoC;wBAErD,IAAI,QAAQ,CAAC,MAAM,KAAK,GAAG,EAAE;4BAC3B,MAAM,IAAI,uCAAuC,CAAC,SAAS,EAAE,EAAE,MAAM,EAAE,QAAQ,CAAC,MAAM,EAAE,CAAC,CAAA;yBAC1F;wBAED,WAAO;gCACL,IAAI,EAAE,QAAQ,CAAC,IAAI,CAAC,OAAkD;gCACtE,GAAG,EAAE,QAAQ,CAAC,IAAI,CAAC,GAAG;gCACtB,QAAQ,EAAE,EAAE,KAAK,EAAE,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE;6BAClD,EAAA;;;wBAED,MAAM,IAAI,uCAAuC,CAAC,OAAK,CAAC,OAAO,EAAE,EAAE,KAAK,SAAA,EAAE,CAAC,CAAA;;;;;KAE9E;IArCa,yCAAY,GAAG,6CAA6C,CAAA;IAsC5E,mCAAC;CAAA,AAvCD,CAAkD,oBAAa,GAuC9D;AAvCY,oEAA4B;AAyCzC;IAA6D,mEAAS;IAEpE,iDACS,OAAmE,EAC1E,UAAoC;QAD7B,wBAAA,EAAA,2DAAmE;QAD5E,YAIE,kBAAM,OAAO,EAAE,UAAU,CAAC,SAE3B;QALQ,aAAO,GAAP,OAAO,CAA4D;QAFrE,UAAI,GAAG,yCAAyC,CAAA;QAMrD,MAAM,CAAC,cAAc,CAAC,KAAI,EAAE,uCAAuC,CAAC,SAAS,CAAC,CAAA;;IAChF,CAAC;IACH,8CAAC;AAAD,CAAC,AATD,CAA6D,kBAAS,GASrE;AATY,0FAAuC"}
|
|
@@ -5,6 +5,7 @@ var tslib_1 = require("tslib");
|
|
|
5
5
|
var uri_helper_1 = require("../uri-helper");
|
|
6
6
|
var base_1 = require("../base");
|
|
7
7
|
var errors_1 = require("../errors");
|
|
8
|
+
var appointment_reminder_templates_1 = require("./appointment-reminder-templates");
|
|
8
9
|
var AppointmentReminders = (function (_super) {
|
|
9
10
|
tslib_1.__extends(AppointmentReminders, _super);
|
|
10
11
|
function AppointmentReminders(options, http) {
|
|
@@ -99,6 +100,9 @@ var AppointmentReminders = (function (_super) {
|
|
|
99
100
|
});
|
|
100
101
|
});
|
|
101
102
|
};
|
|
103
|
+
AppointmentReminders.prototype.templates = function () {
|
|
104
|
+
return new appointment_reminder_templates_1.AppointmentReminderTemplates(this.options, this.http);
|
|
105
|
+
};
|
|
102
106
|
AppointmentReminders.baseEndpoint = '/api/v1/notifications/appointment-reminders';
|
|
103
107
|
return AppointmentReminders;
|
|
104
108
|
}(base_1.ThBaseHandler));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appointment_reminders.js","sourceRoot":"","sources":["../../src/v1/appointment_reminders.ts"],"names":[],"mappings":";;;;AACA,4CAAyC;AACzC,gCAAuC;AACvC,oCAAqC;
|
|
1
|
+
{"version":3,"file":"appointment_reminders.js","sourceRoot":"","sources":["../../src/v1/appointment_reminders.ts"],"names":[],"mappings":"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"}
|
package/dist/v1/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AppointmentReminders = exports.Promotions = exports.NotificationsUnsubscribe = exports.NotificationsMsu = exports.Configurations = exports.Branches = exports.AuditLogs = exports.analytics = exports.StocksBook = exports.ExportsV1 = exports.SafesLogBook = exports.Tags = exports.Carts = exports.Customers = exports.Vouchers = exports.Balances = exports.Registers = exports.TransactionsLegacy = exports.Transactions = exports.Templates = exports.Products = exports.Pricebooks = exports.Auth = void 0;
|
|
3
|
+
exports.AppointmentReminderTemplates = exports.AppointmentReminders = exports.Promotions = exports.NotificationsUnsubscribe = exports.NotificationsMsu = exports.Configurations = exports.Branches = exports.AuditLogs = exports.analytics = exports.StocksBook = exports.ExportsV1 = exports.SafesLogBook = exports.Tags = exports.Carts = exports.Customers = exports.Vouchers = exports.Balances = exports.Registers = exports.TransactionsLegacy = exports.Transactions = exports.Templates = exports.Products = exports.Pricebooks = exports.Auth = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
5
|
var auth_1 = require("./auth");
|
|
6
6
|
Object.defineProperty(exports, "Auth", { enumerable: true, get: function () { return auth_1.Auth; } });
|
|
@@ -47,4 +47,6 @@ var promotions_1 = require("./promotions");
|
|
|
47
47
|
Object.defineProperty(exports, "Promotions", { enumerable: true, get: function () { return promotions_1.Promotions; } });
|
|
48
48
|
var appointment_reminders_1 = require("./appointment_reminders");
|
|
49
49
|
Object.defineProperty(exports, "AppointmentReminders", { enumerable: true, get: function () { return appointment_reminders_1.AppointmentReminders; } });
|
|
50
|
+
var appointment_reminder_templates_1 = require("./appointment-reminder-templates");
|
|
51
|
+
Object.defineProperty(exports, "AppointmentReminderTemplates", { enumerable: true, get: function () { return appointment_reminder_templates_1.AppointmentReminderTemplates; } });
|
|
50
52
|
//# sourceMappingURL=index.js.map
|
package/dist/v1/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/v1/index.ts"],"names":[],"mappings":";;;;AAAA,+BAA6B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/v1/index.ts"],"names":[],"mappings":";;;;AAAA,+BAA6B;AAyB3B,qFAzBO,WAAI,OAyBP;AAxBN,2CAAyC;AAyBvC,2FAzBO,uBAAU,OAyBP;AAxBZ,uCAAqC;AAyBnC,yFAzBO,mBAAQ,OAyBP;AAxBV,yCAAuC;AAyBrC,0FAzBO,qBAAS,OAyBP;AAxBX,+CAAiE;AAyB/D,6FAzBO,2BAAY,OAyBP;AACZ,mGA1BqB,iCAAkB,OA0BrB;AAzBpB,yCAAuC;AA0BrC,0FA1BO,qBAAS,OA0BP;AAzBX,uCAAqC;AA0BnC,yFA1BO,mBAAQ,OA0BP;AAzBV,uCAAqC;AA0BnC,yFA1BO,mBAAQ,OA0BP;AAzBV,yCAAuC;AA0BrC,0FA1BO,qBAAS,OA0BP;AAzBX,iCAA+B;AA0B7B,sFA1BO,aAAK,OA0BP;AAzBP,iCAAsC;AA2BpC,6FA3BO,oBAAY,OA2BP;AA1Bd,qCAAqC;AA2BnC,0FA3BO,mBAAS,OA2BP;AA1BX,mCAAqC;AA2BnC,2FA3BO,mBAAU,OA2BP;AA1BZ,uCAAqC;AA6BnC,yFA7BO,mBAAQ,OA6BP;AA5BV,+BAA6B;AAsB3B,qFAtBO,WAAI,OAsBP;AArBN,kEAAmC;AAyBjC,oBAzBK,mBAAS,CAyBL;AAxBX,2CAAwC;AAyBtC,0FAzBO,sBAAS,OAyBP;AAxBX,mDAAiD;AA0B/C,+FA1BO,+BAAc,OA0BP;AAzBhB,yDAAsD;AA0BpD,iGA1BO,oCAAgB,OA0BP;AAzBlB,yEAAsE;AA0BpE,yGA1BO,oDAAwB,OA0BP;AAzB1B,2CAAyC;AA0BvC,2FA1BO,uBAAU,OA0BP;AAzBZ,iEAA8D;AA0B5D,qGA1BO,4CAAoB,OA0BP;AAzBtB,mFAA+E;AA0B7E,6GA1BO,6DAA4B,OA0BP"}
|