@bapp/api-client
Version:
Client to consume BAPP API, auto-generated using openapi-typescript-codegen
1,649 lines • 268 kB
TypeScript
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type AcceptMonthCostsBappTask = {
readonly id?: number;
readonly file?: string | null;
readonly location?: number;
readonly period?: string;
readonly is_accepted?: boolean;
};
/**
* Base model serializer for User owned information
*/
export type Address = {
name: string;
country: string;
region?: number | null;
city?: number | null;
address: string;
readonly complete_address?: string;
};
/**
* Base model serializer for User owned information
*/
export type AddressRequest = {
name: string;
country: string;
region?: number | null;
city?: number | null;
address: string;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type AndroidEvent = {
/**
* The event action identifier
*/
action: string;
/**
* The unique device identifier
*/
device_id: string;
/**
* The Device name
*/
device_name: string;
/**
* The event payload
*/
payload?: unknown;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type AndroidEventRequest = {
/**
* The event action identifier
*/
action: string;
/**
* The unique device identifier
*/
device_id: string;
/**
* The Device name
*/
device_name: string;
/**
* The event payload
*/
payload?: unknown;
};
/**
* * `restaurant_menu` - Meniu restaurant
* * `hotel_app` - Aplicatie hoteluri
* * `reservation_app` - Aplicatie rezervari
* * `finder_app` - Aplicatie lost & found
* * `mobile_link` - Link mobil
*/
export type AppTypeEnum = 'restaurant_menu' | 'hotel_app' | 'reservation_app' | 'finder_app' | 'mobile_link';
export type AvailableJson = {
/**
* The type of the JSON
*
* * `task` - task
* * `widget` - widget
* * `iftt_trigger` - iftt_trigger
* * `iftt_action` - iftt_action
* * `iftt_condition` - iftt_condition
*/
type: TypeEnum;
/**
* The task code
*/
code: string;
/**
* The task title
*/
title: string;
/**
* The task description
*/
description?: string;
/**
* The task permissions
*/
permissions?: string;
};
/**
* Base model serializer for User owned information
*/
export type BankAccount = {
readonly id?: number;
user?: string | null;
company?: number | null;
account_id?: string;
iban: string;
/**
* ISO 4217 code
*/
currency?: string | null;
owner_name: string;
balance?: string;
balance_date?: string | null;
active?: boolean;
readonly sync_enabled?: string;
readonly institution_id?: string;
readonly provider?: number | null;
last_sync_error?: string;
};
/**
* Base model serializer for User owned information
*/
export type BankAccountRequest = {
user?: string | null;
company?: number | null;
account_id?: string;
iban: string;
/**
* ISO 4217 code
*/
currency?: string | null;
owner_name: string;
balance?: string;
balance_date?: string | null;
active?: boolean;
last_sync_error?: string;
};
/**
* Get all available banks
*/
export type BankInstitution = {
id: string;
name: string;
logo: string;
};
/**
* Base model serializer for User owned information
*/
export type BankTransaction = {
readonly id?: number;
readonly account?: number;
/**
* Internal identifier
*/
readonly internal_id?: string;
/**
* Bank transaction identifier
*/
readonly identifier?: string;
readonly date?: string;
readonly value?: string;
readonly description?: string;
readonly name?: string;
readonly iban?: string;
content_type?: number | null;
object_id?: number | null;
/**
* If there is no content object you can set this and wish to resolve this, you can set it to True
*/
resolved?: boolean;
extra?: unknown;
};
/**
* Base model serializer for User owned information
*/
export type BankTransactionRequest = {
content_type?: number | null;
object_id?: number | null;
/**
* If there is no content object you can set this and wish to resolve this, you can set it to True
*/
resolved?: boolean;
extra?: unknown;
};
export type BlankEnum = '';
export type CaenCodeModel = {
id: string;
name: string;
level?: number;
parent?: string | null;
};
/**
* * `0` - Servicii
* * `1` - Stoc
* * `2` - Imobilizari
* * `3` - Discount
* * `4` - Timbru verde
*/
export type CategoryEnum = 0 | 1 | 2 | 3 | 4;
/**
* * `empty` - Nu se trimite
* * `code` - Cod intern
* * `code_ean` - Cod EAN
* * `id` - ID BAPP
*/
export type ClientProductCodeEnum = 'empty' | 'code' | 'code_ean' | 'id';
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyBankAccount = {
readonly id?: number;
iban: string;
/**
* ISO 4217 code
*/
currency: string;
bank: string;
description?: string;
used_on_documents?: boolean;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyBankAccountRequest = {
iban: string;
/**
* ISO 4217 code
*/
currency: string;
bank: string;
description?: string;
used_on_documents?: boolean;
};
export type CompanyBaseSettings = {
currencies?: Array<CurrenciesEnum>;
default_currency?: DefaultCurrencyEnum;
languages?: Array<LanguagesEnum>;
price?: number;
quantity?: number;
primary_color?: string | null;
/**
* What product code should be used in client interfaces(eFactura, stocks etc.)
*
* * `empty` - Nu se trimite
* * `code` - Cod intern
* * `code_ean` - Cod EAN
* * `id` - ID BAPP
*/
client_product_code?: ClientProductCodeEnum;
};
export type CompanyBaseSettingsRequest = {
currencies?: Array<CurrenciesEnum>;
default_currency?: DefaultCurrencyEnum;
languages?: Array<LanguagesEnum>;
price?: number;
quantity?: number;
primary_color?: string | null;
/**
* What product code should be used in client interfaces(eFactura, stocks etc.)
*
* * `empty` - Nu se trimite
* * `code` - Cod intern
* * `code_ean` - Cod EAN
* * `id` - ID BAPP
*/
client_product_code?: ClientProductCodeEnum;
};
export type CompanyBaseUserProductSettings = {
/**
* Search by BAPP internal ID.
*/
search_by_id?: boolean;
/**
* How should a product be displayed in the application product select list.
*/
product_display?: string;
};
export type CompanyBaseUserProductSettingsRequest = {
/**
* Search by BAPP internal ID.
*/
search_by_id?: boolean;
/**
* How should a product be displayed in the application product select list.
*/
product_display?: string;
};
/**
* Add a company using the selected package
*/
export type CompanyCreate = {
/**
* The new id of the company
*/
readonly company_id?: number;
};
/**
* Add a company using the selected package
*/
export type CompanyCreateRequest = {
cif: string;
package?: PackageEnum;
yearly_period?: boolean;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyCreditsLog = {
readonly date?: string;
credits_before: number;
amount: number;
credits_after: number;
description?: string;
};
/**
* Devices that the company has access to
*/
export type CompanyDevice = {
id: string;
username?: string;
/**
* Companies allowed to send/read data.
*/
companies?: Array<(number)>;
readonly is_default?: string;
/**
* Last interaction with device
*/
last_active?: string;
/**
* First time this device was created
*/
readonly created_at?: string;
/**
* Last time the record was updated
*/
readonly modified_at?: string;
/**
* When someone claimed this device
*/
claimed_at?: string | null;
device_type?: DeviceTypeEnum;
extra?: unknown;
readonly friendly_name?: string;
};
/**
* Devices that the company has access to
*/
export type CompanyDeviceRequest = {
id: string;
username?: string;
/**
* Companies allowed to send/read data.
*/
companies?: Array<(number)>;
/**
* Last interaction with device
*/
last_active?: string;
/**
* When someone claimed this device
*/
claimed_at?: string | null;
device_type?: DeviceTypeEnum;
extra?: unknown;
/**
* Set a friendly name for the device
*/
set_friendly_name?: string;
};
export type CompanyDeviceSettings = {
/**
* The default device for the company (id)
*/
default_device?: string | null;
};
export type CompanyDeviceSettingsRequest = {
/**
* The default device for the company (id)
*/
default_device?: string | null;
};
export type CompanyEmailReceiver = {
enabled?: boolean;
only_whitelist?: boolean;
whitelist?: Array<(string)>;
};
export type CompanyEmailReceiverRequest = {
enabled?: boolean;
only_whitelist?: boolean;
whitelist?: Array<(string)>;
};
export type CompanyInfo = {
/**
* if requested cif is valid or not
*/
valid?: boolean;
/**
* Company's CIF
*/
cif?: string;
/**
* Company's VAT ID (If the company pays VAT the full vat id, otherwise it's the same as cif)
*/
vat?: string;
/**
* Company's name
*/
name?: string;
/**
* Company's registration number
*/
reg_com?: string;
/**
* Company's address
*/
address?: string;
/**
* Company's city name
*/
city?: string;
/**
* Company's city ID in bapp database
*/
city_id?: number;
/**
* Company's region name
*/
region?: string;
/**
* Company's region ID in bapp database
*/
region_id?: number;
/**
* Company's country name
*/
country?: string;
/**
* Company's CAEN code
*/
caen_code?: string;
/**
* Company's CAEN code description
*/
caen_name?: string;
};
export type CompanyInvoiceSettings = {
/**
* Zile pana la trimiterea facturilor catre ANAF
*/
efactura_send_days?: number;
/**
* Ataseaza pdf factura la xml
*/
efactura_attach_pdf?: boolean;
/**
* Trimite factura pentru persoane fizice
*/
efactura_send_to_pf?: boolean;
/**
* Trimite facturile storno cu tip CreditNote
*/
efactura_storno_as_credit_note?: boolean;
/**
* Incorporateaza anexele in pdf-ul facturii
*/
embed_attachments?: boolean;
};
export type CompanyInvoiceSettingsRequest = {
/**
* Zile pana la trimiterea facturilor catre ANAF
*/
efactura_send_days?: number;
/**
* Ataseaza pdf factura la xml
*/
efactura_attach_pdf?: boolean;
/**
* Trimite factura pentru persoane fizice
*/
efactura_send_to_pf?: boolean;
/**
* Trimite facturile storno cu tip CreditNote
*/
efactura_storno_as_credit_note?: boolean;
/**
* Incorporateaza anexele in pdf-ul facturii
*/
embed_attachments?: boolean;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyLocation = {
readonly id?: number;
country: string;
region?: number | null;
city?: number | null;
address: string;
name: string;
vat_id?: string;
/**
* Este folosita pentru ridicare colete
*/
is_pickup?: boolean;
/**
* Este folosita pentru primire colete retur
*/
is_return?: boolean;
/**
* Este folosit pentru a gestiona o magazie
*/
is_warehouse?: boolean;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyLocationRequest = {
country: string;
region?: number | null;
city?: number | null;
address: string;
name: string;
vat_id?: string;
/**
* Este folosita pentru ridicare colete
*/
is_pickup?: boolean;
/**
* Este folosita pentru primire colete retur
*/
is_return?: boolean;
/**
* Este folosit pentru a gestiona o magazie
*/
is_warehouse?: boolean;
};
export type CompanyOrder = {
/**
* Add order number to invoices notes automatically.
*/
add_order_no_to_invoices?: boolean;
/**
* Add product descriptions to items and invoices
*/
add_descriptions?: boolean;
/**
* Rezerva produsele din stocul local
*/
product_reservations?: boolean;
};
export type CompanyOrderRequest = {
/**
* Add order number to invoices notes automatically.
*/
add_order_no_to_invoices?: boolean;
/**
* Add product descriptions to items and invoices
*/
add_descriptions?: boolean;
/**
* Rezerva produsele din stocul local
*/
product_reservations?: boolean;
};
export type CompanyPackage = {
/**
* The package code.
*/
code: string;
/**
* The package name.
*/
name: string;
/**
* The package description.
*/
description: string;
/**
* The package type(for a specific niche).
*/
type: string;
/**
* Monthly price for the package(without VAT).
*/
price: string;
/**
* Yearly price for the package(without VAT).
*/
price_yearly?: string;
/**
* Number of days for trial period.
*/
trial_days?: number;
};
/**
* Activates a new package for a company
*/
export type CompanyPackageAdd = {
package: PackageEnum;
yearly_period?: boolean;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyPackagesStatus = {
packages: Array<PackageStatus>;
};
export type CompanyPartnerSettings = {
/**
* When checking for overall partner balance, if we should cumulate the balance with the supplier balance.
*/
cumulate_balance_with_supplier?: boolean;
};
export type CompanyPartnerSettingsRequest = {
/**
* When checking for overall partner balance, if we should cumulate the balance with the supplier balance.
*/
cumulate_balance_with_supplier?: boolean;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyPrint = {
/**
* The result of the print operation
*/
readonly result?: string;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyPrintRequest = {
/**
* If you want to print a specific file
*/
file?: (Blob | File);
/**
* If you want to print a file from a url
*/
url?: string;
/**
* Number of copies to print
*/
copies?: number;
/**
* The printer to use. If not defined the device default will be used.
*/
printer?: string;
/**
* The device to print on. If not defined the company default will be used.
*/
device?: string;
};
export type CompanyProductSettings = {
excluded_categories_with_no_stock?: Array<(ExcludedCategoriesWithNoStockEnum)>;
};
export type CompanyProductSettingsRequest = {
excluded_categories_with_no_stock?: Array<(ExcludedCategoriesWithNoStockEnum)>;
};
export type CompanySagaSettings = {
/**
* Last syncronisation date/time
*/
readonly last_sync?: string | null;
/**
* Authorisation password used for Saga
*/
password?: string | null;
/**
* Sync period
*
* * `last_month` - Last Month
* * `last_2_months` - Last 2 months
* * `last_3_months` - Last 3 months
*/
sync_target?: SyncTargetEnum;
/**
* Sync supplier invoices
*/
sync_supplier_invoices?: boolean;
/**
* Sync income
*/
sync_income?: boolean;
/**
* Sync payments
*/
sync_payments?: boolean;
/**
* Sync invoices
*/
sync_invoices?: boolean;
/**
* Sync products
*/
sync_products?: boolean;
/**
* Sync clients
*/
sync_clients?: boolean;
};
export type CompanySagaSettingsRequest = {
/**
* Authorisation password used for Saga
*/
password?: string | null;
/**
* Sync period
*
* * `last_month` - Last Month
* * `last_2_months` - Last 2 months
* * `last_3_months` - Last 3 months
*/
sync_target?: SyncTargetEnum;
/**
* Sync supplier invoices
*/
sync_supplier_invoices?: boolean;
/**
* Sync income
*/
sync_income?: boolean;
/**
* Sync payments
*/
sync_payments?: boolean;
/**
* Sync invoices
*/
sync_invoices?: boolean;
/**
* Sync products
*/
sync_products?: boolean;
/**
* Sync clients
*/
sync_clients?: boolean;
};
/**
* All company settings
*/
export type CompanySettings = {
company?: (CompanyBaseSettings) | null;
company_email_receiver?: (CompanyEmailReceiver) | null;
saga?: (CompanySagaSettings) | null;
company_device?: (CompanyDeviceSettings) | null;
company_partner?: (CompanyPartnerSettings) | null;
company_product?: (CompanyProductSettings) | null;
company_project?: (ProjectSettings) | null;
company_invoice?: (CompanyInvoiceSettings) | null;
company_supplier_order?: (CompanySupplierOrder) | null;
company_order?: (CompanyOrder) | null;
company_stock?: (CompanyStockSettings) | null;
company_timesheet?: (CompanyTimeSheetSettings) | null;
company_wallet?: (CompanyWalletSettings) | null;
};
/**
* Base model serializer for User owned information
*/
export type CompanySlimDisplay = {
readonly id?: string;
company?: number | null;
dashboard?: unknown;
/**
* Something to identify the display
*/
alias?: string;
};
/**
* Base model serializer for User owned information
*/
export type CompanySlimDisplayRequest = {
company?: number | null;
dashboard?: unknown;
/**
* Something to identify the display
*/
alias?: string;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanySpvMessage = {
readonly id?: number;
/**
* Firma care deține această înregistrare.
*/
readonly company?: number;
date: string;
detalii: string;
message_type: string;
identifier: string;
id_solicitare?: string | null;
file?: string | null;
readonly processed?: boolean;
/**
* Date and time at which this record was added
*/
readonly created_at?: string;
/**
* Date and time at which this record was modified
*/
readonly modified_at?: string;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanySpvMessageRequest = {
date: string;
detalii: string;
message_type: string;
identifier: string;
id_solicitare?: string | null;
file?: (Blob | File) | null;
};
export type CompanyStockSettings = {
/**
* Avizul de expeditie nu scade din stoc
*/
delivery_note_no_stock_movements?: boolean;
/**
* Parteneri furnizori de la care se iau stocurile
*/
partners_as_suppliers?: Array<(PartnersAsSuppliersEnum)>;
};
export type CompanyStockSettingsRequest = {
/**
* Avizul de expeditie nu scade din stoc
*/
delivery_note_no_stock_movements?: boolean;
/**
* Parteneri furnizori de la care se iau stocurile
*/
partners_as_suppliers?: Array<(PartnersAsSuppliersEnum)>;
};
export type CompanySupplierOrder = {
/**
* Show description in PDF
*/
show_description?: boolean;
};
export type CompanySupplierOrderRequest = {
/**
* Show description in PDF
*/
show_description?: boolean;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyTag = {
readonly id?: number;
name: string;
content_type: number;
color?: string;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyTagRequest = {
name: string;
content_type: number;
color?: string;
};
export type CompanyTimeSheetSettings = {
replacement_required?: boolean;
ips_whitelist?: Array<(string)>;
minutes_to_hour?: number;
paid_leave_of_absence?: boolean;
fill_missing_dates?: boolean;
};
export type CompanyTimeSheetSettingsRequest = {
replacement_required?: boolean;
ips_whitelist?: Array<(string)>;
minutes_to_hour?: number;
paid_leave_of_absence?: boolean;
fill_missing_dates?: boolean;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyToken = {
readonly id?: number;
name?: string;
token?: string;
user: string;
valid_until?: string | null;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyTokenRequest = {
name?: string;
token?: string;
user: string;
valid_until?: string | null;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyUser = {
id?: string;
/**
* Firma care deține această înregistrare.
*/
company: number;
partner?: number | null;
user?: string | null;
location?: number | null;
roles?: Array<(number)>;
permissions?: unknown;
/**
* Date and time at which this record was added
*/
readonly created_at?: string;
/**
* Date and time at which this record was modified
*/
readonly modified_at?: string;
readonly created_by?: string | null;
readonly modified_by?: string | null;
dashboard?: unknown;
settings?: unknown;
/**
* Când se va crea un utilizator în BAPP cu această adresă de email el se va adăuga automat și în firmă.
*/
email?: string;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyUserRequest = {
id?: string;
/**
* Firma care deține această înregistrare.
*/
company: number;
partner?: number | null;
user?: string | null;
location?: number | null;
roles?: Array<(number)>;
permissions?: unknown;
dashboard?: unknown;
settings?: unknown;
/**
* Când se va crea un utilizator în BAPP cu această adresă de email el se va adăuga automat și în firmă.
*/
email?: string;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyUserRole = {
readonly id?: number;
name: string;
location?: number | null;
/**
* This dictionary should be created from the module permissions that the company has access
*/
permissions?: unknown;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type CompanyUserRoleRequest = {
name: string;
location?: number | null;
/**
* This dictionary should be created from the module permissions that the company has access
*/
permissions?: unknown;
};
/**
* All user settings inside a company
*/
export type CompanyUserSettings = {
product?: (CompanyBaseUserProductSettings) | null;
};
export type CompanyWalletSettings = {
/**
* Permite sold negativ
*/
allow_negative_balance?: boolean;
/**
* Permite alimentare manuala
*/
allow_manual_top_up?: boolean;
};
export type CompanyWalletSettingsRequest = {
/**
* Permite sold negativ
*/
allow_negative_balance?: boolean;
/**
* Permite alimentare manuala
*/
allow_manual_top_up?: boolean;
};
/**
* A serializer for getting the bank connect url
*/
export type ConnectGetUrl = {
readonly url?: string;
};
/**
* A serializer for getting the bank connect url
*/
export type ConnectGetUrlRequest = {
/**
* Bank institution id
*/
id: string;
/**
* Redirect url
*/
redirect_url: string;
};
/**
* A ModelSerializer that takes additional arguments for
* "fields", "omit" and "expand" in order to
* control which fields are displayed, and whether to replace simple
* values with complex, nested serializations
*/
export type CorCodeModel = {
id: string;
readonly name?: string;
level?: number;
parent?: string | null;
};
/**
* Base model serializer for User owned information
*/
export type Country = {
code: string;
name: string;
in_ue?: boolean;
vat_standard?: string;
vat_reduced?: Array<(string)>;
/**
* ISO 4217 code
*/
currency?: string;
/**
* ISO 4217 code
*/
language?: string;
};
/**
* * `CHF` - Franc Elevetian
* * `FJD` - Dolar
* * `GBP` - Lira sterlina
* * `RON` - Leu
* * `USD` - Dolar American
* * `CAD` - Dolar Canadian
* * `EUR` - Euro
* * `AED` - Dirham
* * `AFN` - Afghani
* * `ALL` - Lek
* * `AMD` - Dram
* * `ANG` - Guilder
* * `AOA` - Kwanza
* * `ARS` - Peso
* * `AUD` - Dollar
* * `AWG` - Guilder
* * `AZN` - Manat
* * `BAM` - Marka
* * `BBD` - Dollar
* * `BDT` - Taka
* * `BGN` - Lev
* * `BHD` - Dinar
* * `BIF` - Franc
* * `BMD` - Dollar
* * `BND` - Dollar
* * `BOB` - Boliviano
* * `BRL` - Real
* * `BSD` - Dollar
* * `BTN` - Ngultrum
* * `BWP` - Pula
* * `BYN` - Belarusian ruble
* * `BZD` - Dollar
* * `CDF` - Franc
* * `CLP` - Peso
* * `CNY` - Yuan Renminbi
* * `COP` - Peso
* * `CRC` - Colon
* * `CUP` - Peso
* * `CVE` - Escudo
* * `CZK` - Koruna
* * `DJF` - Franc
* * `DKK` - Krone
* * `DOP` - Peso
* * `DZD` - Dinar
* * `EGP` - Pound
* * `ERN` - Nakfa
* * `ETB` - Birr
* * `FKP` - Pound
* * `GEL` - Lari
* * `GHS` - Cedi
* * `GIP` - Pound
* * `GMD` - Dalasi
* * `GNF` - Franc
* * `GTQ` - Quetzal
* * `GYD` - Dollar
* * `HKD` - Dollar
* * `HNL` - Lempira
* * `HRK` - Kuna
* * `HTG` - Gourde
* * `HUF` - Forint
* * `IDR` - Rupiah
* * `ILS` - Shekel
* * `INR` - Rupee
* * `IQD` - Dinar
* * `IRR` - Rial
* * `ISK` - Krona
* * `JMD` - Dollar
* * `JOD` - Dinar
* * `JPY` - Yen
* * `KES` - Shilling
* * `KGS` - Som
* * `KHR` - Riels
* * `KMF` - Franc
* * `KPW` - Won
* * `KRW` - Won
* * `KWD` - Dinar
* * `KYD` - Dollar
* * `KZT` - Tenge
* * `LAK` - Kip
* * `LBP` - Pound
* * `LKR` - Rupee
* * `LRD` - Dollar
* * `LSL` - Loti
* * `LYD` - Dinar
* * `MAD` - Dirham
* * `MDL` - Leu
* * `MGA` - Ariary
* * `MKD` - Denar
* * `MMK` - Kyat
* * `MNT` - Tugrik
* * `MOP` - Pataca
* * `MRU` - Ouguiya
* * `MUR` - Rupee
* * `MVR` - Rufiyaa
* * `MWK` - Kwacha
* * `MXN` - Peso
* * `MYR` - Ringgit
* * `MZN` - Metical
* * `NAD` - Dollar
* * `NGN` - Naira
* * `NIO` - Cordoba
* * `NOK` - Krone
* * `NPR` - Rupee
* * `NZD` - Dollar
* * `OMR` - Rial
* * `PAB` - Balboa
* * `PEN` - Sol
* * `PGK` - Kina
* * `PHP` - Peso
* * `PKR` - Rupee
* * `PLN` - Zloty
* * `PYG` - Guarani
* * `QAR` - Rial
* * `RSD` - Dinar
* * `RUB` - Ruble
* * `RWF` - Franc
* * `SAR` - Rial
* * `SBD` - Dollar
* * `SCR` - Rupee
* * `SDG` - Pound
* * `SEK` - Krona
* * `SGD` - Dollar
* * `SHP` - Pound
* * `SLL` - Leone
* * `SOS` - Shilling
* * `SRD` - Dollar
* * `SSP` - Pound
* * `STN` - Dobra
* * `SYP` - Pound
* * `SZL` - Lilangeni
* * `THB` - Baht
* * `TJS` - Somoni
* * `TMT` - Manat
* * `TND` - Dinar
* * `TOP` - Pa'anga
* * `TRY` - Lira
* * `TTD` - Dollar
* * `TWD` - Dollar
* * `TZS` - Shilling
* * `UAH` - Hryvnia
* * `UGX` - Shilling
* * `UYU` - Peso
* * `UZS` - Som
* * `VES` - Bolivar Soberano
* * `VND` - Dong
* * `VUV` - Vatu
* * `WST` - Tala
* * `XAF` - Franc
* * `XCD` - Dollar
* * `XOF` - Franc
* * `XPF` - Franc
* * `YER` - Rial
* * `ZAR` - Rand
* * `ZMW` - Kwacha
* * `ZWL` - Dollar
* * `XAU` - Aur
*/
export type CurrenciesEnum = 'CHF' | 'FJD' | 'GBP' | 'RON' | 'USD' | 'CAD' | 'EUR' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BZD' | 'CDF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FKP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SRD' | 'SSP' | 'STN' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VES' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWL' | 'XAU';
/**
* Base model serializer for User owned information
*/
export type Currency = {
/**
* ISO 4217 code
*/
code: string;
/**
* RON as default
*/
name: string;
};
/**
* * `CHF` - Franc Elevetian
* * `FJD` - Dolar
* * `GBP` - Lira sterlina
* * `RON` - Leu
* * `USD` - Dolar American
* * `CAD` - Dolar Canadian
* * `EUR` - Euro
* * `AED` - Dirham
* * `AFN` - Afghani
* * `ALL` - Lek
* * `AMD` - Dram
* * `ANG` - Guilder
* * `AOA` - Kwanza
* * `ARS` - Peso
* * `AUD` - Dollar
* * `AWG` - Guilder
* * `AZN` - Manat
* * `BAM` - Marka
* * `BBD` - Dollar
* * `BDT` - Taka
* * `BGN` - Lev
* * `BHD` - Dinar
* * `BIF` - Franc
* * `BMD` - Dollar
* * `BND` - Dollar
* * `BOB` - Boliviano
* * `BRL` - Real
* * `BSD` - Dollar
* * `BTN` - Ngultrum
* * `BWP` - Pula
* * `BYN` - Belarusian ruble
* * `BZD` - Dollar
* * `CDF` - Franc
* * `CLP` - Peso
* * `CNY` - Yuan Renminbi
* * `COP` - Peso
* * `CRC` - Colon
* * `CUP` - Peso
* * `CVE` - Escudo
* * `CZK` - Koruna
* * `DJF` - Franc
* * `DKK` - Krone
* * `DOP` - Peso
* * `DZD` - Dinar
* * `EGP` - Pound
* * `ERN` - Nakfa
* * `ETB` - Birr
* * `FKP` - Pound
* * `GEL` - Lari
* * `GHS` - Cedi
* * `GIP` - Pound
* * `GMD` - Dalasi
* * `GNF` - Franc
* * `GTQ` - Quetzal
* * `GYD` - Dollar
* * `HKD` - Dollar
* * `HNL` - Lempira
* * `HRK` - Kuna
* * `HTG` - Gourde
* * `HUF` - Forint
* * `IDR` - Rupiah
* * `ILS` - Shekel
* * `INR` - Rupee
* * `IQD` - Dinar
* * `IRR` - Rial
* * `ISK` - Krona
* * `JMD` - Dollar
* * `JOD` - Dinar
* * `JPY` - Yen
* * `KES` - Shilling
* * `KGS` - Som
* * `KHR` - Riels
* * `KMF` - Franc
* * `KPW` - Won
* * `KRW` - Won
* * `KWD` - Dinar
* * `KYD` - Dollar
* * `KZT` - Tenge
* * `LAK` - Kip
* * `LBP` - Pound
* * `LKR` - Rupee
* * `LRD` - Dollar
* * `LSL` - Loti
* * `LYD` - Dinar
* * `MAD` - Dirham
* * `MDL` - Leu
* * `MGA` - Ariary
* * `MKD` - Denar
* * `MMK` - Kyat
* * `MNT` - Tugrik
* * `MOP` - Pataca
* * `MRU` - Ouguiya
* * `MUR` - Rupee
* * `MVR` - Rufiyaa
* * `MWK` - Kwacha
* * `MXN` - Peso
* * `MYR` - Ringgit
* * `MZN` - Metical
* * `NAD` - Dollar
* * `NGN` - Naira
* * `NIO` - Cordoba
* * `NOK` - Krone
* * `NPR` - Rupee
* * `NZD` - Dollar
* * `OMR` - Rial
* * `PAB` - Balboa
* * `PEN` - Sol
* * `PGK` - Kina
* * `PHP` - Peso
* * `PKR` - Rupee
* * `PLN` - Zloty
* * `PYG` - Guarani
* * `QAR` - Rial
* * `RSD` - Dinar
* * `RUB` - Ruble
* * `RWF` - Franc
* * `SAR` - Rial
* * `SBD` - Dollar
* * `SCR` - Rupee
* * `SDG` - Pound
* * `SEK` - Krona
* * `SGD` - Dollar
* * `SHP` - Pound
* * `SLL` - Leone
* * `SOS` - Shilling
* * `SRD` - Dollar
* * `SSP` - Pound
* * `STN` - Dobra
* * `SYP` - Pound
* * `SZL` - Lilangeni
* * `THB` - Baht
* * `TJS` - Somoni
* * `TMT` - Manat
* * `TND` - Dinar
* * `TOP` - Pa'anga
* * `TRY` - Lira
* * `TTD` - Dollar
* * `TWD` - Dollar
* * `TZS` - Shilling
* * `UAH` - Hryvnia
* * `UGX` - Shilling
* * `UYU` - Peso
* * `UZS` - Som
* * `VES` - Bolivar Soberano
* * `VND` - Dong
* * `VUV` - Vatu
* * `WST` - Tala
* * `XAF` - Franc
* * `XCD` - Dollar
* * `XOF` - Franc
* * `XPF` - Franc
* * `YER` - Rial
* * `ZAR` - Rand
* * `ZMW` - Kwacha
* * `ZWL` - Dollar
* * `XAU` - Aur
*/
export type DefaultCurrencyEnum = 'CHF' | 'FJD' | 'GBP' | 'RON' | 'USD' | 'CAD' | 'EUR' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BZD' | 'CDF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FKP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SRD' | 'SSP' | 'STN' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VES' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWL' | 'XAU';
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type Department = {
readonly id?: number;
name: string;
parent?: number | null;
};
/**
* Create a base serializer to be used trough BAPP API companies endpoint
*/
export type DepartmentRequest = {
name: string;
parent?: number | null;
};
/**
* * `0` - Televizor
* * `1` - POS
* * `2` - Dispozitiv SMS
* * `3` - POS Eveniment
* * `4` - Aplicatie mobila
* * `5` - Dispozitiv PI
* * `6` - Casa de marcat
* * `10` - Dispozitiv Custom
*/
export type DeviceTypeEnum = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 10;
export type DomainBaseSettings = {
/**
* Users that are allowed to manage the domain
*/
editors?: Array<EditorsEnum>;
};
export type DomainBaseSettingsRequest = {
/**
* Users that are allowed to manage the domain
*/
editors?: Array<EditorsEnum>;
};
/**
* All domain settings
*/
export type DomainSettings = {
domain?: (DomainBaseSettings) | null;
};
/**
* * `f6620d89-642f-40b8-ba62-a988677eada6` - sandu.almajanu@abc-logistic.ro
* * `85490b8f-6767-4574-837f-50d25e52848e` - alexandru.busuioc@rastechnic.aero
* * `9d17ad42-2d6b-42fd-b2a5-3c7fe2583c09` - marius.paisa@handling.ro
* * `2dfe091b-e4fc-42ba-ac28-e0c1b4ff84ca` - acbsocial1@yandex.com
* * `3ff28ea8-104d-4c8c-9c67-d455936a83e4` - diana.cotirta@rastechnic.aero
* * `2c3b2422-4198-4eb7-9107-49ef392f32be` - jiwiva8033@minterp.com
* * `96eb011e-768d-4a77-aa4f-7e35656ddef8` - adriandumitru234@gmail.com
* * `2ccfa1dd-1dce-48c3-a2fc-5df4fafe365b` - radu.gadea@handling.ro
* * `d2a92305-2ace-4bc3-9a3d-dcb95b8c69bc` - mihaela.nicula-calina@rastechnic.aero
* * `1afd9f77-ea63-42f9-85c9-6deff050f615` - apostol.anamaria@gmail.com
* * `5adb21a2-0c3f-4a37-8d6f-6c2a40b81f0e` - andrei@abctours.ro
* * `55e24a6a-74b6-4ca0-8847-3b5bc2ef82a7` - enescudaniel95@yahoo.com
* * `22c81dbd-f93a-4a83-bc14-c1ade7d9530b` - cristinachelu@gmail.com
* * `9b6dcc2c-95ad-42d8-9365-1bef65620676` - vizitiupetrut@yahoo.com
* * `af61dbab-b0c2-4021-a340-0d96f5409d22` - s.i.alexandru88@gmail.com
* * `37fb40fb-6df0-492e-b329-22f9adf92732` - florentina@onetiu.com
* * `a429afaf-2d57-4c51-9937-61e8928d7048` - dan.gavrila30@gmail.com
* * `705b2b65-5eae-4cae-8b80-b9e4fd5b8ce3` - gabriel@onetiu.com
* * `68fefc42-c1c9-4804-9b73-3a9701b6c1a7` - carmen@onetiu.com
* * `9faa9071-c330-4f27-b777-f0d33b7b826e` - athanasios.konstas@rastechnic.aero
* * `1dfbc2e3-09ad-456d-8dd0-271a2a829f26` - alexandru.kalman@rastechnic.aero
* * `68f80a1a-5a64-4122-b57b-c665ea88cf98` - radu.buda@rastechnic.aero
* * `22c7fe88-04ad-437f-b900-dbe46a4a7dc5` - rusuandreicristian32@gmail.com
* * `187845bf-155f-4cb3-a8e0-cfd9b6ad302f` - cwsabusetest2021@gmail.com
* * `fbdf19f1-e3e5-4716-9859-cc6ca7291b61` - cwscrxtest001@gmail.com
* * `5681dcaa-6ca0-45f4-b9fc-ade80391f1b2` - picassooasi@gmail.com
* * `5a69324a-fcdd-4cf4-9044-feff0ccd1d9b` - roxana@pidginhost.com
* * `f1ac6c59-5c40-4423-94b1-afd393f9b1b7` - ramona.tudose@advancegrup.ro
* * `743f5cb5-79f6-4094-a45b-f7b53b6771cc` - r.dragosh@gmail.com
* * `3a49621a-5eed-435c-9909-fbb11cd661dc` - pipirigandreea88@gmail.com
* * `8b281182-1185-4c93-b028-8163b6fedf49` - mihaela.danciu@lagermax-aed.ro
* * `da675883-a164-43a1-bf42-4edbfa9e9ba9` - catalin.paun@roecc.ro
* * `ac241d1c-cc74-4e59-9578-8275147def0e` - g.prunaru@omni-solutions.ro
* * `4c7c1c68-7f56-4ffd-a31a-ecd98edbb193` - zeandu@gmail.com
* * `d87076b9-7c58-45cd-9e04-d0b21bb5f649` - ramona.tudose@skyline.ro
* * `a916221a-3c47-4cf9-97dc-2c6a6941b19d` - voicu.alex1986@gmail.com
* * `f96821e7-80eb-4a4d-a9ff-1843dd8560a8` - kiwidecals@gmail.com
* * `3c7426b8-dde6-4422-96ab-55b9700b5368` - bucharest@louispurple.com
* * `478b25cc-30d4-4b1f-884d-4e1344fba0b8` - nicoleta.avram@c-d.info.ro
* * `59f05970-c6fd-4828-89f0-41ac9a455c79` - sopygg@gmail.com
* * `a38e0ede-6c97-4d0a-bd24-4b339ea70191` - istan638@gmail.com
* * `f9b3d56d-a322-4d89-86d3-7c4e1a8d1580` - florentina.curculescu@gmail.com
* * `d31f75bd-2d2d-48ac-a02f-8ecbec06281f` - infocons.o9atitudine@gmail.com
* * `6dce73f5-111f-4b1c-939a-068f824b12d5` - simona@vgs-cons.com
* * `2a7cdbc6-43a8-4669-b819-aaf36edace40` - simona.vizitiu@srcorp.ro
* * `b3730970-1f81-4a70-bacd-264cd1fe9e75` - gestiune@rascargo.ro
* * `1ad9294a-3317-49ec-9dcc-77055ef361f8` - radoiandrei37@gmail.com
* * `59130784-05d0-44ec-b442-fdc264e567b1` - office.rominstal@gmail.com
* * `87fa747f-0b17-4033-bbff-128b688b33e6` - valentinrobert933@gmail.com
* * `afa48a8c-aa10-4826-b93a-5d4872ac6d47` - bizauvasile26@yahoo.com
* * `11bf69bd-7704-4034-825c-0f9a2dc63086` - alexandru.ciochina@rastechnic.aero
* * `a6be3ddc-9411-46cb-b06f-ca5e1b6e1544` - lucaci.claudia87@gmail.com
* * `c9d14d20-b976-4066-97b7-b724055f2b54` - roxanavlasceanu80@gmail.com
* * `6cdeb186-c131-4467-ae14-14074271df2d` - bestprivatetours1@gmail.com
* * `679a9630-b3ab-4ed8-82ec-5fb1f5440b56` - vlad.balaita@rastechnic.aero
* * `a534379b-2ed4-4174-ba79-8b663136c90b` - paul.simion@rastechnic.aero
* * `56c6ec6f-6847-40f5-9fac-2587d339c778` - liviu@euroexpress.ro
* * `0869e7a0-a99a-42a5-b060-a25304001e7a` - filipvps47@gmail.com
* * `2298c5aa-cef7-4fcd-b197-6023363102ad` - matrescugeorge@yahoo.com
* * `726395de-9f68-4219-95ce-57d955f77e52` - viorelpet57@gmail.com
* * `fab88eb7-1969-40b6-bb5b-9304c8b311b5` - test@sopy.one
* * `0e950926-71cf-4ecf-9768-cd709e4cb9ae` - amira@tgv-media.ro
* * `3d0985ce-5434-43fe-9d55-af93147fa0c2` - matheszabi@gmail.com
* * `c6d6a569-3f9e-4aac-8dcc-42bdc2d9a133` - ana.tudorache@handling.ro
* * `c05b0ef1-f56f-4fbb-88b5-27dbb49f31df` - yasmin@onetiu.com
* * `79d542e2-7496-4294-aab8-252e355c0cd0` - daria.tomescu@onetiu.com
* * `2b6c929d-8f36-4044-96a4-bac0f5046447` - ioannaa2711@gmail.com
* * `bd6776e5-ab6c-438b-9377-bed4671f365a` - gabipavel1988@yahoo.com
* * `de8335fa-a053-4468-b32e-bcd496d8e549` - productie@tgv-media.ro
* * `5c51d66e-1a56-4a94-abc8-a5028a543cb2` - alina.ilie@primaconta.ro
* * `5b1b660d-7f03-41af-a649-acf98bacdc03` - office@cloudverse.ro
* * `faeb5276-5e07-456e-90fe-84f82cbea9f5` - potecuiulia@yahoo.com
* * `b4f66337-9b7e-4902-89de-10780bcc5358` - cupareanumarius@yahoo.com
* * `5969635d-d482-4f78-ac4d-3840980eab37` - stefan.brebeanu@lagermax.ro
* * `a149647e-7dd2-40ad-b98a-2e544a610305` - alex@carostovin.ro
* * `87ade71c-a558-4bfe-aa0c-78b5cc9d7ce5` - pfooa@yahoo.com
* * `573497dd-b3f0-49a1-bdfc-8aedbeb8edac` - cbsocial01@gmail.com
* * `5d824978-22bb-4758-a8c3-45e19e6120c4` - alexandra.balanica@infocons.ro
* * `7d097ee7-d259-4275-9ac4-d8b1490bbb0a` - florian.hondru@rastechnic.aero
* * `eeaae5d4-450f-4084-be6d-e9868acaafcc` - violeta.onel@rastechnic.aero
* * `62922816-8920-407b-a92a-11614ac7fb75` - ionel.gherghe@c-d.info.ro
* * `f34cfd69-ff1b-42c0-a875-7913c82f1769` - maria.toma@ascargo.ro
* * `296ec79a-4859-4671-ad50-bc35c9dc8f76` - adrian.dinca@rastechnic.aero
* * `597a9feb-964b-498a-9a6f-9cfd45499e17` - ai@bapp.ro
* * `fbc2702c-341f-497d-aa09-d0b705ade810` - nik_rotaru@yahoo.com
* * `8e564dbe-6b80-4734-87ff-9e525845062c` - stanceamariana@gmail.com
* * `a0382d57-4ee8-4a8b-bd5c-394c1117905f` - adrian.hutupasu@rastechnic.aero
* * `3775a373-4901-443e-b5f6-c61562032831` - alina.manole@ascargo.ro
* * `95a4329f-2a86-4a57-91a4-41e401dcd1a7` - dragos.dobre@rastechnic.aero
* * `6bd95535-16eb-4495-a744-a59e40746d86` - office@best-transport.ro
* * `884fd161-7533-4fb5-9dc1-003e6eeb7ba1` - lorenzo.lettieri@lernende.bbw.ch
* * `f1104a28-6aa8-4e93-9b16-6de64954c267` - cornel.negoi@best-transport.ro
* * `d0788ab5-71d8-4417-aa50-5193930503ea` - gicap62@yahoo.com
* * `2a3c6c3c-7aab-4a85-9d7e-333e64e2edb7` - documente@rascargo.ro
* * `a90b8a99-165f-4e48-9460-79dc6f751b28` - florentinamocanu19@gmail.com
* * `7dbc0080-fd5f-4414-a95b-e8a648799f4d` - andrei.miron@rastechnic.aero
* * `3c5ec40b-47fe-4a00-ab9b-9c550b51d9d8` - tamas.fulep@rastechnic.aero
* * `eefdb617-357f-4a4a-bd72-478fa8c4b30c` - claudia.lucaci@lagermax-aed.ro
* * `f0c05246-444a-4e52-9e59-20c1296533fd` - dngigitel@gmail.com
* * `9a273e3d-4542-468a-be0f-3ea5ded2d262` - florin.necula@rastechnic.aero
* * `97003086-489d-42fe-ac0a-9fa3bdaa35a1` - razvanistudor@icloud.com
* * `b0948b9d-fcf3-4618-8d6e-5a9672310531` - catalin.piturca@rastechnic.aero
* * `43b69f82-a8bc-4a77-9e76-e30e7e590ead` - myshucatalyn2@gmail.com
* * `1869635d-53ea-419d-92ec-3d7e0d4831a7` - mladen.duisin@rastechnic.aero
* * `b2e1ff6b-b20c-4253-88c1-9ab4be0a7d83` - catalin19c@gmail.com
* * `4ad2981c-3481-4a52-a070-5a37f12c9f15` - mariaghorfi@gmail.com
* * `2993cd27-9fc5-4cae-9aa2-8fbbc23d0aa7` - ivan.ivanov@rastechnic.aero
* * `6e5fbb25-9134-4751-bc43-79129f2812e7` - costico68@yahoo.com
* * `b877d15b-ad89-4ce9-8708-f418790dfccf` - juliaflores.transport@yahoo.com
* * `c44171d6-58c0-4ee7-9b44-e825304ada15` - ioana.olteanu@handling.ro
* * `96844d20-8a5b-40a4-aac8-d04b17a06065` - vallyboos@yahoo.com
* * `65aec92f-c161-4588-936b-7b6e26bd7734` - office@asisafety.ro
* * `f1af41f1-3b67-49a0-b349-57a14dbad25e` - mcbsocial4@yandex.com
* * `dfb27a52-ba1a-4ad7-a1c0-5f3ad642eabb` - cwsctstest002@gmail.com
* * `f1d0121f-251d-4864-9f71-3b333937a73d` - catalin.camilar@rastechnic.aero
* * `30821063-6c5c-4c60-ba9a-9b6e7ed0b188` - timotei.stefanescu@c-d.info.ro
* * `1bd4d43f-ca25-40e7-910a-c27549051405` - alexandru.nita@pidginhost.com
* * `e3156648-8043-4853-b6bf-20703be193e8` - test1@sopy.one
* * `7265fbe6-2f34-432c-8028-23d2dd21fd87` - claudiu@lsh.ro
* * `d0814be7-1cd0-482e-be11-b957b914b621` - nolomitnolimit15@yahoo.com
* * `ee5797d7-4c71-45e6-add7-eea9b8ab044a` - lazar.adrian@gmail.com
* * `eb9b66c4-6a2e-44e2-8466-017a713f08ca` - jakoobpetersen@gmail.com
* * `c8e7b640-e8a2-4e5f-b889-9ebcdc4c41e2` - test-user@bapp.ro
* * `415e3b66-6ea0-4426-a3e2-93736c219723` - tedam64114@asfalio.com
* * `a6793e3c-f718-427f-9b7f-4b624b858180` - adrian.miu89@gmail.com
* * `974f9465-bb1e-413d-b5dc-c3be55f81c3b` - irina.dumitrache@infocons.ro
* * `10f8cbe4-18ae-4809-82b5-8594586be170` - dugheanasebastian@yahoo.com
* * `f4662c41-8bf9-4ed5-a256-b9e42c0c551d` - tahiwo1316@kindbest.com
* * `ad949d8c-ae8a-4b30-93da-d72624a5ee48` - irinel.hancu@rastechnic.aero
* * `b80b4226-c35a-47d3-a410-6b65541fa8b6` - irinel.sburlan@gmail.com
* * `897203e1-3fdc-49bb-92c8-8fdb3f61cf40` - dugheanasebastianadelin@gmail.com
* * `539bc0c3-01ae-4486-8255-a6d7f7f57dae` - mihnea.moldoveanu10@gmail.com
* * `0edb1651-fdf9-4465-80b7-195c66e7417d` - genesiscode1234@gmail.com
* * `2208bacd-cc4c-46c0-90df-c0f3b025ce7b` - sebastianadelin@yahoo.com
* * `dbef33ae-44ff-46e6-8790-4fa8dd083ff5` - sebi.dugheana@gmail.com
* * `0467ecdb-2375-4a34-baa1-e6b0e09212fa` - alexandru.ivan@rastechnic.aero
* * `8fad12ca-7bb0-4dd0-b41b-c46ccc5c0a9d` - georgemmatei27@gmail.com
* * `50a08ade-7003-48fc-9e3f-ba57bbc51e55` - bapp@flienteen.com
* * `083e7492-6c0c-4e4f-a0c2-f48bd2f106f0` - comenzi@c-d.info.ro
* * `82497b7c-f768-4c8a-849e-d898c4e7e8a8` - ioan.poenar@rastechnic.aero
* * `08d83032-6986-4576-9b9a-5d1a6a91a483` - dragos.scrieciu@rastechnic.aero
* * `f598d8d7-c75c-46a8-8775-7f1010bd9067` - marius.b@c-d.info.ro
* * `16af0781-ac42-420a-97fb-a3db174c072b` - valentin.serban@rastechnic.aero
* * `808b4f49-4d58-4759-9d98-781921975079` - constantin.gliga@rastechnic.aero
* * `f72c8bbb-a090-42f7-8b5f-477a027e33fc` - peethajdu@gmail.com
* * `0e34ff57-5a73-4916-a078-bb468fd43b03` - adrian.bonci@rastechnic.aero
* * `a427467f-1d28-49c2-848f-842c564e4344` - perpeleageorgep@gmail.com
* * `fd990703-5629-4c6f-8bd5-a2273feb89f3` - aurelia.monica@gmail.com
* * `822e50ab-0ef8-4725-be43-9f383eaf8166` - todor.kunchev@rastechnic.aero
* * `d135e591-8d18-4ded-913c-dce1ecaea48c` - ioan.oprea@c-d.info.ro
* * `033897ea-ca8b-4d1f-936f-f28ac11c24e3` - dumitrusimonaflorentina@gmail.com
* * `5aac9e57-a13c-461a-9988-3a4240192369` - constantin.utoi@rastechnic.aero
* * `576967f9-85a9-4fdf-9654-410039bb0bab` - vali.vlad1986@gmail.com
* * `be348bb6-45ea-4844-8478-ec8d2a80b106` - florin.tocitu@c-d.info.ro
* * `400e3644-9110-41ee-9194-9e04372d6c93` - laurentiu.spulber@rastechnic.aero
* * `0b5ad396-86ec-4ca4-ac02-f1600048d5fb` - georgios.antoniou@rastechnic.aero
* * `6464a02e-5367-4024-a2ec-166b05559e9b` - apopah@gmail.com
* * `f3a69f71-b16f-45ae-86a2-5f4f035b5fde` - adrian.lazar@cbsoft.ro
* * `073d82c3-44f9-44ad-a204-ebcbcd0375f5` - razvan.stanoiu@rastechnic.aero
* * `f77e9b42-e625-4283-af4c-3544bf69f651` - ionutcristi_popa@yahoo.com
* * `56fd01d7-d80e-42a0-ae18-e34152f48bbf` - madalina.marin@c-d.info.ro
* * `19bc18d3-2a3b-4b18-b474-2814356278ae` - jwei@c-d.info.ro
* * `c6876257-90f0-453e-8b6b-ee8872731824` - andrei.nicula-calina@rastechnic.aero
* * `97999c37-f002-4a81-afa1-d8d74d7a2348` - alexandru.manea@rastechnic.aero
* * `e5ef54f8-4536-4ca8-bef0-33fb803efebd` - facturare@c-d.info.ro
* * `6f891e2d-6a91-4ee8-b9da-d10b0e338942` - cretoiularisa@gmail.com
* * `7a5fcef1-5164-42de-85e4-efc68aac589f` - teodor.lupu@rastechnic.aero
* * `086b35da-4738-4683-bac9-03b536ed417b` - valentiin2794@gmail.com
* * `a0ad37e4-5c6a-400a-8e28-bb16e833ec83` - bapp.test1@yahoo.com
* * `03c13bea-20bc-4247-87c5-3bb9795b0a28` - j69cfwdsmy@privaterelay.appleid.com
* * `137c4001-2212-4fc3-933a-dcd9af836824` - uvprinter@c-d.info.ro
* * `3527e7dd-37b3-4cac-9f79-e1b67efa23a3` - violeta.popa@c-d.info.ro
* * `2e597341-743f-4c5e-abe9-b9b03c7d31eb` - iulia_flores@yahoo.com
* * `a5d7dfe5-0264-4b97-af94-3d0460850324` - constantin.sandu@rastechnic.aero
* * `b7a6fce0-745d-4153-8eb5-3d18136ce334` - andreea@pidginhost.com
* * `528ceba0-12d8-4fad-a5b5-709d3736b4dd` - horatiu.popa@pidginhost.com
* * `f17adb6d-9440-438b-acfd-49f0a4135fc3` - madalinaghita51@gmail.com
* * `a96cc41a-a9a2-4ff8-8aa1-614a711e015d` - rares.mardache@gmail.com
* * `70c8df58-846e-47f1-a1d5-6db9a46828b1` - popazuanamaria1@gmail.com
* * `21f19915-362e-4d39-97a7-2835cee4da77` - daniel.beimel@gmail.com
* * `1320d23a-4b5e-4719-a759-1118a667e511` - tone.george@gmail.com
* * `a0a83c7f-a19a-4b90-8e61-05b83d148545` - irina_mantescu@yahoo.com
* * `a22b0d11-a4b0-4c76-8c5a-ecf56dad64fa` - simonacazacu2014@gmail.com
* * `56ff2695-3c08-45f9-918d-6ca88d70f242` - grigor.todorov@rastechnic.aero
* * `6a5db2f2-5fdf-4178-b366-cb19a9d4298e` - alexandru.muscalu@gmail.com
* * `7bb03b9d-aa32-4512-a167-2aeca8df048f` - elvis.parvoi@rastechnic.aero
* * `74733258-1ba1-42d4-ac12-68aa6f776084` - ionut.sburlan@pidginhost.com
* * `e98b5fca-d5a2-42d3-938f-2001873b2664` - quality@rastechnic.aero
* * `03f5927c-f4ad-4ac9-b8c5-ad660b04df4f` - dan.tudose@advancegrup.ro
* * `565ae6a6-ad10-46df-9bf3-6f7b0d182e94` - izabela.oprea@advancegrup.ro
* * `c8947e6c-08e1-40dd-b74e-bf8d90e2fc77` - birouadvance@gmail.com
* * `2881a492-cad5-4bca-a653-56e874893528` - ligiadinca12@gmail.com
* * `abd1723f-5b85-4e6d-b8f2-874cdcc4fbf2` - ivosik@abv.bg
* * `c08149e0-d98d-4bd2-9a98-373d211d849e` - peter.kovacs@rastechnic.aero
* * `fba2d7a8-eb7b-4e05-8716-d0a53ffe92cc` - ana.paun@infocons.ro
* * `9a23a56b-92c2-4c5b-8cbf-8269aed114b5` - test2@sopy.one
* * `4676aca4-cfff-4a4c-9084-0431566e888e` - antonio.petkov@rastechnic.aero
* * `43e4c72e-fe4f-4e34-8eca-75e30d9adb38` - manuela.vasile@c-d.info.ro
* * `c2e4200d-f343-4984-8f14-b833a7543ccd` - stefan.barbu@rastechnic.aero
* * `e815a444-e71b-45f6-90f3-34fd957ef69c` - madalinvasile91@gmail.com
* * `5f101008-b49a-48e9-b6da-7fba29ea4b86` - popescu.razvanmihai94@gmail.com
* * `be770c8b-d72f-44ab-909f-4018554d2746` - mnmoldoveanu@gmail.com
* * `49f1281a-dbed-49c9-a30a-912c4f2e948d` - mihaiandrei88@gmail.com
* * `c30dba1c-acf9-437f-a4d8-4058723c06b0` - simona.cazacu@marmorosch.com
* * `61e8abd7-733a-43a1-9fba-49e8a12d3ffe` - print_cut@advancegrup.ro
* * `0355c568-7da0-4bfe-b9e7-b446cccf47ca` - acbsocial2@yandex.com
* * `bb248389-e96b-4545-b725-9dce81df3117` - acbsocial3@yandex.com
* * `16fc6bfc-8203-4537-9ca3-d013343b5411` - ivaylo.krastev@rastechnic.aero
* * `3bc62605-3d7d-4b23-b488-bb5c5eb2762f` - cotebune.ro@gmail.com
* * `d326d34e-4a99-400d-84e1-e270fd538abe` - tomaadrianemil@yahoo.com
* * `b183edc1-3a42-41ac-9eb1-161d7038f802` - moisa@wildlifecontrol.ro
* * `1246a23f-0bdc-41a0-91a6-9f