UNPKG

viesapi-client

Version:

VIES API Client for JavaScript

49 lines (45 loc) 1.48 kB
/** * Copyright 2022-2025 NETCAT (www.netcat.pl) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * @author NETCAT <firma@netcat.pl> * @copyright 2022-2025 NETCAT (www.netcat.pl) * @license http://www.apache.org/licenses/LICENSE-2.0 */ 'use strict'; /** * Legal form types */ const LegalForm = { UNKNOWN: 0, SOLE_PROPRIETORSHIP: 1, LIMITED_LIABILITY_COMPANY: 2, GENERAL_PARTNERSHIP: 3, JOINT_STOCK_COMPANY: 4, LIMITED_PARTNERSHIP: 5, PRIVATE_LIMITED_LIABILITY_COMPANY: 6, SINGLE_MEMBER_JOINT_STOCK_COMPANY: 7, SIMPLE_LIMITED_LIABILITY_COMPANY: 8, SINGLE_MEMBER_LIMITED_LIABILITY_COMPANY: 9, SIMPLIFIED_JOINT_STOCK_COMPANY: 10, SMALL_COMPANY: 11, LIMITED_JOINT_STOCK_PARTNERSHIP: 12, PROFESSIONAL_PARTNERSHIP: 13, LIMITED_LIABILITY_PARTNERSHIP: 14, PRIVATE_PARTNERSHIP: 15, LIMITED_LIABILITY_COMPANY_LIMITED_PARTNERSHIP: 16, LIMITED_LIABILITY_COMPANY_LIMITED_JOINT_STOCK_PARTNERSHIP: 17, PUBLIC_INSTITUTION: 18 }; module.exports = LegalForm;