@pax2pay/client 0.3.121 → 0.3.123
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/Organisations/index.ts +6 -17
- package/dist/Client/Organisations/index.d.ts +3 -1
- package/dist/Client/Organisations/index.js +2 -4
- package/dist/Client/Organisations/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/CardTypeInformation.d.ts +8 -0
- package/dist/model/CardTypeInformation.js +10 -0
- package/dist/model/CardTypeInformation.js.map +1 -0
- package/dist/model/CardTypeProfileResponse.d.ts +4 -0
- package/dist/model/CardTypeProfileResponse.js +17 -1
- package/dist/model/CardTypeProfileResponse.js.map +1 -1
- package/dist/model/OrganisationCardTypeProfileResponse.d.ts +4 -0
- package/dist/model/OrganisationCardTypeProfileResponse.js +10 -1
- package/dist/model/OrganisationCardTypeProfileResponse.js.map +1 -1
- package/dist/model/OrganisationRealm.d.ts +7 -0
- package/dist/model/OrganisationRealm.js +8 -0
- package/dist/model/OrganisationRealm.js.map +1 -0
- package/dist/model/OrganisationSearchRequest.d.ts +14 -0
- package/dist/model/OrganisationSearchRequest.js +16 -0
- package/dist/model/OrganisationSearchRequest.js.map +1 -0
- package/dist/model/OrganisationSearchResponse.d.ts +20 -0
- package/dist/model/OrganisationSearchResponse.js +22 -0
- package/dist/model/OrganisationSearchResponse.js.map +1 -0
- package/dist/model/OrganisationStatus.d.ts +2 -0
- package/dist/model/OrganisationStatus.js +4 -0
- package/dist/model/OrganisationStatus.js.map +1 -1
- package/dist/model/OrganisationStatusV2.d.ts +9 -0
- package/dist/model/OrganisationStatusV2.js +12 -0
- package/dist/model/OrganisationStatusV2.js.map +1 -0
- package/dist/model/index.d.ts +6 -1
- package/dist/model/index.js +8 -1
- package/dist/model/index.js.map +1 -1
- package/index.ts +11 -1
- package/model/CardTypeInformation.ts +14 -0
- package/model/CardTypeProfileResponse.ts +13 -0
- package/model/OrganisationCardTypeProfileResponse.ts +8 -0
- package/model/OrganisationRealm.ts +9 -0
- package/model/OrganisationSearchRequest.ts +24 -0
- package/model/OrganisationSearchResponse.ts +32 -0
- package/model/OrganisationStatus.ts +4 -0
- package/model/OrganisationStatusV2.ts +13 -0
- package/model/index.ts +10 -0
- package/package.json +1 -1
|
@@ -19,22 +19,11 @@ export class Organisations extends List<model.OrganisationResponse> {
|
|
|
19
19
|
): Promise<model.ErrorResponse | model.OrganisationResponse> {
|
|
20
20
|
return await this.connection.put<model.OrganisationResponse>(`${this.folder}/${code}`, request)
|
|
21
21
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
): Promise<model.ErrorResponse | model.OrganisationResponse[]> {
|
|
29
|
-
const response = await this.connection.get<{ list: model.OrganisationResponse[]; totalCount: number }>(
|
|
30
|
-
this.folder,
|
|
31
|
-
{
|
|
32
|
-
page: page,
|
|
33
|
-
size: size,
|
|
34
|
-
sort: sort,
|
|
35
|
-
includeNonActive: includeNonActive,
|
|
36
|
-
}
|
|
37
|
-
)
|
|
38
|
-
return this.extractResponse(response)
|
|
22
|
+
async search(request: model.OrganisationSearchRequest, page = 0, size = 500, sort = "name") {
|
|
23
|
+
return await this.connection.post<model.OrganisationSearchResponse[]>(`v2/${this.folder}/searches`, request, {
|
|
24
|
+
page: page,
|
|
25
|
+
size: size,
|
|
26
|
+
sort: sort,
|
|
27
|
+
})
|
|
39
28
|
}
|
|
40
29
|
}
|
|
@@ -9,5 +9,7 @@ export declare class Organisations extends List<model.OrganisationResponse> {
|
|
|
9
9
|
status: 400 | 404 | 500 | 403 | 503;
|
|
10
10
|
})>;
|
|
11
11
|
updateOrganisation(code: string, request: model.OrganisationRequest): Promise<model.ErrorResponse | model.OrganisationResponse>;
|
|
12
|
-
|
|
12
|
+
search(request: model.OrganisationSearchRequest, page?: number, size?: number, sort?: string): Promise<(model.ErrorResponse & {
|
|
13
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
14
|
+
}) | model.OrganisationSearchResponse[]>;
|
|
13
15
|
}
|
|
@@ -13,14 +13,12 @@ export class Organisations extends List {
|
|
|
13
13
|
async updateOrganisation(code, request) {
|
|
14
14
|
return await this.connection.put(`${this.folder}/${code}`, request);
|
|
15
15
|
}
|
|
16
|
-
async
|
|
17
|
-
|
|
16
|
+
async search(request, page = 0, size = 500, sort = "name") {
|
|
17
|
+
return await this.connection.post(`v2/${this.folder}/searches`, request, {
|
|
18
18
|
page: page,
|
|
19
19
|
size: size,
|
|
20
20
|
sort: sort,
|
|
21
|
-
includeNonActive: includeNonActive,
|
|
22
21
|
});
|
|
23
|
-
return this.extractResponse(response);
|
|
24
22
|
}
|
|
25
23
|
}
|
|
26
24
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Organisations/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE9B,MAAM,OAAO,aAAc,SAAQ,IAAgC;IAElE,YAAY,UAAsB;QACjC,KAAK,CAAC,UAAU,CAAC,CAAA;QAFC,WAAM,GAAG,eAAwB,CAAA;IAGpD,CAAC;IACD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,aAAa,CAAC,UAAU,CAAC,CAAA;IACrC,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,IAAY;QACxB,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,MAAM,CAA6B,GAAG,IAAI,CAAC,MAAM,IAAI,IAAI,EAAE,CAAC,CAAA;IAC1F,CAAC;IACD,KAAK,CAAC,kBAAkB,CACvB,IAAY,EACZ,OAAkC;QAElC,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAA6B,GAAG,IAAI,CAAC,MAAM,IAAI,IAAI,EAAE,EAAE,OAAO,CAAC,CAAA;IAChG,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Organisations/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE9B,MAAM,OAAO,aAAc,SAAQ,IAAgC;IAElE,YAAY,UAAsB;QACjC,KAAK,CAAC,UAAU,CAAC,CAAA;QAFC,WAAM,GAAG,eAAwB,CAAA;IAGpD,CAAC;IACD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,aAAa,CAAC,UAAU,CAAC,CAAA;IACrC,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,IAAY;QACxB,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,MAAM,CAA6B,GAAG,IAAI,CAAC,MAAM,IAAI,IAAI,EAAE,CAAC,CAAA;IAC1F,CAAC;IACD,KAAK,CAAC,kBAAkB,CACvB,IAAY,EACZ,OAAkC;QAElC,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAA6B,GAAG,IAAI,CAAC,MAAM,IAAI,IAAI,EAAE,EAAE,OAAO,CAAC,CAAA;IAChG,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAAwC,EAAE,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM;QACzF,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAqC,MAAM,IAAI,CAAC,MAAM,WAAW,EAAE,OAAO,EAAE;YAC5G,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,IAAI;SACV,CAAC,CAAA;IACH,CAAC;CACD"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { Client } from "./Client";
|
|
2
|
-
import { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateCardTypeProfileRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantSearchRequest, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodOptionResponse, PaymentMethodType, PaymentOption, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, ReconciliationReportUrlRequest, References, RelogWithNewSessionDetailsRequest, Report, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, SearchRolesetsRequest, SecurityConfig, Segment, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementReportUrlRequest, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SuggestedCardDeliveryOptions, SuggestedCardMetaOptions, SuggestedCardPaymentMethodResponse, SuggestedCardTypeOptions, SuggestedFundingAccountOptions, SuggestedOptions, SuggestedPaymentMethodResponse, SuggestedPaymentMethodResponses, SuggestedSchedulesOptions, SuggestedUsageOptions, SuggestionCardDeliveryRequest, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SuggestionResponse, SummaryBookingInfoResponse, 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, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth } from "./model";
|
|
3
|
-
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType,
|
|
2
|
+
import { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeInformation, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateCardTypeProfileRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantSearchRequest, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodOptionResponse, PaymentMethodType, PaymentOption, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, ReconciliationReportUrlRequest, References, RelogWithNewSessionDetailsRequest, Report, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, SearchRolesetsRequest, SecurityConfig, Segment, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementReportUrlRequest, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SuggestedCardDeliveryOptions, SuggestedCardMetaOptions, SuggestedCardPaymentMethodResponse, SuggestedCardTypeOptions, SuggestedFundingAccountOptions, SuggestedOptions, SuggestedPaymentMethodResponse, SuggestedPaymentMethodResponses, SuggestedSchedulesOptions, SuggestedUsageOptions, SuggestionCardDeliveryRequest, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SuggestionResponse, SummaryBookingInfoResponse, 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, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth } from "./model";
|
|
3
|
+
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeInformation, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CategoryFundingAccountAccessRequest, UpdateCategoryRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateCardTypeProfileRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantSearchRequest, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodOptionResponse, PaymentMethodType, PaymentOption, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, References, RelogWithNewSessionDetailsRequest, Report, ReconciliationReportUrlRequest, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduleEntry, CardSearch, ScheduledTaskRequest, SearchRolesetsRequest, Segment, SecurityConfig, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, StatementReportUrlRequest, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SuggestionCardDeliveryRequest, SuggestedCardMetaOptions, SuggestedCardPaymentMethodResponse, SuggestedCardTypeOptions, SuggestedCardDeliveryOptions, SuggestedSchedulesOptions, SuggestedFundingAccountOptions, SuggestedOptions, SuggestedPaymentMethodResponse, SuggestedPaymentMethodResponses, SuggestedUsageOptions, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SuggestionResponse, SummaryBookingInfoResponse, SummaryPaymentResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCardTypeProfileRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth, };
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { Client } from "./Client";
|
|
2
|
-
import { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardType, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CredentialRequest, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, SecurityConfig, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, } from "./model";
|
|
3
|
-
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardType, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CredentialRequest, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, Segment, SecurityConfig, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, };
|
|
2
|
+
import { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardType, CardTypeInformation, CardTypeProfileResponse, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CredentialRequest, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, SecurityConfig, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, } from "./model";
|
|
3
|
+
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardType, CardTypeInformation, CardTypeProfileResponse, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CredentialRequest, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, Segment, SecurityConfig, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, };
|
|
4
4
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EACN,mBAAmB,EACnB,sBAAsB,EACtB,yCAAyC,EACzC,yBAAyB,EACzB,eAAe,EAEf,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAGhB,UAAU,EAKV,mBAAmB,EACnB,iBAAiB,EACjB,sCAAsC,EACtC,4BAA4B,EAC5B,iBAAiB,EACjB,WAAW,EACX,kBAAkB,EAClB,mBAAmB,EACnB,eAAe,EAEf,kCAAkC,EAClC,uBAAuB,EACvB,mBAAmB,EACnB,oBAAoB,EACpB,QAAQ,EACR,0BAA0B,EAC1B,aAAa,EAGb,YAAY,EACZ,cAAc,EACd,cAAc,EACd,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EAEpB,2BAA2B,EAE3B,oCAAoC,EACpC,aAAa,EACb,eAAe,EAEf,QAAQ,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export interface CardTypeInformation {
|
|
2
|
+
activeCardTypeProfiles?: string[];
|
|
3
|
+
activeCardTypes?: string[];
|
|
4
|
+
}
|
|
5
|
+
export declare namespace CardTypeInformation {
|
|
6
|
+
const type: import("isly/dist/cjs/object").IslyObject<CardTypeInformation, object>;
|
|
7
|
+
const is: (value: CardTypeInformation | any) => value is CardTypeInformation;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var CardTypeInformation;
|
|
3
|
+
(function (CardTypeInformation) {
|
|
4
|
+
CardTypeInformation.type = isly.object({
|
|
5
|
+
activeCardTypeProfiles: isly.string().array().optional(),
|
|
6
|
+
activeCardTypes: isly.string().array().optional(),
|
|
7
|
+
});
|
|
8
|
+
CardTypeInformation.is = CardTypeInformation.type.is;
|
|
9
|
+
})(CardTypeInformation || (CardTypeInformation = {}));
|
|
10
|
+
//# sourceMappingURL=CardTypeInformation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CardTypeInformation.js","sourceRoot":"../","sources":["model/CardTypeInformation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAO3B,MAAM,KAAW,mBAAmB,CAMnC;AAND,WAAiB,mBAAmB;IACtB,wBAAI,GAAG,IAAI,CAAC,MAAM,CAAsB;QACpD,sBAAsB,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QACxD,eAAe,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;KACjD,CAAC,CAAA;IACW,sBAAE,GAAG,oBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EANgB,mBAAmB,KAAnB,mBAAmB,QAMnC"}
|
|
@@ -10,3 +10,7 @@ export interface CardTypeProfileResponse {
|
|
|
10
10
|
sharedBetween: string[];
|
|
11
11
|
isDefault: boolean;
|
|
12
12
|
}
|
|
13
|
+
export declare namespace CardTypeProfileResponse {
|
|
14
|
+
const type: import("isly/dist/cjs/object").IslyObject<CardTypeProfileResponse, object>;
|
|
15
|
+
const is: (value: CardTypeProfileResponse | any) => value is CardTypeProfileResponse;
|
|
16
|
+
}
|
|
@@ -1,2 +1,18 @@
|
|
|
1
|
-
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { CardTypeProfileStatus } from "./CardTypeProfileStatus";
|
|
3
|
+
import { CardTypeSpecification } from "./CardTypeSpecification";
|
|
4
|
+
import { ProviderCode } from "./ProviderCode";
|
|
5
|
+
export var CardTypeProfileResponse;
|
|
6
|
+
(function (CardTypeProfileResponse) {
|
|
7
|
+
CardTypeProfileResponse.type = isly.object({
|
|
8
|
+
cardTypeProfileId: isly.string(),
|
|
9
|
+
description: isly.string(),
|
|
10
|
+
providerCode: isly.fromIs("ProviderCode", ProviderCode.is),
|
|
11
|
+
status: isly.fromIs("CardTypeProfileStatus", CardTypeProfileStatus.is),
|
|
12
|
+
cardTypes: isly.fromIs("CardTypeSpecification", CardTypeSpecification.is).array(),
|
|
13
|
+
sharedBetween: isly.string().array(),
|
|
14
|
+
isDefault: isly.boolean(),
|
|
15
|
+
});
|
|
16
|
+
CardTypeProfileResponse.is = CardTypeProfileResponse.type.is;
|
|
17
|
+
})(CardTypeProfileResponse || (CardTypeProfileResponse = {}));
|
|
2
18
|
//# sourceMappingURL=CardTypeProfileResponse.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CardTypeProfileResponse.js","sourceRoot":"../","sources":["model/CardTypeProfileResponse.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"CardTypeProfileResponse.js","sourceRoot":"../","sources":["model/CardTypeProfileResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAW7C,MAAM,KAAW,uBAAuB,CAWvC;AAXD,WAAiB,uBAAuB;IAC1B,4BAAI,GAAG,IAAI,CAAC,MAAM,CAA0B;QACxD,iBAAiB,EAAE,IAAI,CAAC,MAAM,EAAE;QAChC,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;QAC1B,YAAY,EAAE,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,YAAY,CAAC,EAAE,CAAC;QAC1D,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,uBAAuB,EAAE,qBAAqB,CAAC,EAAE,CAAC;QACtE,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,uBAAuB,EAAE,qBAAqB,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE;QACjF,aAAa,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE;QACpC,SAAS,EAAE,IAAI,CAAC,OAAO,EAAE;KACzB,CAAC,CAAA;IACW,0BAAE,GAAG,wBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAXgB,uBAAuB,KAAvB,uBAAuB,QAWvC"}
|
|
@@ -3,3 +3,7 @@ export interface OrganisationCardTypeProfileResponse {
|
|
|
3
3
|
organisationCode: string;
|
|
4
4
|
cardTypeProfiles: CardTypeProfileResponse[];
|
|
5
5
|
}
|
|
6
|
+
export declare namespace OrganisationCardTypeProfileResponse {
|
|
7
|
+
const type: import("isly/dist/cjs/object").IslyObject<OrganisationCardTypeProfileResponse, object>;
|
|
8
|
+
const is: (value: OrganisationCardTypeProfileResponse | any) => value is OrganisationCardTypeProfileResponse;
|
|
9
|
+
}
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { CardTypeProfileResponse } from "./CardTypeProfileResponse";
|
|
3
|
+
export var OrganisationCardTypeProfileResponse;
|
|
4
|
+
(function (OrganisationCardTypeProfileResponse) {
|
|
5
|
+
OrganisationCardTypeProfileResponse.type = isly.object({
|
|
6
|
+
organisationCode: isly.string(),
|
|
7
|
+
cardTypeProfiles: isly.fromIs("CardTypeProfileResponse", CardTypeProfileResponse.is).array(),
|
|
8
|
+
});
|
|
9
|
+
OrganisationCardTypeProfileResponse.is = OrganisationCardTypeProfileResponse.type.is;
|
|
10
|
+
})(OrganisationCardTypeProfileResponse || (OrganisationCardTypeProfileResponse = {}));
|
|
2
11
|
//# sourceMappingURL=OrganisationCardTypeProfileResponse.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OrganisationCardTypeProfileResponse.js","sourceRoot":"../","sources":["model/OrganisationCardTypeProfileResponse.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"OrganisationCardTypeProfileResponse.js","sourceRoot":"../","sources":["model/OrganisationCardTypeProfileResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AAMnE,MAAM,KAAW,mCAAmC,CAMnD;AAND,WAAiB,mCAAmC;IACtC,wCAAI,GAAG,IAAI,CAAC,MAAM,CAAsC;QACpE,gBAAgB,EAAE,IAAI,CAAC,MAAM,EAAE;QAC/B,gBAAgB,EAAE,IAAI,CAAC,MAAM,CAAC,yBAAyB,EAAE,uBAAuB,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE;KAC5F,CAAC,CAAA;IACW,sCAAE,GAAG,oCAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EANgB,mCAAmC,KAAnC,mCAAmC,QAMnD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export type OrganisationRealm = typeof OrganisationRealm.values[number];
|
|
3
|
+
export declare namespace OrganisationRealm {
|
|
4
|
+
const values: readonly ["uk", "eu"];
|
|
5
|
+
const type: isly.Type<"eu" | "uk">;
|
|
6
|
+
const is: (value: any | ("eu" | "uk")) => value is "eu" | "uk";
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var OrganisationRealm;
|
|
3
|
+
(function (OrganisationRealm) {
|
|
4
|
+
OrganisationRealm.values = ["uk", "eu"];
|
|
5
|
+
OrganisationRealm.type = isly.string(OrganisationRealm.values);
|
|
6
|
+
OrganisationRealm.is = OrganisationRealm.type.is;
|
|
7
|
+
})(OrganisationRealm || (OrganisationRealm = {}));
|
|
8
|
+
//# sourceMappingURL=OrganisationRealm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OrganisationRealm.js","sourceRoot":"../","sources":["model/OrganisationRealm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAI3B,MAAM,KAAW,iBAAiB,CAIjC;AAJD,WAAiB,iBAAiB;IACpB,wBAAM,GAAG,CAAC,IAAI,EAAE,IAAI,CAAU,CAAA;IAC9B,sBAAI,GAAG,IAAI,CAAC,MAAM,CAAoB,kBAAA,MAAM,CAAC,CAAA;IAC7C,oBAAE,GAAG,kBAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAJgB,iBAAiB,KAAjB,iBAAiB,QAIjC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2";
|
|
2
|
+
import { ProviderCode } from "./ProviderCode";
|
|
3
|
+
export interface OrganisationSearchRequest {
|
|
4
|
+
codes?: string[];
|
|
5
|
+
activeProviders?: ProviderCode[];
|
|
6
|
+
statuses?: OrganisationStatusV2[];
|
|
7
|
+
includeConfig?: boolean;
|
|
8
|
+
includeCredentials?: boolean;
|
|
9
|
+
includeCardTypes?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare namespace OrganisationSearchRequest {
|
|
12
|
+
const type: import("isly/dist/cjs/object").IslyObject<OrganisationSearchRequest, object>;
|
|
13
|
+
const is: (value: OrganisationSearchRequest | any) => value is OrganisationSearchRequest;
|
|
14
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2";
|
|
3
|
+
import { ProviderCode } from "./ProviderCode";
|
|
4
|
+
export var OrganisationSearchRequest;
|
|
5
|
+
(function (OrganisationSearchRequest) {
|
|
6
|
+
OrganisationSearchRequest.type = isly.object({
|
|
7
|
+
codes: isly.string().array().optional(),
|
|
8
|
+
activeProviders: ProviderCode.type.array().optional(),
|
|
9
|
+
statuses: OrganisationStatusV2.type.array().optional(),
|
|
10
|
+
includeConfig: isly.boolean().optional(),
|
|
11
|
+
includeCredentials: isly.boolean().optional(),
|
|
12
|
+
includeCardTypes: isly.boolean().optional(),
|
|
13
|
+
});
|
|
14
|
+
OrganisationSearchRequest.is = OrganisationSearchRequest.type.is;
|
|
15
|
+
})(OrganisationSearchRequest || (OrganisationSearchRequest = {}));
|
|
16
|
+
//# sourceMappingURL=OrganisationSearchRequest.js.map
|
|
@@ -0,0 +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;AAW7C,MAAM,KAAW,yBAAyB,CAUzC;AAVD,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,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,EAVgB,yBAAyB,KAAzB,yBAAyB,QAUzC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { CardTypeInformation } from "./CardTypeInformation";
|
|
2
|
+
import { InternalOrganisationConfig } from "./InternalOrganisationConfig";
|
|
3
|
+
import { OrganisationConfig } from "./OrganisationConfig";
|
|
4
|
+
import { OrganisationRealm } from "./OrganisationRealm";
|
|
5
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2";
|
|
6
|
+
import { ProviderCode } from "./ProviderCode";
|
|
7
|
+
export interface OrganisationSearchResponse {
|
|
8
|
+
code: string;
|
|
9
|
+
name: string;
|
|
10
|
+
status: OrganisationStatusV2;
|
|
11
|
+
realm?: OrganisationRealm | OrganisationRealm[];
|
|
12
|
+
credentials?: Partial<Record<ProviderCode, Record<string, any>>>;
|
|
13
|
+
organisationConfig?: OrganisationConfig;
|
|
14
|
+
internalOrganisationConfig?: InternalOrganisationConfig;
|
|
15
|
+
cardTypes?: Partial<Record<ProviderCode, CardTypeInformation>>;
|
|
16
|
+
}
|
|
17
|
+
export declare namespace OrganisationSearchResponse {
|
|
18
|
+
const type: import("isly/dist/cjs/object").IslyObject<OrganisationSearchResponse, object>;
|
|
19
|
+
const is: (value: OrganisationSearchResponse | any) => value is OrganisationSearchResponse;
|
|
20
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { CardTypeInformation } from "./CardTypeInformation";
|
|
3
|
+
import { InternalOrganisationConfig } from "./InternalOrganisationConfig";
|
|
4
|
+
import { OrganisationConfig } from "./OrganisationConfig";
|
|
5
|
+
import { OrganisationRealm } from "./OrganisationRealm";
|
|
6
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2";
|
|
7
|
+
import { ProviderCode } from "./ProviderCode";
|
|
8
|
+
export var OrganisationSearchResponse;
|
|
9
|
+
(function (OrganisationSearchResponse) {
|
|
10
|
+
OrganisationSearchResponse.type = isly.object({
|
|
11
|
+
code: isly.string(),
|
|
12
|
+
name: isly.string(),
|
|
13
|
+
status: OrganisationStatusV2.type,
|
|
14
|
+
realm: isly.union(OrganisationRealm.type, isly.array(OrganisationRealm.type)).optional(),
|
|
15
|
+
credentials: isly.record(ProviderCode.type, isly.any()).optional(),
|
|
16
|
+
organisationConfig: isly.fromIs("OrganisationConfig", OrganisationConfig.is).optional(),
|
|
17
|
+
internalOrganisationConfig: isly.fromIs("InternalOrganisationConfig", InternalOrganisationConfig.is).optional(),
|
|
18
|
+
cardTypes: isly.record(ProviderCode.type, isly.fromIs("CardTypeInformation", CardTypeInformation.is)).optional(),
|
|
19
|
+
});
|
|
20
|
+
OrganisationSearchResponse.is = OrganisationSearchResponse.type.is;
|
|
21
|
+
})(OrganisationSearchResponse || (OrganisationSearchResponse = {}));
|
|
22
|
+
//# sourceMappingURL=OrganisationSearchResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OrganisationSearchResponse.js","sourceRoot":"../","sources":["model/OrganisationSearchResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AACzE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAa7C,MAAM,KAAW,0BAA0B,CAY1C;AAZD,WAAiB,0BAA0B;IAC7B,+BAAI,GAAG,IAAI,CAAC,MAAM,CAA6B;QAC3D,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,MAAM,EAAE,oBAAoB,CAAC,IAAI;QACjC,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,EAAE;QACxF,WAAW,EAAE,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;QAClE,kBAAkB,EAAE,IAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QACvF,0BAA0B,EAAE,IAAI,CAAC,MAAM,CAAC,4BAA4B,EAAE,0BAA0B,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QAC/G,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,qBAAqB,EAAE,mBAAmB,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;KAChH,CAAC,CAAA;IACW,6BAAE,GAAG,2BAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAZgB,0BAA0B,KAA1B,0BAA0B,QAY1C"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { isly } from "isly";
|
|
2
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2";
|
|
2
3
|
export type OrganisationStatus = typeof OrganisationStatus.values[number];
|
|
3
4
|
export declare namespace OrganisationStatus {
|
|
4
5
|
const values: readonly ["ACTIVE", "INACTIVE", "DELETED"];
|
|
5
6
|
const type: isly.Type<"ACTIVE" | "INACTIVE" | "DELETED">;
|
|
6
7
|
const is: (value: any | ("ACTIVE" | "INACTIVE" | "DELETED")) => value is "ACTIVE" | "INACTIVE" | "DELETED";
|
|
8
|
+
function toOrganisationStatusV2(value: OrganisationStatus): OrganisationStatusV2;
|
|
7
9
|
}
|
|
@@ -4,5 +4,9 @@ export var OrganisationStatus;
|
|
|
4
4
|
OrganisationStatus.values = ["ACTIVE", "INACTIVE", "DELETED"];
|
|
5
5
|
OrganisationStatus.type = isly.string(OrganisationStatus.values);
|
|
6
6
|
OrganisationStatus.is = OrganisationStatus.type.is;
|
|
7
|
+
function toOrganisationStatusV2(value) {
|
|
8
|
+
return value.toLowerCase();
|
|
9
|
+
}
|
|
10
|
+
OrganisationStatus.toOrganisationStatusV2 = toOrganisationStatusV2;
|
|
7
11
|
})(OrganisationStatus || (OrganisationStatus = {}));
|
|
8
12
|
//# sourceMappingURL=OrganisationStatus.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OrganisationStatus.js","sourceRoot":"../","sources":["model/OrganisationStatus.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"OrganisationStatus.js","sourceRoot":"../","sources":["model/OrganisationStatus.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAK3B,MAAM,KAAW,kBAAkB,CAOlC;AAPD,WAAiB,kBAAkB;IACrB,yBAAM,GAAG,CAAC,QAAQ,EAAE,UAAU,EAAE,SAAS,CAAU,CAAA;IACnD,uBAAI,GAAG,IAAI,CAAC,MAAM,CAAqB,mBAAA,MAAM,CAAC,CAAA;IAC9C,qBAAE,GAAG,mBAAA,IAAI,CAAC,EAAE,CAAA;IACzB,SAAgB,sBAAsB,CAAC,KAAyB;QAC/D,OAAO,KAAK,CAAC,WAAW,EAA0B,CAAA;IACnD,CAAC;IAFe,yCAAsB,yBAErC,CAAA;AACF,CAAC,EAPgB,kBAAkB,KAAlB,kBAAkB,QAOlC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { OrganisationStatus } from "./OrganisationStatus";
|
|
3
|
+
export type OrganisationStatusV2 = typeof OrganisationStatusV2.values[number];
|
|
4
|
+
export declare namespace OrganisationStatusV2 {
|
|
5
|
+
const values: readonly ["active", "inactive", "deleted"];
|
|
6
|
+
const type: isly.Type<"active" | "inactive" | "deleted">;
|
|
7
|
+
const is: (value: any | ("active" | "inactive" | "deleted")) => value is "active" | "inactive" | "deleted";
|
|
8
|
+
function toOrganisationStatus(value: OrganisationStatusV2): OrganisationStatus;
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var OrganisationStatusV2;
|
|
3
|
+
(function (OrganisationStatusV2) {
|
|
4
|
+
OrganisationStatusV2.values = ["active", "inactive", "deleted"];
|
|
5
|
+
OrganisationStatusV2.type = isly.string(OrganisationStatusV2.values);
|
|
6
|
+
OrganisationStatusV2.is = OrganisationStatusV2.type.is;
|
|
7
|
+
function toOrganisationStatus(value) {
|
|
8
|
+
return value.toUpperCase();
|
|
9
|
+
}
|
|
10
|
+
OrganisationStatusV2.toOrganisationStatus = toOrganisationStatus;
|
|
11
|
+
})(OrganisationStatusV2 || (OrganisationStatusV2 = {}));
|
|
12
|
+
//# sourceMappingURL=OrganisationStatusV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OrganisationStatusV2.js","sourceRoot":"../","sources":["model/OrganisationStatusV2.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAK3B,MAAM,KAAW,oBAAoB,CAOpC;AAPD,WAAiB,oBAAoB;IACvB,2BAAM,GAAG,CAAC,QAAQ,EAAE,UAAU,EAAE,SAAS,CAAU,CAAA;IACnD,yBAAI,GAAG,IAAI,CAAC,MAAM,CAAuB,qBAAA,MAAM,CAAC,CAAA;IAChD,uBAAE,GAAG,qBAAA,IAAI,CAAC,EAAE,CAAA;IACzB,SAAgB,oBAAoB,CAAC,KAA2B;QAC/D,OAAO,KAAK,CAAC,WAAW,EAAwB,CAAA;IACjD,CAAC;IAFe,yCAAoB,uBAEnC,CAAA;AACF,CAAC,EAPgB,oBAAoB,KAApB,oBAAoB,QAOpC"}
|
package/dist/model/index.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ import { CardStatement } from "./CardStatement";
|
|
|
49
49
|
import { CardTransaction } from "./CardTransaction";
|
|
50
50
|
import { CardTransactionType } from "./CardTransactionType";
|
|
51
51
|
import { CardType } from "./CardType";
|
|
52
|
+
import { CardTypeInformation } from "./CardTypeInformation";
|
|
52
53
|
import { CardTypeProfileResponse } from "./CardTypeProfileResponse";
|
|
53
54
|
import { CardTypeResponse } from "./CardTypeResponse";
|
|
54
55
|
import { CardTypeResponseV2 } from "./CardTypeResponseV2";
|
|
@@ -125,9 +126,13 @@ import { OrganisationCardTypeProfileResponse } from "./OrganisationCardTypeProfi
|
|
|
125
126
|
import { OrganisationConfig } from "./OrganisationConfig";
|
|
126
127
|
import { OrganisationCreateRequest } from "./OrganisationCreateRequest";
|
|
127
128
|
import { OrganisationFlag } from "./OrganisationFlag";
|
|
129
|
+
import { OrganisationRealm } from "./OrganisationRealm";
|
|
128
130
|
import { OrganisationRequest } from "./OrganisationRequest";
|
|
129
131
|
import { OrganisationResponse } from "./OrganisationResponse";
|
|
132
|
+
import { OrganisationSearchRequest } from "./OrganisationSearchRequest";
|
|
133
|
+
import { OrganisationSearchResponse } from "./OrganisationSearchResponse";
|
|
130
134
|
import { OrganisationStatus } from "./OrganisationStatus";
|
|
135
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2";
|
|
131
136
|
import { Passengers } from "./Passengers";
|
|
132
137
|
import { PasswordChangeRequest } from "./PasswordChangeRequest";
|
|
133
138
|
import { PasswordResetResponse } from "./PasswordResetResponse";
|
|
@@ -237,4 +242,4 @@ import { UserRoleResponse } from "./UserRoleResponse";
|
|
|
237
242
|
import { UserSearchRequest } from "./UserSearchRequest";
|
|
238
243
|
import { UserStatus } from "./UserStatus";
|
|
239
244
|
import { YearMonth } from "./YearMonth";
|
|
240
|
-
export { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CreateCardTypeProfileRequest, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CategoryFundingAccountAccessRequest, UpdateCategoryRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, Inclusion, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantSearchRequest, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodOptionResponse, PaymentMethodType, PaymentOption, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, References, RelogWithNewSessionDetailsRequest, Report, ReconciliationReportUrlRequest, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduleEntry, CardSearch, ScheduledTaskRequest, SearchRolesetsRequest, SecurityConfig, Segment, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, StatementReportUrlRequest, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SuggestedCardMetaOptions, SuggestedCardPaymentMethodResponse, SuggestedCardTypeOptions, SuggestedFundingAccountOptions, SuggestedOptions, SuggestedPaymentMethodResponse, SuggestedCardDeliveryOptions, SuggestedSchedulesOptions, SuggestedPaymentMethodResponses, SuggestedUsageOptions, SuggestionCardDeliveryRequest, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SuggestionResponse, SummaryBookingInfoResponse, SummaryPaymentResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCardTypeProfileRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth, };
|
|
245
|
+
export { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyResponse, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeInformation, CreateCardTypeProfileRequest, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CategoryFundingAccountAccessRequest, UpdateCategoryRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, Inclusion, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, MerchantSearchRequest, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodOptionResponse, PaymentMethodType, PaymentOption, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, References, RelogWithNewSessionDetailsRequest, Report, ReconciliationReportUrlRequest, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduleEntry, CardSearch, ScheduledTaskRequest, SearchRolesetsRequest, SecurityConfig, Segment, SearchBeneficiaryRequest, SearchCardTypeProfileRequest, StatementReportUrlRequest, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SuggestedCardMetaOptions, SuggestedCardPaymentMethodResponse, SuggestedCardTypeOptions, SuggestedFundingAccountOptions, SuggestedOptions, SuggestedPaymentMethodResponse, SuggestedCardDeliveryOptions, SuggestedSchedulesOptions, SuggestedPaymentMethodResponses, SuggestedUsageOptions, SuggestionCardDeliveryRequest, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SuggestionResponse, SummaryBookingInfoResponse, SummaryPaymentResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCardTypeProfileRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth, };
|
package/dist/model/index.js
CHANGED
|
@@ -36,6 +36,8 @@ import { CardStateChangeScheduledTaskResponse } from "./CardStateChangeScheduled
|
|
|
36
36
|
import { CardStatement } from "./CardStatement";
|
|
37
37
|
import { CardTransaction } from "./CardTransaction";
|
|
38
38
|
import { CardType } from "./CardType";
|
|
39
|
+
import { CardTypeInformation } from "./CardTypeInformation";
|
|
40
|
+
import { CardTypeProfileResponse } from "./CardTypeProfileResponse";
|
|
39
41
|
import { CardTypeSpecification } from "./CardTypeSpecification";
|
|
40
42
|
import { CardTypeSpecificationFlag } from "./CardTypeSpecificationFlag";
|
|
41
43
|
import { CardUsage } from "./CardUsage";
|
|
@@ -78,12 +80,17 @@ import { MerchantResponse } from "./MerchantResponse";
|
|
|
78
80
|
import { OmnisetupFlags } from "./OmnisetupFlags";
|
|
79
81
|
import { OmnisetupProviderRequest } from "./OmnisetupProviderRequest";
|
|
80
82
|
import { OmnisetupRequest } from "./OmnisetupRequest";
|
|
83
|
+
import { OrganisationCardTypeProfileResponse } from "./OrganisationCardTypeProfileResponse";
|
|
81
84
|
import { OrganisationConfig } from "./OrganisationConfig";
|
|
82
85
|
import { OrganisationCreateRequest } from "./OrganisationCreateRequest";
|
|
83
86
|
import { OrganisationFlag } from "./OrganisationFlag";
|
|
87
|
+
import { OrganisationRealm } from "./OrganisationRealm";
|
|
84
88
|
import { OrganisationRequest } from "./OrganisationRequest";
|
|
85
89
|
import { OrganisationResponse } from "./OrganisationResponse";
|
|
90
|
+
import { OrganisationSearchRequest } from "./OrganisationSearchRequest";
|
|
91
|
+
import { OrganisationSearchResponse } from "./OrganisationSearchResponse";
|
|
86
92
|
import { OrganisationStatus } from "./OrganisationStatus";
|
|
93
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2";
|
|
87
94
|
import { Passengers } from "./Passengers";
|
|
88
95
|
import { PaxpayFeature } from "./PaxpayFeature";
|
|
89
96
|
import { PaymentAccountState } from "./PaymentAccountState";
|
|
@@ -140,5 +147,5 @@ import { UserRequest } from "./UserRequest";
|
|
|
140
147
|
import { UserResponse } from "./UserResponse";
|
|
141
148
|
import { UserStatus } from "./UserStatus";
|
|
142
149
|
import { YearMonth } from "./YearMonth";
|
|
143
|
-
export { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardType, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CredentialRequest, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, Inclusion, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationStatus, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, SecurityConfig, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, };
|
|
150
|
+
export { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOperation, CardResponse, CardResponseV2, CardResponseV3, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardType, CardTypeInformation, CardTypeProfileResponse, CardTypeSpecification, CardTypeSpecificationFlag, CardUsage, CredentialRequest, CurrencyConversionRequest, CurrencyConversionResponse, DeliveryStatus, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, FutureTransactionPrognosisAmountPair, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, Inclusion, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginResponse, MerchantDetails, MerchantRequest, MerchantResponse, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OrganisationCardTypeProfileResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRealm, OrganisationRequest, OrganisationResponse, OrganisationSearchRequest, OrganisationSearchResponse, OrganisationStatus, OrganisationStatusV2, Passengers, PaxpayFeature, PaymentAccountState, PaymentAmountScheduleRequest, PaymentAmountScheduleResponse, PaymentCardCreateRequest, PaymentCardUsage, PaymentDeliveryRequest, PaymentDeliveryResponse, PaymentDeliveryState, PaymentMethodType, PaymentRequest, PaymentResponse, PaymentSearch, PaymentStatus, PaymentTransferCreateRequest, ProductType, ProviderCode, ProviderResponse, Range, References, ScheduleEntry, SecurityConfig, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportSubType, StatementRowIds, StatementTransferSpecificType, SuggestionCardPaymentMethodRequest, SuggestionMerchantRequest, SuggestionPaymentMethodRequest, SuggestionRequest, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferDirection, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferResponseV3, TransferSearch, TransferStatus, TravelPartyInfo, UpdateAccountRequest, UserChangeRequest, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, };
|
|
144
151
|
//# sourceMappingURL=index.js.map
|
package/dist/model/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["model/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,yCAAyC,EAAE,MAAM,6CAA6C,CAAA;AACvG,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAA;AACvE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAEnD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAGrD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAKzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,sCAAsC,EAAE,MAAM,0CAA0C,CAAA;AACjG,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AAC7E,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAEnD,OAAO,EAAE,kCAAkC,EAAE,MAAM,sCAAsC,CAAA;AACzF,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AACzE,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAG/C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAE7D,OAAO,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAA;AAE3E,OAAO,EAAE,oCAAoC,EAAE,MAAM,wCAAwC,CAAA;AAC7F,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAEnD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["model/index.ts"],"names":[],"mappings":"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"}
|
package/index.ts
CHANGED
|
@@ -51,6 +51,7 @@ import {
|
|
|
51
51
|
CardTransaction,
|
|
52
52
|
CardTransactionType,
|
|
53
53
|
CardType,
|
|
54
|
+
CardTypeInformation,
|
|
54
55
|
CardTypeProfileResponse,
|
|
55
56
|
CardTypeResponse,
|
|
56
57
|
CardTypeResponseV2,
|
|
@@ -126,9 +127,13 @@ import {
|
|
|
126
127
|
OrganisationConfig,
|
|
127
128
|
OrganisationCreateRequest,
|
|
128
129
|
OrganisationFlag,
|
|
130
|
+
OrganisationRealm,
|
|
129
131
|
OrganisationRequest,
|
|
130
132
|
OrganisationResponse,
|
|
133
|
+
OrganisationSearchRequest,
|
|
134
|
+
OrganisationSearchResponse,
|
|
131
135
|
OrganisationStatus,
|
|
136
|
+
OrganisationStatusV2,
|
|
132
137
|
Passengers,
|
|
133
138
|
PasswordChangeRequest,
|
|
134
139
|
PasswordResetResponse,
|
|
@@ -292,7 +297,7 @@ export {
|
|
|
292
297
|
CardTransaction,
|
|
293
298
|
CardTransactionType,
|
|
294
299
|
CardType,
|
|
295
|
-
|
|
300
|
+
CardTypeInformation,
|
|
296
301
|
CardTypeProfileResponse,
|
|
297
302
|
CardTypeResponse,
|
|
298
303
|
CardTypeResponseV2,
|
|
@@ -312,6 +317,7 @@ export {
|
|
|
312
317
|
ConfigResponse,
|
|
313
318
|
ConfigTypesResponse,
|
|
314
319
|
CreateCardRequest,
|
|
320
|
+
CreateCardTypeProfileRequest,
|
|
315
321
|
CreateRolesetRequest,
|
|
316
322
|
CredentialRequest,
|
|
317
323
|
CredentialResponse,
|
|
@@ -368,9 +374,13 @@ export {
|
|
|
368
374
|
OrganisationConfig,
|
|
369
375
|
OrganisationCreateRequest,
|
|
370
376
|
OrganisationFlag,
|
|
377
|
+
OrganisationRealm,
|
|
371
378
|
OrganisationRequest,
|
|
372
379
|
OrganisationResponse,
|
|
380
|
+
OrganisationSearchRequest,
|
|
381
|
+
OrganisationSearchResponse,
|
|
373
382
|
OrganisationStatus,
|
|
383
|
+
OrganisationStatusV2,
|
|
374
384
|
Passengers,
|
|
375
385
|
PasswordChangeRequest,
|
|
376
386
|
PasswordResetResponse,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
2
|
+
|
|
3
|
+
export interface CardTypeInformation {
|
|
4
|
+
activeCardTypeProfiles?: string[]
|
|
5
|
+
activeCardTypes?: string[]
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export namespace CardTypeInformation {
|
|
9
|
+
export const type = isly.object<CardTypeInformation>({
|
|
10
|
+
activeCardTypeProfiles: isly.string().array().optional(),
|
|
11
|
+
activeCardTypes: isly.string().array().optional(),
|
|
12
|
+
})
|
|
13
|
+
export const is = type.is
|
|
14
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
1
2
|
import { CardTypeProfileStatus } from "./CardTypeProfileStatus"
|
|
2
3
|
import { CardTypeSpecification } from "./CardTypeSpecification"
|
|
3
4
|
import { ProviderCode } from "./ProviderCode"
|
|
@@ -11,3 +12,15 @@ export interface CardTypeProfileResponse {
|
|
|
11
12
|
sharedBetween: string[]
|
|
12
13
|
isDefault: boolean
|
|
13
14
|
}
|
|
15
|
+
export namespace CardTypeProfileResponse {
|
|
16
|
+
export const type = isly.object<CardTypeProfileResponse>({
|
|
17
|
+
cardTypeProfileId: isly.string(),
|
|
18
|
+
description: isly.string(),
|
|
19
|
+
providerCode: isly.fromIs("ProviderCode", ProviderCode.is),
|
|
20
|
+
status: isly.fromIs("CardTypeProfileStatus", CardTypeProfileStatus.is),
|
|
21
|
+
cardTypes: isly.fromIs("CardTypeSpecification", CardTypeSpecification.is).array(),
|
|
22
|
+
sharedBetween: isly.string().array(),
|
|
23
|
+
isDefault: isly.boolean(),
|
|
24
|
+
})
|
|
25
|
+
export const is = type.is
|
|
26
|
+
}
|
|
@@ -1,6 +1,14 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
1
2
|
import { CardTypeProfileResponse } from "./CardTypeProfileResponse"
|
|
2
3
|
|
|
3
4
|
export interface OrganisationCardTypeProfileResponse {
|
|
4
5
|
organisationCode: string
|
|
5
6
|
cardTypeProfiles: CardTypeProfileResponse[]
|
|
6
7
|
}
|
|
8
|
+
export namespace OrganisationCardTypeProfileResponse {
|
|
9
|
+
export const type = isly.object<OrganisationCardTypeProfileResponse>({
|
|
10
|
+
organisationCode: isly.string(),
|
|
11
|
+
cardTypeProfiles: isly.fromIs("CardTypeProfileResponse", CardTypeProfileResponse.is).array(),
|
|
12
|
+
})
|
|
13
|
+
export const is = type.is
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
2
|
+
|
|
3
|
+
export type OrganisationRealm = typeof OrganisationRealm.values[number]
|
|
4
|
+
|
|
5
|
+
export namespace OrganisationRealm {
|
|
6
|
+
export const values = ["uk", "eu"] as const
|
|
7
|
+
export const type = isly.string<OrganisationRealm>(values)
|
|
8
|
+
export const is = type.is
|
|
9
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
2
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2"
|
|
3
|
+
import { ProviderCode } from "./ProviderCode"
|
|
4
|
+
|
|
5
|
+
export interface OrganisationSearchRequest {
|
|
6
|
+
codes?: string[]
|
|
7
|
+
activeProviders?: ProviderCode[]
|
|
8
|
+
statuses?: OrganisationStatusV2[]
|
|
9
|
+
includeConfig?: boolean
|
|
10
|
+
includeCredentials?: boolean
|
|
11
|
+
includeCardTypes?: boolean
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export namespace OrganisationSearchRequest {
|
|
15
|
+
export const type = isly.object<OrganisationSearchRequest>({
|
|
16
|
+
codes: isly.string().array().optional(),
|
|
17
|
+
activeProviders: ProviderCode.type.array().optional(),
|
|
18
|
+
statuses: OrganisationStatusV2.type.array().optional(),
|
|
19
|
+
includeConfig: isly.boolean().optional(),
|
|
20
|
+
includeCredentials: isly.boolean().optional(),
|
|
21
|
+
includeCardTypes: isly.boolean().optional(),
|
|
22
|
+
})
|
|
23
|
+
export const is = type.is
|
|
24
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
2
|
+
import { CardTypeInformation } from "./CardTypeInformation"
|
|
3
|
+
import { InternalOrganisationConfig } from "./InternalOrganisationConfig"
|
|
4
|
+
import { OrganisationConfig } from "./OrganisationConfig"
|
|
5
|
+
import { OrganisationRealm } from "./OrganisationRealm"
|
|
6
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2"
|
|
7
|
+
import { ProviderCode } from "./ProviderCode"
|
|
8
|
+
|
|
9
|
+
export interface OrganisationSearchResponse {
|
|
10
|
+
code: string
|
|
11
|
+
name: string
|
|
12
|
+
status: OrganisationStatusV2
|
|
13
|
+
realm?: OrganisationRealm | OrganisationRealm[]
|
|
14
|
+
credentials?: Partial<Record<ProviderCode, Record<string, any>>>
|
|
15
|
+
organisationConfig?: OrganisationConfig
|
|
16
|
+
internalOrganisationConfig?: InternalOrganisationConfig
|
|
17
|
+
cardTypes?: Partial<Record<ProviderCode, CardTypeInformation>>
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export namespace OrganisationSearchResponse {
|
|
21
|
+
export const type = isly.object<OrganisationSearchResponse>({
|
|
22
|
+
code: isly.string(),
|
|
23
|
+
name: isly.string(),
|
|
24
|
+
status: OrganisationStatusV2.type,
|
|
25
|
+
realm: isly.union(OrganisationRealm.type, isly.array(OrganisationRealm.type)).optional(),
|
|
26
|
+
credentials: isly.record(ProviderCode.type, isly.any()).optional(),
|
|
27
|
+
organisationConfig: isly.fromIs("OrganisationConfig", OrganisationConfig.is).optional(),
|
|
28
|
+
internalOrganisationConfig: isly.fromIs("InternalOrganisationConfig", InternalOrganisationConfig.is).optional(),
|
|
29
|
+
cardTypes: isly.record(ProviderCode.type, isly.fromIs("CardTypeInformation", CardTypeInformation.is)).optional(),
|
|
30
|
+
})
|
|
31
|
+
export const is = type.is
|
|
32
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { isly } from "isly"
|
|
2
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2"
|
|
2
3
|
|
|
3
4
|
export type OrganisationStatus = typeof OrganisationStatus.values[number]
|
|
4
5
|
|
|
@@ -6,4 +7,7 @@ export namespace OrganisationStatus {
|
|
|
6
7
|
export const values = ["ACTIVE", "INACTIVE", "DELETED"] as const
|
|
7
8
|
export const type = isly.string<OrganisationStatus>(values)
|
|
8
9
|
export const is = type.is
|
|
10
|
+
export function toOrganisationStatusV2(value: OrganisationStatus): OrganisationStatusV2 {
|
|
11
|
+
return value.toLowerCase() as OrganisationStatusV2
|
|
12
|
+
}
|
|
9
13
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
2
|
+
import { OrganisationStatus } from "./OrganisationStatus"
|
|
3
|
+
|
|
4
|
+
export type OrganisationStatusV2 = typeof OrganisationStatusV2.values[number]
|
|
5
|
+
|
|
6
|
+
export namespace OrganisationStatusV2 {
|
|
7
|
+
export const values = ["active", "inactive", "deleted"] as const
|
|
8
|
+
export const type = isly.string<OrganisationStatusV2>(values)
|
|
9
|
+
export const is = type.is
|
|
10
|
+
export function toOrganisationStatus(value: OrganisationStatusV2): OrganisationStatus {
|
|
11
|
+
return value.toUpperCase() as OrganisationStatus
|
|
12
|
+
}
|
|
13
|
+
}
|
package/model/index.ts
CHANGED
|
@@ -49,6 +49,7 @@ import { CardStatement } from "./CardStatement"
|
|
|
49
49
|
import { CardTransaction } from "./CardTransaction"
|
|
50
50
|
import { CardTransactionType } from "./CardTransactionType"
|
|
51
51
|
import { CardType } from "./CardType"
|
|
52
|
+
import { CardTypeInformation } from "./CardTypeInformation"
|
|
52
53
|
import { CardTypeProfileResponse } from "./CardTypeProfileResponse"
|
|
53
54
|
import { CardTypeResponse } from "./CardTypeResponse"
|
|
54
55
|
import { CardTypeResponseV2 } from "./CardTypeResponseV2"
|
|
@@ -125,9 +126,13 @@ import { OrganisationCardTypeProfileResponse } from "./OrganisationCardTypeProfi
|
|
|
125
126
|
import { OrganisationConfig } from "./OrganisationConfig"
|
|
126
127
|
import { OrganisationCreateRequest } from "./OrganisationCreateRequest"
|
|
127
128
|
import { OrganisationFlag } from "./OrganisationFlag"
|
|
129
|
+
import { OrganisationRealm } from "./OrganisationRealm"
|
|
128
130
|
import { OrganisationRequest } from "./OrganisationRequest"
|
|
129
131
|
import { OrganisationResponse } from "./OrganisationResponse"
|
|
132
|
+
import { OrganisationSearchRequest } from "./OrganisationSearchRequest"
|
|
133
|
+
import { OrganisationSearchResponse } from "./OrganisationSearchResponse"
|
|
130
134
|
import { OrganisationStatus } from "./OrganisationStatus"
|
|
135
|
+
import { OrganisationStatusV2 } from "./OrganisationStatusV2"
|
|
131
136
|
import { Passengers } from "./Passengers"
|
|
132
137
|
import { PasswordChangeRequest } from "./PasswordChangeRequest"
|
|
133
138
|
import { PasswordResetResponse } from "./PasswordResetResponse"
|
|
@@ -289,6 +294,7 @@ export {
|
|
|
289
294
|
CardTransaction,
|
|
290
295
|
CardTransactionType,
|
|
291
296
|
CardType,
|
|
297
|
+
CardTypeInformation,
|
|
292
298
|
CreateCardTypeProfileRequest,
|
|
293
299
|
CardTypeProfileResponse,
|
|
294
300
|
CardTypeResponse,
|
|
@@ -366,9 +372,13 @@ export {
|
|
|
366
372
|
OrganisationConfig,
|
|
367
373
|
OrganisationCreateRequest,
|
|
368
374
|
OrganisationFlag,
|
|
375
|
+
OrganisationRealm,
|
|
369
376
|
OrganisationRequest,
|
|
370
377
|
OrganisationResponse,
|
|
378
|
+
OrganisationSearchRequest,
|
|
379
|
+
OrganisationSearchResponse,
|
|
371
380
|
OrganisationStatus,
|
|
381
|
+
OrganisationStatusV2,
|
|
372
382
|
Passengers,
|
|
373
383
|
PasswordChangeRequest,
|
|
374
384
|
PasswordResetResponse,
|