node-sped-nfe 1.0.5 → 1.0.7
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/LICENSE.md +188 -0
- package/dist/utils/eventos.d.ts +2 -1
- package/dist/utils/eventos.js +794 -105
- package/dist/utils/extras.d.ts +2 -0
- package/dist/utils/extras.js +58 -0
- package/dist/utils/make.d.ts +1 -1
- package/dist/utils/make.js +36 -12
- package/dist/utils/tools.d.ts +4 -2
- package/dist/utils/tools.js +77 -10
- package/docs/xml.md +81 -81
- package/exemplos/consulta.js +19 -0
- package/exemplos/nfe.js +4 -3
- package/exemplos/status.js +2 -1
- package/package.json +5 -2
- package/src/utils/eventos.ts +800 -106
- package/src/utils/extras.ts +59 -0
- package/src/utils/make.ts +63 -19
- package/src/utils/tools.ts +88 -11
- package/src/utils/schemas/consReciNFe_v4.00.xsd +0 -9
- package/src/utils/schemas/consSitNFe_v4.00.xsd +0 -9
- package/src/utils/schemas/consStatServ_v4.00.xsd +0 -9
- package/src/utils/schemas/enviNFe_v4.00.xsd +0 -9
- package/src/utils/schemas/inutNFe_v4.00.xsd +0 -9
- package/src/utils/schemas/leiauteConsSitNFe_v4.00.xsd +0 -502
- package/src/utils/schemas/leiauteConsStatServ_v4.00.xsd +0 -98
- package/src/utils/schemas/leiauteInutNFe_v4.00.xsd +0 -193
- package/src/utils/schemas/leiauteNFe_v4.00.xsd +0 -7412
- package/src/utils/schemas/nfe_v4.00.xsd +0 -9
- package/src/utils/schemas/procInutNFe_v4.00.xsd +0 -9
- package/src/utils/schemas/procNFe_v4.00.xsd +0 -9
- package/src/utils/schemas/retConsReciNFe_v4.00.xsd +0 -9
- package/src/utils/schemas/retConsSitNFe_v4.00.xsd +0 -9
- package/src/utils/schemas/retConsStatServ_v4.00.xsd +0 -9
- package/src/utils/schemas/retEnviNFe_v4.00.xsd +0 -9
- package/src/utils/schemas/retInutNFe_v4.00.xsd +0 -9
- package/src/utils/schemas/tiposBasico_v4.00.xsd +0 -598
- package/src/utils/schemas/xmldsig-core-schema_v1.01.xsd +0 -98
@@ -1,193 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<!-- PL_006f versao com correcoes no xServ para tornar a literal INUTILIZAR obrigatoria 21/05/2010 -->
|
3
|
-
<!-- PL_006c versao com correcoes 24/12/2009 -->
|
4
|
-
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.portalfiscal.inf.br/nfe" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" targetNamespace="http://www.portalfiscal.inf.br/nfe" elementFormDefault="qualified" attributeFormDefault="unqualified">
|
5
|
-
<xs:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema_v1.01.xsd"/>
|
6
|
-
<xs:include schemaLocation="tiposBasico_v4.00.xsd"/>
|
7
|
-
<xs:complexType name="TInutNFe">
|
8
|
-
<xs:annotation>
|
9
|
-
<xs:documentation>Tipo Pedido de Inutilização de Numeração da Nota Fiscal Eletrônica</xs:documentation>
|
10
|
-
</xs:annotation>
|
11
|
-
<xs:sequence>
|
12
|
-
<xs:element name="infInut">
|
13
|
-
<xs:annotation>
|
14
|
-
<xs:documentation>Dados do Pedido de Inutilização de Numeração da Nota Fiscal Eletrônica</xs:documentation>
|
15
|
-
</xs:annotation>
|
16
|
-
<xs:complexType>
|
17
|
-
<xs:sequence>
|
18
|
-
<xs:element name="tpAmb" type="TAmb">
|
19
|
-
<xs:annotation>
|
20
|
-
<xs:documentation>Identificação do Ambiente:
|
21
|
-
1 - Produção
|
22
|
-
2 - Homologação</xs:documentation>
|
23
|
-
</xs:annotation>
|
24
|
-
</xs:element>
|
25
|
-
<xs:element name="xServ">
|
26
|
-
<xs:annotation>
|
27
|
-
<xs:documentation>Serviço Solicitado</xs:documentation>
|
28
|
-
</xs:annotation>
|
29
|
-
<xs:simpleType>
|
30
|
-
<xs:restriction base="TServ">
|
31
|
-
<xs:enumeration value="INUTILIZAR"/>
|
32
|
-
</xs:restriction>
|
33
|
-
</xs:simpleType>
|
34
|
-
</xs:element>
|
35
|
-
<xs:element name="cUF" type="TCodUfIBGE">
|
36
|
-
<xs:annotation>
|
37
|
-
<xs:documentation>Código da UF do emitente</xs:documentation>
|
38
|
-
</xs:annotation>
|
39
|
-
</xs:element>
|
40
|
-
<xs:element name="ano" type="Tano">
|
41
|
-
<xs:annotation>
|
42
|
-
<xs:documentation>Ano de inutilização da numeração</xs:documentation>
|
43
|
-
</xs:annotation>
|
44
|
-
</xs:element>
|
45
|
-
<xs:element name="CNPJ" type="TCnpj">
|
46
|
-
<xs:annotation>
|
47
|
-
<xs:documentation>CNPJ do emitente</xs:documentation>
|
48
|
-
</xs:annotation>
|
49
|
-
</xs:element>
|
50
|
-
<xs:element name="mod" type="TMod">
|
51
|
-
<xs:annotation>
|
52
|
-
<xs:documentation>Modelo da NF-e (55, 65 etc.)</xs:documentation>
|
53
|
-
</xs:annotation>
|
54
|
-
</xs:element>
|
55
|
-
<xs:element name="serie" type="TSerie">
|
56
|
-
<xs:annotation>
|
57
|
-
<xs:documentation>Série da NF-e</xs:documentation>
|
58
|
-
</xs:annotation>
|
59
|
-
</xs:element>
|
60
|
-
<xs:element name="nNFIni" type="TNF">
|
61
|
-
<xs:annotation>
|
62
|
-
<xs:documentation>Número da NF-e inicial</xs:documentation>
|
63
|
-
</xs:annotation>
|
64
|
-
</xs:element>
|
65
|
-
<xs:element name="nNFFin" type="TNF">
|
66
|
-
<xs:annotation>
|
67
|
-
<xs:documentation>Número da NF-e final</xs:documentation>
|
68
|
-
</xs:annotation>
|
69
|
-
</xs:element>
|
70
|
-
<xs:element name="xJust" type="TJust">
|
71
|
-
<xs:annotation>
|
72
|
-
<xs:documentation>Justificativa do pedido de inutilização</xs:documentation>
|
73
|
-
</xs:annotation>
|
74
|
-
</xs:element>
|
75
|
-
</xs:sequence>
|
76
|
-
<xs:attribute name="Id" use="required">
|
77
|
-
<xs:simpleType>
|
78
|
-
<xs:restriction base="xs:ID">
|
79
|
-
<xs:pattern value="ID[0-9]{41}"/>
|
80
|
-
</xs:restriction>
|
81
|
-
</xs:simpleType>
|
82
|
-
</xs:attribute>
|
83
|
-
</xs:complexType>
|
84
|
-
</xs:element>
|
85
|
-
<xs:element ref="ds:Signature"/>
|
86
|
-
</xs:sequence>
|
87
|
-
<xs:attribute name="versao" type="TVerInutNFe" use="required"/>
|
88
|
-
</xs:complexType>
|
89
|
-
<xs:complexType name="TRetInutNFe">
|
90
|
-
<xs:annotation>
|
91
|
-
<xs:documentation>Tipo retorno do Pedido de Inutilização de Numeração da Nota Fiscal Eletrônica</xs:documentation>
|
92
|
-
</xs:annotation>
|
93
|
-
<xs:sequence>
|
94
|
-
<xs:element name="infInut">
|
95
|
-
<xs:annotation>
|
96
|
-
<xs:documentation>Dados do Retorno do Pedido de Inutilização de Numeração da Nota Fiscal Eletrônica</xs:documentation>
|
97
|
-
</xs:annotation>
|
98
|
-
<xs:complexType>
|
99
|
-
<xs:sequence>
|
100
|
-
<xs:element name="tpAmb" type="TAmb">
|
101
|
-
<xs:annotation>
|
102
|
-
<xs:documentation>Identificação do Ambiente:
|
103
|
-
1 - Produção
|
104
|
-
2 - Homologação</xs:documentation>
|
105
|
-
</xs:annotation>
|
106
|
-
</xs:element>
|
107
|
-
<xs:element name="verAplic" type="TVerAplic">
|
108
|
-
<xs:annotation>
|
109
|
-
<xs:documentation>Versão do Aplicativo que processou a NF-e</xs:documentation>
|
110
|
-
</xs:annotation>
|
111
|
-
</xs:element>
|
112
|
-
<xs:element name="cStat" type="TStat">
|
113
|
-
<xs:annotation>
|
114
|
-
<xs:documentation>Código do status da mensagem enviada.</xs:documentation>
|
115
|
-
</xs:annotation>
|
116
|
-
</xs:element>
|
117
|
-
<xs:element name="xMotivo" type="TMotivo">
|
118
|
-
<xs:annotation>
|
119
|
-
<xs:documentation>Descrição literal do status do serviço solicitado.</xs:documentation>
|
120
|
-
</xs:annotation>
|
121
|
-
</xs:element>
|
122
|
-
<xs:element name="cUF" type="TCodUfIBGE">
|
123
|
-
<xs:annotation>
|
124
|
-
<xs:documentation>Código da UF que atendeu a solicitação</xs:documentation>
|
125
|
-
</xs:annotation>
|
126
|
-
</xs:element>
|
127
|
-
<xs:element name="ano" type="Tano" minOccurs="0">
|
128
|
-
<xs:annotation>
|
129
|
-
<xs:documentation>Ano de inutilização da numeração</xs:documentation>
|
130
|
-
</xs:annotation>
|
131
|
-
</xs:element>
|
132
|
-
<xs:element name="CNPJ" type="TCnpj" minOccurs="0">
|
133
|
-
<xs:annotation>
|
134
|
-
<xs:documentation>CNPJ do emitente</xs:documentation>
|
135
|
-
</xs:annotation>
|
136
|
-
</xs:element>
|
137
|
-
<xs:element name="mod" type="TMod" minOccurs="0">
|
138
|
-
<xs:annotation>
|
139
|
-
<xs:documentation>Modelo da NF-e (55, etc.)</xs:documentation>
|
140
|
-
</xs:annotation>
|
141
|
-
</xs:element>
|
142
|
-
<xs:element name="serie" type="TSerie" minOccurs="0">
|
143
|
-
<xs:annotation>
|
144
|
-
<xs:documentation>Série da NF-e</xs:documentation>
|
145
|
-
</xs:annotation>
|
146
|
-
</xs:element>
|
147
|
-
<xs:element name="nNFIni" type="TNF" minOccurs="0">
|
148
|
-
<xs:annotation>
|
149
|
-
<xs:documentation>Número da NF-e inicial</xs:documentation>
|
150
|
-
</xs:annotation>
|
151
|
-
</xs:element>
|
152
|
-
<xs:element name="nNFFin" type="TNF" minOccurs="0">
|
153
|
-
<xs:annotation>
|
154
|
-
<xs:documentation>Número da NF-e final</xs:documentation>
|
155
|
-
</xs:annotation>
|
156
|
-
</xs:element>
|
157
|
-
<xs:element name="dhRecbto" type="TDateTimeUTC">
|
158
|
-
<xs:annotation>
|
159
|
-
<xs:documentation>Data e hora de recebimento, no formato AAAA-MM-DDTHH:MM:SS. Deve ser preenchida com data e hora da gravação no Banco em caso de Confirmação. Em caso de Rejeição, com data e hora do recebimento do Pedido de Inutilização.</xs:documentation>
|
160
|
-
</xs:annotation>
|
161
|
-
</xs:element>
|
162
|
-
<xs:element name="nProt" type="TProt" minOccurs="0">
|
163
|
-
<xs:annotation>
|
164
|
-
<xs:documentation>Número do Protocolo de Status da NF-e. 1 posição (1 – Secretaria de Fazenda Estadual 2 – Receita Federal); 2 - código da UF - 2 posições ano; 10 seqüencial no ano.</xs:documentation>
|
165
|
-
</xs:annotation>
|
166
|
-
</xs:element>
|
167
|
-
</xs:sequence>
|
168
|
-
<xs:attribute name="Id" type="xs:ID" use="optional"/>
|
169
|
-
</xs:complexType>
|
170
|
-
</xs:element>
|
171
|
-
<xs:element ref="ds:Signature" minOccurs="0"/>
|
172
|
-
</xs:sequence>
|
173
|
-
<xs:attribute name="versao" type="TVerInutNFe" use="required"/>
|
174
|
-
</xs:complexType>
|
175
|
-
<xs:complexType name="TProcInutNFe">
|
176
|
-
<xs:annotation>
|
177
|
-
<xs:documentation>Tipo Pedido de inutilzação de númeração de NF-e processado</xs:documentation>
|
178
|
-
</xs:annotation>
|
179
|
-
<xs:sequence>
|
180
|
-
<xs:element name="inutNFe" type="TInutNFe"/>
|
181
|
-
<xs:element name="retInutNFe" type="TRetInutNFe"/>
|
182
|
-
</xs:sequence>
|
183
|
-
<xs:attribute name="versao" type="TVerInutNFe" use="required"/>
|
184
|
-
</xs:complexType>
|
185
|
-
<xs:simpleType name="TVerInutNFe">
|
186
|
-
<xs:annotation>
|
187
|
-
<xs:documentation>Tipo Versão do leiaute de Inutilização 4.00</xs:documentation>
|
188
|
-
</xs:annotation>
|
189
|
-
<xs:restriction base="xs:token">
|
190
|
-
<xs:pattern value="4\.00"/>
|
191
|
-
</xs:restriction>
|
192
|
-
</xs:simpleType>
|
193
|
-
</xs:schema>
|