Skip to content

Commit d2fe1a1

Browse files
committed
feat: expose POSAuthTokenApi on Monei client
1 parent d7f1159 commit d2fe1a1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66
BizumApi,
77
PaymentMethodsApi,
88
PaymentsApi,
9+
POSAuthTokenApi,
910
SubscriptionsApi,
1011
ApplePayCertificateApi,
1112
} from "./src";
@@ -95,6 +96,8 @@ export class Monei {
9596
applePayCertificate!: ApplePayCertificateApi;
9697
/** API for managing Bizum */
9798
bizum!: BizumApi;
99+
/** API for creating POS auth tokens */
100+
posAuthToken!: POSAuthTokenApi;
98101

99102
/**
100103
* Creates a new MONEI SDK client instance
@@ -141,6 +144,7 @@ export class Monei {
141144
this.applePayDomain = new ApplePayDomainApi(config, BASE_PATH, this.client);
142145
this.applePayCertificate = new ApplePayCertificateApi(config, BASE_PATH, this.client);
143146
this.bizum = new BizumApi(config, BASE_PATH, this.client);
147+
this.posAuthToken = new POSAuthTokenApi(config, BASE_PATH, this.client);
144148
}
145149

146150
/**

0 commit comments

Comments
 (0)