@pax2pay/client 0.3.105 → 0.3.106
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/Client/Merchants/index.ts +3 -0
- package/Client/Payments/index.ts +4 -1
- package/dist/Client/Merchants/index.d.ts +3 -0
- package/dist/Client/Merchants/index.js +3 -0
- package/dist/Client/Merchants/index.js.map +1 -1
- package/dist/Client/Payments/index.d.ts +4 -1
- package/dist/Client/Payments/index.js +3 -0
- package/dist/Client/Payments/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/model/CardOperation.d.ts +10 -0
- package/dist/model/CardOperation.js +11 -0
- package/dist/model/CardOperation.js.map +1 -0
- package/dist/model/CardResponseV3.d.ts +25 -0
- package/dist/model/CardResponseV3.js +26 -0
- package/dist/model/CardResponseV3.js.map +1 -0
- package/dist/model/MerchantRequest.d.ts +4 -1
- package/dist/model/MerchantRequest.js +8 -7
- package/dist/model/MerchantRequest.js.map +1 -1
- package/dist/model/MerchantResponse.d.ts +3 -0
- package/dist/model/MerchantResponse.js +5 -0
- package/dist/model/MerchantResponse.js.map +1 -1
- package/dist/model/PaymentAmountScheduleRequest.d.ts +10 -0
- package/dist/model/PaymentAmountScheduleRequest.js +11 -0
- package/dist/model/PaymentAmountScheduleRequest.js.map +1 -0
- package/dist/model/PaymentAmountScheduleResponse.d.ts +10 -0
- package/dist/model/PaymentAmountScheduleResponse.js +11 -0
- package/dist/model/PaymentAmountScheduleResponse.js.map +1 -0
- package/dist/model/PaymentCardCreateRequest.d.ts +11 -0
- package/dist/model/PaymentCardCreateRequest.js +12 -0
- package/dist/model/PaymentCardCreateRequest.js.map +1 -0
- package/dist/model/PaymentDeliveryRequest.d.ts +12 -0
- package/dist/model/PaymentDeliveryRequest.js +13 -0
- package/dist/model/PaymentDeliveryRequest.js.map +1 -0
- package/dist/model/PaymentDeliveryResponse.d.ts +16 -0
- package/dist/model/PaymentDeliveryResponse.js +17 -0
- package/dist/model/PaymentDeliveryResponse.js.map +1 -0
- package/dist/model/PaymentRequest.d.ts +24 -0
- package/dist/model/PaymentRequest.js +25 -0
- package/dist/model/PaymentRequest.js.map +1 -0
- package/dist/model/PaymentResponse.d.ts +21 -4
- package/dist/model/PaymentResponse.js +27 -1
- package/dist/model/PaymentResponse.js.map +1 -1
- package/dist/model/PaymentTransferCreateRequest.d.ts +9 -0
- package/dist/model/PaymentTransferCreateRequest.js +10 -0
- package/dist/model/PaymentTransferCreateRequest.js.map +1 -0
- package/dist/model/TransferResponseV3.d.ts +9 -0
- package/dist/model/TransferResponseV3.js +10 -0
- package/dist/model/TransferResponseV3.js.map +1 -0
- package/dist/model/index.d.ts +11 -1
- package/dist/model/index.js +12 -1
- package/dist/model/index.js.map +1 -1
- package/index.ts +20 -0
- package/model/CardOperation.ts +14 -0
- package/model/CardResponseV3.ts +41 -0
- package/model/MerchantRequest.ts +9 -8
- package/model/MerchantResponse.ts +6 -0
- package/model/PaymentAmountScheduleRequest.ts +14 -0
- package/model/PaymentAmountScheduleResponse.ts +14 -0
- package/model/PaymentCardCreateRequest.ts +16 -0
- package/model/PaymentDeliveryRequest.ts +18 -0
- package/model/PaymentDeliveryResponse.ts +25 -0
- package/model/PaymentRequest.ts +37 -0
- package/model/PaymentResponse.ts +35 -4
- package/model/PaymentTransferCreateRequest.ts +13 -0
- package/model/TransferResponseV3.ts +13 -0
- package/model/index.ts +20 -0
- package/package.json +1 -1
|
@@ -24,6 +24,9 @@ export class Merchants extends List<model.MerchantResponse> {
|
|
|
24
24
|
)
|
|
25
25
|
return this.extractResponse(response)
|
|
26
26
|
}
|
|
27
|
+
async getMerchant(value: string) {
|
|
28
|
+
return await this.connection.get<model.ErrorResponse | model.MerchantResponse>(`${this.folder}/${value}`)
|
|
29
|
+
}
|
|
27
30
|
async searchPaginated(
|
|
28
31
|
request: model.MerchantSearchRequest,
|
|
29
32
|
previous?: Paginated<model.MerchantResponse>,
|
package/Client/Payments/index.ts
CHANGED
|
@@ -16,7 +16,10 @@ export class Payments {
|
|
|
16
16
|
async plan(request: model.SuggestionRequest) {
|
|
17
17
|
return await this.connection.post<model.ErrorResponse | model.SuggestionResponse>(`${this.folder}/plan`, request)
|
|
18
18
|
}
|
|
19
|
-
async
|
|
19
|
+
async createSuggestion(request: model.SuggestionRequest) {
|
|
20
|
+
return await this.connection.post<model.ErrorResponse | model.PaymentResponse>(`${this.folder}/suggestion`, request)
|
|
21
|
+
}
|
|
22
|
+
async create(request: model.PaymentRequest) {
|
|
20
23
|
return await this.connection.post<model.ErrorResponse | model.PaymentResponse>(this.folder, request)
|
|
21
24
|
}
|
|
22
25
|
}
|
|
@@ -10,6 +10,9 @@ export declare class Merchants extends List<model.MerchantResponse> {
|
|
|
10
10
|
status: 400 | 404 | 500 | 403 | 503;
|
|
11
11
|
})>;
|
|
12
12
|
searchByName(searchString: string): Promise<model.ErrorResponse | model.MerchantResponse[]>;
|
|
13
|
+
getMerchant(value: string): Promise<model.MerchantResponse | model.ErrorResponse | (model.ErrorResponse & {
|
|
14
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
15
|
+
})>;
|
|
13
16
|
searchPaginated(request: model.MerchantSearchRequest, previous?: Paginated<model.MerchantResponse>, page?: number, size?: number, sort?: string): Promise<model.ErrorResponse | Paginated<model.MerchantResponse>>;
|
|
14
17
|
getAll(): Promise<model.ErrorResponse | model.MerchantResponse[]>;
|
|
15
18
|
}
|
|
@@ -17,6 +17,9 @@ export class Merchants extends List {
|
|
|
17
17
|
});
|
|
18
18
|
return this.extractResponse(response);
|
|
19
19
|
}
|
|
20
|
+
async getMerchant(value) {
|
|
21
|
+
return await this.connection.get(`${this.folder}/${value}`);
|
|
22
|
+
}
|
|
20
23
|
async searchPaginated(request, previous, page, size, sort = "name") {
|
|
21
24
|
return await this.getNextPaginated(previous, (page, size, sort, request) => this.connection.post(`${this.folder}/searches`, request, { page, size, sort }), request, page, size, sort);
|
|
22
25
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Merchants/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAG9B,MAAM,OAAO,SAAU,SAAQ,IAA4B;IAE1D,YAAY,UAAsB;QACjC,KAAK,CAAC,UAAU,CAAC,CAAA;QAFR,WAAM,GAAG,WAAoB,CAAA;IAGvC,CAAC;IACD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,SAAS,CAAC,UAAU,CAAC,CAAA;IACjC,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAA8B;QAC1C,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAyB,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAChF,CAAC;IACD,KAAK,CAAC,YAAY,CAAC,YAAoB;QACtC,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CACzC,GAAG,IAAI,CAAC,MAAM,aAAa,YAAY,EAAE,EACzC;YACC,IAAI,EAAE,CAAC;YACP,IAAI,EAAE,IAAI;SACV,CACD,CAAA;QACD,OAAO,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;IACtC,CAAC;IACD,KAAK,CAAC,eAAe,CACpB,OAAoC,EACpC,QAA4C,EAC5C,IAAa,EACb,IAAa,EACb,IAAI,GAAG,MAAM;QAEb,OAAO,MAAM,IAAI,CAAC,gBAAgB,CACjC,QAAQ,EACR,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE,CAC7B,IAAI,CAAC,UAAU,CAAC,IAAI,CACnB,GAAG,IAAI,CAAC,MAAM,WAAW,EACzB,OAAO,EACP,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CACpB,EACF,OAAO,EACP,IAAI,EACJ,IAAI,EACJ,IAAI,CACJ,CAAA;IACF,CAAC;IACD,KAAK,CAAC,MAAM;QACX,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAiD,IAAI,CAAC,MAAM,EAAE;YACvG,IAAI,EAAE,CAAC;YACP,IAAI,EAAE,IAAI;SACV,CAAC,CAAA;QACF,OAAO,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;IACtC,CAAC;CACD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Merchants/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAG9B,MAAM,OAAO,SAAU,SAAQ,IAA4B;IAE1D,YAAY,UAAsB;QACjC,KAAK,CAAC,UAAU,CAAC,CAAA;QAFR,WAAM,GAAG,WAAoB,CAAA;IAGvC,CAAC;IACD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,SAAS,CAAC,UAAU,CAAC,CAAA;IACjC,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAA8B;QAC1C,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAyB,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAChF,CAAC;IACD,KAAK,CAAC,YAAY,CAAC,YAAoB;QACtC,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CACzC,GAAG,IAAI,CAAC,MAAM,aAAa,YAAY,EAAE,EACzC;YACC,IAAI,EAAE,CAAC;YACP,IAAI,EAAE,IAAI;SACV,CACD,CAAA;QACD,OAAO,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;IACtC,CAAC;IACD,KAAK,CAAC,WAAW,CAAC,KAAa;QAC9B,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAA+C,GAAG,IAAI,CAAC,MAAM,IAAI,KAAK,EAAE,CAAC,CAAA;IAC1G,CAAC;IACD,KAAK,CAAC,eAAe,CACpB,OAAoC,EACpC,QAA4C,EAC5C,IAAa,EACb,IAAa,EACb,IAAI,GAAG,MAAM;QAEb,OAAO,MAAM,IAAI,CAAC,gBAAgB,CACjC,QAAQ,EACR,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE,CAC7B,IAAI,CAAC,UAAU,CAAC,IAAI,CACnB,GAAG,IAAI,CAAC,MAAM,WAAW,EACzB,OAAO,EACP,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CACpB,EACF,OAAO,EACP,IAAI,EACJ,IAAI,EACJ,IAAI,CACJ,CAAA;IACF,CAAC;IACD,KAAK,CAAC,MAAM;QACX,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAiD,IAAI,CAAC,MAAM,EAAE;YACvG,IAAI,EAAE,CAAC;YACP,IAAI,EAAE,IAAI;SACV,CAAC,CAAA;QACF,OAAO,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;IACtC,CAAC;CACD"}
|
|
@@ -9,7 +9,10 @@ export declare class Payments {
|
|
|
9
9
|
plan(request: model.SuggestionRequest): Promise<model.ErrorResponse | model.SuggestionResponse | (model.ErrorResponse & {
|
|
10
10
|
status: 400 | 404 | 500 | 403 | 503;
|
|
11
11
|
})>;
|
|
12
|
-
|
|
12
|
+
createSuggestion(request: model.SuggestionRequest): Promise<model.ErrorResponse | model.PaymentResponse | (model.ErrorResponse & {
|
|
13
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
14
|
+
})>;
|
|
15
|
+
create(request: model.PaymentRequest): Promise<model.ErrorResponse | model.PaymentResponse | (model.ErrorResponse & {
|
|
13
16
|
status: 400 | 404 | 500 | 403 | 503;
|
|
14
17
|
})>;
|
|
15
18
|
}
|
|
@@ -25,6 +25,9 @@ export class Payments {
|
|
|
25
25
|
async plan(request) {
|
|
26
26
|
return await this.connection.post(`${this.folder}/plan`, request);
|
|
27
27
|
}
|
|
28
|
+
async createSuggestion(request) {
|
|
29
|
+
return await this.connection.post(`${this.folder}/suggestion`, request);
|
|
30
|
+
}
|
|
28
31
|
async create(request) {
|
|
29
32
|
return await this.connection.post(this.folder, request);
|
|
30
33
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Payments/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAGA,MAAM,OAAO,QAAQ;IAGpB,IAAc,UAAU;QACvB,OAAO,uBAAA,IAAI,4BAAY,CAAA;IACxB,CAAC;IACD,YAAY,UAAsB;QALxB,WAAM,GAAG,UAAU,CAAA;QAC7B,uCAAuB;QAKtB,uBAAA,IAAI,wBAAe,UAAU,MAAA,CAAA;IAC9B,CAAC;IACD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,QAAQ,CAAC,UAAU,CAAC,CAAA;IAChC,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAAgC;QAC1C,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAiD,GAAG,IAAI,CAAC,MAAM,OAAO,EAAE,OAAO,CAAC,CAAA;IAClH,CAAC;IACD,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Payments/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAGA,MAAM,OAAO,QAAQ;IAGpB,IAAc,UAAU;QACvB,OAAO,uBAAA,IAAI,4BAAY,CAAA;IACxB,CAAC;IACD,YAAY,UAAsB;QALxB,WAAM,GAAG,UAAU,CAAA;QAC7B,uCAAuB;QAKtB,uBAAA,IAAI,wBAAe,UAAU,MAAA,CAAA;IAC9B,CAAC;IACD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,QAAQ,CAAC,UAAU,CAAC,CAAA;IAChC,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAAgC;QAC1C,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAiD,GAAG,IAAI,CAAC,MAAM,OAAO,EAAE,OAAO,CAAC,CAAA;IAClH,CAAC;IACD,KAAK,CAAC,gBAAgB,CAAC,OAAgC;QACtD,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAA8C,GAAG,IAAI,CAAC,MAAM,aAAa,EAAE,OAAO,CAAC,CAAA;IACrH,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAA6B;QACzC,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAA8C,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IACrG,CAAC;CACD"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { Client } from "./Client";
|
|
2
|
-
import { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardSearchRequest, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateCardTypeProfileRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantSearchRequest, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentMethodOptionResponse, PaymentMethodType, PaymentOption, PaymentResponse, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, ReconciliationReportUrlRequest, References, RelogWithNewSessionDetailsRequest, Report, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, SearchRolesetsRequest, SecurityConfig, Segment, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementReportUrlRequest, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SuggestedCardDeliveryOptions, SuggestedCardMetaOptions, SuggestedCardPaymentMethodResponse, SuggestedCardTypeOptions, SuggestedFundingAccountOptions, SuggestedOptions, SuggestedPaymentMethodResponse, SuggestedPaymentMethodResponses, SuggestedSchedulesOptions, SuggestedUsageOptions, SuggestionCardDeliveryRequest, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SuggestionResponse, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCardTypeProfileRequest, UpdateCategoryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth } from "./model";
|
|
3
|
-
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CreateCardTypeProfileRequest, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CategoryFundingAccountAccessRequest, UpdateCategoryRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantSearchRequest, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentMethodOptionResponse, PaymentMethodType, PaymentOption, PaymentResponse, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, References, RelogWithNewSessionDetailsRequest, Report, ReconciliationReportUrlRequest, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduleEntry, CardSearchRequest, ScheduledTaskRequest, SearchRolesetsRequest, Segment, SecurityConfig, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, StatementReportUrlRequest, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SuggestionCardDeliveryRequest, SuggestedCardMetaOptions, SuggestedCardPaymentMethodResponse, SuggestedCardTypeOptions, SuggestedCardDeliveryOptions, SuggestedSchedulesOptions, SuggestedFundingAccountOptions, SuggestedOptions, SuggestedPaymentMethodResponse, SuggestedPaymentMethodResponses, SuggestedUsageOptions, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SuggestionResponse, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCardTypeProfileRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth, };
|
|
2
|
+
import { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardSearchRequest, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateCardTypeProfileRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantSearchRequest, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentMethodOptionResponse, PaymentMethodType, PaymentOption, PaymentRequest, PaymentResponse, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, ReconciliationReportUrlRequest, References, RelogWithNewSessionDetailsRequest, Report, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, SearchRolesetsRequest, SecurityConfig, Segment, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementReportUrlRequest, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SuggestedCardDeliveryOptions, SuggestedCardMetaOptions, SuggestedCardPaymentMethodResponse, SuggestedCardTypeOptions, SuggestedFundingAccountOptions, SuggestedOptions, SuggestedPaymentMethodResponse, SuggestedPaymentMethodResponses, SuggestedSchedulesOptions, SuggestedUsageOptions, SuggestionCardDeliveryRequest, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SuggestionResponse, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCardTypeProfileRequest, UpdateCategoryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth } from "./model";
|
|
3
|
+
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CreateCardTypeProfileRequest, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CategoryFundingAccountAccessRequest, UpdateCategoryRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantSearchRequest, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentMethodOptionResponse, PaymentMethodType, PaymentOption, PaymentRequest, PaymentResponse, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, References, RelogWithNewSessionDetailsRequest, Report, ReconciliationReportUrlRequest, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduleEntry, CardSearchRequest, ScheduledTaskRequest, SearchRolesetsRequest, Segment, SecurityConfig, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, StatementReportUrlRequest, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SuggestionCardDeliveryRequest, SuggestedCardMetaOptions, SuggestedCardPaymentMethodResponse, SuggestedCardTypeOptions, SuggestedCardDeliveryOptions, SuggestedSchedulesOptions, SuggestedFundingAccountOptions, SuggestedOptions, SuggestedPaymentMethodResponse, SuggestedPaymentMethodResponses, SuggestedUsageOptions, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SuggestionResponse, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCardTypeProfileRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth, };
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { Client } from "./Client";
|
|
2
|
-
import { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardType, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CredentialRequest, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PaxpayFeature, PaymentMethodType, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, SecurityConfig, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, } from "./model";
|
|
3
|
-
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardType, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CredentialRequest, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PaxpayFeature, PaymentMethodType, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, Segment, SecurityConfig, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, };
|
|
2
|
+
import { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardType, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CredentialRequest, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PaxpayFeature, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentMethodType, PaymentRequest, PaymentResponse, PaymentTransferCreateRequest, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, SecurityConfig, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, } from "./model";
|
|
3
|
+
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardType, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CredentialRequest, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PaxpayFeature, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentMethodType, PaymentRequest, PaymentResponse, PaymentTransferCreateRequest, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, Segment, SecurityConfig, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, };
|
|
4
4
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EACN,mBAAmB,EACnB,sBAAsB,EACtB,yCAAyC,EACzC,yBAAyB,EACzB,eAAe,EAEf,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAGhB,UAAU,EAKV,mBAAmB,EACnB,iBAAiB,EACjB,sCAAsC,EACtC,4BAA4B,EAC5B,iBAAiB,EACjB,WAAW,EACX,kBAAkB,EAClB,mBAAmB,EACnB,eAAe,EAEf,kCAAkC,EAClC,uBAAuB,EACvB,mBAAmB,EACnB,oBAAoB,EACpB,QAAQ,EACR,0BAA0B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DateTime } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export interface CardOperation {
|
|
4
|
+
type: string;
|
|
5
|
+
timestamp: DateTime;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace CardOperation {
|
|
8
|
+
const type: isly.object.ExtendableType<CardOperation>;
|
|
9
|
+
const is: isly.Type.IsFunction<CardOperation>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DateTime } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export var CardOperation;
|
|
4
|
+
(function (CardOperation) {
|
|
5
|
+
CardOperation.type = isly.object({
|
|
6
|
+
type: isly.string(),
|
|
7
|
+
timestamp: isly.fromIs("DateTime", DateTime.is),
|
|
8
|
+
});
|
|
9
|
+
CardOperation.is = CardOperation.type.is;
|
|
10
|
+
})(CardOperation || (CardOperation = {}));
|
|
11
|
+
//# sourceMappingURL=CardOperation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CardOperation.js","sourceRoot":"../","sources":["model/CardOperation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAM3B,MAAM,KAAW,aAAa,CAM7B;AAND,WAAiB,aAAa;IAChB,kBAAI,GAAG,IAAI,CAAC,MAAM,CAAgB;QAC9C,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC;KAC/C,CAAC,CAAA;IACW,gBAAE,GAAG,cAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EANgB,aAAa,KAAb,aAAa,QAM7B"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Date } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
import { AccountState } from "./AccountState";
|
|
4
|
+
import { CardOperation } from "./CardOperation";
|
|
5
|
+
import { CardUsage } from "./CardUsage";
|
|
6
|
+
import { YearMonth } from "./YearMonth";
|
|
7
|
+
export interface CardResponseV3 {
|
|
8
|
+
id: string;
|
|
9
|
+
cardType: string;
|
|
10
|
+
expires: YearMonth;
|
|
11
|
+
usage: CardUsage;
|
|
12
|
+
state: AccountState;
|
|
13
|
+
token?: string;
|
|
14
|
+
pan: string;
|
|
15
|
+
cvv?: string;
|
|
16
|
+
cardHolderName: string;
|
|
17
|
+
issued?: Date;
|
|
18
|
+
remaining: number;
|
|
19
|
+
maxAmount: number;
|
|
20
|
+
operations?: CardOperation;
|
|
21
|
+
}
|
|
22
|
+
export declare namespace CardResponseV3 {
|
|
23
|
+
const type: isly.object.ExtendableType<CardResponseV3>;
|
|
24
|
+
const is: isly.Type.IsFunction<CardResponseV3>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Date } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
import { AccountState } from "./AccountState";
|
|
4
|
+
import { CardOperation } from "./CardOperation";
|
|
5
|
+
import { CardUsage } from "./CardUsage";
|
|
6
|
+
import { YearMonth } from "./YearMonth";
|
|
7
|
+
export var CardResponseV3;
|
|
8
|
+
(function (CardResponseV3) {
|
|
9
|
+
CardResponseV3.type = isly.object({
|
|
10
|
+
id: isly.string(),
|
|
11
|
+
cardType: isly.string(),
|
|
12
|
+
expires: isly.fromIs("YearMonth", YearMonth.is),
|
|
13
|
+
usage: isly.fromIs("CardUsage", CardUsage.is),
|
|
14
|
+
state: isly.fromIs("AccountState", AccountState.is),
|
|
15
|
+
token: isly.string().optional(),
|
|
16
|
+
pan: isly.string(),
|
|
17
|
+
cvv: isly.string().optional(),
|
|
18
|
+
cardHolderName: isly.string(),
|
|
19
|
+
issued: isly.fromIs("Date", Date.is).optional(),
|
|
20
|
+
remaining: isly.number(),
|
|
21
|
+
maxAmount: isly.number(),
|
|
22
|
+
operations: isly.fromIs("CardOperation", CardOperation.is).optional(),
|
|
23
|
+
});
|
|
24
|
+
CardResponseV3.is = CardResponseV3.type.is;
|
|
25
|
+
})(CardResponseV3 || (CardResponseV3 = {}));
|
|
26
|
+
//# sourceMappingURL=CardResponseV3.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CardResponseV3.js","sourceRoot":"../","sources":["model/CardResponseV3.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,OAAO,CAAA;AAC5B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAkBvC,MAAM,KAAW,cAAc,CAiB9B;AAjBD,WAAiB,cAAc;IACjB,mBAAI,GAAG,IAAI,CAAC,MAAM,CAAiB;QAC/C,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;QACvB,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,SAAS,CAAC,EAAE,CAAC;QAC/C,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,SAAS,CAAC,EAAE,CAAC;QAC7C,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,YAAY,CAAC,EAAE,CAAC;QACnD,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC/B,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE;QAClB,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC7B,cAAc,EAAE,IAAI,CAAC,MAAM,EAAE;QAC7B,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QAC/C,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;QACxB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;QACxB,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC,eAAe,EAAE,aAAa,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;KACrE,CAAC,CAAA;IACW,iBAAE,GAAG,eAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAjBgB,cAAc,KAAd,cAAc,QAiB9B"}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
1
2
|
import { MerchantType } from "./MerchantType";
|
|
2
3
|
export interface MerchantRequest {
|
|
4
|
+
id?: string;
|
|
3
5
|
name?: string;
|
|
4
6
|
mcc?: string;
|
|
5
7
|
type?: MerchantType;
|
|
6
8
|
}
|
|
7
9
|
export declare namespace MerchantRequest {
|
|
8
|
-
|
|
10
|
+
const type: isly.object.ExtendableType<MerchantRequest>;
|
|
11
|
+
const is: isly.Type.IsFunction<MerchantRequest>;
|
|
9
12
|
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
1
2
|
import { MerchantType } from "./MerchantType";
|
|
2
3
|
export var MerchantRequest;
|
|
3
4
|
(function (MerchantRequest) {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
MerchantRequest.is = is;
|
|
5
|
+
MerchantRequest.type = isly.object({
|
|
6
|
+
id: isly.string().optional(),
|
|
7
|
+
name: isly.string().optional(),
|
|
8
|
+
mcc: isly.string().optional(),
|
|
9
|
+
type: MerchantType.type.optional(),
|
|
10
|
+
});
|
|
11
|
+
MerchantRequest.is = MerchantRequest.type.is;
|
|
11
12
|
})(MerchantRequest || (MerchantRequest = {}));
|
|
12
13
|
//# sourceMappingURL=MerchantRequest.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MerchantRequest.js","sourceRoot":"../","sources":["model/MerchantRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"MerchantRequest.js","sourceRoot":"../","sources":["model/MerchantRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAS7C,MAAM,KAAW,eAAe,CAQ/B;AARD,WAAiB,eAAe;IAClB,oBAAI,GAAG,IAAI,CAAC,MAAM,CAAkB;QAChD,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC5B,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC9B,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC7B,IAAI,EAAE,YAAY,CAAC,IAAI,CAAC,QAAQ,EAAE;KAClC,CAAC,CAAA;IACW,kBAAE,GAAG,gBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EARgB,eAAe,KAAf,eAAe,QAQ/B"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { Currency } from "isoly";
|
|
1
2
|
import { isly } from "isly";
|
|
3
|
+
import { BeneficiaryResponse } from "./BeneficiaryResponse";
|
|
2
4
|
import { MerchantType } from "./MerchantType";
|
|
3
5
|
export interface MerchantResponse {
|
|
4
6
|
id?: string;
|
|
@@ -6,6 +8,7 @@ export interface MerchantResponse {
|
|
|
6
8
|
mcc?: string;
|
|
7
9
|
type?: MerchantType;
|
|
8
10
|
isSuitableForCardMerchantRestriction?: true;
|
|
11
|
+
beneficiaries?: Partial<Record<Currency, BeneficiaryResponse>>;
|
|
9
12
|
}
|
|
10
13
|
export declare namespace MerchantResponse {
|
|
11
14
|
const type: isly.object.ExtendableType<MerchantResponse>;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { Currency } from "isoly";
|
|
1
2
|
import { isly } from "isly";
|
|
3
|
+
import { BeneficiaryResponse } from "./BeneficiaryResponse";
|
|
2
4
|
import { MerchantType } from "./MerchantType";
|
|
3
5
|
export var MerchantResponse;
|
|
4
6
|
(function (MerchantResponse) {
|
|
@@ -8,6 +10,9 @@ export var MerchantResponse;
|
|
|
8
10
|
mcc: isly.string().optional(),
|
|
9
11
|
type: MerchantType.type.optional(),
|
|
10
12
|
isSuitableForCardMerchantRestriction: isly.boolean(true).optional(),
|
|
13
|
+
beneficiaries: isly
|
|
14
|
+
.record(isly.fromIs("Currency", Currency.is), isly.fromIs("BeneficiaryResponse", BeneficiaryResponse.is))
|
|
15
|
+
.optional(),
|
|
11
16
|
});
|
|
12
17
|
MerchantResponse.is = MerchantResponse.type.is;
|
|
13
18
|
})(MerchantResponse || (MerchantResponse = {}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MerchantResponse.js","sourceRoot":"../","sources":["model/MerchantResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"MerchantResponse.js","sourceRoot":"../","sources":["model/MerchantResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAW7C,MAAM,KAAW,gBAAgB,CAYhC;AAZD,WAAiB,gBAAgB;IACnB,qBAAI,GAAG,IAAI,CAAC,MAAM,CAAmB;QACjD,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC5B,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC9B,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC7B,IAAI,EAAE,YAAY,CAAC,IAAI,CAAC,QAAQ,EAAE;QAClC,oCAAoC,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;QACnE,aAAa,EAAE,IAAI;aACjB,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,qBAAqB,EAAE,mBAAmB,CAAC,EAAE,CAAC,CAAC;aACxG,QAAQ,EAAE;KACZ,CAAC,CAAA;IACW,mBAAE,GAAG,iBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAZgB,gBAAgB,KAAhB,gBAAgB,QAYhC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Date } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export interface PaymentAmountScheduleRequest {
|
|
4
|
+
amount: number;
|
|
5
|
+
date: Date;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace PaymentAmountScheduleRequest {
|
|
8
|
+
const type: isly.object.ExtendableType<PaymentAmountScheduleRequest>;
|
|
9
|
+
const is: isly.Type.IsFunction<PaymentAmountScheduleRequest>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Date } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export var PaymentAmountScheduleRequest;
|
|
4
|
+
(function (PaymentAmountScheduleRequest) {
|
|
5
|
+
PaymentAmountScheduleRequest.type = isly.object({
|
|
6
|
+
amount: isly.number(),
|
|
7
|
+
date: isly.fromIs("Date", Date.is),
|
|
8
|
+
});
|
|
9
|
+
PaymentAmountScheduleRequest.is = PaymentAmountScheduleRequest.type.is;
|
|
10
|
+
})(PaymentAmountScheduleRequest || (PaymentAmountScheduleRequest = {}));
|
|
11
|
+
//# sourceMappingURL=PaymentAmountScheduleRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentAmountScheduleRequest.js","sourceRoot":"../","sources":["model/PaymentAmountScheduleRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,OAAO,CAAA;AAC5B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAM3B,MAAM,KAAW,4BAA4B,CAM5C;AAND,WAAiB,4BAA4B;IAC/B,iCAAI,GAAG,IAAI,CAAC,MAAM,CAA+B;QAC7D,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;QACrB,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC;KAClC,CAAC,CAAA;IACW,+BAAE,GAAG,6BAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EANgB,4BAA4B,KAA5B,4BAA4B,QAM5C"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Date } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export interface PaymentAmountScheduleResponse {
|
|
4
|
+
amount: number;
|
|
5
|
+
date: Date;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace PaymentAmountScheduleResponse {
|
|
8
|
+
const type: isly.object.ExtendableType<PaymentAmountScheduleResponse>;
|
|
9
|
+
const is: isly.Type.IsFunction<PaymentAmountScheduleResponse>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Date } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export var PaymentAmountScheduleResponse;
|
|
4
|
+
(function (PaymentAmountScheduleResponse) {
|
|
5
|
+
PaymentAmountScheduleResponse.type = isly.object({
|
|
6
|
+
amount: isly.number(),
|
|
7
|
+
date: isly.fromIs("Date", Date.is),
|
|
8
|
+
});
|
|
9
|
+
PaymentAmountScheduleResponse.is = PaymentAmountScheduleResponse.type.is;
|
|
10
|
+
})(PaymentAmountScheduleResponse || (PaymentAmountScheduleResponse = {}));
|
|
11
|
+
//# sourceMappingURL=PaymentAmountScheduleResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentAmountScheduleResponse.js","sourceRoot":"../","sources":["model/PaymentAmountScheduleResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,OAAO,CAAA;AAC5B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAM3B,MAAM,KAAW,6BAA6B,CAM7C;AAND,WAAiB,6BAA6B;IAChC,kCAAI,GAAG,IAAI,CAAC,MAAM,CAAgC;QAC9D,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;QACrB,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC;KAClC,CAAC,CAAA;IACW,gCAAE,GAAG,8BAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EANgB,6BAA6B,KAA7B,6BAA6B,QAM7C"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { CardUsage } from "./CardUsage";
|
|
3
|
+
export interface PaymentCardCreateRequest {
|
|
4
|
+
cardType: string;
|
|
5
|
+
expires?: string;
|
|
6
|
+
usage?: CardUsage;
|
|
7
|
+
}
|
|
8
|
+
export declare namespace PaymentCardCreateRequest {
|
|
9
|
+
const type: isly.object.ExtendableType<PaymentCardCreateRequest>;
|
|
10
|
+
const is: isly.Type.IsFunction<PaymentCardCreateRequest>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { CardUsage } from "./CardUsage";
|
|
3
|
+
export var PaymentCardCreateRequest;
|
|
4
|
+
(function (PaymentCardCreateRequest) {
|
|
5
|
+
PaymentCardCreateRequest.type = isly.object({
|
|
6
|
+
cardType: isly.string(),
|
|
7
|
+
expires: isly.string().optional(),
|
|
8
|
+
usage: isly.fromIs("CardUsage", CardUsage.is).optional(),
|
|
9
|
+
});
|
|
10
|
+
PaymentCardCreateRequest.is = PaymentCardCreateRequest.type.is;
|
|
11
|
+
})(PaymentCardCreateRequest || (PaymentCardCreateRequest = {}));
|
|
12
|
+
//# sourceMappingURL=PaymentCardCreateRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentCardCreateRequest.js","sourceRoot":"../","sources":["model/PaymentCardCreateRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAOvC,MAAM,KAAW,wBAAwB,CAOxC;AAPD,WAAiB,wBAAwB;IAC3B,6BAAI,GAAG,IAAI,CAAC,MAAM,CAA2B;QACzD,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;QACvB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACjC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,SAAS,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;KACxD,CAAC,CAAA;IACW,2BAAE,GAAG,yBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAPgB,wBAAwB,KAAxB,wBAAwB,QAOxC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Date } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export interface PaymentDeliveryRequest {
|
|
4
|
+
type?: string;
|
|
5
|
+
to: string;
|
|
6
|
+
message: string;
|
|
7
|
+
lapses: Date;
|
|
8
|
+
}
|
|
9
|
+
export declare namespace PaymentDeliveryRequest {
|
|
10
|
+
const type: isly.object.ExtendableType<PaymentDeliveryRequest>;
|
|
11
|
+
const is: isly.Type.IsFunction<PaymentDeliveryRequest>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Date } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export var PaymentDeliveryRequest;
|
|
4
|
+
(function (PaymentDeliveryRequest) {
|
|
5
|
+
PaymentDeliveryRequest.type = isly.object({
|
|
6
|
+
type: isly.string().optional(),
|
|
7
|
+
to: isly.string(),
|
|
8
|
+
message: isly.string(),
|
|
9
|
+
lapses: isly.fromIs("Date", Date.is),
|
|
10
|
+
});
|
|
11
|
+
PaymentDeliveryRequest.is = PaymentDeliveryRequest.type.is;
|
|
12
|
+
})(PaymentDeliveryRequest || (PaymentDeliveryRequest = {}));
|
|
13
|
+
//# sourceMappingURL=PaymentDeliveryRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentDeliveryRequest.js","sourceRoot":"../","sources":["model/PaymentDeliveryRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,OAAO,CAAA;AAC5B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAQ3B,MAAM,KAAW,sBAAsB,CAQtC;AARD,WAAiB,sBAAsB;IACzB,2BAAI,GAAG,IAAI,CAAC,MAAM,CAAyB;QACvD,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC9B,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;QACjB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC;KACpC,CAAC,CAAA;IACW,yBAAE,GAAG,uBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EARgB,sBAAsB,KAAtB,sBAAsB,QAQtC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Date, DateTime } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
import { DeliveryStatus } from "./DeliveryStatus";
|
|
4
|
+
export interface PaymentDeliveryResponse {
|
|
5
|
+
type: string;
|
|
6
|
+
to: string;
|
|
7
|
+
message: string;
|
|
8
|
+
lapses: Date;
|
|
9
|
+
sent?: DateTime;
|
|
10
|
+
state: DeliveryStatus;
|
|
11
|
+
reason?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare namespace PaymentDeliveryResponse {
|
|
14
|
+
const type: isly.object.ExtendableType<PaymentDeliveryResponse>;
|
|
15
|
+
const is: isly.Type.IsFunction<PaymentDeliveryResponse>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Date, DateTime } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
import { DeliveryStatus } from "./DeliveryStatus";
|
|
4
|
+
export var PaymentDeliveryResponse;
|
|
5
|
+
(function (PaymentDeliveryResponse) {
|
|
6
|
+
PaymentDeliveryResponse.type = isly.object({
|
|
7
|
+
type: isly.string(),
|
|
8
|
+
to: isly.string(),
|
|
9
|
+
message: isly.string(),
|
|
10
|
+
lapses: isly.fromIs("Date", Date.is),
|
|
11
|
+
sent: isly.fromIs("DateTime", DateTime.is).optional(),
|
|
12
|
+
state: isly.fromIs("DeliveryStatus", DeliveryStatus.is),
|
|
13
|
+
reason: isly.string().optional(),
|
|
14
|
+
});
|
|
15
|
+
PaymentDeliveryResponse.is = PaymentDeliveryResponse.type.is;
|
|
16
|
+
})(PaymentDeliveryResponse || (PaymentDeliveryResponse = {}));
|
|
17
|
+
//# sourceMappingURL=PaymentDeliveryResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentDeliveryResponse.js","sourceRoot":"../","sources":["model/PaymentDeliveryResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AACtC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAWjD,MAAM,KAAW,uBAAuB,CAWvC;AAXD,WAAiB,uBAAuB;IAC1B,4BAAI,GAAG,IAAI,CAAC,MAAM,CAA0B;QACxD,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;QACjB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC;QACpC,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QACrD,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,cAAc,CAAC,EAAE,CAAC;QACvD,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAChC,CAAC,CAAA;IACW,0BAAE,GAAG,wBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAXgB,uBAAuB,KAAvB,uBAAuB,QAWvC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Currency } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
import { BookingInfoRequest } from "./BookingInfoRequest";
|
|
4
|
+
import { MerchantRequest } from "./MerchantRequest";
|
|
5
|
+
import { PaymentAmountScheduleResponse } from "./PaymentAmountScheduleResponse";
|
|
6
|
+
import { PaymentCardCreateRequest } from "./PaymentCardCreateRequest";
|
|
7
|
+
import { PaymentDeliveryRequest } from "./PaymentDeliveryRequest";
|
|
8
|
+
import { PaymentTransferCreateRequest } from "./PaymentTransferCreateRequest";
|
|
9
|
+
export interface PaymentRequest {
|
|
10
|
+
account: string;
|
|
11
|
+
amount?: number;
|
|
12
|
+
currency: Currency;
|
|
13
|
+
method?: "card" | "transfer";
|
|
14
|
+
merchant?: MerchantRequest;
|
|
15
|
+
meta?: BookingInfoRequest;
|
|
16
|
+
card?: PaymentCardCreateRequest;
|
|
17
|
+
transfer?: PaymentTransferCreateRequest;
|
|
18
|
+
delivery?: PaymentDeliveryRequest;
|
|
19
|
+
schedule?: PaymentAmountScheduleResponse[];
|
|
20
|
+
}
|
|
21
|
+
export declare namespace PaymentRequest {
|
|
22
|
+
const type: isly.object.ExtendableType<PaymentRequest>;
|
|
23
|
+
const is: isly.Type.IsFunction<PaymentRequest>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Currency } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
import { BookingInfoRequest } from "./BookingInfoRequest";
|
|
4
|
+
import { MerchantRequest } from "./MerchantRequest";
|
|
5
|
+
import { PaymentAmountScheduleRequest } from "./PaymentAmountScheduleRequest";
|
|
6
|
+
import { PaymentCardCreateRequest } from "./PaymentCardCreateRequest";
|
|
7
|
+
import { PaymentDeliveryRequest } from "./PaymentDeliveryRequest";
|
|
8
|
+
import { PaymentTransferCreateRequest } from "./PaymentTransferCreateRequest";
|
|
9
|
+
export var PaymentRequest;
|
|
10
|
+
(function (PaymentRequest) {
|
|
11
|
+
PaymentRequest.type = isly.object({
|
|
12
|
+
account: isly.string(),
|
|
13
|
+
amount: isly.number().optional(),
|
|
14
|
+
currency: isly.fromIs("Currency", Currency.is),
|
|
15
|
+
method: isly.string(["card", "transfer"]).optional(),
|
|
16
|
+
merchant: isly.fromIs("MerchantRequest", MerchantRequest.is).optional(),
|
|
17
|
+
meta: isly.fromIs("BookingInfoRequest", BookingInfoRequest.is).optional(),
|
|
18
|
+
card: isly.fromIs("PaymentCardCreateRequest", PaymentCardCreateRequest.is).optional(),
|
|
19
|
+
transfer: isly.fromIs("PaymentTransferCreateRequest", PaymentTransferCreateRequest.is).optional(),
|
|
20
|
+
delivery: isly.fromIs("PaymentDeliveryRequest", PaymentDeliveryRequest.is).optional(),
|
|
21
|
+
schedule: isly.array(isly.fromIs("PaymentAmountScheduleRequest", PaymentAmountScheduleRequest.is)).optional(),
|
|
22
|
+
});
|
|
23
|
+
PaymentRequest.is = PaymentRequest.type.is;
|
|
24
|
+
})(PaymentRequest || (PaymentRequest = {}));
|
|
25
|
+
//# sourceMappingURL=PaymentRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentRequest.js","sourceRoot":"../","sources":["model/PaymentRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AACnD,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AAE7E,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AAc7E,MAAM,KAAW,cAAc,CAc9B;AAdD,WAAiB,cAAc;IACjB,mBAAI,GAAG,IAAI,CAAC,MAAM,CAAiB;QAC/C,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAChC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC;QAC9C,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,QAAQ,EAAE;QACpD,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,iBAAiB,EAAE,eAAe,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QACvE,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,0BAA0B,EAAE,wBAAwB,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QACrF,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,8BAA8B,EAAE,4BAA4B,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QACjG,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,wBAAwB,EAAE,sBAAsB,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QACrF,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,8BAA8B,EAAE,4BAA4B,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;KAC7G,CAAC,CAAA;IACW,iBAAE,GAAG,eAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAdgB,cAAc,KAAd,cAAc,QAc9B"}
|