-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
83 lines (72 loc) · 1.61 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
declare module 'sro-correios' {
export interface Tracking {
code: string
category?: Category
events?: Event[]
isDelivered?: boolean
postedAt?: Date
updatedAt?: Date
isInvalid?: boolean
error?: string
}
export interface Category {
name: string | undefined
description: string | undefined
}
export interface Event {
locality: string | null
status: string
origin: string
destination: string | null
trackedAt: Date
}
export interface Correios {
objetos: Array<{
codObjeto: string
tipoPostal?: {
categoria: string
descricao: string
}
mensagem?: string
eventos?: Array<{
codigo: string
descricao: string
dtHrCriado: string
unidade: CorreiosUnit
unidadeDestino?: CorreiosUnit
}>
}>
}
export interface CorreiosUnit {
endereco: {
cidade: string
uf: string
}
nome: string
tipo: string
}
export interface PostalType {
categoria: string
descricao: string
}
export interface CategoryType {
name: string
description: string
}
export interface Login {
token: string
}
export interface HashSign {
sign: string
date: string
}
export function track (code: string[]): Promise<Tracking[]>
export function track (...codes: string[]): Promise<Tracking[]>
export function isValidOrderCode (code: string): boolean
export class SroCorreios {
public track: typeof track
private readonly requestObject
private readonly parseResponse
static isValidOrderCode: typeof isValidOrderCode
}
}