gocardless-nodejs
Advanced tools
Comparing version 3.14.0 to 3.15.0
@@ -21,2 +21,3 @@ import { Environments } from './constants'; | ||
import { MandatePdfService } from './services/mandatePdfService'; | ||
import { NegativeBalanceLimitService } from './services/negativeBalanceLimitService'; | ||
import { PayerAuthorisationService } from './services/payerAuthorisationService'; | ||
@@ -55,2 +56,3 @@ import { PaymentService } from './services/paymentService'; | ||
private _mandatePdfs; | ||
private _negativeBalanceLimits; | ||
private _payerAuthorisations; | ||
@@ -88,2 +90,3 @@ private _payments; | ||
get mandatePdfs(): MandatePdfService; | ||
get negativeBalanceLimits(): NegativeBalanceLimitService; | ||
get payerAuthorisations(): PayerAuthorisationService; | ||
@@ -90,0 +93,0 @@ get payments(): PaymentService; |
@@ -25,2 +25,3 @@ 'use strict'; | ||
const mandatePdfService_1 = require("./services/mandatePdfService"); | ||
const negativeBalanceLimitService_1 = require("./services/negativeBalanceLimitService"); | ||
const payerAuthorisationService_1 = require("./services/payerAuthorisationService"); | ||
@@ -60,2 +61,3 @@ const paymentService_1 = require("./services/paymentService"); | ||
this._mandatePdfs = undefined; | ||
this._negativeBalanceLimits = undefined; | ||
this._payerAuthorisations = undefined; | ||
@@ -188,2 +190,8 @@ this._payments = undefined; | ||
} | ||
get negativeBalanceLimits() { | ||
if (!this._negativeBalanceLimits) { | ||
this._negativeBalanceLimits = new negativeBalanceLimitService_1.NegativeBalanceLimitService(this._api); | ||
} | ||
return this._negativeBalanceLimits; | ||
} | ||
get payerAuthorisations() { | ||
@@ -190,0 +198,0 @@ if (!this._payerAuthorisations) { |
@@ -5,4 +5,4 @@ declare enum Environments { | ||
} | ||
declare const CLIENT_VERSION = "3.14.0"; | ||
declare const CLIENT_VERSION = "3.15.0"; | ||
declare const API_VERSION = "2015-07-06"; | ||
export { Environments, CLIENT_VERSION, API_VERSION }; |
@@ -8,5 +8,4 @@ 'use strict'; | ||
Environments["Sandbox"] = "SANDBOX"; | ||
})(Environments || (Environments = {})); | ||
exports.Environments = Environments; | ||
const CLIENT_VERSION = '3.14.0'; | ||
})(Environments || (exports.Environments = Environments = {})); | ||
const CLIENT_VERSION = '3.15.0'; | ||
exports.CLIENT_VERSION = CLIENT_VERSION; | ||
@@ -13,0 +12,0 @@ const API_VERSION = '2015-07-06'; |
{ | ||
"name": "gocardless-nodejs", | ||
"version": "3.14.0", | ||
"version": "3.15.0", | ||
"description": "Node.js client for the GoCardless API - a powerful, simple solution for the collection of recurring bank-to-bank payments", | ||
@@ -5,0 +5,0 @@ "author": "GoCardless Ltd <client-libraries@gocardless.com>", |
@@ -54,3 +54,3 @@ import * as Types from '../types/Types'; | ||
interface BillingRequestChooseCurrencyRequest { | ||
currency?: string; | ||
currency: string; | ||
metadata?: Types.JsonMap; | ||
@@ -57,0 +57,0 @@ } |
@@ -9,2 +9,3 @@ import * as Types from '../types/Types'; | ||
interface CreditorCreateRequest { | ||
bank_reference_prefix?: string; | ||
country_code: string; | ||
@@ -24,2 +25,3 @@ creditor_type: Types.CreditorCreditorType; | ||
address_line3?: string; | ||
bank_reference_prefix?: string; | ||
city?: string; | ||
@@ -32,5 +34,2 @@ country_code?: string; | ||
} | ||
interface CreditorApplySchemeIdentifierRequest { | ||
links: Types.CreditorApplySchemeIdentifierRequestLinks; | ||
} | ||
export declare class CreditorService { | ||
@@ -44,4 +43,3 @@ private api; | ||
update(identity: string, requestParameters: CreditorUpdateRequest): Promise<CreditorResponse>; | ||
applySchemeIdentifier(identity: string, requestParameters: CreditorApplySchemeIdentifierRequest): Promise<CreditorResponse>; | ||
} | ||
export {}; |
@@ -88,21 +88,4 @@ 'use strict'; | ||
} | ||
async applySchemeIdentifier(identity, requestParameters) { | ||
const urlParameters = [{ key: 'identity', value: identity }]; | ||
const requestParams = { | ||
path: '/creditors/:identity/actions/apply_scheme_identifier', | ||
method: 'post', | ||
urlParameters, | ||
requestParameters, | ||
payloadKey: null, | ||
fetch: null, | ||
}; | ||
const response = await this.api.request(requestParams); | ||
const formattedResponse = { | ||
...response.body['creditors'], | ||
__response__: response.__response__, | ||
}; | ||
return formattedResponse; | ||
} | ||
} | ||
exports.CreditorService = CreditorService; | ||
//# sourceMappingURL=creditorService.js.map |
@@ -9,3 +9,2 @@ import * as Types from '../types/Types'; | ||
before?: string; | ||
created_at?: Types.CreatedAtFilter; | ||
limit?: string; | ||
@@ -12,0 +11,0 @@ source?: string; |
@@ -5,2 +5,3 @@ import * as Types from '../types/Types'; | ||
interface MandateImportCreateRequest { | ||
links?: Types.MandateImportCreateRequestLinks; | ||
scheme: Types.MandateImportScheme; | ||
@@ -7,0 +8,0 @@ } |
@@ -9,2 +9,3 @@ import * as Types from '../types/Types'; | ||
interface SchemeIdentifierCreateRequest { | ||
links?: Types.SchemeIdentifierCreateRequestLinks; | ||
name: string; | ||
@@ -16,2 +17,3 @@ scheme: Types.SchemeIdentifierScheme; | ||
before?: string; | ||
creditor?: string; | ||
limit?: string; | ||
@@ -18,0 +20,0 @@ } |
@@ -12,2 +12,3 @@ import * as Types from '../types/Types'; | ||
jurisdiction?: string; | ||
limit?: string; | ||
} | ||
@@ -14,0 +15,0 @@ export declare class TaxRateService { |
@@ -10,2 +10,3 @@ /** Type for a bankauthorisation resource. */ | ||
links?: BankAuthorisationLinks; | ||
qr_code_url?: string | null; | ||
redirect_uri?: string; | ||
@@ -101,2 +102,3 @@ url?: string; | ||
completes_actions?: string[]; | ||
institution_guess_status?: BillingRequestActionInstitutionGuessStatus; | ||
required?: boolean; | ||
@@ -137,2 +139,8 @@ requires_actions?: string[]; | ||
} | ||
export declare enum BillingRequestActionInstitutionGuessStatus { | ||
NotNeeded = "not_needed", | ||
Pending = "pending", | ||
Failed = "failed", | ||
Success = "success" | ||
} | ||
export declare enum BillingRequestActionStatus { | ||
@@ -420,2 +428,3 @@ Pending = "pending", | ||
address_line3?: string | null; | ||
bank_reference_prefix?: string; | ||
can_create_refunds?: boolean; | ||
@@ -450,6 +459,2 @@ city?: string | null; | ||
} | ||
/** Type for a creditorapplyschemeidentifierrequestlinks resource. */ | ||
export interface CreditorApplySchemeIdentifierRequestLinks { | ||
scheme_identifier: string; | ||
} | ||
export declare enum CreditorCreditorType { | ||
@@ -677,2 +682,3 @@ Company = "company", | ||
metadata?: JsonMap; | ||
resource_metadata?: JsonMap; | ||
resource_type?: EventResourceType; | ||
@@ -833,3 +839,3 @@ } | ||
export interface Institution { | ||
bank_redirect?: boolean; | ||
autocompletes_collect_bank_account?: boolean; | ||
country_code?: string; | ||
@@ -849,2 +855,3 @@ icon_url?: string; | ||
created_at?: string; | ||
funds_settlement?: MandateFundsSettlement; | ||
id?: string; | ||
@@ -890,2 +897,6 @@ links?: MandateLinks; | ||
} | ||
export declare enum MandateFundsSettlement { | ||
Managed = "managed", | ||
Direct = "direct" | ||
} | ||
/** Type for a mandatelinks resource. */ | ||
@@ -914,5 +925,14 @@ export interface MandateLinks { | ||
id?: string; | ||
links?: MandateImportLinks; | ||
scheme?: MandateImportScheme; | ||
status?: MandateImportStatus; | ||
} | ||
/** Type for a mandateimportcreaterequestlinks resource. */ | ||
export interface MandateImportCreateRequestLinks { | ||
creditor?: string; | ||
} | ||
/** Type for a mandateimportlinks resource. */ | ||
export interface MandateImportLinks { | ||
creditor?: string; | ||
} | ||
export declare enum MandateImportScheme { | ||
@@ -1005,2 +1025,29 @@ Ach = "ach", | ||
} | ||
/** Type for a negativebalancelimit resource. */ | ||
export interface NegativeBalanceLimit { | ||
balance_limit?: string; | ||
created_at?: string; | ||
currency?: NegativeBalanceLimitCurrency; | ||
id?: string; | ||
links?: NegativeBalanceLimitLinks; | ||
} | ||
/** Type for a negativebalancelimitcreaterequestlinks resource. */ | ||
export interface NegativeBalanceLimitCreateRequestLinks { | ||
creditor: string; | ||
} | ||
export declare enum NegativeBalanceLimitCurrency { | ||
AUD = "AUD", | ||
CAD = "CAD", | ||
DKK = "DKK", | ||
EUR = "EUR", | ||
GBP = "GBP", | ||
NZD = "NZD", | ||
SEK = "SEK", | ||
USD = "USD" | ||
} | ||
/** Type for a negativebalancelimitlinks resource. */ | ||
export interface NegativeBalanceLimitLinks { | ||
creator_user?: string; | ||
creditor?: string; | ||
} | ||
/** Type for a payerauthorisation resource. */ | ||
@@ -1274,3 +1321,4 @@ export interface PayerAuthorisation { | ||
RevenueShare = "revenue_share", | ||
SurchargeFee = "surcharge_fee" | ||
SurchargeFee = "surcharge_fee", | ||
RefundFundsReturned = "refund_funds_returned" | ||
} | ||
@@ -1420,2 +1468,6 @@ /** Type for a redirectflow resource. */ | ||
} | ||
/** Type for a schemeidentifiercreaterequestlinks resource. */ | ||
export interface SchemeIdentifierCreateRequestLinks { | ||
creditor?: string; | ||
} | ||
export declare enum SchemeIdentifierCurrency { | ||
@@ -1422,0 +1474,0 @@ AUD = "AUD", |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.PayerAuthorisationStatus = exports.PayerAuthorisationMandateScheme = exports.PayerAuthorisationBankAccountAccountType = exports.MandatePdfSubscriptionFrequency = exports.MandatePdfAccountType = exports.MandateImportStatus = exports.MandateImportScheme = exports.MandateStatus = exports.MandateConsentParametersPeriodPeriod = exports.MandateAuthorisationSource = exports.InstalmentScheduleStatus = exports.InstalmentScheduleCurrency = exports.InstalmentScheduleInstalmentsIntervalUnit = exports.EventResourceType = exports.EventDetailsScheme = exports.EventDetailsOrigin = exports.EventInclude = exports.CustomerNotificationType = exports.CustomerNotificationActionTaken = exports.CustomerBankAccountAccountType = exports.CustomerSortField = exports.CustomerSortDirection = exports.CustomerCurrency = exports.CreditorBankAccountAccountType = exports.CreditorVerificationStatus = exports.CreditorSchemeIdentifierStatus = exports.CreditorSchemeIdentifierScheme = exports.CreditorSchemeIdentifierCurrency = exports.CreditorFxPayoutCurrency = exports.CreditorCreditorType = exports.BlockReasonType = exports.BlockBlockType = exports.BlockReferenceType = exports.BillingRequestTemplateMandateRequestVerify = exports.BillingRequestFlowPrefilledBankAccountAccountType = exports.BillingRequestStatus = exports.BillingRequestResourcesCustomerBankAccountAccountType = exports.BillingRequestPurposeCode = exports.BillingRequestMandateRequestVerify = exports.BillingRequestMandateRequestConstraintsPeriodicLimitPeriod = exports.BillingRequestMandateRequestConstraintsPeriodicLimitAlignment = exports.BillingRequestMandateRequestAuthorisationSource = exports.BillingRequestActionType = exports.BillingRequestActionStatus = exports.BillingRequestActionBankAuthorisationAuthorisationType = exports.BillingRequestActionBankAuthorisationAdapter = exports.BillingRequestNotificationType = exports.BillingRequestAccountType = exports.BankDetailsLookupAvailableDebitScheme = exports.BankAuthorisationAuthorisationType = void 0; | ||
exports.SubscriptionStatus = exports.SubscriptionMonth = exports.SubscriptionIntervalUnit = exports.FxCurrency = exports.SchemeIdentifierStatus = exports.SchemeIdentifierScheme = exports.SchemeIdentifierCurrency = exports.RefundStatus = exports.RefundFxFxCurrency = exports.RefundRefundType = exports.RedirectFlowScheme = exports.RedirectFlowPrefilledBankAccountAccountType = exports.PayoutItemType = exports.PayoutItemTaxisCurrency = exports.PayoutItemInclude2020TaxCutover = exports.PayoutStatus = exports.PayoutPayoutType = exports.PayoutFxFxCurrency = exports.PayoutCurrency = exports.PaymentStatus = exports.PaymentFxFxCurrency = exports.PaymentCurrency = exports.PaymentSortField = exports.PaymentSortDirection = void 0; | ||
exports.NegativeBalanceLimitCurrency = exports.MandatePdfSubscriptionFrequency = exports.MandatePdfAccountType = exports.MandateImportStatus = exports.MandateImportScheme = exports.MandateStatus = exports.MandateFundsSettlement = exports.MandateConsentParametersPeriodPeriod = exports.MandateAuthorisationSource = exports.InstalmentScheduleStatus = exports.InstalmentScheduleCurrency = exports.InstalmentScheduleInstalmentsIntervalUnit = exports.EventResourceType = exports.EventDetailsScheme = exports.EventDetailsOrigin = exports.EventInclude = exports.CustomerNotificationType = exports.CustomerNotificationActionTaken = exports.CustomerBankAccountAccountType = exports.CustomerSortField = exports.CustomerSortDirection = exports.CustomerCurrency = exports.CreditorBankAccountAccountType = exports.CreditorVerificationStatus = exports.CreditorSchemeIdentifierStatus = exports.CreditorSchemeIdentifierScheme = exports.CreditorSchemeIdentifierCurrency = exports.CreditorFxPayoutCurrency = exports.CreditorCreditorType = exports.BlockReasonType = exports.BlockBlockType = exports.BlockReferenceType = exports.BillingRequestTemplateMandateRequestVerify = exports.BillingRequestFlowPrefilledBankAccountAccountType = exports.BillingRequestStatus = exports.BillingRequestResourcesCustomerBankAccountAccountType = exports.BillingRequestPurposeCode = exports.BillingRequestMandateRequestVerify = exports.BillingRequestMandateRequestConstraintsPeriodicLimitPeriod = exports.BillingRequestMandateRequestConstraintsPeriodicLimitAlignment = exports.BillingRequestMandateRequestAuthorisationSource = exports.BillingRequestActionType = exports.BillingRequestActionStatus = exports.BillingRequestActionInstitutionGuessStatus = exports.BillingRequestActionBankAuthorisationAuthorisationType = exports.BillingRequestActionBankAuthorisationAdapter = exports.BillingRequestNotificationType = exports.BillingRequestAccountType = exports.BankDetailsLookupAvailableDebitScheme = exports.BankAuthorisationAuthorisationType = void 0; | ||
exports.SubscriptionStatus = exports.SubscriptionMonth = exports.SubscriptionIntervalUnit = exports.FxCurrency = exports.SchemeIdentifierStatus = exports.SchemeIdentifierScheme = exports.SchemeIdentifierCurrency = exports.RefundStatus = exports.RefundFxFxCurrency = exports.RefundRefundType = exports.RedirectFlowScheme = exports.RedirectFlowPrefilledBankAccountAccountType = exports.PayoutItemType = exports.PayoutItemTaxisCurrency = exports.PayoutItemInclude2020TaxCutover = exports.PayoutStatus = exports.PayoutPayoutType = exports.PayoutFxFxCurrency = exports.PayoutCurrency = exports.PaymentStatus = exports.PaymentFxFxCurrency = exports.PaymentCurrency = exports.PaymentSortField = exports.PaymentSortDirection = exports.PayerAuthorisationStatus = exports.PayerAuthorisationMandateScheme = exports.PayerAuthorisationBankAccountAccountType = void 0; | ||
var BankAuthorisationAuthorisationType; | ||
@@ -9,3 +9,3 @@ (function (BankAuthorisationAuthorisationType) { | ||
BankAuthorisationAuthorisationType["Payment"] = "payment"; | ||
})(BankAuthorisationAuthorisationType = exports.BankAuthorisationAuthorisationType || (exports.BankAuthorisationAuthorisationType = {})); | ||
})(BankAuthorisationAuthorisationType || (exports.BankAuthorisationAuthorisationType = BankAuthorisationAuthorisationType = {})); | ||
var BankDetailsLookupAvailableDebitScheme; | ||
@@ -23,3 +23,3 @@ (function (BankDetailsLookupAvailableDebitScheme) { | ||
BankDetailsLookupAvailableDebitScheme["SepaCore"] = "sepa_core"; | ||
})(BankDetailsLookupAvailableDebitScheme = exports.BankDetailsLookupAvailableDebitScheme || (exports.BankDetailsLookupAvailableDebitScheme = {})); | ||
})(BankDetailsLookupAvailableDebitScheme || (exports.BankDetailsLookupAvailableDebitScheme = BankDetailsLookupAvailableDebitScheme = {})); | ||
var BillingRequestAccountType; | ||
@@ -29,7 +29,7 @@ (function (BillingRequestAccountType) { | ||
BillingRequestAccountType["Checking"] = "checking"; | ||
})(BillingRequestAccountType = exports.BillingRequestAccountType || (exports.BillingRequestAccountType = {})); | ||
})(BillingRequestAccountType || (exports.BillingRequestAccountType = BillingRequestAccountType = {})); | ||
var BillingRequestNotificationType; | ||
(function (BillingRequestNotificationType) { | ||
BillingRequestNotificationType["Email"] = "email"; | ||
})(BillingRequestNotificationType = exports.BillingRequestNotificationType || (exports.BillingRequestNotificationType = {})); | ||
})(BillingRequestNotificationType || (exports.BillingRequestNotificationType = BillingRequestNotificationType = {})); | ||
var BillingRequestActionBankAuthorisationAdapter; | ||
@@ -42,3 +42,3 @@ (function (BillingRequestActionBankAuthorisationAdapter) { | ||
BillingRequestActionBankAuthorisationAdapter["BankPayRecurring"] = "bank_pay_recurring"; | ||
})(BillingRequestActionBankAuthorisationAdapter = exports.BillingRequestActionBankAuthorisationAdapter || (exports.BillingRequestActionBankAuthorisationAdapter = {})); | ||
})(BillingRequestActionBankAuthorisationAdapter || (exports.BillingRequestActionBankAuthorisationAdapter = BillingRequestActionBankAuthorisationAdapter = {})); | ||
var BillingRequestActionBankAuthorisationAuthorisationType; | ||
@@ -48,3 +48,10 @@ (function (BillingRequestActionBankAuthorisationAuthorisationType) { | ||
BillingRequestActionBankAuthorisationAuthorisationType["Mandate"] = "mandate"; | ||
})(BillingRequestActionBankAuthorisationAuthorisationType = exports.BillingRequestActionBankAuthorisationAuthorisationType || (exports.BillingRequestActionBankAuthorisationAuthorisationType = {})); | ||
})(BillingRequestActionBankAuthorisationAuthorisationType || (exports.BillingRequestActionBankAuthorisationAuthorisationType = BillingRequestActionBankAuthorisationAuthorisationType = {})); | ||
var BillingRequestActionInstitutionGuessStatus; | ||
(function (BillingRequestActionInstitutionGuessStatus) { | ||
BillingRequestActionInstitutionGuessStatus["NotNeeded"] = "not_needed"; | ||
BillingRequestActionInstitutionGuessStatus["Pending"] = "pending"; | ||
BillingRequestActionInstitutionGuessStatus["Failed"] = "failed"; | ||
BillingRequestActionInstitutionGuessStatus["Success"] = "success"; | ||
})(BillingRequestActionInstitutionGuessStatus || (exports.BillingRequestActionInstitutionGuessStatus = BillingRequestActionInstitutionGuessStatus = {})); | ||
var BillingRequestActionStatus; | ||
@@ -54,3 +61,3 @@ (function (BillingRequestActionStatus) { | ||
BillingRequestActionStatus["Completed"] = "completed"; | ||
})(BillingRequestActionStatus = exports.BillingRequestActionStatus || (exports.BillingRequestActionStatus = {})); | ||
})(BillingRequestActionStatus || (exports.BillingRequestActionStatus = BillingRequestActionStatus = {})); | ||
var BillingRequestActionType; | ||
@@ -65,3 +72,3 @@ (function (BillingRequestActionType) { | ||
BillingRequestActionType["SelectInstitution"] = "select_institution"; | ||
})(BillingRequestActionType = exports.BillingRequestActionType || (exports.BillingRequestActionType = {})); | ||
})(BillingRequestActionType || (exports.BillingRequestActionType = BillingRequestActionType = {})); | ||
var BillingRequestMandateRequestAuthorisationSource; | ||
@@ -72,3 +79,3 @@ (function (BillingRequestMandateRequestAuthorisationSource) { | ||
BillingRequestMandateRequestAuthorisationSource["Paper"] = "paper"; | ||
})(BillingRequestMandateRequestAuthorisationSource = exports.BillingRequestMandateRequestAuthorisationSource || (exports.BillingRequestMandateRequestAuthorisationSource = {})); | ||
})(BillingRequestMandateRequestAuthorisationSource || (exports.BillingRequestMandateRequestAuthorisationSource = BillingRequestMandateRequestAuthorisationSource = {})); | ||
var BillingRequestMandateRequestConstraintsPeriodicLimitAlignment; | ||
@@ -78,3 +85,3 @@ (function (BillingRequestMandateRequestConstraintsPeriodicLimitAlignment) { | ||
BillingRequestMandateRequestConstraintsPeriodicLimitAlignment["CreationDate"] = "creation_date"; | ||
})(BillingRequestMandateRequestConstraintsPeriodicLimitAlignment = exports.BillingRequestMandateRequestConstraintsPeriodicLimitAlignment || (exports.BillingRequestMandateRequestConstraintsPeriodicLimitAlignment = {})); | ||
})(BillingRequestMandateRequestConstraintsPeriodicLimitAlignment || (exports.BillingRequestMandateRequestConstraintsPeriodicLimitAlignment = BillingRequestMandateRequestConstraintsPeriodicLimitAlignment = {})); | ||
var BillingRequestMandateRequestConstraintsPeriodicLimitPeriod; | ||
@@ -87,3 +94,3 @@ (function (BillingRequestMandateRequestConstraintsPeriodicLimitPeriod) { | ||
BillingRequestMandateRequestConstraintsPeriodicLimitPeriod["Flexible"] = "flexible"; | ||
})(BillingRequestMandateRequestConstraintsPeriodicLimitPeriod = exports.BillingRequestMandateRequestConstraintsPeriodicLimitPeriod || (exports.BillingRequestMandateRequestConstraintsPeriodicLimitPeriod = {})); | ||
})(BillingRequestMandateRequestConstraintsPeriodicLimitPeriod || (exports.BillingRequestMandateRequestConstraintsPeriodicLimitPeriod = BillingRequestMandateRequestConstraintsPeriodicLimitPeriod = {})); | ||
var BillingRequestMandateRequestVerify; | ||
@@ -95,3 +102,3 @@ (function (BillingRequestMandateRequestVerify) { | ||
BillingRequestMandateRequestVerify["Always"] = "always"; | ||
})(BillingRequestMandateRequestVerify = exports.BillingRequestMandateRequestVerify || (exports.BillingRequestMandateRequestVerify = {})); | ||
})(BillingRequestMandateRequestVerify || (exports.BillingRequestMandateRequestVerify = BillingRequestMandateRequestVerify = {})); | ||
var BillingRequestPurposeCode; | ||
@@ -111,3 +118,3 @@ (function (BillingRequestPurposeCode) { | ||
BillingRequestPurposeCode["Other"] = "other"; | ||
})(BillingRequestPurposeCode = exports.BillingRequestPurposeCode || (exports.BillingRequestPurposeCode = {})); | ||
})(BillingRequestPurposeCode || (exports.BillingRequestPurposeCode = BillingRequestPurposeCode = {})); | ||
var BillingRequestResourcesCustomerBankAccountAccountType; | ||
@@ -117,3 +124,3 @@ (function (BillingRequestResourcesCustomerBankAccountAccountType) { | ||
BillingRequestResourcesCustomerBankAccountAccountType["Checking"] = "checking"; | ||
})(BillingRequestResourcesCustomerBankAccountAccountType = exports.BillingRequestResourcesCustomerBankAccountAccountType || (exports.BillingRequestResourcesCustomerBankAccountAccountType = {})); | ||
})(BillingRequestResourcesCustomerBankAccountAccountType || (exports.BillingRequestResourcesCustomerBankAccountAccountType = BillingRequestResourcesCustomerBankAccountAccountType = {})); | ||
var BillingRequestStatus; | ||
@@ -126,3 +133,3 @@ (function (BillingRequestStatus) { | ||
BillingRequestStatus["Cancelled"] = "cancelled"; | ||
})(BillingRequestStatus = exports.BillingRequestStatus || (exports.BillingRequestStatus = {})); | ||
})(BillingRequestStatus || (exports.BillingRequestStatus = BillingRequestStatus = {})); | ||
var BillingRequestFlowPrefilledBankAccountAccountType; | ||
@@ -132,3 +139,3 @@ (function (BillingRequestFlowPrefilledBankAccountAccountType) { | ||
BillingRequestFlowPrefilledBankAccountAccountType["Checking"] = "checking"; | ||
})(BillingRequestFlowPrefilledBankAccountAccountType = exports.BillingRequestFlowPrefilledBankAccountAccountType || (exports.BillingRequestFlowPrefilledBankAccountAccountType = {})); | ||
})(BillingRequestFlowPrefilledBankAccountAccountType || (exports.BillingRequestFlowPrefilledBankAccountAccountType = BillingRequestFlowPrefilledBankAccountAccountType = {})); | ||
var BillingRequestTemplateMandateRequestVerify; | ||
@@ -140,3 +147,3 @@ (function (BillingRequestTemplateMandateRequestVerify) { | ||
BillingRequestTemplateMandateRequestVerify["Always"] = "always"; | ||
})(BillingRequestTemplateMandateRequestVerify = exports.BillingRequestTemplateMandateRequestVerify || (exports.BillingRequestTemplateMandateRequestVerify = {})); | ||
})(BillingRequestTemplateMandateRequestVerify || (exports.BillingRequestTemplateMandateRequestVerify = BillingRequestTemplateMandateRequestVerify = {})); | ||
var BlockReferenceType; | ||
@@ -146,3 +153,3 @@ (function (BlockReferenceType) { | ||
BlockReferenceType["Mandate"] = "mandate"; | ||
})(BlockReferenceType = exports.BlockReferenceType || (exports.BlockReferenceType = {})); | ||
})(BlockReferenceType || (exports.BlockReferenceType = BlockReferenceType = {})); | ||
var BlockBlockType; | ||
@@ -154,3 +161,3 @@ (function (BlockBlockType) { | ||
BlockBlockType["BankName"] = "bank_name"; | ||
})(BlockBlockType = exports.BlockBlockType || (exports.BlockBlockType = {})); | ||
})(BlockBlockType || (exports.BlockBlockType = BlockBlockType = {})); | ||
var BlockReasonType; | ||
@@ -162,3 +169,3 @@ (function (BlockReasonType) { | ||
BlockReasonType["Other"] = "other"; | ||
})(BlockReasonType = exports.BlockReasonType || (exports.BlockReasonType = {})); | ||
})(BlockReasonType || (exports.BlockReasonType = BlockReasonType = {})); | ||
var CreditorCreditorType; | ||
@@ -171,3 +178,3 @@ (function (CreditorCreditorType) { | ||
CreditorCreditorType["Trust"] = "trust"; | ||
})(CreditorCreditorType = exports.CreditorCreditorType || (exports.CreditorCreditorType = {})); | ||
})(CreditorCreditorType || (exports.CreditorCreditorType = CreditorCreditorType = {})); | ||
var CreditorFxPayoutCurrency; | ||
@@ -183,3 +190,3 @@ (function (CreditorFxPayoutCurrency) { | ||
CreditorFxPayoutCurrency["USD"] = "USD"; | ||
})(CreditorFxPayoutCurrency = exports.CreditorFxPayoutCurrency || (exports.CreditorFxPayoutCurrency = {})); | ||
})(CreditorFxPayoutCurrency || (exports.CreditorFxPayoutCurrency = CreditorFxPayoutCurrency = {})); | ||
var CreditorSchemeIdentifierCurrency; | ||
@@ -195,3 +202,3 @@ (function (CreditorSchemeIdentifierCurrency) { | ||
CreditorSchemeIdentifierCurrency["USD"] = "USD"; | ||
})(CreditorSchemeIdentifierCurrency = exports.CreditorSchemeIdentifierCurrency || (exports.CreditorSchemeIdentifierCurrency = {})); | ||
})(CreditorSchemeIdentifierCurrency || (exports.CreditorSchemeIdentifierCurrency = CreditorSchemeIdentifierCurrency = {})); | ||
var CreditorSchemeIdentifierScheme; | ||
@@ -211,3 +218,3 @@ (function (CreditorSchemeIdentifierScheme) { | ||
CreditorSchemeIdentifierScheme["SepaInstantCreditTransfer"] = "sepa_instant_credit_transfer"; | ||
})(CreditorSchemeIdentifierScheme = exports.CreditorSchemeIdentifierScheme || (exports.CreditorSchemeIdentifierScheme = {})); | ||
})(CreditorSchemeIdentifierScheme || (exports.CreditorSchemeIdentifierScheme = CreditorSchemeIdentifierScheme = {})); | ||
var CreditorSchemeIdentifierStatus; | ||
@@ -217,3 +224,3 @@ (function (CreditorSchemeIdentifierStatus) { | ||
CreditorSchemeIdentifierStatus["Active"] = "active"; | ||
})(CreditorSchemeIdentifierStatus = exports.CreditorSchemeIdentifierStatus || (exports.CreditorSchemeIdentifierStatus = {})); | ||
})(CreditorSchemeIdentifierStatus || (exports.CreditorSchemeIdentifierStatus = CreditorSchemeIdentifierStatus = {})); | ||
var CreditorVerificationStatus; | ||
@@ -224,3 +231,3 @@ (function (CreditorVerificationStatus) { | ||
CreditorVerificationStatus["ActionRequired"] = "action_required"; | ||
})(CreditorVerificationStatus = exports.CreditorVerificationStatus || (exports.CreditorVerificationStatus = {})); | ||
})(CreditorVerificationStatus || (exports.CreditorVerificationStatus = CreditorVerificationStatus = {})); | ||
var CreditorBankAccountAccountType; | ||
@@ -230,3 +237,3 @@ (function (CreditorBankAccountAccountType) { | ||
CreditorBankAccountAccountType["Checking"] = "checking"; | ||
})(CreditorBankAccountAccountType = exports.CreditorBankAccountAccountType || (exports.CreditorBankAccountAccountType = {})); | ||
})(CreditorBankAccountAccountType || (exports.CreditorBankAccountAccountType = CreditorBankAccountAccountType = {})); | ||
var CustomerCurrency; | ||
@@ -242,3 +249,3 @@ (function (CustomerCurrency) { | ||
CustomerCurrency["USD"] = "USD"; | ||
})(CustomerCurrency = exports.CustomerCurrency || (exports.CustomerCurrency = {})); | ||
})(CustomerCurrency || (exports.CustomerCurrency = CustomerCurrency = {})); | ||
var CustomerSortDirection; | ||
@@ -248,3 +255,3 @@ (function (CustomerSortDirection) { | ||
CustomerSortDirection["Desc"] = "desc"; | ||
})(CustomerSortDirection = exports.CustomerSortDirection || (exports.CustomerSortDirection = {})); | ||
})(CustomerSortDirection || (exports.CustomerSortDirection = CustomerSortDirection = {})); | ||
var CustomerSortField; | ||
@@ -255,3 +262,3 @@ (function (CustomerSortField) { | ||
CustomerSortField["CreatedAt"] = "created_at"; | ||
})(CustomerSortField = exports.CustomerSortField || (exports.CustomerSortField = {})); | ||
})(CustomerSortField || (exports.CustomerSortField = CustomerSortField = {})); | ||
var CustomerBankAccountAccountType; | ||
@@ -261,7 +268,7 @@ (function (CustomerBankAccountAccountType) { | ||
CustomerBankAccountAccountType["Checking"] = "checking"; | ||
})(CustomerBankAccountAccountType = exports.CustomerBankAccountAccountType || (exports.CustomerBankAccountAccountType = {})); | ||
})(CustomerBankAccountAccountType || (exports.CustomerBankAccountAccountType = CustomerBankAccountAccountType = {})); | ||
var CustomerNotificationActionTaken; | ||
(function (CustomerNotificationActionTaken) { | ||
CustomerNotificationActionTaken["Handled"] = "handled"; | ||
})(CustomerNotificationActionTaken = exports.CustomerNotificationActionTaken || (exports.CustomerNotificationActionTaken = {})); | ||
})(CustomerNotificationActionTaken || (exports.CustomerNotificationActionTaken = CustomerNotificationActionTaken = {})); | ||
var CustomerNotificationType; | ||
@@ -277,3 +284,3 @@ (function (CustomerNotificationType) { | ||
CustomerNotificationType["InstalmentScheduleCancelled"] = "instalment_schedule_cancelled"; | ||
})(CustomerNotificationType = exports.CustomerNotificationType || (exports.CustomerNotificationType = {})); | ||
})(CustomerNotificationType || (exports.CustomerNotificationType = CustomerNotificationType = {})); | ||
var EventInclude; | ||
@@ -291,3 +298,3 @@ (function (EventInclude) { | ||
EventInclude["Subscription"] = "subscription"; | ||
})(EventInclude = exports.EventInclude || (exports.EventInclude = {})); | ||
})(EventInclude || (exports.EventInclude = EventInclude = {})); | ||
var EventDetailsOrigin; | ||
@@ -300,3 +307,3 @@ (function (EventDetailsOrigin) { | ||
EventDetailsOrigin["Payer"] = "payer"; | ||
})(EventDetailsOrigin = exports.EventDetailsOrigin || (exports.EventDetailsOrigin = {})); | ||
})(EventDetailsOrigin || (exports.EventDetailsOrigin = EventDetailsOrigin = {})); | ||
var EventDetailsScheme; | ||
@@ -315,3 +322,3 @@ (function (EventDetailsScheme) { | ||
EventDetailsScheme["SepaCor1"] = "sepa_cor1"; | ||
})(EventDetailsScheme = exports.EventDetailsScheme || (exports.EventDetailsScheme = {})); | ||
})(EventDetailsScheme || (exports.EventDetailsScheme = EventDetailsScheme = {})); | ||
var EventResourceType; | ||
@@ -330,3 +337,3 @@ (function (EventResourceType) { | ||
EventResourceType["Subscriptions"] = "subscriptions"; | ||
})(EventResourceType = exports.EventResourceType || (exports.EventResourceType = {})); | ||
})(EventResourceType || (exports.EventResourceType = EventResourceType = {})); | ||
var InstalmentScheduleInstalmentsIntervalUnit; | ||
@@ -337,3 +344,3 @@ (function (InstalmentScheduleInstalmentsIntervalUnit) { | ||
InstalmentScheduleInstalmentsIntervalUnit["Yearly"] = "yearly"; | ||
})(InstalmentScheduleInstalmentsIntervalUnit = exports.InstalmentScheduleInstalmentsIntervalUnit || (exports.InstalmentScheduleInstalmentsIntervalUnit = {})); | ||
})(InstalmentScheduleInstalmentsIntervalUnit || (exports.InstalmentScheduleInstalmentsIntervalUnit = InstalmentScheduleInstalmentsIntervalUnit = {})); | ||
var InstalmentScheduleCurrency; | ||
@@ -349,3 +356,3 @@ (function (InstalmentScheduleCurrency) { | ||
InstalmentScheduleCurrency["USD"] = "USD"; | ||
})(InstalmentScheduleCurrency = exports.InstalmentScheduleCurrency || (exports.InstalmentScheduleCurrency = {})); | ||
})(InstalmentScheduleCurrency || (exports.InstalmentScheduleCurrency = InstalmentScheduleCurrency = {})); | ||
var InstalmentScheduleStatus; | ||
@@ -359,3 +366,3 @@ (function (InstalmentScheduleStatus) { | ||
InstalmentScheduleStatus["Errored"] = "errored"; | ||
})(InstalmentScheduleStatus = exports.InstalmentScheduleStatus || (exports.InstalmentScheduleStatus = {})); | ||
})(InstalmentScheduleStatus || (exports.InstalmentScheduleStatus = InstalmentScheduleStatus = {})); | ||
var MandateAuthorisationSource; | ||
@@ -366,3 +373,3 @@ (function (MandateAuthorisationSource) { | ||
MandateAuthorisationSource["Paper"] = "paper"; | ||
})(MandateAuthorisationSource = exports.MandateAuthorisationSource || (exports.MandateAuthorisationSource = {})); | ||
})(MandateAuthorisationSource || (exports.MandateAuthorisationSource = MandateAuthorisationSource = {})); | ||
var MandateConsentParametersPeriodPeriod; | ||
@@ -375,3 +382,8 @@ (function (MandateConsentParametersPeriodPeriod) { | ||
MandateConsentParametersPeriodPeriod["Flexible"] = "flexible"; | ||
})(MandateConsentParametersPeriodPeriod = exports.MandateConsentParametersPeriodPeriod || (exports.MandateConsentParametersPeriodPeriod = {})); | ||
})(MandateConsentParametersPeriodPeriod || (exports.MandateConsentParametersPeriodPeriod = MandateConsentParametersPeriodPeriod = {})); | ||
var MandateFundsSettlement; | ||
(function (MandateFundsSettlement) { | ||
MandateFundsSettlement["Managed"] = "managed"; | ||
MandateFundsSettlement["Direct"] = "direct"; | ||
})(MandateFundsSettlement || (exports.MandateFundsSettlement = MandateFundsSettlement = {})); | ||
var MandateStatus; | ||
@@ -389,3 +401,3 @@ (function (MandateStatus) { | ||
MandateStatus["SuspendedByPayer"] = "suspended_by_payer"; | ||
})(MandateStatus = exports.MandateStatus || (exports.MandateStatus = {})); | ||
})(MandateStatus || (exports.MandateStatus = MandateStatus = {})); | ||
var MandateImportScheme; | ||
@@ -403,3 +415,3 @@ (function (MandateImportScheme) { | ||
MandateImportScheme["SepaCore"] = "sepa_core"; | ||
})(MandateImportScheme = exports.MandateImportScheme || (exports.MandateImportScheme = {})); | ||
})(MandateImportScheme || (exports.MandateImportScheme = MandateImportScheme = {})); | ||
var MandateImportStatus; | ||
@@ -412,3 +424,3 @@ (function (MandateImportStatus) { | ||
MandateImportStatus["Processed"] = "processed"; | ||
})(MandateImportStatus = exports.MandateImportStatus || (exports.MandateImportStatus = {})); | ||
})(MandateImportStatus || (exports.MandateImportStatus = MandateImportStatus = {})); | ||
var MandatePdfAccountType; | ||
@@ -418,3 +430,3 @@ (function (MandatePdfAccountType) { | ||
MandatePdfAccountType["Checking"] = "checking"; | ||
})(MandatePdfAccountType = exports.MandatePdfAccountType || (exports.MandatePdfAccountType = {})); | ||
})(MandatePdfAccountType || (exports.MandatePdfAccountType = MandatePdfAccountType = {})); | ||
var MandatePdfSubscriptionFrequency; | ||
@@ -425,3 +437,14 @@ (function (MandatePdfSubscriptionFrequency) { | ||
MandatePdfSubscriptionFrequency["Yearly"] = "yearly"; | ||
})(MandatePdfSubscriptionFrequency = exports.MandatePdfSubscriptionFrequency || (exports.MandatePdfSubscriptionFrequency = {})); | ||
})(MandatePdfSubscriptionFrequency || (exports.MandatePdfSubscriptionFrequency = MandatePdfSubscriptionFrequency = {})); | ||
var NegativeBalanceLimitCurrency; | ||
(function (NegativeBalanceLimitCurrency) { | ||
NegativeBalanceLimitCurrency["AUD"] = "AUD"; | ||
NegativeBalanceLimitCurrency["CAD"] = "CAD"; | ||
NegativeBalanceLimitCurrency["DKK"] = "DKK"; | ||
NegativeBalanceLimitCurrency["EUR"] = "EUR"; | ||
NegativeBalanceLimitCurrency["GBP"] = "GBP"; | ||
NegativeBalanceLimitCurrency["NZD"] = "NZD"; | ||
NegativeBalanceLimitCurrency["SEK"] = "SEK"; | ||
NegativeBalanceLimitCurrency["USD"] = "USD"; | ||
})(NegativeBalanceLimitCurrency || (exports.NegativeBalanceLimitCurrency = NegativeBalanceLimitCurrency = {})); | ||
var PayerAuthorisationBankAccountAccountType; | ||
@@ -431,3 +454,3 @@ (function (PayerAuthorisationBankAccountAccountType) { | ||
PayerAuthorisationBankAccountAccountType["Checking"] = "checking"; | ||
})(PayerAuthorisationBankAccountAccountType = exports.PayerAuthorisationBankAccountAccountType || (exports.PayerAuthorisationBankAccountAccountType = {})); | ||
})(PayerAuthorisationBankAccountAccountType || (exports.PayerAuthorisationBankAccountAccountType = PayerAuthorisationBankAccountAccountType = {})); | ||
var PayerAuthorisationMandateScheme; | ||
@@ -445,3 +468,3 @@ (function (PayerAuthorisationMandateScheme) { | ||
PayerAuthorisationMandateScheme["SepaCore"] = "sepa_core"; | ||
})(PayerAuthorisationMandateScheme = exports.PayerAuthorisationMandateScheme || (exports.PayerAuthorisationMandateScheme = {})); | ||
})(PayerAuthorisationMandateScheme || (exports.PayerAuthorisationMandateScheme = PayerAuthorisationMandateScheme = {})); | ||
var PayerAuthorisationStatus; | ||
@@ -454,3 +477,3 @@ (function (PayerAuthorisationStatus) { | ||
PayerAuthorisationStatus["Failed"] = "failed"; | ||
})(PayerAuthorisationStatus = exports.PayerAuthorisationStatus || (exports.PayerAuthorisationStatus = {})); | ||
})(PayerAuthorisationStatus || (exports.PayerAuthorisationStatus = PayerAuthorisationStatus = {})); | ||
var PaymentSortDirection; | ||
@@ -460,3 +483,3 @@ (function (PaymentSortDirection) { | ||
PaymentSortDirection["Desc"] = "desc"; | ||
})(PaymentSortDirection = exports.PaymentSortDirection || (exports.PaymentSortDirection = {})); | ||
})(PaymentSortDirection || (exports.PaymentSortDirection = PaymentSortDirection = {})); | ||
var PaymentSortField; | ||
@@ -466,3 +489,3 @@ (function (PaymentSortField) { | ||
PaymentSortField["Amount"] = "amount"; | ||
})(PaymentSortField = exports.PaymentSortField || (exports.PaymentSortField = {})); | ||
})(PaymentSortField || (exports.PaymentSortField = PaymentSortField = {})); | ||
var PaymentCurrency; | ||
@@ -478,3 +501,3 @@ (function (PaymentCurrency) { | ||
PaymentCurrency["USD"] = "USD"; | ||
})(PaymentCurrency = exports.PaymentCurrency || (exports.PaymentCurrency = {})); | ||
})(PaymentCurrency || (exports.PaymentCurrency = PaymentCurrency = {})); | ||
var PaymentFxFxCurrency; | ||
@@ -490,3 +513,3 @@ (function (PaymentFxFxCurrency) { | ||
PaymentFxFxCurrency["USD"] = "USD"; | ||
})(PaymentFxFxCurrency = exports.PaymentFxFxCurrency || (exports.PaymentFxFxCurrency = {})); | ||
})(PaymentFxFxCurrency || (exports.PaymentFxFxCurrency = PaymentFxFxCurrency = {})); | ||
var PaymentStatus; | ||
@@ -503,3 +526,3 @@ (function (PaymentStatus) { | ||
PaymentStatus["ChargedBack"] = "charged_back"; | ||
})(PaymentStatus = exports.PaymentStatus || (exports.PaymentStatus = {})); | ||
})(PaymentStatus || (exports.PaymentStatus = PaymentStatus = {})); | ||
var PayoutCurrency; | ||
@@ -515,3 +538,3 @@ (function (PayoutCurrency) { | ||
PayoutCurrency["USD"] = "USD"; | ||
})(PayoutCurrency = exports.PayoutCurrency || (exports.PayoutCurrency = {})); | ||
})(PayoutCurrency || (exports.PayoutCurrency = PayoutCurrency = {})); | ||
var PayoutFxFxCurrency; | ||
@@ -527,3 +550,3 @@ (function (PayoutFxFxCurrency) { | ||
PayoutFxFxCurrency["USD"] = "USD"; | ||
})(PayoutFxFxCurrency = exports.PayoutFxFxCurrency || (exports.PayoutFxFxCurrency = {})); | ||
})(PayoutFxFxCurrency || (exports.PayoutFxFxCurrency = PayoutFxFxCurrency = {})); | ||
var PayoutPayoutType; | ||
@@ -533,3 +556,3 @@ (function (PayoutPayoutType) { | ||
PayoutPayoutType["Partner"] = "partner"; | ||
})(PayoutPayoutType = exports.PayoutPayoutType || (exports.PayoutPayoutType = {})); | ||
})(PayoutPayoutType || (exports.PayoutPayoutType = PayoutPayoutType = {})); | ||
var PayoutStatus; | ||
@@ -540,3 +563,3 @@ (function (PayoutStatus) { | ||
PayoutStatus["Bounced"] = "bounced"; | ||
})(PayoutStatus = exports.PayoutStatus || (exports.PayoutStatus = {})); | ||
})(PayoutStatus || (exports.PayoutStatus = PayoutStatus = {})); | ||
var PayoutItemInclude2020TaxCutover; | ||
@@ -546,3 +569,3 @@ (function (PayoutItemInclude2020TaxCutover) { | ||
PayoutItemInclude2020TaxCutover["False"] = "false"; | ||
})(PayoutItemInclude2020TaxCutover = exports.PayoutItemInclude2020TaxCutover || (exports.PayoutItemInclude2020TaxCutover = {})); | ||
})(PayoutItemInclude2020TaxCutover || (exports.PayoutItemInclude2020TaxCutover = PayoutItemInclude2020TaxCutover = {})); | ||
var PayoutItemTaxisCurrency; | ||
@@ -558,3 +581,3 @@ (function (PayoutItemTaxisCurrency) { | ||
PayoutItemTaxisCurrency["USD"] = "USD"; | ||
})(PayoutItemTaxisCurrency = exports.PayoutItemTaxisCurrency || (exports.PayoutItemTaxisCurrency = {})); | ||
})(PayoutItemTaxisCurrency || (exports.PayoutItemTaxisCurrency = PayoutItemTaxisCurrency = {})); | ||
var PayoutItemType; | ||
@@ -571,3 +594,4 @@ (function (PayoutItemType) { | ||
PayoutItemType["SurchargeFee"] = "surcharge_fee"; | ||
})(PayoutItemType = exports.PayoutItemType || (exports.PayoutItemType = {})); | ||
PayoutItemType["RefundFundsReturned"] = "refund_funds_returned"; | ||
})(PayoutItemType || (exports.PayoutItemType = PayoutItemType = {})); | ||
var RedirectFlowPrefilledBankAccountAccountType; | ||
@@ -577,3 +601,3 @@ (function (RedirectFlowPrefilledBankAccountAccountType) { | ||
RedirectFlowPrefilledBankAccountAccountType["Checking"] = "checking"; | ||
})(RedirectFlowPrefilledBankAccountAccountType = exports.RedirectFlowPrefilledBankAccountAccountType || (exports.RedirectFlowPrefilledBankAccountAccountType = {})); | ||
})(RedirectFlowPrefilledBankAccountAccountType || (exports.RedirectFlowPrefilledBankAccountAccountType = RedirectFlowPrefilledBankAccountAccountType = {})); | ||
var RedirectFlowScheme; | ||
@@ -589,3 +613,3 @@ (function (RedirectFlowScheme) { | ||
RedirectFlowScheme["SepaCore"] = "sepa_core"; | ||
})(RedirectFlowScheme = exports.RedirectFlowScheme || (exports.RedirectFlowScheme = {})); | ||
})(RedirectFlowScheme || (exports.RedirectFlowScheme = RedirectFlowScheme = {})); | ||
var RefundRefundType; | ||
@@ -595,3 +619,3 @@ (function (RefundRefundType) { | ||
RefundRefundType["Payment"] = "payment"; | ||
})(RefundRefundType = exports.RefundRefundType || (exports.RefundRefundType = {})); | ||
})(RefundRefundType || (exports.RefundRefundType = RefundRefundType = {})); | ||
var RefundFxFxCurrency; | ||
@@ -607,3 +631,3 @@ (function (RefundFxFxCurrency) { | ||
RefundFxFxCurrency["USD"] = "USD"; | ||
})(RefundFxFxCurrency = exports.RefundFxFxCurrency || (exports.RefundFxFxCurrency = {})); | ||
})(RefundFxFxCurrency || (exports.RefundFxFxCurrency = RefundFxFxCurrency = {})); | ||
var RefundStatus; | ||
@@ -618,3 +642,3 @@ (function (RefundStatus) { | ||
RefundStatus["FundsReturned"] = "funds_returned"; | ||
})(RefundStatus = exports.RefundStatus || (exports.RefundStatus = {})); | ||
})(RefundStatus || (exports.RefundStatus = RefundStatus = {})); | ||
var SchemeIdentifierCurrency; | ||
@@ -630,3 +654,3 @@ (function (SchemeIdentifierCurrency) { | ||
SchemeIdentifierCurrency["USD"] = "USD"; | ||
})(SchemeIdentifierCurrency = exports.SchemeIdentifierCurrency || (exports.SchemeIdentifierCurrency = {})); | ||
})(SchemeIdentifierCurrency || (exports.SchemeIdentifierCurrency = SchemeIdentifierCurrency = {})); | ||
var SchemeIdentifierScheme; | ||
@@ -646,3 +670,3 @@ (function (SchemeIdentifierScheme) { | ||
SchemeIdentifierScheme["SepaInstantCreditTransfer"] = "sepa_instant_credit_transfer"; | ||
})(SchemeIdentifierScheme = exports.SchemeIdentifierScheme || (exports.SchemeIdentifierScheme = {})); | ||
})(SchemeIdentifierScheme || (exports.SchemeIdentifierScheme = SchemeIdentifierScheme = {})); | ||
var SchemeIdentifierStatus; | ||
@@ -652,3 +676,3 @@ (function (SchemeIdentifierStatus) { | ||
SchemeIdentifierStatus["Active"] = "active"; | ||
})(SchemeIdentifierStatus = exports.SchemeIdentifierStatus || (exports.SchemeIdentifierStatus = {})); | ||
})(SchemeIdentifierStatus || (exports.SchemeIdentifierStatus = SchemeIdentifierStatus = {})); | ||
// [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217#Active_codes) code for the currency in | ||
@@ -668,3 +692,3 @@ // which amounts will be paid out (after foreign exchange). Currently "AUD", "CAD", "DKK", | ||
FxCurrency["USD"] = "USD"; | ||
})(FxCurrency = exports.FxCurrency || (exports.FxCurrency = {})); | ||
})(FxCurrency || (exports.FxCurrency = FxCurrency = {})); | ||
var SubscriptionIntervalUnit; | ||
@@ -675,3 +699,3 @@ (function (SubscriptionIntervalUnit) { | ||
SubscriptionIntervalUnit["Yearly"] = "yearly"; | ||
})(SubscriptionIntervalUnit = exports.SubscriptionIntervalUnit || (exports.SubscriptionIntervalUnit = {})); | ||
})(SubscriptionIntervalUnit || (exports.SubscriptionIntervalUnit = SubscriptionIntervalUnit = {})); | ||
var SubscriptionMonth; | ||
@@ -691,3 +715,3 @@ (function (SubscriptionMonth) { | ||
SubscriptionMonth["December"] = "december"; | ||
})(SubscriptionMonth = exports.SubscriptionMonth || (exports.SubscriptionMonth = {})); | ||
})(SubscriptionMonth || (exports.SubscriptionMonth = SubscriptionMonth = {})); | ||
var SubscriptionStatus; | ||
@@ -701,3 +725,3 @@ (function (SubscriptionStatus) { | ||
SubscriptionStatus["Paused"] = "paused"; | ||
})(SubscriptionStatus = exports.SubscriptionStatus || (exports.SubscriptionStatus = {})); | ||
})(SubscriptionStatus || (exports.SubscriptionStatus = SubscriptionStatus = {})); | ||
//# sourceMappingURL=Types.js.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
352327
122
6686