@pax2pay/client 0.3.152 → 0.3.154
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/Reports/index.ts +7 -4
- package/dist/Client/Reports/index.d.ts +7 -4
- package/dist/Client/Reports/index.js +3 -0
- package/dist/Client/Reports/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/AbstractPaymentOperation.d.ts +10 -0
- package/dist/model/AbstractPaymentOperation.js +12 -0
- package/dist/model/AbstractPaymentOperation.js.map +1 -0
- package/dist/model/AbstractProviderTransactionOperation.d.ts +9 -0
- package/dist/model/AbstractProviderTransactionOperation.js +10 -0
- package/dist/model/AbstractProviderTransactionOperation.js.map +1 -0
- package/dist/model/DownloadCardReportRequest.d.ts +6 -0
- package/dist/model/DownloadCardReportRequest.js +2 -0
- package/dist/model/DownloadCardReportRequest.js.map +1 -0
- package/dist/model/DownloadFileFormat.d.ts +7 -0
- package/dist/model/DownloadFileFormat.js +8 -0
- package/dist/model/DownloadFileFormat.js.map +1 -0
- package/dist/model/DownloadOrganisationSearchRequest.d.ts +10 -0
- package/dist/model/DownloadOrganisationSearchRequest.js +14 -0
- package/dist/model/DownloadOrganisationSearchRequest.js.map +1 -0
- package/dist/model/{ReconciliationReportUrlRequest.d.ts → DownloadReconciliationReportRequest.d.ts} +3 -2
- package/dist/model/DownloadReconciliationReportRequest.js +2 -0
- package/dist/model/DownloadReconciliationReportRequest.js.map +1 -0
- package/dist/model/DownloadStatementReportRequest.d.ts +6 -0
- package/dist/model/DownloadStatementReportRequest.js +2 -0
- package/dist/model/DownloadStatementReportRequest.js.map +1 -0
- package/dist/model/DownloadUserReportRequest.d.ts +6 -0
- package/dist/model/DownloadUserReportRequest.js +2 -0
- package/dist/model/DownloadUserReportRequest.js.map +1 -0
- package/dist/model/GenericPaymentOperation.d.ts +10 -0
- package/dist/model/GenericPaymentOperation.js +12 -0
- package/dist/model/GenericPaymentOperation.js.map +1 -0
- package/dist/model/MerchantDetailsV2.d.ts +9 -0
- package/dist/model/MerchantDetailsV2.js +11 -0
- package/dist/model/MerchantDetailsV2.js.map +1 -0
- package/dist/model/OrganisationSearchRequest.d.ts +2 -0
- package/dist/model/OrganisationSearchRequest.js +2 -0
- package/dist/model/OrganisationSearchRequest.js.map +1 -1
- package/dist/model/PaymentOperation.d.ts +9 -0
- package/dist/model/PaymentOperation.js +10 -0
- package/dist/model/PaymentOperation.js.map +1 -0
- package/dist/model/PaymentResponse.d.ts +2 -0
- package/dist/model/PaymentResponse.js +2 -0
- package/dist/model/PaymentResponse.js.map +1 -1
- package/dist/model/ProviderCardTransactionOperation.d.ts +9 -0
- package/dist/model/ProviderCardTransactionOperation.js +10 -0
- package/dist/model/ProviderCardTransactionOperation.js.map +1 -0
- package/dist/model/ProviderTransferTransactionOperation.d.ts +9 -0
- package/dist/model/ProviderTransferTransactionOperation.js +11 -0
- package/dist/model/ProviderTransferTransactionOperation.js.map +1 -0
- package/dist/model/index.d.ts +14 -5
- package/dist/model/index.js +10 -1
- package/dist/model/index.js.map +1 -1
- package/index.ts +26 -8
- package/model/AbstractPaymentOperation.ts +16 -0
- package/model/AbstractProviderTransactionOperation.ts +12 -0
- package/model/DownloadCardReportRequest.ts +7 -0
- package/model/DownloadFileFormat.ts +9 -0
- package/model/DownloadOrganisationSearchRequest.ts +18 -0
- package/model/{ReconciliationReportUrlRequest.ts → DownloadReconciliationReportRequest.ts} +3 -2
- package/model/DownloadStatementReportRequest.ts +6 -0
- package/model/DownloadUserReportRequest.ts +7 -0
- package/model/GenericPaymentOperation.ts +16 -0
- package/model/MerchantDetailsV2.ts +15 -0
- package/model/OrganisationSearchRequest.ts +3 -0
- package/model/PaymentOperation.ts +18 -0
- package/model/PaymentResponse.ts +3 -1
- package/model/ProviderCardTransactionOperation.ts +12 -0
- package/model/ProviderTransferTransactionOperation.ts +14 -0
- package/model/index.ts +26 -8
- package/package.json +1 -1
- package/dist/model/CardReportUrlRequest.d.ts +0 -5
- package/dist/model/CardReportUrlRequest.js +0 -2
- package/dist/model/CardReportUrlRequest.js.map +0 -1
- package/dist/model/ReconciliationReportUrlRequest.js +0 -2
- package/dist/model/ReconciliationReportUrlRequest.js.map +0 -1
- package/dist/model/StatementReportUrlRequest.d.ts +0 -5
- package/dist/model/StatementReportUrlRequest.js +0 -2
- package/dist/model/StatementReportUrlRequest.js.map +0 -1
- package/dist/model/UserReportUrlRequest.d.ts +0 -5
- package/dist/model/UserReportUrlRequest.js +0 -2
- package/dist/model/UserReportUrlRequest.js.map +0 -1
- package/model/CardReportUrlRequest.ts +0 -6
- package/model/StatementReportUrlRequest.ts +0 -5
- package/model/UserReportUrlRequest.ts +0 -6
package/Client/Reports/index.ts
CHANGED
|
@@ -80,18 +80,21 @@ export class Reports {
|
|
|
80
80
|
async getStatementReportRow(rowId: string) {
|
|
81
81
|
return await this.connection.get<model.StatementReportResponseRow>(`statement/${rowId}`)
|
|
82
82
|
}
|
|
83
|
-
async getStatementReportUrl(request: model.
|
|
83
|
+
async getStatementReportUrl(request: model.DownloadStatementReportRequest) {
|
|
84
84
|
return await this.connection.post<model.ReportUrlResponse>(`statement/download`, request)
|
|
85
85
|
}
|
|
86
|
-
async getUserReportUrl(request: model.
|
|
86
|
+
async getUserReportUrl(request: model.DownloadUserReportRequest) {
|
|
87
87
|
return await this.connection.post<model.ReportUrlResponse>(`${this.folder}/user/download`, request)
|
|
88
88
|
}
|
|
89
|
-
async getCardReportUrl(request: model.
|
|
89
|
+
async getCardReportUrl(request: model.DownloadCardReportRequest) {
|
|
90
90
|
return await this.connection.post<model.ReportUrlResponse>(`${this.folder}/card/download`, request)
|
|
91
91
|
}
|
|
92
|
-
async getReconciliationReportUrl(request: model.
|
|
92
|
+
async getReconciliationReportUrl(request: model.DownloadReconciliationReportRequest) {
|
|
93
93
|
return await this.connection.post<model.ReportUrlResponse>(`${this.folder}/reconciliation/download`, request)
|
|
94
94
|
}
|
|
95
|
+
async getOrganisationReportUrl(request: model.DownloadOrganisationSearchRequest) {
|
|
96
|
+
return await this.connection.post<model.ReportUrlResponse>(`${this.folder}/organisation/download`, request)
|
|
97
|
+
}
|
|
95
98
|
static create(connection: Connection) {
|
|
96
99
|
return new Reports(connection)
|
|
97
100
|
}
|
|
@@ -23,16 +23,19 @@ export declare class Reports {
|
|
|
23
23
|
getStatementReportRow(rowId: string): Promise<model.StatementReportResponseRow | (model.ErrorResponse & {
|
|
24
24
|
status: 400 | 404 | 500 | 403 | 503;
|
|
25
25
|
})>;
|
|
26
|
-
getStatementReportUrl(request: model.
|
|
26
|
+
getStatementReportUrl(request: model.DownloadStatementReportRequest): Promise<model.ReportUrlResponse | (model.ErrorResponse & {
|
|
27
27
|
status: 400 | 404 | 500 | 403 | 503;
|
|
28
28
|
})>;
|
|
29
|
-
getUserReportUrl(request: model.
|
|
29
|
+
getUserReportUrl(request: model.DownloadUserReportRequest): Promise<model.ReportUrlResponse | (model.ErrorResponse & {
|
|
30
30
|
status: 400 | 404 | 500 | 403 | 503;
|
|
31
31
|
})>;
|
|
32
|
-
getCardReportUrl(request: model.
|
|
32
|
+
getCardReportUrl(request: model.DownloadCardReportRequest): Promise<model.ReportUrlResponse | (model.ErrorResponse & {
|
|
33
33
|
status: 400 | 404 | 500 | 403 | 503;
|
|
34
34
|
})>;
|
|
35
|
-
getReconciliationReportUrl(request: model.
|
|
35
|
+
getReconciliationReportUrl(request: model.DownloadReconciliationReportRequest): Promise<model.ReportUrlResponse | (model.ErrorResponse & {
|
|
36
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
37
|
+
})>;
|
|
38
|
+
getOrganisationReportUrl(request: model.DownloadOrganisationSearchRequest): Promise<model.ReportUrlResponse | (model.ErrorResponse & {
|
|
36
39
|
status: 400 | 404 | 500 | 403 | 503;
|
|
37
40
|
})>;
|
|
38
41
|
static create(connection: Connection): Reports;
|
|
@@ -59,6 +59,9 @@ export class Reports {
|
|
|
59
59
|
async getReconciliationReportUrl(request) {
|
|
60
60
|
return await this.connection.post(`${this.folder}/reconciliation/download`, request);
|
|
61
61
|
}
|
|
62
|
+
async getOrganisationReportUrl(request) {
|
|
63
|
+
return await this.connection.post(`${this.folder}/organisation/download`, request);
|
|
64
|
+
}
|
|
62
65
|
static create(connection) {
|
|
63
66
|
return new Reports(connection);
|
|
64
67
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Reports/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,aAAa,CAAA;AAGpC,MAAM,OAAO,OAAO;IAEnB,YAA6B,UAAsB;QAAtB,eAAU,GAAV,UAAU,CAAY;QADhC,WAAM,GAAG,SAAS,CAAA;IACiB,CAAC;IAEvD,KAAK,CAAC,cAAc,CAAC,KAAqB,EAAE,GAAmB;QAC9D,MAAM,OAAO,GAAG;YACf,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,KAAK;YAChC,IAAI,EAAE,KAAK;YACX,EAAE,EAAE,GAAG;YACP,MAAM,EAAE;gBACP,IAAI,EAAE,MAAM;aACZ;SACD,CAAA;QAED,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAA8B,2BAA2B,EAAE,OAAO,CAAC,CAAA;IACrG,CAAC;IAED,KAAK,CAAC,SAAS,CAAC,KAAqB,EAAE,GAAmB,EAAE,OAAe;QAC1E,MAAM,OAAO,GAAG;YACf,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,KAAK;YAChC,IAAI,EAAE,KAAK;YACX,EAAE,EAAE,GAAG;YACP,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE;gBACP,IAAI,EAAE,MAAM;aACZ;SACD,CAAA;QAED,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAyB,sBAAsB,EAAE,OAAO,CAAC,CAAA;IAC3F,CAAC;IAED,KAAK,CAAC,kBAAkB,CACvB,OAAqC,EACrC,IAAa,EACb,QAAiB;QAOjB,IAAI,MAAM,CAAA;QACV,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAClC,WAAW,EACX,OAAO,EACP;YACC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,QAAQ;SACd,CACD,CAAA;QACD,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,CAAC,MAAM,CAAC,IAAI,MAAM,IAAI,MAAM;YACtD,MAAM,GAAG,MAAM,CAAC,IAAI,CAAA;QACrB,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,yBAAyB,CAC9B,OAA4C,EAC5C,IAAa,EACb,QAAiB,EACjB,UAAoB;QAOpB,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAChC,2BAA2B,EAC3B,OAAO,EACP;YACC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,QAAQ;YACd,YAAY,EAAE,UAAU;SACxB,CACD,CAAA;IACF,CAAC;IACD,KAAK,CAAC,qBAAqB,CAAC,KAAa;QACxC,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAmC,aAAa,KAAK,EAAE,CAAC,CAAA;IACzF,CAAC;IACD,KAAK,CAAC,qBAAqB,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Reports/index.ts"],"names":[],"mappings":"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"}
|
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, CardOperation, CardOptionSearch,
|
|
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,
|
|
2
|
+
import { AbstractPaymentOperation, AbstractProviderTransactionOperation, 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, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeFlag, CardTypeInformation, CardTypeProfileResponse, CardTypeResponse, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypesResponse, CardUsage, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigTypesResponse, CreateCardRequest, CreateCardTypeProfileRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, DownloadCardReportRequest, DownloadFileFormat, DownloadOrganisationSearchRequest, DownloadReconciliationReportRequest, DownloadStatementReportRequest, DownloadUserReportRequest, EditCloseDateRequest, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginRequest, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantSearchRequest, MerchantType, MetadataFormat, MinimalBookingInfo, NonBeneficiaryTransferDestination, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, RelogWithNewSessionDetailsRequest, Report, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, SearchRolesetsRequest, SecurityConfig, Segment, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SummaryBookingInfoResponse, SummaryPaymentResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCardTypeProfileRequest, UpdateCategoryRequest, UpdateRolesetRequest, Usage, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth } from "./model";
|
|
3
|
+
export { Client, AbstractPaymentOperation, AbstractProviderTransactionOperation, 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, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeInformation, CardTypeProfileResponse, CardTypesResponse, CardTypeResponse, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeFlag, Usage, CardUsage, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigTypesResponse, CreateCardRequest, CreateCardTypeProfileRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, DownloadCardReportRequest, DownloadFileFormat, DownloadOrganisationSearchRequest, DownloadReconciliationReportRequest, DownloadStatementReportRequest, DownloadUserReportRequest, EditCloseDateRequest, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginRequest, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantSearchRequest, MerchantType, MetadataFormat, MinimalBookingInfo, NonBeneficiaryTransferDestination, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, RelogWithNewSessionDetailsRequest, Report, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduleEntry, CardSearch, ScheduledTaskRequest, SearchRolesetsRequest, Segment, SecurityConfig, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SummaryBookingInfoResponse, SummaryPaymentResponse, 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, 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, BeneficiaryRequest, 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, CardTypeFlag, CardTypeInformation, CardTypeProfileResponse, CardTypesConfig, CardTypeSpecification, CardUsage, CredentialRequest, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EditCloseDateRequest, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantType, MetadataFormat, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, SecurityConfig, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, Usage, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, } from "./model";
|
|
3
|
-
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryRequest, 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, CardTypeInformation, CardTypeProfileResponse, CardTypesConfig, CardTypeSpecification, CardTypeFlag, Usage, CardUsage, CredentialRequest, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EditCloseDateRequest, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantType, MetadataFormat, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, Segment, SecurityConfig, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, };
|
|
2
|
+
import { AbstractPaymentOperation, AbstractProviderTransactionOperation, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryRequest, 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, CardTypeFlag, CardTypeInformation, CardTypeProfileResponse, CardTypesConfig, CardTypeSpecification, CardUsage, CredentialRequest, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, DownloadFileFormat, DownloadOrganisationSearchRequest, EditCloseDateRequest, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantType, MetadataFormat, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, ScheduleEntry, SecurityConfig, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, Usage, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, } from "./model";
|
|
3
|
+
export { Client, AbstractPaymentOperation, AbstractProviderTransactionOperation, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryRequest, 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, CardTypeInformation, CardTypeProfileResponse, CardTypesConfig, CardTypeSpecification, CardTypeFlag, Usage, CardUsage, CredentialRequest, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, DownloadFileFormat, DownloadOrganisationSearchRequest, EditCloseDateRequest, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantType, MetadataFormat, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, ScheduleEntry, Segment, SecurityConfig, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, 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,EAIV,kBAAkB,EAClB,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,EAC1B,aAAa,
|
|
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
|
+
export interface AbstractPaymentOperation {
|
|
3
|
+
type: string;
|
|
4
|
+
timestamp: DateTime;
|
|
5
|
+
description?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace AbstractPaymentOperation {
|
|
8
|
+
const type: import("isly/dist/cjs/object").IslyObject<AbstractPaymentOperation, object>;
|
|
9
|
+
const is: (value: AbstractPaymentOperation | any) => value is AbstractPaymentOperation;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DateTime } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export var AbstractPaymentOperation;
|
|
4
|
+
(function (AbstractPaymentOperation) {
|
|
5
|
+
AbstractPaymentOperation.type = isly.object({
|
|
6
|
+
type: isly.string(),
|
|
7
|
+
timestamp: isly.fromIs("DateTime", DateTime.is),
|
|
8
|
+
description: isly.string().optional(),
|
|
9
|
+
});
|
|
10
|
+
AbstractPaymentOperation.is = AbstractPaymentOperation.type.is;
|
|
11
|
+
})(AbstractPaymentOperation || (AbstractPaymentOperation = {}));
|
|
12
|
+
//# sourceMappingURL=AbstractPaymentOperation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AbstractPaymentOperation.js","sourceRoot":"../","sources":["model/AbstractPaymentOperation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAO3B,MAAM,KAAW,wBAAwB,CAOxC;AAPD,WAAiB,wBAAwB;IAC3B,6BAAI,GAAG,IAAI,CAAC,MAAM,CAA2B;QACzD,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC;QAC/C,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KACrC,CAAC,CAAA;IACW,2BAAE,GAAG,yBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAPgB,wBAAwB,KAAxB,wBAAwB,QAOxC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AbstractPaymentOperation } from "./AbstractPaymentOperation";
|
|
2
|
+
import { BillingTransactionAmountPair } from "./BillingTransactionAmountPair";
|
|
3
|
+
export interface AbstractProviderTransactionOperation extends AbstractPaymentOperation {
|
|
4
|
+
amount: BillingTransactionAmountPair;
|
|
5
|
+
}
|
|
6
|
+
export declare namespace AbstractProviderTransactionOperation {
|
|
7
|
+
const type: import("isly/dist/cjs/object").IslyObject<AbstractProviderTransactionOperation, AbstractPaymentOperation>;
|
|
8
|
+
const is: (value: AbstractProviderTransactionOperation | any) => value is AbstractProviderTransactionOperation;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AbstractPaymentOperation } from "./AbstractPaymentOperation";
|
|
2
|
+
import { BillingTransactionAmountPair } from "./BillingTransactionAmountPair";
|
|
3
|
+
export var AbstractProviderTransactionOperation;
|
|
4
|
+
(function (AbstractProviderTransactionOperation) {
|
|
5
|
+
AbstractProviderTransactionOperation.type = AbstractPaymentOperation.type.extend({
|
|
6
|
+
amount: BillingTransactionAmountPair.type,
|
|
7
|
+
});
|
|
8
|
+
AbstractProviderTransactionOperation.is = AbstractProviderTransactionOperation.type.is;
|
|
9
|
+
})(AbstractProviderTransactionOperation || (AbstractProviderTransactionOperation = {}));
|
|
10
|
+
//# sourceMappingURL=AbstractProviderTransactionOperation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AbstractProviderTransactionOperation.js","sourceRoot":"../","sources":["model/AbstractProviderTransactionOperation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AAK7E,MAAM,KAAW,oCAAoC,CAKpD;AALD,WAAiB,oCAAoC;IACvC,yCAAI,GAAG,wBAAwB,CAAC,IAAI,CAAC,MAAM,CAAuC;QAC9F,MAAM,EAAE,4BAA4B,CAAC,IAAI;KACzC,CAAC,CAAA;IACW,uCAAE,GAAG,qCAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EALgB,oCAAoC,KAApC,oCAAoC,QAKpD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadCardReportRequest.js","sourceRoot":"../","sources":["model/DownloadCardReportRequest.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export type DownloadFileFormat = typeof DownloadFileFormat.values[number];
|
|
3
|
+
export declare namespace DownloadFileFormat {
|
|
4
|
+
const values: readonly ["CSV", "PDF", "HTML"];
|
|
5
|
+
const type: isly.Type<"CSV" | "PDF" | "HTML">;
|
|
6
|
+
const is: (value: any | ("CSV" | "PDF" | "HTML")) => value is "CSV" | "PDF" | "HTML";
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var DownloadFileFormat;
|
|
3
|
+
(function (DownloadFileFormat) {
|
|
4
|
+
DownloadFileFormat.values = ["CSV", "PDF", "HTML"];
|
|
5
|
+
DownloadFileFormat.type = isly.string(DownloadFileFormat.values);
|
|
6
|
+
DownloadFileFormat.is = DownloadFileFormat.type.is;
|
|
7
|
+
})(DownloadFileFormat || (DownloadFileFormat = {}));
|
|
8
|
+
//# sourceMappingURL=DownloadFileFormat.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadFileFormat.js","sourceRoot":"../","sources":["model/DownloadFileFormat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAI3B,MAAM,KAAW,kBAAkB,CAIlC;AAJD,WAAiB,kBAAkB;IACrB,yBAAM,GAAG,CAAC,KAAK,EAAE,KAAK,EAAE,MAAM,CAAU,CAAA;IACxC,uBAAI,GAAG,IAAI,CAAC,MAAM,CAAC,mBAAA,MAAM,CAAC,CAAA;IAC1B,qBAAE,GAAG,mBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAJgB,kBAAkB,KAAlB,kBAAkB,QAIlC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DownloadFileFormat } from "./DownloadFileFormat";
|
|
2
|
+
import { OrganisationSearchRequest } from "./OrganisationSearchRequest";
|
|
3
|
+
export interface DownloadOrganisationSearchRequest extends OrganisationSearchRequest {
|
|
4
|
+
fileFormat: DownloadFileFormat;
|
|
5
|
+
locale?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace DownloadOrganisationSearchRequest {
|
|
8
|
+
const type: import("isly/dist/cjs/object").IslyObject<DownloadOrganisationSearchRequest, DownloadOrganisationSearchRequest>;
|
|
9
|
+
const is: (value: DownloadOrganisationSearchRequest | any) => value is DownloadOrganisationSearchRequest;
|
|
10
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { DownloadFileFormat } from "./DownloadFileFormat";
|
|
3
|
+
import { OrganisationSearchRequest } from "./OrganisationSearchRequest";
|
|
4
|
+
export var DownloadOrganisationSearchRequest;
|
|
5
|
+
(function (DownloadOrganisationSearchRequest) {
|
|
6
|
+
DownloadOrganisationSearchRequest.type = OrganisationSearchRequest.type
|
|
7
|
+
.extend({
|
|
8
|
+
fileFormat: DownloadFileFormat.type,
|
|
9
|
+
locale: isly.string().optional(),
|
|
10
|
+
})
|
|
11
|
+
.extend(OrganisationSearchRequest.type);
|
|
12
|
+
DownloadOrganisationSearchRequest.is = DownloadOrganisationSearchRequest.type.is;
|
|
13
|
+
})(DownloadOrganisationSearchRequest || (DownloadOrganisationSearchRequest = {}));
|
|
14
|
+
//# sourceMappingURL=DownloadOrganisationSearchRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadOrganisationSearchRequest.js","sourceRoot":"../","sources":["model/DownloadOrganisationSearchRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAA;AAOvE,MAAM,KAAW,iCAAiC,CAQjD;AARD,WAAiB,iCAAiC;IACpC,sCAAI,GAAG,yBAAyB,CAAC,IAAI;SAChD,MAAM,CAAoC;QAC1C,UAAU,EAAE,kBAAkB,CAAC,IAAI;QACnC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAChC,CAAC;SACD,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAA;IAC3B,oCAAE,GAAG,kCAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EARgB,iCAAiC,KAAjC,iCAAiC,QAQjD"}
|
package/dist/model/{ReconciliationReportUrlRequest.d.ts → DownloadReconciliationReportRequest.d.ts}
RENAMED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as isoly from "isoly";
|
|
2
|
+
import { DownloadFileFormat } from "./DownloadFileFormat";
|
|
2
3
|
import { ProviderCode } from "./ProviderCode";
|
|
3
|
-
export interface
|
|
4
|
-
fileFormat:
|
|
4
|
+
export interface DownloadReconciliationReportRequest {
|
|
5
|
+
fileFormat: DownloadFileFormat;
|
|
5
6
|
locale?: string;
|
|
6
7
|
providerCode?: ProviderCode;
|
|
7
8
|
providerAccountId?: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadReconciliationReportRequest.js","sourceRoot":"../","sources":["model/DownloadReconciliationReportRequest.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadStatementReportRequest.js","sourceRoot":"../","sources":["model/DownloadStatementReportRequest.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadUserReportRequest.js","sourceRoot":"../","sources":["model/DownloadUserReportRequest.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AbstractPaymentOperation } from "./AbstractPaymentOperation";
|
|
2
|
+
import { AmountPair } from "./AmountPair";
|
|
3
|
+
export interface GenericPaymentOperation extends AbstractPaymentOperation {
|
|
4
|
+
amount?: AmountPair;
|
|
5
|
+
createdBy: string;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace GenericPaymentOperation {
|
|
8
|
+
const type: import("isly/dist/cjs/object").IslyObject<GenericPaymentOperation, AbstractPaymentOperation>;
|
|
9
|
+
const is: (value: GenericPaymentOperation | any) => value is GenericPaymentOperation;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { AbstractPaymentOperation } from "./AbstractPaymentOperation";
|
|
3
|
+
import { AmountPair } from "./AmountPair";
|
|
4
|
+
export var GenericPaymentOperation;
|
|
5
|
+
(function (GenericPaymentOperation) {
|
|
6
|
+
GenericPaymentOperation.type = AbstractPaymentOperation.type.extend({
|
|
7
|
+
amount: isly.fromIs("AmountPair", AmountPair.is).optional(),
|
|
8
|
+
createdBy: isly.string(),
|
|
9
|
+
});
|
|
10
|
+
GenericPaymentOperation.is = GenericPaymentOperation.type.is;
|
|
11
|
+
})(GenericPaymentOperation || (GenericPaymentOperation = {}));
|
|
12
|
+
//# sourceMappingURL=GenericPaymentOperation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GenericPaymentOperation.js","sourceRoot":"../","sources":["model/GenericPaymentOperation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAOzC,MAAM,KAAW,uBAAuB,CAMvC;AAND,WAAiB,uBAAuB;IAC1B,4BAAI,GAAG,wBAAwB,CAAC,IAAI,CAAC,MAAM,CAA0B;QACjF,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,UAAU,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QAC3D,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;KACxB,CAAC,CAAA;IACW,0BAAE,GAAG,wBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EANgB,uBAAuB,KAAvB,uBAAuB,QAMvC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface MerchantDetailsV2 {
|
|
2
|
+
mcc?: string;
|
|
3
|
+
name?: string;
|
|
4
|
+
country?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare namespace MerchantDetailsV2 {
|
|
7
|
+
const type: import("isly/dist/cjs/object").IslyObject<MerchantDetailsV2, object>;
|
|
8
|
+
const is: (value: MerchantDetailsV2 | any) => value is MerchantDetailsV2;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var MerchantDetailsV2;
|
|
3
|
+
(function (MerchantDetailsV2) {
|
|
4
|
+
MerchantDetailsV2.type = isly.object({
|
|
5
|
+
mcc: isly.string().optional(),
|
|
6
|
+
name: isly.string().optional(),
|
|
7
|
+
country: isly.string().optional(),
|
|
8
|
+
});
|
|
9
|
+
MerchantDetailsV2.is = MerchantDetailsV2.type.is;
|
|
10
|
+
})(MerchantDetailsV2 || (MerchantDetailsV2 = {}));
|
|
11
|
+
//# sourceMappingURL=MerchantDetailsV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MerchantDetailsV2.js","sourceRoot":"../","sources":["model/MerchantDetailsV2.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAO3B,MAAM,KAAW,iBAAiB,CAOjC;AAPD,WAAiB,iBAAiB;IACpB,sBAAI,GAAG,IAAI,CAAC,MAAM,CAAoB;QAClD,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC7B,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC9B,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KACjC,CAAC,CAAA;IACW,oBAAE,GAAG,kBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAPgB,iBAAiB,KAAjB,iBAAiB,QAOjC"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { OrganisationFlag } from "./OrganisationFlag";
|
|
1
2
|
import { OrganisationStatusV2 } from "./OrganisationStatusV2";
|
|
2
3
|
import { ProviderCode } from "./ProviderCode";
|
|
3
4
|
export interface OrganisationSearchRequest {
|
|
4
5
|
codes?: string[];
|
|
5
6
|
activeProviders?: ProviderCode[];
|
|
6
7
|
statuses?: OrganisationStatusV2[];
|
|
8
|
+
channelPartners?: OrganisationFlag[];
|
|
7
9
|
includeConfig?: boolean;
|
|
8
10
|
includeCredentials?: boolean;
|
|
9
11
|
includeCardTypes?: boolean;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { isly } from "isly";
|
|
2
|
+
import { OrganisationFlag } from "./OrganisationFlag";
|
|
2
3
|
import { OrganisationStatusV2 } from "./OrganisationStatusV2";
|
|
3
4
|
import { ProviderCode } from "./ProviderCode";
|
|
4
5
|
export var OrganisationSearchRequest;
|
|
@@ -7,6 +8,7 @@ export var OrganisationSearchRequest;
|
|
|
7
8
|
codes: isly.string().array().optional(),
|
|
8
9
|
activeProviders: ProviderCode.type.array().optional(),
|
|
9
10
|
statuses: OrganisationStatusV2.type.array().optional(),
|
|
11
|
+
channelPartners: OrganisationFlag.type.array().optional(),
|
|
10
12
|
includeConfig: isly.boolean().optional(),
|
|
11
13
|
includeCredentials: isly.boolean().optional(),
|
|
12
14
|
includeCardTypes: isly.boolean().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OrganisationSearchRequest.js","sourceRoot":"../","sources":["model/OrganisationSearchRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"OrganisationSearchRequest.js","sourceRoot":"../","sources":["model/OrganisationSearchRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AACrD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAY7C,MAAM,KAAW,yBAAyB,CAWzC;AAXD,WAAiB,yBAAyB;IAC5B,8BAAI,GAAG,IAAI,CAAC,MAAM,CAA4B;QAC1D,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QACvC,eAAe,EAAE,YAAY,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QACrD,QAAQ,EAAE,oBAAoB,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QACtD,eAAe,EAAE,gBAAgB,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QACzD,aAAa,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;QACxC,kBAAkB,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;QAC7C,gBAAgB,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;KAC3C,CAAC,CAAA;IACW,4BAAE,GAAG,0BAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAXgB,yBAAyB,KAAzB,yBAAyB,QAWzC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { GenericPaymentOperation } from "./GenericPaymentOperation";
|
|
3
|
+
import { ProviderCardTransactionOperation } from "./ProviderCardTransactionOperation";
|
|
4
|
+
import { ProviderTransferTransactionOperation } from "./ProviderTransferTransactionOperation";
|
|
5
|
+
export type PaymentOperation = GenericPaymentOperation | ProviderTransferTransactionOperation | ProviderCardTransactionOperation;
|
|
6
|
+
export declare namespace PaymentOperation {
|
|
7
|
+
const type: isly.Type<GenericPaymentOperation | ProviderCardTransactionOperation | ProviderTransferTransactionOperation>;
|
|
8
|
+
const is: (value: any | (GenericPaymentOperation | ProviderCardTransactionOperation | ProviderTransferTransactionOperation)) => value is GenericPaymentOperation | ProviderCardTransactionOperation | ProviderTransferTransactionOperation;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { GenericPaymentOperation } from "./GenericPaymentOperation";
|
|
3
|
+
import { ProviderCardTransactionOperation } from "./ProviderCardTransactionOperation";
|
|
4
|
+
import { ProviderTransferTransactionOperation } from "./ProviderTransferTransactionOperation";
|
|
5
|
+
export var PaymentOperation;
|
|
6
|
+
(function (PaymentOperation) {
|
|
7
|
+
PaymentOperation.type = isly.union(GenericPaymentOperation.type, ProviderTransferTransactionOperation.type, ProviderCardTransactionOperation.type);
|
|
8
|
+
PaymentOperation.is = PaymentOperation.type.is;
|
|
9
|
+
})(PaymentOperation || (PaymentOperation = {}));
|
|
10
|
+
//# sourceMappingURL=PaymentOperation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentOperation.js","sourceRoot":"../","sources":["model/PaymentOperation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AACnE,OAAO,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAA;AACrF,OAAO,EAAE,oCAAoC,EAAE,MAAM,wCAAwC,CAAA;AAO7F,MAAM,KAAW,gBAAgB,CAOhC;AAPD,WAAiB,gBAAgB;IACnB,qBAAI,GAAG,IAAI,CAAC,KAAK,CAC7B,uBAAuB,CAAC,IAAI,EAC5B,oCAAoC,CAAC,IAAI,EACzC,gCAAgC,CAAC,IAAI,CACrC,CAAA;IACY,mBAAE,GAAG,iBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAPgB,gBAAgB,KAAhB,gBAAgB,QAOhC"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { BasePaymentResponse } from "./BasePaymentResponse";
|
|
2
2
|
import { CardResponseV3 } from "./CardResponseV3";
|
|
3
|
+
import { PaymentOperation } from "./PaymentOperation";
|
|
3
4
|
import { TransferResponseV3 } from "./TransferResponseV3";
|
|
4
5
|
export interface PaymentResponse extends BasePaymentResponse {
|
|
5
6
|
card?: CardResponseV3;
|
|
6
7
|
transfer?: TransferResponseV3;
|
|
8
|
+
operations?: PaymentOperation[];
|
|
7
9
|
}
|
|
8
10
|
export declare namespace PaymentResponse {
|
|
9
11
|
const type: import("isly/dist/cjs/object").IslyObject<PaymentResponse, BasePaymentResponse>;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { isly } from "isly";
|
|
2
2
|
import { BasePaymentResponse } from "./BasePaymentResponse";
|
|
3
3
|
import { CardResponseV3 } from "./CardResponseV3";
|
|
4
|
+
import { PaymentOperation } from "./PaymentOperation";
|
|
4
5
|
import { TransferResponseV3 } from "./TransferResponseV3";
|
|
5
6
|
export var PaymentResponse;
|
|
6
7
|
(function (PaymentResponse) {
|
|
7
8
|
PaymentResponse.type = BasePaymentResponse.type.extend({
|
|
8
9
|
card: isly.fromIs("CardResponseV3", CardResponseV3.is).optional(),
|
|
9
10
|
transfer: isly.fromIs("TransferResponseV3", TransferResponseV3.is).optional(),
|
|
11
|
+
operations: isly.array(PaymentOperation.type).optional(),
|
|
10
12
|
});
|
|
11
13
|
PaymentResponse.is = PaymentResponse.type.is;
|
|
12
14
|
})(PaymentResponse || (PaymentResponse = {}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PaymentResponse.js","sourceRoot":"../","sources":["model/PaymentResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAMzD,MAAM,KAAW,eAAe,
|
|
1
|
+
{"version":3,"file":"PaymentResponse.js","sourceRoot":"../","sources":["model/PaymentResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AACrD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAMzD,MAAM,KAAW,eAAe,CAO/B;AAPD,WAAiB,eAAe;IAClB,oBAAI,GAAG,mBAAmB,CAAC,IAAI,CAAC,MAAM,CAAkB;QACpE,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,cAAc,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QACjE,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QAC7E,UAAU,EAAE,IAAI,CAAC,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;KACxD,CAAC,CAAA;IACW,kBAAE,GAAG,gBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAPgB,eAAe,KAAf,eAAe,QAO/B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AbstractProviderTransactionOperation } from "./AbstractProviderTransactionOperation";
|
|
2
|
+
import { MerchantDetailsV2 } from "./MerchantDetailsV2";
|
|
3
|
+
export interface ProviderCardTransactionOperation extends AbstractProviderTransactionOperation {
|
|
4
|
+
merchant?: MerchantDetailsV2;
|
|
5
|
+
}
|
|
6
|
+
export declare namespace ProviderCardTransactionOperation {
|
|
7
|
+
const type: import("isly/dist/cjs/object").IslyObject<ProviderCardTransactionOperation, AbstractProviderTransactionOperation>;
|
|
8
|
+
const is: (value: ProviderCardTransactionOperation | any) => value is ProviderCardTransactionOperation;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AbstractProviderTransactionOperation } from "./AbstractProviderTransactionOperation";
|
|
2
|
+
import { MerchantDetailsV2 } from "./MerchantDetailsV2";
|
|
3
|
+
export var ProviderCardTransactionOperation;
|
|
4
|
+
(function (ProviderCardTransactionOperation) {
|
|
5
|
+
ProviderCardTransactionOperation.type = AbstractProviderTransactionOperation.type.extend({
|
|
6
|
+
merchant: MerchantDetailsV2.type.optional(),
|
|
7
|
+
});
|
|
8
|
+
ProviderCardTransactionOperation.is = ProviderCardTransactionOperation.type.is;
|
|
9
|
+
})(ProviderCardTransactionOperation || (ProviderCardTransactionOperation = {}));
|
|
10
|
+
//# sourceMappingURL=ProviderCardTransactionOperation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProviderCardTransactionOperation.js","sourceRoot":"../","sources":["model/ProviderCardTransactionOperation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oCAAoC,EAAE,MAAM,wCAAwC,CAAA;AAC7F,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAKvD,MAAM,KAAW,gCAAgC,CAKhD;AALD,WAAiB,gCAAgC;IACnC,qCAAI,GAAG,oCAAoC,CAAC,IAAI,CAAC,MAAM,CAAmC;QACtG,QAAQ,EAAE,iBAAiB,CAAC,IAAI,CAAC,QAAQ,EAAE;KAC3C,CAAC,CAAA;IACW,mCAAE,GAAG,iCAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EALgB,gCAAgC,KAAhC,gCAAgC,QAKhD"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AbstractProviderTransactionOperation } from "./AbstractProviderTransactionOperation";
|
|
2
|
+
export interface ProviderTransferTransactionOperation extends AbstractProviderTransactionOperation {
|
|
3
|
+
reference?: string;
|
|
4
|
+
payee?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare namespace ProviderTransferTransactionOperation {
|
|
7
|
+
const type: import("isly/dist/cjs/object").IslyObject<ProviderTransferTransactionOperation, AbstractProviderTransactionOperation>;
|
|
8
|
+
const is: (value: ProviderTransferTransactionOperation | any) => value is ProviderTransferTransactionOperation;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { AbstractProviderTransactionOperation } from "./AbstractProviderTransactionOperation";
|
|
3
|
+
export var ProviderTransferTransactionOperation;
|
|
4
|
+
(function (ProviderTransferTransactionOperation) {
|
|
5
|
+
ProviderTransferTransactionOperation.type = AbstractProviderTransactionOperation.type.extend({
|
|
6
|
+
reference: isly.string().optional(),
|
|
7
|
+
payee: isly.string().optional(),
|
|
8
|
+
});
|
|
9
|
+
ProviderTransferTransactionOperation.is = ProviderTransferTransactionOperation.type.is;
|
|
10
|
+
})(ProviderTransferTransactionOperation || (ProviderTransferTransactionOperation = {}));
|
|
11
|
+
//# sourceMappingURL=ProviderTransferTransactionOperation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProviderTransferTransactionOperation.js","sourceRoot":"../","sources":["model/ProviderTransferTransactionOperation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,oCAAoC,EAAE,MAAM,wCAAwC,CAAA;AAM7F,MAAM,KAAW,oCAAoC,CAMpD;AAND,WAAiB,oCAAoC;IACvC,yCAAI,GAAG,oCAAoC,CAAC,IAAI,CAAC,MAAM,CAAuC;QAC1G,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACnC,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC/B,CAAC,CAAA;IACW,uCAAE,GAAG,qCAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EANgB,oCAAoC,KAApC,oCAAoC,QAMpD"}
|