@dv4resi/dvss-backend-module-offering-im 0.0.1 → 0.0.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/dist/index.d.ts +404 -0
- package/dist/index.js +1164 -0
- package/dist/index.js.map +1 -0
- package/package.json +16 -14
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,404 @@
|
|
|
1
|
+
import { LoggerService } from '@dv4resi/dvss-backend-module-utility';
|
|
2
|
+
import { HttpService } from '@nestjs/axios';
|
|
3
|
+
|
|
4
|
+
declare class AppModule$2 {
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
declare class AppModule$1 {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
declare class AppModule {
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
declare enum HTTP_METHOD {
|
|
14
|
+
GET = "GET",
|
|
15
|
+
POST = "POST",
|
|
16
|
+
PUT = "PUT",
|
|
17
|
+
DELETE = "DELETE",
|
|
18
|
+
PATCH = "PATCH"
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
declare const TRAFFIC_ROUTER_CONFIGURATION_STORE_KEY = "traffic-router-configuration-store";
|
|
22
|
+
|
|
23
|
+
interface IIntegrationRequestLog {
|
|
24
|
+
integrationId?: bigint | string;
|
|
25
|
+
method: string;
|
|
26
|
+
url: string;
|
|
27
|
+
headers?: Record<string, string>;
|
|
28
|
+
requestBody?: unknown;
|
|
29
|
+
responseBody?: unknown;
|
|
30
|
+
statusCode?: number;
|
|
31
|
+
duration?: number;
|
|
32
|
+
loggedInUserId?: bigint;
|
|
33
|
+
timestamp?: Date;
|
|
34
|
+
error?: unknown;
|
|
35
|
+
}
|
|
36
|
+
declare class IntegrationRequestLoggerService {
|
|
37
|
+
private readonly logger;
|
|
38
|
+
private readonly className;
|
|
39
|
+
constructor(logger: LoggerService);
|
|
40
|
+
logRequest(logData: IIntegrationRequestLog): void;
|
|
41
|
+
logResponse(logData: IIntegrationRequestLog): void;
|
|
42
|
+
logError(logData: IIntegrationRequestLog): void;
|
|
43
|
+
logIntegrationRequest(logData: IIntegrationRequestLog): void;
|
|
44
|
+
private sanitizeHeaders;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
declare class RateLimiterService {
|
|
48
|
+
validateAndEnforceRateLimit(): Promise<void>;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
interface IGetCustomerRequest {
|
|
52
|
+
email?: string;
|
|
53
|
+
customerId?: string;
|
|
54
|
+
}
|
|
55
|
+
interface ICustomer {
|
|
56
|
+
id: string;
|
|
57
|
+
first_name: string;
|
|
58
|
+
last_name: string;
|
|
59
|
+
full_name: string;
|
|
60
|
+
phone: string;
|
|
61
|
+
has_password: boolean;
|
|
62
|
+
dob: string;
|
|
63
|
+
brand_id: string;
|
|
64
|
+
site_id: string;
|
|
65
|
+
stripe_id: string;
|
|
66
|
+
express_stripe_id: string;
|
|
67
|
+
email: string;
|
|
68
|
+
preferred_locale: string;
|
|
69
|
+
locked_at: string;
|
|
70
|
+
created_at: string;
|
|
71
|
+
updated_at: string;
|
|
72
|
+
deleted_at: string;
|
|
73
|
+
last_active_at: string;
|
|
74
|
+
email_verified_at: string;
|
|
75
|
+
last_check_in: ICustomerLastCheckIn;
|
|
76
|
+
external_ref: string;
|
|
77
|
+
}
|
|
78
|
+
interface ICustomerLastCheckIn {
|
|
79
|
+
checked_in_at: string;
|
|
80
|
+
method: string;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
declare enum CREDIT_TYPE_ENUM {
|
|
84
|
+
COUPON = "COUPON",
|
|
85
|
+
AMOUNT = "AMOUNT"
|
|
86
|
+
}
|
|
87
|
+
declare enum CREDIT_STATUS_ENUM {
|
|
88
|
+
ACTIVE = "ACTIVE",
|
|
89
|
+
REDEEMED = "REDEEMED",
|
|
90
|
+
EXPIRED = "EXPIRED",
|
|
91
|
+
REVOKED = "REVOKED"
|
|
92
|
+
}
|
|
93
|
+
declare enum CREDIT_FILTER_BY_ENUM {
|
|
94
|
+
TYPE = "TYPE",
|
|
95
|
+
STATUS = "STATUS"
|
|
96
|
+
}
|
|
97
|
+
interface ICredit {
|
|
98
|
+
id?: bigint;
|
|
99
|
+
name: string;
|
|
100
|
+
description?: string;
|
|
101
|
+
type: CREDIT_TYPE_ENUM;
|
|
102
|
+
status: CREDIT_STATUS_ENUM;
|
|
103
|
+
projectId?: number;
|
|
104
|
+
propertyId?: number;
|
|
105
|
+
externalId?: string;
|
|
106
|
+
expiresAt?: Date;
|
|
107
|
+
expiresDate?: string;
|
|
108
|
+
startsAt?: Date;
|
|
109
|
+
startDate?: string;
|
|
110
|
+
value?: string;
|
|
111
|
+
capabilityIntegrationId?: bigint;
|
|
112
|
+
meta?: Record<string, unknown>;
|
|
113
|
+
}
|
|
114
|
+
interface ICustomerCreditsSystemResponse {
|
|
115
|
+
totalCount: number;
|
|
116
|
+
records: ICredit[];
|
|
117
|
+
}
|
|
118
|
+
interface IGetCustomerCreditsRequestFilters {
|
|
119
|
+
by: CREDIT_FILTER_BY_ENUM;
|
|
120
|
+
values: string[];
|
|
121
|
+
}
|
|
122
|
+
interface IGetCustomerCreditsRequestOptions {
|
|
123
|
+
filters?: IGetCustomerCreditsRequestFilters[];
|
|
124
|
+
page?: number;
|
|
125
|
+
count?: number;
|
|
126
|
+
}
|
|
127
|
+
interface IGetCustomerCreditsRequest {
|
|
128
|
+
customerId: string;
|
|
129
|
+
options?: IGetCustomerCreditsRequestOptions;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
declare enum INTEGRATION_PROVIDER_ENUM {
|
|
133
|
+
TRYBE = "TRYBE"
|
|
134
|
+
}
|
|
135
|
+
interface IPlatformConfig {
|
|
136
|
+
baseUrl?: string;
|
|
137
|
+
}
|
|
138
|
+
interface IIntegrationConfig {
|
|
139
|
+
siteId?: string;
|
|
140
|
+
apiKey?: string;
|
|
141
|
+
organisationId?: string;
|
|
142
|
+
}
|
|
143
|
+
interface ICapabilityIntegrationConfig {
|
|
144
|
+
platformConfig?: IPlatformConfig;
|
|
145
|
+
integrationConfig?: IIntegrationConfig;
|
|
146
|
+
}
|
|
147
|
+
interface IValidatedCapabilityIntegrationConfig {
|
|
148
|
+
platformConfig: Required<IPlatformConfig>;
|
|
149
|
+
integrationConfig: Required<IIntegrationConfig>;
|
|
150
|
+
}
|
|
151
|
+
interface ICapabilityIntegration {
|
|
152
|
+
id: bigint;
|
|
153
|
+
provider?: INTEGRATION_PROVIDER_ENUM | null;
|
|
154
|
+
providerId?: bigint;
|
|
155
|
+
config?: ICapabilityIntegrationConfig;
|
|
156
|
+
capabilityId?: bigint;
|
|
157
|
+
}
|
|
158
|
+
interface IValidatedCapabilityIntegration {
|
|
159
|
+
id: bigint;
|
|
160
|
+
provider?: INTEGRATION_PROVIDER_ENUM | null;
|
|
161
|
+
providerId?: bigint;
|
|
162
|
+
config: IValidatedCapabilityIntegrationConfig;
|
|
163
|
+
capabilityId?: bigint;
|
|
164
|
+
headers?: Record<string, string>;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
interface IApiCallRequest<TBody = unknown> {
|
|
168
|
+
apiMethod: HTTP_METHOD;
|
|
169
|
+
url: string;
|
|
170
|
+
baseUrl: string;
|
|
171
|
+
headers?: Record<string, string>;
|
|
172
|
+
body?: TBody;
|
|
173
|
+
responseType?: 'json' | 'text' | 'blob' | 'arraybuffer';
|
|
174
|
+
headerType?: 'json' | 'xml';
|
|
175
|
+
}
|
|
176
|
+
interface IIntegrationRequestContext {
|
|
177
|
+
projectId?: bigint;
|
|
178
|
+
propertyId?: bigint;
|
|
179
|
+
capabilityId?: bigint;
|
|
180
|
+
[key: string]: unknown;
|
|
181
|
+
}
|
|
182
|
+
declare class TrafficGatewayService {
|
|
183
|
+
private readonly httpService;
|
|
184
|
+
private readonly requestLogger;
|
|
185
|
+
private readonly rateLimiter;
|
|
186
|
+
constructor(httpService: HttpService, requestLogger: IntegrationRequestLoggerService, rateLimiter: RateLimiterService);
|
|
187
|
+
executeIntegrationRequest<TResponse = unknown, TRequestBody = unknown>(request: IApiCallRequest<TRequestBody>, integration: IValidatedCapabilityIntegration, loggedInUserId?: bigint, _context?: IIntegrationRequestContext): Promise<TResponse>;
|
|
188
|
+
private prepareHeaders;
|
|
189
|
+
private prepareRequestConfig;
|
|
190
|
+
private constructFullUrl;
|
|
191
|
+
private executeHttpRequest;
|
|
192
|
+
private extractErrorDetails;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
declare abstract class BaseAuth {
|
|
196
|
+
abstract validateConfig(integration: ICapabilityIntegration, loggedInUserId: bigint): IValidatedCapabilityIntegration;
|
|
197
|
+
abstract testIntegration(integration: ICapabilityIntegration, loggedInUserId: bigint): Promise<boolean>;
|
|
198
|
+
abstract fetchAccessToken(integration: ICapabilityIntegration, loggedInUserId: bigint): Promise<string>;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
declare abstract class BaseWellnessAppointmentBooking {
|
|
202
|
+
abstract fetchWellnessAppointmentSession(): Promise<void>;
|
|
203
|
+
abstract checkWellnessAppointmentSessionAvailability(): Promise<void>;
|
|
204
|
+
abstract createWellnessAppointmentSessionOrder(): Promise<void>;
|
|
205
|
+
abstract addWellnessAppointmentSessionOrderItems(): Promise<void>;
|
|
206
|
+
abstract confirmWellnessAppointmentSessionOrder(): Promise<void>;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
declare abstract class BaseCreditBooking {
|
|
210
|
+
abstract fetchCustomerCredits(request: IGetCustomerCreditsRequest, integration: ICapabilityIntegration, loggedInUserId: bigint): Promise<ICustomerCreditsSystemResponse>;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
declare abstract class BaseCustomerManagement {
|
|
214
|
+
abstract createCustomer(): Promise<void>;
|
|
215
|
+
abstract searchCustomer(request: IGetCustomerRequest, integration: IValidatedCapabilityIntegration, loggedInUserId: bigint): Promise<ICustomer | undefined>;
|
|
216
|
+
abstract updateCustomer(): Promise<void>;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
declare abstract class BasePackageManagement {
|
|
220
|
+
abstract fetchCourseTypes(): Promise<void>;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
declare abstract class BaseAccountingContactManagement {
|
|
224
|
+
abstract createAccountingContactPerson(): Promise<void>;
|
|
225
|
+
abstract updateAccountingContactPerson(): Promise<void>;
|
|
226
|
+
abstract deleteAccountingContactPerson(): Promise<void>;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
declare abstract class BaseAccountingCreditNoteManagement {
|
|
230
|
+
abstract createAccountingCreditNote(): Promise<void>;
|
|
231
|
+
abstract applyAccountingCreditNote(): Promise<void>;
|
|
232
|
+
abstract refundAccountingExcessPayment(): Promise<void>;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
declare abstract class BaseAccountingCustomerManagement {
|
|
236
|
+
abstract createAccountingCustomer(): Promise<void>;
|
|
237
|
+
abstract listAccountingContacts(): Promise<void>;
|
|
238
|
+
abstract updateAccountingContact(): Promise<void>;
|
|
239
|
+
abstract deleteAccountingContact(): Promise<void>;
|
|
240
|
+
abstract changeAccountingContactStatus(): Promise<void>;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
declare abstract class BaseAccountingCustomerPaymentManagement {
|
|
244
|
+
abstract createAccountingCustomerPayment(): Promise<void>;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
declare abstract class BaseAccountingInvoiceManagement {
|
|
248
|
+
abstract createAccountingInvoice(): Promise<void>;
|
|
249
|
+
abstract updateAccountingInvoice(): Promise<void>;
|
|
250
|
+
abstract deleteAccountingInvoice(): Promise<void>;
|
|
251
|
+
abstract downloadAccountingInvoice(): Promise<void>;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
declare abstract class BaseAccountingLOAManagement {
|
|
255
|
+
abstract listAccountingChartOfAccounts(): Promise<void>;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
declare abstract class BaseAccountingTaxManagement {
|
|
259
|
+
abstract listAccountingTaxes(): Promise<void>;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
declare abstract class BasePayment {
|
|
263
|
+
abstract createPaymentSetupIntent(): Promise<void>;
|
|
264
|
+
abstract confirmPaymentSetupIntent(): Promise<void>;
|
|
265
|
+
abstract cancelPaymentSetupIntent(): Promise<void>;
|
|
266
|
+
abstract createPaymentEphemeralKey(): Promise<void>;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
declare abstract class BasePaymentMethodManagement {
|
|
270
|
+
abstract createPaymentMethod(): Promise<void>;
|
|
271
|
+
abstract attachPaymentMethodToCustomer(): Promise<void>;
|
|
272
|
+
abstract listPaymentMethodForCustomer(): Promise<void>;
|
|
273
|
+
abstract detachPaymentMethodFromCustomer(): Promise<void>;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
declare abstract class BasePaymentUserManagement {
|
|
277
|
+
abstract listPaymentCustomers(): Promise<void>;
|
|
278
|
+
abstract createPaymentCustomer(): Promise<void>;
|
|
279
|
+
abstract updatePaymentCustomer(): Promise<void>;
|
|
280
|
+
abstract deletePaymentCustomer(): Promise<void>;
|
|
281
|
+
abstract searchPaymentCustomers(): Promise<void>;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
declare abstract class BaseMembershipCustomerManagement {
|
|
285
|
+
abstract getMembershipAllCustomers(): Promise<void>;
|
|
286
|
+
abstract getMembershipCustomer(): Promise<void>;
|
|
287
|
+
abstract createMembershipCustomer(): Promise<void>;
|
|
288
|
+
abstract updateMembershipCustomer(): Promise<void>;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
declare abstract class BaseMembershipManagement {
|
|
292
|
+
abstract getMembershipTypes(): Promise<void>;
|
|
293
|
+
abstract getMembership(): Promise<void>;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
interface ITrybeCustomer extends ICustomer {
|
|
297
|
+
avatar_id: string;
|
|
298
|
+
labels: ITrybeCustomerLabels[];
|
|
299
|
+
avatar: ITrybeCustomerAvatar;
|
|
300
|
+
}
|
|
301
|
+
interface ITrybeCustomerLabels {
|
|
302
|
+
id: string;
|
|
303
|
+
name: string;
|
|
304
|
+
color: string;
|
|
305
|
+
}
|
|
306
|
+
interface ITrybeCustomerAvatar {
|
|
307
|
+
id: string;
|
|
308
|
+
file_name: string;
|
|
309
|
+
mime_type: string;
|
|
310
|
+
original_url: string;
|
|
311
|
+
size: number;
|
|
312
|
+
url: string;
|
|
313
|
+
}
|
|
314
|
+
interface ITrybeCustomerResponse {
|
|
315
|
+
data?: ITrybeCustomer;
|
|
316
|
+
}
|
|
317
|
+
interface ITrybeGetCustomerByEmailResponse {
|
|
318
|
+
data?: ITrybeCustomer[];
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
interface ITrybeGetResourcesCommonLinks {
|
|
322
|
+
first: string;
|
|
323
|
+
last: string;
|
|
324
|
+
prev: string | null;
|
|
325
|
+
next: string | null;
|
|
326
|
+
}
|
|
327
|
+
interface ITrybeGetResourcesCommonLink {
|
|
328
|
+
url?: string | null;
|
|
329
|
+
label: string;
|
|
330
|
+
active: boolean;
|
|
331
|
+
}
|
|
332
|
+
interface ITrybeGetResourcesCommonMeta {
|
|
333
|
+
current_page: number;
|
|
334
|
+
from: number;
|
|
335
|
+
last_page: number;
|
|
336
|
+
links: ITrybeGetResourcesCommonLink[];
|
|
337
|
+
path: string;
|
|
338
|
+
per_page: number;
|
|
339
|
+
to: number;
|
|
340
|
+
total: number;
|
|
341
|
+
}
|
|
342
|
+
interface IGetTrybeResourcesCommonResponse<T> {
|
|
343
|
+
data: T[];
|
|
344
|
+
links: ITrybeGetResourcesCommonLinks;
|
|
345
|
+
meta: ITrybeGetResourcesCommonMeta;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
interface ITrybeCredit {
|
|
349
|
+
id: string;
|
|
350
|
+
coupon_name: string;
|
|
351
|
+
coupon_description: string | null;
|
|
352
|
+
customer_id: string;
|
|
353
|
+
membership_id: string | null;
|
|
354
|
+
coupon_code: string;
|
|
355
|
+
multi_use: number;
|
|
356
|
+
issued_at: string;
|
|
357
|
+
expires_at: string;
|
|
358
|
+
redeemed_at: string | null;
|
|
359
|
+
revoked_at: string | null;
|
|
360
|
+
}
|
|
361
|
+
type ITrybeGetCustomerCreditsResponse = IGetTrybeResourcesCommonResponse<ITrybeCredit>;
|
|
362
|
+
|
|
363
|
+
declare class TrybeCustomerManagement implements BaseCustomerManagement {
|
|
364
|
+
private readonly logger;
|
|
365
|
+
private readonly trafficGatewayService;
|
|
366
|
+
private readonly fileName;
|
|
367
|
+
constructor(logger: LoggerService, trafficGatewayService: TrafficGatewayService);
|
|
368
|
+
createCustomer(): Promise<void>;
|
|
369
|
+
searchCustomer(request: IGetCustomerRequest, integration: IValidatedCapabilityIntegration, loggedInUserId: bigint): Promise<ITrybeCustomer | undefined>;
|
|
370
|
+
updateCustomer(): Promise<void>;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
declare class TrybeAuthService implements BaseAuth {
|
|
374
|
+
private readonly trybeCustomerManagement;
|
|
375
|
+
private readonly logger;
|
|
376
|
+
private readonly fileName;
|
|
377
|
+
constructor(trybeCustomerManagement: TrybeCustomerManagement, logger: LoggerService);
|
|
378
|
+
validateConfig(integration: ICapabilityIntegration, loggedInUserId: bigint): IValidatedCapabilityIntegration;
|
|
379
|
+
testIntegration(integration: ICapabilityIntegration, loggedInUserId: bigint): Promise<boolean>;
|
|
380
|
+
fetchAccessToken(integration: ICapabilityIntegration, loggedInUserId: bigint): Promise<string>;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
declare class TrybeCreditBooking implements BaseCreditBooking {
|
|
384
|
+
private readonly logger;
|
|
385
|
+
private readonly trafficGatewayService;
|
|
386
|
+
private readonly trybeAuthService;
|
|
387
|
+
private readonly fileName;
|
|
388
|
+
constructor(logger: LoggerService, trafficGatewayService: TrafficGatewayService, trybeAuthService: TrybeAuthService);
|
|
389
|
+
fetchCustomerCredits(request: IGetCustomerCreditsRequest, integration: ICapabilityIntegration, loggedInUserId: bigint): Promise<ICustomerCreditsSystemResponse>;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
declare abstract class TrybePackageManagement implements BasePackageManagement {
|
|
393
|
+
abstract fetchCourseTypes(): Promise<void>;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
declare abstract class TrybeWellnessAppointmentBooking extends BaseWellnessAppointmentBooking {
|
|
397
|
+
abstract fetchWellnessAppointmentSession(): Promise<void>;
|
|
398
|
+
abstract checkWellnessAppointmentSessionAvailability(): Promise<void>;
|
|
399
|
+
abstract createWellnessAppointmentSessionOrder(): Promise<void>;
|
|
400
|
+
abstract addWellnessAppointmentSessionOrderItems(): Promise<void>;
|
|
401
|
+
abstract confirmWellnessAppointmentSessionOrder(): Promise<void>;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
export { BaseAccountingContactManagement, BaseAccountingCreditNoteManagement, BaseAccountingCustomerManagement, BaseAccountingCustomerPaymentManagement, BaseAccountingInvoiceManagement, BaseAccountingLOAManagement, BaseAccountingTaxManagement, BaseAuth, BaseCreditBooking, BaseCustomerManagement, BaseMembershipCustomerManagement, BaseMembershipManagement, BasePackageManagement, BasePayment, BasePaymentMethodManagement, BasePaymentUserManagement, BaseWellnessAppointmentBooking, CREDIT_FILTER_BY_ENUM, CREDIT_STATUS_ENUM, CREDIT_TYPE_ENUM, HTTP_METHOD, type IApiCallRequest, type ICapabilityIntegration, type ICapabilityIntegrationConfig, type ICredit, type ICustomer, type ICustomerCreditsSystemResponse, type ICustomerLastCheckIn, type IGetCustomerCreditsRequest, type IGetCustomerCreditsRequestFilters, type IGetCustomerCreditsRequestOptions, type IGetCustomerRequest, type IGetTrybeResourcesCommonResponse, type IIntegrationRequestContext, INTEGRATION_PROVIDER_ENUM, type ITrybeCredit, type ITrybeCustomer, type ITrybeCustomerAvatar, type ITrybeCustomerLabels, type ITrybeCustomerResponse, type ITrybeGetCustomerByEmailResponse, type ITrybeGetCustomerCreditsResponse, type ITrybeGetResourcesCommonLink, type ITrybeGetResourcesCommonLinks, type ITrybeGetResourcesCommonMeta, type IValidatedCapabilityIntegration, type IValidatedCapabilityIntegrationConfig, AppModule as IntegrationLibsModule, AppModule$1 as IntegrationTrybeModule, AppModule$2 as OfferingIntegrationManager, TRAFFIC_ROUTER_CONFIGURATION_STORE_KEY, TrafficGatewayService, TrybeAuthService, TrybeCreditBooking, TrybeCustomerManagement, TrybePackageManagement, TrybeWellnessAppointmentBooking };
|