@nomalism-com/api 0.37.1 → 0.37.2
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.cjs +174 -240
- package/dist/index.d.ts +171 -201
- package/dist/index.js +174 -240
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RawAxiosRequestHeaders, AxiosInstance } from 'axios';
|
|
2
2
|
import Nomalism$1 from '@nomalism-com/types';
|
|
3
3
|
|
|
4
|
-
declare class Repository$
|
|
4
|
+
declare class Repository$1N implements Nomalism$1.BankData.IRepository {
|
|
5
5
|
route: string;
|
|
6
6
|
publicRoute: string;
|
|
7
7
|
private api;
|
|
@@ -16,11 +16,11 @@ declare class Repository$1P implements Nomalism$1.BankData.IRepository {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
declare namespace bankData {
|
|
19
|
-
export { Repository$
|
|
19
|
+
export { Repository$1N as default };
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
type IPaginationResponse$5 = Nomalism$1.shared.IPaginationResponse<Nomalism$1.Client.IFindResponse>;
|
|
23
|
-
declare class Repository$
|
|
23
|
+
declare class Repository$1M implements Nomalism$1.Client.IRepository {
|
|
24
24
|
route: string;
|
|
25
25
|
publicRoute: string;
|
|
26
26
|
private api;
|
|
@@ -38,10 +38,10 @@ declare class Repository$1O implements Nomalism$1.Client.IRepository {
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
declare namespace clients {
|
|
41
|
-
export { type IPaginationResponse$5 as IPaginationResponse, Repository$
|
|
41
|
+
export { type IPaginationResponse$5 as IPaginationResponse, Repository$1M as default };
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
declare class Repository$
|
|
44
|
+
declare class Repository$1L implements Nomalism$1.ClientType.IRepository {
|
|
45
45
|
route: string;
|
|
46
46
|
publicRoute: string;
|
|
47
47
|
private api;
|
|
@@ -56,10 +56,10 @@ declare class Repository$1N implements Nomalism$1.ClientType.IRepository {
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
declare namespace clientType {
|
|
59
|
-
export { Repository$
|
|
59
|
+
export { Repository$1L as default };
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
declare class Repository$
|
|
62
|
+
declare class Repository$1K implements Nomalism$1.Chat.IRepository {
|
|
63
63
|
route: string;
|
|
64
64
|
publicRoute: string;
|
|
65
65
|
private api;
|
|
@@ -74,7 +74,7 @@ declare class Repository$1M implements Nomalism$1.Chat.IRepository {
|
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
type IPaginationResponse$4 = Nomalism$1.shared.IPaginationResponse<Nomalism$1.Commissioner.IFindResponse>;
|
|
77
|
-
declare class Repository$
|
|
77
|
+
declare class Repository$1J implements Nomalism$1.Commissioner.IRepository {
|
|
78
78
|
route: string;
|
|
79
79
|
publicRoute: string;
|
|
80
80
|
private api;
|
|
@@ -90,11 +90,11 @@ declare class Repository$1L implements Nomalism$1.Commissioner.IRepository {
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
declare namespace commissioner {
|
|
93
|
-
export { type IPaginationResponse$4 as IPaginationResponse, Repository$
|
|
93
|
+
export { type IPaginationResponse$4 as IPaginationResponse, Repository$1J as default };
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
type IPaginationResponse$3 = Nomalism$1.shared.IPaginationResponse<Nomalism$1.Country.IFindResponse>;
|
|
97
|
-
declare class Repository$
|
|
97
|
+
declare class Repository$1I implements Nomalism$1.Country.IRepository {
|
|
98
98
|
route: string;
|
|
99
99
|
publicRoute: string;
|
|
100
100
|
private api;
|
|
@@ -110,10 +110,10 @@ declare class Repository$1K implements Nomalism$1.Country.IRepository {
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
declare namespace country {
|
|
113
|
-
export { type IPaginationResponse$3 as IPaginationResponse, Repository$
|
|
113
|
+
export { type IPaginationResponse$3 as IPaginationResponse, Repository$1I as default };
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
declare class Repository$
|
|
116
|
+
declare class Repository$1H implements Nomalism$1.DocumentHeader.IRepository {
|
|
117
117
|
route: string;
|
|
118
118
|
publicRoute: string;
|
|
119
119
|
private api;
|
|
@@ -138,17 +138,19 @@ declare class Repository$1J implements Nomalism$1.DocumentHeader.IRepository {
|
|
|
138
138
|
markUnsentClientNotification({ id }: Nomalism$1.shared.IFindByIdRequest): Promise<void>;
|
|
139
139
|
documentPdf({ id }: Nomalism$1.shared.IFindByIdRequest): Promise<string>;
|
|
140
140
|
getDocumentPdfUrl({ id }: Nomalism$1.shared.IFindByIdRequest, data?: Nomalism$1.DocumentHeader.IDocumentPdfRequest): string;
|
|
141
|
+
documentThermalPrint({ id }: Nomalism$1.shared.IFindByIdRequest): Promise<string>;
|
|
141
142
|
documentList({ id, }: Nomalism$1.shared.IFindByIdRequest): Promise<Nomalism$1.DocumentHeader.IDocumentListResponse[]>;
|
|
142
143
|
getAllRelatedDocumentHeaderIds({ id, }: Nomalism$1.shared.IFindByIdRequest): Promise<string[]>;
|
|
143
144
|
findStartDocumentHeaderSiblings({ id, }: Nomalism$1.shared.IFindByIdRequest): Promise<Nomalism$1.DocumentHeader.IFindStartDocumentHeaderSiblingsResponse>;
|
|
144
145
|
findRmOpenDocuments(): Promise<Nomalism$1.DocumentHeader.IFindRmOpenDocuments[]>;
|
|
146
|
+
regularizarMultiplosDocumentos(data: Nomalism$1.DocumentHeader.IMultipleRegularizations): Promise<void>;
|
|
145
147
|
}
|
|
146
148
|
|
|
147
149
|
declare namespace documentHeader {
|
|
148
|
-
export { Repository$
|
|
150
|
+
export { Repository$1H as default };
|
|
149
151
|
}
|
|
150
152
|
|
|
151
|
-
declare class Repository$
|
|
153
|
+
declare class Repository$1G implements Nomalism$1.DocumentHeaderHistory.IRepository {
|
|
152
154
|
route: string;
|
|
153
155
|
publicRoute: string;
|
|
154
156
|
private api;
|
|
@@ -157,10 +159,10 @@ declare class Repository$1I implements Nomalism$1.DocumentHeaderHistory.IReposit
|
|
|
157
159
|
}
|
|
158
160
|
|
|
159
161
|
declare namespace documentHeaderHistory {
|
|
160
|
-
export { Repository$
|
|
162
|
+
export { Repository$1G as default };
|
|
161
163
|
}
|
|
162
164
|
|
|
163
|
-
declare class Repository$
|
|
165
|
+
declare class Repository$1F implements Nomalism$1.BillOfLading.IRepository {
|
|
164
166
|
route: string;
|
|
165
167
|
publicRoute: string;
|
|
166
168
|
private api;
|
|
@@ -168,7 +170,7 @@ declare class Repository$1H implements Nomalism$1.BillOfLading.IRepository {
|
|
|
168
170
|
create(body: Nomalism$1.BillOfLading.ICreateRequest): Promise<Nomalism$1.shared.ITaskCluster[]>;
|
|
169
171
|
}
|
|
170
172
|
|
|
171
|
-
declare class Repository$
|
|
173
|
+
declare class Repository$1E implements Nomalism$1.ProductionOrder.IRepository {
|
|
172
174
|
route: string;
|
|
173
175
|
publicRoute: string;
|
|
174
176
|
private api;
|
|
@@ -176,7 +178,7 @@ declare class Repository$1G implements Nomalism$1.ProductionOrder.IRepository {
|
|
|
176
178
|
createProductionOrder(body: Nomalism$1.ProductionOrder.ICreateProductionOrderRequest): Promise<void>;
|
|
177
179
|
}
|
|
178
180
|
|
|
179
|
-
declare class Repository$
|
|
181
|
+
declare class Repository$1D implements Nomalism$1.Proforma.IRepository {
|
|
180
182
|
route: string;
|
|
181
183
|
publicRoute: string;
|
|
182
184
|
private api;
|
|
@@ -184,7 +186,7 @@ declare class Repository$1F implements Nomalism$1.Proforma.IRepository {
|
|
|
184
186
|
create(data: Nomalism$1.Proforma.ICreateRequest): Promise<Nomalism$1.shared.ITaskCluster[]>;
|
|
185
187
|
}
|
|
186
188
|
|
|
187
|
-
declare class Repository$
|
|
189
|
+
declare class Repository$1C implements Nomalism$1.PropostaFornecedor.IRepository {
|
|
188
190
|
route: string;
|
|
189
191
|
publicRoute: string;
|
|
190
192
|
private api;
|
|
@@ -192,7 +194,7 @@ declare class Repository$1E implements Nomalism$1.PropostaFornecedor.IRepository
|
|
|
192
194
|
createProviderProposal(data: Nomalism$1.PropostaFornecedor.IProviderProposalRequest): Promise<string>;
|
|
193
195
|
}
|
|
194
196
|
|
|
195
|
-
declare class Repository$
|
|
197
|
+
declare class Repository$1B implements Nomalism$1.ProviderCreditNoteFromReturn.IRepository {
|
|
196
198
|
route: string;
|
|
197
199
|
publicRoute: string;
|
|
198
200
|
private api;
|
|
@@ -201,7 +203,7 @@ declare class Repository$1D implements Nomalism$1.ProviderCreditNoteFromReturn.I
|
|
|
201
203
|
createProviderCreditNoteFromReturn(data: Nomalism$1.ProviderCreditNoteFromReturn.ICreateProviderCreditNoteFromReturnRequest): Promise<void>;
|
|
202
204
|
}
|
|
203
205
|
|
|
204
|
-
declare class Repository$
|
|
206
|
+
declare class Repository$1A implements Nomalism$1.ProviderFinancialCreditNote.IRepository {
|
|
205
207
|
route: string;
|
|
206
208
|
publicRoute: string;
|
|
207
209
|
private api;
|
|
@@ -210,7 +212,7 @@ declare class Repository$1C implements Nomalism$1.ProviderFinancialCreditNote.IR
|
|
|
210
212
|
createProviderFinancialCreditNote(data: Nomalism$1.ProviderFinancialCreditNote.ICreateProviderFinancialCreditNoteRequest): Promise<void>;
|
|
211
213
|
}
|
|
212
214
|
|
|
213
|
-
declare class Repository$
|
|
215
|
+
declare class Repository$1z implements Nomalism$1.ProviderServiceInvoice.IRepository {
|
|
214
216
|
route: string;
|
|
215
217
|
publicRoute: string;
|
|
216
218
|
private api;
|
|
@@ -218,7 +220,7 @@ declare class Repository$1B implements Nomalism$1.ProviderServiceInvoice.IReposi
|
|
|
218
220
|
createProviderServiceInvoice(data: Nomalism$1.ProviderServiceInvoice.ICreateProviderServiceInvoiceRequest): Promise<void>;
|
|
219
221
|
}
|
|
220
222
|
|
|
221
|
-
declare class Repository$
|
|
223
|
+
declare class Repository$1y implements Nomalism$1.DocumentLine.IRepository {
|
|
222
224
|
route: string;
|
|
223
225
|
publicRoute: string;
|
|
224
226
|
private api;
|
|
@@ -235,10 +237,10 @@ declare class Repository$1A implements Nomalism$1.DocumentLine.IRepository {
|
|
|
235
237
|
}
|
|
236
238
|
|
|
237
239
|
declare namespace documentLine {
|
|
238
|
-
export { Repository$
|
|
240
|
+
export { Repository$1y as default };
|
|
239
241
|
}
|
|
240
242
|
|
|
241
|
-
declare class Repository$
|
|
243
|
+
declare class Repository$1x implements Nomalism$1.DocumentLineAssoc.IApi {
|
|
242
244
|
route: string;
|
|
243
245
|
publicRoute: string;
|
|
244
246
|
private api;
|
|
@@ -251,10 +253,10 @@ declare class Repository$1z implements Nomalism$1.DocumentLineAssoc.IApi {
|
|
|
251
253
|
}
|
|
252
254
|
|
|
253
255
|
declare namespace documentLineAssoc {
|
|
254
|
-
export { Repository$
|
|
256
|
+
export { Repository$1x as default };
|
|
255
257
|
}
|
|
256
258
|
|
|
257
|
-
declare class Repository$
|
|
259
|
+
declare class Repository$1w implements Nomalism$1.DocumentType.IApi {
|
|
258
260
|
route: string;
|
|
259
261
|
publicRoute: string;
|
|
260
262
|
private api;
|
|
@@ -268,10 +270,10 @@ declare class Repository$1y implements Nomalism$1.DocumentType.IApi {
|
|
|
268
270
|
}
|
|
269
271
|
|
|
270
272
|
declare namespace documentType {
|
|
271
|
-
export { Repository$
|
|
273
|
+
export { Repository$1w as default };
|
|
272
274
|
}
|
|
273
275
|
|
|
274
|
-
declare class Repository$
|
|
276
|
+
declare class Repository$1v implements Nomalism$1.Favorites.IRepository {
|
|
275
277
|
route: string;
|
|
276
278
|
publicRoute: string;
|
|
277
279
|
private api;
|
|
@@ -283,10 +285,10 @@ declare class Repository$1x implements Nomalism$1.Favorites.IRepository {
|
|
|
283
285
|
}
|
|
284
286
|
|
|
285
287
|
declare namespace favorites {
|
|
286
|
-
export { Repository$
|
|
288
|
+
export { Repository$1v as default };
|
|
287
289
|
}
|
|
288
290
|
|
|
289
|
-
declare class Repository$
|
|
291
|
+
declare class Repository$1u implements Nomalism$1.File.IRepository {
|
|
290
292
|
route: string;
|
|
291
293
|
publicRoute: string;
|
|
292
294
|
private api;
|
|
@@ -298,10 +300,10 @@ declare class Repository$1w implements Nomalism$1.File.IRepository {
|
|
|
298
300
|
}
|
|
299
301
|
|
|
300
302
|
declare namespace file {
|
|
301
|
-
export { Repository$
|
|
303
|
+
export { Repository$1u as default };
|
|
302
304
|
}
|
|
303
305
|
|
|
304
|
-
declare class Repository$
|
|
306
|
+
declare class Repository$1t implements Nomalism$1.GoogleSheets.IController {
|
|
305
307
|
route: string;
|
|
306
308
|
publicRoute: string;
|
|
307
309
|
private api;
|
|
@@ -313,10 +315,10 @@ declare class Repository$1v implements Nomalism$1.GoogleSheets.IController {
|
|
|
313
315
|
}
|
|
314
316
|
|
|
315
317
|
declare namespace googleSheets {
|
|
316
|
-
export { Repository$
|
|
318
|
+
export { Repository$1t as default };
|
|
317
319
|
}
|
|
318
320
|
|
|
319
|
-
declare class Repository$
|
|
321
|
+
declare class Repository$1s implements Nomalism$1.GroupPermissions.IApi {
|
|
320
322
|
route: string;
|
|
321
323
|
publicRoute: string;
|
|
322
324
|
private api;
|
|
@@ -328,11 +330,11 @@ declare class Repository$1u implements Nomalism$1.GroupPermissions.IApi {
|
|
|
328
330
|
}
|
|
329
331
|
|
|
330
332
|
declare namespace groupPermission {
|
|
331
|
-
export { Repository$
|
|
333
|
+
export { Repository$1s as default };
|
|
332
334
|
}
|
|
333
335
|
|
|
334
336
|
type IPaginationResponse$2 = Nomalism$1.shared.IPaginationResponse<Nomalism$1.Language.IFindResponse>;
|
|
335
|
-
declare class Repository$
|
|
337
|
+
declare class Repository$1r implements Nomalism$1.Language.IRepository {
|
|
336
338
|
route: string;
|
|
337
339
|
publicRoute: string;
|
|
338
340
|
private api;
|
|
@@ -347,10 +349,10 @@ declare class Repository$1t implements Nomalism$1.Language.IRepository {
|
|
|
347
349
|
}
|
|
348
350
|
|
|
349
351
|
declare namespace language$1 {
|
|
350
|
-
export { type IPaginationResponse$2 as IPaginationResponse, Repository$
|
|
352
|
+
export { type IPaginationResponse$2 as IPaginationResponse, Repository$1r as default };
|
|
351
353
|
}
|
|
352
354
|
|
|
353
|
-
declare class Repository$
|
|
355
|
+
declare class Repository$1q implements Nomalism$1.Location.IRepository {
|
|
354
356
|
route: string;
|
|
355
357
|
publicRoute: string;
|
|
356
358
|
private api;
|
|
@@ -366,10 +368,10 @@ declare class Repository$1s implements Nomalism$1.Location.IRepository {
|
|
|
366
368
|
}
|
|
367
369
|
|
|
368
370
|
declare namespace location {
|
|
369
|
-
export { Repository$
|
|
371
|
+
export { Repository$1q as default };
|
|
370
372
|
}
|
|
371
373
|
|
|
372
|
-
declare class Repository$
|
|
374
|
+
declare class Repository$1p {
|
|
373
375
|
route: string;
|
|
374
376
|
publicRoute: string;
|
|
375
377
|
private api;
|
|
@@ -378,10 +380,10 @@ declare class Repository$1r {
|
|
|
378
380
|
}
|
|
379
381
|
|
|
380
382
|
declare namespace logout {
|
|
381
|
-
export { Repository$
|
|
383
|
+
export { Repository$1p as default };
|
|
382
384
|
}
|
|
383
385
|
|
|
384
|
-
declare class Repository$
|
|
386
|
+
declare class Repository$1o implements Nomalism$1.Multimedia.IApi {
|
|
385
387
|
route: string;
|
|
386
388
|
publicRoute: string;
|
|
387
389
|
private api;
|
|
@@ -391,10 +393,10 @@ declare class Repository$1q implements Nomalism$1.Multimedia.IApi {
|
|
|
391
393
|
}
|
|
392
394
|
|
|
393
395
|
declare namespace multimedia {
|
|
394
|
-
export { Repository$
|
|
396
|
+
export { Repository$1o as default };
|
|
395
397
|
}
|
|
396
398
|
|
|
397
|
-
declare class Repository$
|
|
399
|
+
declare class Repository$1n implements Nomalism$1.Observation.IApi {
|
|
398
400
|
route: string;
|
|
399
401
|
publicRoute: string;
|
|
400
402
|
private api;
|
|
@@ -407,10 +409,10 @@ declare class Repository$1p implements Nomalism$1.Observation.IApi {
|
|
|
407
409
|
}
|
|
408
410
|
|
|
409
411
|
declare namespace observation {
|
|
410
|
-
export { Repository$
|
|
412
|
+
export { Repository$1n as default };
|
|
411
413
|
}
|
|
412
414
|
|
|
413
|
-
declare class Repository$
|
|
415
|
+
declare class Repository$1m implements Nomalism$1.ObservationType.IApi {
|
|
414
416
|
route: string;
|
|
415
417
|
publicRoute: string;
|
|
416
418
|
private api;
|
|
@@ -423,10 +425,10 @@ declare class Repository$1o implements Nomalism$1.ObservationType.IApi {
|
|
|
423
425
|
}
|
|
424
426
|
|
|
425
427
|
declare namespace observationType {
|
|
426
|
-
export { Repository$
|
|
428
|
+
export { Repository$1m as default };
|
|
427
429
|
}
|
|
428
430
|
|
|
429
|
-
declare class Repository$
|
|
431
|
+
declare class Repository$1l implements Nomalism$1.Password.IRepository {
|
|
430
432
|
route: string;
|
|
431
433
|
publicRoute: string;
|
|
432
434
|
private api;
|
|
@@ -436,10 +438,10 @@ declare class Repository$1n implements Nomalism$1.Password.IRepository {
|
|
|
436
438
|
}
|
|
437
439
|
|
|
438
440
|
declare namespace password {
|
|
439
|
-
export { Repository$
|
|
441
|
+
export { Repository$1l as default };
|
|
440
442
|
}
|
|
441
443
|
|
|
442
|
-
declare class Repository$
|
|
444
|
+
declare class Repository$1k implements Nomalism$1.Permissions.IApi {
|
|
443
445
|
route: string;
|
|
444
446
|
publicRoute: string;
|
|
445
447
|
private api;
|
|
@@ -451,10 +453,10 @@ declare class Repository$1m implements Nomalism$1.Permissions.IApi {
|
|
|
451
453
|
}
|
|
452
454
|
|
|
453
455
|
declare namespace permission {
|
|
454
|
-
export { Repository$
|
|
456
|
+
export { Repository$1k as default };
|
|
455
457
|
}
|
|
456
458
|
|
|
457
|
-
declare class Repository$
|
|
459
|
+
declare class Repository$1j implements Nomalism$1.ProductImage.IRepository {
|
|
458
460
|
route: string;
|
|
459
461
|
publicRoute: string;
|
|
460
462
|
private api;
|
|
@@ -469,10 +471,10 @@ declare class Repository$1l implements Nomalism$1.ProductImage.IRepository {
|
|
|
469
471
|
}
|
|
470
472
|
|
|
471
473
|
declare namespace productImage {
|
|
472
|
-
export { Repository$
|
|
474
|
+
export { Repository$1j as default };
|
|
473
475
|
}
|
|
474
476
|
|
|
475
|
-
declare class Repository$
|
|
477
|
+
declare class Repository$1i implements Nomalism$1.Promotion.IRepository {
|
|
476
478
|
route: string;
|
|
477
479
|
publicRoute: string;
|
|
478
480
|
private api;
|
|
@@ -489,10 +491,10 @@ declare class Repository$1k implements Nomalism$1.Promotion.IRepository {
|
|
|
489
491
|
}
|
|
490
492
|
|
|
491
493
|
declare namespace promotion {
|
|
492
|
-
export { Repository$
|
|
494
|
+
export { Repository$1i as default };
|
|
493
495
|
}
|
|
494
496
|
|
|
495
|
-
declare class Repository$
|
|
497
|
+
declare class Repository$1h implements Nomalism$1.PromotionAssoc.IRepository {
|
|
496
498
|
route: string;
|
|
497
499
|
publicRoute: string;
|
|
498
500
|
private api;
|
|
@@ -507,10 +509,10 @@ declare class Repository$1j implements Nomalism$1.PromotionAssoc.IRepository {
|
|
|
507
509
|
}
|
|
508
510
|
|
|
509
511
|
declare namespace promotionAssoc {
|
|
510
|
-
export { Repository$
|
|
512
|
+
export { Repository$1h as default };
|
|
511
513
|
}
|
|
512
514
|
|
|
513
|
-
declare class Repository$
|
|
515
|
+
declare class Repository$1g implements Nomalism$1.Providers.IRepository {
|
|
514
516
|
route: string;
|
|
515
517
|
publicRoute: string;
|
|
516
518
|
private api;
|
|
@@ -528,11 +530,11 @@ declare class Repository$1i implements Nomalism$1.Providers.IRepository {
|
|
|
528
530
|
}
|
|
529
531
|
|
|
530
532
|
declare namespace provider {
|
|
531
|
-
export { Repository$
|
|
533
|
+
export { Repository$1g as default };
|
|
532
534
|
}
|
|
533
535
|
|
|
534
536
|
type IPaginationResponse$1 = Nomalism$1.shared.IPaginationResponse<Nomalism$1.ProviderType.IFindResponse>;
|
|
535
|
-
declare class Repository$
|
|
537
|
+
declare class Repository$1f implements Nomalism$1.ProviderType.IRepository {
|
|
536
538
|
route: string;
|
|
537
539
|
publicRoute: string;
|
|
538
540
|
private api;
|
|
@@ -547,10 +549,10 @@ declare class Repository$1h implements Nomalism$1.ProviderType.IRepository {
|
|
|
547
549
|
}
|
|
548
550
|
|
|
549
551
|
declare namespace providerType {
|
|
550
|
-
export { type IPaginationResponse$1 as IPaginationResponse, Repository$
|
|
552
|
+
export { type IPaginationResponse$1 as IPaginationResponse, Repository$1f as default };
|
|
551
553
|
}
|
|
552
554
|
|
|
553
|
-
declare class Repository$
|
|
555
|
+
declare class Repository$1e implements Nomalism$1.PurchaseConditions.IRepository {
|
|
554
556
|
route: string;
|
|
555
557
|
publicRoute: string;
|
|
556
558
|
private api;
|
|
@@ -565,10 +567,10 @@ declare class Repository$1g implements Nomalism$1.PurchaseConditions.IRepository
|
|
|
565
567
|
}
|
|
566
568
|
|
|
567
569
|
declare namespace purchaseCondition {
|
|
568
|
-
export { Repository$
|
|
570
|
+
export { Repository$1e as default };
|
|
569
571
|
}
|
|
570
572
|
|
|
571
|
-
declare class Repository$
|
|
573
|
+
declare class Repository$1d implements Nomalism$1.ReasonForExemption.IRepository {
|
|
572
574
|
route: string;
|
|
573
575
|
publicRoute: string;
|
|
574
576
|
private api;
|
|
@@ -583,10 +585,10 @@ declare class Repository$1f implements Nomalism$1.ReasonForExemption.IRepository
|
|
|
583
585
|
}
|
|
584
586
|
|
|
585
587
|
declare namespace reasonForExemption {
|
|
586
|
-
export { Repository$
|
|
588
|
+
export { Repository$1d as default };
|
|
587
589
|
}
|
|
588
590
|
|
|
589
|
-
declare class Repository$
|
|
591
|
+
declare class Repository$1c implements Nomalism$1.RefreshToken.IRepository {
|
|
590
592
|
route: string;
|
|
591
593
|
publicRoute: string;
|
|
592
594
|
private api;
|
|
@@ -595,10 +597,10 @@ declare class Repository$1e implements Nomalism$1.RefreshToken.IRepository {
|
|
|
595
597
|
}
|
|
596
598
|
|
|
597
599
|
declare namespace refreshToken {
|
|
598
|
-
export { Repository$
|
|
600
|
+
export { Repository$1c as default };
|
|
599
601
|
}
|
|
600
602
|
|
|
601
|
-
declare class Repository$
|
|
603
|
+
declare class Repository$1b implements Nomalism$1.SegmentsArea.IRepository {
|
|
602
604
|
route: string;
|
|
603
605
|
publicRoute: string;
|
|
604
606
|
private api;
|
|
@@ -613,10 +615,10 @@ declare class Repository$1d implements Nomalism$1.SegmentsArea.IRepository {
|
|
|
613
615
|
}
|
|
614
616
|
|
|
615
617
|
declare namespace segmentsArea {
|
|
616
|
-
export { Repository$
|
|
618
|
+
export { Repository$1b as default };
|
|
617
619
|
}
|
|
618
620
|
|
|
619
|
-
declare class Repository$
|
|
621
|
+
declare class Repository$1a implements Nomalism$1.Sessions.IRepository {
|
|
620
622
|
route: string;
|
|
621
623
|
publicRoute: string;
|
|
622
624
|
private api;
|
|
@@ -625,10 +627,10 @@ declare class Repository$1c implements Nomalism$1.Sessions.IRepository {
|
|
|
625
627
|
}
|
|
626
628
|
|
|
627
629
|
declare namespace sessions {
|
|
628
|
-
export { Repository$
|
|
630
|
+
export { Repository$1a as default };
|
|
629
631
|
}
|
|
630
632
|
|
|
631
|
-
declare class Repository$
|
|
633
|
+
declare class Repository$19 implements Nomalism$1.Shippings.IRepository {
|
|
632
634
|
route: string;
|
|
633
635
|
publicRoute: string;
|
|
634
636
|
private api;
|
|
@@ -643,10 +645,10 @@ declare class Repository$1b implements Nomalism$1.Shippings.IRepository {
|
|
|
643
645
|
}
|
|
644
646
|
|
|
645
647
|
declare namespace shippings {
|
|
646
|
-
export { Repository$
|
|
648
|
+
export { Repository$19 as default };
|
|
647
649
|
}
|
|
648
650
|
|
|
649
|
-
declare class Repository$
|
|
651
|
+
declare class Repository$18 implements Nomalism$1.StoreOperator.IRepository {
|
|
650
652
|
route: string;
|
|
651
653
|
publicRoute: string;
|
|
652
654
|
private api;
|
|
@@ -660,11 +662,11 @@ declare class Repository$1a implements Nomalism$1.StoreOperator.IRepository {
|
|
|
660
662
|
}
|
|
661
663
|
|
|
662
664
|
declare namespace storeOperator {
|
|
663
|
-
export { Repository$
|
|
665
|
+
export { Repository$18 as default };
|
|
664
666
|
}
|
|
665
667
|
|
|
666
668
|
type IPaginationResponse = Nomalism$1.shared.IPaginationResponse<Nomalism$1.Swift.IFindResponse>;
|
|
667
|
-
declare class Repository$
|
|
669
|
+
declare class Repository$17 implements Nomalism$1.Swift.IRepository {
|
|
668
670
|
route: string;
|
|
669
671
|
publicRoute: string;
|
|
670
672
|
private api;
|
|
@@ -680,10 +682,10 @@ declare class Repository$19 implements Nomalism$1.Swift.IRepository {
|
|
|
680
682
|
|
|
681
683
|
type swift_IPaginationResponse = IPaginationResponse;
|
|
682
684
|
declare namespace swift {
|
|
683
|
-
export { type swift_IPaginationResponse as IPaginationResponse, Repository$
|
|
685
|
+
export { type swift_IPaginationResponse as IPaginationResponse, Repository$17 as default };
|
|
684
686
|
}
|
|
685
687
|
|
|
686
|
-
declare class Repository$
|
|
688
|
+
declare class Repository$16 implements Nomalism$1.TypeOfLocation.IRepository {
|
|
687
689
|
route: string;
|
|
688
690
|
publicRoute: string;
|
|
689
691
|
private api;
|
|
@@ -699,10 +701,10 @@ declare class Repository$18 implements Nomalism$1.TypeOfLocation.IRepository {
|
|
|
699
701
|
}
|
|
700
702
|
|
|
701
703
|
declare namespace typeOfLocation {
|
|
702
|
-
export { Repository$
|
|
704
|
+
export { Repository$16 as default };
|
|
703
705
|
}
|
|
704
706
|
|
|
705
|
-
declare class Repository$
|
|
707
|
+
declare class Repository$15 implements Nomalism$1.UnitOfMeasure.IRepository {
|
|
706
708
|
route: string;
|
|
707
709
|
publicRoute: string;
|
|
708
710
|
private api;
|
|
@@ -718,10 +720,10 @@ declare class Repository$17 implements Nomalism$1.UnitOfMeasure.IRepository {
|
|
|
718
720
|
}
|
|
719
721
|
|
|
720
722
|
declare namespace unitOfMeasure {
|
|
721
|
-
export { Repository$
|
|
723
|
+
export { Repository$15 as default };
|
|
722
724
|
}
|
|
723
725
|
|
|
724
|
-
declare class Repository$
|
|
726
|
+
declare class Repository$14 implements Nomalism$1.UserPermissions.IRepository {
|
|
725
727
|
route: string;
|
|
726
728
|
publicRoute: string;
|
|
727
729
|
private api;
|
|
@@ -732,10 +734,10 @@ declare class Repository$16 implements Nomalism$1.UserPermissions.IRepository {
|
|
|
732
734
|
}
|
|
733
735
|
|
|
734
736
|
declare namespace userPermission {
|
|
735
|
-
export { Repository$
|
|
737
|
+
export { Repository$14 as default };
|
|
736
738
|
}
|
|
737
739
|
|
|
738
|
-
declare class Repository$
|
|
740
|
+
declare class Repository$13 implements Nomalism$1.UserPositions.IRepository {
|
|
739
741
|
route: string;
|
|
740
742
|
publicRoute: string;
|
|
741
743
|
private api;
|
|
@@ -750,10 +752,10 @@ declare class Repository$15 implements Nomalism$1.UserPositions.IRepository {
|
|
|
750
752
|
}
|
|
751
753
|
|
|
752
754
|
declare namespace userPositions {
|
|
753
|
-
export { Repository$
|
|
755
|
+
export { Repository$13 as default };
|
|
754
756
|
}
|
|
755
757
|
|
|
756
|
-
declare class Repository$
|
|
758
|
+
declare class Repository$12 implements Nomalism$1.Users.IApi {
|
|
757
759
|
route: string;
|
|
758
760
|
publicRoute: string;
|
|
759
761
|
private api;
|
|
@@ -770,10 +772,10 @@ declare class Repository$14 implements Nomalism$1.Users.IApi {
|
|
|
770
772
|
}
|
|
771
773
|
|
|
772
774
|
declare namespace user {
|
|
773
|
-
export { Repository$
|
|
775
|
+
export { Repository$12 as default };
|
|
774
776
|
}
|
|
775
777
|
|
|
776
|
-
declare class Repository$
|
|
778
|
+
declare class Repository$11 implements Nomalism$1.VatTax.IRepository {
|
|
777
779
|
route: string;
|
|
778
780
|
publicRoute: string;
|
|
779
781
|
private api;
|
|
@@ -789,10 +791,10 @@ declare class Repository$13 implements Nomalism$1.VatTax.IRepository {
|
|
|
789
791
|
}
|
|
790
792
|
|
|
791
793
|
declare namespace vatTax {
|
|
792
|
-
export { Repository$
|
|
794
|
+
export { Repository$11 as default };
|
|
793
795
|
}
|
|
794
796
|
|
|
795
|
-
declare class Repository$
|
|
797
|
+
declare class Repository$10 implements Nomalism$1.VatTaxZone.IRepository {
|
|
796
798
|
route: string;
|
|
797
799
|
publicRoute: string;
|
|
798
800
|
private api;
|
|
@@ -808,10 +810,10 @@ declare class Repository$12 implements Nomalism$1.VatTaxZone.IRepository {
|
|
|
808
810
|
}
|
|
809
811
|
|
|
810
812
|
declare namespace vatTaxZone {
|
|
811
|
-
export { Repository$
|
|
813
|
+
export { Repository$10 as default };
|
|
812
814
|
}
|
|
813
815
|
|
|
814
|
-
declare class Repository
|
|
816
|
+
declare class Repository$$ implements Nomalism$1.Workflow.IApi {
|
|
815
817
|
route: string;
|
|
816
818
|
publicRoute: string;
|
|
817
819
|
private api;
|
|
@@ -824,10 +826,10 @@ declare class Repository$11 implements Nomalism$1.Workflow.IApi {
|
|
|
824
826
|
}
|
|
825
827
|
|
|
826
828
|
declare namespace workflow {
|
|
827
|
-
export { Repository
|
|
829
|
+
export { Repository$$ as default };
|
|
828
830
|
}
|
|
829
831
|
|
|
830
|
-
declare class Repository$
|
|
832
|
+
declare class Repository$_ implements Nomalism$1.DeliveryMethods.IRepository {
|
|
831
833
|
route: string;
|
|
832
834
|
publicRoute: string;
|
|
833
835
|
private api;
|
|
@@ -841,10 +843,10 @@ declare class Repository$10 implements Nomalism$1.DeliveryMethods.IRepository {
|
|
|
841
843
|
}
|
|
842
844
|
|
|
843
845
|
declare namespace deliveryMethods {
|
|
844
|
-
export { Repository$
|
|
846
|
+
export { Repository$_ as default };
|
|
845
847
|
}
|
|
846
848
|
|
|
847
|
-
declare class Repository
|
|
849
|
+
declare class Repository$Z implements Nomalism$1.MaturityDates.IRepository {
|
|
848
850
|
route: string;
|
|
849
851
|
publicRoute: string;
|
|
850
852
|
private api;
|
|
@@ -858,10 +860,10 @@ declare class Repository$$ implements Nomalism$1.MaturityDates.IRepository {
|
|
|
858
860
|
}
|
|
859
861
|
|
|
860
862
|
declare namespace maturityDates {
|
|
861
|
-
export { Repository
|
|
863
|
+
export { Repository$Z as default };
|
|
862
864
|
}
|
|
863
865
|
|
|
864
|
-
declare class Repository$
|
|
866
|
+
declare class Repository$Y implements Nomalism$1.PaymentMethods.IRepository {
|
|
865
867
|
route: string;
|
|
866
868
|
publicRoute: string;
|
|
867
869
|
private api;
|
|
@@ -875,10 +877,10 @@ declare class Repository$_ implements Nomalism$1.PaymentMethods.IRepository {
|
|
|
875
877
|
}
|
|
876
878
|
|
|
877
879
|
declare namespace paymentMethods {
|
|
878
|
-
export { Repository$
|
|
880
|
+
export { Repository$Y as default };
|
|
879
881
|
}
|
|
880
882
|
|
|
881
|
-
declare class Repository$
|
|
883
|
+
declare class Repository$X implements Nomalism$1.Vehicles.IApi {
|
|
882
884
|
route: string;
|
|
883
885
|
publicRoute: string;
|
|
884
886
|
private api;
|
|
@@ -890,10 +892,10 @@ declare class Repository$Z implements Nomalism$1.Vehicles.IApi {
|
|
|
890
892
|
}
|
|
891
893
|
|
|
892
894
|
declare namespace vehicles {
|
|
893
|
-
export { Repository$
|
|
895
|
+
export { Repository$X as default };
|
|
894
896
|
}
|
|
895
897
|
|
|
896
|
-
declare class Repository$
|
|
898
|
+
declare class Repository$W implements Nomalism$1.ExternalDocumentType.IRepository {
|
|
897
899
|
route: string;
|
|
898
900
|
publicRoute: string;
|
|
899
901
|
private api;
|
|
@@ -903,10 +905,10 @@ declare class Repository$Y implements Nomalism$1.ExternalDocumentType.IRepositor
|
|
|
903
905
|
}
|
|
904
906
|
|
|
905
907
|
declare namespace externalDocumentType {
|
|
906
|
-
export { Repository$
|
|
908
|
+
export { Repository$W as default };
|
|
907
909
|
}
|
|
908
910
|
|
|
909
|
-
declare class Repository$
|
|
911
|
+
declare class Repository$V implements Nomalism$1.DocumentSet.IRepository {
|
|
910
912
|
route: string;
|
|
911
913
|
publicRoute: string;
|
|
912
914
|
private api;
|
|
@@ -920,10 +922,10 @@ declare class Repository$X implements Nomalism$1.DocumentSet.IRepository {
|
|
|
920
922
|
}
|
|
921
923
|
|
|
922
924
|
declare namespace documentSet {
|
|
923
|
-
export { Repository$
|
|
925
|
+
export { Repository$V as default };
|
|
924
926
|
}
|
|
925
927
|
|
|
926
|
-
declare class Repository$
|
|
928
|
+
declare class Repository$U implements Nomalism$1.Payment.IRepository {
|
|
927
929
|
route: string;
|
|
928
930
|
publicRoute: string;
|
|
929
931
|
private api;
|
|
@@ -949,10 +951,10 @@ declare class Repository$W implements Nomalism$1.Payment.IRepository {
|
|
|
949
951
|
}
|
|
950
952
|
|
|
951
953
|
declare namespace payment {
|
|
952
|
-
export { Repository$
|
|
954
|
+
export { Repository$U as default };
|
|
953
955
|
}
|
|
954
956
|
|
|
955
|
-
declare class Repository$
|
|
957
|
+
declare class Repository$T implements Nomalism$1.ExternalDocumentHeader.IRepository {
|
|
956
958
|
route: string;
|
|
957
959
|
publicRoute: string;
|
|
958
960
|
private api;
|
|
@@ -971,36 +973,6 @@ declare class Repository$V implements Nomalism$1.ExternalDocumentHeader.IReposit
|
|
|
971
973
|
}
|
|
972
974
|
|
|
973
975
|
declare namespace externalDocumentHeader {
|
|
974
|
-
export { Repository$V as default };
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
declare class Repository$U implements Nomalism$1.ClientCurrentAccount.IApi {
|
|
978
|
-
route: string;
|
|
979
|
-
publicRoute: string;
|
|
980
|
-
private api;
|
|
981
|
-
constructor({ api, route, publicRoute }: IModuleConstructor);
|
|
982
|
-
findByOwnerId(params: Nomalism$1.ClientCurrentAccount.IFindRequest): Promise<Nomalism$1.shared.IPaginationResponse<Nomalism$1.ClientCurrentAccount.Entity>>;
|
|
983
|
-
findFaturaPorPagar(params: Nomalism$1.shared.IFindByIdRequest): Promise<Nomalism$1.ClientCurrentAccount.IFindFaturasPorPagarResponse>;
|
|
984
|
-
pagarFatura(data: Nomalism$1.ClientCurrentAccount.IPagarFaturaRequest): Promise<void>;
|
|
985
|
-
findFaturaParaDevolver(params: Nomalism$1.shared.IFindByIdRequest): Promise<Nomalism$1.ClientCurrentAccount.IFindFaturasParaDevolucaoResponse>;
|
|
986
|
-
devolver(data: Nomalism$1.ClientCurrentAccount.IDevolverRequest): Promise<void>;
|
|
987
|
-
findByBasicSearch(params: Nomalism$1.ClientCurrentAccount.IBasicSearchRequest): Promise<Nomalism$1.shared.IPaginationResponse<Nomalism$1.ClientCurrentAccount.IBasicSearchResponse>>;
|
|
988
|
-
regularizarMultiplosDocumentos(data: Nomalism$1.ClientCurrentAccount.IMultipleRegularizations): Promise<void>;
|
|
989
|
-
}
|
|
990
|
-
|
|
991
|
-
declare namespace clientCurrentAccount {
|
|
992
|
-
export { Repository$U as default };
|
|
993
|
-
}
|
|
994
|
-
|
|
995
|
-
declare class Repository$T implements Nomalism$1.ProviderCurrentAccount.IApi {
|
|
996
|
-
route: string;
|
|
997
|
-
publicRoute: string;
|
|
998
|
-
private api;
|
|
999
|
-
constructor({ api, route, publicRoute }: IModuleConstructor);
|
|
1000
|
-
findByOwnerId(params: Nomalism$1.ProviderCurrentAccount.IFindRequest): Promise<Nomalism$1.shared.IPaginationResponse<Nomalism$1.ProviderCurrentAccount.Entity>>;
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
|
-
declare namespace providerCurrentAccount {
|
|
1004
976
|
export { Repository$T as default };
|
|
1005
977
|
}
|
|
1006
978
|
|
|
@@ -1857,67 +1829,65 @@ declare class API {
|
|
|
1857
1829
|
processEnvironment: IEnvironment;
|
|
1858
1830
|
client: AxiosInstance;
|
|
1859
1831
|
services: Record<IService, string>;
|
|
1860
|
-
BankData: Repository$
|
|
1861
|
-
Client: Repository$
|
|
1862
|
-
ClientType: Repository$
|
|
1863
|
-
Chat: Repository$
|
|
1864
|
-
Commissioner: Repository$
|
|
1865
|
-
Country: Repository$
|
|
1866
|
-
DocumentHeader: Repository$
|
|
1867
|
-
DocumentHeaderHistory: Repository$
|
|
1868
|
-
BillOfLading: Repository$
|
|
1869
|
-
ProductionOrder: Repository$
|
|
1870
|
-
Proforma: Repository$
|
|
1871
|
-
PropostaFornecedor: Repository$
|
|
1872
|
-
ProviderCreditNoteFromReturn: Repository$
|
|
1873
|
-
ProviderFinancialCreditNote: Repository$
|
|
1874
|
-
ProviderServiceInvoice: Repository$
|
|
1875
|
-
DocumentLine: Repository$
|
|
1876
|
-
DocumentLineAssoc: Repository$
|
|
1877
|
-
DocumentType: Repository$
|
|
1878
|
-
Favorites: Repository$
|
|
1879
|
-
File: Repository$
|
|
1880
|
-
GoogleSheets: Repository$
|
|
1881
|
-
GroupPermissions: Repository$
|
|
1882
|
-
Language: Repository$
|
|
1883
|
-
Location: Repository$
|
|
1884
|
-
Logout: Repository$
|
|
1885
|
-
Multimedia: Repository$
|
|
1886
|
-
Observation: Repository$
|
|
1887
|
-
ObservationType: Repository$
|
|
1888
|
-
Password: Repository$
|
|
1889
|
-
Permissions: Repository$
|
|
1890
|
-
ProductImage: Repository$
|
|
1891
|
-
Promotion: Repository$
|
|
1892
|
-
PromotionAssoc: Repository$
|
|
1893
|
-
Providers: Repository$
|
|
1894
|
-
ProviderType: Repository$
|
|
1895
|
-
PurchaseConditions: Repository$
|
|
1896
|
-
ReasonForExemption: Repository$
|
|
1897
|
-
RefreshToken: Repository$
|
|
1898
|
-
SegmentsArea: Repository$
|
|
1899
|
-
Sessions: Repository$
|
|
1900
|
-
Shippings: Repository$
|
|
1901
|
-
StoreOperator: Repository$
|
|
1902
|
-
Swift: Repository$
|
|
1903
|
-
TypeOfLocation: Repository$
|
|
1904
|
-
UnitOfMeasure: Repository$
|
|
1905
|
-
UserPermissions: Repository$
|
|
1906
|
-
UserPositions: Repository$
|
|
1907
|
-
Users: Repository$
|
|
1908
|
-
VatTax: Repository$
|
|
1909
|
-
VatTaxZone: Repository$
|
|
1910
|
-
Workflow: Repository
|
|
1911
|
-
DeliveryMethods: Repository$
|
|
1912
|
-
MaturityDates: Repository
|
|
1913
|
-
PaymentMethods: Repository$
|
|
1914
|
-
Vehicles: Repository$
|
|
1915
|
-
ExternalDocumentType: Repository$
|
|
1916
|
-
DocumentSet: Repository$
|
|
1917
|
-
Payment: Repository$
|
|
1918
|
-
ExternalDocumentHeader: Repository$
|
|
1919
|
-
ClientCurrentAccount: Repository$U;
|
|
1920
|
-
ProviderCurrentAccount: Repository$T;
|
|
1832
|
+
BankData: Repository$1N;
|
|
1833
|
+
Client: Repository$1M;
|
|
1834
|
+
ClientType: Repository$1L;
|
|
1835
|
+
Chat: Repository$1K;
|
|
1836
|
+
Commissioner: Repository$1J;
|
|
1837
|
+
Country: Repository$1I;
|
|
1838
|
+
DocumentHeader: Repository$1H;
|
|
1839
|
+
DocumentHeaderHistory: Repository$1G;
|
|
1840
|
+
BillOfLading: Repository$1F;
|
|
1841
|
+
ProductionOrder: Repository$1E;
|
|
1842
|
+
Proforma: Repository$1D;
|
|
1843
|
+
PropostaFornecedor: Repository$1C;
|
|
1844
|
+
ProviderCreditNoteFromReturn: Repository$1B;
|
|
1845
|
+
ProviderFinancialCreditNote: Repository$1A;
|
|
1846
|
+
ProviderServiceInvoice: Repository$1z;
|
|
1847
|
+
DocumentLine: Repository$1y;
|
|
1848
|
+
DocumentLineAssoc: Repository$1x;
|
|
1849
|
+
DocumentType: Repository$1w;
|
|
1850
|
+
Favorites: Repository$1v;
|
|
1851
|
+
File: Repository$1u;
|
|
1852
|
+
GoogleSheets: Repository$1t;
|
|
1853
|
+
GroupPermissions: Repository$1s;
|
|
1854
|
+
Language: Repository$1r;
|
|
1855
|
+
Location: Repository$1q;
|
|
1856
|
+
Logout: Repository$1p;
|
|
1857
|
+
Multimedia: Repository$1o;
|
|
1858
|
+
Observation: Repository$1n;
|
|
1859
|
+
ObservationType: Repository$1m;
|
|
1860
|
+
Password: Repository$1l;
|
|
1861
|
+
Permissions: Repository$1k;
|
|
1862
|
+
ProductImage: Repository$1j;
|
|
1863
|
+
Promotion: Repository$1i;
|
|
1864
|
+
PromotionAssoc: Repository$1h;
|
|
1865
|
+
Providers: Repository$1g;
|
|
1866
|
+
ProviderType: Repository$1f;
|
|
1867
|
+
PurchaseConditions: Repository$1e;
|
|
1868
|
+
ReasonForExemption: Repository$1d;
|
|
1869
|
+
RefreshToken: Repository$1c;
|
|
1870
|
+
SegmentsArea: Repository$1b;
|
|
1871
|
+
Sessions: Repository$1a;
|
|
1872
|
+
Shippings: Repository$19;
|
|
1873
|
+
StoreOperator: Repository$18;
|
|
1874
|
+
Swift: Repository$17;
|
|
1875
|
+
TypeOfLocation: Repository$16;
|
|
1876
|
+
UnitOfMeasure: Repository$15;
|
|
1877
|
+
UserPermissions: Repository$14;
|
|
1878
|
+
UserPositions: Repository$13;
|
|
1879
|
+
Users: Repository$12;
|
|
1880
|
+
VatTax: Repository$11;
|
|
1881
|
+
VatTaxZone: Repository$10;
|
|
1882
|
+
Workflow: Repository$$;
|
|
1883
|
+
DeliveryMethods: Repository$_;
|
|
1884
|
+
MaturityDates: Repository$Z;
|
|
1885
|
+
PaymentMethods: Repository$Y;
|
|
1886
|
+
Vehicles: Repository$X;
|
|
1887
|
+
ExternalDocumentType: Repository$W;
|
|
1888
|
+
DocumentSet: Repository$V;
|
|
1889
|
+
Payment: Repository$U;
|
|
1890
|
+
ExternalDocumentHeader: Repository$T;
|
|
1921
1891
|
VatValidation: Repository$S;
|
|
1922
1892
|
StockMovement: Repository$R;
|
|
1923
1893
|
ZipCode: Repository$Q;
|
|
@@ -1982,7 +1952,7 @@ type Nomalism_IEnvironment = IEnvironment;
|
|
|
1982
1952
|
type Nomalism_IModuleConstructor = IModuleConstructor;
|
|
1983
1953
|
type Nomalism_IOptions = IOptions;
|
|
1984
1954
|
declare namespace Nomalism {
|
|
1985
|
-
export { Nomalism_API as API, adminPanel as AdminPanelClass, bankData as BankData, channel as Channel, chatRapidMessage as ChatRapidMessageClass, chatSubscriber as ChatSubscriberClass, clients as Client,
|
|
1955
|
+
export { Nomalism_API as API, adminPanel as AdminPanelClass, bankData as BankData, channel as Channel, chatRapidMessage as ChatRapidMessageClass, chatSubscriber as ChatSubscriberClass, clients as Client, clientType as ClientType, clt as Clt, commissioner as Commissioner, country as Country, dashboard as DashboardClass, deliveryMethods as DeliveryMethods, documentHeader as DocumentHeader, documentHeaderHistory as DocumentHeaderHistory, documentLine as DocumentLine, documentLineAssoc as DocumentLineAssoc, documentLineMt as DocumentLineMtClass, documentLineNote as DocumentLineNote, documentLineRm as DocumentLineRmClass, documentSet as DocumentSet, documentType as DocumentType, emailLog as EmailLog, emailTemplate as EmailTemplate, emailTemplateAttachment as EmailTemplateAttachment, emailVerification as EmailVerification, errorLog as ErrorLogClass, externalDocumentHeader as ExternalDocumentHeader, externalDocumentType as ExternalDocumentType, favorites as Favorites, file as File, googleFilePermission as GoogleFilePermission, googleSheets as GoogleSheets, groupPermission as GroupPermissions, type Nomalism_IEnvironment as IEnvironment, type Nomalism_IModuleConstructor as IModuleConstructor, type Nomalism_IOptions as IOptions, inventario as Inventario, language$1 as Language, location as Location, logout as Logout, materialEntrance as MaterialEntrance, maturityDates as MaturityDates, multimedia as Multimedia, npc as Npc, observation as Observation, observationType as ObservationType, order as Order, orderManagement as OrderManagement, password as Password, payment as Payment, paymentMethods as PaymentMethods, permission as Permissions, persona as Persona, preSale as PreSale, preSaleProduct as PreSaleProduct, printer as Printer, prison as Prison, productGoogleSheets as ProductGoogleSheets, productImage as ProductImage, projectInfo as ProjectInfo, promotion as Promotion, promotionAssoc as PromotionAssoc, propostaSheets as PropostaSheets, providerType as ProviderType, provider as Providers, purchase as Purchase, purchaseCondition as PurchaseConditions, quebra as Quebra, queryList as QueryList, queryParameter as QueryParameter, reasonForExemption as ReasonForExemption, recurrentTasks as RecurrentTasks, refreshToken as RefreshToken, returnReason as ReturnReason, returnToProvider as ReturnToProvider, savedEmPicking as SavedEmPicking, savedProviderProposal as SavedProviderProposal, schedule as Schedule, schedulePrintJob as SchedulePrintJob, segmentsArea as SegmentsArea, sessions as Sessions, settings as Settings, shippings as Shippings, sideMenu as SideMenuClass, startDocumentHeaderLastUpdate as StartDocumentHeaderLastUpdate, stockMovement as StockMovement, storeOperator as StoreOperator, swift as Swift, tag as TagClass, task as Task, taskMessage as TaskMessage, taskRead as TaskReadClass, tenant as Tenant, theme as ThemeClass, tickets as Tickets, language as TicketsLanguage, transformado as Transformado, typeOfLocation as TypeOfLocation, unitOfMeasure as UnitOfMeasure, upfrontReturn as UpfrontReturn, userPermission as UserPermissions, userPositions as UserPositions, user as Users, vatTax as VatTax, vatTaxZone as VatTaxZone, vatValidation as VatValidation, vehicles as Vehicles, workflow as Workflow, zipCode as ZipCode };
|
|
1986
1956
|
}
|
|
1987
1957
|
|
|
1988
1958
|
export { Nomalism as default };
|