-
Notifications
You must be signed in to change notification settings - Fork 0
/
paperless-document.ts
1097 lines (1061 loc) · 45.5 KB
/
paperless-document.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/// <reference path="./custom.d.ts" />
// tslint:disable
/**
* Paperless Document
* The Paperless Document API web service allows the users to upload their own customized trade documents for customs clearance to Forms History.
*
* OpenAPI spec version: 1.0.1
*
*
* NOTE: This file is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the file manually.
*/
import * as url from "url";
import isomorphicFetch, { Response } from "node-fetch";
import { Configuration } from "./configuration";
const BASE_PATH = "https://wwwcie.ups.com/api/".replace(/\/+$/, "");
/**
*
* @export
*/
export const COLLECTION_FORMATS = {
csv: ",",
ssv: " ",
tsv: "\t",
pipes: "|",
};
/**
*
* @export
* @interface FetchAPI
*/
export interface FetchAPI {
(url: string, init?: any): Promise<Response>;
}
/**
*
* @export
* @interface FetchArgs
*/
export interface FetchArgs {
url: string;
options: any;
}
/**
*
* @export
* @class BaseAPI
*/
export class BaseAPI {
protected configuration: Configuration;
constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected fetch: FetchAPI = isomorphicFetch) {
if (configuration) {
this.configuration = configuration;
this.basePath = configuration.basePath || this.basePath;
}
}
};
/**
*
* @export
* @class RequiredError
* @extends {Error}
*/
export class RequiredError extends Error {
name: "RequiredError"
constructor(public field: string, msg?: string) {
super(msg);
}
}
/**
* Warning code returned by the system.
* @export
*/
export type AlertCode = string
/**
* Warning messages returned by the system.
* @export
*/
export type AlertDescription = string
/**
* Paperless Document API Request container for deleting user created forms. N/A
* @export
* @interface DeleteRequest
*/
export interface DeleteRequest {
/**
*
* @type {DeleteRequestRequest}
* @memberof DeleteRequest
*/
Request: DeleteRequestRequest;
/**
* The Shipper's UPS Account Number. Your UPS Account Number must have 'Upload Forms Created Offline' enabled to use this webservice.
* @type {string}
* @memberof DeleteRequest
*/
ShipperNumber: string;
/**
* DocumentId representing uploaded document to Forms History. Only one DocumentID will be accepted for delete request.
* @type {string}
* @memberof DeleteRequest
*/
DocumentID: string;
}
/**
* DocumentId representing uploaded document to Forms History. Only one DocumentID will be accepted for delete request.
* @export
*/
export type DeleteRequestDocumentID = string
/**
* Contains Paperless Document API deleted request criteria components. N/A
* @export
* @interface DeleteRequestRequest
*/
export interface DeleteRequestRequest {
/**
* Enables the user to specify optional processing. Currently, there is no optional process in Paperless Document API. N/A
* @type {string}
* @memberof DeleteRequestRequest
*/
RequestOption?: string;
/**
* Not Used.
* @type {string}
* @memberof DeleteRequestRequest
*/
SubVersion?: string;
/**
*
* @type {RequestTransactionReference}
* @memberof DeleteRequestRequest
*/
TransactionReference?: RequestTransactionReference;
}
/**
* The Shipper's UPS Account Number. Your UPS Account Number must have 'Upload Forms Created Offline' enabled to use this webservice.
* @export
*/
export type DeleteRequestShipperNumber = string
/**
* Paperless Document API response container for delete request. N/A
* @export
* @interface DeleteResponse
*/
export interface DeleteResponse {
/**
*
* @type {DeleteResponseResponse}
* @memberof DeleteResponse
*/
Response: DeleteResponseResponse;
}
/**
* Response container.
* @export
* @interface DeleteResponseResponse
*/
export interface DeleteResponseResponse {
/**
*
* @type {ResponseResponseStatus}
* @memberof DeleteResponseResponse
*/
ResponseStatus: ResponseResponseStatus;
/**
*
* @type {ResponseAlert}
* @memberof DeleteResponseResponse
*/
Alert?: ResponseAlert;
/**
*
* @type {ResponseTransactionReference}
* @memberof DeleteResponseResponse
*/
TransactionReference?: ResponseTransactionReference;
}
/**
* DocumentID represents a document uploaded to Forms History. N/A
* @export
*/
export type FormsHistoryDocumentIDDocumentID = string
/**
* N/A
* @export
* @interface PAPERLESSDOCUMENTDeleteRequestWrapper
*/
export interface PAPERLESSDOCUMENTDeleteRequestWrapper {
/**
*
* @type {DeleteRequest}
* @memberof PAPERLESSDOCUMENTDeleteRequestWrapper
*/
DeleteRequest: DeleteRequest;
}
/**
* N/A
* @export
* @interface PAPERLESSDOCUMENTDeleteResponseWrapper
*/
export interface PAPERLESSDOCUMENTDeleteResponseWrapper {
/**
*
* @type {DeleteResponse}
* @memberof PAPERLESSDOCUMENTDeleteResponseWrapper
*/
DeleteResponse: DeleteResponse;
}
/**
* N/A
* @export
* @interface PAPERLESSDOCUMENTRequestWrapper
*/
export interface PAPERLESSDOCUMENTRequestWrapper {
/**
*
* @type {PushToImageRepositoryRequest}
* @memberof PAPERLESSDOCUMENTRequestWrapper
*/
PushToImageRepositoryRequest: PushToImageRepositoryRequest;
}
/**
* N/A
* @export
* @interface PAPERLESSDOCUMENTResponseWrapper
*/
export interface PAPERLESSDOCUMENTResponseWrapper {
/**
*
* @type {PushToImageRepositoryResponse}
* @memberof PAPERLESSDOCUMENTResponseWrapper
*/
PushToImageRepositoryResponse: PushToImageRepositoryResponse;
}
/**
* N/A
* @export
* @interface PAPERLESSDOCUMENTUploadRequestWrapper
*/
export interface PAPERLESSDOCUMENTUploadRequestWrapper {
/**
*
* @type {UploadRequest}
* @memberof PAPERLESSDOCUMENTUploadRequestWrapper
*/
UploadRequest: UploadRequest;
}
/**
* N/A
* @export
* @interface PAPERLESSDOCUMENTUploadResponseWrapper
*/
export interface PAPERLESSDOCUMENTUploadResponseWrapper {
/**
*
* @type {UploadResponse}
* @memberof PAPERLESSDOCUMENTUploadResponseWrapper
*/
UploadResponse: UploadResponse;
}
/**
* Paperless Document API request container for push to Image Repository. N/A
* @export
* @interface PushToImageRepositoryRequest
*/
export interface PushToImageRepositoryRequest {
/**
*
* @type {PushToImageRepositoryRequestRequest}
* @memberof PushToImageRepositoryRequest
*/
Request: PushToImageRepositoryRequestRequest;
/**
* The Shipper's UPS Account Number. Your UPS Account Number must have 'Upload Forms Created Offline' enabled to use this webservice.
* @type {string}
* @memberof PushToImageRepositoryRequest
*/
ShipperNumber: string;
/**
*
* @type {PushToImageRepositoryRequestFormsHistoryDocumentID}
* @memberof PushToImageRepositoryRequest
*/
FormsHistoryDocumentID: PushToImageRepositoryRequestFormsHistoryDocumentID;
/**
* FormsGroupID would be required in Push Request if user needs to update uploaded DocumentID(s) in Forms History. N/A
* @type {string}
* @memberof PushToImageRepositoryRequest
*/
FormsGroupID?: string;
/**
* Shipment Identifier is required for this request. N/A
* @type {string}
* @memberof PushToImageRepositoryRequest
*/
ShipmentIdentifier: string;
/**
* The date and time of the processed shipment. Required only for small package shipments. The valid format is yyyy-MM-dd-HH.mm.ss N/A
* @type {string}
* @memberof PushToImageRepositoryRequest
*/
ShipmentDateAndTime?: string;
/**
* Valid values are: 1 = small package, 2 = freight. N/A
* @type {string}
* @memberof PushToImageRepositoryRequest
*/
ShipmentType: string;
/**
* PRQ Confirmation being specified by client. Required for freight shipments. N/A
* @type {string}
* @memberof PushToImageRepositoryRequest
*/
PRQConfirmationNumber?: string;
/**
* UPS Tracking Number associated with this shipment. Required only for small package shipment. N/A
* @type {Array<string>}
* @memberof PushToImageRepositoryRequest
*/
TrackingNumber?: Array<string>;
}
/**
* FormsGroupID would be required in Push Request if user needs to update uploaded DocumentID(s) in Forms History. N/A
* @export
*/
export type PushToImageRepositoryRequestFormsGroupID = string
/**
* The container for DocumentID(s). N/A
* @export
* @interface PushToImageRepositoryRequestFormsHistoryDocumentID
*/
export interface PushToImageRepositoryRequestFormsHistoryDocumentID {
/**
* DocumentID represents a document uploaded to Forms History. N/A
* @type {Array<string>}
* @memberof PushToImageRepositoryRequestFormsHistoryDocumentID
*/
DocumentID: Array<string>;
}
/**
* PRQ Confirmation being specified by client. Required for freight shipments. N/A
* @export
*/
export type PushToImageRepositoryRequestPRQConfirmationNumber = string
/**
* Contains Paperless Document API PushToImageRepository request criteria components. N/A
* @export
* @interface PushToImageRepositoryRequestRequest
*/
export interface PushToImageRepositoryRequestRequest {
/**
* Enables the user to specify optional processing. Currently, there is no optional process in Paperless Document API. N/A
* @type {string}
* @memberof PushToImageRepositoryRequestRequest
*/
RequestOption?: string;
/**
* Not Used.
* @type {string}
* @memberof PushToImageRepositoryRequestRequest
*/
SubVersion?: string;
/**
*
* @type {RequestTransactionReference}
* @memberof PushToImageRepositoryRequestRequest
*/
TransactionReference?: RequestTransactionReference;
}
/**
* The date and time of the processed shipment. Required only for small package shipments. The valid format is yyyy-MM-dd-HH.mm.ss N/A
* @export
*/
export type PushToImageRepositoryRequestShipmentDateAndTime = string
/**
* Shipment Identifier is required for this request. N/A
* @export
*/
export type PushToImageRepositoryRequestShipmentIdentifier = string
/**
* Valid values are: 1 = small package, 2 = freight. N/A
* @export
*/
export type PushToImageRepositoryRequestShipmentType = string
/**
* The Shipper's UPS Account Number. Your UPS Account Number must have 'Upload Forms Created Offline' enabled to use this webservice.
* @export
*/
export type PushToImageRepositoryRequestShipperNumber = string
/**
* UPS Tracking Number associated with this shipment. Required only for small package shipment. N/A
* @export
*/
export type PushToImageRepositoryRequestTrackingNumber = string
/**
* Paperless Document API response container for Push To Image Repository request. N/A
* @export
* @interface PushToImageRepositoryResponse
*/
export interface PushToImageRepositoryResponse {
/**
*
* @type {PushToImageRepositoryResponseResponse}
* @memberof PushToImageRepositoryResponse
*/
Response: PushToImageRepositoryResponseResponse;
/**
* FormsGroupID is a consolidated ID representing one or multiple DocumentID(s). N/A
* @type {string}
* @memberof PushToImageRepositoryResponse
*/
FormsGroupID?: string;
}
/**
* FormsGroupID is a consolidated ID representing one or multiple DocumentID(s). N/A
* @export
*/
export type PushToImageRepositoryResponseFormsGroupID = string
/**
* Response container.
* @export
* @interface PushToImageRepositoryResponseResponse
*/
export interface PushToImageRepositoryResponseResponse {
/**
*
* @type {ResponseResponseStatus}
* @memberof PushToImageRepositoryResponseResponse
*/
ResponseStatus: ResponseResponseStatus;
/**
*
* @type {ResponseAlert}
* @memberof PushToImageRepositoryResponseResponse
*/
Alert?: ResponseAlert;
/**
*
* @type {ResponseTransactionReference}
* @memberof PushToImageRepositoryResponseResponse
*/
TransactionReference?: ResponseTransactionReference;
}
/**
* Enables the user to specify optional processing. Currently, there is no optional process in Paperless Document API. N/A
* @export
*/
export type RequestRequestOption = string
/**
* Not Used.
* @export
*/
export type RequestSubVersion = string
/**
* TransactionReference identifies transactions between client and server. N/A
* @export
* @interface RequestTransactionReference
*/
export interface RequestTransactionReference {
/**
* The CustomerContext Information which will be echoed during response.
* @type {string}
* @memberof RequestTransactionReference
*/
CustomerContext?: string;
}
/**
* Alert Container. There can be zero to many alert containers with code and description. N/A
* @export
* @interface ResponseAlert
*/
export interface ResponseAlert {
/**
* Warning code returned by the system.
* @type {string}
* @memberof ResponseAlert
*/
Code: string;
/**
* Warning messages returned by the system.
* @type {string}
* @memberof ResponseAlert
*/
Description: string;
}
/**
* Response status container. N/A
* @export
* @interface ResponseResponseStatus
*/
export interface ResponseResponseStatus {
/**
* Identifies the success or failure of the transaction. Valid values are 0 = Failed and 1 = Successful.
* @type {string}
* @memberof ResponseResponseStatus
*/
Code: string;
/**
* Describes Response Status Code. Returns text of \"Success\" or \"Failure\".
* @type {string}
* @memberof ResponseResponseStatus
*/
Description: string;
}
/**
* Identifies the success or failure of the transaction. Valid values are 0 = Failed and 1 = Successful.
* @export
*/
export type ResponseStatusCode = string
/**
* Describes Response Status Code. Returns text of \"Success\" or \"Failure\".
* @export
*/
export type ResponseStatusDescription = string
/**
* Transaction Reference Container. N/A
* @export
* @interface ResponseTransactionReference
*/
export interface ResponseTransactionReference {
/**
* The CustomerContext Information which will be echoed during response.
* @type {string}
* @memberof ResponseTransactionReference
*/
CustomerContext?: string;
}
/**
* The CustomerContext Information which will be echoed during response.
* @export
*/
export type TransactionReferenceCustomerContext = string
/**
* Paperless Document API Request container for uploading User Created Forms. N/A
* @export
* @interface UploadRequest
*/
export interface UploadRequest {
/**
*
* @type {UploadRequestRequest}
* @memberof UploadRequest
*/
Request: UploadRequestRequest;
/**
* The Shipper's UPS Account Number. Your UPS Account Number must have 'Upload Forms Created Offline' enabled to use this webservice.
* @type {string}
* @memberof UploadRequest
*/
ShipperNumber: string;
/**
*
* @type {UploadRequestUserCreatedForm}
* @memberof UploadRequest
*/
UserCreatedForm: UploadRequestUserCreatedForm;
}
/**
* Contains Paperless Document API upload request criteria components. N/A
* @export
* @interface UploadRequestRequest
*/
export interface UploadRequestRequest {
/**
* Enables the user to specify optional processing. Currently, there is no optional process in Paperless Document API. N/A
* @type {string}
* @memberof UploadRequestRequest
*/
RequestOption?: string;
/**
* Not Used.
* @type {string}
* @memberof UploadRequestRequest
*/
SubVersion?: string;
/**
*
* @type {RequestTransactionReference}
* @memberof UploadRequestRequest
*/
TransactionReference?: RequestTransactionReference;
}
/**
* The Shipper's UPS Account Number. Your UPS Account Number must have 'Upload Forms Created Offline' enabled to use this webservice.
* @export
*/
export type UploadRequestShipperNumber = string
/**
* The container for User Created Form. The container holds the file. Total number of allowed files per shipment is 13. N/A
* @export
* @interface UploadRequestUserCreatedForm
*/
export interface UploadRequestUserCreatedForm {
/**
* The name of the file. N/A
* @type {string}
* @memberof UploadRequestUserCreatedForm
*/
UserCreatedFormFileName: string;
/**
* The user created form file. The maximum allowable size of each file is restricted to 10 MB. Note: The maximum allowable size of each file is restriced to 1MB in CIE (Customer Integration Environment).
* @type {string}
* @memberof UploadRequestUserCreatedForm
*/
UserCreatedFormFile: string;
/**
* The UserCreatedForm file format. The allowed file formats are bmp, doc, gif, jpg, pdf, png, rtf, tif, txt and xls. The only exceptions for having file format of length 4 character are docx and xlsx. All other file formats needs to be of length 3.
* @type {string}
* @memberof UploadRequestUserCreatedForm
*/
UserCreatedFormFileFormat: string;
/**
* The type of documents in UserCreatedForm file. The allowed document types are 001 - Authorization Form, 002 - Commercial Invoice, 003 - Certificate of Origin, 004 - Export Accompanying Document, 005 - Export License, 006 - Import Permit, 007 - One Time NAFTA, 008 - Other Document, 009 - Power of Attorney, 010 - Packing List, 011 - SED Document, 012 - Shipper's Letter of Instruction, 013 - Declaration. The total number of documents allowed per file or per shipment is 13. Each document type needs to be three digits.
* @type {string}
* @memberof UploadRequestUserCreatedForm
*/
UserCreatedFormDocumentType: string;
}
/**
* Paperless Document API Response Container for upload request. N/A
* @export
* @interface UploadResponse
*/
export interface UploadResponse {
/**
*
* @type {UploadResponseResponse}
* @memberof UploadResponse
*/
Response: UploadResponseResponse;
/**
*
* @type {UploadResponseFormsHistoryDocumentID}
* @memberof UploadResponse
*/
FormsHistoryDocumentID?: UploadResponseFormsHistoryDocumentID;
}
/**
* The container for DocumentID(s). N/A
* @export
* @interface UploadResponseFormsHistoryDocumentID
*/
export interface UploadResponseFormsHistoryDocumentID {
/**
* DocumentID represents a document uploaded to Forms History. N/A
* @type {string}
* @memberof UploadResponseFormsHistoryDocumentID
*/
DocumentID: string;
}
/**
* Response container.
* @export
* @interface UploadResponseResponse
*/
export interface UploadResponseResponse {
/**
*
* @type {ResponseResponseStatus}
* @memberof UploadResponseResponse
*/
ResponseStatus: ResponseResponseStatus;
/**
*
* @type {ResponseAlert}
* @memberof UploadResponseResponse
*/
Alert?: ResponseAlert;
/**
*
* @type {ResponseTransactionReference}
* @memberof UploadResponseResponse
*/
TransactionReference?: ResponseTransactionReference;
}
/**
* The type of documents in UserCreatedForm file. The allowed document types are 001 - Authorization Form, 002 - Commercial Invoice, 003 - Certificate of Origin, 004 - Export Accompanying Document, 005 - Export License, 006 - Import Permit, 007 - One Time NAFTA, 008 - Other Document, 009 - Power of Attorney, 010 - Packing List, 011 - SED Document, 012 - Shipper's Letter of Instruction, 013 - Declaration. The total number of documents allowed per file or per shipment is 13. Each document type needs to be three digits.
* @export
*/
export type UserCreatedFormUserCreatedFormDocumentType = string
/**
* The user created form file. The maximum allowable size of each file is restricted to 10 MB. Note: The maximum allowable size of each file is restriced to 1MB in CIE (Customer Integration Environment).
* @export
*/
export type UserCreatedFormUserCreatedFormFile = string
/**
* The UserCreatedForm file format. The allowed file formats are bmp, doc, gif, jpg, pdf, png, rtf, tif, txt and xls. The only exceptions for having file format of length 4 character are docx and xlsx. All other file formats needs to be of length 3.
* @export
*/
export type UserCreatedFormUserCreatedFormFileFormat = string
/**
* The name of the file. N/A
* @export
*/
export type UserCreatedFormUserCreatedFormFileName = string
/**
* DefaultApi - fetch parameter creator
* @export
*/
export const DefaultApiFetchParamCreator = function (configuration?: Configuration) {
return {
/**
*
* @summary The Paperless Document API web service allows the users to upload their own customized trade documents for customs clearance to Forms History.
* @param {string} version Version of API
* @param {string} ShipperNumber Your Shipper Number
* @param {string} DocumentId DocumentId representing uploaded document to Forms History. Only one DocumentID will be accepted for delete request.
* @param {string} [transId] An identifier unique to the request. Length 32
* @param {string} [transactionSrc] An identifier of the client/source application that is making the request.Length 512
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
_delete(version: string, ShipperNumber: string, DocumentId: string, transId?: string, transactionSrc?: string, options: any = {}): FetchArgs {
// verify required parameter 'version' is not null or undefined
if (version === null || version === undefined) {
throw new RequiredError('version','Required parameter version was null or undefined when calling _delete.');
}
// verify required parameter 'ShipperNumber' is not null or undefined
if (ShipperNumber === null || ShipperNumber === undefined) {
throw new RequiredError('ShipperNumber','Required parameter ShipperNumber was null or undefined when calling _delete.');
}
// verify required parameter 'DocumentId' is not null or undefined
if (DocumentId === null || DocumentId === undefined) {
throw new RequiredError('DocumentId','Required parameter DocumentId was null or undefined when calling _delete.');
}
const localVarPath = `/paperlessdocuments/{version}/DocumentId/ShipperNumber`
.replace(`{${"version"}}`, encodeURIComponent(String(version)));
const localVarUrlObj = url.parse(localVarPath, true);
const localVarRequestOptions = Object.assign({ method: 'DELETE' }, options);
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication oauth2 required
// oauth required
if (configuration && configuration.accessToken) {
const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
? configuration.accessToken("oauth2", [])
: configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + localVarAccessTokenValue;
}
if (transId !== undefined && transId !== null) {
localVarHeaderParameter['transId'] = String(transId);
}
if (transactionSrc !== undefined && transactionSrc !== null) {
localVarHeaderParameter['transactionSrc'] = String(transactionSrc);
}
if (ShipperNumber !== undefined && ShipperNumber !== null) {
localVarHeaderParameter['ShipperNumber'] = String(ShipperNumber);
}
if (DocumentId !== undefined && DocumentId !== null) {
localVarHeaderParameter['DocumentId'] = String(DocumentId);
}
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
delete localVarUrlObj.search;
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
return {
url: url.format(localVarUrlObj),
options: localVarRequestOptions,
};
},
/**
*
* @summary The Paperless Document API web service allows the users to upload their own customized trade documents for customs clearance to Forms History.
* @param {PAPERLESSDOCUMENTRequestWrapper} body Generate sample code for popular API requests by selecting an example below. To view a full sample request and response, first click "Authorize" and enter your application credentials, then populate the required parameters above and click "Try it out".
* @param {string} version Version of API
* @param {string} ShipperNumber Shipper Number
* @param {string} [transId] An identifier unique to the request. Length 32
* @param {string} [transactionSrc] An identifier of the client/source application that is making the request.Length 512
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
pushToImageRepository(body: PAPERLESSDOCUMENTRequestWrapper, version: string, ShipperNumber: string, transId?: string, transactionSrc?: string, options: any = {}): FetchArgs {
// verify required parameter 'body' is not null or undefined
if (body === null || body === undefined) {
throw new RequiredError('body','Required parameter body was null or undefined when calling pushToImageRepository.');
}
// verify required parameter 'version' is not null or undefined
if (version === null || version === undefined) {
throw new RequiredError('version','Required parameter version was null or undefined when calling pushToImageRepository.');
}
// verify required parameter 'ShipperNumber' is not null or undefined
if (ShipperNumber === null || ShipperNumber === undefined) {
throw new RequiredError('ShipperNumber','Required parameter ShipperNumber was null or undefined when calling pushToImageRepository.');
}
const localVarPath = `/paperlessdocuments/{version}/image`
.replace(`{${"version"}}`, encodeURIComponent(String(version)));
const localVarUrlObj = url.parse(localVarPath, true);
const localVarRequestOptions = Object.assign({ method: 'POST' }, options);
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication oauth2 required
// oauth required
if (configuration && configuration.accessToken) {
const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
? configuration.accessToken("oauth2", [])
: configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + localVarAccessTokenValue;
}
if (transId !== undefined && transId !== null) {
localVarHeaderParameter['transId'] = String(transId);
}
if (transactionSrc !== undefined && transactionSrc !== null) {
localVarHeaderParameter['transactionSrc'] = String(transactionSrc);
}
if (ShipperNumber !== undefined && ShipperNumber !== null) {
localVarHeaderParameter['ShipperNumber'] = String(ShipperNumber);
}
localVarHeaderParameter['Content-Type'] = 'application/json';
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
delete localVarUrlObj.search;
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
const needsSerialization = (<any>"PAPERLESSDOCUMENTRequestWrapper" !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
localVarRequestOptions.body = needsSerialization ? JSON.stringify(body || {}) : (body || "");
return {
url: url.format(localVarUrlObj),
options: localVarRequestOptions,
};
},
/**
*
* @summary The Paperless Document API web service allows the users to upload,delete and push to image repository their own customized trade documents for customs clearance to Forms History.
* @param {PAPERLESSDOCUMENTUploadRequestWrapper} body Generate sample code for popular API requests by selecting an example below. To view a full sample request and response, first click "Authorize" and enter your application credentials, then populate the required parameters above and click "Try it out".
* @param {string} version Version of API
* @param {string} ShipperNumber Shipper Number
* @param {string} [transId] An identifier unique to the request. Length 32
* @param {string} [transactionSrc] An identifier of the client/source application that is making the request.Length 512
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
upload(body: PAPERLESSDOCUMENTUploadRequestWrapper, version: string, ShipperNumber: string, transId?: string, transactionSrc?: string, options: any = {}): FetchArgs {
// verify required parameter 'body' is not null or undefined
if (body === null || body === undefined) {
throw new RequiredError('body','Required parameter body was null or undefined when calling upload.');
}
// verify required parameter 'version' is not null or undefined
if (version === null || version === undefined) {
throw new RequiredError('version','Required parameter version was null or undefined when calling upload.');
}
// verify required parameter 'ShipperNumber' is not null or undefined
if (ShipperNumber === null || ShipperNumber === undefined) {
throw new RequiredError('ShipperNumber','Required parameter ShipperNumber was null or undefined when calling upload.');
}
const localVarPath = `/paperlessdocuments/{version}/upload`
.replace(`{${"version"}}`, encodeURIComponent(String(version)));
const localVarUrlObj = url.parse(localVarPath, true);
const localVarRequestOptions = Object.assign({ method: 'POST' }, options);
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication oauth2 required
// oauth required
if (configuration && configuration.accessToken) {
const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
? configuration.accessToken("oauth2", [])
: configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + localVarAccessTokenValue;
}
if (transId !== undefined && transId !== null) {
localVarHeaderParameter['transId'] = String(transId);
}
if (transactionSrc !== undefined && transactionSrc !== null) {
localVarHeaderParameter['transactionSrc'] = String(transactionSrc);
}
if (ShipperNumber !== undefined && ShipperNumber !== null) {
localVarHeaderParameter['ShipperNumber'] = String(ShipperNumber);
}
localVarHeaderParameter['Content-Type'] = 'application/json';
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
delete localVarUrlObj.search;
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
const needsSerialization = (<any>"PAPERLESSDOCUMENTUploadRequestWrapper" !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
localVarRequestOptions.body = needsSerialization ? JSON.stringify(body || {}) : (body || "");
return {
url: url.format(localVarUrlObj),
options: localVarRequestOptions,
};
},
}
};
/**
* DefaultApi - functional programming interface
* @export
*/
export const DefaultApiFp = function(configuration?: Configuration) {
return {
/**
*
* @summary The Paperless Document API web service allows the users to upload their own customized trade documents for customs clearance to Forms History.
* @param {string} version Version of API
* @param {string} ShipperNumber Your Shipper Number
* @param {string} DocumentId DocumentId representing uploaded document to Forms History. Only one DocumentID will be accepted for delete request.
* @param {string} [transId] An identifier unique to the request. Length 32
* @param {string} [transactionSrc] An identifier of the client/source application that is making the request.Length 512
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
_delete(version: string, ShipperNumber: string, DocumentId: string, transId?: string, transactionSrc?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<PAPERLESSDOCUMENTDeleteResponseWrapper> {
const localVarFetchArgs = DefaultApiFetchParamCreator(configuration)._delete(version, ShipperNumber, DocumentId, transId, transactionSrc, options);
return (fetch: FetchAPI = isomorphicFetch, basePath: string = BASE_PATH) => {
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
if (response.status >= 200 && response.status < 300) {
return response.json();
} else {
throw response;
}
});
};
},
/**
*
* @summary The Paperless Document API web service allows the users to upload their own customized trade documents for customs clearance to Forms History.
* @param {PAPERLESSDOCUMENTRequestWrapper} body Generate sample code for popular API requests by selecting an example below. To view a full sample request and response, first click "Authorize" and enter your application credentials, then populate the required parameters above and click "Try it out".
* @param {string} version Version of API
* @param {string} ShipperNumber Shipper Number
* @param {string} [transId] An identifier unique to the request. Length 32
* @param {string} [transactionSrc] An identifier of the client/source application that is making the request.Length 512
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
pushToImageRepository(body: PAPERLESSDOCUMENTRequestWrapper, version: string, ShipperNumber: string, transId?: string, transactionSrc?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<PAPERLESSDOCUMENTResponseWrapper> {
const localVarFetchArgs = DefaultApiFetchParamCreator(configuration).pushToImageRepository(body, version, ShipperNumber, transId, transactionSrc, options);
return (fetch: FetchAPI = isomorphicFetch, basePath: string = BASE_PATH) => {
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
if (response.status >= 200 && response.status < 300) {
return response.json();
} else {
throw response;
}
});
};
},
/**
*
* @summary The Paperless Document API web service allows the users to upload,delete and push to image repository their own customized trade documents for customs clearance to Forms History.
* @param {PAPERLESSDOCUMENTUploadRequestWrapper} body Generate sample code for popular API requests by selecting an example below. To view a full sample request and response, first click "Authorize" and enter your application credentials, then populate the required parameters above and click "Try it out".
* @param {string} version Version of API
* @param {string} ShipperNumber Shipper Number
* @param {string} [transId] An identifier unique to the request. Length 32
* @param {string} [transactionSrc] An identifier of the client/source application that is making the request.Length 512
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
upload(body: PAPERLESSDOCUMENTUploadRequestWrapper, version: string, ShipperNumber: string, transId?: string, transactionSrc?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<PAPERLESSDOCUMENTUploadResponseWrapper> {
const localVarFetchArgs = DefaultApiFetchParamCreator(configuration).upload(body, version, ShipperNumber, transId, transactionSrc, options);
return (fetch: FetchAPI = isomorphicFetch, basePath: string = BASE_PATH) => {
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
if (response.status >= 200 && response.status < 300) {
return response.json();
} else {
throw response;
}
});
};
},
}
};
/**
* DefaultApi - factory interface
* @export
*/
export const DefaultApiFactory = function (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) {
return {
/**
*
* @summary The Paperless Document API web service allows the users to upload their own customized trade documents for customs clearance to Forms History.
* @param {string} version Version of API