@pax2pay/client 0.9.1 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Client/Reports/index.ts +26 -0
- package/dist/Client/Reports/index.d.ts +24 -0
- package/dist/Client/Reports/index.js +24 -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/DayOfWeek.d.ts +7 -0
- package/dist/model/DayOfWeek.js +8 -0
- package/dist/model/DayOfWeek.js.map +1 -0
- package/dist/model/DestinationType.d.ts +7 -0
- package/dist/model/DestinationType.js +8 -0
- package/dist/model/DestinationType.js.map +1 -0
- package/dist/model/EmailReportFileDestination.d.ts +9 -0
- package/dist/model/EmailReportFileDestination.js +11 -0
- package/dist/model/EmailReportFileDestination.js.map +1 -0
- package/dist/model/FundingAccountTransferDestinationResponse.d.ts +1 -1
- package/dist/model/FundingAccountTransferDestinationResponse.js +2 -4
- package/dist/model/FundingAccountTransferDestinationResponse.js.map +1 -1
- package/dist/model/Report/ReportFileDestination.d.ts +14 -0
- package/dist/model/Report/ReportFileDestination.js +10 -0
- package/dist/model/Report/ReportFileDestination.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionFrequencyRequest.d.ts +11 -0
- package/dist/model/Report/ReportSubscriptionFrequencyRequest.js +13 -0
- package/dist/model/Report/ReportSubscriptionFrequencyRequest.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionFrequencyType.d.ts +7 -0
- package/dist/model/Report/ReportSubscriptionFrequencyType.js +8 -0
- package/dist/model/Report/ReportSubscriptionFrequencyType.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionInvocationOutcome.d.ts +7 -0
- package/dist/model/Report/ReportSubscriptionInvocationOutcome.js +8 -0
- package/dist/model/Report/ReportSubscriptionInvocationOutcome.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionInvocationResponse.d.ts +11 -0
- package/dist/model/Report/ReportSubscriptionInvocationResponse.js +13 -0
- package/dist/model/Report/ReportSubscriptionInvocationResponse.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionRequest.d.ts +16 -0
- package/dist/model/Report/ReportSubscriptionRequest.js +18 -0
- package/dist/model/Report/ReportSubscriptionRequest.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionResponse.d.ts +21 -0
- package/dist/model/Report/ReportSubscriptionResponse.js +23 -0
- package/dist/model/Report/ReportSubscriptionResponse.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionStatus.d.ts +7 -0
- package/dist/model/Report/ReportSubscriptionStatus.js +8 -0
- package/dist/model/Report/ReportSubscriptionStatus.js.map +1 -0
- package/dist/model/Report/ReportType.d.ts +7 -0
- package/dist/model/Report/ReportType.js +8 -0
- package/dist/model/Report/ReportType.js.map +1 -0
- package/dist/model/SftpReportFileDestination.d.ts +13 -0
- package/dist/model/SftpReportFileDestination.js +15 -0
- package/dist/model/SftpReportFileDestination.js.map +1 -0
- package/dist/model/index.d.ts +14 -1
- package/dist/model/index.js +14 -1
- package/dist/model/index.js.map +1 -1
- package/index.ts +27 -1
- package/model/DayOfWeek.ts +9 -0
- package/model/DestinationType.ts +9 -0
- package/model/EmailReportFileDestination.ts +15 -0
- package/model/FundingAccountTransferDestinationResponse.ts +4 -6
- package/model/Report/ReportFileDestination.ts +23 -0
- package/model/Report/ReportSubscriptionFrequencyRequest.ts +17 -0
- package/model/Report/ReportSubscriptionFrequencyType.ts +9 -0
- package/model/Report/ReportSubscriptionInvocationOutcome.ts +9 -0
- package/model/Report/ReportSubscriptionInvocationResponse.ts +17 -0
- package/model/Report/ReportSubscriptionRequest.ts +24 -0
- package/model/Report/ReportSubscriptionResponse.ts +34 -0
- package/model/Report/ReportSubscriptionStatus.ts +9 -0
- package/model/Report/ReportType.ts +8 -0
- package/model/SftpReportFileDestination.ts +23 -0
- package/model/index.ts +28 -2
- package/package.json +1 -1
- package/model/Report/ChargeBackItem.ts +0 -33
package/Client/Reports/index.ts
CHANGED
|
@@ -95,6 +95,32 @@ export class Reports {
|
|
|
95
95
|
async getOrganisationReportUrl(request: model.DownloadOrganisationSearchRequest) {
|
|
96
96
|
return await this.connection.post<model.DownloadableResponse>(`${this.folder}/organisation/download`, request)
|
|
97
97
|
}
|
|
98
|
+
async getInvocationsWithId(id: string) {
|
|
99
|
+
return await this.connection.get<model.ReportSubscriptionInvocationResponse[]>(
|
|
100
|
+
`${this.folder}/subscription/${id}/invocations`
|
|
101
|
+
)
|
|
102
|
+
}
|
|
103
|
+
async invokeSubscriptionWithId(id: string) {
|
|
104
|
+
return await this.connection.get<model.ReportSubscriptionResponse[]>(`${this.folder}/subscription/${id}/invoke`)
|
|
105
|
+
}
|
|
106
|
+
async invokeSubscriptions() {
|
|
107
|
+
return await this.connection.get<model.ReportSubscriptionResponse>(`${this.folder}/subscription/invoke`)
|
|
108
|
+
}
|
|
109
|
+
async createSubscription(request: model.ReportSubscriptionRequest) {
|
|
110
|
+
return await this.connection.post<model.ReportSubscriptionResponse>(`${this.folder}/subscription`, request)
|
|
111
|
+
}
|
|
112
|
+
async updateSubscriptionWithId(id: string, request: model.ReportSubscriptionRequest) {
|
|
113
|
+
return await this.connection.put<model.ReportSubscriptionResponse>(`${this.folder}/subscription/${id}`, request)
|
|
114
|
+
}
|
|
115
|
+
async deleteSubscriptionWithId(id: string) {
|
|
116
|
+
return await this.connection.remove<model.ReportSubscriptionResponse>(`${this.folder}/subscription/${id}`)
|
|
117
|
+
}
|
|
118
|
+
async getSubscriptionWithId(id: string) {
|
|
119
|
+
return await this.connection.get<model.ReportSubscriptionResponse>(`${this.folder}/subscription/${id}`)
|
|
120
|
+
}
|
|
121
|
+
async getSubscriptions() {
|
|
122
|
+
return await this.connection.get<model.ReportSubscriptionResponse[]>(`${this.folder}/subscription`)
|
|
123
|
+
}
|
|
98
124
|
static create(connection: Connection) {
|
|
99
125
|
return new Reports(connection)
|
|
100
126
|
}
|
|
@@ -38,5 +38,29 @@ export declare class Reports {
|
|
|
38
38
|
getOrganisationReportUrl(request: model.DownloadOrganisationSearchRequest): Promise<model.DownloadableResponse | (model.ErrorResponse & {
|
|
39
39
|
status: 400 | 404 | 500 | 403 | 503;
|
|
40
40
|
})>;
|
|
41
|
+
getInvocationsWithId(id: string): Promise<(model.ErrorResponse & {
|
|
42
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
43
|
+
}) | model.ReportSubscriptionInvocationResponse[]>;
|
|
44
|
+
invokeSubscriptionWithId(id: string): Promise<(model.ErrorResponse & {
|
|
45
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
46
|
+
}) | model.ReportSubscriptionResponse[]>;
|
|
47
|
+
invokeSubscriptions(): Promise<model.ReportSubscriptionResponse | (model.ErrorResponse & {
|
|
48
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
49
|
+
})>;
|
|
50
|
+
createSubscription(request: model.ReportSubscriptionRequest): Promise<model.ReportSubscriptionResponse | (model.ErrorResponse & {
|
|
51
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
52
|
+
})>;
|
|
53
|
+
updateSubscriptionWithId(id: string, request: model.ReportSubscriptionRequest): Promise<model.ReportSubscriptionResponse | (model.ErrorResponse & {
|
|
54
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
55
|
+
})>;
|
|
56
|
+
deleteSubscriptionWithId(id: string): Promise<model.ReportSubscriptionResponse | (model.ErrorResponse & {
|
|
57
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
58
|
+
})>;
|
|
59
|
+
getSubscriptionWithId(id: string): Promise<model.ReportSubscriptionResponse | (model.ErrorResponse & {
|
|
60
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
61
|
+
})>;
|
|
62
|
+
getSubscriptions(): Promise<(model.ErrorResponse & {
|
|
63
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
64
|
+
}) | model.ReportSubscriptionResponse[]>;
|
|
41
65
|
static create(connection: Connection): Reports;
|
|
42
66
|
}
|
|
@@ -62,6 +62,30 @@ export class Reports {
|
|
|
62
62
|
async getOrganisationReportUrl(request) {
|
|
63
63
|
return await this.connection.post(`${this.folder}/organisation/download`, request);
|
|
64
64
|
}
|
|
65
|
+
async getInvocationsWithId(id) {
|
|
66
|
+
return await this.connection.get(`${this.folder}/subscription/${id}/invocations`);
|
|
67
|
+
}
|
|
68
|
+
async invokeSubscriptionWithId(id) {
|
|
69
|
+
return await this.connection.get(`${this.folder}/subscription/${id}/invoke`);
|
|
70
|
+
}
|
|
71
|
+
async invokeSubscriptions() {
|
|
72
|
+
return await this.connection.get(`${this.folder}/subscription/invoke`);
|
|
73
|
+
}
|
|
74
|
+
async createSubscription(request) {
|
|
75
|
+
return await this.connection.post(`${this.folder}/subscription`, request);
|
|
76
|
+
}
|
|
77
|
+
async updateSubscriptionWithId(id, request) {
|
|
78
|
+
return await this.connection.put(`${this.folder}/subscription/${id}`, request);
|
|
79
|
+
}
|
|
80
|
+
async deleteSubscriptionWithId(id) {
|
|
81
|
+
return await this.connection.remove(`${this.folder}/subscription/${id}`);
|
|
82
|
+
}
|
|
83
|
+
async getSubscriptionWithId(id) {
|
|
84
|
+
return await this.connection.get(`${this.folder}/subscription/${id}`);
|
|
85
|
+
}
|
|
86
|
+
async getSubscriptions() {
|
|
87
|
+
return await this.connection.get(`${this.folder}/subscription`);
|
|
88
|
+
}
|
|
65
89
|
static create(connection) {
|
|
66
90
|
return new Reports(connection);
|
|
67
91
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Reports/index.ts"],"names":[],"mappings":"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"}
|
|
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 { AbstractBeneficiaryRequest, AbstractLoginRequest, AbstractPaymentOperation, AbstractProviderTransactionOperation, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, AvailableCardTypesHasResponse, AvailableCardTypesResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardOperation, CardOptionSearch, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardState, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardTypeFlag, CardTypeInformation, CardTypeRequestAvailabilityType, CardTypeResponse, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypesResponse, CardUsage, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigTypesResponse, ConfirmationOfPayeeAccountType, ConfirmationOfPayeeRequest, ConfirmationOfPayeeResponse, ConfirmationOfPayeeResponseStatus, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, DownloadableResponse, DownloadCardReportRequest, DownloadFileFormat, DownloadOrganisationSearchRequest, DownloadReconciliationReportRequest, DownloadStatementReportRequest, DownloadUserReportRequest, EditCloseDateRequest, EditPaymentAmountRequest, EditPaymentAmountScheduleRequest, EditPaymentCloseDateRequest, EditPaymentMetadataRequest, EditPaymentScheduleRequest, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExistingBeneficiaryRequest, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, ForcedSettlementNotificationConfig, FraudEmailConfig, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingAccountTransferDestinationResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, Limit, LoginRequest, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantResponseStatus, MerchantSearchRequest, MerchantType, MetadataFormat, MetadataRequest, MetadataResponse, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationResponseV2, OrganisationSearchRequest, OrganisationStatus, OrganisationStatusV2, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentOperationType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, RelogWithNewSessionDetailsRequest, Report, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchBeneficiaryRequest, SearchRolesetsRequest, SecurityConfig, Segment, SetAvailableCardTypesRequest, SsoLoginRequest, SsoProviderConfig, SsoProviderType, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SummaryBookingInfoResponse, SummaryPaymentResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TierFeatureResponse, TierID, TierLimitResponse, TierResponse, TransactionResponse, TransactionType, TransferDestinationAddressType, TransferDestinationRequest, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCategoryRequest, UpdateMerchantRequest, UpdateRolesetRequest, Usage, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth } from "./model";
|
|
3
|
-
export { AbstractBeneficiaryRequest, AbstractLoginRequest, AbstractPaymentOperation, AbstractProviderTransactionOperation, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, AvailableCardTypesHasResponse, AvailableCardTypesResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardOperation, CardOptionSearch, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardState, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardTypeRequestAvailabilityType, CardTypeInformation, CardTypesResponse, CardTypeResponse, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeFlag, CardUsage, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, Client, ConfigMatchesRequest, ConfigMatchesResponse, ConfigTypesResponse, ConfirmationOfPayeeAccountType, ConfirmationOfPayeeRequest, ConfirmationOfPayeeResponse, ConfirmationOfPayeeResponseStatus, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, DownloadCardReportRequest, DownloadFileFormat, DownloadOrganisationSearchRequest, DownloadReconciliationReportRequest, DownloadStatementReportRequest, DownloadUserReportRequest, EditCloseDateRequest, EditPaymentAmountRequest, EditPaymentAmountScheduleRequest, EditPaymentCloseDateRequest, EditPaymentMetadataRequest, EditPaymentScheduleRequest, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExistingBeneficiaryRequest, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, ForcedSettlementNotificationConfig, FraudEmailConfig, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingAccountTransferDestinationResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, Limit, LoginRequest, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantResponseStatus, MerchantSearchRequest, MerchantType, MetadataFormat, MetadataRequest, MetadataResponse, TransferDestinationRequest, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationResponseV2, OrganisationStatus, OrganisationStatusV2, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentOperationType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, RelogWithNewSessionDetailsRequest, Report,
|
|
2
|
+
import { AbstractBeneficiaryRequest, AbstractLoginRequest, AbstractPaymentOperation, AbstractProviderTransactionOperation, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, AvailableCardTypesHasResponse, AvailableCardTypesResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardOperation, CardOptionSearch, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardState, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardTypeFlag, CardTypeInformation, CardTypeRequestAvailabilityType, CardTypeResponse, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypesResponse, CardUsage, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigTypesResponse, ConfirmationOfPayeeAccountType, ConfirmationOfPayeeRequest, ConfirmationOfPayeeResponse, ConfirmationOfPayeeResponseStatus, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DayOfWeek, DeliveryStatus, DestinationType, DownloadableResponse, DownloadCardReportRequest, DownloadFileFormat, DownloadOrganisationSearchRequest, DownloadReconciliationReportRequest, DownloadStatementReportRequest, DownloadUserReportRequest, EditCloseDateRequest, EditPaymentAmountRequest, EditPaymentAmountScheduleRequest, EditPaymentCloseDateRequest, EditPaymentMetadataRequest, EditPaymentScheduleRequest, EmailReportFileDestination, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExistingBeneficiaryRequest, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, ForcedSettlementNotificationConfig, FraudEmailConfig, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingAccountTransferDestinationResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, Limit, LoginRequest, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantResponseStatus, MerchantSearchRequest, MerchantType, MetadataFormat, MetadataRequest, MetadataResponse, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationResponseV2, OrganisationSearchRequest, OrganisationStatus, OrganisationStatusV2, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentOperationType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, RelogWithNewSessionDetailsRequest, Report, ReportFileDestination, ReportSubscriptionFrequencyRequest, ReportSubscriptionFrequencyType, ReportSubscriptionInvocationOutcome, ReportSubscriptionInvocationResponse, ReportSubscriptionRequest, ReportSubscriptionResponse, ReportSubscriptionStatus, ReportType, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchBeneficiaryRequest, SearchRolesetsRequest, SecurityConfig, Segment, SetAvailableCardTypesRequest, SftpReportFileDestination, SsoLoginRequest, SsoProviderConfig, SsoProviderType, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SummaryBookingInfoResponse, SummaryPaymentResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TierFeatureResponse, TierID, TierLimitResponse, TierResponse, TransactionResponse, TransactionType, TransferDestinationAddressType, TransferDestinationRequest, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCategoryRequest, UpdateMerchantRequest, UpdateRolesetRequest, Usage, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth } from "./model";
|
|
3
|
+
export { AbstractBeneficiaryRequest, AbstractLoginRequest, AbstractPaymentOperation, AbstractProviderTransactionOperation, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, AvailableCardTypesHasResponse, AvailableCardTypesResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardOperation, CardOptionSearch, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardState, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardTypeRequestAvailabilityType, CardTypeInformation, CardTypesResponse, CardTypeResponse, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeFlag, CardUsage, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, Client, ConfigMatchesRequest, ConfigMatchesResponse, ConfigTypesResponse, ConfirmationOfPayeeAccountType, ConfirmationOfPayeeRequest, ConfirmationOfPayeeResponse, ConfirmationOfPayeeResponseStatus, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DayOfWeek, DeliveryStatus, DestinationType, DownloadCardReportRequest, DownloadFileFormat, DownloadableResponse, DownloadOrganisationSearchRequest, DownloadReconciliationReportRequest, DownloadStatementReportRequest, DownloadUserReportRequest, EditCloseDateRequest, EditPaymentAmountRequest, EditPaymentAmountScheduleRequest, EditPaymentCloseDateRequest, EditPaymentMetadataRequest, EditPaymentScheduleRequest, EmailReportFileDestination, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExistingBeneficiaryRequest, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, ForcedSettlementNotificationConfig, FraudEmailConfig, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingAccountTransferDestinationResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, Limit, LoginRequest, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantResponseStatus, MerchantSearchRequest, MerchantType, MetadataFormat, MetadataRequest, MetadataResponse, TransferDestinationRequest, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationResponseV2, OrganisationStatus, OrganisationStatusV2, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentOperationType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, RelogWithNewSessionDetailsRequest, Report, ReportFileDestination, ReportSubscriptionFrequencyRequest, ReportSubscriptionFrequencyType, ReportSubscriptionInvocationOutcome, ReportSubscriptionInvocationResponse, ReportSubscriptionRequest, ReportSubscriptionResponse, ReportSubscriptionStatus, ReportType, RoleResponse, RolesetResponse, Room, ScheduleEntry, ScheduledTaskRequest, SearchRolesetsRequest, SetAvailableCardTypesRequest, SftpReportFileDestination, Segment, SsoLoginRequest, SsoProviderConfig, SsoProviderType, SecurityConfig, SearchBeneficiaryRequest, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SummaryBookingInfoResponse, SummaryPaymentResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TierFeatureResponse, TierID, TierLimitResponse, TierResponse, TransactionResponse, TransactionType, TransferDestinationAddressType, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCategoryRequest, UpdateMerchantRequest, UpdateRolesetRequest, Usage, 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 { AbstractBeneficiaryRequest, AbstractLoginRequest, AbstractPaymentOperation, AbstractProviderTransactionOperation, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmountPair, AvailableCardTypesHasResponse, AvailableCardTypesResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardOperation, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardState, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTypeFlag, CardTypeInformation, CardTypeRequestAvailabilityType, CardTypeResponse, CardTypesConfig, CardTypeSpecification, CardUsage, ConfirmationOfPayeeAccountType, ConfirmationOfPayeeRequest, ConfirmationOfPayeeResponse, ConfirmationOfPayeeResponseStatus, CredentialRequest, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, DownloadFileFormat, DownloadOrganisationSearchRequest, DownloadReconciliationReportRequest, EditCloseDateRequest, EditPaymentAmountRequest, EditPaymentAmountScheduleRequest, EditPaymentCloseDateRequest, EditPaymentMetadataRequest, EditPaymentScheduleRequest, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExistingBeneficiaryRequest, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, ForcedSettlementNotificationConfig, FraudEmailConfig, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingAccountTransferDestinationResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, Limit, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantResponseStatus, MerchantType, MetadataFormat, MetadataRequest, MetadataResponse, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationResponseV2, OrganisationSearchRequest, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentOperationType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, ScheduleEntry, SecurityConfig, Segment, SetAvailableCardTypesRequest, SsoLoginRequest, SsoProviderConfig, SsoProviderType, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TierFeatureResponse, TierID, TierLimitResponse, TierResponse, TransactionType, TransferDestinationAddressType, TransferDestinationRequest, TransferDestinationResponse, TransferDirection, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UpdateMerchantRequest, Usage, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, } from "./model";
|
|
3
|
-
export { AbstractBeneficiaryRequest, AbstractLoginRequest, AbstractPaymentOperation, AbstractProviderTransactionOperation, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmountPair, AvailableCardTypesHasResponse, AvailableCardTypesResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardOperation, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardState, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTypeRequestAvailabilityType, CardTypeInformation, CardTypeResponse, CardTypesConfig, CardTypeSpecification, CardTypeFlag, CardUsage, Client, ConfirmationOfPayeeAccountType, ConfirmationOfPayeeRequest, ConfirmationOfPayeeResponse, ConfirmationOfPayeeResponseStatus, CredentialRequest, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, DownloadFileFormat, DownloadOrganisationSearchRequest, DownloadReconciliationReportRequest, EditCloseDateRequest, EditPaymentAmountRequest, EditPaymentAmountScheduleRequest, EditPaymentCloseDateRequest, EditPaymentMetadataRequest, EditPaymentScheduleRequest, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExistingBeneficiaryRequest, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, ForcedSettlementNotificationConfig, FraudEmailConfig, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingAccountTransferDestinationResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, Limit, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantResponseStatus, MerchantType, MetadataFormat, MetadataRequest, MetadataResponse, TransferDestinationRequest, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationResponseV2, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentOperationType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, ScheduleEntry, SetAvailableCardTypesRequest, Segment, SsoLoginRequest, SsoProviderConfig, SsoProviderType, SecurityConfig, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TierFeatureResponse, TierID, TierLimitResponse, TierResponse, TransactionType, TransferDestinationAddressType, TransferDestinationResponse, TransferDirection, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UpdateMerchantRequest, Usage, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, };
|
|
2
|
+
import { AbstractBeneficiaryRequest, AbstractLoginRequest, AbstractPaymentOperation, AbstractProviderTransactionOperation, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmountPair, AvailableCardTypesHasResponse, AvailableCardTypesResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardOperation, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardState, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTypeFlag, CardTypeInformation, CardTypeRequestAvailabilityType, CardTypeResponse, CardTypesConfig, CardTypeSpecification, CardUsage, ConfirmationOfPayeeAccountType, ConfirmationOfPayeeRequest, ConfirmationOfPayeeResponse, ConfirmationOfPayeeResponseStatus, CredentialRequest, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DayOfWeek, DeliveryStatus, DestinationType, DownloadFileFormat, DownloadOrganisationSearchRequest, DownloadReconciliationReportRequest, EditCloseDateRequest, EditPaymentAmountRequest, EditPaymentAmountScheduleRequest, EditPaymentCloseDateRequest, EditPaymentMetadataRequest, EditPaymentScheduleRequest, EmailReportFileDestination, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExistingBeneficiaryRequest, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, ForcedSettlementNotificationConfig, FraudEmailConfig, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingAccountTransferDestinationResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, Limit, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantResponseStatus, MerchantType, MetadataFormat, MetadataRequest, MetadataResponse, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationResponseV2, OrganisationSearchRequest, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentOperationType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, ReportFileDestination, ReportSubscriptionFrequencyRequest, ReportSubscriptionFrequencyType, ReportSubscriptionInvocationOutcome, ReportSubscriptionInvocationResponse, ReportSubscriptionRequest, ReportSubscriptionResponse, ReportSubscriptionStatus, ReportType, ScheduleEntry, SecurityConfig, Segment, SetAvailableCardTypesRequest, SftpReportFileDestination, SsoLoginRequest, SsoProviderConfig, SsoProviderType, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TierFeatureResponse, TierID, TierLimitResponse, TierResponse, TransactionType, TransferDestinationAddressType, TransferDestinationRequest, TransferDestinationResponse, TransferDirection, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UpdateMerchantRequest, Usage, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, } from "./model";
|
|
3
|
+
export { AbstractBeneficiaryRequest, AbstractLoginRequest, AbstractPaymentOperation, AbstractProviderTransactionOperation, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmountPair, AvailableCardTypesHasResponse, AvailableCardTypesResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardOperation, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardState, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTypeRequestAvailabilityType, CardTypeInformation, CardTypeResponse, CardTypesConfig, CardTypeSpecification, CardTypeFlag, CardUsage, Client, ConfirmationOfPayeeAccountType, ConfirmationOfPayeeRequest, ConfirmationOfPayeeResponse, ConfirmationOfPayeeResponseStatus, CredentialRequest, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DayOfWeek, DeliveryStatus, DestinationType, DownloadFileFormat, DownloadOrganisationSearchRequest, DownloadReconciliationReportRequest, EditCloseDateRequest, EditPaymentAmountRequest, EditPaymentAmountScheduleRequest, EditPaymentCloseDateRequest, EditPaymentMetadataRequest, EditPaymentScheduleRequest, EmailReportFileDestination, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExistingBeneficiaryRequest, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, ForcedSettlementNotificationConfig, FraudEmailConfig, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingAccountTransferDestinationResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, GenericPaymentOperation, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, Limit, LoginResponse, MerchantDetails, MerchantDetailsV2, MerchantRequest, MerchantResponse, MerchantResponseStatus, MerchantType, MetadataFormat, MetadataRequest, MetadataResponse, TransferDestinationRequest, Notification, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationResponseV2, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryStatus, PaymentMerchantRequest, PaymentMethodType, PaymentOperation, PaymentOperationType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCardTransactionOperation, ProviderCode, ProviderResponse, ProviderTransferTransactionOperation, Range, References, ReportFileDestination, ReportSubscriptionFrequencyRequest, ReportSubscriptionFrequencyType, ReportSubscriptionInvocationOutcome, ReportSubscriptionInvocationResponse, ReportSubscriptionRequest, ReportSubscriptionResponse, ReportSubscriptionStatus, ReportType, ScheduleEntry, SetAvailableCardTypesRequest, SftpReportFileDestination, Segment, SsoLoginRequest, SsoProviderConfig, SsoProviderType, SecurityConfig, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TierFeatureResponse, TierID, TierLimitResponse, TierResponse, TransactionType, TransferDestinationAddressType, TransferDestinationResponse, TransferDirection, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UpdateMerchantRequest, Usage, 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,0BAA0B,EAC1B,oBAAoB,EACpB,wBAAwB,EACxB,oCAAoC,EACpC,mBAAmB,EACnB,sBAAsB,EACtB,yCAAyC,EACzC,yBAAyB,EACzB,eAAe,EAEf,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,gBAAgB,EAEhB,UAAU,EAIV,6BAA6B,EAC7B,0BAA0B,EAC1B,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,aAAa,EAEb,cAAc,EACd,cAAc,EACd,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EAEpB,SAAS,EACT,2BAA2B,EAE3B,oCAAoC,EACpC,aAAa,EACb,eAAe,EAEf,YAAY,EACZ,mBAAmB,EACnB,+BAA+B,EAC/B,gBAAgB,EAChB,eAAe,EAEf,qBAAqB,EAErB,SAAS,EAQT,8BAA8B,EAC9B,0BAA0B,EAC1B,2BAA2B,EAC3B,iCAAiC,EAGjC,iBAAiB,EAEjB,QAAQ,EACR,yBAAyB,EACzB,0BAA0B,EAC1B,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export type DayOfWeek = typeof DayOfWeek.values[number];
|
|
3
|
+
export declare namespace DayOfWeek {
|
|
4
|
+
const values: readonly ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"];
|
|
5
|
+
const type: isly.Type<"MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY">;
|
|
6
|
+
const is: (value: any | ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY")) => value is "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY";
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var DayOfWeek;
|
|
3
|
+
(function (DayOfWeek) {
|
|
4
|
+
DayOfWeek.values = ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"];
|
|
5
|
+
DayOfWeek.type = isly.string(DayOfWeek.values);
|
|
6
|
+
DayOfWeek.is = DayOfWeek.type.is;
|
|
7
|
+
})(DayOfWeek || (DayOfWeek = {}));
|
|
8
|
+
//# sourceMappingURL=DayOfWeek.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DayOfWeek.js","sourceRoot":"../","sources":["model/DayOfWeek.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAI3B,MAAM,KAAW,SAAS,CAIzB;AAJD,WAAiB,SAAS;IACZ,gBAAM,GAAG,CAAC,QAAQ,EAAE,SAAS,EAAE,WAAW,EAAE,UAAU,EAAE,QAAQ,EAAE,UAAU,EAAE,QAAQ,CAAU,CAAA;IAChG,cAAI,GAAG,IAAI,CAAC,MAAM,CAAY,UAAA,MAAM,CAAC,CAAA;IACrC,YAAE,GAAG,UAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAJgB,SAAS,KAAT,SAAS,QAIzB"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export type DestinationType = typeof DestinationType.values[number];
|
|
3
|
+
export declare namespace DestinationType {
|
|
4
|
+
const values: readonly ["DOWNLOAD", "EMAIL", "SFTP"];
|
|
5
|
+
const type: isly.Type<"EMAIL" | "DOWNLOAD" | "SFTP">;
|
|
6
|
+
const is: (value: any | ("EMAIL" | "DOWNLOAD" | "SFTP")) => value is "EMAIL" | "DOWNLOAD" | "SFTP";
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var DestinationType;
|
|
3
|
+
(function (DestinationType) {
|
|
4
|
+
DestinationType.values = ["DOWNLOAD", "EMAIL", "SFTP"];
|
|
5
|
+
DestinationType.type = isly.string(DestinationType.values);
|
|
6
|
+
DestinationType.is = DestinationType.type.is;
|
|
7
|
+
})(DestinationType || (DestinationType = {}));
|
|
8
|
+
//# sourceMappingURL=DestinationType.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DestinationType.js","sourceRoot":"../","sources":["model/DestinationType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAI3B,MAAM,KAAW,eAAe,CAI/B;AAJD,WAAiB,eAAe;IAClB,sBAAM,GAAG,CAAC,UAAU,EAAE,OAAO,EAAE,MAAM,CAAU,CAAA;IAC/C,oBAAI,GAAG,IAAI,CAAC,MAAM,CAAkB,gBAAA,MAAM,CAAC,CAAA;IAC3C,kBAAE,GAAG,gBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAJgB,eAAe,KAAf,eAAe,QAI/B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface EmailReportFileDestination {
|
|
2
|
+
to: string[];
|
|
3
|
+
subject?: string;
|
|
4
|
+
body?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare namespace EmailReportFileDestination {
|
|
7
|
+
const type: import("isly/dist/cjs/object").IslyObject<EmailReportFileDestination, object>;
|
|
8
|
+
const is: (value: EmailReportFileDestination | any) => value is EmailReportFileDestination;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var EmailReportFileDestination;
|
|
3
|
+
(function (EmailReportFileDestination) {
|
|
4
|
+
EmailReportFileDestination.type = isly.object({
|
|
5
|
+
to: isly.string(/\S+@\S+\.\S+/).array({ criteria: "minLength", value: 1 }),
|
|
6
|
+
subject: isly.string().optional(),
|
|
7
|
+
body: isly.string().optional(),
|
|
8
|
+
});
|
|
9
|
+
EmailReportFileDestination.is = EmailReportFileDestination.type.is;
|
|
10
|
+
})(EmailReportFileDestination || (EmailReportFileDestination = {}));
|
|
11
|
+
//# sourceMappingURL=EmailReportFileDestination.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EmailReportFileDestination.js","sourceRoot":"../","sources":["model/EmailReportFileDestination.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAO3B,MAAM,KAAW,0BAA0B,CAO1C;AAPD,WAAiB,0BAA0B;IAC7B,+BAAI,GAAG,IAAI,CAAC,MAAM,CAA6B;QAC3D,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,KAAK,CAAC,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC;QAC1E,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACjC,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC9B,CAAC,CAAA;IACW,6BAAE,GAAG,2BAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAPgB,0BAA0B,KAA1B,0BAA0B,QAO1C"}
|
|
@@ -6,6 +6,6 @@ export interface FundingAccountTransferDestinationResponse extends FundingAccoun
|
|
|
6
6
|
currency: Currency;
|
|
7
7
|
}
|
|
8
8
|
export declare namespace FundingAccountTransferDestinationResponse {
|
|
9
|
-
const type: import("isly/dist/cjs/object").IslyObject<FundingAccountTransferDestinationResponse,
|
|
9
|
+
const type: import("isly/dist/cjs/object").IslyObject<FundingAccountTransferDestinationResponse, FundingAccountSummaryResponse>;
|
|
10
10
|
const is: (value: FundingAccountTransferDestinationResponse | any) => value is FundingAccountTransferDestinationResponse;
|
|
11
11
|
}
|
|
@@ -4,12 +4,10 @@ import { FundingAccountSummaryResponse } from "./FundingAccountSummaryResponse";
|
|
|
4
4
|
import { TransferDestinationAddressType } from "./TransferDestinationAddressType";
|
|
5
5
|
export var FundingAccountTransferDestinationResponse;
|
|
6
6
|
(function (FundingAccountTransferDestinationResponse) {
|
|
7
|
-
FundingAccountTransferDestinationResponse.type = FundingAccountSummaryResponse.type
|
|
8
|
-
.extend({
|
|
7
|
+
FundingAccountTransferDestinationResponse.type = FundingAccountSummaryResponse.type.extend({
|
|
9
8
|
type: TransferDestinationAddressType.type,
|
|
10
9
|
currency: isly.fromIs("Currency", Currency.is),
|
|
11
|
-
})
|
|
12
|
-
.extend(FundingAccountSummaryResponse.type);
|
|
10
|
+
});
|
|
13
11
|
FundingAccountTransferDestinationResponse.is = FundingAccountTransferDestinationResponse.type.is;
|
|
14
12
|
})(FundingAccountTransferDestinationResponse || (FundingAccountTransferDestinationResponse = {}));
|
|
15
13
|
//# sourceMappingURL=FundingAccountTransferDestinationResponse.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FundingAccountTransferDestinationResponse.js","sourceRoot":"../","sources":["model/FundingAccountTransferDestinationResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAA;AAC/E,OAAO,EAAE,8BAA8B,EAAE,MAAM,kCAAkC,CAAA;AAOjF,MAAM,KAAW,yCAAyC,
|
|
1
|
+
{"version":3,"file":"FundingAccountTransferDestinationResponse.js","sourceRoot":"../","sources":["model/FundingAccountTransferDestinationResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAA;AAC/E,OAAO,EAAE,8BAA8B,EAAE,MAAM,kCAAkC,CAAA;AAOjF,MAAM,KAAW,yCAAyC,CAMzD;AAND,WAAiB,yCAAyC;IAC5C,8CAAI,GAAG,6BAA6B,CAAC,IAAI,CAAC,MAAM,CAA4C;QACxG,IAAI,EAAE,8BAA8B,CAAC,IAAI;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC;KAC9C,CAAC,CAAA;IACW,4CAAE,GAAG,0CAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EANgB,yCAAyC,KAAzC,yCAAyC,QAMzD"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { DestinationType } from "../DestinationType";
|
|
3
|
+
import { EmailReportFileDestination } from "../EmailReportFileDestination";
|
|
4
|
+
import { SftpReportFileDestination } from "../SftpReportFileDestination";
|
|
5
|
+
export type ReportFileDestination = (EmailReportFileDestination | SftpReportFileDestination) & {
|
|
6
|
+
destinationType: DestinationType;
|
|
7
|
+
};
|
|
8
|
+
export declare namespace ReportFileDestination {
|
|
9
|
+
type Type = {
|
|
10
|
+
destinationType: DestinationType;
|
|
11
|
+
};
|
|
12
|
+
const type: isly.Type<ReportFileDestination>;
|
|
13
|
+
const is: (value: any | ReportFileDestination) => value is ReportFileDestination;
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { DestinationType } from "../DestinationType";
|
|
3
|
+
import { EmailReportFileDestination } from "../EmailReportFileDestination";
|
|
4
|
+
import { SftpReportFileDestination } from "../SftpReportFileDestination";
|
|
5
|
+
export var ReportFileDestination;
|
|
6
|
+
(function (ReportFileDestination) {
|
|
7
|
+
ReportFileDestination.type = isly.intersection(isly.object({ destinationType: DestinationType.type }), isly.union(EmailReportFileDestination.type, SftpReportFileDestination.type));
|
|
8
|
+
ReportFileDestination.is = ReportFileDestination.type.is;
|
|
9
|
+
})(ReportFileDestination || (ReportFileDestination = {}));
|
|
10
|
+
//# sourceMappingURL=ReportFileDestination.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportFileDestination.js","sourceRoot":"../","sources":["model/Report/ReportFileDestination.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAA;AAC1E,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAA;AAMxE,MAAM,KAAW,qBAAqB,CAarC;AAbD,WAAiB,qBAAqB;IAIxB,0BAAI,GAAG,IAAI,CAAC,YAAY,CAKpC,IAAI,CAAC,MAAM,CAAO,EAAE,eAAe,EAAE,eAAe,CAAC,IAAI,EAAE,CAAC,EAC5D,IAAI,CAAC,KAAK,CAAC,0BAA0B,CAAC,IAAI,EAAE,yBAAyB,CAAC,IAAI,CAAC,CAC3E,CAAA;IACY,wBAAE,GAAG,sBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAbgB,qBAAqB,KAArB,qBAAqB,QAarC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DayOfWeek } from "../DayOfWeek";
|
|
2
|
+
import { ReportSubscriptionFrequencyType } from "./ReportSubscriptionFrequencyType";
|
|
3
|
+
export interface ReportSubscriptionFrequencyRequest {
|
|
4
|
+
type: ReportSubscriptionFrequencyType;
|
|
5
|
+
dayOfWeek?: DayOfWeek;
|
|
6
|
+
dayOfMonth?: number;
|
|
7
|
+
}
|
|
8
|
+
export declare namespace ReportSubscriptionFrequencyRequest {
|
|
9
|
+
const type: import("isly/dist/cjs/object").IslyObject<ReportSubscriptionFrequencyRequest, object>;
|
|
10
|
+
const is: (value: ReportSubscriptionFrequencyRequest | any) => value is ReportSubscriptionFrequencyRequest;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { DayOfWeek } from "../DayOfWeek";
|
|
3
|
+
import { ReportSubscriptionFrequencyType } from "./ReportSubscriptionFrequencyType";
|
|
4
|
+
export var ReportSubscriptionFrequencyRequest;
|
|
5
|
+
(function (ReportSubscriptionFrequencyRequest) {
|
|
6
|
+
ReportSubscriptionFrequencyRequest.type = isly.object({
|
|
7
|
+
type: ReportSubscriptionFrequencyType.type,
|
|
8
|
+
dayOfWeek: DayOfWeek.type.optional(),
|
|
9
|
+
dayOfMonth: isly.number("integer").optional(),
|
|
10
|
+
});
|
|
11
|
+
ReportSubscriptionFrequencyRequest.is = ReportSubscriptionFrequencyRequest.type.is;
|
|
12
|
+
})(ReportSubscriptionFrequencyRequest || (ReportSubscriptionFrequencyRequest = {}));
|
|
13
|
+
//# sourceMappingURL=ReportSubscriptionFrequencyRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportSubscriptionFrequencyRequest.js","sourceRoot":"../","sources":["model/Report/ReportSubscriptionFrequencyRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AACxC,OAAO,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAA;AAOnF,MAAM,KAAW,kCAAkC,CAOlD;AAPD,WAAiB,kCAAkC;IACrC,uCAAI,GAAG,IAAI,CAAC,MAAM,CAAqC;QACnE,IAAI,EAAE,+BAA+B,CAAC,IAAI;QAC1C,SAAS,EAAE,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE;QACpC,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,QAAQ,EAAE;KAC7C,CAAC,CAAA;IACW,qCAAE,GAAG,mCAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAPgB,kCAAkC,KAAlC,kCAAkC,QAOlD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export type ReportSubscriptionFrequencyType = typeof ReportSubscriptionFrequencyType.values[number];
|
|
3
|
+
export declare namespace ReportSubscriptionFrequencyType {
|
|
4
|
+
const values: readonly ["DAILY", "WEEKLY", "MONTHLY"];
|
|
5
|
+
const type: isly.Type<"DAILY" | "WEEKLY" | "MONTHLY">;
|
|
6
|
+
const is: (value: any | ("DAILY" | "WEEKLY" | "MONTHLY")) => value is "DAILY" | "WEEKLY" | "MONTHLY";
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var ReportSubscriptionFrequencyType;
|
|
3
|
+
(function (ReportSubscriptionFrequencyType) {
|
|
4
|
+
ReportSubscriptionFrequencyType.values = ["DAILY", "WEEKLY", "MONTHLY"];
|
|
5
|
+
ReportSubscriptionFrequencyType.type = isly.string(ReportSubscriptionFrequencyType.values);
|
|
6
|
+
ReportSubscriptionFrequencyType.is = ReportSubscriptionFrequencyType.type.is;
|
|
7
|
+
})(ReportSubscriptionFrequencyType || (ReportSubscriptionFrequencyType = {}));
|
|
8
|
+
//# sourceMappingURL=ReportSubscriptionFrequencyType.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportSubscriptionFrequencyType.js","sourceRoot":"../","sources":["model/Report/ReportSubscriptionFrequencyType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAI3B,MAAM,KAAW,+BAA+B,CAI/C;AAJD,WAAiB,+BAA+B;IAClC,sCAAM,GAAG,CAAC,OAAO,EAAE,QAAQ,EAAE,SAAS,CAAU,CAAA;IAChD,oCAAI,GAAG,IAAI,CAAC,MAAM,CAAkC,gCAAA,MAAM,CAAC,CAAA;IAC3D,kCAAE,GAAG,gCAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAJgB,+BAA+B,KAA/B,+BAA+B,QAI/C"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export type ReportSubscriptionInvocationOutcome = typeof ReportSubscriptionInvocationOutcome.values[number];
|
|
3
|
+
export declare namespace ReportSubscriptionInvocationOutcome {
|
|
4
|
+
const values: readonly ["SUCCESS", "FAILURE"];
|
|
5
|
+
const type: isly.Type<"SUCCESS" | "FAILURE">;
|
|
6
|
+
const is: (value: any | ("SUCCESS" | "FAILURE")) => value is "SUCCESS" | "FAILURE";
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var ReportSubscriptionInvocationOutcome;
|
|
3
|
+
(function (ReportSubscriptionInvocationOutcome) {
|
|
4
|
+
ReportSubscriptionInvocationOutcome.values = ["SUCCESS", "FAILURE"];
|
|
5
|
+
ReportSubscriptionInvocationOutcome.type = isly.string(ReportSubscriptionInvocationOutcome.values);
|
|
6
|
+
ReportSubscriptionInvocationOutcome.is = ReportSubscriptionInvocationOutcome.type.is;
|
|
7
|
+
})(ReportSubscriptionInvocationOutcome || (ReportSubscriptionInvocationOutcome = {}));
|
|
8
|
+
//# sourceMappingURL=ReportSubscriptionInvocationOutcome.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportSubscriptionInvocationOutcome.js","sourceRoot":"../","sources":["model/Report/ReportSubscriptionInvocationOutcome.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAI3B,MAAM,KAAW,mCAAmC,CAInD;AAJD,WAAiB,mCAAmC;IACtC,0CAAM,GAAG,CAAC,SAAS,EAAE,SAAS,CAAU,CAAA;IACxC,wCAAI,GAAG,IAAI,CAAC,MAAM,CAAsC,oCAAA,MAAM,CAAC,CAAA;IAC/D,sCAAE,GAAG,oCAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAJgB,mCAAmC,KAAnC,mCAAmC,QAInD"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DateTime } from "isoly";
|
|
2
|
+
import { ReportSubscriptionInvocationOutcome } from "./ReportSubscriptionInvocationOutcome";
|
|
3
|
+
export interface ReportSubscriptionInvocationResponse {
|
|
4
|
+
createdAt: DateTime;
|
|
5
|
+
outcome: ReportSubscriptionInvocationOutcome;
|
|
6
|
+
errorMessage?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare namespace ReportSubscriptionInvocationResponse {
|
|
9
|
+
const type: import("isly/dist/cjs/object").IslyObject<ReportSubscriptionInvocationResponse, object>;
|
|
10
|
+
const is: (value: ReportSubscriptionInvocationResponse | any) => value is ReportSubscriptionInvocationResponse;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DateTime } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
import { ReportSubscriptionInvocationOutcome } from "./ReportSubscriptionInvocationOutcome";
|
|
4
|
+
export var ReportSubscriptionInvocationResponse;
|
|
5
|
+
(function (ReportSubscriptionInvocationResponse) {
|
|
6
|
+
ReportSubscriptionInvocationResponse.type = isly.object({
|
|
7
|
+
createdAt: isly.fromIs("DateTime", DateTime.is),
|
|
8
|
+
outcome: ReportSubscriptionInvocationOutcome.type,
|
|
9
|
+
errorMessage: isly.string().optional(),
|
|
10
|
+
});
|
|
11
|
+
ReportSubscriptionInvocationResponse.is = ReportSubscriptionInvocationResponse.type.is;
|
|
12
|
+
})(ReportSubscriptionInvocationResponse || (ReportSubscriptionInvocationResponse = {}));
|
|
13
|
+
//# sourceMappingURL=ReportSubscriptionInvocationResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportSubscriptionInvocationResponse.js","sourceRoot":"../","sources":["model/Report/ReportSubscriptionInvocationResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,mCAAmC,EAAE,MAAM,uCAAuC,CAAA;AAO3F,MAAM,KAAW,oCAAoC,CAOpD;AAPD,WAAiB,oCAAoC;IACvC,yCAAI,GAAG,IAAI,CAAC,MAAM,CAAuC;QACrE,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC;QAC/C,OAAO,EAAE,mCAAmC,CAAC,IAAI;QACjD,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KACtC,CAAC,CAAA;IACW,uCAAE,GAAG,qCAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAPgB,oCAAoC,KAApC,oCAAoC,QAOpD"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DestinationType } from "../DestinationType";
|
|
2
|
+
import { DownloadFileFormat } from "../DownloadFileFormat";
|
|
3
|
+
import { ReportSubscriptionFrequencyRequest } from "./ReportSubscriptionFrequencyRequest";
|
|
4
|
+
import { ReportType } from "./ReportType";
|
|
5
|
+
export interface ReportSubscriptionRequest {
|
|
6
|
+
name?: string;
|
|
7
|
+
reportType: ReportType;
|
|
8
|
+
fileFormat: DownloadFileFormat;
|
|
9
|
+
request?: Record<string, any>;
|
|
10
|
+
frequency: ReportSubscriptionFrequencyRequest;
|
|
11
|
+
destination: DestinationType;
|
|
12
|
+
}
|
|
13
|
+
export declare namespace ReportSubscriptionRequest {
|
|
14
|
+
const type: import("isly/dist/cjs/object").IslyObject<ReportSubscriptionRequest, object>;
|
|
15
|
+
const is: (value: ReportSubscriptionRequest | any) => value is ReportSubscriptionRequest;
|
|
16
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { DestinationType } from "../DestinationType";
|
|
3
|
+
import { DownloadFileFormat } from "../DownloadFileFormat";
|
|
4
|
+
import { ReportSubscriptionFrequencyRequest } from "./ReportSubscriptionFrequencyRequest";
|
|
5
|
+
import { ReportType } from "./ReportType";
|
|
6
|
+
export var ReportSubscriptionRequest;
|
|
7
|
+
(function (ReportSubscriptionRequest) {
|
|
8
|
+
ReportSubscriptionRequest.type = isly.object({
|
|
9
|
+
name: isly.string().optional(),
|
|
10
|
+
reportType: ReportType.type,
|
|
11
|
+
fileFormat: DownloadFileFormat.type,
|
|
12
|
+
request: isly.record(isly.string(), isly.any()).optional(),
|
|
13
|
+
frequency: isly.fromIs("ReportSubscriptionFrequencyRequest", ReportSubscriptionFrequencyRequest.is),
|
|
14
|
+
destination: DestinationType.type,
|
|
15
|
+
});
|
|
16
|
+
ReportSubscriptionRequest.is = ReportSubscriptionRequest.type.is;
|
|
17
|
+
})(ReportSubscriptionRequest || (ReportSubscriptionRequest = {}));
|
|
18
|
+
//# sourceMappingURL=ReportSubscriptionRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportSubscriptionRequest.js","sourceRoot":"../","sources":["model/Report/ReportSubscriptionRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC1D,OAAO,EAAE,kCAAkC,EAAE,MAAM,sCAAsC,CAAA;AACzF,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AASzC,MAAM,KAAW,yBAAyB,CAUzC;AAVD,WAAiB,yBAAyB;IAC5B,8BAAI,GAAG,IAAI,CAAC,MAAM,CAA4B;QAC1D,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC9B,UAAU,EAAE,UAAU,CAAC,IAAI;QAC3B,UAAU,EAAE,kBAAkB,CAAC,IAAI;QACnC,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;QAC1D,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,oCAAoC,EAAE,kCAAkC,CAAC,EAAE,CAAC;QACnG,WAAW,EAAE,eAAe,CAAC,IAAI;KACjC,CAAC,CAAA;IACW,4BAAE,GAAG,0BAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAVgB,yBAAyB,KAAzB,yBAAyB,QAUzC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { DownloadFileFormat } from "../DownloadFileFormat";
|
|
2
|
+
import { ReportFileDestination } from "./ReportFileDestination";
|
|
3
|
+
import { ReportSubscriptionFrequencyRequest } from "./ReportSubscriptionFrequencyRequest";
|
|
4
|
+
import { ReportSubscriptionInvocationResponse } from "./ReportSubscriptionInvocationResponse";
|
|
5
|
+
import { ReportSubscriptionStatus } from "./ReportSubscriptionStatus";
|
|
6
|
+
import { ReportType } from "./ReportType";
|
|
7
|
+
export interface ReportSubscriptionResponse {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
reportType: ReportType;
|
|
11
|
+
fileFormat: DownloadFileFormat;
|
|
12
|
+
status: ReportSubscriptionStatus;
|
|
13
|
+
request: Record<string, any>;
|
|
14
|
+
frequency: ReportSubscriptionFrequencyRequest;
|
|
15
|
+
destination: ReportFileDestination;
|
|
16
|
+
lastInvocation?: ReportSubscriptionInvocationResponse;
|
|
17
|
+
}
|
|
18
|
+
export declare namespace ReportSubscriptionResponse {
|
|
19
|
+
const type: import("isly/dist/cjs/object").IslyObject<ReportSubscriptionResponse, object>;
|
|
20
|
+
const is: (value: ReportSubscriptionResponse | any) => value is ReportSubscriptionResponse;
|
|
21
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { DownloadFileFormat } from "../DownloadFileFormat";
|
|
3
|
+
import { ReportFileDestination } from "./ReportFileDestination";
|
|
4
|
+
import { ReportSubscriptionFrequencyRequest } from "./ReportSubscriptionFrequencyRequest";
|
|
5
|
+
import { ReportSubscriptionInvocationResponse } from "./ReportSubscriptionInvocationResponse";
|
|
6
|
+
import { ReportSubscriptionStatus } from "./ReportSubscriptionStatus";
|
|
7
|
+
import { ReportType } from "./ReportType";
|
|
8
|
+
export var ReportSubscriptionResponse;
|
|
9
|
+
(function (ReportSubscriptionResponse) {
|
|
10
|
+
ReportSubscriptionResponse.type = isly.object({
|
|
11
|
+
id: isly.string(),
|
|
12
|
+
name: isly.string(),
|
|
13
|
+
reportType: ReportType.type,
|
|
14
|
+
fileFormat: DownloadFileFormat.type,
|
|
15
|
+
status: ReportSubscriptionStatus.type,
|
|
16
|
+
request: isly.record(isly.string(), isly.any()),
|
|
17
|
+
frequency: isly.fromIs("ReportSubscriptionFrequencyRequest", ReportSubscriptionFrequencyRequest.is),
|
|
18
|
+
destination: isly.fromIs("ReportFileDestination", ReportFileDestination.is),
|
|
19
|
+
lastInvocation: ReportSubscriptionInvocationResponse.type.optional(),
|
|
20
|
+
});
|
|
21
|
+
ReportSubscriptionResponse.is = ReportSubscriptionResponse.type.is;
|
|
22
|
+
})(ReportSubscriptionResponse || (ReportSubscriptionResponse = {}));
|
|
23
|
+
//# sourceMappingURL=ReportSubscriptionResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportSubscriptionResponse.js","sourceRoot":"../","sources":["model/Report/ReportSubscriptionResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC1D,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAAE,kCAAkC,EAAE,MAAM,sCAAsC,CAAA;AACzF,OAAO,EAAE,oCAAoC,EAAE,MAAM,wCAAwC,CAAA;AAC7F,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAczC,MAAM,KAAW,0BAA0B,CAa1C;AAbD,WAAiB,0BAA0B;IAC7B,+BAAI,GAAG,IAAI,CAAC,MAAM,CAA6B;QAC3D,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;QACjB,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,UAAU,EAAE,UAAU,CAAC,IAAI;QAC3B,UAAU,EAAE,kBAAkB,CAAC,IAAI;QACnC,MAAM,EAAE,wBAAwB,CAAC,IAAI;QACrC,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC;QAC/C,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,oCAAoC,EAAE,kCAAkC,CAAC,EAAE,CAAC;QACnG,WAAW,EAAE,IAAI,CAAC,MAAM,CAAC,uBAAuB,EAAE,qBAAqB,CAAC,EAAE,CAAC;QAC3E,cAAc,EAAE,oCAAoC,CAAC,IAAI,CAAC,QAAQ,EAAE;KACpE,CAAC,CAAA;IACW,6BAAE,GAAG,2BAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAbgB,0BAA0B,KAA1B,0BAA0B,QAa1C"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export type ReportSubscriptionStatus = typeof ReportSubscriptionStatus.values[number];
|
|
3
|
+
export declare namespace ReportSubscriptionStatus {
|
|
4
|
+
const values: readonly ["ACTIVE", "DELETED"];
|
|
5
|
+
const type: isly.Type<"ACTIVE" | "DELETED">;
|
|
6
|
+
const is: (value: any | ("ACTIVE" | "DELETED")) => value is "ACTIVE" | "DELETED";
|
|
7
|
+
}
|