@senior-gestao-empresarial/angular-components 6.1.0 → 6.2.0-1d68f732-a0dc-4d64-8b5e-46b5692346fa
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/senior-gestao-empresarial-angular-components.umd.js +69 -0
- package/bundles/senior-gestao-empresarial-angular-components.umd.js.map +1 -1
- package/bundles/senior-gestao-empresarial-angular-components.umd.min.js +2 -2
- package/bundles/senior-gestao-empresarial-angular-components.umd.min.js.map +1 -1
- package/components/utils/http-status-code.d.ts +67 -0
- package/components/utils/index.d.ts +1 -0
- package/esm2015/components/utils/http-status-code.js +68 -0
- package/esm2015/components/utils/index.js +2 -1
- package/esm5/components/utils/http-status-code.js +68 -0
- package/esm5/components/utils/index.js +2 -1
- package/fesm2015/senior-gestao-empresarial-angular-components.js +69 -1
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +69 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/senior-gestao-empresarial-angular-components.metadata.json +1 -1
|
@@ -6566,6 +6566,74 @@ var UtilsModule = /** @class */ (function () {
|
|
|
6566
6566
|
return UtilsModule;
|
|
6567
6567
|
}());
|
|
6568
6568
|
|
|
6569
|
+
var HTTP_STATUS_CODE = {
|
|
6570
|
+
CONTINUE: 100,
|
|
6571
|
+
SWITCHING_PROTOCOLS: 101,
|
|
6572
|
+
PROCESSING: 102,
|
|
6573
|
+
EARLY_HINTS: 103,
|
|
6574
|
+
OK: 200,
|
|
6575
|
+
CREATED: 201,
|
|
6576
|
+
ACCEPTED: 202,
|
|
6577
|
+
NON_AUTHORITATIVE_INFORMATION: 203,
|
|
6578
|
+
NO_CONTENT: 204,
|
|
6579
|
+
RESET_CONTENT: 205,
|
|
6580
|
+
PARTIAL_CONTENT: 206,
|
|
6581
|
+
MULTI_STATUS: 207,
|
|
6582
|
+
ALREADY_REPORTED: 208,
|
|
6583
|
+
IM_USED: 226,
|
|
6584
|
+
MULTIPLE_CHOICES: 300,
|
|
6585
|
+
MOVED_PERMANENTLY: 301,
|
|
6586
|
+
FOUND: 302,
|
|
6587
|
+
SEE_OTHER: 303,
|
|
6588
|
+
NOT_MODIFIED: 304,
|
|
6589
|
+
USE_PROXY: 305,
|
|
6590
|
+
UNUSED: 306,
|
|
6591
|
+
TEMPORARY_REDIRECT: 307,
|
|
6592
|
+
PERMANENT_REDIRECT: 308,
|
|
6593
|
+
BAD_REQUEST: 400,
|
|
6594
|
+
UNAUTHORIZED: 401,
|
|
6595
|
+
PAYMENT_REQUIRED: 402,
|
|
6596
|
+
FORBIDDEN: 403,
|
|
6597
|
+
NOT_FOUND: 404,
|
|
6598
|
+
METHOD_NOT_ALLOWED: 405,
|
|
6599
|
+
NOT_ACCEPTABLE: 406,
|
|
6600
|
+
PROXY_AUTHENTICATION_REQUIRED: 407,
|
|
6601
|
+
REQUEST_TIMEOUT: 408,
|
|
6602
|
+
CONFLICT: 409,
|
|
6603
|
+
GONE: 410,
|
|
6604
|
+
LENGTH_REQUIRED: 411,
|
|
6605
|
+
PRECONDITION_FAILED: 412,
|
|
6606
|
+
PAYLOAD_TOO_LARGE: 413,
|
|
6607
|
+
URI_TOO_LONG: 414,
|
|
6608
|
+
UNSUPPORTED_MEDIA_TYPE: 415,
|
|
6609
|
+
RANGE_NOT_SATISFIABLE: 416,
|
|
6610
|
+
EXPECTATION_FAILED: 417,
|
|
6611
|
+
IM_A_TEAPOT: 418,
|
|
6612
|
+
MISDIRECTED_REQUEST: 421,
|
|
6613
|
+
UNPROCESSABLE_ENTITY: 422,
|
|
6614
|
+
LOCKED: 423,
|
|
6615
|
+
FAILED_DEPENDENCY: 424,
|
|
6616
|
+
TOO_EARLY: 425,
|
|
6617
|
+
UPGRADE_REQUIRED: 426,
|
|
6618
|
+
PRECONDITION_REQUIRED: 428,
|
|
6619
|
+
TOO_MANY_REQUESTS: 429,
|
|
6620
|
+
REQUEST_HEADER_FIELDS_TOO_LARGE: 431,
|
|
6621
|
+
UNAVAILABLE_FOR_LEGAL_REASONS: 451,
|
|
6622
|
+
INTERNAL_SERVER_ERROR: 500,
|
|
6623
|
+
NOT_IMPLEMENTED: 501,
|
|
6624
|
+
BAD_GATEWAY: 502,
|
|
6625
|
+
SERVICE_UNAVAILABLE: 503,
|
|
6626
|
+
GATEWAY_TIMEOUT: 504,
|
|
6627
|
+
HTTP_VERSION_NOT_SUPPORTED: 505,
|
|
6628
|
+
VARIANT_ALSO_NEGOTIATES: 506,
|
|
6629
|
+
INSUFFICIENT_STORAGE: 507,
|
|
6630
|
+
LOOP_DETECTED: 508,
|
|
6631
|
+
NOT_EXTENDED: 510,
|
|
6632
|
+
NETWORK_AUTHENTICATION_REQUIRED: 511,
|
|
6633
|
+
NETWORK_CONNECT_TIMEOUT_ERROR: 599,
|
|
6634
|
+
GENERIC_ERROR: 600
|
|
6635
|
+
};
|
|
6636
|
+
|
|
6569
6637
|
// https://widget.tracksale.co/
|
|
6570
6638
|
var NpsService = /** @class */ (function () {
|
|
6571
6639
|
function NpsService() {
|
|
@@ -7062,5 +7130,5 @@ var ModulesEnum;
|
|
|
7062
7130
|
* Generated bundle index. Do not edit.
|
|
7063
7131
|
*/
|
|
7064
7132
|
|
|
7065
|
-
export { BankLookup, BeneficioFiscalLookup, BreadcrumbComponent, BreadcrumbModule, Breakpoints, CountryLookup, CplTriNotaSaidaE001EndLookup, CplTriNotaSaidaE001PesLookup, CplTriNotaSaidaE001TnsLookup, CplTriNotaSaidaE007UfsLookup, CplTriNotaSaidaE008RaiLookup, CplTriNotaSaidaE015MedLookup, CplTriNotaSaidaE020SnfLookup, CplTriNotaSaidaE024MsgLookup, CplTriNotaSaidaE028CpgLookup, CplTriNotaSaidaE032EdcLookup, CplTriNotaSaidaE051DisLookup, CplTriNotaSaidaE066FpgLookup, CplTriNotaSaidaE070EmpLookup, CplTriNotaSaidaE070FilLookup, CplTriNotaSaidaE075DerLookup, CplTriNotaSaidaE080SerLookup, CplTriNotaSaidaNaturezaReceitaPisCofinsLookup, CplTriNotaSaidaNcmLookup, CplTriNotaSaidaNfEntradaLookup, CplTriNotaSaidaNfSaidaLookup, CurrencyLookup, DocumentoLookup, E001EndLookup, E001PesLookup, E001TnsLookup, E001TnsSupEstLookup, E002TptLookup, E007UfsLookup, E008CepLookup, E008RaiLookup, E012FamLookup, E015MedLookup, E020SnfLookup, E021MotLookup, E023CrpLookup, E024MsgLookup, E027EqiLookup, E027StrLookup, E028CpgLookup, E030AgeLookup, E030BanLookup, E031MoeLookup, E032EdcLookup, E035OcrLookup, E036InsLookup, E039PorLookup, E044CcuFinRatDepLookup, E044CcuLookup, E045PlaLookup, E046HpdLookup, E047NtgLookup, E048FctLookup, E048SfcLookup, E051DisLookup, E066FpgLookup, E067FinLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E081TabLookup, E082TprLookup, E085PesLookup, E090PesLookup, E091PlfFinRatLookup, E095PesLookup, E099UsuComGerLookup, E099UsuSupCprLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E600CcoLookup, E640LotLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NcmLookup, NpsService, ParametersLookup, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, WebsocketService, naturezaReceitaPisCofins, ErpLookupsService as ɵa, StorageService as ɵb, VerifyModulePermissionService as ɵc };
|
|
7133
|
+
export { BankLookup, BeneficioFiscalLookup, BreadcrumbComponent, BreadcrumbModule, Breakpoints, CountryLookup, CplTriNotaSaidaE001EndLookup, CplTriNotaSaidaE001PesLookup, CplTriNotaSaidaE001TnsLookup, CplTriNotaSaidaE007UfsLookup, CplTriNotaSaidaE008RaiLookup, CplTriNotaSaidaE015MedLookup, CplTriNotaSaidaE020SnfLookup, CplTriNotaSaidaE024MsgLookup, CplTriNotaSaidaE028CpgLookup, CplTriNotaSaidaE032EdcLookup, CplTriNotaSaidaE051DisLookup, CplTriNotaSaidaE066FpgLookup, CplTriNotaSaidaE070EmpLookup, CplTriNotaSaidaE070FilLookup, CplTriNotaSaidaE075DerLookup, CplTriNotaSaidaE080SerLookup, CplTriNotaSaidaNaturezaReceitaPisCofinsLookup, CplTriNotaSaidaNcmLookup, CplTriNotaSaidaNfEntradaLookup, CplTriNotaSaidaNfSaidaLookup, CurrencyLookup, DocumentoLookup, E001EndLookup, E001PesLookup, E001TnsLookup, E001TnsSupEstLookup, E002TptLookup, E007UfsLookup, E008CepLookup, E008RaiLookup, E012FamLookup, E015MedLookup, E020SnfLookup, E021MotLookup, E023CrpLookup, E024MsgLookup, E027EqiLookup, E027StrLookup, E028CpgLookup, E030AgeLookup, E030BanLookup, E031MoeLookup, E032EdcLookup, E035OcrLookup, E036InsLookup, E039PorLookup, E044CcuFinRatDepLookup, E044CcuLookup, E045PlaLookup, E046HpdLookup, E047NtgLookup, E048FctLookup, E048SfcLookup, E051DisLookup, E066FpgLookup, E067FinLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E081TabLookup, E082TprLookup, E085PesLookup, E090PesLookup, E091PlfFinRatLookup, E095PesLookup, E099UsuComGerLookup, E099UsuSupCprLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E600CcoLookup, E640LotLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, HTTP_STATUS_CODE, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NcmLookup, NpsService, ParametersLookup, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, WebsocketService, naturezaReceitaPisCofins, ErpLookupsService as ɵa, StorageService as ɵb, VerifyModulePermissionService as ɵc };
|
|
7066
7134
|
//# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map
|