@cristian-israel/giganet_lib_conecta 1.0.13 → 1.0.15
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/dist/index.d.mts +383 -12
- package/dist/index.d.ts +383 -12
- package/dist/index.js +13 -1556
- package/dist/index.mjs +13 -782
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as Sequelize from 'sequelize';
|
|
2
2
|
import { Model, Optional, Sequelize as Sequelize$1, Attributes } from 'sequelize';
|
|
3
3
|
import * as mongoose from 'mongoose';
|
|
4
|
+
import { Model as Model$1, InferSchemaType } from 'mongoose';
|
|
5
|
+
import * as bson from 'bson';
|
|
4
6
|
|
|
5
7
|
interface XmlNfseAttributes {
|
|
6
8
|
id: number;
|
|
@@ -34217,10 +34219,6 @@ declare function initModels(sequelize: Sequelize$1): {
|
|
|
34217
34219
|
};
|
|
34218
34220
|
|
|
34219
34221
|
type IXCSoftModels = ReturnType<typeof initModels>;
|
|
34220
|
-
/**
|
|
34221
|
-
* Access the attribute type (interface) for a given model.
|
|
34222
|
-
* Example usage: type UserAttr = IXCSoftModelsAttributes['usuarios'];
|
|
34223
|
-
*/
|
|
34224
34222
|
type IXCSoftModelsAttributes = {
|
|
34225
34223
|
[K in keyof IXCSoftModels]: Attributes<InstanceType<IXCSoftModels[K]>>;
|
|
34226
34224
|
};
|
|
@@ -35798,6 +35796,383 @@ declare class IXCSoftService {
|
|
|
35798
35796
|
}[K];
|
|
35799
35797
|
}
|
|
35800
35798
|
|
|
35799
|
+
declare const schemas: {
|
|
35800
|
+
tags: mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
35801
|
+
cor: string;
|
|
35802
|
+
nome: string;
|
|
35803
|
+
empresa: any;
|
|
35804
|
+
_id?: any;
|
|
35805
|
+
id_criador?: any;
|
|
35806
|
+
}, any, unknown, any>;
|
|
35807
|
+
atendimentos: mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
35808
|
+
status: string;
|
|
35809
|
+
date: NativeDate;
|
|
35810
|
+
update: NativeDate;
|
|
35811
|
+
updatedAt: NativeDate;
|
|
35812
|
+
descricao: string;
|
|
35813
|
+
id_cliente: any;
|
|
35814
|
+
setor: string;
|
|
35815
|
+
protocolo: string;
|
|
35816
|
+
id_atendente: any;
|
|
35817
|
+
canal: string;
|
|
35818
|
+
id_user: any;
|
|
35819
|
+
tags: string[];
|
|
35820
|
+
inicio: NativeDate;
|
|
35821
|
+
fim: NativeDate;
|
|
35822
|
+
id_atendimento: any;
|
|
35823
|
+
usuarios_acompanhar: string[];
|
|
35824
|
+
canal_cliente: string;
|
|
35825
|
+
canal_id: any;
|
|
35826
|
+
data_fixacao: NativeDate;
|
|
35827
|
+
operacoes: mongoose.Types.DocumentArray<{
|
|
35828
|
+
date: NativeDate;
|
|
35829
|
+
tipo: string;
|
|
35830
|
+
departamento: any;
|
|
35831
|
+
atendente: any;
|
|
35832
|
+
departamentoDestino?: any;
|
|
35833
|
+
atendenteDestino?: any;
|
|
35834
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35835
|
+
endDate?: NativeDate | null | undefined;
|
|
35836
|
+
}, mongoose.Types.Subdocument<bson.ObjectId, unknown, {
|
|
35837
|
+
date: NativeDate;
|
|
35838
|
+
tipo: string;
|
|
35839
|
+
departamento: any;
|
|
35840
|
+
atendente: any;
|
|
35841
|
+
departamentoDestino?: any;
|
|
35842
|
+
atendenteDestino?: any;
|
|
35843
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35844
|
+
endDate?: NativeDate | null | undefined;
|
|
35845
|
+
}, {}, {}> & {
|
|
35846
|
+
date: NativeDate;
|
|
35847
|
+
tipo: string;
|
|
35848
|
+
departamento: any;
|
|
35849
|
+
atendente: any;
|
|
35850
|
+
departamentoDestino?: any;
|
|
35851
|
+
atendenteDestino?: any;
|
|
35852
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35853
|
+
endDate?: NativeDate | null | undefined;
|
|
35854
|
+
}>;
|
|
35855
|
+
}, mongoose.Document<unknown, {}, {
|
|
35856
|
+
status: string;
|
|
35857
|
+
date: NativeDate;
|
|
35858
|
+
update: NativeDate;
|
|
35859
|
+
updatedAt: NativeDate;
|
|
35860
|
+
descricao: string;
|
|
35861
|
+
id_cliente: any;
|
|
35862
|
+
setor: string;
|
|
35863
|
+
protocolo: string;
|
|
35864
|
+
id_atendente: any;
|
|
35865
|
+
canal: string;
|
|
35866
|
+
id_user: any;
|
|
35867
|
+
tags: string[];
|
|
35868
|
+
inicio: NativeDate;
|
|
35869
|
+
fim: NativeDate;
|
|
35870
|
+
id_atendimento: any;
|
|
35871
|
+
usuarios_acompanhar: string[];
|
|
35872
|
+
canal_cliente: string;
|
|
35873
|
+
canal_id: any;
|
|
35874
|
+
data_fixacao: NativeDate;
|
|
35875
|
+
operacoes: mongoose.Types.DocumentArray<{
|
|
35876
|
+
date: NativeDate;
|
|
35877
|
+
tipo: string;
|
|
35878
|
+
departamento: any;
|
|
35879
|
+
atendente: any;
|
|
35880
|
+
departamentoDestino?: any;
|
|
35881
|
+
atendenteDestino?: any;
|
|
35882
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35883
|
+
endDate?: NativeDate | null | undefined;
|
|
35884
|
+
}, mongoose.Types.Subdocument<bson.ObjectId, unknown, {
|
|
35885
|
+
date: NativeDate;
|
|
35886
|
+
tipo: string;
|
|
35887
|
+
departamento: any;
|
|
35888
|
+
atendente: any;
|
|
35889
|
+
departamentoDestino?: any;
|
|
35890
|
+
atendenteDestino?: any;
|
|
35891
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35892
|
+
endDate?: NativeDate | null | undefined;
|
|
35893
|
+
}, {}, {}> & {
|
|
35894
|
+
date: NativeDate;
|
|
35895
|
+
tipo: string;
|
|
35896
|
+
departamento: any;
|
|
35897
|
+
atendente: any;
|
|
35898
|
+
departamentoDestino?: any;
|
|
35899
|
+
atendenteDestino?: any;
|
|
35900
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35901
|
+
endDate?: NativeDate | null | undefined;
|
|
35902
|
+
}>;
|
|
35903
|
+
}, {
|
|
35904
|
+
id: string;
|
|
35905
|
+
}, mongoose.DefaultSchemaOptions> & Omit<{
|
|
35906
|
+
status: string;
|
|
35907
|
+
date: NativeDate;
|
|
35908
|
+
update: NativeDate;
|
|
35909
|
+
updatedAt: NativeDate;
|
|
35910
|
+
descricao: string;
|
|
35911
|
+
id_cliente: any;
|
|
35912
|
+
setor: string;
|
|
35913
|
+
protocolo: string;
|
|
35914
|
+
id_atendente: any;
|
|
35915
|
+
canal: string;
|
|
35916
|
+
id_user: any;
|
|
35917
|
+
tags: string[];
|
|
35918
|
+
inicio: NativeDate;
|
|
35919
|
+
fim: NativeDate;
|
|
35920
|
+
id_atendimento: any;
|
|
35921
|
+
usuarios_acompanhar: string[];
|
|
35922
|
+
canal_cliente: string;
|
|
35923
|
+
canal_id: any;
|
|
35924
|
+
data_fixacao: NativeDate;
|
|
35925
|
+
operacoes: mongoose.Types.DocumentArray<{
|
|
35926
|
+
date: NativeDate;
|
|
35927
|
+
tipo: string;
|
|
35928
|
+
departamento: any;
|
|
35929
|
+
atendente: any;
|
|
35930
|
+
departamentoDestino?: any;
|
|
35931
|
+
atendenteDestino?: any;
|
|
35932
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35933
|
+
endDate?: NativeDate | null | undefined;
|
|
35934
|
+
}, mongoose.Types.Subdocument<bson.ObjectId, unknown, {
|
|
35935
|
+
date: NativeDate;
|
|
35936
|
+
tipo: string;
|
|
35937
|
+
departamento: any;
|
|
35938
|
+
atendente: any;
|
|
35939
|
+
departamentoDestino?: any;
|
|
35940
|
+
atendenteDestino?: any;
|
|
35941
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35942
|
+
endDate?: NativeDate | null | undefined;
|
|
35943
|
+
}, {}, {}> & {
|
|
35944
|
+
date: NativeDate;
|
|
35945
|
+
tipo: string;
|
|
35946
|
+
departamento: any;
|
|
35947
|
+
atendente: any;
|
|
35948
|
+
departamentoDestino?: any;
|
|
35949
|
+
atendenteDestino?: any;
|
|
35950
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35951
|
+
endDate?: NativeDate | null | undefined;
|
|
35952
|
+
}>;
|
|
35953
|
+
} & {
|
|
35954
|
+
_id: mongoose.Types.ObjectId;
|
|
35955
|
+
} & {
|
|
35956
|
+
__v: number;
|
|
35957
|
+
}, "id"> & {
|
|
35958
|
+
id: string;
|
|
35959
|
+
}, unknown, mongoose.FlattenMaps<{
|
|
35960
|
+
status: string;
|
|
35961
|
+
date: NativeDate;
|
|
35962
|
+
update: NativeDate;
|
|
35963
|
+
updatedAt: NativeDate;
|
|
35964
|
+
descricao: string;
|
|
35965
|
+
id_cliente: any;
|
|
35966
|
+
setor: string;
|
|
35967
|
+
protocolo: string;
|
|
35968
|
+
id_atendente: any;
|
|
35969
|
+
canal: string;
|
|
35970
|
+
id_user: any;
|
|
35971
|
+
tags: string[];
|
|
35972
|
+
inicio: NativeDate;
|
|
35973
|
+
fim: NativeDate;
|
|
35974
|
+
id_atendimento: any;
|
|
35975
|
+
usuarios_acompanhar: string[];
|
|
35976
|
+
canal_cliente: string;
|
|
35977
|
+
canal_id: any;
|
|
35978
|
+
data_fixacao: NativeDate;
|
|
35979
|
+
operacoes: mongoose.Types.DocumentArray<{
|
|
35980
|
+
date: NativeDate;
|
|
35981
|
+
tipo: string;
|
|
35982
|
+
departamento: any;
|
|
35983
|
+
atendente: any;
|
|
35984
|
+
departamentoDestino?: any;
|
|
35985
|
+
atendenteDestino?: any;
|
|
35986
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35987
|
+
endDate?: NativeDate | null | undefined;
|
|
35988
|
+
}, mongoose.Types.Subdocument<bson.ObjectId, unknown, {
|
|
35989
|
+
date: NativeDate;
|
|
35990
|
+
tipo: string;
|
|
35991
|
+
departamento: any;
|
|
35992
|
+
atendente: any;
|
|
35993
|
+
departamentoDestino?: any;
|
|
35994
|
+
atendenteDestino?: any;
|
|
35995
|
+
tempoDeDuracao?: number | null | undefined;
|
|
35996
|
+
endDate?: NativeDate | null | undefined;
|
|
35997
|
+
}, {}, {}> & {
|
|
35998
|
+
date: NativeDate;
|
|
35999
|
+
tipo: string;
|
|
36000
|
+
departamento: any;
|
|
36001
|
+
atendente: any;
|
|
36002
|
+
departamentoDestino?: any;
|
|
36003
|
+
atendenteDestino?: any;
|
|
36004
|
+
tempoDeDuracao?: number | null | undefined;
|
|
36005
|
+
endDate?: NativeDate | null | undefined;
|
|
36006
|
+
}>;
|
|
36007
|
+
}> & {
|
|
36008
|
+
_id: mongoose.Types.ObjectId;
|
|
36009
|
+
} & {
|
|
36010
|
+
__v: number;
|
|
36011
|
+
}>;
|
|
36012
|
+
atendimentos_mensagens: mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
36013
|
+
updatedAt: NativeDate;
|
|
36014
|
+
data: NativeDate;
|
|
36015
|
+
tipo: string;
|
|
36016
|
+
mensagem: any;
|
|
36017
|
+
destinatario: string;
|
|
36018
|
+
createdAt: NativeDate;
|
|
36019
|
+
tipoDestinatario: string;
|
|
36020
|
+
canalComunicacao: string;
|
|
36021
|
+
id_rota: any;
|
|
36022
|
+
id_atend: any;
|
|
36023
|
+
envioForaJanela24h: any;
|
|
36024
|
+
statusEnvio: any;
|
|
36025
|
+
visivelParaContato: any;
|
|
36026
|
+
}, mongoose.Document<unknown, {}, {
|
|
36027
|
+
updatedAt: NativeDate;
|
|
36028
|
+
data: NativeDate;
|
|
36029
|
+
tipo: string;
|
|
36030
|
+
mensagem: any;
|
|
36031
|
+
destinatario: string;
|
|
36032
|
+
createdAt: NativeDate;
|
|
36033
|
+
tipoDestinatario: string;
|
|
36034
|
+
canalComunicacao: string;
|
|
36035
|
+
id_rota: any;
|
|
36036
|
+
id_atend: any;
|
|
36037
|
+
envioForaJanela24h: any;
|
|
36038
|
+
statusEnvio: any;
|
|
36039
|
+
visivelParaContato: any;
|
|
36040
|
+
}, {
|
|
36041
|
+
id: string;
|
|
36042
|
+
}, mongoose.DefaultSchemaOptions> & Omit<{
|
|
36043
|
+
updatedAt: NativeDate;
|
|
36044
|
+
data: NativeDate;
|
|
36045
|
+
tipo: string;
|
|
36046
|
+
mensagem: any;
|
|
36047
|
+
destinatario: string;
|
|
36048
|
+
createdAt: NativeDate;
|
|
36049
|
+
tipoDestinatario: string;
|
|
36050
|
+
canalComunicacao: string;
|
|
36051
|
+
id_rota: any;
|
|
36052
|
+
id_atend: any;
|
|
36053
|
+
envioForaJanela24h: any;
|
|
36054
|
+
statusEnvio: any;
|
|
36055
|
+
visivelParaContato: any;
|
|
36056
|
+
} & {
|
|
36057
|
+
_id: mongoose.Types.ObjectId;
|
|
36058
|
+
} & {
|
|
36059
|
+
__v: number;
|
|
36060
|
+
}, "id"> & {
|
|
36061
|
+
id: string;
|
|
36062
|
+
}, unknown, mongoose.FlattenMaps<{
|
|
36063
|
+
updatedAt: NativeDate;
|
|
36064
|
+
data: NativeDate;
|
|
36065
|
+
tipo: string;
|
|
36066
|
+
mensagem: any;
|
|
36067
|
+
destinatario: string;
|
|
36068
|
+
createdAt: NativeDate;
|
|
36069
|
+
tipoDestinatario: string;
|
|
36070
|
+
canalComunicacao: string;
|
|
36071
|
+
id_rota: any;
|
|
36072
|
+
id_atend: any;
|
|
36073
|
+
envioForaJanela24h: any;
|
|
36074
|
+
statusEnvio: any;
|
|
36075
|
+
visivelParaContato: any;
|
|
36076
|
+
}> & {
|
|
36077
|
+
_id: mongoose.Types.ObjectId;
|
|
36078
|
+
} & {
|
|
36079
|
+
__v: number;
|
|
36080
|
+
}>;
|
|
36081
|
+
clientes: mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
36082
|
+
id: number;
|
|
36083
|
+
status: string;
|
|
36084
|
+
updatedAt: NativeDate;
|
|
36085
|
+
fantasia: string;
|
|
36086
|
+
endereco: string;
|
|
36087
|
+
latitude: number;
|
|
36088
|
+
longitude: number;
|
|
36089
|
+
token: string;
|
|
36090
|
+
id_cliente: any;
|
|
36091
|
+
nome: string;
|
|
36092
|
+
ultima_atualizacao: string;
|
|
36093
|
+
cliente: any;
|
|
36094
|
+
id_filial: string;
|
|
36095
|
+
cpf_cnpj: string;
|
|
36096
|
+
__v: number;
|
|
36097
|
+
prospect: any;
|
|
36098
|
+
chaves: string[];
|
|
36099
|
+
}, mongoose.Document<unknown, {}, {
|
|
36100
|
+
id: number;
|
|
36101
|
+
status: string;
|
|
36102
|
+
updatedAt: NativeDate;
|
|
36103
|
+
fantasia: string;
|
|
36104
|
+
endereco: string;
|
|
36105
|
+
latitude: number;
|
|
36106
|
+
longitude: number;
|
|
36107
|
+
token: string;
|
|
36108
|
+
id_cliente: any;
|
|
36109
|
+
nome: string;
|
|
36110
|
+
ultima_atualizacao: string;
|
|
36111
|
+
cliente: any;
|
|
36112
|
+
id_filial: string;
|
|
36113
|
+
cpf_cnpj: string;
|
|
36114
|
+
__v: number;
|
|
36115
|
+
prospect: any;
|
|
36116
|
+
chaves: string[];
|
|
36117
|
+
}, {}, mongoose.DefaultSchemaOptions> & {
|
|
36118
|
+
id: number;
|
|
36119
|
+
status: string;
|
|
36120
|
+
updatedAt: NativeDate;
|
|
36121
|
+
fantasia: string;
|
|
36122
|
+
endereco: string;
|
|
36123
|
+
latitude: number;
|
|
36124
|
+
longitude: number;
|
|
36125
|
+
token: string;
|
|
36126
|
+
id_cliente: any;
|
|
36127
|
+
nome: string;
|
|
36128
|
+
ultima_atualizacao: string;
|
|
36129
|
+
cliente: any;
|
|
36130
|
+
id_filial: string;
|
|
36131
|
+
cpf_cnpj: string;
|
|
36132
|
+
__v: number;
|
|
36133
|
+
prospect: any;
|
|
36134
|
+
chaves: string[];
|
|
36135
|
+
} & {
|
|
36136
|
+
_id: mongoose.Types.ObjectId;
|
|
36137
|
+
} & {
|
|
36138
|
+
__v: number;
|
|
36139
|
+
}, unknown, mongoose.FlattenMaps<{
|
|
36140
|
+
id: number;
|
|
36141
|
+
status: string;
|
|
36142
|
+
updatedAt: NativeDate;
|
|
36143
|
+
fantasia: string;
|
|
36144
|
+
endereco: string;
|
|
36145
|
+
latitude: number;
|
|
36146
|
+
longitude: number;
|
|
36147
|
+
token: string;
|
|
36148
|
+
id_cliente: any;
|
|
36149
|
+
nome: string;
|
|
36150
|
+
ultima_atualizacao: string;
|
|
36151
|
+
cliente: any;
|
|
36152
|
+
id_filial: string;
|
|
36153
|
+
cpf_cnpj: string;
|
|
36154
|
+
__v: number;
|
|
36155
|
+
prospect: any;
|
|
36156
|
+
chaves: string[];
|
|
36157
|
+
}> & {
|
|
36158
|
+
_id: mongoose.Types.ObjectId;
|
|
36159
|
+
}>;
|
|
36160
|
+
usuarios: mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
36161
|
+
status: string;
|
|
36162
|
+
email: string;
|
|
36163
|
+
tipo: string;
|
|
36164
|
+
nome: string;
|
|
36165
|
+
_id?: any;
|
|
36166
|
+
}, any, unknown, any>;
|
|
36167
|
+
};
|
|
36168
|
+
|
|
36169
|
+
type OPASuiteDocuments = {
|
|
36170
|
+
[K in keyof typeof schemas]: InferSchemaType<(typeof schemas)[K]>;
|
|
36171
|
+
};
|
|
36172
|
+
type OPASuiteCollectionsModels = {
|
|
36173
|
+
[K in keyof typeof schemas]: Model$1<InferSchemaType<(typeof schemas)[K]>>;
|
|
36174
|
+
};
|
|
36175
|
+
|
|
35801
36176
|
type MongoConnectionConfig = {
|
|
35802
36177
|
host: string;
|
|
35803
36178
|
port: number;
|
|
@@ -35819,13 +36194,9 @@ declare class OPASuiteService {
|
|
|
35819
36194
|
/** Retorna Mongoose connection */
|
|
35820
36195
|
getConnection(): mongoose.Connection;
|
|
35821
36196
|
/** Retorna collections tipadas */
|
|
35822
|
-
get collections():
|
|
35823
|
-
|
|
35824
|
-
|
|
35825
|
-
atendimentos_mensagens: mongoose.Model<any, {}, {}, {}, any, any, any>;
|
|
35826
|
-
clientes: mongoose.Model<any, {}, {}, {}, any, any, any>;
|
|
35827
|
-
usuarios: mongoose.Model<any, {}, {}, {}, any, any, any>;
|
|
35828
|
-
};
|
|
36197
|
+
get collections(): OPASuiteCollectionsModels;
|
|
36198
|
+
/** Retorna uma collection específica tipada */
|
|
36199
|
+
getCollection<K extends keyof OPASuiteCollectionsModels>(key: K): OPASuiteCollectionsModels[K];
|
|
35829
36200
|
}
|
|
35830
36201
|
|
|
35831
36202
|
type LogLevel = "INFO" | "ERROR" | "WARN";
|
|
@@ -35837,4 +36208,4 @@ type LoggerParams = {
|
|
|
35837
36208
|
};
|
|
35838
36209
|
declare function logger({ level, context, domain, message, }: LoggerParams): void;
|
|
35839
36210
|
|
|
35840
|
-
export { AcsActionDevice, type AcsActionDeviceAttributes, type AcsActionDeviceCreationAttributes, AcsDevice, type AcsDeviceAttributes, type AcsDeviceCreationAttributes, AcsDeviceWifi, type AcsDeviceWifiAttributes, type AcsDeviceWifiCreationAttributes, AcsIntegration, type AcsIntegrationAttributes, type AcsIntegrationCreationAttributes, AgeNegociacoes, type AgeNegociacoesAttributes, type AgeNegociacoesCreationAttributes, AgeNegociacoesEntradas, type AgeNegociacoesEntradasAttributes, type AgeNegociacoesEntradasCreationAttributes, AgeNegociacoesSaidas, type AgeNegociacoesSaidasAttributes, type AgeNegociacoesSaidasCreationAttributes, AgeVeiculos, type AgeVeiculosAttributes, type AgeVeiculosCreationAttributes, AgeVeiculosMarca, type AgeVeiculosMarcaAttributes, type AgeVeiculosMarcaCreationAttributes, AgeVeiculosModelo, type AgeVeiculosModeloAttributes, type AgeVeiculosModeloCreationAttributes, AgendaFiltro, type AgendaFiltroAttributes, type AgendaFiltroCreationAttributes, AjusteInventario, type AjusteInventarioAttributes, type AjusteInventarioCreationAttributes, Alcada, type AlcadaAttributes, type AlcadaCreationAttributes, AlcadaLog, type AlcadaLogAttributes, type AlcadaLogCreationAttributes, Almox, type AlmoxAttributes, type AlmoxCreationAttributes, AlmoxUsuario, type AlmoxUsuarioAttributes, type AlmoxUsuarioCreationAttributes, AltPlanoAcrescimo, type AltPlanoAcrescimoAttributes, type AltPlanoAcrescimoCreationAttributes, AltPlanoDesconto, type AltPlanoDescontoAttributes, type AltPlanoDescontoCreationAttributes, AltPlanoLogTitulo, type AltPlanoLogTituloAttributes, type AltPlanoLogTituloCreationAttributes, AltPlanoProdutoServico, type AltPlanoProdutoServicoAttributes, type AltPlanoProdutoServicoCreationAttributes, ApiUsageSummary, type ApiUsageSummaryAttributes, type ApiUsageSummaryCreationAttributes, ArquivoSpedContribuicoes, type ArquivoSpedContribuicoesAttributes, type ArquivoSpedContribuicoesCreationAttributes, ArquivosConvenio, type ArquivosConvenioAttributes, type ArquivosConvenioCreationAttributes, AssinaturaCliente, type AssinaturaClienteAttributes, type AssinaturaClienteCreationAttributes, AssinaturaClienteProduto, type AssinaturaClienteProdutoAttributes, type AssinaturaClienteProdutoCreationAttributes, AssinaturaClienteProdutoSubproduto, type AssinaturaClienteProdutoSubprodutoAttributes, type AssinaturaClienteProdutoSubprodutoCreationAttributes, AssinaturaClienteProdutoSubprodutoTmp, type AssinaturaClienteProdutoSubprodutoTmpAttributes, type AssinaturaClienteProdutoSubprodutoTmpCreationAttributes, AssinaturaClienteProdutoTmp, type AssinaturaClienteProdutoTmpAttributes, type AssinaturaClienteProdutoTmpCreationAttributes, AssinaturaClienteTmp, type AssinaturaClienteTmpAttributes, type AssinaturaClienteTmpCreationAttributes, AssinaturaDigitalHistorico, type AssinaturaDigitalHistoricoAttributes, type AssinaturaDigitalHistoricoCreationAttributes, AssinaturaDigitalSignatario, type AssinaturaDigitalSignatarioAttributes, type AssinaturaDigitalSignatarioCreationAttributes, AssinaturaIntegracao, type AssinaturaIntegracaoAttributes, type AssinaturaIntegracaoCreationAttributes, AssinaturaNotificacaoGrupo, type AssinaturaNotificacaoGrupoAttributes, type AssinaturaNotificacaoGrupoCreationAttributes, AssinaturaNotificacaoGrupoParametros, type AssinaturaNotificacaoGrupoParametrosAttributes, type AssinaturaNotificacaoGrupoParametrosCreationAttributes, AssinaturaPlano, type AssinaturaPlanoAttributes, type AssinaturaPlanoCreationAttributes, AssinaturaPlanoProduto, type AssinaturaPlanoProdutoAttributes, type AssinaturaPlanoProdutoCreationAttributes, AssinaturaPlanoProdutoSubproduto, type AssinaturaPlanoProdutoSubprodutoAttributes, type AssinaturaPlanoProdutoSubprodutoCreationAttributes, Atividade, type AtividadeAttributes, type AtividadeCreationAttributes, AutenticacaoSuporteOpa, type AutenticacaoSuporteOpaAttributes, type AutenticacaoSuporteOpaCreationAttributes, AuthUsuarios, type AuthUsuariosAttributes, type AuthUsuariosCreationAttributes, AuxConfirmaEmail, type AuxConfirmaEmailAttributes, type AuxConfirmaEmailCreationAttributes, BackupDrive, type BackupDriveAttributes, type BackupDriveCreationAttributes, BackupGrupo, type BackupGrupoAttributes, type BackupGrupoCreationAttributes, BackupGrupoDrive, type BackupGrupoDriveAttributes, type BackupGrupoDriveCreationAttributes, BackupHistorico, type BackupHistoricoAttributes, type BackupHistoricoCreationAttributes, BaixaLote, type BaixaLoteAttributes, type BaixaLoteCreationAttributes, BaixasSerasa, type BaixasSerasaAttributes, type BaixasSerasaCreationAttributes, CaixaMensagem, type CaixaMensagemAttributes, type CaixaMensagemCreationAttributes, CaixasUsuario, type CaixasUsuarioAttributes, type CaixasUsuarioCreationAttributes, Carregamento, type CarregamentoAttributes, type CarregamentoCreationAttributes, CarteirasRelacionadasFatura, type CarteirasRelacionadasFaturaAttributes, type CarteirasRelacionadasFaturaCreationAttributes, CartoesFixadosKanban, type CartoesFixadosKanbanAttributes, type CartoesFixadosKanbanCreationAttributes, CategoriaDepreciacao, type CategoriaDepreciacaoAttributes, type CategoriaDepreciacaoCreationAttributes, CategoriaPatrimonio, type CategoriaPatrimonioAttributes, type CategoriaPatrimonioCreationAttributes, CategoriaSummit, type CategoriaSummitAttributes, type CategoriaSummitCreationAttributes, CategoriasAtividade, type CategoriasAtividadeAttributes, type CategoriasAtividadeCreationAttributes, Cdr, type CdrAttributes, type CdrCreationAttributes, Cel, type CelAttributes, type CelCreationAttributes, CentralBloqueioIp, type CentralBloqueioIpAttributes, type CentralBloqueioIpCreationAttributes, CentralClienteAprovacao, type CentralClienteAprovacaoAttributes, type CentralClienteAprovacaoCreationAttributes, CentralLoginLog, type CentralLoginLogAttributes, type CentralLoginLogCreationAttributes, CentroCustoSummit, type CentroCustoSummitAttributes, type CentroCustoSummitCreationAttributes, ChaveAssinaturaDigital, type ChaveAssinaturaDigitalAttributes, type ChaveAssinaturaDigitalCreationAttributes, ChaveAssinaturaDigitalDocumentos, type ChaveAssinaturaDigitalDocumentosAttributes, type ChaveAssinaturaDigitalDocumentosCreationAttributes, ChaveCarteira, type ChaveCarteiraAttributes, type ChaveCarteiraCreationAttributes, ChaveCarteiraTitulos, type ChaveCarteiraTitulosAttributes, type ChaveCarteiraTitulosCreationAttributes, Checklist, type ChecklistAttributes, type ChecklistCreationAttributes, ChecklistItem, type ChecklistItemAttributes, type ChecklistItemCreationAttributes, Cidade, type CidadeAttributes, CidadeBairro, type CidadeBairroAttributes, type CidadeBairroCreationAttributes, type CidadeCreationAttributes, ClassTribNatOperacao, type ClassTribNatOperacaoAttributes, type ClassTribNatOperacaoCreationAttributes, Cliente, ClienteArquivos, type ClienteArquivosAttributes, type ClienteArquivosCreationAttributes, type ClienteAttributes, ClienteBancos, type ClienteBancosAttributes, type ClienteBancosCreationAttributes, ClienteBens, type ClienteBensAttributes, type ClienteBensCreationAttributes, ClienteBuilderSession, type ClienteBuilderSessionAttributes, type ClienteBuilderSessionCreationAttributes, ClienteChave, type ClienteChaveAttributes, type ClienteChaveCreationAttributes, ClienteChaveN, type ClienteChaveNAttributes, type ClienteChaveNCreationAttributes, ClienteChaveRecuperacao, type ClienteChaveRecuperacaoAttributes, type ClienteChaveRecuperacaoCreationAttributes, ClienteCondominio, type ClienteCondominioAttributes, type ClienteCondominioCreationAttributes, ClienteContrato, ClienteContratoAcrescimos, type ClienteContratoAcrescimosAttributes, type ClienteContratoAcrescimosCreationAttributes, ClienteContratoAltPlano, type ClienteContratoAltPlanoAttributes, type ClienteContratoAltPlanoCreationAttributes, ClienteContratoAssinaturaTermo, type ClienteContratoAssinaturaTermoAttributes, type ClienteContratoAssinaturaTermoCreationAttributes, type ClienteContratoAttributes, type ClienteContratoCreationAttributes, ClienteContratoDescRetroativosParam, type ClienteContratoDescRetroativosParamAttributes, type ClienteContratoDescRetroativosParamCreationAttributes, ClienteContratoDescontos, type ClienteContratoDescontosAttributes, type ClienteContratoDescontosCreationAttributes, ClienteContratoGeracaoFatura, type ClienteContratoGeracaoFaturaAttributes, type ClienteContratoGeracaoFaturaCreationAttributes, ClienteContratoGeracaoFinanceiro, type ClienteContratoGeracaoFinanceiroAttributes, type ClienteContratoGeracaoFinanceiroCreationAttributes, ClienteContratoGeracaoFinanceiroLog, type ClienteContratoGeracaoFinanceiroLogAttributes, type ClienteContratoGeracaoFinanceiroLogCreationAttributes, ClienteContratoHistorico, type ClienteContratoHistoricoAttributes, type ClienteContratoHistoricoCreationAttributes, ClienteContratoIndexadores, type ClienteContratoIndexadoresAttributes, type ClienteContratoIndexadoresCreationAttributes, ClienteContratoInfoAdicVoip, type ClienteContratoInfoAdicVoipAttributes, type ClienteContratoInfoAdicVoipCreationAttributes, ClienteContratoModelo, type ClienteContratoModeloAttributes, type ClienteContratoModeloCreationAttributes, ClienteContratoModeloLista, type ClienteContratoModeloListaAttributes, type ClienteContratoModeloListaCreationAttributes, ClienteContratoMotivoDesistencia, type ClienteContratoMotivoDesistenciaAttributes, type ClienteContratoMotivoDesistenciaCreationAttributes, ClienteContratoProdutos, type ClienteContratoProdutosAttributes, type ClienteContratoProdutosCreationAttributes, ClienteContratoProdutosReajusteValor, type ClienteContratoProdutosReajusteValorAttributes, type ClienteContratoProdutosReajusteValorCreationAttributes, ClienteContratoServicos, ClienteContratoServicosAdicionaisCodigosIntegrador, type ClienteContratoServicosAdicionaisCodigosIntegradorAttributes, type ClienteContratoServicosAdicionaisCodigosIntegradorCreationAttributes, ClienteContratoServicosAdicionaisIntegrador, type ClienteContratoServicosAdicionaisIntegradorAttributes, type ClienteContratoServicosAdicionaisIntegradorCreationAttributes, ClienteContratoServicosAlt, type ClienteContratoServicosAltAttributes, type ClienteContratoServicosAltCreationAttributes, type ClienteContratoServicosAttributes, type ClienteContratoServicosCreationAttributes, ClienteContratoServicosParam, type ClienteContratoServicosParamAttributes, type ClienteContratoServicosParamCreationAttributes, ClienteContratoTelefonia, type ClienteContratoTelefoniaAttributes, type ClienteContratoTelefoniaCreationAttributes, ClienteContratoTipo, type ClienteContratoTipoAttributes, type ClienteContratoTipoCreationAttributes, type ClienteCreationAttributes, ClienteDevice, type ClienteDeviceAttributes, type ClienteDeviceCreationAttributes, ClienteIntegracaoComissao, type ClienteIntegracaoComissaoAttributes, type ClienteIntegracaoComissaoCreationAttributes, ClienteIntegracaoExternalId, type ClienteIntegracaoExternalIdAttributes, type ClienteIntegracaoExternalIdCreationAttributes, ClienteNeutro, type ClienteNeutroAttributes, type ClienteNeutroCreationAttributes, ClienteNeutroPlanosVelocidade, type ClienteNeutroPlanosVelocidadeAttributes, type ClienteNeutroPlanosVelocidadeCreationAttributes, ClienteTrial, type ClienteTrialAttributes, ClienteTrialChave, type ClienteTrialChaveAttributes, type ClienteTrialChaveCreationAttributes, type ClienteTrialCreationAttributes, ClienteValidaCelular, type ClienteValidaCelularAttributes, type ClienteValidaCelularCreationAttributes, CnfCfop, type CnfCfopAttributes, type CnfCfopCreationAttributes, CnfCfopEntrada, type CnfCfopEntradaAttributes, type CnfCfopEntradaCreationAttributes, CnfClassificacaoTributaria, type CnfClassificacaoTributariaAttributes, type CnfClassificacaoTributariaCreationAttributes, CnfDocumentoNumero, type CnfDocumentoNumeroAttributes, type CnfDocumentoNumeroCreationAttributes, CnfDocumentoNumeroMes, type CnfDocumentoNumeroMesAttributes, type CnfDocumentoNumeroMesCreationAttributes, CnfGradeCtb, type CnfGradeCtbAttributes, type CnfGradeCtbCreationAttributes, CnfGradeCtbItem, type CnfGradeCtbItemAttributes, type CnfGradeCtbItemCreationAttributes, CnfListaConta, type CnfListaContaAttributes, type CnfListaContaCreationAttributes, CnfListaContaItem, type CnfListaContaItemAttributes, type CnfListaContaItemCreationAttributes, CnfNfeInutilizada, type CnfNfeInutilizadaAttributes, type CnfNfeInutilizadaCreationAttributes, CnfTratamentoTributario, type CnfTratamentoTributarioAttributes, type CnfTratamentoTributarioCreationAttributes, Comentario, type ComentarioAttributes, type ComentarioCreationAttributes, CondicoesPagamento, type CondicoesPagamentoAttributes, type CondicoesPagamentoCreationAttributes, ConfigCompressaoArquivos, type ConfigCompressaoArquivosAttributes, type ConfigCompressaoArquivosCreationAttributes, ConfigSmartTube, type ConfigSmartTubeAttributes, type ConfigSmartTubeCreationAttributes, ConfiguracaoCallcenter, type ConfiguracaoCallcenterAttributes, type ConfiguracaoCallcenterCreationAttributes, ConfiguracaoGeral, type ConfiguracaoGeralAttributes, type ConfiguracaoGeralCreationAttributes, ConfiguracaoMvno, type ConfiguracaoMvnoAttributes, type ConfiguracaoMvnoCreationAttributes, ConsultaSpcSerasa, type ConsultaSpcSerasaAttributes, type ConsultaSpcSerasaCreationAttributes, Contador, type ContadorAttributes, type ContadorCreationAttributes, Contas, type ContasAttributes, type ContasCreationAttributes, Contato, type ContatoAttributes, type ContatoCreationAttributes, ContatoTipo, type ContatoTipoAttributes, type ContatoTipoCreationAttributes, ContratoModeloRelTermo, type ContratoModeloRelTermoAttributes, type ContratoModeloRelTermoCreationAttributes, ContratoMotivoNegativacao, type ContratoMotivoNegativacaoAttributes, type ContratoMotivoNegativacaoCreationAttributes, ConvenioNotasVinculadas, type ConvenioNotasVinculadasAttributes, type ConvenioNotasVinculadasCreationAttributes, ConverterCofinsEntradaXml, type ConverterCofinsEntradaXmlAttributes, type ConverterCofinsEntradaXmlCreationAttributes, ConverterCstCfopEntradaXml, type ConverterCstCfopEntradaXmlAttributes, type ConverterCstCfopEntradaXmlCreationAttributes, ConverterIpiEntradaXml, type ConverterIpiEntradaXmlAttributes, type ConverterIpiEntradaXmlCreationAttributes, ConverterPisEntradaXml, type ConverterPisEntradaXmlAttributes, type ConverterPisEntradaXmlCreationAttributes, CotacaoCompra, type CotacaoCompraAttributes, type CotacaoCompraCreationAttributes, CotacaoCompraItens, type CotacaoCompraItensAttributes, type CotacaoCompraItensCreationAttributes, CrmAgenda, type CrmAgendaAttributes, type CrmAgendaCreationAttributes, CrmAgendaTextoPadrao, type CrmAgendaTextoPadraoAttributes, type CrmAgendaTextoPadraoCreationAttributes, CrmAgendaTipo, type CrmAgendaTipoAttributes, type CrmAgendaTipoCreationAttributes, CrmAnotacaoPadrao, type CrmAnotacaoPadraoAttributes, type CrmAnotacaoPadraoCreationAttributes, CrmCampanha, type CrmCampanhaAttributes, type CrmCampanhaCreationAttributes, CrmCobranca, type CrmCobrancaAttributes, type CrmCobrancaCreationAttributes, CrmCobrancaHistorico, type CrmCobrancaHistoricoAttributes, type CrmCobrancaHistoricoCreationAttributes, CrmCobrancaParametros, type CrmCobrancaParametrosAttributes, type CrmCobrancaParametrosCreationAttributes, CrmConcorrente, type CrmConcorrenteAttributes, type CrmConcorrenteCreationAttributes, CrmConcorrenteHistorico, type CrmConcorrenteHistoricoAttributes, type CrmConcorrenteHistoricoCreationAttributes, CrmConfiguracoes, type CrmConfiguracoesAttributes, type CrmConfiguracoesCreationAttributes, CrmCores, type CrmCoresAttributes, type CrmCoresCreationAttributes, CrmEmailFila, type CrmEmailFilaAttributes, type CrmEmailFilaCreationAttributes, CrmEmailLog, type CrmEmailLogAttributes, type CrmEmailLogCreationAttributes, CrmEmailMarketing, type CrmEmailMarketingAttributes, type CrmEmailMarketingCreationAttributes, CrmEmails, type CrmEmailsAttributes, type CrmEmailsCreationAttributes, CrmFiltros, type CrmFiltrosAttributes, type CrmFiltrosCreationAttributes, CrmFunil, type CrmFunilAttributes, type CrmFunilCreationAttributes, CrmFunilEstagios, type CrmFunilEstagiosAttributes, type CrmFunilEstagiosCreationAttributes, CrmHistorico, type CrmHistoricoAttributes, type CrmHistoricoCreationAttributes, CrmModeloDocumento, type CrmModeloDocumentoAttributes, type CrmModeloDocumentoCreationAttributes, CrmModeloEmail, type CrmModeloEmailAttributes, type CrmModeloEmailCreationAttributes, CrmNegociacoes, CrmNegociacoesArquivos, type CrmNegociacoesArquivosAttributes, type CrmNegociacoesArquivosCreationAttributes, type CrmNegociacoesAttributes, type CrmNegociacoesCreationAttributes, CrmNegociacoesEstagios, type CrmNegociacoesEstagiosAttributes, type CrmNegociacoesEstagiosCreationAttributes, CrmNegociacoesProdutos, type CrmNegociacoesProdutosAttributes, type CrmNegociacoesProdutosCreationAttributes, CrmPerfil, type CrmPerfilAttributes, type CrmPerfilCreationAttributes, CrmPesoCalculo, type CrmPesoCalculoAttributes, type CrmPesoCalculoCreationAttributes, CrmPlanosNegociacoes, type CrmPlanosNegociacoesAttributes, type CrmPlanosNegociacoesCreationAttributes, CrmPlanosNegociacoesProjeto, type CrmPlanosNegociacoesProjetoAttributes, type CrmPlanosNegociacoesProjetoCreationAttributes, CrmPlanosNegociacoesRegioesViaveis, type CrmPlanosNegociacoesRegioesViaveisAttributes, type CrmPlanosNegociacoesRegioesViaveisCreationAttributes, CrmProspeccaoAnotacoes, type CrmProspeccaoAnotacoesAttributes, type CrmProspeccaoAnotacoesCreationAttributes, CrmProspeccaoPropostas, CrmProspeccaoPropostasArquivos, type CrmProspeccaoPropostasArquivosAttributes, type CrmProspeccaoPropostasArquivosCreationAttributes, type CrmProspeccaoPropostasAttributes, type CrmProspeccaoPropostasCreationAttributes, CrmProspeccaoPropostasTipos, type CrmProspeccaoPropostasTiposAttributes, type CrmProspeccaoPropostasTiposCreationAttributes, CrmSecretaria, type CrmSecretariaAttributes, type CrmSecretariaCreationAttributes, CrmSecretariaPerguntas, type CrmSecretariaPerguntasAttributes, type CrmSecretariaPerguntasCreationAttributes, CrmSmsFila, type CrmSmsFilaAttributes, type CrmSmsFilaCreationAttributes, CrmSmsLog, type CrmSmsLogAttributes, type CrmSmsLogCreationAttributes, CrmSmsMarketing, type CrmSmsMarketingAttributes, type CrmSmsMarketingCreationAttributes, CrmSubstatus, type CrmSubstatusAttributes, type CrmSubstatusCreationAttributes, CrmTelegramMarketing, type CrmTelegramMarketingAttributes, type CrmTelegramMarketingCreationAttributes, CrmTipoCandidato, type CrmTipoCandidatoAttributes, type CrmTipoCandidatoCreationAttributes, CronRelatorios, type CronRelatoriosAttributes, type CronRelatoriosCreationAttributes, CsosnCst, type CsosnCstAttributes, type CsosnCstCreationAttributes, CxMensagens, type CxMensagensAttributes, type CxMensagensCreationAttributes, DadosBancarios, type DadosBancariosAttributes, type DadosBancariosCreationAttributes, DashCardsMemcached, type DashCardsMemcachedAttributes, type DashCardsMemcachedCreationAttributes, Departamento, type DepartamentoAttributes, type DepartamentoCreationAttributes, DfCategoriaTipo, type DfCategoriaTipoAttributes, type DfCategoriaTipoCreationAttributes, DfConexaoElemento, type DfConexaoElementoAttributes, type DfConexaoElementoCreationAttributes, DfConexoes, type DfConexoesAttributes, type DfConexoesCreationAttributes, DfConexoesElementosCoordenadas, type DfConexoesElementosCoordenadasAttributes, type DfConexoesElementosCoordenadasCreationAttributes, DfConfig, type DfConfigAttributes, type DfConfigCreationAttributes, DfCoordenada, type DfCoordenadaAttributes, type DfCoordenadaCreationAttributes, DfCoordenadas, type DfCoordenadasAttributes, type DfCoordenadasCreationAttributes, DfDiretorio, type DfDiretorioAttributes, type DfDiretorioCreationAttributes, DfElemento, type DfElementoAttributes, DfElementoCoordenada, type DfElementoCoordenadaAttributes, type DfElementoCoordenadaCreationAttributes, type DfElementoCreationAttributes, DfElementos, type DfElementosAttributes, DfElementosCoordenadas, type DfElementosCoordenadasAttributes, type DfElementosCoordenadasCreationAttributes, type DfElementosCreationAttributes, DfFusao, type DfFusaoAttributes, type DfFusaoCreationAttributes, DfFusaoTipo, type DfFusaoTipoAttributes, type DfFusaoTipoCreationAttributes, DfMesclaProjeto, type DfMesclaProjetoAttributes, type DfMesclaProjetoCreationAttributes, DfPadraoCores, type DfPadraoCoresAttributes, type DfPadraoCoresCreationAttributes, DfParametro, type DfParametroAttributes, type DfParametroCreationAttributes, DfProjeto, type DfProjetoAttributes, type DfProjetoCreationAttributes, DfProjetoFuncionarios, type DfProjetoFuncionariosAttributes, type DfProjetoFuncionariosCreationAttributes, DfRompimentoFibraCabo, type DfRompimentoFibraCaboAttributes, type DfRompimentoFibraCaboCreationAttributes, DfTipoElemento, type DfTipoElementoAttributes, type DfTipoElementoCreationAttributes, DfTipoElementoRegiaoPlano, type DfTipoElementoRegiaoPlanoAttributes, type DfTipoElementoRegiaoPlanoCreationAttributes, DiciInfraestrutura, type DiciInfraestruturaAttributes, type DiciInfraestruturaCreationAttributes, Dictionary, type DictionaryAttributes, type DictionaryCreationAttributes, DocFiltros, type DocFiltrosAttributes, type DocFiltrosCreationAttributes, ElementoArquivos, type ElementoArquivosAttributes, type ElementoArquivosCreationAttributes, Empresa, type EmpresaAttributes, type EmpresaCreationAttributes, EmpresaSetor, type EmpresaSetorAttributes, type EmpresaSetorCreationAttributes, Entrada, type EntradaAttributes, type EntradaCreationAttributes, EntradaDfe, type EntradaDfeAttributes, type EntradaDfeCreationAttributes, EntradaNfeDiAdicao, type EntradaNfeDiAdicaoAttributes, type EntradaNfeDiAdicaoCreationAttributes, EntradaPedido, type EntradaPedidoAttributes, type EntradaPedidoCreationAttributes, EquipamentoFuncionario, type EquipamentoFuncionarioAttributes, type EquipamentoFuncionarioCreationAttributes, EquipamentoTermoModelo, type EquipamentoTermoModeloAttributes, type EquipamentoTermoModeloCreationAttributes, EstoqueMinMax, type EstoqueMinMaxAttributes, type EstoqueMinMaxCreationAttributes, EstoqueProdutosAlmoxFilial, type EstoqueProdutosAlmoxFilialAttributes, type EstoqueProdutosAlmoxFilialCreationAttributes, Estrutura, type EstruturaAttributes, type EstruturaCreationAttributes, EstruturaHistorico, type EstruturaHistoricoAttributes, type EstruturaHistoricoCreationAttributes, Fabricantes, type FabricantesAttributes, type FabricantesCreationAttributes, Fatura, type FaturaAttributes, type FaturaCreationAttributes, FaturaFnAreceber, type FaturaFnAreceberAttributes, type FaturaFnAreceberCreationAttributes, FaturaGeracaoFinanceiroLog, type FaturaGeracaoFinanceiroLogAttributes, type FaturaGeracaoFinanceiroLogCreationAttributes, FaturaGeracaoLog, type FaturaGeracaoLogAttributes, type FaturaGeracaoLogCreationAttributes, FaturaMigracaoLog, type FaturaMigracaoLogAttributes, type FaturaMigracaoLogCreationAttributes, FaturaMovimentoProdutos, type FaturaMovimentoProdutosAttributes, type FaturaMovimentoProdutosCreationAttributes, Favorite, type FavoriteAttributes, type FavoriteCreationAttributes, FechamentoAnual, type FechamentoAnualAttributes, type FechamentoAnualCreationAttributes, Fiador, type FiadorAttributes, type FiadorCreationAttributes, FiberdocsUsuarioConfig, type FiberdocsUsuarioConfigAttributes, type FiberdocsUsuarioConfigCreationAttributes, Filial, type FilialAttributes, type FilialCreationAttributes, FilialIssExig, type FilialIssExigAttributes, type FilialIssExigCreationAttributes, FilialUsuario, type FilialUsuarioAttributes, type FilialUsuarioCreationAttributes, FlAdtoSalario, type FlAdtoSalarioAttributes, type FlAdtoSalarioCreationAttributes, FlFolha, type FlFolhaAttributes, type FlFolhaCreationAttributes, FlFuncoes, type FlFuncoesAttributes, type FlFuncoesCreationAttributes, FnAdtoCliente, type FnAdtoClienteAttributes, type FnAdtoClienteCreationAttributes, FnAdtoFornecedor, type FnAdtoFornecedorAttributes, type FnAdtoFornecedorCreationAttributes, FnApagar, FnApagarArquivos, type FnApagarArquivosAttributes, type FnApagarArquivosCreationAttributes, type FnApagarAttributes, FnApagarAuditoria, type FnApagarAuditoriaAttributes, type FnApagarAuditoriaCreationAttributes, type FnApagarCreationAttributes, FnApagarLote, FnApagarLoteArquivo, type FnApagarLoteArquivoAttributes, type FnApagarLoteArquivoCreationAttributes, type FnApagarLoteAttributes, type FnApagarLoteCreationAttributes, FnApagarLoteLog, type FnApagarLoteLogAttributes, type FnApagarLoteLogCreationAttributes, FnApagarLotePagamento, type FnApagarLotePagamentoAttributes, type FnApagarLotePagamentoCreationAttributes, FnApagarLotePagamentoLog, type FnApagarLotePagamentoLogAttributes, type FnApagarLotePagamentoLogCreationAttributes, FnApagarRemessaLote, type FnApagarRemessaLoteAttributes, type FnApagarRemessaLoteCreationAttributes, FnApagarRetornoLote, type FnApagarRetornoLoteAttributes, type FnApagarRetornoLoteCreationAttributes, FnApagarRetornoLoteRegistros, type FnApagarRetornoLoteRegistrosAttributes, type FnApagarRetornoLoteRegistrosCreationAttributes, FnAreceber, FnAreceberAcrescimo, type FnAreceberAcrescimoAttributes, type FnAreceberAcrescimoCreationAttributes, FnAreceberAltCarteira, type FnAreceberAltCarteiraAttributes, type FnAreceberAltCarteiraCreationAttributes, FnAreceberArquivoBoleto, type FnAreceberArquivoBoletoAttributes, type FnAreceberArquivoBoletoCreationAttributes, FnAreceberArquivos, type FnAreceberArquivosAttributes, type FnAreceberArquivosCreationAttributes, type FnAreceberAttributes, FnAreceberBackup, type FnAreceberBackupAttributes, type FnAreceberBackupCreationAttributes, FnAreceberCedente, type FnAreceberCedenteAttributes, type FnAreceberCedenteCreationAttributes, FnAreceberCedenteLote, FnAreceberCedenteLoteArquivo, type FnAreceberCedenteLoteArquivoAttributes, type FnAreceberCedenteLoteArquivoCreationAttributes, type FnAreceberCedenteLoteAttributes, type FnAreceberCedenteLoteCreationAttributes, FnAreceberCedenteRemessaArquivo, type FnAreceberCedenteRemessaArquivoAttributes, type FnAreceberCedenteRemessaArquivoCreationAttributes, type FnAreceberCreationAttributes, FnAreceberDesconto, type FnAreceberDescontoAttributes, type FnAreceberDescontoCreationAttributes, FnAreceberHistBoleto, type FnAreceberHistBoletoAttributes, type FnAreceberHistBoletoCreationAttributes, FnAreceberModelo, type FnAreceberModeloAttributes, type FnAreceberModeloCreationAttributes, FnAreceberMotCancelamento, FnAreceberMotCancelamentoAdicional, type FnAreceberMotCancelamentoAdicionalAttributes, type FnAreceberMotCancelamentoAdicionalCreationAttributes, type FnAreceberMotCancelamentoAttributes, type FnAreceberMotCancelamentoCreationAttributes, FnAreceberMotivoDesconto, type FnAreceberMotivoDescontoAttributes, type FnAreceberMotivoDescontoCreationAttributes, FnAreceberNotasGeradas, type FnAreceberNotasGeradasAttributes, type FnAreceberNotasGeradasCreationAttributes, FnAreceberRemessas, FnAreceberRemessasArquivo, type FnAreceberRemessasArquivoAttributes, type FnAreceberRemessasArquivoCreationAttributes, type FnAreceberRemessasAttributes, type FnAreceberRemessasCreationAttributes, FnAreceberXml, type FnAreceberXmlAttributes, type FnAreceberXmlCreationAttributes, FnCarteiraCobranca, FnCarteiraCobrancaAlternativas, type FnCarteiraCobrancaAlternativasAttributes, type FnCarteiraCobrancaAlternativasCreationAttributes, type FnCarteiraCobrancaAttributes, type FnCarteiraCobrancaCreationAttributes, FnCarteiraCobrancaParam, type FnCarteiraCobrancaParamAttributes, type FnCarteiraCobrancaParamCreationAttributes, FnCheque, type FnChequeAttributes, type FnChequeCreationAttributes, FnChequeMovimento, type FnChequeMovimentoAttributes, type FnChequeMovimentoCreationAttributes, FnConciliacaoLote, type FnConciliacaoLoteAttributes, type FnConciliacaoLoteCreationAttributes, FnConciliacaoLoteLog, type FnConciliacaoLoteLogAttributes, type FnConciliacaoLoteLogCreationAttributes, FnDespesaTipo, type FnDespesaTipoAttributes, type FnDespesaTipoCreationAttributes, FnExtrato, type FnExtratoAttributes, FnExtratoBackup, type FnExtratoBackupAttributes, type FnExtratoBackupCreationAttributes, type FnExtratoCreationAttributes, FnFeriados, type FnFeriadosAttributes, type FnFeriadosCreationAttributes, FnMovimFinan, type FnMovimFinanAttributes, FnMovimFinanBackup, type FnMovimFinanBackupAttributes, type FnMovimFinanBackupCreationAttributes, FnMovimFinanClasse, type FnMovimFinanClasseAttributes, type FnMovimFinanClasseCreationAttributes, type FnMovimFinanCreationAttributes, FnMovimFinanLanc, type FnMovimFinanLancAttributes, type FnMovimFinanLancCreationAttributes, FnMovimFinanLiquidacoes, type FnMovimFinanLiquidacoesAttributes, type FnMovimFinanLiquidacoesCreationAttributes, FnRenegociacao, type FnRenegociacaoAttributes, type FnRenegociacaoCreationAttributes, FnTipoDespesa, type FnTipoDespesaAttributes, type FnTipoDespesaCreationAttributes, FnTransferenciaCaixa, type FnTransferenciaCaixaAttributes, type FnTransferenciaCaixaCreationAttributes, FolhaTurno, type FolhaTurnoAttributes, type FolhaTurnoCreationAttributes, Fornecedor, FornecedorArquivos, type FornecedorArquivosAttributes, type FornecedorArquivosCreationAttributes, type FornecedorAttributes, FornecedorContratoModelo, type FornecedorContratoModeloAttributes, type FornecedorContratoModeloCreationAttributes, type FornecedorCreationAttributes, FornecedorTipo, type FornecedorTipoAttributes, type FornecedorTipoCreationAttributes, FrFaturamentoClassificacoes, type FrFaturamentoClassificacoesAttributes, type FrFaturamentoClassificacoesCreationAttributes, FuncionarioSetores, type FuncionarioSetoresAttributes, type FuncionarioSetoresCreationAttributes, Funcionarios, FuncionariosArquivos, type FuncionariosArquivosAttributes, type FuncionariosArquivosCreationAttributes, type FuncionariosAttributes, type FuncionariosCreationAttributes, FuncionariosEquipes, type FuncionariosEquipesAttributes, type FuncionariosEquipesCreationAttributes, GatewayOmnichannel, type GatewayOmnichannelAttributes, type GatewayOmnichannelCreationAttributes, GeracaoFinanceiroFatura, type GeracaoFinanceiroFaturaAttributes, type GeracaoFinanceiroFaturaCreationAttributes, GeracaoLote, GeracaoLoteAgrupFinan, type GeracaoLoteAgrupFinanAttributes, type GeracaoLoteAgrupFinanCreationAttributes, GeracaoLoteAssinaturas, type GeracaoLoteAssinaturasAttributes, type GeracaoLoteAssinaturasCreationAttributes, type GeracaoLoteAttributes, type GeracaoLoteCreationAttributes, GeracaoLoteLog, type GeracaoLoteLogAttributes, type GeracaoLoteLogCreationAttributes, GeracaoVinculoConvenioNfContrato, type GeracaoVinculoConvenioNfContratoAttributes, type GeracaoVinculoConvenioNfContratoCreationAttributes, GrupoProdutos, type GrupoProdutosAttributes, type GrupoProdutosCreationAttributes, HistoricoGeracaoSped, type HistoricoGeracaoSpedAttributes, type HistoricoGeracaoSpedCreationAttributes, HistoricoNotasFiscais, type HistoricoNotasFiscaisAttributes, type HistoricoNotasFiscaisCreationAttributes, HotsiteModeloNotificacoesPush, type HotsiteModeloNotificacoesPushAttributes, type HotsiteModeloNotificacoesPushCreationAttributes, HsAdmArtigos, type HsAdmArtigosAttributes, type HsAdmArtigosCreationAttributes, HsAdmCategorias, type HsAdmCategoriasAttributes, type HsAdmCategoriasCreationAttributes, HsAdmItemMenu, type HsAdmItemMenuAttributes, type HsAdmItemMenuCreationAttributes, HsAdmSecao, type HsAdmSecaoAttributes, type HsAdmSecaoCreationAttributes, HsAdminMenu, type HsAdminMenuAttributes, type HsAdminMenuCreationAttributes, HsBanner, type HsBannerAttributes, HsBannerCategorias, type HsBannerCategoriasAttributes, type HsBannerCategoriasCreationAttributes, type HsBannerCreationAttributes, HsConfigEcommerce, type HsConfigEcommerceAttributes, type HsConfigEcommerceCreationAttributes, HsContatos, type HsContatosAttributes, HsContatosCategoria, type HsContatosCategoriaAttributes, type HsContatosCategoriaCreationAttributes, type HsContatosCreationAttributes, HsEnquete, type HsEnqueteAttributes, type HsEnqueteCreationAttributes, HsFilmes, type HsFilmesAttributes, HsFilmesCategoria, type HsFilmesCategoriaAttributes, type HsFilmesCategoriaCreationAttributes, type HsFilmesCreationAttributes, HsHtml, type HsHtmlAttributes, type HsHtmlCreationAttributes, HsLinks, type HsLinksAttributes, HsLinksCategorias, type HsLinksCategoriasAttributes, type HsLinksCategoriasCreationAttributes, type HsLinksCreationAttributes, HsLogomarca, type HsLogomarcaAttributes, type HsLogomarcaCreationAttributes, HsModuloMenu, type HsModuloMenuAttributes, type HsModuloMenuCreationAttributes, HsModulos, type HsModulosAttributes, type HsModulosCreationAttributes, HsOpcao, type HsOpcaoAttributes, type HsOpcaoCreationAttributes, HsProdutosDados, type HsProdutosDadosAttributes, type HsProdutosDadosCreationAttributes, HsPublicidade, type HsPublicidadeAttributes, type HsPublicidadeCreationAttributes, HsSlideshow, type HsSlideshowAttributes, type HsSlideshowCreationAttributes, HsSlideshowImg, type HsSlideshowImgAttributes, type HsSlideshowImgCreationAttributes, HsSsl, type HsSslAttributes, type HsSslCreationAttributes, HsStatsPaginas, type HsStatsPaginasAttributes, type HsStatsPaginasCreationAttributes, HsStatsVisitante, type HsStatsVisitanteAttributes, type HsStatsVisitanteCreationAttributes, HsTipoModulo, type HsTipoModuloAttributes, type HsTipoModuloCreationAttributes, type IXCSoftModels, type IXCSoftModelsAttributes, IXCSoftService, ImCondominio, type ImCondominioAttributes, type ImCondominioCreationAttributes, ImCondominioLancMensal, type ImCondominioLancMensalAttributes, type ImCondominioLancMensalCreationAttributes, ImCondominioLancPadrao, type ImCondominioLancPadraoAttributes, type ImCondominioLancPadraoCreationAttributes, ImContrato, type ImContratoAttributes, type ImContratoCreationAttributes, ImContratosAluguel, type ImContratosAluguelAttributes, type ImContratosAluguelCreationAttributes, ImImovel, type ImImovelAttributes, type ImImovelCreationAttributes, ImImovelImg, type ImImovelImgAttributes, type ImImovelImgCreationAttributes, ImImovelVantagem, type ImImovelVantagemAttributes, type ImImovelVantagemCreationAttributes, ImTipoImovel, type ImTipoImovelAttributes, type ImTipoImovelCreationAttributes, ImVantagens, type ImVantagensAttributes, type ImVantagensCreationAttributes, IndicacaoContrato, type IndicacaoContratoAttributes, type IndicacaoContratoCreationAttributes, InmapAnalytics, type InmapAnalyticsAttributes, type InmapAnalyticsCreationAttributes, InmapSalesEtiqueta, type InmapSalesEtiquetaAttributes, type InmapSalesEtiquetaCreationAttributes, InmapSalesItemEtiqueta, type InmapSalesItemEtiquetaAttributes, type InmapSalesItemEtiquetaCreationAttributes, IntegracaoFiscalCol, type IntegracaoFiscalColAttributes, type IntegracaoFiscalColCreationAttributes, IntegracaoFiscalFilialCol, type IntegracaoFiscalFilialColAttributes, type IntegracaoFiscalFilialColCreationAttributes, IntegracaoSerasa, type IntegracaoSerasaAttributes, type IntegracaoSerasaCreationAttributes, Integracoes, IntegracoesAssinaturaDigital, type IntegracoesAssinaturaDigitalAttributes, type IntegracoesAssinaturaDigitalCreationAttributes, type IntegracoesAttributes, IntegracoesCgnat, type IntegracoesCgnatAttributes, type IntegracoesCgnatCreationAttributes, type IntegracoesCreationAttributes, IntegracoesIot, type IntegracoesIotAttributes, type IntegracoesIotCreationAttributes, IntegracoesOidc, type IntegracoesOidcAttributes, type IntegracoesOidcCreationAttributes, IntegracoesRedes, type IntegracoesRedesAttributes, type IntegracoesRedesCreationAttributes, Inventario, type InventarioAttributes, type InventarioCreationAttributes, ItemPatrimonio, type ItemPatrimonioAttributes, type ItemPatrimonioCreationAttributes, ItensCarga, type ItensCargaAttributes, type ItensCargaCreationAttributes, ItensPedido, type ItensPedidoAttributes, type ItensPedidoCreationAttributes, ItensRequisicaoDevolucaoMaterial, type ItensRequisicaoDevolucaoMaterialAttributes, type ItensRequisicaoDevolucaoMaterialCreationAttributes, IxcFalhaTarefa, type IxcFalhaTarefaAttributes, type IxcFalhaTarefaCreationAttributes, IxcLogs, type IxcLogsAttributes, type IxcLogsCreationAttributes, IxcNotificationUsuarios, type IxcNotificationUsuariosAttributes, type IxcNotificationUsuariosCreationAttributes, IxcNotifications, type IxcNotificationsAttributes, type IxcNotificationsCreationAttributes, IxcPermissoes, IxcPermissoesAbas, type IxcPermissoesAbasAttributes, type IxcPermissoesAbasCreationAttributes, type IxcPermissoesAttributes, IxcPermissoesBotoes, type IxcPermissoesBotoesAttributes, type IxcPermissoesBotoesCreationAttributes, IxcPermissoesCampos, type IxcPermissoesCamposAttributes, type IxcPermissoesCamposCreationAttributes, type IxcPermissoesCreationAttributes, KmlImportacaoLog, type KmlImportacaoLogAttributes, type KmlImportacaoLogCreationAttributes, LeadArquivos, type LeadArquivosAttributes, type LeadArquivosCreationAttributes, LicencaSummit, type LicencaSummitAttributes, type LicencaSummitCreationAttributes, LicencasIot, type LicencasIotAttributes, type LicencasIotCreationAttributes, LicencasProdutosIot, type LicencasProdutosIotAttributes, type LicencasProdutosIotCreationAttributes, LinhaMvno, type LinhaMvnoAttributes, type LinhaMvnoCreationAttributes, LinhaMvnoDadosAdicionais, type LinhaMvnoDadosAdicionaisAttributes, type LinhaMvnoDadosAdicionaisCreationAttributes, LinhaMvnoTmp, type LinhaMvnoTmpAttributes, type LinhaMvnoTmpCreationAttributes, ListarBackupsDrive, type ListarBackupsDriveAttributes, type ListarBackupsDriveCreationAttributes, LogAcesso, type LogAcessoAttributes, type LogAcessoCreationAttributes, LogAtualizacoes, type LogAtualizacoesAttributes, type LogAtualizacoesCreationAttributes, LogBackup, type LogBackupAttributes, type LogBackupCreationAttributes, LogImportacaoCdrSummit, type LogImportacaoCdrSummitAttributes, type LogImportacaoCdrSummitCreationAttributes, LogIntegracaoAtualizado, type LogIntegracaoAtualizadoAttributes, type LogIntegracaoAtualizadoCreationAttributes, LogRadPortaFtth, type LogRadPortaFtthAttributes, type LogRadPortaFtthCreationAttributes, LogRotinasCobrancas, type LogRotinasCobrancasAttributes, type LogRotinasCobrancasCreationAttributes, LogTarefaGateway, type LogTarefaGatewayAttributes, type LogTarefaGatewayCreationAttributes, LogVoip, type LogVoipAttributes, type LogVoipCreationAttributes, LoginBg, type LoginBgAttributes, type LoginBgCreationAttributes, LogsAtualizacaoSoftware, type LogsAtualizacaoSoftwareAttributes, type LogsAtualizacaoSoftwareCreationAttributes, LogsConfig, type LogsConfigAttributes, type LogsConfigCreationAttributes, LogsErrosIntegracoes, type LogsErrosIntegracoesAttributes, type LogsErrosIntegracoesCreationAttributes, LogsExclusao, type LogsExclusaoAttributes, type LogsExclusaoCreationAttributes, LogsOmnichannel, type LogsOmnichannelAttributes, type LogsOmnichannelCreationAttributes, LogsPatrimonioSerieMac, type LogsPatrimonioSerieMacAttributes, type LogsPatrimonioSerieMacCreationAttributes, LogsTarefas, type LogsTarefasAttributes, type LogsTarefasCreationAttributes, Lote, type LoteAttributes, type LoteCreationAttributes, LoteEnvio, type LoteEnvioAttributes, type LoteEnvioCreationAttributes, LoteEnvios, type LoteEnviosAttributes, type LoteEnviosCreationAttributes, ManifestaNfe, type ManifestaNfeAttributes, type ManifestaNfeCreationAttributes, MessageIntegrations, type MessageIntegrationsAttributes, type MessageIntegrationsCreationAttributes, MessageIntegrationsTemplates, type MessageIntegrationsTemplatesAttributes, type MessageIntegrationsTemplatesCreationAttributes, MessageQueue, type MessageQueueAttributes, type MessageQueueCreationAttributes, Migrations, type MigrationsAttributes, type MigrationsCreationAttributes, MkInterfaces, type MkInterfacesAttributes, type MkInterfacesCreationAttributes, ModeloAutoprovisionamento, type ModeloAutoprovisionamentoAttributes, type ModeloAutoprovisionamentoCreationAttributes, Moedas, type MoedasAttributes, MoedasCotacao, type MoedasCotacaoAttributes, type MoedasCotacaoCreationAttributes, type MoedasCreationAttributes, MonitoraIndice, type MonitoraIndiceAttributes, type MonitoraIndiceCreationAttributes, MovimentoProdutos, type MovimentoProdutosAttributes, type MovimentoProdutosCreationAttributes, MovimentoProdutosNumerosSerie, type MovimentoProdutosNumerosSerieAttributes, type MovimentoProdutosNumerosSerieCreationAttributes, MpElemento, type MpElementoAttributes, MpElementoCoordenada, type MpElementoCoordenadaAttributes, type MpElementoCoordenadaCreationAttributes, type MpElementoCreationAttributes, MpMiniProjeto, type MpMiniProjetoAttributes, type MpMiniProjetoCreationAttributes, Nas, type NasAttributes, NasCgnat, type NasCgnatAttributes, type NasCgnatCreationAttributes, NasCgnatIpPortas, type NasCgnatIpPortasAttributes, type NasCgnatIpPortasCreationAttributes, NasConfig, type NasConfigAttributes, type NasConfigCreationAttributes, NasConfigNas, type NasConfigNasAttributes, type NasConfigNasCreationAttributes, type NasCreationAttributes, NasRedeLocal, type NasRedeLocalAttributes, type NasRedeLocalCreationAttributes, NasRedeNat, type NasRedeNatAttributes, type NasRedeNatCreationAttributes, NegativacaoSpcSerasa, type NegativacaoSpcSerasaAttributes, type NegativacaoSpcSerasaCreationAttributes, NfArquivoMestre, type NfArquivoMestreAttributes, type NfArquivoMestreCreationAttributes, NfeCartaCorrecao, type NfeCartaCorrecaoAttributes, type NfeCartaCorrecaoCreationAttributes, NfeXmlPdf, type NfeXmlPdfAttributes, type NfeXmlPdfCreationAttributes, NfseXmlPreConsulta, type NfseXmlPreConsultaAttributes, type NfseXmlPreConsultaCreationAttributes, NumerosBinagemDids, type NumerosBinagemDidsAttributes, type NumerosBinagemDidsCreationAttributes, OPASuiteService, Observer2FaModify, type Observer2FaModifyAttributes, type Observer2FaModifyCreationAttributes, OmnichannelMarketing, type OmnichannelMarketingAttributes, type OmnichannelMarketingCreationAttributes, OmnichannelMessageQueue, type OmnichannelMessageQueueAttributes, type OmnichannelMessageQueueCreationAttributes, OnusAutorizacaoMassaConfig, type OnusAutorizacaoMassaConfigAttributes, type OnusAutorizacaoMassaConfigCreationAttributes, OnusAutorizacaoMassaLogs, type OnusAutorizacaoMassaLogsAttributes, type OnusAutorizacaoMassaLogsCreationAttributes, OperadoraTelefonia, type OperadoraTelefoniaAttributes, type OperadoraTelefoniaCreationAttributes, OsRedeNeutra, type OsRedeNeutraAttributes, type OsRedeNeutraCreationAttributes, Pais, type PaisAttributes, type PaisCreationAttributes, Parametros, type ParametrosAttributes, type ParametrosCreationAttributes, ParticaoAssinanteSummit, type ParticaoAssinanteSummitAttributes, type ParticaoAssinanteSummitCreationAttributes, Patrimonio, PatrimonioAlteracaoProduto, type PatrimonioAlteracaoProdutoAttributes, type PatrimonioAlteracaoProdutoCreationAttributes, type PatrimonioAttributes, PatrimonioCategoria, type PatrimonioCategoriaAttributes, type PatrimonioCategoriaCreationAttributes, PatrimonioCategoriaDepreciacao, type PatrimonioCategoriaDepreciacaoAttributes, type PatrimonioCategoriaDepreciacaoCreationAttributes, type PatrimonioCreationAttributes, PatrimonioDepreciacao, type PatrimonioDepreciacaoAttributes, type PatrimonioDepreciacaoCreationAttributes, PatrimonioModeloImpressaoEtiqueta, type PatrimonioModeloImpressaoEtiquetaAttributes, type PatrimonioModeloImpressaoEtiquetaCreationAttributes, PatrimonioMotivoInutilizacao, type PatrimonioMotivoInutilizacaoAttributes, type PatrimonioMotivoInutilizacaoCreationAttributes, PatrimonioMovimentacao, type PatrimonioMovimentacaoAttributes, type PatrimonioMovimentacaoCreationAttributes, PatrimonioSerieMacArquivo, type PatrimonioSerieMacArquivoAttributes, type PatrimonioSerieMacArquivoCreationAttributes, PatrimonioTransferido, type PatrimonioTransferidoAttributes, type PatrimonioTransferidoCreationAttributes, PcpApAcabamento, type PcpApAcabamentoAttributes, type PcpApAcabamentoCreationAttributes, PcpApAssistencia, type PcpApAssistenciaAttributes, type PcpApAssistenciaCreationAttributes, PcpApProducao, type PcpApProducaoAttributes, type PcpApProducaoCreationAttributes, PdvConfig, type PdvConfigAttributes, type PdvConfigCreationAttributes, Pedido, type PedidoAttributes, PedidoCompra, PedidoCompraArquivos, type PedidoCompraArquivosAttributes, type PedidoCompraArquivosCreationAttributes, type PedidoCompraAttributes, type PedidoCompraCreationAttributes, PedidoCompraItens, type PedidoCompraItensAttributes, type PedidoCompraItensCreationAttributes, type PedidoCreationAttributes, PedidoOs, type PedidoOsAttributes, type PedidoOsCreationAttributes, PedidoRequiasicao, type PedidoRequiasicaoAttributes, type PedidoRequiasicaoCreationAttributes, PercursoMdfe, type PercursoMdfeAttributes, type PercursoMdfeCreationAttributes, PerfilJornadaTrabalho, type PerfilJornadaTrabalhoAttributes, type PerfilJornadaTrabalhoCreationAttributes, PerfisVoip, type PerfisVoipAttributes, type PerfisVoipCreationAttributes, PeriodoJornadaTrabalho, type PeriodoJornadaTrabalhoAttributes, type PeriodoJornadaTrabalhoCreationAttributes, Planejamento, PlanejamentoAnalitico, type PlanejamentoAnaliticoAttributes, type PlanejamentoAnaliticoCreationAttributes, PlanejamentoAnaliticoFinan, type PlanejamentoAnaliticoFinanAttributes, type PlanejamentoAnaliticoFinanCreationAttributes, type PlanejamentoAttributes, type PlanejamentoCreationAttributes, PlanejamentoFinan, type PlanejamentoFinanAttributes, type PlanejamentoFinanCreationAttributes, PlanosVoip, type PlanosVoipAttributes, type PlanosVoipCreationAttributes, Plays, type PlaysAttributes, type PlaysCreationAttributes, PortaSbcSummit, type PortaSbcSummitAttributes, type PortaSbcSummitCreationAttributes, PppAnatelFiltros, type PppAnatelFiltrosAttributes, type PppAnatelFiltrosCreationAttributes, PppAnatelTrafego, type PppAnatelTrafegoAttributes, type PppAnatelTrafegoCreationAttributes, Prioridade, type PrioridadeAttributes, type PrioridadeCreationAttributes, PrjProjeto, PrjProjetoAlocacao, type PrjProjetoAlocacaoAttributes, type PrjProjetoAlocacaoCreationAttributes, type PrjProjetoAttributes, type PrjProjetoCreationAttributes, PrjProjetoHistorico, type PrjProjetoHistoricoAttributes, type PrjProjetoHistoricoCreationAttributes, Produtos, ProdutosAnexos, type ProdutosAnexosAttributes, type ProdutosAnexosCreationAttributes, type ProdutosAttributes, ProdutosCnfClassificacaoTributariaCol, type ProdutosCnfClassificacaoTributariaColAttributes, type ProdutosCnfClassificacaoTributariaColCreationAttributes, ProdutosCodServicos, type ProdutosCodServicosAttributes, type ProdutosCodServicosCreationAttributes, ProdutosComposicao, type ProdutosComposicaoAttributes, type ProdutosComposicaoCreationAttributes, ProdutosContratoMvno, type ProdutosContratoMvnoAttributes, type ProdutosContratoMvnoCreationAttributes, type ProdutosCreationAttributes, ProdutosFornecedores, type ProdutosFornecedoresAttributes, type ProdutosFornecedoresCreationAttributes, ProdutosImg, type ProdutosImgAttributes, type ProdutosImgCreationAttributes, ProdutosIntegracao, type ProdutosIntegracaoAttributes, type ProdutosIntegracaoCreationAttributes, ProdutosIxcMvno, type ProdutosIxcMvnoAttributes, type ProdutosIxcMvnoCreationAttributes, ProdutosNcm, type ProdutosNcmAttributes, ProdutosNcmCest, type ProdutosNcmCestAttributes, type ProdutosNcmCestCreationAttributes, type ProdutosNcmCreationAttributes, ProdutosTabalaFipe, type ProdutosTabalaFipeAttributes, type ProdutosTabalaFipeCreationAttributes, ProdutosUnidades, type ProdutosUnidadesAttributes, type ProdutosUnidadesCreationAttributes, ProdutosWizardRequisicao, type ProdutosWizardRequisicaoAttributes, type ProdutosWizardRequisicaoCreationAttributes, ProspeccaoAnotacoes, type ProspeccaoAnotacoesAttributes, type ProspeccaoAnotacoesCreationAttributes, ProvSnmp, type ProvSnmpAttributes, type ProvSnmpCreationAttributes, PushNotificationQueue, type PushNotificationQueueAttributes, type PushNotificationQueueCreationAttributes, PvGrupoBackup, type PvGrupoBackupAttributes, type PvGrupoBackupCreationAttributes, PvGrupoMonitoramento, type PvGrupoMonitoramentoAttributes, type PvGrupoMonitoramentoCreationAttributes, PvMarketing, type PvMarketingAttributes, type PvMarketingCreationAttributes, PvMonitoramentoHosts, type PvMonitoramentoHostsAttributes, type PvMonitoramentoHostsCreationAttributes, PvPublicidade, type PvPublicidadeAttributes, type PvPublicidadeCreationAttributes, PvPublicidadeGrupo, type PvPublicidadeGrupoAttributes, PvPublicidadeGrupoCliente, type PvPublicidadeGrupoClienteAttributes, type PvPublicidadeGrupoClienteCreationAttributes, PvPublicidadeGrupoConcentradores, type PvPublicidadeGrupoConcentradoresAttributes, type PvPublicidadeGrupoConcentradoresCreationAttributes, type PvPublicidadeGrupoCreationAttributes, PvTipoPublicidade, type PvTipoPublicidadeAttributes, type PvTipoPublicidadeCreationAttributes, QuerybuilderVisoes, type QuerybuilderVisoesAttributes, type QuerybuilderVisoesCreationAttributes, RadCaixaFtth, type RadCaixaFtthAttributes, type RadCaixaFtthCreationAttributes, RadCaixaFtthTecnologia, type RadCaixaFtthTecnologiaAttributes, type RadCaixaFtthTecnologiaCreationAttributes, RadDici, type RadDiciAttributes, type RadDiciCreationAttributes, RadDiciItem, type RadDiciItemAttributes, type RadDiciItemCreationAttributes, RadDiciSeac, type RadDiciSeacAttributes, type RadDiciSeacCreationAttributes, RadDiciSeacItem, type RadDiciSeacItemAttributes, type RadDiciSeacItemCreationAttributes, RadDiciStfc, type RadDiciStfcAttributes, type RadDiciStfcCreationAttributes, RadDiciStfcItem, type RadDiciStfcItemAttributes, type RadDiciStfcItemCreationAttributes, RadDns, type RadDnsAttributes, type RadDnsCreationAttributes, RadHardware, type RadHardwareAttributes, type RadHardwareCreationAttributes, RadSici, type RadSiciAttributes, RadSiciCapacidades, type RadSiciCapacidadesAttributes, type RadSiciCapacidadesCreationAttributes, type RadSiciCreationAttributes, RadSiciEmpregos, type RadSiciEmpregosAttributes, type RadSiciEmpregosCreationAttributes, RadSiciParametros, type RadSiciParametrosAttributes, type RadSiciParametrosCreationAttributes, RadSiciRegistros, type RadSiciRegistrosAttributes, type RadSiciRegistrosCreationAttributes, Radacct, type RadacctAttributes, RadacctCgnat, type RadacctCgnatAttributes, type RadacctCgnatCreationAttributes, type RadacctCreationAttributes, Radacessoslte, type RadacessoslteAttributes, type RadacessoslteCreationAttributes, RadauthIpsAutorizados, type RadauthIpsAutorizadosAttributes, type RadauthIpsAutorizadosCreationAttributes, RadauthNas, type RadauthNasAttributes, type RadauthNasCreationAttributes, RadauthRadacct, type RadauthRadacctAttributes, type RadauthRadacctCreationAttributes, RadauthRadcheck, type RadauthRadcheckAttributes, type RadauthRadcheckCreationAttributes, RadauthRadgroupcheck, type RadauthRadgroupcheckAttributes, type RadauthRadgroupcheckCreationAttributes, RadauthRadgroupreply, type RadauthRadgroupreplyAttributes, type RadauthRadgroupreplyCreationAttributes, RadauthRadpostauth, type RadauthRadpostauthAttributes, type RadauthRadpostauthCreationAttributes, RadauthRadreply, type RadauthRadreplyAttributes, type RadauthRadreplyCreationAttributes, RadauthRadusergroup, type RadauthRadusergroupAttributes, type RadauthRadusergroupCreationAttributes, Radcache, type RadcacheAttributes, type RadcacheCreationAttributes, RadcacheNocache, type RadcacheNocacheAttributes, type RadcacheNocacheCreationAttributes, Radcheck, type RadcheckAttributes, type RadcheckCreationAttributes, Radgroupcheck, type RadgroupcheckAttributes, type RadgroupcheckCreationAttributes, Radgroupreply, type RadgroupreplyAttributes, type RadgroupreplyCreationAttributes, RadgrupoPlanos, type RadgrupoPlanosAttributes, RadgrupoPlanosConf, type RadgrupoPlanosConfAttributes, type RadgrupoPlanosConfCreationAttributes, type RadgrupoPlanosCreationAttributes, Radgrupos, type RadgruposAttributes, type RadgruposCreationAttributes, RadgruposPools, type RadgruposPoolsAttributes, type RadgruposPoolsCreationAttributes, Radhotspot, type RadhotspotAttributes, type RadhotspotCreationAttributes, Radintegracao, type RadintegracaoAttributes, type RadintegracaoCreationAttributes, Radippool, type RadippoolAttributes, type RadippoolCreationAttributes, Radippoolfixo, type RadippoolfixoAttributes, type RadippoolfixoCreationAttributes, Radippoolfixoipv6, type Radippoolfixoipv6Attributes, type Radippoolfixoipv6CreationAttributes, Radippoolv6, type Radippoolv6Attributes, type Radippoolv6CreationAttributes, Radpool, type RadpoolAttributes, type RadpoolCreationAttributes, Radpop, type RadpopAttributes, type RadpopCreationAttributes, RadpopEstrutura, type RadpopEstruturaAttributes, type RadpopEstruturaCreationAttributes, RadpopOcorrencias, type RadpopOcorrenciasAttributes, type RadpopOcorrenciasCreationAttributes, RadpopOltSlot, type RadpopOltSlotAttributes, type RadpopOltSlotCreationAttributes, RadpopRadio, type RadpopRadioAttributes, RadpopRadioBackups, type RadpopRadioBackupsAttributes, type RadpopRadioBackupsCreationAttributes, RadpopRadioCliente, type RadpopRadioClienteAttributes, type RadpopRadioClienteCreationAttributes, RadpopRadioClienteFibra, type RadpopRadioClienteFibraAttributes, type RadpopRadioClienteFibraCreationAttributes, RadpopRadioClienteFibraHistorico, type RadpopRadioClienteFibraHistoricoAttributes, type RadpopRadioClienteFibraHistoricoCreationAttributes, RadpopRadioClienteFibraPerfil, type RadpopRadioClienteFibraPerfilAttributes, type RadpopRadioClienteFibraPerfilCreationAttributes, RadpopRadioClienteLog, type RadpopRadioClienteLogAttributes, type RadpopRadioClienteLogCreationAttributes, type RadpopRadioCreationAttributes, RadpopRadioLog, type RadpopRadioLogAttributes, type RadpopRadioLogCreationAttributes, RadpopRadioPorta, type RadpopRadioPortaAttributes, type RadpopRadioPortaCreationAttributes, RadpopRadioPortaLog, type RadpopRadioPortaLogAttributes, type RadpopRadioPortaLogCreationAttributes, Radpostauth, type RadpostauthAttributes, type RadpostauthCreationAttributes, Radreply, type RadreplyAttributes, type RadreplyCreationAttributes, Radusergroup, type RadusergroupAttributes, type RadusergroupCreationAttributes, Radusuarios, type RadusuariosAttributes, RadusuariosCircuito, type RadusuariosCircuitoAttributes, type RadusuariosCircuitoCreationAttributes, RadusuariosClienteFibra, type RadusuariosClienteFibraAttributes, type RadusuariosClienteFibraCreationAttributes, RadusuariosConsumo, type RadusuariosConsumoAttributes, type RadusuariosConsumoCreationAttributes, RadusuariosConsumoD, type RadusuariosConsumoDAttributes, type RadusuariosConsumoDCreationAttributes, RadusuariosConsumoM, type RadusuariosConsumoMAttributes, type RadusuariosConsumoMCreationAttributes, type RadusuariosCreationAttributes, RadusuariosCunsumoMensal, type RadusuariosCunsumoMensalAttributes, type RadusuariosCunsumoMensalCreationAttributes, RadusuariosRadacct, type RadusuariosRadacctAttributes, type RadusuariosRadacctCreationAttributes, RadusuariosRedesAdicionais, type RadusuariosRedesAdicionaisAttributes, type RadusuariosRedesAdicionaisCreationAttributes, RamaisCallcenter, type RamaisCallcenterAttributes, type RamaisCallcenterCreationAttributes, RamaisSip, type RamaisSipAttributes, type RamaisSipCreationAttributes, RastreadoresAcessosApi, type RastreadoresAcessosApiAttributes, type RastreadoresAcessosApiCreationAttributes, RedeNeutraOperador, type RedeNeutraOperadorAttributes, type RedeNeutraOperadorCreationAttributes, RedesAutorizadas, type RedesAutorizadasAttributes, type RedesAutorizadasCreationAttributes, ReguaCobrancaCobrancas, type ReguaCobrancaCobrancasAttributes, type ReguaCobrancaCobrancasCreationAttributes, ReguaCobrancaCobrancasLogs, type ReguaCobrancaCobrancasLogsAttributes, type ReguaCobrancaCobrancasLogsCreationAttributes, ReguaCobrancaCobrancasOs, type ReguaCobrancaCobrancasOsAttributes, type ReguaCobrancaCobrancasOsCreationAttributes, ReguaCobrancaEnvios, type ReguaCobrancaEnviosAttributes, type ReguaCobrancaEnviosCreationAttributes, ReguaCobrancaLoteCobranca, type ReguaCobrancaLoteCobrancaAttributes, type ReguaCobrancaLoteCobrancaCreationAttributes, ReguaCobrancaLotes, type ReguaCobrancaLotesAttributes, type ReguaCobrancaLotesCreationAttributes, ReguaCobrancaNegativacoes, type ReguaCobrancaNegativacoesAttributes, type ReguaCobrancaNegativacoesCreationAttributes, ReguaCobrancaParametros, type ReguaCobrancaParametrosAttributes, type ReguaCobrancaParametrosCreationAttributes, ReguaCobrancaParametrosDias, type ReguaCobrancaParametrosDiasAttributes, type ReguaCobrancaParametrosDiasCreationAttributes, RelClienteContrato, type RelClienteContratoAttributes, type RelClienteContratoCreationAttributes, RelatorioEmailParametros, type RelatorioEmailParametrosAttributes, type RelatorioEmailParametrosCreationAttributes, RelatorioEnvioEmailParametro, type RelatorioEnvioEmailParametroAttributes, type RelatorioEnvioEmailParametroCreationAttributes, RelatorioFnAreceber, type RelatorioFnAreceberAttributes, type RelatorioFnAreceberCreationAttributes, RelatorioFuncionarioEquipamento, type RelatorioFuncionarioEquipamentoAttributes, type RelatorioFuncionarioEquipamentoCreationAttributes, RelatorioPatrimonio, type RelatorioPatrimonioAttributes, type RelatorioPatrimonioCreationAttributes, RelatorioPatrimonioDivergencia, type RelatorioPatrimonioDivergenciaAttributes, type RelatorioPatrimonioDivergenciaCreationAttributes, RelatorioSuOssChamado, type RelatorioSuOssChamadoAttributes, type RelatorioSuOssChamadoCreationAttributes, RelatorioVdSaida, type RelatorioVdSaidaAttributes, type RelatorioVdSaidaCreationAttributes, RelatoriosClienteContratoEmail, type RelatoriosClienteContratoEmailAttributes, type RelatoriosClienteContratoEmailCreationAttributes, RelatoriosResponsavelCancelNegatDesist, type RelatoriosResponsavelCancelNegatDesistAttributes, type RelatoriosResponsavelCancelNegatDesistCreationAttributes, RemocaoSpcSerasa, type RemocaoSpcSerasaAttributes, type RemocaoSpcSerasaCreationAttributes, RequisicaoCompra, RequisicaoCompraArquivos, type RequisicaoCompraArquivosAttributes, type RequisicaoCompraArquivosCreationAttributes, type RequisicaoCompraAttributes, type RequisicaoCompraCreationAttributes, RequisicaoCompraItens, type RequisicaoCompraItensAttributes, type RequisicaoCompraItensCreationAttributes, RequisicaoDevolucaoMaterial, type RequisicaoDevolucaoMaterialAttributes, type RequisicaoDevolucaoMaterialCreationAttributes, RequisicaoMaterial, type RequisicaoMaterialAttributes, type RequisicaoMaterialCreationAttributes, RequisicaoMaterialItem, type RequisicaoMaterialItemAttributes, type RequisicaoMaterialItemCreationAttributes, RequisicaoMaterialPatrimonioWizard, type RequisicaoMaterialPatrimonioWizardAttributes, type RequisicaoMaterialPatrimonioWizardCreationAttributes, RequisicaoPatrimonio, type RequisicaoPatrimonioAttributes, type RequisicaoPatrimonioCreationAttributes, ReservaRedeNeutra, type ReservaRedeNeutraAttributes, type ReservaRedeNeutraCreationAttributes, RestricoesSerasa, type RestricoesSerasaAttributes, type RestricoesSerasaCreationAttributes, RestricoesSerasaCreditonm, type RestricoesSerasaCreditonmAttributes, type RestricoesSerasaCreditonmCreationAttributes, RetornoEnvioNfe, type RetornoEnvioNfeAttributes, type RetornoEnvioNfeCreationAttributes, RotinaImportacaoServicosAdicionais, type RotinaImportacaoServicosAdicionaisAttributes, type RotinaImportacaoServicosAdicionaisCreationAttributes, RotinaImportacaoServicosAdicionaisDados, type RotinaImportacaoServicosAdicionaisDadosAttributes, type RotinaImportacaoServicosAdicionaisDadosCreationAttributes, RotinaStatusAtendimento, type RotinaStatusAtendimentoAttributes, type RotinaStatusAtendimentoCreationAttributes, SalaDeConferencia, type SalaDeConferenciaAttributes, type SalaDeConferenciaCreationAttributes, SalesUsuarioConfig, type SalesUsuarioConfigAttributes, type SalesUsuarioConfigCreationAttributes, ScriptsAjustes, type ScriptsAjustesAttributes, type ScriptsAjustesCreationAttributes, SegmentoCrm, type SegmentoCrmAttributes, type SegmentoCrmCreationAttributes, ServerInterfaces, type ServerInterfacesAttributes, type ServerInterfacesCreationAttributes, ServiceCores, type ServiceCoresAttributes, type ServiceCoresCreationAttributes, ServiceFiltros, type ServiceFiltrosAttributes, type ServiceFiltrosCreationAttributes, ServiceRoteirizacaoConfig, type ServiceRoteirizacaoConfigAttributes, type ServiceRoteirizacaoConfigCreationAttributes, ServidorSpeedTest, type ServidorSpeedTestAttributes, type ServidorSpeedTestCreationAttributes, ServidoresExternos, type ServidoresExternosAttributes, type ServidoresExternosCreationAttributes, ServidoresExternosIxc, type ServidoresExternosIxcAttributes, type ServidoresExternosIxcCreationAttributes, ServidoresExternosNas, type ServidoresExternosNasAttributes, type ServidoresExternosNasCreationAttributes, ServidoresExternosRadusuarios, type ServidoresExternosRadusuariosAttributes, type ServidoresExternosRadusuariosCreationAttributes, SetorAssunto, type SetorAssuntoAttributes, type SetorAssuntoCreationAttributes, SipConf, type SipConfAttributes, type SipConfCreationAttributes, SmartCardPanaccess, type SmartCardPanaccessAttributes, type SmartCardPanaccessCreationAttributes, SmartCards, type SmartCardsAttributes, type SmartCardsCreationAttributes, SmartTubeDeviceLimit, type SmartTubeDeviceLimitAttributes, type SmartTubeDeviceLimitCreationAttributes, SmartTubeDevices, type SmartTubeDevicesAttributes, type SmartTubeDevicesCreationAttributes, SmartTubeProdutos, type SmartTubeProdutosAttributes, type SmartTubeProdutosCreationAttributes, Sms, type SmsAttributes, type SmsCreationAttributes, Smtp, type SmtpAttributes, type SmtpCreationAttributes, SpedContribuicoes, type SpedContribuicoesAttributes, type SpedContribuicoesCreationAttributes, SpeedTestResultados, type SpeedTestResultadosAttributes, type SpeedTestResultadosCreationAttributes, Status, type StatusAttributes, type StatusCreationAttributes, StatusItem, type StatusItemAttributes, type StatusItemCreationAttributes, SuAtendimentoStatus, type SuAtendimentoStatusAttributes, type SuAtendimentoStatusCreationAttributes, SuCanalAtendimento, type SuCanalAtendimentoAttributes, type SuCanalAtendimentoCreationAttributes, SuDeptoSubGrupoProd, type SuDeptoSubGrupoProdAttributes, type SuDeptoSubGrupoProdCreationAttributes, SuDiagnostico, type SuDiagnosticoAttributes, type SuDiagnosticoCreationAttributes, SuEquipe, type SuEquipeAttributes, type SuEquipeCreationAttributes, SuEventoStatus, type SuEventoStatusAttributes, type SuEventoStatusCreationAttributes, SuMensagens, type SuMensagensAttributes, type SuMensagensCreationAttributes, SuMovTransfAtendimento, type SuMovTransfAtendimentoAttributes, type SuMovTransfAtendimentoCreationAttributes, SuOssAssunto, type SuOssAssuntoAttributes, type SuOssAssuntoCreationAttributes, SuOssChamado, SuOssChamadoArquivos, type SuOssChamadoArquivosAttributes, type SuOssChamadoArquivosCreationAttributes, type SuOssChamadoAttributes, SuOssChamadoComissao, type SuOssChamadoComissaoAttributes, type SuOssChamadoComissaoCreationAttributes, type SuOssChamadoCreationAttributes, SuOssChamadoMensagem, type SuOssChamadoMensagemAttributes, type SuOssChamadoMensagemCreationAttributes, SuOssChamadoMpMiniProjeto, type SuOssChamadoMpMiniProjetoAttributes, type SuOssChamadoMpMiniProjetoCreationAttributes, SuOssChamadoRegiaoManutencao, type SuOssChamadoRegiaoManutencaoAttributes, SuOssChamadoRegiaoManutencaoCaixaAtendimento, type SuOssChamadoRegiaoManutencaoCaixaAtendimentoAttributes, type SuOssChamadoRegiaoManutencaoCaixaAtendimentoCreationAttributes, SuOssChamadoRegiaoManutencaoCaixaEmenda, type SuOssChamadoRegiaoManutencaoCaixaEmendaAttributes, type SuOssChamadoRegiaoManutencaoCaixaEmendaCreationAttributes, type SuOssChamadoRegiaoManutencaoCreationAttributes, SuOssChamadoRegiaoManutencaoRadusuarios, type SuOssChamadoRegiaoManutencaoRadusuariosAttributes, type SuOssChamadoRegiaoManutencaoRadusuariosCreationAttributes, SuOssEvento, type SuOssEventoAttributes, type SuOssEventoCreationAttributes, SuOssKit, type SuOssKitAttributes, type SuOssKitCreationAttributes, SuOssKitEquipamento, type SuOssKitEquipamentoAttributes, type SuOssKitEquipamentoCreationAttributes, SuOssModeloImpressao, type SuOssModeloImpressaoAttributes, type SuOssModeloImpressaoCreationAttributes, SuOssRespostas, type SuOssRespostasAttributes, type SuOssRespostasCreationAttributes, SuTicket, SuTicketArquivos, type SuTicketArquivosAttributes, type SuTicketArquivosCreationAttributes, type SuTicketAttributes, type SuTicketCreationAttributes, SuTicketSetor, type SuTicketSetorAttributes, type SuTicketSetorCreationAttributes, SuTicketStatus, type SuTicketStatusAttributes, type SuTicketStatusCreationAttributes, SuTransfAtendimento, type SuTransfAtendimentoAttributes, type SuTransfAtendimentoCreationAttributes, SubGrupoProdudos, type SubGrupoProdudosAttributes, type SubGrupoProdudosCreationAttributes, SvaConfiguracoes, type SvaConfiguracoesAttributes, type SvaConfiguracoesCreationAttributes, SvaUsuarios, type SvaUsuariosAttributes, type SvaUsuariosCreationAttributes, TabelaPrecos, type TabelaPrecosAttributes, TabelaPrecosCalculo, type TabelaPrecosCalculoAttributes, type TabelaPrecosCalculoCreationAttributes, type TabelaPrecosCreationAttributes, TabelaPrecosProdutos, type TabelaPrecosProdutosAttributes, type TabelaPrecosProdutosCreationAttributes, TableTest, type TableTestAttributes, type TableTestCreationAttributes, Tarifas, type TarifasAttributes, type TarifasCreationAttributes, TarifasGrupos, type TarifasGruposAttributes, type TarifasGruposCreationAttributes, TerminalSmartTube, type TerminalSmartTubeAttributes, type TerminalSmartTubeCreationAttributes, Teste, type TesteAttributes, type TesteCreationAttributes, TipoCliente, type TipoClienteAttributes, type TipoClienteCreationAttributes, TipoDocumento, type TipoDocumentoAttributes, TipoDocumentoCnfClassificacaoTributariaCol, type TipoDocumentoCnfClassificacaoTributariaColAttributes, type TipoDocumentoCnfClassificacaoTributariaColCreationAttributes, type TipoDocumentoCreationAttributes, TransfAlmox, type TransfAlmoxAttributes, type TransfAlmoxCreationAttributes, TransfAlmoxItem, type TransfAlmoxItemAttributes, type TransfAlmoxItemCreationAttributes, TransfAlmoxPatrimonioWizard, type TransfAlmoxPatrimonioWizardAttributes, type TransfAlmoxPatrimonioWizardCreationAttributes, TransfMotCancelamento, type TransfMotCancelamentoAttributes, type TransfMotCancelamentoCreationAttributes, Transportadora, type TransportadoraAttributes, type TransportadoraCreationAttributes, TransportadoraServicos, type TransportadoraServicosAttributes, TransportadoraServicosCep, type TransportadoraServicosCepAttributes, type TransportadoraServicosCepCreationAttributes, type TransportadoraServicosCreationAttributes, TransportadoraVeiculos, type TransportadoraVeiculosAttributes, type TransportadoraVeiculosCreationAttributes, TvCanais, type TvCanaisAttributes, type TvCanaisCreationAttributes, TvEquipamentos, type TvEquipamentosAttributes, type TvEquipamentosCreationAttributes, TvPacotes, type TvPacotesAttributes, type TvPacotesCreationAttributes, TvUsuarios, type TvUsuariosAttributes, type TvUsuariosCreationAttributes, TvUsuariosTmp, type TvUsuariosTmpAttributes, type TvUsuariosTmpCreationAttributes, Uf, type UfAttributes, type UfCreationAttributes, UltimasAlteracoesSenha, type UltimasAlteracoesSenhaAttributes, type UltimasAlteracoesSenhaCreationAttributes, Unidades, type UnidadesAttributes, type UnidadesCreationAttributes, Usuarios, UsuariosAgenda, type UsuariosAgendaAttributes, UsuariosAgendaCompromisso, type UsuariosAgendaCompromissoAttributes, type UsuariosAgendaCompromissoCreationAttributes, type UsuariosAgendaCreationAttributes, type UsuariosAttributes, type UsuariosCreationAttributes, UsuariosGrupo, type UsuariosGrupoAttributes, type UsuariosGrupoCreationAttributes, UsuariosGrupoDashboard, type UsuariosGrupoDashboardAttributes, type UsuariosGrupoDashboardCreationAttributes, UsuariosGrupoMapa, type UsuariosGrupoMapaAttributes, type UsuariosGrupoMapaCreationAttributes, UsuariosPermissoes, type UsuariosPermissoesAttributes, type UsuariosPermissoesCreationAttributes, UsuariosVisao, type UsuariosVisaoAttributes, type UsuariosVisaoCreationAttributes, VdContratos, type VdContratosAttributes, type VdContratosCreationAttributes, VdContratosProdutos, type VdContratosProdutosAttributes, type VdContratosProdutosCreationAttributes, VdSaida, type VdSaidaAttributes, type VdSaidaCreationAttributes, VdSaidaFaturamento, type VdSaidaFaturamentoAttributes, type VdSaidaFaturamentoCreationAttributes, VdSaidaPedidoVenda, type VdSaidaPedidoVendaAttributes, type VdSaidaPedidoVendaCreationAttributes, VdSaidaRpsModeloImpressao, type VdSaidaRpsModeloImpressaoAttributes, type VdSaidaRpsModeloImpressaoCreationAttributes, VdSaidaTransporteReboque, type VdSaidaTransporteReboqueAttributes, type VdSaidaTransporteReboqueCreationAttributes, VdSaidaTransporteVolumes, type VdSaidaTransporteVolumesAttributes, type VdSaidaTransporteVolumesCreationAttributes, Veiculos, VeiculosArquivos, type VeiculosArquivosAttributes, type VeiculosArquivosCreationAttributes, type VeiculosAttributes, VeiculosCondutor, type VeiculosCondutorAttributes, type VeiculosCondutorCreationAttributes, type VeiculosCreationAttributes, VeiculosDespesas, VeiculosDespesasArquivos, type VeiculosDespesasArquivosAttributes, type VeiculosDespesasArquivosCreationAttributes, type VeiculosDespesasAttributes, type VeiculosDespesasCreationAttributes, VeiculosDespesasTipo, type VeiculosDespesasTipoAttributes, type VeiculosDespesasTipoCreationAttributes, VeiculosMdfe, type VeiculosMdfeAttributes, VeiculosMdfeCondutor, type VeiculosMdfeCondutorAttributes, type VeiculosMdfeCondutorCreationAttributes, type VeiculosMdfeCreationAttributes, VeiculosMdfeDocumentos, type VeiculosMdfeDocumentosAttributes, type VeiculosMdfeDocumentosCreationAttributes, VeiculosTracker, type VeiculosTrackerAttributes, type VeiculosTrackerCreationAttributes, Vendedor, type VendedorAttributes, type VendedorCreationAttributes, VinculoRegiaoClienteNeutro, type VinculoRegiaoClienteNeutroAttributes, type VinculoRegiaoClienteNeutroCreationAttributes, VinculoVeiculosDespesasTipo, type VinculoVeiculosDespesasTipoAttributes, type VinculoVeiculosDespesasTipoCreationAttributes, VoipDid, type VoipDidAttributes, type VoipDidCreationAttributes, VoipExtension, type VoipExtensionAttributes, type VoipExtensionCreationAttributes, VoipExtensionGrupo, type VoipExtensionGrupoAttributes, type VoipExtensionGrupoCreationAttributes, VoipFollowme, type VoipFollowmeAttributes, type VoipFollowmeCreationAttributes, VoipFollowmeNumbers, type VoipFollowmeNumbersAttributes, type VoipFollowmeNumbersCreationAttributes, VoipIax, type VoipIaxAttributes, type VoipIaxCreationAttributes, VoipLigacoes, type VoipLigacoesAttributes, type VoipLigacoesCreationAttributes, VoipMensagensUra, type VoipMensagensUraAttributes, type VoipMensagensUraCreationAttributes, VoipNumeroEntrante, type VoipNumeroEntranteAttributes, type VoipNumeroEntranteCreationAttributes, VoipNumeroEntrantePool, type VoipNumeroEntrantePoolAttributes, type VoipNumeroEntrantePoolCreationAttributes, VoipQueueLog, type VoipQueueLogAttributes, type VoipQueueLogCreationAttributes, VoipQueueMembers, type VoipQueueMembersAttributes, type VoipQueueMembersCreationAttributes, VoipQueueRules, type VoipQueueRulesAttributes, type VoipQueueRulesCreationAttributes, VoipQueues, type VoipQueuesAttributes, type VoipQueuesCreationAttributes, VoipSippeers, type VoipSippeersAttributes, type VoipSippeersCreationAttributes, VoipUra, type VoipUraAttributes, type VoipUraCreationAttributes, VoipUraHorariosRange, type VoipUraHorariosRangeAttributes, type VoipUraHorariosRangeCreationAttributes, VoipUraModulos, type VoipUraModulosAttributes, VoipUraModulosAu, type VoipUraModulosAuAttributes, type VoipUraModulosAuCreationAttributes, type VoipUraModulosCreationAttributes, VoipUraModulosHo, type VoipUraModulosHoAttributes, type VoipUraModulosHoCreationAttributes, VoipUraModulosMe, type VoipUraModulosMeAttributes, type VoipUraModulosMeCreationAttributes, VscBatch, type VscBatchAttributes, type VscBatchCreationAttributes, WflInteracoes, type WflInteracoesAttributes, type WflInteracoesCreationAttributes, WflParametroAtendimento, type WflParametroAtendimentoAttributes, type WflParametroAtendimentoCreationAttributes, WflParametroOss, type WflParametroOssAttributes, type WflParametroOssCreationAttributes, WflProcesso, WflProcessoArquivos, type WflProcessoArquivosAttributes, type WflProcessoArquivosCreationAttributes, type WflProcessoAttributes, type WflProcessoCreationAttributes, WflTarefa, type WflTarefaAttributes, type WflTarefaCreationAttributes, WizardOsPatrimonio, WizardOsPatrimonioAssunto, type WizardOsPatrimonioAssuntoAttributes, type WizardOsPatrimonioAssuntoCreationAttributes, type WizardOsPatrimonioAttributes, WizardOsPatrimonioComodato, type WizardOsPatrimonioComodatoAttributes, type WizardOsPatrimonioComodatoCreationAttributes, type WizardOsPatrimonioCreationAttributes, WizardPatrimonioAlteracaoProduto, type WizardPatrimonioAlteracaoProdutoAttributes, type WizardPatrimonioAlteracaoProdutoCreationAttributes, XmlNfse, type XmlNfseAttributes, type XmlNfseCreationAttributes, initModels, logger };
|
|
36211
|
+
export { type IXCSoftModels, type IXCSoftModelsAttributes, IXCSoftService, type OPASuiteCollectionsModels, type OPASuiteDocuments, OPASuiteService, logger };
|