Comparing version 0.29.1 to 0.29.2
@@ -9,2 +9,24 @@ # Changelog | ||
## [0.29.1] - 2020-06-11 | ||
### Added | ||
- Added a new `personalNote` field on transactions and transfers - this field allows users to annotate their transactions with text that will only be available to them | ||
- Added a new `update` method on `transaction` model, which allows to update category, userSelectedBookingDate and personalNote for a given transaction | ||
### Changed | ||
- `categorize` method of `transaction` model is now deprecated in favor of `update` | ||
## [0.28.7] - 2020-06-09 | ||
### Added | ||
- Added `createdAt` field to transactions | ||
### Changed | ||
- *Breaking*: renamed `taxPastYearAmount` field to `taxPastYearsAmount` for `getStats` method of `account` model | ||
## [0.28.6] - 2020-05-29 | ||
### Changed | ||
- *Breaking*: removed `taxCutoffLine` field from `user` model `get` method | ||
## [0.28.3] - 2020-05-06 | ||
@@ -11,0 +33,0 @@ |
@@ -125,3 +125,4 @@ export declare type Maybe<T> = T | null; | ||
Bookkeeping = "BOOKKEEPING", | ||
FriendReferral = "FRIEND_REFERRAL" | ||
FriendReferral = "FRIEND_REFERRAL", | ||
PrimaryWebapp = "PRIMARY_WEBAPP" | ||
} | ||
@@ -445,8 +446,8 @@ export declare enum BaseOperator { | ||
/** | ||
* Categorize a transaction with an optional custom booking date for VAT or Tax categories | ||
* @deprecated This method will be removed in an upcoming release, | ||
* we should now use 'updateTransaction' method instead. | ||
* DEPRECATED use `updateTransaction()` instead - Categorize a transaction with | ||
* an optional custom booking date for VAT or Tax categories | ||
* @deprecated This mutation will be removed in an upcoming release, please use `updateTransaction` mutation instead | ||
*/ | ||
categorizeTransaction: Transaction; | ||
/** Update a transaction with a category (with an optional custom booking date for VAT or Tax categories) and/or a personal note */ | ||
/** Categorize a transaction with an optional custom booking date for VAT or Tax categories, and add a personal note */ | ||
updateTransaction: Transaction; | ||
@@ -572,6 +573,2 @@ /** Create Overdraft Application - only available for Kontist Application */ | ||
}; | ||
/** | ||
* @deprecated This mutation will be removed in an upcoming release, | ||
* we should now use 'MutationUpdateTransactionArgs' instead. | ||
*/ | ||
export declare type MutationCategorizeTransactionArgs = { | ||
@@ -1084,2 +1081,5 @@ id: Scalars['String']; | ||
personalNote?: Maybe<Scalars['String']>; | ||
predictedCategory?: Maybe<TransactionCategory>; | ||
/** Date predicted for tax/vat payment/refund predicted category */ | ||
predictedUserSelectedBookingDate?: Maybe<Scalars['DateTime']>; | ||
purpose?: Maybe<Scalars['String']>; | ||
@@ -1434,3 +1434,3 @@ documentNumber?: Maybe<Scalars['String']>; | ||
subscriptions: Array<UserSubscription>; | ||
/** The state of banners in Kontist App for the user */ | ||
/** The state of banners in mobile or web app for the user */ | ||
banners?: Maybe<Array<Banner>>; | ||
@@ -1457,2 +1457,5 @@ /** Bookkeeping partners information for user */ | ||
}; | ||
export declare type UserBannersArgs = { | ||
isWebapp?: Maybe<Scalars['Boolean']>; | ||
}; | ||
export declare type UserAvailablePlansArgs = { | ||
@@ -1459,0 +1462,0 @@ couponCode?: Maybe<Scalars['String']>; |
@@ -85,7 +85,7 @@ /* @flow */ | ||
export const AccountStateValues = Object.freeze({ | ||
Free: 'FREE', | ||
Trial: 'TRIAL', | ||
Premium: 'PREMIUM', | ||
Blocked: 'BLOCKED', | ||
FreeOld: 'FREE_OLD', | ||
Free: 'FREE', | ||
Trial: 'TRIAL', | ||
Premium: 'PREMIUM', | ||
Blocked: 'BLOCKED', | ||
FreeOld: 'FREE_OLD', | ||
PremiumOld: 'PREMIUM_OLD' | ||
@@ -143,5 +143,6 @@ }); | ||
export const BannerNameValues = Object.freeze({ | ||
Overdraft: 'OVERDRAFT', | ||
Bookkeeping: 'BOOKKEEPING', | ||
FriendReferral: 'FRIEND_REFERRAL' | ||
Overdraft: 'OVERDRAFT', | ||
Bookkeeping: 'BOOKKEEPING', | ||
FriendReferral: 'FRIEND_REFERRAL', | ||
PrimaryWebapp: 'PRIMARY_WEBAPP' | ||
}); | ||
@@ -153,3 +154,3 @@ | ||
export const BaseOperatorValues = Object.freeze({ | ||
Or: 'OR', | ||
Or: 'OR', | ||
And: 'AND' | ||
@@ -169,6 +170,6 @@ }); | ||
export const BatchTransferStatusValues = Object.freeze({ | ||
AuthorizationRequired: 'AUTHORIZATION_REQUIRED', | ||
ConfirmationRequired: 'CONFIRMATION_REQUIRED', | ||
Accepted: 'ACCEPTED', | ||
Failed: 'FAILED', | ||
AuthorizationRequired: 'AUTHORIZATION_REQUIRED', | ||
ConfirmationRequired: 'CONFIRMATION_REQUIRED', | ||
Accepted: 'ACCEPTED', | ||
Failed: 'FAILED', | ||
Successful: 'SUCCESSFUL' | ||
@@ -194,4 +195,4 @@ }); | ||
export const CardActionValues = Object.freeze({ | ||
Close: 'CLOSE', | ||
Block: 'BLOCK', | ||
Close: 'CLOSE', | ||
Block: 'BLOCK', | ||
Unblock: 'UNBLOCK' | ||
@@ -231,7 +232,7 @@ }); | ||
export const CardMigrationStatusValues = Object.freeze({ | ||
Required: 'REQUIRED', | ||
Requested: 'REQUESTED', | ||
RequestedAndLocked: 'REQUESTED_AND_LOCKED', | ||
RequestedAndClosed: 'REQUESTED_AND_CLOSED', | ||
Completed: 'COMPLETED', | ||
Required: 'REQUIRED', | ||
Requested: 'REQUESTED', | ||
RequestedAndLocked: 'REQUESTED_AND_LOCKED', | ||
RequestedAndClosed: 'REQUESTED_AND_CLOSED', | ||
Completed: 'COMPLETED', | ||
NotRequired: 'NOT_REQUIRED' | ||
@@ -257,9 +258,9 @@ }); | ||
export const CardStatusValues = Object.freeze({ | ||
Processing: 'PROCESSING', | ||
Inactive: 'INACTIVE', | ||
Active: 'ACTIVE', | ||
Blocked: 'BLOCKED', | ||
BlockedBySolaris: 'BLOCKED_BY_SOLARIS', | ||
ActivationBlockedBySolaris: 'ACTIVATION_BLOCKED_BY_SOLARIS', | ||
Closed: 'CLOSED', | ||
Processing: 'PROCESSING', | ||
Inactive: 'INACTIVE', | ||
Active: 'ACTIVE', | ||
Blocked: 'BLOCKED', | ||
BlockedBySolaris: 'BLOCKED_BY_SOLARIS', | ||
ActivationBlockedBySolaris: 'ACTIVATION_BLOCKED_BY_SOLARIS', | ||
Closed: 'CLOSED', | ||
ClosedBySolaris: 'CLOSED_BY_SOLARIS' | ||
@@ -272,6 +273,6 @@ }); | ||
export const CardTypeValues = Object.freeze({ | ||
VirtualVisaBusinessDebit: 'VIRTUAL_VISA_BUSINESS_DEBIT', | ||
VisaBusinessDebit: 'VISA_BUSINESS_DEBIT', | ||
MastercardBusinessDebit: 'MASTERCARD_BUSINESS_DEBIT', | ||
VirtualMastercardBusinessDebit: 'VIRTUAL_MASTERCARD_BUSINESS_DEBIT', | ||
VirtualVisaBusinessDebit: 'VIRTUAL_VISA_BUSINESS_DEBIT', | ||
VisaBusinessDebit: 'VISA_BUSINESS_DEBIT', | ||
MastercardBusinessDebit: 'MASTERCARD_BUSINESS_DEBIT', | ||
VirtualMastercardBusinessDebit: 'VIRTUAL_MASTERCARD_BUSINESS_DEBIT', | ||
VirtualVisaFreelanceDebit: 'VIRTUAL_VISA_FREELANCE_DEBIT' | ||
@@ -297,15 +298,15 @@ }); | ||
export const CompanyTypeValues = Object.freeze({ | ||
Selbstaendig: 'SELBSTAENDIG', | ||
Einzelunternehmer: 'EINZELUNTERNEHMER', | ||
Freiberufler: 'FREIBERUFLER', | ||
Gewerbetreibender: 'GEWERBETREIBENDER', | ||
Limited: 'LIMITED', | ||
EK: 'E_K', | ||
Partgg: 'PARTGG', | ||
Gbr: 'GBR', | ||
Ohg: 'OHG', | ||
Kg: 'KG', | ||
Kgaa: 'KGAA', | ||
Gmbh: 'GMBH', | ||
GmbhUndCoKg: 'GMBH_UND_CO_KG', | ||
Selbstaendig: 'SELBSTAENDIG', | ||
Einzelunternehmer: 'EINZELUNTERNEHMER', | ||
Freiberufler: 'FREIBERUFLER', | ||
Gewerbetreibender: 'GEWERBETREIBENDER', | ||
Limited: 'LIMITED', | ||
EK: 'E_K', | ||
Partgg: 'PARTGG', | ||
Gbr: 'GBR', | ||
Ohg: 'OHG', | ||
Kg: 'KG', | ||
Kgaa: 'KGAA', | ||
Gmbh: 'GMBH', | ||
GmbhUndCoKg: 'GMBH_UND_CO_KG', | ||
Ug: 'UG' | ||
@@ -418,3 +419,3 @@ }); | ||
export const DocumentTypeValues = Object.freeze({ | ||
Voucher: 'VOUCHER', | ||
Voucher: 'VOUCHER', | ||
Invoice: 'INVOICE' | ||
@@ -427,3 +428,3 @@ }); | ||
export const GenderValues = Object.freeze({ | ||
Male: 'MALE', | ||
Male: 'MALE', | ||
Female: 'FEMALE' | ||
@@ -442,5 +443,5 @@ }); | ||
export const GrantTypeValues = Object.freeze({ | ||
Password: 'PASSWORD', | ||
AuthorizationCode: 'AUTHORIZATION_CODE', | ||
RefreshToken: 'REFRESH_TOKEN', | ||
Password: 'PASSWORD', | ||
AuthorizationCode: 'AUTHORIZATION_CODE', | ||
RefreshToken: 'REFRESH_TOKEN', | ||
ClientCredentials: 'CLIENT_CREDENTIALS' | ||
@@ -468,10 +469,10 @@ }); | ||
export const IdentificationStatusValues = Object.freeze({ | ||
Pending: 'PENDING', | ||
PendingSuccessful: 'PENDING_SUCCESSFUL', | ||
PendingFailed: 'PENDING_FAILED', | ||
Successful: 'SUCCESSFUL', | ||
Failed: 'FAILED', | ||
Expired: 'EXPIRED', | ||
Created: 'CREATED', | ||
Aborted: 'ABORTED', | ||
Pending: 'PENDING', | ||
PendingSuccessful: 'PENDING_SUCCESSFUL', | ||
PendingFailed: 'PENDING_FAILED', | ||
Successful: 'SUCCESSFUL', | ||
Failed: 'FAILED', | ||
Expired: 'EXPIRED', | ||
Created: 'CREATED', | ||
Aborted: 'ABORTED', | ||
Canceled: 'CANCELED' | ||
@@ -484,4 +485,4 @@ }); | ||
export const IntegrationTypeValues = Object.freeze({ | ||
Lexoffice: 'LEXOFFICE', | ||
Debitoor: 'DEBITOOR', | ||
Lexoffice: 'LEXOFFICE', | ||
Debitoor: 'DEBITOOR', | ||
Fastbill: 'FASTBILL' | ||
@@ -494,5 +495,5 @@ }); | ||
export const InvoiceStatusValues = Object.freeze({ | ||
Open: 'OPEN', | ||
Closed: 'CLOSED', | ||
Rejected: 'REJECTED', | ||
Open: 'OPEN', | ||
Closed: 'CLOSED', | ||
Rejected: 'REJECTED', | ||
Pending: 'PENDING' | ||
@@ -558,5 +559,8 @@ }); | ||
setCardHolderRepresentation: $ElementType<Scalars, 'String'>, | ||
/** Categorize a transaction with an optional custom booking date for VAT or Tax categories */ | ||
/** | ||
* DEPRECATED use `updateTransaction()` instead - Categorize a transaction with | ||
* an optional custom booking date for VAT or Tax categories | ||
*/ | ||
categorizeTransaction: Transaction, | ||
/** Update a transaction with a category (with an optional custom booking date for VAT or Tax categories) and/or a personal note */ | ||
/** Categorize a transaction with an optional custom booking date for VAT or Tax categories, and add a personal note */ | ||
updateTransaction: Transaction, | ||
@@ -738,2 +742,3 @@ /** Create Overdraft Application - only available for Kontist Application */ | ||
export type MutationUpdateTransactionArgs = {| | ||
@@ -743,5 +748,6 @@ id: $ElementType<Scalars, 'String'>, | ||
userSelectedBookingDate?: ?$ElementType<Scalars, 'DateTime'>, | ||
personalNote?: string, | ||
|} | ||
personalNote?: ?$ElementType<Scalars, 'String'>, | ||
|}; | ||
export type MutationUpdateOverdraftArgs = {| | ||
@@ -813,249 +819,249 @@ offeredScreenShown?: ?$ElementType<Scalars, 'Boolean'>, | ||
export const NationalityValues = Object.freeze({ | ||
De: 'DE', | ||
Ad: 'AD', | ||
Ae: 'AE', | ||
Af: 'AF', | ||
Ag: 'AG', | ||
Ai: 'AI', | ||
Al: 'AL', | ||
Am: 'AM', | ||
Ao: 'AO', | ||
Aq: 'AQ', | ||
Ar: 'AR', | ||
As: 'AS', | ||
At: 'AT', | ||
Au: 'AU', | ||
Aw: 'AW', | ||
Ax: 'AX', | ||
Az: 'AZ', | ||
Ba: 'BA', | ||
Bb: 'BB', | ||
Bd: 'BD', | ||
Be: 'BE', | ||
Bf: 'BF', | ||
Bg: 'BG', | ||
Bh: 'BH', | ||
Bi: 'BI', | ||
Bj: 'BJ', | ||
Bl: 'BL', | ||
Bm: 'BM', | ||
Bn: 'BN', | ||
Bo: 'BO', | ||
Br: 'BR', | ||
Bs: 'BS', | ||
Bt: 'BT', | ||
Bv: 'BV', | ||
Bw: 'BW', | ||
By: 'BY', | ||
Bz: 'BZ', | ||
Ca: 'CA', | ||
Cc: 'CC', | ||
Cd: 'CD', | ||
Cf: 'CF', | ||
Cg: 'CG', | ||
Ch: 'CH', | ||
Ci: 'CI', | ||
Ck: 'CK', | ||
Cl: 'CL', | ||
Cm: 'CM', | ||
Cn: 'CN', | ||
Co: 'CO', | ||
Cr: 'CR', | ||
Cu: 'CU', | ||
Cv: 'CV', | ||
Cw: 'CW', | ||
Cx: 'CX', | ||
Cy: 'CY', | ||
Cz: 'CZ', | ||
Dj: 'DJ', | ||
Dk: 'DK', | ||
Dm: 'DM', | ||
Do: 'DO', | ||
Dz: 'DZ', | ||
Ec: 'EC', | ||
Ee: 'EE', | ||
Eg: 'EG', | ||
Eh: 'EH', | ||
Er: 'ER', | ||
Es: 'ES', | ||
Et: 'ET', | ||
Fi: 'FI', | ||
Fj: 'FJ', | ||
Fk: 'FK', | ||
Fm: 'FM', | ||
Fo: 'FO', | ||
Fr: 'FR', | ||
Ga: 'GA', | ||
Gb: 'GB', | ||
Gd: 'GD', | ||
Ge: 'GE', | ||
Gf: 'GF', | ||
Gg: 'GG', | ||
Gh: 'GH', | ||
Gi: 'GI', | ||
Gl: 'GL', | ||
Gm: 'GM', | ||
Gn: 'GN', | ||
Gp: 'GP', | ||
Gq: 'GQ', | ||
Gr: 'GR', | ||
Gs: 'GS', | ||
Gt: 'GT', | ||
Gu: 'GU', | ||
Gw: 'GW', | ||
Gy: 'GY', | ||
Hk: 'HK', | ||
Hm: 'HM', | ||
Hn: 'HN', | ||
Hr: 'HR', | ||
Ht: 'HT', | ||
Hu: 'HU', | ||
Id: 'ID', | ||
Ie: 'IE', | ||
Il: 'IL', | ||
Im: 'IM', | ||
In: 'IN', | ||
Io: 'IO', | ||
Iq: 'IQ', | ||
Ir: 'IR', | ||
Is: 'IS', | ||
It: 'IT', | ||
Je: 'JE', | ||
Jm: 'JM', | ||
Jo: 'JO', | ||
Jp: 'JP', | ||
Ke: 'KE', | ||
Kg: 'KG', | ||
Kh: 'KH', | ||
Ki: 'KI', | ||
Km: 'KM', | ||
Kn: 'KN', | ||
Kp: 'KP', | ||
Kr: 'KR', | ||
Kw: 'KW', | ||
Ky: 'KY', | ||
Kz: 'KZ', | ||
La: 'LA', | ||
Lb: 'LB', | ||
Lc: 'LC', | ||
Li: 'LI', | ||
Lk: 'LK', | ||
Lr: 'LR', | ||
Ls: 'LS', | ||
Lt: 'LT', | ||
Lu: 'LU', | ||
Lv: 'LV', | ||
Ly: 'LY', | ||
Ma: 'MA', | ||
Mc: 'MC', | ||
Md: 'MD', | ||
Me: 'ME', | ||
Mf: 'MF', | ||
Mg: 'MG', | ||
Mh: 'MH', | ||
Mk: 'MK', | ||
Ml: 'ML', | ||
Mm: 'MM', | ||
Mn: 'MN', | ||
Mo: 'MO', | ||
Mp: 'MP', | ||
Mq: 'MQ', | ||
Mr: 'MR', | ||
Ms: 'MS', | ||
Mt: 'MT', | ||
Mu: 'MU', | ||
Mv: 'MV', | ||
Mw: 'MW', | ||
Mx: 'MX', | ||
My: 'MY', | ||
Mz: 'MZ', | ||
Na: 'NA', | ||
Nc: 'NC', | ||
Ne: 'NE', | ||
Nf: 'NF', | ||
Ng: 'NG', | ||
Ni: 'NI', | ||
Nl: 'NL', | ||
No: 'NO', | ||
Np: 'NP', | ||
Nr: 'NR', | ||
Nu: 'NU', | ||
Nz: 'NZ', | ||
Om: 'OM', | ||
Pa: 'PA', | ||
Pe: 'PE', | ||
Pf: 'PF', | ||
Pg: 'PG', | ||
Ph: 'PH', | ||
Pk: 'PK', | ||
Pl: 'PL', | ||
Pm: 'PM', | ||
Pn: 'PN', | ||
Pr: 'PR', | ||
Ps: 'PS', | ||
Pt: 'PT', | ||
Pw: 'PW', | ||
Py: 'PY', | ||
Qa: 'QA', | ||
Re: 'RE', | ||
Ro: 'RO', | ||
Rs: 'RS', | ||
Ru: 'RU', | ||
Rw: 'RW', | ||
Sa: 'SA', | ||
Sb: 'SB', | ||
Sc: 'SC', | ||
Sd: 'SD', | ||
Se: 'SE', | ||
Sg: 'SG', | ||
Si: 'SI', | ||
Sj: 'SJ', | ||
Sk: 'SK', | ||
Sl: 'SL', | ||
Sm: 'SM', | ||
Sn: 'SN', | ||
So: 'SO', | ||
Sr: 'SR', | ||
Ss: 'SS', | ||
St: 'ST', | ||
Sv: 'SV', | ||
Sx: 'SX', | ||
Sy: 'SY', | ||
Sz: 'SZ', | ||
Tc: 'TC', | ||
Td: 'TD', | ||
Tf: 'TF', | ||
Tg: 'TG', | ||
Th: 'TH', | ||
Tj: 'TJ', | ||
Tk: 'TK', | ||
Tl: 'TL', | ||
Tm: 'TM', | ||
Tn: 'TN', | ||
To: 'TO', | ||
Tr: 'TR', | ||
Tt: 'TT', | ||
Tv: 'TV', | ||
Tw: 'TW', | ||
Tz: 'TZ', | ||
Ua: 'UA', | ||
Ug: 'UG', | ||
Um: 'UM', | ||
Us: 'US', | ||
Uy: 'UY', | ||
Uz: 'UZ', | ||
Va: 'VA', | ||
Vc: 'VC', | ||
Ve: 'VE', | ||
Vg: 'VG', | ||
Vi: 'VI', | ||
Vn: 'VN', | ||
Vu: 'VU', | ||
Wf: 'WF', | ||
Ws: 'WS', | ||
Xk: 'XK', | ||
Ye: 'YE', | ||
Yt: 'YT', | ||
Za: 'ZA', | ||
Zm: 'ZM', | ||
De: 'DE', | ||
Ad: 'AD', | ||
Ae: 'AE', | ||
Af: 'AF', | ||
Ag: 'AG', | ||
Ai: 'AI', | ||
Al: 'AL', | ||
Am: 'AM', | ||
Ao: 'AO', | ||
Aq: 'AQ', | ||
Ar: 'AR', | ||
As: 'AS', | ||
At: 'AT', | ||
Au: 'AU', | ||
Aw: 'AW', | ||
Ax: 'AX', | ||
Az: 'AZ', | ||
Ba: 'BA', | ||
Bb: 'BB', | ||
Bd: 'BD', | ||
Be: 'BE', | ||
Bf: 'BF', | ||
Bg: 'BG', | ||
Bh: 'BH', | ||
Bi: 'BI', | ||
Bj: 'BJ', | ||
Bl: 'BL', | ||
Bm: 'BM', | ||
Bn: 'BN', | ||
Bo: 'BO', | ||
Br: 'BR', | ||
Bs: 'BS', | ||
Bt: 'BT', | ||
Bv: 'BV', | ||
Bw: 'BW', | ||
By: 'BY', | ||
Bz: 'BZ', | ||
Ca: 'CA', | ||
Cc: 'CC', | ||
Cd: 'CD', | ||
Cf: 'CF', | ||
Cg: 'CG', | ||
Ch: 'CH', | ||
Ci: 'CI', | ||
Ck: 'CK', | ||
Cl: 'CL', | ||
Cm: 'CM', | ||
Cn: 'CN', | ||
Co: 'CO', | ||
Cr: 'CR', | ||
Cu: 'CU', | ||
Cv: 'CV', | ||
Cw: 'CW', | ||
Cx: 'CX', | ||
Cy: 'CY', | ||
Cz: 'CZ', | ||
Dj: 'DJ', | ||
Dk: 'DK', | ||
Dm: 'DM', | ||
Do: 'DO', | ||
Dz: 'DZ', | ||
Ec: 'EC', | ||
Ee: 'EE', | ||
Eg: 'EG', | ||
Eh: 'EH', | ||
Er: 'ER', | ||
Es: 'ES', | ||
Et: 'ET', | ||
Fi: 'FI', | ||
Fj: 'FJ', | ||
Fk: 'FK', | ||
Fm: 'FM', | ||
Fo: 'FO', | ||
Fr: 'FR', | ||
Ga: 'GA', | ||
Gb: 'GB', | ||
Gd: 'GD', | ||
Ge: 'GE', | ||
Gf: 'GF', | ||
Gg: 'GG', | ||
Gh: 'GH', | ||
Gi: 'GI', | ||
Gl: 'GL', | ||
Gm: 'GM', | ||
Gn: 'GN', | ||
Gp: 'GP', | ||
Gq: 'GQ', | ||
Gr: 'GR', | ||
Gs: 'GS', | ||
Gt: 'GT', | ||
Gu: 'GU', | ||
Gw: 'GW', | ||
Gy: 'GY', | ||
Hk: 'HK', | ||
Hm: 'HM', | ||
Hn: 'HN', | ||
Hr: 'HR', | ||
Ht: 'HT', | ||
Hu: 'HU', | ||
Id: 'ID', | ||
Ie: 'IE', | ||
Il: 'IL', | ||
Im: 'IM', | ||
In: 'IN', | ||
Io: 'IO', | ||
Iq: 'IQ', | ||
Ir: 'IR', | ||
Is: 'IS', | ||
It: 'IT', | ||
Je: 'JE', | ||
Jm: 'JM', | ||
Jo: 'JO', | ||
Jp: 'JP', | ||
Ke: 'KE', | ||
Kg: 'KG', | ||
Kh: 'KH', | ||
Ki: 'KI', | ||
Km: 'KM', | ||
Kn: 'KN', | ||
Kp: 'KP', | ||
Kr: 'KR', | ||
Kw: 'KW', | ||
Ky: 'KY', | ||
Kz: 'KZ', | ||
La: 'LA', | ||
Lb: 'LB', | ||
Lc: 'LC', | ||
Li: 'LI', | ||
Lk: 'LK', | ||
Lr: 'LR', | ||
Ls: 'LS', | ||
Lt: 'LT', | ||
Lu: 'LU', | ||
Lv: 'LV', | ||
Ly: 'LY', | ||
Ma: 'MA', | ||
Mc: 'MC', | ||
Md: 'MD', | ||
Me: 'ME', | ||
Mf: 'MF', | ||
Mg: 'MG', | ||
Mh: 'MH', | ||
Mk: 'MK', | ||
Ml: 'ML', | ||
Mm: 'MM', | ||
Mn: 'MN', | ||
Mo: 'MO', | ||
Mp: 'MP', | ||
Mq: 'MQ', | ||
Mr: 'MR', | ||
Ms: 'MS', | ||
Mt: 'MT', | ||
Mu: 'MU', | ||
Mv: 'MV', | ||
Mw: 'MW', | ||
Mx: 'MX', | ||
My: 'MY', | ||
Mz: 'MZ', | ||
Na: 'NA', | ||
Nc: 'NC', | ||
Ne: 'NE', | ||
Nf: 'NF', | ||
Ng: 'NG', | ||
Ni: 'NI', | ||
Nl: 'NL', | ||
No: 'NO', | ||
Np: 'NP', | ||
Nr: 'NR', | ||
Nu: 'NU', | ||
Nz: 'NZ', | ||
Om: 'OM', | ||
Pa: 'PA', | ||
Pe: 'PE', | ||
Pf: 'PF', | ||
Pg: 'PG', | ||
Ph: 'PH', | ||
Pk: 'PK', | ||
Pl: 'PL', | ||
Pm: 'PM', | ||
Pn: 'PN', | ||
Pr: 'PR', | ||
Ps: 'PS', | ||
Pt: 'PT', | ||
Pw: 'PW', | ||
Py: 'PY', | ||
Qa: 'QA', | ||
Re: 'RE', | ||
Ro: 'RO', | ||
Rs: 'RS', | ||
Ru: 'RU', | ||
Rw: 'RW', | ||
Sa: 'SA', | ||
Sb: 'SB', | ||
Sc: 'SC', | ||
Sd: 'SD', | ||
Se: 'SE', | ||
Sg: 'SG', | ||
Si: 'SI', | ||
Sj: 'SJ', | ||
Sk: 'SK', | ||
Sl: 'SL', | ||
Sm: 'SM', | ||
Sn: 'SN', | ||
So: 'SO', | ||
Sr: 'SR', | ||
Ss: 'SS', | ||
St: 'ST', | ||
Sv: 'SV', | ||
Sx: 'SX', | ||
Sy: 'SY', | ||
Sz: 'SZ', | ||
Tc: 'TC', | ||
Td: 'TD', | ||
Tf: 'TF', | ||
Tg: 'TG', | ||
Th: 'TH', | ||
Tj: 'TJ', | ||
Tk: 'TK', | ||
Tl: 'TL', | ||
Tm: 'TM', | ||
Tn: 'TN', | ||
To: 'TO', | ||
Tr: 'TR', | ||
Tt: 'TT', | ||
Tv: 'TV', | ||
Tw: 'TW', | ||
Tz: 'TZ', | ||
Ua: 'UA', | ||
Ug: 'UG', | ||
Um: 'UM', | ||
Us: 'US', | ||
Uy: 'UY', | ||
Uz: 'UZ', | ||
Va: 'VA', | ||
Vc: 'VC', | ||
Ve: 'VE', | ||
Vg: 'VG', | ||
Vi: 'VI', | ||
Vn: 'VN', | ||
Vu: 'VU', | ||
Wf: 'WF', | ||
Ws: 'WS', | ||
Xk: 'XK', | ||
Ye: 'YE', | ||
Yt: 'YT', | ||
Za: 'ZA', | ||
Zm: 'ZM', | ||
Zw: 'ZW' | ||
@@ -1074,7 +1080,7 @@ }); | ||
export const NotificationTypeValues = Object.freeze({ | ||
Transactions: 'TRANSACTIONS', | ||
Statements: 'STATEMENTS', | ||
ProductInfo: 'PRODUCT_INFO', | ||
Tax: 'TAX', | ||
ReceiptScanning: 'RECEIPT_SCANNING', | ||
Transactions: 'TRANSACTIONS', | ||
Statements: 'STATEMENTS', | ||
ProductInfo: 'PRODUCT_INFO', | ||
Tax: 'TAX', | ||
ReceiptScanning: 'RECEIPT_SCANNING', | ||
All: 'ALL' | ||
@@ -1102,8 +1108,8 @@ }); | ||
export const OverdraftApplicationStatusValues = Object.freeze({ | ||
Created: 'CREATED', | ||
InitialScoringPending: 'INITIAL_SCORING_PENDING', | ||
AccountSnapshotPending: 'ACCOUNT_SNAPSHOT_PENDING', | ||
AccountSnapshotVerificationPending: 'ACCOUNT_SNAPSHOT_VERIFICATION_PENDING', | ||
Offered: 'OFFERED', | ||
Rejected: 'REJECTED', | ||
Created: 'CREATED', | ||
InitialScoringPending: 'INITIAL_SCORING_PENDING', | ||
AccountSnapshotPending: 'ACCOUNT_SNAPSHOT_PENDING', | ||
AccountSnapshotVerificationPending: 'ACCOUNT_SNAPSHOT_VERIFICATION_PENDING', | ||
Offered: 'OFFERED', | ||
Rejected: 'REJECTED', | ||
OverdraftCreated: 'OVERDRAFT_CREATED' | ||
@@ -1124,5 +1130,5 @@ }); | ||
export const PaymentFrequencyValues = Object.freeze({ | ||
Monthly: 'MONTHLY', | ||
Quarterly: 'QUARTERLY', | ||
Yearly: 'YEARLY', | ||
Monthly: 'MONTHLY', | ||
Quarterly: 'QUARTERLY', | ||
Yearly: 'YEARLY', | ||
None: 'NONE' | ||
@@ -1135,4 +1141,4 @@ }); | ||
export const PlatformValues = Object.freeze({ | ||
Ios: 'IOS', | ||
Android: 'ANDROID', | ||
Ios: 'IOS', | ||
Android: 'ANDROID', | ||
Web: 'WEB' | ||
@@ -1150,3 +1156,3 @@ }); | ||
export const PurchaseStateValues = Object.freeze({ | ||
Processed: 'PROCESSED', | ||
Processed: 'PROCESSED', | ||
Pending: 'PENDING' | ||
@@ -1159,6 +1165,6 @@ }); | ||
export const PurchaseTypeValues = Object.freeze({ | ||
BasicInitial: 'BASIC_INITIAL', | ||
Basic: 'BASIC', | ||
Premium: 'PREMIUM', | ||
Card: 'CARD', | ||
BasicInitial: 'BASIC_INITIAL', | ||
Basic: 'BASIC', | ||
Premium: 'PREMIUM', | ||
Card: 'CARD', | ||
Lexoffice: 'LEXOFFICE' | ||
@@ -1186,13 +1192,13 @@ }); | ||
export const ScopeTypeValues = Object.freeze({ | ||
Offline: 'OFFLINE', | ||
Accounts: 'ACCOUNTS', | ||
Users: 'USERS', | ||
Transactions: 'TRANSACTIONS', | ||
Transfers: 'TRANSFERS', | ||
Subscriptions: 'SUBSCRIPTIONS', | ||
Statements: 'STATEMENTS', | ||
Admin: 'ADMIN', | ||
Clients: 'CLIENTS', | ||
Overdraft: 'OVERDRAFT', | ||
Banners: 'BANNERS', | ||
Offline: 'OFFLINE', | ||
Accounts: 'ACCOUNTS', | ||
Users: 'USERS', | ||
Transactions: 'TRANSACTIONS', | ||
Transfers: 'TRANSFERS', | ||
Subscriptions: 'SUBSCRIPTIONS', | ||
Statements: 'STATEMENTS', | ||
Admin: 'ADMIN', | ||
Clients: 'CLIENTS', | ||
Overdraft: 'OVERDRAFT', | ||
Banners: 'BANNERS', | ||
Signup: 'SIGNUP' | ||
@@ -1222,4 +1228,4 @@ }); | ||
export const SepaTransferStatusValues = Object.freeze({ | ||
Authorized: 'AUTHORIZED', | ||
Confirmed: 'CONFIRMED', | ||
Authorized: 'AUTHORIZED', | ||
Confirmed: 'CONFIRMED', | ||
Booked: 'BOOKED' | ||
@@ -1232,5 +1238,5 @@ }); | ||
export const StandingOrderReoccurrenceTypeValues = Object.freeze({ | ||
Monthly: 'MONTHLY', | ||
Quarterly: 'QUARTERLY', | ||
EverySixMonths: 'EVERY_SIX_MONTHS', | ||
Monthly: 'MONTHLY', | ||
Quarterly: 'QUARTERLY', | ||
EverySixMonths: 'EVERY_SIX_MONTHS', | ||
Annually: 'ANNUALLY' | ||
@@ -1337,2 +1343,5 @@ }); | ||
personalNote?: ?$ElementType<Scalars, 'String'>, | ||
predictedCategory?: ?TransactionCategory, | ||
/** Date predicted for tax/vat payment/refund predicted category */ | ||
predictedUserSelectedBookingDate?: ?$ElementType<Scalars, 'DateTime'>, | ||
purpose?: ?$ElementType<Scalars, 'String'>, | ||
@@ -1348,12 +1357,12 @@ documentNumber?: ?$ElementType<Scalars, 'String'>, | ||
export const TransactionCategoryValues = Object.freeze({ | ||
Private: 'PRIVATE', | ||
Vat: 'VAT', | ||
Vat_0: 'VAT_0', | ||
Vat_7: 'VAT_7', | ||
Vat_19: 'VAT_19', | ||
TaxPayment: 'TAX_PAYMENT', | ||
VatPayment: 'VAT_PAYMENT', | ||
TaxRefund: 'TAX_REFUND', | ||
VatRefund: 'VAT_REFUND', | ||
VatSaving: 'VAT_SAVING', | ||
Private: 'PRIVATE', | ||
Vat: 'VAT', | ||
Vat_0: 'VAT_0', | ||
Vat_7: 'VAT_7', | ||
Vat_19: 'VAT_19', | ||
TaxPayment: 'TAX_PAYMENT', | ||
VatPayment: 'VAT_PAYMENT', | ||
TaxRefund: 'TAX_REFUND', | ||
VatRefund: 'VAT_REFUND', | ||
VatSaving: 'VAT_SAVING', | ||
TaxSaving: 'TAX_SAVING' | ||
@@ -1411,6 +1420,6 @@ }); | ||
export const TransactionFeeStatusValues = Object.freeze({ | ||
Created: 'CREATED', | ||
Charged: 'CHARGED', | ||
Refunded: 'REFUNDED', | ||
Cancelled: 'CANCELLED', | ||
Created: 'CREATED', | ||
Charged: 'CHARGED', | ||
Refunded: 'REFUNDED', | ||
Cancelled: 'CANCELLED', | ||
RefundInitiated: 'REFUND_INITIATED' | ||
@@ -1423,6 +1432,6 @@ }); | ||
export const TransactionFeeTypeValues = Object.freeze({ | ||
Atm: 'ATM', | ||
ForeignTransaction: 'FOREIGN_TRANSACTION', | ||
DirectDebitReturn: 'DIRECT_DEBIT_RETURN', | ||
SecondReminderEmail: 'SECOND_REMINDER_EMAIL', | ||
Atm: 'ATM', | ||
ForeignTransaction: 'FOREIGN_TRANSACTION', | ||
DirectDebitReturn: 'DIRECT_DEBIT_RETURN', | ||
SecondReminderEmail: 'SECOND_REMINDER_EMAIL', | ||
CardReplacement: 'CARD_REPLACEMENT' | ||
@@ -1473,32 +1482,32 @@ }); | ||
export const TransactionProjectionTypeValues = Object.freeze({ | ||
CreditPresentment: 'CREDIT_PRESENTMENT', | ||
CashManual: 'CASH_MANUAL', | ||
Atm: 'ATM', | ||
CancelManualLoad: 'CANCEL_MANUAL_LOAD', | ||
CardUsage: 'CARD_USAGE', | ||
DirectDebitAutomaticTopup: 'DIRECT_DEBIT_AUTOMATIC_TOPUP', | ||
DirectDebitReturn: 'DIRECT_DEBIT_RETURN', | ||
DisputeClearing: 'DISPUTE_CLEARING', | ||
ManualLoad: 'MANUAL_LOAD', | ||
WireTransferTopup: 'WIRE_TRANSFER_TOPUP', | ||
TransferToBankAccount: 'TRANSFER_TO_BANK_ACCOUNT', | ||
CancellationBooking: 'CANCELLATION_BOOKING', | ||
CancellationDoubleBooking: 'CANCELLATION_DOUBLE_BOOKING', | ||
CreditTransferCancellation: 'CREDIT_TRANSFER_CANCELLATION', | ||
CurrencyTransactionCancellation: 'CURRENCY_TRANSACTION_CANCELLATION', | ||
DirectDebit: 'DIRECT_DEBIT', | ||
ForeignPayment: 'FOREIGN_PAYMENT', | ||
Other: 'OTHER', | ||
SepaCreditTransferReturn: 'SEPA_CREDIT_TRANSFER_RETURN', | ||
SepaCreditTransfer: 'SEPA_CREDIT_TRANSFER', | ||
SepaDirectDebitReturn: 'SEPA_DIRECT_DEBIT_RETURN', | ||
SepaDirectDebit: 'SEPA_DIRECT_DEBIT', | ||
Transfer: 'TRANSFER', | ||
InternationalCreditTransfer: 'INTERNATIONAL_CREDIT_TRANSFER', | ||
CancellationSepaDirectDebitReturn: 'CANCELLATION_SEPA_DIRECT_DEBIT_RETURN', | ||
Rebooking: 'REBOOKING', | ||
CancellationDirectDebit: 'CANCELLATION_DIRECT_DEBIT', | ||
CancellationSepaCreditTransferReturn: 'CANCELLATION_SEPA_CREDIT_TRANSFER_RETURN', | ||
CardTransaction: 'CARD_TRANSACTION', | ||
InterestAccrued: 'INTEREST_ACCRUED', | ||
CreditPresentment: 'CREDIT_PRESENTMENT', | ||
CashManual: 'CASH_MANUAL', | ||
Atm: 'ATM', | ||
CancelManualLoad: 'CANCEL_MANUAL_LOAD', | ||
CardUsage: 'CARD_USAGE', | ||
DirectDebitAutomaticTopup: 'DIRECT_DEBIT_AUTOMATIC_TOPUP', | ||
DirectDebitReturn: 'DIRECT_DEBIT_RETURN', | ||
DisputeClearing: 'DISPUTE_CLEARING', | ||
ManualLoad: 'MANUAL_LOAD', | ||
WireTransferTopup: 'WIRE_TRANSFER_TOPUP', | ||
TransferToBankAccount: 'TRANSFER_TO_BANK_ACCOUNT', | ||
CancellationBooking: 'CANCELLATION_BOOKING', | ||
CancellationDoubleBooking: 'CANCELLATION_DOUBLE_BOOKING', | ||
CreditTransferCancellation: 'CREDIT_TRANSFER_CANCELLATION', | ||
CurrencyTransactionCancellation: 'CURRENCY_TRANSACTION_CANCELLATION', | ||
DirectDebit: 'DIRECT_DEBIT', | ||
ForeignPayment: 'FOREIGN_PAYMENT', | ||
Other: 'OTHER', | ||
SepaCreditTransferReturn: 'SEPA_CREDIT_TRANSFER_RETURN', | ||
SepaCreditTransfer: 'SEPA_CREDIT_TRANSFER', | ||
SepaDirectDebitReturn: 'SEPA_DIRECT_DEBIT_RETURN', | ||
SepaDirectDebit: 'SEPA_DIRECT_DEBIT', | ||
Transfer: 'TRANSFER', | ||
InternationalCreditTransfer: 'INTERNATIONAL_CREDIT_TRANSFER', | ||
CancellationSepaDirectDebitReturn: 'CANCELLATION_SEPA_DIRECT_DEBIT_RETURN', | ||
Rebooking: 'REBOOKING', | ||
CancellationDirectDebit: 'CANCELLATION_DIRECT_DEBIT', | ||
CancellationSepaCreditTransferReturn: 'CANCELLATION_SEPA_CREDIT_TRANSFER_RETURN', | ||
CardTransaction: 'CARD_TRANSACTION', | ||
InterestAccrued: 'INTEREST_ACCRUED', | ||
CancellationInterestAccrued: 'CANCELLATION_INTEREST_ACCRUED' | ||
@@ -1578,13 +1587,13 @@ }); | ||
export const TransferStatusValues = Object.freeze({ | ||
Authorized: 'AUTHORIZED', | ||
Confirmed: 'CONFIRMED', | ||
Booked: 'BOOKED', | ||
Created: 'CREATED', | ||
Active: 'ACTIVE', | ||
Inactive: 'INACTIVE', | ||
Canceled: 'CANCELED', | ||
AuthorizationRequired: 'AUTHORIZATION_REQUIRED', | ||
ConfirmationRequired: 'CONFIRMATION_REQUIRED', | ||
Scheduled: 'SCHEDULED', | ||
Executed: 'EXECUTED', | ||
Authorized: 'AUTHORIZED', | ||
Confirmed: 'CONFIRMED', | ||
Booked: 'BOOKED', | ||
Created: 'CREATED', | ||
Active: 'ACTIVE', | ||
Inactive: 'INACTIVE', | ||
Canceled: 'CANCELED', | ||
AuthorizationRequired: 'AUTHORIZATION_REQUIRED', | ||
ConfirmationRequired: 'CONFIRMATION_REQUIRED', | ||
Scheduled: 'SCHEDULED', | ||
Executed: 'EXECUTED', | ||
Failed: 'FAILED' | ||
@@ -1603,4 +1612,4 @@ }); | ||
export const TransferTypeValues = Object.freeze({ | ||
SepaTransfer: 'SEPA_TRANSFER', | ||
StandingOrder: 'STANDING_ORDER', | ||
SepaTransfer: 'SEPA_TRANSFER', | ||
StandingOrder: 'STANDING_ORDER', | ||
TimedOrder: 'TIMED_ORDER' | ||
@@ -1717,3 +1726,3 @@ }); | ||
subscriptions: Array<UserSubscription>, | ||
/** The state of banners in Kontist App for the user */ | ||
/** The state of banners in mobile or web app for the user */ | ||
banners?: ?Array<Banner>, | ||
@@ -1744,2 +1753,7 @@ /** Bookkeeping partners information for user */ | ||
export type UserBannersArgs = {| | ||
isWebapp?: ?$ElementType<Scalars, 'Boolean'>, | ||
|}; | ||
export type UserAvailablePlansArgs = {| | ||
@@ -1761,10 +1775,2 @@ couponCode?: ?$ElementType<Scalars, 'String'>, | ||
export const UserOsValues = Object.freeze({ | ||
Ios: 'IOS', | ||
Android: 'ANDROID' | ||
}); | ||
export type UserOs = $Values<typeof UserOsValues>; | ||
export type UserMetadata = {| | ||
@@ -1857,4 +1863,4 @@ __typename?: 'UserMetadata', | ||
export const WirecardCardStatusValues = Object.freeze({ | ||
NotOrdered: 'NOT_ORDERED', | ||
Ordered: 'ORDERED', | ||
NotOrdered: 'NOT_ORDERED', | ||
Ordered: 'ORDERED', | ||
Issued: 'ISSUED' | ||
@@ -1861,0 +1867,0 @@ }); |
@@ -17,2 +17,3 @@ "use strict"; | ||
BannerName["FriendReferral"] = "FRIEND_REFERRAL"; | ||
BannerName["PrimaryWebapp"] = "PRIMARY_WEBAPP"; | ||
})(BannerName = exports.BannerName || (exports.BannerName = {})); | ||
@@ -19,0 +20,0 @@ var BaseOperator; |
{ | ||
"name": "kontist", | ||
"version": "0.29.1", | ||
"version": "0.29.2", | ||
"description": "Kontist client SDK", | ||
@@ -5,0 +5,0 @@ "main": "dist/lib/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
623860
10410