timezest 1.1.1 → 1.1.3
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 +28 -25
- package/index.js +31 -24
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { log, LogLevel, Logger } from "./utils/logger";
|
|
2
2
|
import { TimeZestAPIConfig } from "./config/config";
|
|
3
|
-
import { Agent, Resource, AppointmentType, SchedulingRequest, Team } from "./entities/entities";
|
|
3
|
+
import { Agent, Resource, AppointmentType, SchedulingRequest, Team, SchedulingRequestPost } from "./entities/entities";
|
|
4
|
+
export { Agent, Resource, AppointmentType, SchedulingRequest, SchedulingRequestPost, Team } from "./entities/entities";
|
|
5
|
+
export { ResourceSchema, AgentSchema, AppointmentTypeSchema, SchedulingRequestSchema, TeamSchema } from "./entities/schemas";
|
|
4
6
|
/**
|
|
5
7
|
* Options for configuring the TimeZest API.
|
|
6
8
|
*/
|
|
@@ -33,62 +35,63 @@ export declare class TimeZestAPI {
|
|
|
33
35
|
*/
|
|
34
36
|
constructor(apiKey: string, options?: TimeZestAPIOptions);
|
|
35
37
|
/**
|
|
36
|
-
*
|
|
37
|
-
* @returns The API key.
|
|
38
|
+
* Returns the API key used by this client instance.
|
|
39
|
+
* @returns {string} The API key for authenticating with the TimeZest API.
|
|
38
40
|
*/
|
|
39
41
|
getApiKey(): string;
|
|
40
42
|
/**
|
|
41
|
-
*
|
|
42
|
-
* @returns The API client
|
|
43
|
+
* Returns the configuration object for this API client instance.
|
|
44
|
+
* @returns {TimeZestAPIConfig} The configuration for the API client.
|
|
43
45
|
*/
|
|
44
46
|
getConfig(): TimeZestAPIConfig;
|
|
45
47
|
/**
|
|
46
48
|
* Fetches resources from the TimeZest API.
|
|
47
|
-
* @param filter - Optional filter string to narrow down results.
|
|
48
|
-
* @returns A promise that resolves to an array of resources.
|
|
49
|
+
* @param {string | null} [filter=null] - Optional filter string to narrow down results.
|
|
50
|
+
* @returns {Promise<Resource[]>} A promise that resolves to an array of resources.
|
|
49
51
|
*/
|
|
50
52
|
getResources: (filter?: string | null) => Promise<Resource[]>;
|
|
51
53
|
/**
|
|
52
54
|
* Fetches agents from the TimeZest API.
|
|
53
|
-
* @param filter - Optional filter string to narrow down results.
|
|
54
|
-
* @returns A promise that resolves to an array of agents.
|
|
55
|
+
* @param {string | null} [filter=null] - Optional filter string to narrow down results.
|
|
56
|
+
* @returns {Promise<Agent[]>} A promise that resolves to an array of agents.
|
|
55
57
|
*/
|
|
56
58
|
getAgents(filter?: string | null): Promise<Agent[]>;
|
|
57
59
|
/**
|
|
58
60
|
* Fetches teams from the TimeZest API.
|
|
59
|
-
* @param filter - Optional filter string to narrow down results.
|
|
60
|
-
* @returns A promise that resolves to an array of teams.
|
|
61
|
+
* @param {string | null} [filter=null] - Optional filter string to narrow down results.
|
|
62
|
+
* @returns {Promise<Team[]>} A promise that resolves to an array of teams.
|
|
61
63
|
*/
|
|
62
64
|
getTeams(filter?: string | null): Promise<Team[]>;
|
|
63
65
|
/**
|
|
64
66
|
* Fetches appointment types from the TimeZest API.
|
|
65
|
-
* @param filter - Optional filter string to narrow down results.
|
|
66
|
-
* @returns A promise that resolves to an array of appointment types.
|
|
67
|
+
* @param {string | null} [filter=null] - Optional filter string to narrow down results.
|
|
68
|
+
* @returns {Promise<AppointmentType[]>} A promise that resolves to an array of appointment types.
|
|
67
69
|
*/
|
|
68
70
|
getAppointmentTypes(filter?: string | null): Promise<AppointmentType[]>;
|
|
69
71
|
/**
|
|
70
72
|
* Fetches a scheduling request by its ID.
|
|
71
|
-
* @param id - The ID of the scheduling request.
|
|
72
|
-
* @returns A promise that resolves to the scheduling request.
|
|
73
|
+
* @param {string} id - The ID of the scheduling request to fetch.
|
|
74
|
+
* @returns {Promise<SchedulingRequest>} A promise that resolves to the scheduling request.
|
|
73
75
|
*/
|
|
74
76
|
getSchedulingRequest(id: string): Promise<SchedulingRequest>;
|
|
75
77
|
/**
|
|
76
78
|
* Fetches scheduling requests from the TimeZest API.
|
|
77
|
-
* @param filter - Optional filter string to narrow down results.
|
|
78
|
-
* @returns A promise that resolves to an array of scheduling requests.
|
|
79
|
+
* @param {string | null} [filter=null] - Optional filter string to narrow down results.
|
|
80
|
+
* @returns {Promise<SchedulingRequest[]>} A promise that resolves to an array of scheduling requests.
|
|
79
81
|
*/
|
|
80
82
|
getSchedulingRequests(filter?: string | null): Promise<SchedulingRequest[]>;
|
|
81
83
|
/**
|
|
82
|
-
* Creates a new scheduling request.
|
|
83
|
-
* @param data - The data for the scheduling request.
|
|
84
|
-
* @returns A promise that resolves to the created scheduling request.
|
|
84
|
+
* Creates a new scheduling request in the TimeZest API.
|
|
85
|
+
* @param {SchedulingRequestPost} data - The data for the new scheduling request.
|
|
86
|
+
* @returns {Promise<SchedulingRequest>} A promise that resolves to the created scheduling request.
|
|
85
87
|
*/
|
|
86
|
-
createSchedulingRequest(data:
|
|
88
|
+
createSchedulingRequest(data: SchedulingRequestPost): Promise<SchedulingRequest>;
|
|
87
89
|
/**
|
|
88
|
-
* Validates API responses using Zod schemas if outputValidation is enabled.
|
|
89
|
-
* @param response - The API response data to validate.
|
|
90
|
-
* @param schema - The Zod schema to validate against.
|
|
91
|
-
* @returns The validated or raw response data.
|
|
90
|
+
* Validates API responses using Zod schemas if outputValidation is enabled in the config.
|
|
91
|
+
* @param {T[]} response - The API response data to validate.
|
|
92
|
+
* @param {ZodSchema} schema - The Zod schema to validate against.
|
|
93
|
+
* @returns {T[]} The validated or raw response data.
|
|
92
94
|
*/
|
|
93
95
|
private validateResponse;
|
|
94
96
|
}
|
|
97
|
+
export default TimeZestAPI;
|
package/index.js
CHANGED
|
@@ -9,13 +9,19 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.TimeZestAPI = void 0;
|
|
12
|
+
exports.TimeZestAPI = exports.TeamSchema = exports.SchedulingRequestSchema = exports.AppointmentTypeSchema = exports.AgentSchema = exports.ResourceSchema = void 0;
|
|
13
13
|
const schemas_1 = require("./entities/schemas");
|
|
14
14
|
const config_1 = require("./config/config");
|
|
15
15
|
const makeRequest_1 = require("./utils/makeRequest");
|
|
16
16
|
const endpoints_1 = require("./constants/endpoints");
|
|
17
17
|
const logger_1 = require("./utils/logger");
|
|
18
18
|
const makePaginatedRequest_1 = require("./utils/makePaginatedRequest");
|
|
19
|
+
var schemas_2 = require("./entities/schemas");
|
|
20
|
+
Object.defineProperty(exports, "ResourceSchema", { enumerable: true, get: function () { return schemas_2.ResourceSchema; } });
|
|
21
|
+
Object.defineProperty(exports, "AgentSchema", { enumerable: true, get: function () { return schemas_2.AgentSchema; } });
|
|
22
|
+
Object.defineProperty(exports, "AppointmentTypeSchema", { enumerable: true, get: function () { return schemas_2.AppointmentTypeSchema; } });
|
|
23
|
+
Object.defineProperty(exports, "SchedulingRequestSchema", { enumerable: true, get: function () { return schemas_2.SchedulingRequestSchema; } });
|
|
24
|
+
Object.defineProperty(exports, "TeamSchema", { enumerable: true, get: function () { return schemas_2.TeamSchema; } });
|
|
19
25
|
/**
|
|
20
26
|
* Represents the TimeZest API client.
|
|
21
27
|
* Provides methods to interact with the TimeZest API.
|
|
@@ -29,8 +35,8 @@ class TimeZestAPI {
|
|
|
29
35
|
constructor(apiKey, options) {
|
|
30
36
|
/**
|
|
31
37
|
* Fetches resources from the TimeZest API.
|
|
32
|
-
* @param filter - Optional filter string to narrow down results.
|
|
33
|
-
* @returns A promise that resolves to an array of resources.
|
|
38
|
+
* @param {string | null} [filter=null] - Optional filter string to narrow down results.
|
|
39
|
+
* @returns {Promise<Resource[]>} A promise that resolves to an array of resources.
|
|
34
40
|
*/
|
|
35
41
|
this.getResources = (...args_1) => __awaiter(this, [...args_1], void 0, function* (filter = null) {
|
|
36
42
|
const response = yield (0, makePaginatedRequest_1.makePaginatedRequest)(this, endpoints_1.API_ENDPOINTS.RESOURCES, "GET", null, filter);
|
|
@@ -59,23 +65,23 @@ class TimeZestAPI {
|
|
|
59
65
|
this.createSchedulingRequest = (0, logger_1.withLogging)(this.createSchedulingRequest.bind(this), this, "createSchedulingRequest");
|
|
60
66
|
}
|
|
61
67
|
/**
|
|
62
|
-
*
|
|
63
|
-
* @returns The API key.
|
|
68
|
+
* Returns the API key used by this client instance.
|
|
69
|
+
* @returns {string} The API key for authenticating with the TimeZest API.
|
|
64
70
|
*/
|
|
65
71
|
getApiKey() {
|
|
66
72
|
return this.apiKey;
|
|
67
73
|
}
|
|
68
74
|
/**
|
|
69
|
-
*
|
|
70
|
-
* @returns The API client
|
|
75
|
+
* Returns the configuration object for this API client instance.
|
|
76
|
+
* @returns {TimeZestAPIConfig} The configuration for the API client.
|
|
71
77
|
*/
|
|
72
78
|
getConfig() {
|
|
73
79
|
return this.config;
|
|
74
80
|
}
|
|
75
81
|
/**
|
|
76
82
|
* Fetches agents from the TimeZest API.
|
|
77
|
-
* @param filter - Optional filter string to narrow down results.
|
|
78
|
-
* @returns A promise that resolves to an array of agents.
|
|
83
|
+
* @param {string | null} [filter=null] - Optional filter string to narrow down results.
|
|
84
|
+
* @returns {Promise<Agent[]>} A promise that resolves to an array of agents.
|
|
79
85
|
*/
|
|
80
86
|
getAgents() {
|
|
81
87
|
return __awaiter(this, arguments, void 0, function* (filter = null) {
|
|
@@ -85,8 +91,8 @@ class TimeZestAPI {
|
|
|
85
91
|
}
|
|
86
92
|
/**
|
|
87
93
|
* Fetches teams from the TimeZest API.
|
|
88
|
-
* @param filter - Optional filter string to narrow down results.
|
|
89
|
-
* @returns A promise that resolves to an array of teams.
|
|
94
|
+
* @param {string | null} [filter=null] - Optional filter string to narrow down results.
|
|
95
|
+
* @returns {Promise<Team[]>} A promise that resolves to an array of teams.
|
|
90
96
|
*/
|
|
91
97
|
getTeams() {
|
|
92
98
|
return __awaiter(this, arguments, void 0, function* (filter = null) {
|
|
@@ -96,8 +102,8 @@ class TimeZestAPI {
|
|
|
96
102
|
}
|
|
97
103
|
/**
|
|
98
104
|
* Fetches appointment types from the TimeZest API.
|
|
99
|
-
* @param filter - Optional filter string to narrow down results.
|
|
100
|
-
* @returns A promise that resolves to an array of appointment types.
|
|
105
|
+
* @param {string | null} [filter=null] - Optional filter string to narrow down results.
|
|
106
|
+
* @returns {Promise<AppointmentType[]>} A promise that resolves to an array of appointment types.
|
|
101
107
|
*/
|
|
102
108
|
getAppointmentTypes() {
|
|
103
109
|
return __awaiter(this, arguments, void 0, function* (filter = null) {
|
|
@@ -107,8 +113,8 @@ class TimeZestAPI {
|
|
|
107
113
|
}
|
|
108
114
|
/**
|
|
109
115
|
* Fetches a scheduling request by its ID.
|
|
110
|
-
* @param id - The ID of the scheduling request.
|
|
111
|
-
* @returns A promise that resolves to the scheduling request.
|
|
116
|
+
* @param {string} id - The ID of the scheduling request to fetch.
|
|
117
|
+
* @returns {Promise<SchedulingRequest>} A promise that resolves to the scheduling request.
|
|
112
118
|
*/
|
|
113
119
|
getSchedulingRequest(id) {
|
|
114
120
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -118,8 +124,8 @@ class TimeZestAPI {
|
|
|
118
124
|
}
|
|
119
125
|
/**
|
|
120
126
|
* Fetches scheduling requests from the TimeZest API.
|
|
121
|
-
* @param filter - Optional filter string to narrow down results.
|
|
122
|
-
* @returns A promise that resolves to an array of scheduling requests.
|
|
127
|
+
* @param {string | null} [filter=null] - Optional filter string to narrow down results.
|
|
128
|
+
* @returns {Promise<SchedulingRequest[]>} A promise that resolves to an array of scheduling requests.
|
|
123
129
|
*/
|
|
124
130
|
getSchedulingRequests() {
|
|
125
131
|
return __awaiter(this, arguments, void 0, function* (filter = null) {
|
|
@@ -128,9 +134,9 @@ class TimeZestAPI {
|
|
|
128
134
|
});
|
|
129
135
|
}
|
|
130
136
|
/**
|
|
131
|
-
* Creates a new scheduling request.
|
|
132
|
-
* @param data - The data for the scheduling request.
|
|
133
|
-
* @returns A promise that resolves to the created scheduling request.
|
|
137
|
+
* Creates a new scheduling request in the TimeZest API.
|
|
138
|
+
* @param {SchedulingRequestPost} data - The data for the new scheduling request.
|
|
139
|
+
* @returns {Promise<SchedulingRequest>} A promise that resolves to the created scheduling request.
|
|
134
140
|
*/
|
|
135
141
|
createSchedulingRequest(data) {
|
|
136
142
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -139,10 +145,10 @@ class TimeZestAPI {
|
|
|
139
145
|
});
|
|
140
146
|
}
|
|
141
147
|
/**
|
|
142
|
-
* Validates API responses using Zod schemas if outputValidation is enabled.
|
|
143
|
-
* @param response - The API response data to validate.
|
|
144
|
-
* @param schema - The Zod schema to validate against.
|
|
145
|
-
* @returns The validated or raw response data.
|
|
148
|
+
* Validates API responses using Zod schemas if outputValidation is enabled in the config.
|
|
149
|
+
* @param {T[]} response - The API response data to validate.
|
|
150
|
+
* @param {ZodSchema} schema - The Zod schema to validate against.
|
|
151
|
+
* @returns {T[]} The validated or raw response data.
|
|
146
152
|
*/
|
|
147
153
|
validateResponse(response, schema) {
|
|
148
154
|
if (this.config.outputValidation) {
|
|
@@ -152,4 +158,5 @@ class TimeZestAPI {
|
|
|
152
158
|
}
|
|
153
159
|
}
|
|
154
160
|
exports.TimeZestAPI = TimeZestAPI;
|
|
161
|
+
exports.default = TimeZestAPI;
|
|
155
162
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|