@erp-galoper/types 1.0.1401 → 1.0.1402
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/openapi.ts +1466 -377
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -10398,6 +10398,43 @@ export interface paths {
|
|
|
10398
10398
|
patch?: never;
|
|
10399
10399
|
trace?: never;
|
|
10400
10400
|
};
|
|
10401
|
+
"/api/v1/purchase/request-for-quotations/{id}/send-email/": {
|
|
10402
|
+
parameters: {
|
|
10403
|
+
query?: never;
|
|
10404
|
+
header?: never;
|
|
10405
|
+
path?: never;
|
|
10406
|
+
cookie?: never;
|
|
10407
|
+
};
|
|
10408
|
+
get?: never;
|
|
10409
|
+
put?: never;
|
|
10410
|
+
/**
|
|
10411
|
+
* Send Request For Quotation By Email
|
|
10412
|
+
* @description Generate a request for quotation PDF and send it as an email attachment.
|
|
10413
|
+
*
|
|
10414
|
+
* Responses:
|
|
10415
|
+
* - 200:
|
|
10416
|
+
* - emailSent
|
|
10417
|
+
* - 400:
|
|
10418
|
+
* - mailServiceNotInitialized
|
|
10419
|
+
* - unsupportedEmailMethod
|
|
10420
|
+
* - 403:
|
|
10421
|
+
* - permissionDenied
|
|
10422
|
+
* - 404:
|
|
10423
|
+
* - requestForQuotationDoesNotExist
|
|
10424
|
+
* - 500:
|
|
10425
|
+
* - internalServerError
|
|
10426
|
+
* - brevoApiError
|
|
10427
|
+
* - emailSendFailed
|
|
10428
|
+
* - Permission Key:
|
|
10429
|
+
* - requestforquotation : [ send ]
|
|
10430
|
+
*/
|
|
10431
|
+
post: operations["purchase_request_for_quotation_views_send_request_for_quotation_by_email"];
|
|
10432
|
+
delete?: never;
|
|
10433
|
+
options?: never;
|
|
10434
|
+
head?: never;
|
|
10435
|
+
patch?: never;
|
|
10436
|
+
trace?: never;
|
|
10437
|
+
};
|
|
10401
10438
|
"/api/v1/purchase/advance-payments/{id}/export-excel/": {
|
|
10402
10439
|
parameters: {
|
|
10403
10440
|
query?: never;
|
|
@@ -11018,6 +11055,43 @@ export interface paths {
|
|
|
11018
11055
|
patch?: never;
|
|
11019
11056
|
trace?: never;
|
|
11020
11057
|
};
|
|
11058
|
+
"/api/v1/purchase/quotations/{id}/send-email/": {
|
|
11059
|
+
parameters: {
|
|
11060
|
+
query?: never;
|
|
11061
|
+
header?: never;
|
|
11062
|
+
path?: never;
|
|
11063
|
+
cookie?: never;
|
|
11064
|
+
};
|
|
11065
|
+
get?: never;
|
|
11066
|
+
put?: never;
|
|
11067
|
+
/**
|
|
11068
|
+
* Send Purchase Quotation By Email
|
|
11069
|
+
* @description Generate a purchase quotation PDF and send it as an email attachment.
|
|
11070
|
+
*
|
|
11071
|
+
* Responses:
|
|
11072
|
+
* - 200:
|
|
11073
|
+
* - emailSent
|
|
11074
|
+
* - 400:
|
|
11075
|
+
* - mailServiceNotInitialized
|
|
11076
|
+
* - unsupportedEmailMethod
|
|
11077
|
+
* - 403:
|
|
11078
|
+
* - permissionDenied
|
|
11079
|
+
* - 404:
|
|
11080
|
+
* - purchaseQuotationDoesNotExist
|
|
11081
|
+
* - 500:
|
|
11082
|
+
* - internalServerError
|
|
11083
|
+
* - brevoApiError
|
|
11084
|
+
* - emailSendFailed
|
|
11085
|
+
* - Permission Key:
|
|
11086
|
+
* - purchasequotation : [ send ]
|
|
11087
|
+
*/
|
|
11088
|
+
post: operations["purchase_quotation_views_send_purchase_quotation_by_email"];
|
|
11089
|
+
delete?: never;
|
|
11090
|
+
options?: never;
|
|
11091
|
+
head?: never;
|
|
11092
|
+
patch?: never;
|
|
11093
|
+
trace?: never;
|
|
11094
|
+
};
|
|
11021
11095
|
"/api/v1/purchase/orders/": {
|
|
11022
11096
|
parameters: {
|
|
11023
11097
|
query?: never;
|
|
@@ -11375,6 +11449,43 @@ export interface paths {
|
|
|
11375
11449
|
patch?: never;
|
|
11376
11450
|
trace?: never;
|
|
11377
11451
|
};
|
|
11452
|
+
"/api/v1/purchase/orders/{id}/send-email/": {
|
|
11453
|
+
parameters: {
|
|
11454
|
+
query?: never;
|
|
11455
|
+
header?: never;
|
|
11456
|
+
path?: never;
|
|
11457
|
+
cookie?: never;
|
|
11458
|
+
};
|
|
11459
|
+
get?: never;
|
|
11460
|
+
put?: never;
|
|
11461
|
+
/**
|
|
11462
|
+
* Send Purchase Order By Email
|
|
11463
|
+
* @description Generate a purchase order PDF and send it as an email attachment.
|
|
11464
|
+
*
|
|
11465
|
+
* Responses:
|
|
11466
|
+
* - 200:
|
|
11467
|
+
* - emailSent
|
|
11468
|
+
* - 400:
|
|
11469
|
+
* - mailServiceNotInitialized
|
|
11470
|
+
* - unsupportedEmailMethod
|
|
11471
|
+
* - 403:
|
|
11472
|
+
* - permissionDenied
|
|
11473
|
+
* - 404:
|
|
11474
|
+
* - purchaseOrderDoesNotExist
|
|
11475
|
+
* - 500:
|
|
11476
|
+
* - internalServerError
|
|
11477
|
+
* - brevoApiError
|
|
11478
|
+
* - emailSendFailed
|
|
11479
|
+
* - Permission Key:
|
|
11480
|
+
* - purchaseorder : [ send ]
|
|
11481
|
+
*/
|
|
11482
|
+
post: operations["purchase_order_views_send_purchase_order_by_email"];
|
|
11483
|
+
delete?: never;
|
|
11484
|
+
options?: never;
|
|
11485
|
+
head?: never;
|
|
11486
|
+
patch?: never;
|
|
11487
|
+
trace?: never;
|
|
11488
|
+
};
|
|
11378
11489
|
"/api/v1/purchase/return-orders/": {
|
|
11379
11490
|
parameters: {
|
|
11380
11491
|
query?: never;
|
|
@@ -11656,6 +11767,43 @@ export interface paths {
|
|
|
11656
11767
|
patch?: never;
|
|
11657
11768
|
trace?: never;
|
|
11658
11769
|
};
|
|
11770
|
+
"/api/v1/purchase/return-orders/{id}/send-email/": {
|
|
11771
|
+
parameters: {
|
|
11772
|
+
query?: never;
|
|
11773
|
+
header?: never;
|
|
11774
|
+
path?: never;
|
|
11775
|
+
cookie?: never;
|
|
11776
|
+
};
|
|
11777
|
+
get?: never;
|
|
11778
|
+
put?: never;
|
|
11779
|
+
/**
|
|
11780
|
+
* Send Purchase Return Order By Email
|
|
11781
|
+
* @description Generate a purchase return order PDF and send it as an email attachment.
|
|
11782
|
+
*
|
|
11783
|
+
* Responses:
|
|
11784
|
+
* - 200:
|
|
11785
|
+
* - emailSent
|
|
11786
|
+
* - 400:
|
|
11787
|
+
* - mailServiceNotInitialized
|
|
11788
|
+
* - unsupportedEmailMethod
|
|
11789
|
+
* - 403:
|
|
11790
|
+
* - permissionDenied
|
|
11791
|
+
* - 404:
|
|
11792
|
+
* - purchaseReturnOrderDoesNotExist
|
|
11793
|
+
* - 500:
|
|
11794
|
+
* - internalServerError
|
|
11795
|
+
* - brevoApiError
|
|
11796
|
+
* - emailSendFailed
|
|
11797
|
+
* - Permission Key:
|
|
11798
|
+
* - purchasereturnorder : [ send ]
|
|
11799
|
+
*/
|
|
11800
|
+
post: operations["purchase_return_order_views_send_purchase_return_order_by_email"];
|
|
11801
|
+
delete?: never;
|
|
11802
|
+
options?: never;
|
|
11803
|
+
head?: never;
|
|
11804
|
+
patch?: never;
|
|
11805
|
+
trace?: never;
|
|
11806
|
+
};
|
|
11659
11807
|
"/api/v1/purchase/invoices/calculate-totals/": {
|
|
11660
11808
|
parameters: {
|
|
11661
11809
|
query?: never;
|
|
@@ -11947,6 +12095,43 @@ export interface paths {
|
|
|
11947
12095
|
patch?: never;
|
|
11948
12096
|
trace?: never;
|
|
11949
12097
|
};
|
|
12098
|
+
"/api/v1/purchase/invoices/{id}/send-email/": {
|
|
12099
|
+
parameters: {
|
|
12100
|
+
query?: never;
|
|
12101
|
+
header?: never;
|
|
12102
|
+
path?: never;
|
|
12103
|
+
cookie?: never;
|
|
12104
|
+
};
|
|
12105
|
+
get?: never;
|
|
12106
|
+
put?: never;
|
|
12107
|
+
/**
|
|
12108
|
+
* Send Purchase Invoice By Email
|
|
12109
|
+
* @description Generate a purchase invoice PDF and send it as an email attachment.
|
|
12110
|
+
*
|
|
12111
|
+
* Responses:
|
|
12112
|
+
* - 200:
|
|
12113
|
+
* - emailSent
|
|
12114
|
+
* - 400:
|
|
12115
|
+
* - mailServiceNotInitialized
|
|
12116
|
+
* - unsupportedEmailMethod
|
|
12117
|
+
* - 403:
|
|
12118
|
+
* - permissionDenied
|
|
12119
|
+
* - 404:
|
|
12120
|
+
* - purchaseInvoiceDoesNotExist
|
|
12121
|
+
* - 500:
|
|
12122
|
+
* - internalServerError
|
|
12123
|
+
* - brevoApiError
|
|
12124
|
+
* - emailSendFailed
|
|
12125
|
+
* - Permission Key:
|
|
12126
|
+
* - purchaseinvoice : [ send ]
|
|
12127
|
+
*/
|
|
12128
|
+
post: operations["purchase_purchase_invoice_views_send_purchase_invoice_by_email"];
|
|
12129
|
+
delete?: never;
|
|
12130
|
+
options?: never;
|
|
12131
|
+
head?: never;
|
|
12132
|
+
patch?: never;
|
|
12133
|
+
trace?: never;
|
|
12134
|
+
};
|
|
11950
12135
|
"/api/v1/purchase/payment-vouchers/calculate-equivalents/": {
|
|
11951
12136
|
parameters: {
|
|
11952
12137
|
query?: never;
|
|
@@ -12590,6 +12775,43 @@ export interface paths {
|
|
|
12590
12775
|
patch?: never;
|
|
12591
12776
|
trace?: never;
|
|
12592
12777
|
};
|
|
12778
|
+
"/api/v1/purchase/return-invoices/{id}/send-email/": {
|
|
12779
|
+
parameters: {
|
|
12780
|
+
query?: never;
|
|
12781
|
+
header?: never;
|
|
12782
|
+
path?: never;
|
|
12783
|
+
cookie?: never;
|
|
12784
|
+
};
|
|
12785
|
+
get?: never;
|
|
12786
|
+
put?: never;
|
|
12787
|
+
/**
|
|
12788
|
+
* Send Purchase Return Invoice By Email
|
|
12789
|
+
* @description Generate a purchase return invoice PDF and send it as an email attachment.
|
|
12790
|
+
*
|
|
12791
|
+
* Responses:
|
|
12792
|
+
* - 200:
|
|
12793
|
+
* - emailSent
|
|
12794
|
+
* - 400:
|
|
12795
|
+
* - mailServiceNotInitialized
|
|
12796
|
+
* - unsupportedEmailMethod
|
|
12797
|
+
* - 403:
|
|
12798
|
+
* - permissionDenied
|
|
12799
|
+
* - 404:
|
|
12800
|
+
* - purchaseReturnInvoiceDoesNotExist
|
|
12801
|
+
* - 500:
|
|
12802
|
+
* - internalServerError
|
|
12803
|
+
* - brevoApiError
|
|
12804
|
+
* - emailSendFailed
|
|
12805
|
+
* - Permission Key:
|
|
12806
|
+
* - purchasereturninvoice : [ send ]
|
|
12807
|
+
*/
|
|
12808
|
+
post: operations["purchase_return_invoice_views_send_purchase_return_invoice_by_email"];
|
|
12809
|
+
delete?: never;
|
|
12810
|
+
options?: never;
|
|
12811
|
+
head?: never;
|
|
12812
|
+
patch?: never;
|
|
12813
|
+
trace?: never;
|
|
12814
|
+
};
|
|
12593
12815
|
"/api/v1/inventory/goods-receipt-note/": {
|
|
12594
12816
|
parameters: {
|
|
12595
12817
|
query?: never;
|
|
@@ -15272,6 +15494,43 @@ export interface paths {
|
|
|
15272
15494
|
patch?: never;
|
|
15273
15495
|
trace?: never;
|
|
15274
15496
|
};
|
|
15497
|
+
"/api/v1/sales/quotations/{id}/send-email/": {
|
|
15498
|
+
parameters: {
|
|
15499
|
+
query?: never;
|
|
15500
|
+
header?: never;
|
|
15501
|
+
path?: never;
|
|
15502
|
+
cookie?: never;
|
|
15503
|
+
};
|
|
15504
|
+
get?: never;
|
|
15505
|
+
put?: never;
|
|
15506
|
+
/**
|
|
15507
|
+
* Send Sales Quotation By Email
|
|
15508
|
+
* @description Generate a sales quotation PDF and send it as an email attachment.
|
|
15509
|
+
*
|
|
15510
|
+
* Responses:
|
|
15511
|
+
* - 200:
|
|
15512
|
+
* - emailSent
|
|
15513
|
+
* - 400:
|
|
15514
|
+
* - mailServiceNotInitialized
|
|
15515
|
+
* - unsupportedEmailMethod
|
|
15516
|
+
* - 403:
|
|
15517
|
+
* - permissionDenied
|
|
15518
|
+
* - 404:
|
|
15519
|
+
* - salesQuotationDoesNotExist
|
|
15520
|
+
* - 500:
|
|
15521
|
+
* - internalServerError
|
|
15522
|
+
* - brevoApiError
|
|
15523
|
+
* - emailSendFailed
|
|
15524
|
+
* - Permission Key:
|
|
15525
|
+
* - salesquotation : [ send ]
|
|
15526
|
+
*/
|
|
15527
|
+
post: operations["sales_quotation_views_send_sales_quotation_by_email"];
|
|
15528
|
+
delete?: never;
|
|
15529
|
+
options?: never;
|
|
15530
|
+
head?: never;
|
|
15531
|
+
patch?: never;
|
|
15532
|
+
trace?: never;
|
|
15533
|
+
};
|
|
15275
15534
|
"/api/v1/common/contact-segmentation/": {
|
|
15276
15535
|
parameters: {
|
|
15277
15536
|
query?: never;
|
|
@@ -16520,6 +16779,43 @@ export interface paths {
|
|
|
16520
16779
|
patch?: never;
|
|
16521
16780
|
trace?: never;
|
|
16522
16781
|
};
|
|
16782
|
+
"/api/v1/sales/orders/{id}/send-email/": {
|
|
16783
|
+
parameters: {
|
|
16784
|
+
query?: never;
|
|
16785
|
+
header?: never;
|
|
16786
|
+
path?: never;
|
|
16787
|
+
cookie?: never;
|
|
16788
|
+
};
|
|
16789
|
+
get?: never;
|
|
16790
|
+
put?: never;
|
|
16791
|
+
/**
|
|
16792
|
+
* Send Sales Order By Email
|
|
16793
|
+
* @description Generate a sales order PDF and send it as an email attachment.
|
|
16794
|
+
*
|
|
16795
|
+
* Responses:
|
|
16796
|
+
* - 200:
|
|
16797
|
+
* - emailSent
|
|
16798
|
+
* - 400:
|
|
16799
|
+
* - mailServiceNotInitialized
|
|
16800
|
+
* - unsupportedEmailMethod
|
|
16801
|
+
* - 403:
|
|
16802
|
+
* - permissionDenied
|
|
16803
|
+
* - 404:
|
|
16804
|
+
* - salesOrderDoesNotExist
|
|
16805
|
+
* - 500:
|
|
16806
|
+
* - internalServerError
|
|
16807
|
+
* - brevoApiError
|
|
16808
|
+
* - emailSendFailed
|
|
16809
|
+
* - Permission Key:
|
|
16810
|
+
* - salesorder : [ send ]
|
|
16811
|
+
*/
|
|
16812
|
+
post: operations["sales_order_views_send_sales_order_by_email"];
|
|
16813
|
+
delete?: never;
|
|
16814
|
+
options?: never;
|
|
16815
|
+
head?: never;
|
|
16816
|
+
patch?: never;
|
|
16817
|
+
trace?: never;
|
|
16818
|
+
};
|
|
16523
16819
|
"/api/v1/purchase/credit-notes/": {
|
|
16524
16820
|
parameters: {
|
|
16525
16821
|
query?: never;
|
|
@@ -17496,6 +17792,43 @@ export interface paths {
|
|
|
17496
17792
|
patch?: never;
|
|
17497
17793
|
trace?: never;
|
|
17498
17794
|
};
|
|
17795
|
+
"/api/v1/sales/invoices/{id}/send-email/": {
|
|
17796
|
+
parameters: {
|
|
17797
|
+
query?: never;
|
|
17798
|
+
header?: never;
|
|
17799
|
+
path?: never;
|
|
17800
|
+
cookie?: never;
|
|
17801
|
+
};
|
|
17802
|
+
get?: never;
|
|
17803
|
+
put?: never;
|
|
17804
|
+
/**
|
|
17805
|
+
* Send Sales Invoice By Email
|
|
17806
|
+
* @description Generate a sales invoice PDF and send it as an email attachment.
|
|
17807
|
+
*
|
|
17808
|
+
* Responses:
|
|
17809
|
+
* - 200:
|
|
17810
|
+
* - emailSent
|
|
17811
|
+
* - 400:
|
|
17812
|
+
* - mailServiceNotInitialized
|
|
17813
|
+
* - unsupportedEmailMethod
|
|
17814
|
+
* - 403:
|
|
17815
|
+
* - permissionDenied
|
|
17816
|
+
* - 404:
|
|
17817
|
+
* - salesInvoiceDoesNotExist
|
|
17818
|
+
* - 500:
|
|
17819
|
+
* - internalServerError
|
|
17820
|
+
* - brevoApiError
|
|
17821
|
+
* - emailSendFailed
|
|
17822
|
+
* - Permission Key:
|
|
17823
|
+
* - salesinvoice : [ send ]
|
|
17824
|
+
*/
|
|
17825
|
+
post: operations["sales_invoice_views_send_sales_invoice_by_email"];
|
|
17826
|
+
delete?: never;
|
|
17827
|
+
options?: never;
|
|
17828
|
+
head?: never;
|
|
17829
|
+
patch?: never;
|
|
17830
|
+
trace?: never;
|
|
17831
|
+
};
|
|
17499
17832
|
"/api/v1/sales/return-orders/": {
|
|
17500
17833
|
parameters: {
|
|
17501
17834
|
query?: never;
|
|
@@ -17735,6 +18068,43 @@ export interface paths {
|
|
|
17735
18068
|
patch?: never;
|
|
17736
18069
|
trace?: never;
|
|
17737
18070
|
};
|
|
18071
|
+
"/api/v1/sales/return-orders/{id}/send-email/": {
|
|
18072
|
+
parameters: {
|
|
18073
|
+
query?: never;
|
|
18074
|
+
header?: never;
|
|
18075
|
+
path?: never;
|
|
18076
|
+
cookie?: never;
|
|
18077
|
+
};
|
|
18078
|
+
get?: never;
|
|
18079
|
+
put?: never;
|
|
18080
|
+
/**
|
|
18081
|
+
* Send Sales Return Order By Email
|
|
18082
|
+
* @description Generate a sales return order PDF and send it as an email attachment.
|
|
18083
|
+
*
|
|
18084
|
+
* Responses:
|
|
18085
|
+
* - 200:
|
|
18086
|
+
* - emailSent
|
|
18087
|
+
* - 400:
|
|
18088
|
+
* - mailServiceNotInitialized
|
|
18089
|
+
* - unsupportedEmailMethod
|
|
18090
|
+
* - 403:
|
|
18091
|
+
* - permissionDenied
|
|
18092
|
+
* - 404:
|
|
18093
|
+
* - salesReturnOrderDoesNotExist
|
|
18094
|
+
* - 500:
|
|
18095
|
+
* - internalServerError
|
|
18096
|
+
* - brevoApiError
|
|
18097
|
+
* - emailSendFailed
|
|
18098
|
+
* - Permission Key:
|
|
18099
|
+
* - salesreturnorder : [ send ]
|
|
18100
|
+
*/
|
|
18101
|
+
post: operations["sales_return_order_views_send_sales_return_order_by_email"];
|
|
18102
|
+
delete?: never;
|
|
18103
|
+
options?: never;
|
|
18104
|
+
head?: never;
|
|
18105
|
+
patch?: never;
|
|
18106
|
+
trace?: never;
|
|
18107
|
+
};
|
|
17738
18108
|
"/api/v1/sales/return-invoices/": {
|
|
17739
18109
|
parameters: {
|
|
17740
18110
|
query?: never;
|
|
@@ -17976,6 +18346,43 @@ export interface paths {
|
|
|
17976
18346
|
patch?: never;
|
|
17977
18347
|
trace?: never;
|
|
17978
18348
|
};
|
|
18349
|
+
"/api/v1/sales/return-invoices/{id}/send-email/": {
|
|
18350
|
+
parameters: {
|
|
18351
|
+
query?: never;
|
|
18352
|
+
header?: never;
|
|
18353
|
+
path?: never;
|
|
18354
|
+
cookie?: never;
|
|
18355
|
+
};
|
|
18356
|
+
get?: never;
|
|
18357
|
+
put?: never;
|
|
18358
|
+
/**
|
|
18359
|
+
* Send Sales Return Invoice By Email
|
|
18360
|
+
* @description Generate a sales return invoice PDF and send it as an email attachment.
|
|
18361
|
+
*
|
|
18362
|
+
* Responses:
|
|
18363
|
+
* - 200:
|
|
18364
|
+
* - emailSent
|
|
18365
|
+
* - 400:
|
|
18366
|
+
* - mailServiceNotInitialized
|
|
18367
|
+
* - unsupportedEmailMethod
|
|
18368
|
+
* - 403:
|
|
18369
|
+
* - permissionDenied
|
|
18370
|
+
* - 404:
|
|
18371
|
+
* - salesReturnInvoiceDoesNotExist
|
|
18372
|
+
* - 500:
|
|
18373
|
+
* - internalServerError
|
|
18374
|
+
* - brevoApiError
|
|
18375
|
+
* - emailSendFailed
|
|
18376
|
+
* - Permission Key:
|
|
18377
|
+
* - salesreturninvoice : [ send ]
|
|
18378
|
+
*/
|
|
18379
|
+
post: operations["sales_return_invoice_views_send_sales_return_invoice_by_email"];
|
|
18380
|
+
delete?: never;
|
|
18381
|
+
options?: never;
|
|
18382
|
+
head?: never;
|
|
18383
|
+
patch?: never;
|
|
18384
|
+
trace?: never;
|
|
18385
|
+
};
|
|
17979
18386
|
"/api/v1/sales/refund-vouchers/refundable-documents/": {
|
|
17980
18387
|
parameters: {
|
|
17981
18388
|
query?: never;
|
|
@@ -78508,6 +78915,68 @@ export interface operations {
|
|
|
78508
78915
|
};
|
|
78509
78916
|
};
|
|
78510
78917
|
};
|
|
78918
|
+
purchase_request_for_quotation_views_send_request_for_quotation_by_email: {
|
|
78919
|
+
parameters: {
|
|
78920
|
+
query?: never;
|
|
78921
|
+
header?: never;
|
|
78922
|
+
path: {
|
|
78923
|
+
id: string;
|
|
78924
|
+
};
|
|
78925
|
+
cookie?: never;
|
|
78926
|
+
};
|
|
78927
|
+
requestBody: {
|
|
78928
|
+
content: {
|
|
78929
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
78930
|
+
};
|
|
78931
|
+
};
|
|
78932
|
+
responses: {
|
|
78933
|
+
/** @description OK */
|
|
78934
|
+
200: {
|
|
78935
|
+
headers: {
|
|
78936
|
+
[name: string]: unknown;
|
|
78937
|
+
};
|
|
78938
|
+
content: {
|
|
78939
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
78940
|
+
};
|
|
78941
|
+
};
|
|
78942
|
+
/** @description Bad Request */
|
|
78943
|
+
400: {
|
|
78944
|
+
headers: {
|
|
78945
|
+
[name: string]: unknown;
|
|
78946
|
+
};
|
|
78947
|
+
content: {
|
|
78948
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
78949
|
+
};
|
|
78950
|
+
};
|
|
78951
|
+
/** @description Forbidden */
|
|
78952
|
+
403: {
|
|
78953
|
+
headers: {
|
|
78954
|
+
[name: string]: unknown;
|
|
78955
|
+
};
|
|
78956
|
+
content: {
|
|
78957
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
78958
|
+
};
|
|
78959
|
+
};
|
|
78960
|
+
/** @description Not Found */
|
|
78961
|
+
404: {
|
|
78962
|
+
headers: {
|
|
78963
|
+
[name: string]: unknown;
|
|
78964
|
+
};
|
|
78965
|
+
content: {
|
|
78966
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
78967
|
+
};
|
|
78968
|
+
};
|
|
78969
|
+
/** @description Internal Server Error */
|
|
78970
|
+
500: {
|
|
78971
|
+
headers: {
|
|
78972
|
+
[name: string]: unknown;
|
|
78973
|
+
};
|
|
78974
|
+
content: {
|
|
78975
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
78976
|
+
};
|
|
78977
|
+
};
|
|
78978
|
+
};
|
|
78979
|
+
};
|
|
78511
78980
|
purchase_advance_payment_views_export_advance_payment: {
|
|
78512
78981
|
parameters: {
|
|
78513
78982
|
query: {
|
|
@@ -79298,7 +79767,69 @@ export interface operations {
|
|
|
79298
79767
|
};
|
|
79299
79768
|
};
|
|
79300
79769
|
};
|
|
79301
|
-
purchase_quotation_views_update_purchase_quotation: {
|
|
79770
|
+
purchase_quotation_views_update_purchase_quotation: {
|
|
79771
|
+
parameters: {
|
|
79772
|
+
query?: never;
|
|
79773
|
+
header?: never;
|
|
79774
|
+
path: {
|
|
79775
|
+
id: string;
|
|
79776
|
+
};
|
|
79777
|
+
cookie?: never;
|
|
79778
|
+
};
|
|
79779
|
+
requestBody: {
|
|
79780
|
+
content: {
|
|
79781
|
+
"application/json": components["schemas"]["CreatePurchaseQuotationSchema"];
|
|
79782
|
+
};
|
|
79783
|
+
};
|
|
79784
|
+
responses: {
|
|
79785
|
+
/** @description OK */
|
|
79786
|
+
200: {
|
|
79787
|
+
headers: {
|
|
79788
|
+
[name: string]: unknown;
|
|
79789
|
+
};
|
|
79790
|
+
content: {
|
|
79791
|
+
"application/json": components["schemas"]["PurchaseQuotationSchema"];
|
|
79792
|
+
};
|
|
79793
|
+
};
|
|
79794
|
+
/** @description Bad Request */
|
|
79795
|
+
400: {
|
|
79796
|
+
headers: {
|
|
79797
|
+
[name: string]: unknown;
|
|
79798
|
+
};
|
|
79799
|
+
content: {
|
|
79800
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
79801
|
+
};
|
|
79802
|
+
};
|
|
79803
|
+
/** @description Forbidden */
|
|
79804
|
+
403: {
|
|
79805
|
+
headers: {
|
|
79806
|
+
[name: string]: unknown;
|
|
79807
|
+
};
|
|
79808
|
+
content: {
|
|
79809
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
79810
|
+
};
|
|
79811
|
+
};
|
|
79812
|
+
/** @description Not Found */
|
|
79813
|
+
404: {
|
|
79814
|
+
headers: {
|
|
79815
|
+
[name: string]: unknown;
|
|
79816
|
+
};
|
|
79817
|
+
content: {
|
|
79818
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
79819
|
+
};
|
|
79820
|
+
};
|
|
79821
|
+
/** @description Internal Server Error */
|
|
79822
|
+
500: {
|
|
79823
|
+
headers: {
|
|
79824
|
+
[name: string]: unknown;
|
|
79825
|
+
};
|
|
79826
|
+
content: {
|
|
79827
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
79828
|
+
};
|
|
79829
|
+
};
|
|
79830
|
+
};
|
|
79831
|
+
};
|
|
79832
|
+
purchase_quotation_views_delete_purchase_quotation: {
|
|
79302
79833
|
parameters: {
|
|
79303
79834
|
query?: never;
|
|
79304
79835
|
header?: never;
|
|
@@ -79309,27 +79840,16 @@ export interface operations {
|
|
|
79309
79840
|
};
|
|
79310
79841
|
requestBody: {
|
|
79311
79842
|
content: {
|
|
79312
|
-
"application/json": components["schemas"]["
|
|
79843
|
+
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
79313
79844
|
};
|
|
79314
79845
|
};
|
|
79315
79846
|
responses: {
|
|
79316
|
-
/** @description
|
|
79317
|
-
|
|
79318
|
-
headers: {
|
|
79319
|
-
[name: string]: unknown;
|
|
79320
|
-
};
|
|
79321
|
-
content: {
|
|
79322
|
-
"application/json": components["schemas"]["PurchaseQuotationSchema"];
|
|
79323
|
-
};
|
|
79324
|
-
};
|
|
79325
|
-
/** @description Bad Request */
|
|
79326
|
-
400: {
|
|
79847
|
+
/** @description No Content */
|
|
79848
|
+
204: {
|
|
79327
79849
|
headers: {
|
|
79328
79850
|
[name: string]: unknown;
|
|
79329
79851
|
};
|
|
79330
|
-
content
|
|
79331
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
79332
|
-
};
|
|
79852
|
+
content?: never;
|
|
79333
79853
|
};
|
|
79334
79854
|
/** @description Forbidden */
|
|
79335
79855
|
403: {
|
|
@@ -79360,7 +79880,7 @@ export interface operations {
|
|
|
79360
79880
|
};
|
|
79361
79881
|
};
|
|
79362
79882
|
};
|
|
79363
|
-
|
|
79883
|
+
purchase_quotation_views_reset_purchase_quotation_to_draft: {
|
|
79364
79884
|
parameters: {
|
|
79365
79885
|
query?: never;
|
|
79366
79886
|
header?: never;
|
|
@@ -79375,12 +79895,23 @@ export interface operations {
|
|
|
79375
79895
|
};
|
|
79376
79896
|
};
|
|
79377
79897
|
responses: {
|
|
79378
|
-
/** @description
|
|
79379
|
-
|
|
79898
|
+
/** @description OK */
|
|
79899
|
+
200: {
|
|
79380
79900
|
headers: {
|
|
79381
79901
|
[name: string]: unknown;
|
|
79382
79902
|
};
|
|
79383
|
-
content
|
|
79903
|
+
content: {
|
|
79904
|
+
"application/json": components["schemas"]["PurchaseQuotationSchema"];
|
|
79905
|
+
};
|
|
79906
|
+
};
|
|
79907
|
+
/** @description Bad Request */
|
|
79908
|
+
400: {
|
|
79909
|
+
headers: {
|
|
79910
|
+
[name: string]: unknown;
|
|
79911
|
+
};
|
|
79912
|
+
content: {
|
|
79913
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
79914
|
+
};
|
|
79384
79915
|
};
|
|
79385
79916
|
/** @description Forbidden */
|
|
79386
79917
|
403: {
|
|
@@ -79411,7 +79942,7 @@ export interface operations {
|
|
|
79411
79942
|
};
|
|
79412
79943
|
};
|
|
79413
79944
|
};
|
|
79414
|
-
|
|
79945
|
+
purchase_quotation_views_cancel_purchase_quotation: {
|
|
79415
79946
|
parameters: {
|
|
79416
79947
|
query?: never;
|
|
79417
79948
|
header?: never;
|
|
@@ -79473,20 +80004,18 @@ export interface operations {
|
|
|
79473
80004
|
};
|
|
79474
80005
|
};
|
|
79475
80006
|
};
|
|
79476
|
-
|
|
80007
|
+
purchase_quotation_views_export_to_excel_purchase_quotation: {
|
|
79477
80008
|
parameters: {
|
|
79478
|
-
query
|
|
80009
|
+
query: {
|
|
80010
|
+
selectedCurrencies: number[];
|
|
80011
|
+
};
|
|
79479
80012
|
header?: never;
|
|
79480
80013
|
path: {
|
|
79481
80014
|
id: string;
|
|
79482
80015
|
};
|
|
79483
80016
|
cookie?: never;
|
|
79484
80017
|
};
|
|
79485
|
-
requestBody
|
|
79486
|
-
content: {
|
|
79487
|
-
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
79488
|
-
};
|
|
79489
|
-
};
|
|
80018
|
+
requestBody?: never;
|
|
79490
80019
|
responses: {
|
|
79491
80020
|
/** @description OK */
|
|
79492
80021
|
200: {
|
|
@@ -79494,7 +80023,7 @@ export interface operations {
|
|
|
79494
80023
|
[name: string]: unknown;
|
|
79495
80024
|
};
|
|
79496
80025
|
content: {
|
|
79497
|
-
"application/json":
|
|
80026
|
+
"application/json": string;
|
|
79498
80027
|
};
|
|
79499
80028
|
};
|
|
79500
80029
|
/** @description Bad Request */
|
|
@@ -79535,11 +80064,9 @@ export interface operations {
|
|
|
79535
80064
|
};
|
|
79536
80065
|
};
|
|
79537
80066
|
};
|
|
79538
|
-
|
|
80067
|
+
purchase_quotation_views_export_purchase_quotation_pdf: {
|
|
79539
80068
|
parameters: {
|
|
79540
|
-
query
|
|
79541
|
-
selectedCurrencies: number[];
|
|
79542
|
-
};
|
|
80069
|
+
query?: never;
|
|
79543
80070
|
header?: never;
|
|
79544
80071
|
path: {
|
|
79545
80072
|
id: string;
|
|
@@ -79595,7 +80122,7 @@ export interface operations {
|
|
|
79595
80122
|
};
|
|
79596
80123
|
};
|
|
79597
80124
|
};
|
|
79598
|
-
|
|
80125
|
+
purchase_quotation_views_send_purchase_quotation_by_email: {
|
|
79599
80126
|
parameters: {
|
|
79600
80127
|
query?: never;
|
|
79601
80128
|
header?: never;
|
|
@@ -79604,7 +80131,11 @@ export interface operations {
|
|
|
79604
80131
|
};
|
|
79605
80132
|
cookie?: never;
|
|
79606
80133
|
};
|
|
79607
|
-
requestBody
|
|
80134
|
+
requestBody: {
|
|
80135
|
+
content: {
|
|
80136
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
80137
|
+
};
|
|
80138
|
+
};
|
|
79608
80139
|
responses: {
|
|
79609
80140
|
/** @description OK */
|
|
79610
80141
|
200: {
|
|
@@ -79612,7 +80143,7 @@ export interface operations {
|
|
|
79612
80143
|
[name: string]: unknown;
|
|
79613
80144
|
};
|
|
79614
80145
|
content: {
|
|
79615
|
-
"application/json":
|
|
80146
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
79616
80147
|
};
|
|
79617
80148
|
};
|
|
79618
80149
|
/** @description Bad Request */
|
|
@@ -79630,7 +80161,7 @@ export interface operations {
|
|
|
79630
80161
|
[name: string]: unknown;
|
|
79631
80162
|
};
|
|
79632
80163
|
content: {
|
|
79633
|
-
"application/json": components["schemas"]["
|
|
80164
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
79634
80165
|
};
|
|
79635
80166
|
};
|
|
79636
80167
|
/** @description Not Found */
|
|
@@ -79639,7 +80170,7 @@ export interface operations {
|
|
|
79639
80170
|
[name: string]: unknown;
|
|
79640
80171
|
};
|
|
79641
80172
|
content: {
|
|
79642
|
-
"application/json": components["schemas"]["
|
|
80173
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
79643
80174
|
};
|
|
79644
80175
|
};
|
|
79645
80176
|
/** @description Internal Server Error */
|
|
@@ -79648,7 +80179,7 @@ export interface operations {
|
|
|
79648
80179
|
[name: string]: unknown;
|
|
79649
80180
|
};
|
|
79650
80181
|
content: {
|
|
79651
|
-
"application/json": components["schemas"]["
|
|
80182
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
79652
80183
|
};
|
|
79653
80184
|
};
|
|
79654
80185
|
};
|
|
@@ -79921,27 +80452,211 @@ export interface operations {
|
|
|
79921
80452
|
};
|
|
79922
80453
|
};
|
|
79923
80454
|
};
|
|
79924
|
-
purchase_order_views_delete_purchase_order: {
|
|
80455
|
+
purchase_order_views_delete_purchase_order: {
|
|
80456
|
+
parameters: {
|
|
80457
|
+
query?: never;
|
|
80458
|
+
header?: never;
|
|
80459
|
+
path: {
|
|
80460
|
+
id: string;
|
|
80461
|
+
};
|
|
80462
|
+
cookie?: never;
|
|
80463
|
+
};
|
|
80464
|
+
requestBody: {
|
|
80465
|
+
content: {
|
|
80466
|
+
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
80467
|
+
};
|
|
80468
|
+
};
|
|
80469
|
+
responses: {
|
|
80470
|
+
/** @description No Content */
|
|
80471
|
+
204: {
|
|
80472
|
+
headers: {
|
|
80473
|
+
[name: string]: unknown;
|
|
80474
|
+
};
|
|
80475
|
+
content?: never;
|
|
80476
|
+
};
|
|
80477
|
+
/** @description Bad Request */
|
|
80478
|
+
400: {
|
|
80479
|
+
headers: {
|
|
80480
|
+
[name: string]: unknown;
|
|
80481
|
+
};
|
|
80482
|
+
content: {
|
|
80483
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
80484
|
+
};
|
|
80485
|
+
};
|
|
80486
|
+
/** @description Forbidden */
|
|
80487
|
+
403: {
|
|
80488
|
+
headers: {
|
|
80489
|
+
[name: string]: unknown;
|
|
80490
|
+
};
|
|
80491
|
+
content: {
|
|
80492
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80493
|
+
};
|
|
80494
|
+
};
|
|
80495
|
+
/** @description Not Found */
|
|
80496
|
+
404: {
|
|
80497
|
+
headers: {
|
|
80498
|
+
[name: string]: unknown;
|
|
80499
|
+
};
|
|
80500
|
+
content: {
|
|
80501
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80502
|
+
};
|
|
80503
|
+
};
|
|
80504
|
+
/** @description Internal Server Error */
|
|
80505
|
+
500: {
|
|
80506
|
+
headers: {
|
|
80507
|
+
[name: string]: unknown;
|
|
80508
|
+
};
|
|
80509
|
+
content: {
|
|
80510
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80511
|
+
};
|
|
80512
|
+
};
|
|
80513
|
+
};
|
|
80514
|
+
};
|
|
80515
|
+
purchase_order_views_reset_purchase_order_to_draft: {
|
|
80516
|
+
parameters: {
|
|
80517
|
+
query?: never;
|
|
80518
|
+
header?: never;
|
|
80519
|
+
path: {
|
|
80520
|
+
id: string;
|
|
80521
|
+
};
|
|
80522
|
+
cookie?: never;
|
|
80523
|
+
};
|
|
80524
|
+
requestBody: {
|
|
80525
|
+
content: {
|
|
80526
|
+
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
80527
|
+
};
|
|
80528
|
+
};
|
|
80529
|
+
responses: {
|
|
80530
|
+
/** @description OK */
|
|
80531
|
+
200: {
|
|
80532
|
+
headers: {
|
|
80533
|
+
[name: string]: unknown;
|
|
80534
|
+
};
|
|
80535
|
+
content: {
|
|
80536
|
+
"application/json": components["schemas"]["PurchaseOrderSchema"];
|
|
80537
|
+
};
|
|
80538
|
+
};
|
|
80539
|
+
/** @description Bad Request */
|
|
80540
|
+
400: {
|
|
80541
|
+
headers: {
|
|
80542
|
+
[name: string]: unknown;
|
|
80543
|
+
};
|
|
80544
|
+
content: {
|
|
80545
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
80546
|
+
};
|
|
80547
|
+
};
|
|
80548
|
+
/** @description Forbidden */
|
|
80549
|
+
403: {
|
|
80550
|
+
headers: {
|
|
80551
|
+
[name: string]: unknown;
|
|
80552
|
+
};
|
|
80553
|
+
content: {
|
|
80554
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80555
|
+
};
|
|
80556
|
+
};
|
|
80557
|
+
/** @description Not Found */
|
|
80558
|
+
404: {
|
|
80559
|
+
headers: {
|
|
80560
|
+
[name: string]: unknown;
|
|
80561
|
+
};
|
|
80562
|
+
content: {
|
|
80563
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80564
|
+
};
|
|
80565
|
+
};
|
|
80566
|
+
/** @description Internal Server Error */
|
|
80567
|
+
500: {
|
|
80568
|
+
headers: {
|
|
80569
|
+
[name: string]: unknown;
|
|
80570
|
+
};
|
|
80571
|
+
content: {
|
|
80572
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80573
|
+
};
|
|
80574
|
+
};
|
|
80575
|
+
};
|
|
80576
|
+
};
|
|
80577
|
+
purchase_order_views_cancel_purchase_order: {
|
|
80578
|
+
parameters: {
|
|
80579
|
+
query?: never;
|
|
80580
|
+
header?: never;
|
|
80581
|
+
path: {
|
|
80582
|
+
id: string;
|
|
80583
|
+
};
|
|
80584
|
+
cookie?: never;
|
|
80585
|
+
};
|
|
80586
|
+
requestBody: {
|
|
80587
|
+
content: {
|
|
80588
|
+
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
80589
|
+
};
|
|
80590
|
+
};
|
|
80591
|
+
responses: {
|
|
80592
|
+
/** @description OK */
|
|
80593
|
+
200: {
|
|
80594
|
+
headers: {
|
|
80595
|
+
[name: string]: unknown;
|
|
80596
|
+
};
|
|
80597
|
+
content: {
|
|
80598
|
+
"application/json": components["schemas"]["PurchaseOrderSchema"];
|
|
80599
|
+
};
|
|
80600
|
+
};
|
|
80601
|
+
/** @description Bad Request */
|
|
80602
|
+
400: {
|
|
80603
|
+
headers: {
|
|
80604
|
+
[name: string]: unknown;
|
|
80605
|
+
};
|
|
80606
|
+
content: {
|
|
80607
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
80608
|
+
};
|
|
80609
|
+
};
|
|
80610
|
+
/** @description Forbidden */
|
|
80611
|
+
403: {
|
|
80612
|
+
headers: {
|
|
80613
|
+
[name: string]: unknown;
|
|
80614
|
+
};
|
|
80615
|
+
content: {
|
|
80616
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80617
|
+
};
|
|
80618
|
+
};
|
|
80619
|
+
/** @description Not Found */
|
|
80620
|
+
404: {
|
|
80621
|
+
headers: {
|
|
80622
|
+
[name: string]: unknown;
|
|
80623
|
+
};
|
|
80624
|
+
content: {
|
|
80625
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80626
|
+
};
|
|
80627
|
+
};
|
|
80628
|
+
/** @description Internal Server Error */
|
|
80629
|
+
500: {
|
|
80630
|
+
headers: {
|
|
80631
|
+
[name: string]: unknown;
|
|
80632
|
+
};
|
|
80633
|
+
content: {
|
|
80634
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80635
|
+
};
|
|
80636
|
+
};
|
|
80637
|
+
};
|
|
80638
|
+
};
|
|
80639
|
+
purchase_order_views_export_purchase_order_to_excel: {
|
|
79925
80640
|
parameters: {
|
|
79926
|
-
query
|
|
80641
|
+
query: {
|
|
80642
|
+
selectedCurrencies: number[];
|
|
80643
|
+
};
|
|
79927
80644
|
header?: never;
|
|
79928
80645
|
path: {
|
|
79929
80646
|
id: string;
|
|
79930
80647
|
};
|
|
79931
80648
|
cookie?: never;
|
|
79932
80649
|
};
|
|
79933
|
-
requestBody
|
|
79934
|
-
content: {
|
|
79935
|
-
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
79936
|
-
};
|
|
79937
|
-
};
|
|
80650
|
+
requestBody?: never;
|
|
79938
80651
|
responses: {
|
|
79939
|
-
/** @description
|
|
79940
|
-
|
|
80652
|
+
/** @description OK */
|
|
80653
|
+
200: {
|
|
79941
80654
|
headers: {
|
|
79942
80655
|
[name: string]: unknown;
|
|
79943
80656
|
};
|
|
79944
|
-
content
|
|
80657
|
+
content: {
|
|
80658
|
+
"application/json": string;
|
|
80659
|
+
};
|
|
79945
80660
|
};
|
|
79946
80661
|
/** @description Bad Request */
|
|
79947
80662
|
400: {
|
|
@@ -79981,7 +80696,7 @@ export interface operations {
|
|
|
79981
80696
|
};
|
|
79982
80697
|
};
|
|
79983
80698
|
};
|
|
79984
|
-
|
|
80699
|
+
purchase_order_views_get_purchase_order_difference: {
|
|
79985
80700
|
parameters: {
|
|
79986
80701
|
query?: never;
|
|
79987
80702
|
header?: never;
|
|
@@ -79990,11 +80705,7 @@ export interface operations {
|
|
|
79990
80705
|
};
|
|
79991
80706
|
cookie?: never;
|
|
79992
80707
|
};
|
|
79993
|
-
requestBody
|
|
79994
|
-
content: {
|
|
79995
|
-
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
79996
|
-
};
|
|
79997
|
-
};
|
|
80708
|
+
requestBody?: never;
|
|
79998
80709
|
responses: {
|
|
79999
80710
|
/** @description OK */
|
|
80000
80711
|
200: {
|
|
@@ -80002,7 +80713,7 @@ export interface operations {
|
|
|
80002
80713
|
[name: string]: unknown;
|
|
80003
80714
|
};
|
|
80004
80715
|
content: {
|
|
80005
|
-
"application/json": components["schemas"]["
|
|
80716
|
+
"application/json": components["schemas"]["PurchaseOrderDifferenceSchema"];
|
|
80006
80717
|
};
|
|
80007
80718
|
};
|
|
80008
80719
|
/** @description Bad Request */
|
|
@@ -80020,7 +80731,7 @@ export interface operations {
|
|
|
80020
80731
|
[name: string]: unknown;
|
|
80021
80732
|
};
|
|
80022
80733
|
content: {
|
|
80023
|
-
"application/json": components["schemas"]["
|
|
80734
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80024
80735
|
};
|
|
80025
80736
|
};
|
|
80026
80737
|
/** @description Not Found */
|
|
@@ -80029,7 +80740,7 @@ export interface operations {
|
|
|
80029
80740
|
[name: string]: unknown;
|
|
80030
80741
|
};
|
|
80031
80742
|
content: {
|
|
80032
|
-
"application/json": components["schemas"]["
|
|
80743
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80033
80744
|
};
|
|
80034
80745
|
};
|
|
80035
80746
|
/** @description Internal Server Error */
|
|
@@ -80038,12 +80749,12 @@ export interface operations {
|
|
|
80038
80749
|
[name: string]: unknown;
|
|
80039
80750
|
};
|
|
80040
80751
|
content: {
|
|
80041
|
-
"application/json": components["schemas"]["
|
|
80752
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80042
80753
|
};
|
|
80043
80754
|
};
|
|
80044
80755
|
};
|
|
80045
80756
|
};
|
|
80046
|
-
|
|
80757
|
+
purchase_order_views_compare_purchase_order_with_invoices: {
|
|
80047
80758
|
parameters: {
|
|
80048
80759
|
query?: never;
|
|
80049
80760
|
header?: never;
|
|
@@ -80052,11 +80763,7 @@ export interface operations {
|
|
|
80052
80763
|
};
|
|
80053
80764
|
cookie?: never;
|
|
80054
80765
|
};
|
|
80055
|
-
requestBody
|
|
80056
|
-
content: {
|
|
80057
|
-
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
80058
|
-
};
|
|
80059
|
-
};
|
|
80766
|
+
requestBody?: never;
|
|
80060
80767
|
responses: {
|
|
80061
80768
|
/** @description OK */
|
|
80062
80769
|
200: {
|
|
@@ -80064,7 +80771,7 @@ export interface operations {
|
|
|
80064
80771
|
[name: string]: unknown;
|
|
80065
80772
|
};
|
|
80066
80773
|
content: {
|
|
80067
|
-
"application/json": components["schemas"]["
|
|
80774
|
+
"application/json": components["schemas"]["PurchaseInvoiceDifferenceSchema"];
|
|
80068
80775
|
};
|
|
80069
80776
|
};
|
|
80070
80777
|
/** @description Bad Request */
|
|
@@ -80082,7 +80789,7 @@ export interface operations {
|
|
|
80082
80789
|
[name: string]: unknown;
|
|
80083
80790
|
};
|
|
80084
80791
|
content: {
|
|
80085
|
-
"application/json": components["schemas"]["
|
|
80792
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80086
80793
|
};
|
|
80087
80794
|
};
|
|
80088
80795
|
/** @description Not Found */
|
|
@@ -80091,7 +80798,7 @@ export interface operations {
|
|
|
80091
80798
|
[name: string]: unknown;
|
|
80092
80799
|
};
|
|
80093
80800
|
content: {
|
|
80094
|
-
"application/json": components["schemas"]["
|
|
80801
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80095
80802
|
};
|
|
80096
80803
|
};
|
|
80097
80804
|
/** @description Internal Server Error */
|
|
@@ -80100,16 +80807,14 @@ export interface operations {
|
|
|
80100
80807
|
[name: string]: unknown;
|
|
80101
80808
|
};
|
|
80102
80809
|
content: {
|
|
80103
|
-
"application/json": components["schemas"]["
|
|
80810
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80104
80811
|
};
|
|
80105
80812
|
};
|
|
80106
80813
|
};
|
|
80107
80814
|
};
|
|
80108
|
-
|
|
80815
|
+
purchase_order_views_export_purchase_order_pdf: {
|
|
80109
80816
|
parameters: {
|
|
80110
|
-
query
|
|
80111
|
-
selectedCurrencies: number[];
|
|
80112
|
-
};
|
|
80817
|
+
query?: never;
|
|
80113
80818
|
header?: never;
|
|
80114
80819
|
path: {
|
|
80115
80820
|
id: string;
|
|
@@ -80165,7 +80870,7 @@ export interface operations {
|
|
|
80165
80870
|
};
|
|
80166
80871
|
};
|
|
80167
80872
|
};
|
|
80168
|
-
|
|
80873
|
+
purchase_order_views_send_purchase_order_by_email: {
|
|
80169
80874
|
parameters: {
|
|
80170
80875
|
query?: never;
|
|
80171
80876
|
header?: never;
|
|
@@ -80174,7 +80879,11 @@ export interface operations {
|
|
|
80174
80879
|
};
|
|
80175
80880
|
cookie?: never;
|
|
80176
80881
|
};
|
|
80177
|
-
requestBody
|
|
80882
|
+
requestBody: {
|
|
80883
|
+
content: {
|
|
80884
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
80885
|
+
};
|
|
80886
|
+
};
|
|
80178
80887
|
responses: {
|
|
80179
80888
|
/** @description OK */
|
|
80180
80889
|
200: {
|
|
@@ -80182,7 +80891,7 @@ export interface operations {
|
|
|
80182
80891
|
[name: string]: unknown;
|
|
80183
80892
|
};
|
|
80184
80893
|
content: {
|
|
80185
|
-
"application/json": components["schemas"]["
|
|
80894
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80186
80895
|
};
|
|
80187
80896
|
};
|
|
80188
80897
|
/** @description Bad Request */
|
|
@@ -80223,13 +80932,26 @@ export interface operations {
|
|
|
80223
80932
|
};
|
|
80224
80933
|
};
|
|
80225
80934
|
};
|
|
80226
|
-
|
|
80935
|
+
purchase_return_order_views_list_purchase_return_orders: {
|
|
80227
80936
|
parameters: {
|
|
80228
|
-
query
|
|
80229
|
-
|
|
80230
|
-
|
|
80231
|
-
|
|
80937
|
+
query: {
|
|
80938
|
+
/** @description Page number */
|
|
80939
|
+
page?: number;
|
|
80940
|
+
/** @description Page size */
|
|
80941
|
+
pageSize?: number;
|
|
80942
|
+
/** @description field to search: reference number, supplier name, serial number, date, supplier account number, or item (name, barcode, sku code, short name) */
|
|
80943
|
+
search?: string | null;
|
|
80944
|
+
/** @description Branch ID to filter by */
|
|
80945
|
+
branchId: number;
|
|
80946
|
+
/** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
|
|
80947
|
+
periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
|
|
80948
|
+
/** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
80949
|
+
startDate?: string | null;
|
|
80950
|
+
/** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
80951
|
+
endDate?: string | null;
|
|
80232
80952
|
};
|
|
80953
|
+
header?: never;
|
|
80954
|
+
path?: never;
|
|
80233
80955
|
cookie?: never;
|
|
80234
80956
|
};
|
|
80235
80957
|
requestBody?: never;
|
|
@@ -80240,7 +80962,7 @@ export interface operations {
|
|
|
80240
80962
|
[name: string]: unknown;
|
|
80241
80963
|
};
|
|
80242
80964
|
content: {
|
|
80243
|
-
"application/json": components["schemas"]["
|
|
80965
|
+
"application/json": components["schemas"]["PurchaseReturnOrderListSchema"];
|
|
80244
80966
|
};
|
|
80245
80967
|
};
|
|
80246
80968
|
/** @description Bad Request */
|
|
@@ -80258,16 +80980,7 @@ export interface operations {
|
|
|
80258
80980
|
[name: string]: unknown;
|
|
80259
80981
|
};
|
|
80260
80982
|
content: {
|
|
80261
|
-
"application/json": components["schemas"]["
|
|
80262
|
-
};
|
|
80263
|
-
};
|
|
80264
|
-
/** @description Not Found */
|
|
80265
|
-
404: {
|
|
80266
|
-
headers: {
|
|
80267
|
-
[name: string]: unknown;
|
|
80268
|
-
};
|
|
80269
|
-
content: {
|
|
80270
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
80983
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80271
80984
|
};
|
|
80272
80985
|
};
|
|
80273
80986
|
/** @description Internal Server Error */
|
|
@@ -80276,21 +80989,23 @@ export interface operations {
|
|
|
80276
80989
|
[name: string]: unknown;
|
|
80277
80990
|
};
|
|
80278
80991
|
content: {
|
|
80279
|
-
"application/json": components["schemas"]["
|
|
80992
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
80280
80993
|
};
|
|
80281
80994
|
};
|
|
80282
80995
|
};
|
|
80283
80996
|
};
|
|
80284
|
-
|
|
80997
|
+
purchase_return_order_views_create_purchase_return_order: {
|
|
80285
80998
|
parameters: {
|
|
80286
80999
|
query?: never;
|
|
80287
81000
|
header?: never;
|
|
80288
|
-
path
|
|
80289
|
-
id: string;
|
|
80290
|
-
};
|
|
81001
|
+
path?: never;
|
|
80291
81002
|
cookie?: never;
|
|
80292
81003
|
};
|
|
80293
|
-
requestBody
|
|
81004
|
+
requestBody: {
|
|
81005
|
+
content: {
|
|
81006
|
+
"application/json": components["schemas"]["CreateUpdatePurchaseReturnOrderSchema"];
|
|
81007
|
+
};
|
|
81008
|
+
};
|
|
80294
81009
|
responses: {
|
|
80295
81010
|
/** @description OK */
|
|
80296
81011
|
200: {
|
|
@@ -80298,7 +81013,7 @@ export interface operations {
|
|
|
80298
81013
|
[name: string]: unknown;
|
|
80299
81014
|
};
|
|
80300
81015
|
content: {
|
|
80301
|
-
"application/json":
|
|
81016
|
+
"application/json": components["schemas"]["PurchaseReturnOrderSchema"];
|
|
80302
81017
|
};
|
|
80303
81018
|
};
|
|
80304
81019
|
/** @description Bad Request */
|
|
@@ -80319,15 +81034,6 @@ export interface operations {
|
|
|
80319
81034
|
"application/json": components["schemas"]["MessageWithCode"];
|
|
80320
81035
|
};
|
|
80321
81036
|
};
|
|
80322
|
-
/** @description Not Found */
|
|
80323
|
-
404: {
|
|
80324
|
-
headers: {
|
|
80325
|
-
[name: string]: unknown;
|
|
80326
|
-
};
|
|
80327
|
-
content: {
|
|
80328
|
-
"application/json": components["schemas"]["MessageWithCode"];
|
|
80329
|
-
};
|
|
80330
|
-
};
|
|
80331
81037
|
/** @description Internal Server Error */
|
|
80332
81038
|
500: {
|
|
80333
81039
|
headers: {
|
|
@@ -80339,29 +81045,18 @@ export interface operations {
|
|
|
80339
81045
|
};
|
|
80340
81046
|
};
|
|
80341
81047
|
};
|
|
80342
|
-
|
|
81048
|
+
purchase_return_order_views_calculate_totals_endpoint: {
|
|
80343
81049
|
parameters: {
|
|
80344
|
-
query
|
|
80345
|
-
/** @description Page number */
|
|
80346
|
-
page?: number;
|
|
80347
|
-
/** @description Page size */
|
|
80348
|
-
pageSize?: number;
|
|
80349
|
-
/** @description field to search: reference number, supplier name, serial number, date, supplier account number, or item (name, barcode, sku code, short name) */
|
|
80350
|
-
search?: string | null;
|
|
80351
|
-
/** @description Branch ID to filter by */
|
|
80352
|
-
branchId: number;
|
|
80353
|
-
/** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
|
|
80354
|
-
periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
|
|
80355
|
-
/** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
80356
|
-
startDate?: string | null;
|
|
80357
|
-
/** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
80358
|
-
endDate?: string | null;
|
|
80359
|
-
};
|
|
81050
|
+
query?: never;
|
|
80360
81051
|
header?: never;
|
|
80361
81052
|
path?: never;
|
|
80362
81053
|
cookie?: never;
|
|
80363
81054
|
};
|
|
80364
|
-
requestBody
|
|
81055
|
+
requestBody: {
|
|
81056
|
+
content: {
|
|
81057
|
+
"application/json": components["schemas"]["ReturnPurchaseOrderTotalCalculationRequest"];
|
|
81058
|
+
};
|
|
81059
|
+
};
|
|
80365
81060
|
responses: {
|
|
80366
81061
|
/** @description OK */
|
|
80367
81062
|
200: {
|
|
@@ -80369,7 +81064,7 @@ export interface operations {
|
|
|
80369
81064
|
[name: string]: unknown;
|
|
80370
81065
|
};
|
|
80371
81066
|
content: {
|
|
80372
|
-
"application/json": components["schemas"]["
|
|
81067
|
+
"application/json": components["schemas"]["ReturnPurchaseOrderTotalCalculationResponse"];
|
|
80373
81068
|
};
|
|
80374
81069
|
};
|
|
80375
81070
|
/** @description Bad Request */
|
|
@@ -80381,15 +81076,6 @@ export interface operations {
|
|
|
80381
81076
|
"application/json": components["schemas"]["ErrorMessages"];
|
|
80382
81077
|
};
|
|
80383
81078
|
};
|
|
80384
|
-
/** @description Forbidden */
|
|
80385
|
-
403: {
|
|
80386
|
-
headers: {
|
|
80387
|
-
[name: string]: unknown;
|
|
80388
|
-
};
|
|
80389
|
-
content: {
|
|
80390
|
-
"application/json": components["schemas"]["MessageWithCode"];
|
|
80391
|
-
};
|
|
80392
|
-
};
|
|
80393
81079
|
/** @description Internal Server Error */
|
|
80394
81080
|
500: {
|
|
80395
81081
|
headers: {
|
|
@@ -80401,18 +81087,16 @@ export interface operations {
|
|
|
80401
81087
|
};
|
|
80402
81088
|
};
|
|
80403
81089
|
};
|
|
80404
|
-
|
|
81090
|
+
purchase_return_order_views_get_purchase_return_order: {
|
|
80405
81091
|
parameters: {
|
|
80406
81092
|
query?: never;
|
|
80407
81093
|
header?: never;
|
|
80408
|
-
path
|
|
80409
|
-
|
|
80410
|
-
};
|
|
80411
|
-
requestBody: {
|
|
80412
|
-
content: {
|
|
80413
|
-
"application/json": components["schemas"]["CreateUpdatePurchaseReturnOrderSchema"];
|
|
81094
|
+
path: {
|
|
81095
|
+
id: string;
|
|
80414
81096
|
};
|
|
81097
|
+
cookie?: never;
|
|
80415
81098
|
};
|
|
81099
|
+
requestBody?: never;
|
|
80416
81100
|
responses: {
|
|
80417
81101
|
/** @description OK */
|
|
80418
81102
|
200: {
|
|
@@ -80441,6 +81125,15 @@ export interface operations {
|
|
|
80441
81125
|
"application/json": components["schemas"]["MessageWithCode"];
|
|
80442
81126
|
};
|
|
80443
81127
|
};
|
|
81128
|
+
/** @description Not Found */
|
|
81129
|
+
404: {
|
|
81130
|
+
headers: {
|
|
81131
|
+
[name: string]: unknown;
|
|
81132
|
+
};
|
|
81133
|
+
content: {
|
|
81134
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
81135
|
+
};
|
|
81136
|
+
};
|
|
80444
81137
|
/** @description Internal Server Error */
|
|
80445
81138
|
500: {
|
|
80446
81139
|
headers: {
|
|
@@ -80452,16 +81145,18 @@ export interface operations {
|
|
|
80452
81145
|
};
|
|
80453
81146
|
};
|
|
80454
81147
|
};
|
|
80455
|
-
|
|
81148
|
+
purchase_return_order_views_update_purchase_return_order: {
|
|
80456
81149
|
parameters: {
|
|
80457
81150
|
query?: never;
|
|
80458
81151
|
header?: never;
|
|
80459
|
-
path
|
|
81152
|
+
path: {
|
|
81153
|
+
id: string;
|
|
81154
|
+
};
|
|
80460
81155
|
cookie?: never;
|
|
80461
81156
|
};
|
|
80462
81157
|
requestBody: {
|
|
80463
81158
|
content: {
|
|
80464
|
-
"application/json": components["schemas"]["
|
|
81159
|
+
"application/json": components["schemas"]["CreateUpdatePurchaseReturnOrderSchema"];
|
|
80465
81160
|
};
|
|
80466
81161
|
};
|
|
80467
81162
|
responses: {
|
|
@@ -80471,7 +81166,7 @@ export interface operations {
|
|
|
80471
81166
|
[name: string]: unknown;
|
|
80472
81167
|
};
|
|
80473
81168
|
content: {
|
|
80474
|
-
"application/json": components["schemas"]["
|
|
81169
|
+
"application/json": components["schemas"]["PurchaseReturnOrderSchema"];
|
|
80475
81170
|
};
|
|
80476
81171
|
};
|
|
80477
81172
|
/** @description Bad Request */
|
|
@@ -80483,6 +81178,24 @@ export interface operations {
|
|
|
80483
81178
|
"application/json": components["schemas"]["ErrorMessages"];
|
|
80484
81179
|
};
|
|
80485
81180
|
};
|
|
81181
|
+
/** @description Forbidden */
|
|
81182
|
+
403: {
|
|
81183
|
+
headers: {
|
|
81184
|
+
[name: string]: unknown;
|
|
81185
|
+
};
|
|
81186
|
+
content: {
|
|
81187
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
81188
|
+
};
|
|
81189
|
+
};
|
|
81190
|
+
/** @description Not Found */
|
|
81191
|
+
404: {
|
|
81192
|
+
headers: {
|
|
81193
|
+
[name: string]: unknown;
|
|
81194
|
+
};
|
|
81195
|
+
content: {
|
|
81196
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
81197
|
+
};
|
|
81198
|
+
};
|
|
80486
81199
|
/** @description Internal Server Error */
|
|
80487
81200
|
500: {
|
|
80488
81201
|
headers: {
|
|
@@ -80494,7 +81207,7 @@ export interface operations {
|
|
|
80494
81207
|
};
|
|
80495
81208
|
};
|
|
80496
81209
|
};
|
|
80497
|
-
|
|
81210
|
+
purchase_return_order_views_delete_purchase_return_order: {
|
|
80498
81211
|
parameters: {
|
|
80499
81212
|
query?: never;
|
|
80500
81213
|
header?: never;
|
|
@@ -80503,16 +81216,18 @@ export interface operations {
|
|
|
80503
81216
|
};
|
|
80504
81217
|
cookie?: never;
|
|
80505
81218
|
};
|
|
80506
|
-
requestBody
|
|
81219
|
+
requestBody: {
|
|
81220
|
+
content: {
|
|
81221
|
+
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
81222
|
+
};
|
|
81223
|
+
};
|
|
80507
81224
|
responses: {
|
|
80508
|
-
/** @description
|
|
80509
|
-
|
|
81225
|
+
/** @description No Content */
|
|
81226
|
+
204: {
|
|
80510
81227
|
headers: {
|
|
80511
81228
|
[name: string]: unknown;
|
|
80512
81229
|
};
|
|
80513
|
-
content
|
|
80514
|
-
"application/json": components["schemas"]["PurchaseReturnOrderSchema"];
|
|
80515
|
-
};
|
|
81230
|
+
content?: never;
|
|
80516
81231
|
};
|
|
80517
81232
|
/** @description Bad Request */
|
|
80518
81233
|
400: {
|
|
@@ -80552,7 +81267,7 @@ export interface operations {
|
|
|
80552
81267
|
};
|
|
80553
81268
|
};
|
|
80554
81269
|
};
|
|
80555
|
-
|
|
81270
|
+
purchase_return_order_views_reset_purchase_return_order_to_draft: {
|
|
80556
81271
|
parameters: {
|
|
80557
81272
|
query?: never;
|
|
80558
81273
|
header?: never;
|
|
@@ -80563,7 +81278,7 @@ export interface operations {
|
|
|
80563
81278
|
};
|
|
80564
81279
|
requestBody: {
|
|
80565
81280
|
content: {
|
|
80566
|
-
"application/json": components["schemas"]["
|
|
81281
|
+
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
80567
81282
|
};
|
|
80568
81283
|
};
|
|
80569
81284
|
responses: {
|
|
@@ -80614,7 +81329,7 @@ export interface operations {
|
|
|
80614
81329
|
};
|
|
80615
81330
|
};
|
|
80616
81331
|
};
|
|
80617
|
-
|
|
81332
|
+
purchase_return_order_views_cancel_purchase_return_order: {
|
|
80618
81333
|
parameters: {
|
|
80619
81334
|
query?: never;
|
|
80620
81335
|
header?: never;
|
|
@@ -80629,12 +81344,14 @@ export interface operations {
|
|
|
80629
81344
|
};
|
|
80630
81345
|
};
|
|
80631
81346
|
responses: {
|
|
80632
|
-
/** @description
|
|
80633
|
-
|
|
81347
|
+
/** @description OK */
|
|
81348
|
+
200: {
|
|
80634
81349
|
headers: {
|
|
80635
81350
|
[name: string]: unknown;
|
|
80636
81351
|
};
|
|
80637
|
-
content
|
|
81352
|
+
content: {
|
|
81353
|
+
"application/json": components["schemas"]["PurchaseReturnOrderSchema"];
|
|
81354
|
+
};
|
|
80638
81355
|
};
|
|
80639
81356
|
/** @description Bad Request */
|
|
80640
81357
|
400: {
|
|
@@ -80674,20 +81391,18 @@ export interface operations {
|
|
|
80674
81391
|
};
|
|
80675
81392
|
};
|
|
80676
81393
|
};
|
|
80677
|
-
|
|
81394
|
+
purchase_return_order_views_export_purchase_return_order_to_excel: {
|
|
80678
81395
|
parameters: {
|
|
80679
|
-
query
|
|
81396
|
+
query: {
|
|
81397
|
+
selectedCurrencies: number[];
|
|
81398
|
+
};
|
|
80680
81399
|
header?: never;
|
|
80681
81400
|
path: {
|
|
80682
81401
|
id: string;
|
|
80683
81402
|
};
|
|
80684
81403
|
cookie?: never;
|
|
80685
81404
|
};
|
|
80686
|
-
requestBody
|
|
80687
|
-
content: {
|
|
80688
|
-
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
80689
|
-
};
|
|
80690
|
-
};
|
|
81405
|
+
requestBody?: never;
|
|
80691
81406
|
responses: {
|
|
80692
81407
|
/** @description OK */
|
|
80693
81408
|
200: {
|
|
@@ -80695,7 +81410,7 @@ export interface operations {
|
|
|
80695
81410
|
[name: string]: unknown;
|
|
80696
81411
|
};
|
|
80697
81412
|
content: {
|
|
80698
|
-
"application/json":
|
|
81413
|
+
"application/json": string;
|
|
80699
81414
|
};
|
|
80700
81415
|
};
|
|
80701
81416
|
/** @description Bad Request */
|
|
@@ -80736,7 +81451,7 @@ export interface operations {
|
|
|
80736
81451
|
};
|
|
80737
81452
|
};
|
|
80738
81453
|
};
|
|
80739
|
-
|
|
81454
|
+
purchase_return_order_views_export_purchase_return_order_pdf: {
|
|
80740
81455
|
parameters: {
|
|
80741
81456
|
query?: never;
|
|
80742
81457
|
header?: never;
|
|
@@ -80745,70 +81460,6 @@ export interface operations {
|
|
|
80745
81460
|
};
|
|
80746
81461
|
cookie?: never;
|
|
80747
81462
|
};
|
|
80748
|
-
requestBody: {
|
|
80749
|
-
content: {
|
|
80750
|
-
"application/json": components["schemas"]["ActionsPayloadSchemas"];
|
|
80751
|
-
};
|
|
80752
|
-
};
|
|
80753
|
-
responses: {
|
|
80754
|
-
/** @description OK */
|
|
80755
|
-
200: {
|
|
80756
|
-
headers: {
|
|
80757
|
-
[name: string]: unknown;
|
|
80758
|
-
};
|
|
80759
|
-
content: {
|
|
80760
|
-
"application/json": components["schemas"]["PurchaseReturnOrderSchema"];
|
|
80761
|
-
};
|
|
80762
|
-
};
|
|
80763
|
-
/** @description Bad Request */
|
|
80764
|
-
400: {
|
|
80765
|
-
headers: {
|
|
80766
|
-
[name: string]: unknown;
|
|
80767
|
-
};
|
|
80768
|
-
content: {
|
|
80769
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
80770
|
-
};
|
|
80771
|
-
};
|
|
80772
|
-
/** @description Forbidden */
|
|
80773
|
-
403: {
|
|
80774
|
-
headers: {
|
|
80775
|
-
[name: string]: unknown;
|
|
80776
|
-
};
|
|
80777
|
-
content: {
|
|
80778
|
-
"application/json": components["schemas"]["MessageWithCode"];
|
|
80779
|
-
};
|
|
80780
|
-
};
|
|
80781
|
-
/** @description Not Found */
|
|
80782
|
-
404: {
|
|
80783
|
-
headers: {
|
|
80784
|
-
[name: string]: unknown;
|
|
80785
|
-
};
|
|
80786
|
-
content: {
|
|
80787
|
-
"application/json": components["schemas"]["MessageWithCode"];
|
|
80788
|
-
};
|
|
80789
|
-
};
|
|
80790
|
-
/** @description Internal Server Error */
|
|
80791
|
-
500: {
|
|
80792
|
-
headers: {
|
|
80793
|
-
[name: string]: unknown;
|
|
80794
|
-
};
|
|
80795
|
-
content: {
|
|
80796
|
-
"application/json": components["schemas"]["MessageWithCode"];
|
|
80797
|
-
};
|
|
80798
|
-
};
|
|
80799
|
-
};
|
|
80800
|
-
};
|
|
80801
|
-
purchase_return_order_views_export_purchase_return_order_to_excel: {
|
|
80802
|
-
parameters: {
|
|
80803
|
-
query: {
|
|
80804
|
-
selectedCurrencies: number[];
|
|
80805
|
-
};
|
|
80806
|
-
header?: never;
|
|
80807
|
-
path: {
|
|
80808
|
-
id: string;
|
|
80809
|
-
};
|
|
80810
|
-
cookie?: never;
|
|
80811
|
-
};
|
|
80812
81463
|
requestBody?: never;
|
|
80813
81464
|
responses: {
|
|
80814
81465
|
/** @description OK */
|
|
@@ -80858,7 +81509,7 @@ export interface operations {
|
|
|
80858
81509
|
};
|
|
80859
81510
|
};
|
|
80860
81511
|
};
|
|
80861
|
-
|
|
81512
|
+
purchase_return_order_views_send_purchase_return_order_by_email: {
|
|
80862
81513
|
parameters: {
|
|
80863
81514
|
query?: never;
|
|
80864
81515
|
header?: never;
|
|
@@ -80867,7 +81518,11 @@ export interface operations {
|
|
|
80867
81518
|
};
|
|
80868
81519
|
cookie?: never;
|
|
80869
81520
|
};
|
|
80870
|
-
requestBody
|
|
81521
|
+
requestBody: {
|
|
81522
|
+
content: {
|
|
81523
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
81524
|
+
};
|
|
81525
|
+
};
|
|
80871
81526
|
responses: {
|
|
80872
81527
|
/** @description OK */
|
|
80873
81528
|
200: {
|
|
@@ -80875,7 +81530,7 @@ export interface operations {
|
|
|
80875
81530
|
[name: string]: unknown;
|
|
80876
81531
|
};
|
|
80877
81532
|
content: {
|
|
80878
|
-
"application/json":
|
|
81533
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80879
81534
|
};
|
|
80880
81535
|
};
|
|
80881
81536
|
/** @description Bad Request */
|
|
@@ -80893,7 +81548,7 @@ export interface operations {
|
|
|
80893
81548
|
[name: string]: unknown;
|
|
80894
81549
|
};
|
|
80895
81550
|
content: {
|
|
80896
|
-
"application/json": components["schemas"]["
|
|
81551
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80897
81552
|
};
|
|
80898
81553
|
};
|
|
80899
81554
|
/** @description Not Found */
|
|
@@ -80902,7 +81557,7 @@ export interface operations {
|
|
|
80902
81557
|
[name: string]: unknown;
|
|
80903
81558
|
};
|
|
80904
81559
|
content: {
|
|
80905
|
-
"application/json": components["schemas"]["
|
|
81560
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80906
81561
|
};
|
|
80907
81562
|
};
|
|
80908
81563
|
/** @description Internal Server Error */
|
|
@@ -80911,7 +81566,7 @@ export interface operations {
|
|
|
80911
81566
|
[name: string]: unknown;
|
|
80912
81567
|
};
|
|
80913
81568
|
content: {
|
|
80914
|
-
"application/json": components["schemas"]["
|
|
81569
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
80915
81570
|
};
|
|
80916
81571
|
};
|
|
80917
81572
|
};
|
|
@@ -81310,7 +81965,187 @@ export interface operations {
|
|
|
81310
81965
|
};
|
|
81311
81966
|
};
|
|
81312
81967
|
};
|
|
81313
|
-
purchase_purchase_invoice_views_reset_to_draft_purchase_invoice: {
|
|
81968
|
+
purchase_purchase_invoice_views_reset_to_draft_purchase_invoice: {
|
|
81969
|
+
parameters: {
|
|
81970
|
+
query?: never;
|
|
81971
|
+
header?: never;
|
|
81972
|
+
path: {
|
|
81973
|
+
id: string;
|
|
81974
|
+
};
|
|
81975
|
+
cookie?: never;
|
|
81976
|
+
};
|
|
81977
|
+
requestBody: {
|
|
81978
|
+
content: {
|
|
81979
|
+
"application/json": components["schemas"]["PasswordSchema"];
|
|
81980
|
+
};
|
|
81981
|
+
};
|
|
81982
|
+
responses: {
|
|
81983
|
+
/** @description OK */
|
|
81984
|
+
200: {
|
|
81985
|
+
headers: {
|
|
81986
|
+
[name: string]: unknown;
|
|
81987
|
+
};
|
|
81988
|
+
content: {
|
|
81989
|
+
"application/json": components["schemas"]["PurchaseInvoiceWithEntriesSchema"];
|
|
81990
|
+
};
|
|
81991
|
+
};
|
|
81992
|
+
/** @description Bad Request */
|
|
81993
|
+
400: {
|
|
81994
|
+
headers: {
|
|
81995
|
+
[name: string]: unknown;
|
|
81996
|
+
};
|
|
81997
|
+
content: {
|
|
81998
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
81999
|
+
};
|
|
82000
|
+
};
|
|
82001
|
+
/** @description Forbidden */
|
|
82002
|
+
403: {
|
|
82003
|
+
headers: {
|
|
82004
|
+
[name: string]: unknown;
|
|
82005
|
+
};
|
|
82006
|
+
content: {
|
|
82007
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82008
|
+
};
|
|
82009
|
+
};
|
|
82010
|
+
/** @description Not Found */
|
|
82011
|
+
404: {
|
|
82012
|
+
headers: {
|
|
82013
|
+
[name: string]: unknown;
|
|
82014
|
+
};
|
|
82015
|
+
content: {
|
|
82016
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82017
|
+
};
|
|
82018
|
+
};
|
|
82019
|
+
/** @description Internal Server Error */
|
|
82020
|
+
500: {
|
|
82021
|
+
headers: {
|
|
82022
|
+
[name: string]: unknown;
|
|
82023
|
+
};
|
|
82024
|
+
content: {
|
|
82025
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82026
|
+
};
|
|
82027
|
+
};
|
|
82028
|
+
};
|
|
82029
|
+
};
|
|
82030
|
+
purchase_purchase_invoice_views_export_purchase_invoice: {
|
|
82031
|
+
parameters: {
|
|
82032
|
+
query: {
|
|
82033
|
+
selectedCurrencies: number[];
|
|
82034
|
+
};
|
|
82035
|
+
header?: never;
|
|
82036
|
+
path: {
|
|
82037
|
+
id: string;
|
|
82038
|
+
};
|
|
82039
|
+
cookie?: never;
|
|
82040
|
+
};
|
|
82041
|
+
requestBody?: never;
|
|
82042
|
+
responses: {
|
|
82043
|
+
/** @description OK */
|
|
82044
|
+
200: {
|
|
82045
|
+
headers: {
|
|
82046
|
+
[name: string]: unknown;
|
|
82047
|
+
};
|
|
82048
|
+
content: {
|
|
82049
|
+
"application/json": string;
|
|
82050
|
+
};
|
|
82051
|
+
};
|
|
82052
|
+
/** @description Bad Request */
|
|
82053
|
+
400: {
|
|
82054
|
+
headers: {
|
|
82055
|
+
[name: string]: unknown;
|
|
82056
|
+
};
|
|
82057
|
+
content: {
|
|
82058
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
82059
|
+
};
|
|
82060
|
+
};
|
|
82061
|
+
/** @description Forbidden */
|
|
82062
|
+
403: {
|
|
82063
|
+
headers: {
|
|
82064
|
+
[name: string]: unknown;
|
|
82065
|
+
};
|
|
82066
|
+
content: {
|
|
82067
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82068
|
+
};
|
|
82069
|
+
};
|
|
82070
|
+
/** @description Not Found */
|
|
82071
|
+
404: {
|
|
82072
|
+
headers: {
|
|
82073
|
+
[name: string]: unknown;
|
|
82074
|
+
};
|
|
82075
|
+
content: {
|
|
82076
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82077
|
+
};
|
|
82078
|
+
};
|
|
82079
|
+
/** @description Internal Server Error */
|
|
82080
|
+
500: {
|
|
82081
|
+
headers: {
|
|
82082
|
+
[name: string]: unknown;
|
|
82083
|
+
};
|
|
82084
|
+
content: {
|
|
82085
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82086
|
+
};
|
|
82087
|
+
};
|
|
82088
|
+
};
|
|
82089
|
+
};
|
|
82090
|
+
purchase_purchase_invoice_views_get_purchase_invoice_difference: {
|
|
82091
|
+
parameters: {
|
|
82092
|
+
query?: never;
|
|
82093
|
+
header?: never;
|
|
82094
|
+
path: {
|
|
82095
|
+
id: string;
|
|
82096
|
+
};
|
|
82097
|
+
cookie?: never;
|
|
82098
|
+
};
|
|
82099
|
+
requestBody?: never;
|
|
82100
|
+
responses: {
|
|
82101
|
+
/** @description OK */
|
|
82102
|
+
200: {
|
|
82103
|
+
headers: {
|
|
82104
|
+
[name: string]: unknown;
|
|
82105
|
+
};
|
|
82106
|
+
content: {
|
|
82107
|
+
"application/json": components["schemas"]["PurchaseInvoiceDifferenceSchema"];
|
|
82108
|
+
};
|
|
82109
|
+
};
|
|
82110
|
+
/** @description Bad Request */
|
|
82111
|
+
400: {
|
|
82112
|
+
headers: {
|
|
82113
|
+
[name: string]: unknown;
|
|
82114
|
+
};
|
|
82115
|
+
content: {
|
|
82116
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
82117
|
+
};
|
|
82118
|
+
};
|
|
82119
|
+
/** @description Forbidden */
|
|
82120
|
+
403: {
|
|
82121
|
+
headers: {
|
|
82122
|
+
[name: string]: unknown;
|
|
82123
|
+
};
|
|
82124
|
+
content: {
|
|
82125
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82126
|
+
};
|
|
82127
|
+
};
|
|
82128
|
+
/** @description Not Found */
|
|
82129
|
+
404: {
|
|
82130
|
+
headers: {
|
|
82131
|
+
[name: string]: unknown;
|
|
82132
|
+
};
|
|
82133
|
+
content: {
|
|
82134
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82135
|
+
};
|
|
82136
|
+
};
|
|
82137
|
+
/** @description Internal Server Error */
|
|
82138
|
+
500: {
|
|
82139
|
+
headers: {
|
|
82140
|
+
[name: string]: unknown;
|
|
82141
|
+
};
|
|
82142
|
+
content: {
|
|
82143
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82144
|
+
};
|
|
82145
|
+
};
|
|
82146
|
+
};
|
|
82147
|
+
};
|
|
82148
|
+
purchase_purchase_invoice_views_export_purchase_invoice_pdf: {
|
|
81314
82149
|
parameters: {
|
|
81315
82150
|
query?: never;
|
|
81316
82151
|
header?: never;
|
|
@@ -81319,70 +82154,6 @@ export interface operations {
|
|
|
81319
82154
|
};
|
|
81320
82155
|
cookie?: never;
|
|
81321
82156
|
};
|
|
81322
|
-
requestBody: {
|
|
81323
|
-
content: {
|
|
81324
|
-
"application/json": components["schemas"]["PasswordSchema"];
|
|
81325
|
-
};
|
|
81326
|
-
};
|
|
81327
|
-
responses: {
|
|
81328
|
-
/** @description OK */
|
|
81329
|
-
200: {
|
|
81330
|
-
headers: {
|
|
81331
|
-
[name: string]: unknown;
|
|
81332
|
-
};
|
|
81333
|
-
content: {
|
|
81334
|
-
"application/json": components["schemas"]["PurchaseInvoiceWithEntriesSchema"];
|
|
81335
|
-
};
|
|
81336
|
-
};
|
|
81337
|
-
/** @description Bad Request */
|
|
81338
|
-
400: {
|
|
81339
|
-
headers: {
|
|
81340
|
-
[name: string]: unknown;
|
|
81341
|
-
};
|
|
81342
|
-
content: {
|
|
81343
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
81344
|
-
};
|
|
81345
|
-
};
|
|
81346
|
-
/** @description Forbidden */
|
|
81347
|
-
403: {
|
|
81348
|
-
headers: {
|
|
81349
|
-
[name: string]: unknown;
|
|
81350
|
-
};
|
|
81351
|
-
content: {
|
|
81352
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
81353
|
-
};
|
|
81354
|
-
};
|
|
81355
|
-
/** @description Not Found */
|
|
81356
|
-
404: {
|
|
81357
|
-
headers: {
|
|
81358
|
-
[name: string]: unknown;
|
|
81359
|
-
};
|
|
81360
|
-
content: {
|
|
81361
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
81362
|
-
};
|
|
81363
|
-
};
|
|
81364
|
-
/** @description Internal Server Error */
|
|
81365
|
-
500: {
|
|
81366
|
-
headers: {
|
|
81367
|
-
[name: string]: unknown;
|
|
81368
|
-
};
|
|
81369
|
-
content: {
|
|
81370
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
81371
|
-
};
|
|
81372
|
-
};
|
|
81373
|
-
};
|
|
81374
|
-
};
|
|
81375
|
-
purchase_purchase_invoice_views_export_purchase_invoice: {
|
|
81376
|
-
parameters: {
|
|
81377
|
-
query: {
|
|
81378
|
-
selectedCurrencies: number[];
|
|
81379
|
-
};
|
|
81380
|
-
header?: never;
|
|
81381
|
-
path: {
|
|
81382
|
-
id: string;
|
|
81383
|
-
};
|
|
81384
|
-
cookie?: never;
|
|
81385
|
-
};
|
|
81386
82157
|
requestBody?: never;
|
|
81387
82158
|
responses: {
|
|
81388
82159
|
/** @description OK */
|
|
@@ -81409,7 +82180,7 @@ export interface operations {
|
|
|
81409
82180
|
[name: string]: unknown;
|
|
81410
82181
|
};
|
|
81411
82182
|
content: {
|
|
81412
|
-
"application/json": components["schemas"]["
|
|
82183
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
81413
82184
|
};
|
|
81414
82185
|
};
|
|
81415
82186
|
/** @description Not Found */
|
|
@@ -81418,7 +82189,7 @@ export interface operations {
|
|
|
81418
82189
|
[name: string]: unknown;
|
|
81419
82190
|
};
|
|
81420
82191
|
content: {
|
|
81421
|
-
"application/json": components["schemas"]["
|
|
82192
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
81422
82193
|
};
|
|
81423
82194
|
};
|
|
81424
82195
|
/** @description Internal Server Error */
|
|
@@ -81427,12 +82198,12 @@ export interface operations {
|
|
|
81427
82198
|
[name: string]: unknown;
|
|
81428
82199
|
};
|
|
81429
82200
|
content: {
|
|
81430
|
-
"application/json": components["schemas"]["
|
|
82201
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
81431
82202
|
};
|
|
81432
82203
|
};
|
|
81433
82204
|
};
|
|
81434
82205
|
};
|
|
81435
|
-
|
|
82206
|
+
purchase_purchase_invoice_views_send_purchase_invoice_by_email: {
|
|
81436
82207
|
parameters: {
|
|
81437
82208
|
query?: never;
|
|
81438
82209
|
header?: never;
|
|
@@ -81441,7 +82212,11 @@ export interface operations {
|
|
|
81441
82212
|
};
|
|
81442
82213
|
cookie?: never;
|
|
81443
82214
|
};
|
|
81444
|
-
requestBody
|
|
82215
|
+
requestBody: {
|
|
82216
|
+
content: {
|
|
82217
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
82218
|
+
};
|
|
82219
|
+
};
|
|
81445
82220
|
responses: {
|
|
81446
82221
|
/** @description OK */
|
|
81447
82222
|
200: {
|
|
@@ -81449,7 +82224,7 @@ export interface operations {
|
|
|
81449
82224
|
[name: string]: unknown;
|
|
81450
82225
|
};
|
|
81451
82226
|
content: {
|
|
81452
|
-
"application/json": components["schemas"]["
|
|
82227
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
81453
82228
|
};
|
|
81454
82229
|
};
|
|
81455
82230
|
/** @description Bad Request */
|
|
@@ -81490,64 +82265,6 @@ export interface operations {
|
|
|
81490
82265
|
};
|
|
81491
82266
|
};
|
|
81492
82267
|
};
|
|
81493
|
-
purchase_purchase_invoice_views_export_purchase_invoice_pdf: {
|
|
81494
|
-
parameters: {
|
|
81495
|
-
query?: never;
|
|
81496
|
-
header?: never;
|
|
81497
|
-
path: {
|
|
81498
|
-
id: string;
|
|
81499
|
-
};
|
|
81500
|
-
cookie?: never;
|
|
81501
|
-
};
|
|
81502
|
-
requestBody?: never;
|
|
81503
|
-
responses: {
|
|
81504
|
-
/** @description OK */
|
|
81505
|
-
200: {
|
|
81506
|
-
headers: {
|
|
81507
|
-
[name: string]: unknown;
|
|
81508
|
-
};
|
|
81509
|
-
content: {
|
|
81510
|
-
"application/json": string;
|
|
81511
|
-
};
|
|
81512
|
-
};
|
|
81513
|
-
/** @description Bad Request */
|
|
81514
|
-
400: {
|
|
81515
|
-
headers: {
|
|
81516
|
-
[name: string]: unknown;
|
|
81517
|
-
};
|
|
81518
|
-
content: {
|
|
81519
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
81520
|
-
};
|
|
81521
|
-
};
|
|
81522
|
-
/** @description Forbidden */
|
|
81523
|
-
403: {
|
|
81524
|
-
headers: {
|
|
81525
|
-
[name: string]: unknown;
|
|
81526
|
-
};
|
|
81527
|
-
content: {
|
|
81528
|
-
"application/json": components["schemas"]["MessageWithCode"];
|
|
81529
|
-
};
|
|
81530
|
-
};
|
|
81531
|
-
/** @description Not Found */
|
|
81532
|
-
404: {
|
|
81533
|
-
headers: {
|
|
81534
|
-
[name: string]: unknown;
|
|
81535
|
-
};
|
|
81536
|
-
content: {
|
|
81537
|
-
"application/json": components["schemas"]["MessageWithCode"];
|
|
81538
|
-
};
|
|
81539
|
-
};
|
|
81540
|
-
/** @description Internal Server Error */
|
|
81541
|
-
500: {
|
|
81542
|
-
headers: {
|
|
81543
|
-
[name: string]: unknown;
|
|
81544
|
-
};
|
|
81545
|
-
content: {
|
|
81546
|
-
"application/json": components["schemas"]["MessageWithCode"];
|
|
81547
|
-
};
|
|
81548
|
-
};
|
|
81549
|
-
};
|
|
81550
|
-
};
|
|
81551
82268
|
purchase_payment_voucher_views_calculate_equivalents: {
|
|
81552
82269
|
parameters: {
|
|
81553
82270
|
query?: never;
|
|
@@ -82708,6 +83425,68 @@ export interface operations {
|
|
|
82708
83425
|
};
|
|
82709
83426
|
};
|
|
82710
83427
|
};
|
|
83428
|
+
purchase_return_invoice_views_send_purchase_return_invoice_by_email: {
|
|
83429
|
+
parameters: {
|
|
83430
|
+
query?: never;
|
|
83431
|
+
header?: never;
|
|
83432
|
+
path: {
|
|
83433
|
+
id: string;
|
|
83434
|
+
};
|
|
83435
|
+
cookie?: never;
|
|
83436
|
+
};
|
|
83437
|
+
requestBody: {
|
|
83438
|
+
content: {
|
|
83439
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
83440
|
+
};
|
|
83441
|
+
};
|
|
83442
|
+
responses: {
|
|
83443
|
+
/** @description OK */
|
|
83444
|
+
200: {
|
|
83445
|
+
headers: {
|
|
83446
|
+
[name: string]: unknown;
|
|
83447
|
+
};
|
|
83448
|
+
content: {
|
|
83449
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
83450
|
+
};
|
|
83451
|
+
};
|
|
83452
|
+
/** @description Bad Request */
|
|
83453
|
+
400: {
|
|
83454
|
+
headers: {
|
|
83455
|
+
[name: string]: unknown;
|
|
83456
|
+
};
|
|
83457
|
+
content: {
|
|
83458
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
83459
|
+
};
|
|
83460
|
+
};
|
|
83461
|
+
/** @description Forbidden */
|
|
83462
|
+
403: {
|
|
83463
|
+
headers: {
|
|
83464
|
+
[name: string]: unknown;
|
|
83465
|
+
};
|
|
83466
|
+
content: {
|
|
83467
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
83468
|
+
};
|
|
83469
|
+
};
|
|
83470
|
+
/** @description Not Found */
|
|
83471
|
+
404: {
|
|
83472
|
+
headers: {
|
|
83473
|
+
[name: string]: unknown;
|
|
83474
|
+
};
|
|
83475
|
+
content: {
|
|
83476
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
83477
|
+
};
|
|
83478
|
+
};
|
|
83479
|
+
/** @description Internal Server Error */
|
|
83480
|
+
500: {
|
|
83481
|
+
headers: {
|
|
83482
|
+
[name: string]: unknown;
|
|
83483
|
+
};
|
|
83484
|
+
content: {
|
|
83485
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
83486
|
+
};
|
|
83487
|
+
};
|
|
83488
|
+
};
|
|
83489
|
+
};
|
|
82711
83490
|
inventory_receipt_note_views_list_goods_receipt_notes: {
|
|
82712
83491
|
parameters: {
|
|
82713
83492
|
query?: {
|
|
@@ -87784,18 +88563,80 @@ export interface operations {
|
|
|
87784
88563
|
};
|
|
87785
88564
|
};
|
|
87786
88565
|
};
|
|
87787
|
-
sales_quotation_views_send_sales_quotation_whatsapp: {
|
|
88566
|
+
sales_quotation_views_send_sales_quotation_whatsapp: {
|
|
88567
|
+
parameters: {
|
|
88568
|
+
query?: {
|
|
88569
|
+
templateId?: string | null;
|
|
88570
|
+
};
|
|
88571
|
+
header?: never;
|
|
88572
|
+
path: {
|
|
88573
|
+
id: string;
|
|
88574
|
+
};
|
|
88575
|
+
cookie?: never;
|
|
88576
|
+
};
|
|
88577
|
+
requestBody?: never;
|
|
88578
|
+
responses: {
|
|
88579
|
+
/** @description OK */
|
|
88580
|
+
200: {
|
|
88581
|
+
headers: {
|
|
88582
|
+
[name: string]: unknown;
|
|
88583
|
+
};
|
|
88584
|
+
content: {
|
|
88585
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
88586
|
+
};
|
|
88587
|
+
};
|
|
88588
|
+
/** @description Bad Request */
|
|
88589
|
+
400: {
|
|
88590
|
+
headers: {
|
|
88591
|
+
[name: string]: unknown;
|
|
88592
|
+
};
|
|
88593
|
+
content: {
|
|
88594
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
88595
|
+
};
|
|
88596
|
+
};
|
|
88597
|
+
/** @description Forbidden */
|
|
88598
|
+
403: {
|
|
88599
|
+
headers: {
|
|
88600
|
+
[name: string]: unknown;
|
|
88601
|
+
};
|
|
88602
|
+
content: {
|
|
88603
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
88604
|
+
};
|
|
88605
|
+
};
|
|
88606
|
+
/** @description Not Found */
|
|
88607
|
+
404: {
|
|
88608
|
+
headers: {
|
|
88609
|
+
[name: string]: unknown;
|
|
88610
|
+
};
|
|
88611
|
+
content: {
|
|
88612
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
88613
|
+
};
|
|
88614
|
+
};
|
|
88615
|
+
/** @description Internal Server Error */
|
|
88616
|
+
500: {
|
|
88617
|
+
headers: {
|
|
88618
|
+
[name: string]: unknown;
|
|
88619
|
+
};
|
|
88620
|
+
content: {
|
|
88621
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
88622
|
+
};
|
|
88623
|
+
};
|
|
88624
|
+
};
|
|
88625
|
+
};
|
|
88626
|
+
sales_quotation_views_send_sales_quotation_by_email: {
|
|
87788
88627
|
parameters: {
|
|
87789
|
-
query?:
|
|
87790
|
-
templateId?: string | null;
|
|
87791
|
-
};
|
|
88628
|
+
query?: never;
|
|
87792
88629
|
header?: never;
|
|
87793
88630
|
path: {
|
|
87794
88631
|
id: string;
|
|
87795
88632
|
};
|
|
87796
88633
|
cookie?: never;
|
|
87797
88634
|
};
|
|
87798
|
-
requestBody
|
|
88635
|
+
requestBody: {
|
|
88636
|
+
content: {
|
|
88637
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
88638
|
+
};
|
|
88639
|
+
};
|
|
87799
88640
|
responses: {
|
|
87800
88641
|
/** @description OK */
|
|
87801
88642
|
200: {
|
|
@@ -87803,7 +88644,7 @@ export interface operations {
|
|
|
87803
88644
|
[name: string]: unknown;
|
|
87804
88645
|
};
|
|
87805
88646
|
content: {
|
|
87806
|
-
"application/json": components["schemas"]["
|
|
88647
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87807
88648
|
};
|
|
87808
88649
|
};
|
|
87809
88650
|
/** @description Bad Request */
|
|
@@ -87821,7 +88662,7 @@ export interface operations {
|
|
|
87821
88662
|
[name: string]: unknown;
|
|
87822
88663
|
};
|
|
87823
88664
|
content: {
|
|
87824
|
-
"application/json": components["schemas"]["
|
|
88665
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87825
88666
|
};
|
|
87826
88667
|
};
|
|
87827
88668
|
/** @description Not Found */
|
|
@@ -87830,7 +88671,7 @@ export interface operations {
|
|
|
87830
88671
|
[name: string]: unknown;
|
|
87831
88672
|
};
|
|
87832
88673
|
content: {
|
|
87833
|
-
"application/json": components["schemas"]["
|
|
88674
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87834
88675
|
};
|
|
87835
88676
|
};
|
|
87836
88677
|
/** @description Internal Server Error */
|
|
@@ -87839,7 +88680,7 @@ export interface operations {
|
|
|
87839
88680
|
[name: string]: unknown;
|
|
87840
88681
|
};
|
|
87841
88682
|
content: {
|
|
87842
|
-
"application/json": components["schemas"]["
|
|
88683
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87843
88684
|
};
|
|
87844
88685
|
};
|
|
87845
88686
|
};
|
|
@@ -90241,6 +91082,68 @@ export interface operations {
|
|
|
90241
91082
|
};
|
|
90242
91083
|
};
|
|
90243
91084
|
};
|
|
91085
|
+
sales_order_views_send_sales_order_by_email: {
|
|
91086
|
+
parameters: {
|
|
91087
|
+
query?: never;
|
|
91088
|
+
header?: never;
|
|
91089
|
+
path: {
|
|
91090
|
+
id: string;
|
|
91091
|
+
};
|
|
91092
|
+
cookie?: never;
|
|
91093
|
+
};
|
|
91094
|
+
requestBody: {
|
|
91095
|
+
content: {
|
|
91096
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
91097
|
+
};
|
|
91098
|
+
};
|
|
91099
|
+
responses: {
|
|
91100
|
+
/** @description OK */
|
|
91101
|
+
200: {
|
|
91102
|
+
headers: {
|
|
91103
|
+
[name: string]: unknown;
|
|
91104
|
+
};
|
|
91105
|
+
content: {
|
|
91106
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
91107
|
+
};
|
|
91108
|
+
};
|
|
91109
|
+
/** @description Bad Request */
|
|
91110
|
+
400: {
|
|
91111
|
+
headers: {
|
|
91112
|
+
[name: string]: unknown;
|
|
91113
|
+
};
|
|
91114
|
+
content: {
|
|
91115
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
91116
|
+
};
|
|
91117
|
+
};
|
|
91118
|
+
/** @description Forbidden */
|
|
91119
|
+
403: {
|
|
91120
|
+
headers: {
|
|
91121
|
+
[name: string]: unknown;
|
|
91122
|
+
};
|
|
91123
|
+
content: {
|
|
91124
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
91125
|
+
};
|
|
91126
|
+
};
|
|
91127
|
+
/** @description Not Found */
|
|
91128
|
+
404: {
|
|
91129
|
+
headers: {
|
|
91130
|
+
[name: string]: unknown;
|
|
91131
|
+
};
|
|
91132
|
+
content: {
|
|
91133
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
91134
|
+
};
|
|
91135
|
+
};
|
|
91136
|
+
/** @description Internal Server Error */
|
|
91137
|
+
500: {
|
|
91138
|
+
headers: {
|
|
91139
|
+
[name: string]: unknown;
|
|
91140
|
+
};
|
|
91141
|
+
content: {
|
|
91142
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
91143
|
+
};
|
|
91144
|
+
};
|
|
91145
|
+
};
|
|
91146
|
+
};
|
|
90244
91147
|
purchase_credit_note_views_list_purchase_credit_notes: {
|
|
90245
91148
|
parameters: {
|
|
90246
91149
|
query?: {
|
|
@@ -91917,6 +92820,68 @@ export interface operations {
|
|
|
91917
92820
|
};
|
|
91918
92821
|
};
|
|
91919
92822
|
};
|
|
92823
|
+
sales_invoice_views_send_sales_invoice_by_email: {
|
|
92824
|
+
parameters: {
|
|
92825
|
+
query?: never;
|
|
92826
|
+
header?: never;
|
|
92827
|
+
path: {
|
|
92828
|
+
id: string;
|
|
92829
|
+
};
|
|
92830
|
+
cookie?: never;
|
|
92831
|
+
};
|
|
92832
|
+
requestBody: {
|
|
92833
|
+
content: {
|
|
92834
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
92835
|
+
};
|
|
92836
|
+
};
|
|
92837
|
+
responses: {
|
|
92838
|
+
/** @description OK */
|
|
92839
|
+
200: {
|
|
92840
|
+
headers: {
|
|
92841
|
+
[name: string]: unknown;
|
|
92842
|
+
};
|
|
92843
|
+
content: {
|
|
92844
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
92845
|
+
};
|
|
92846
|
+
};
|
|
92847
|
+
/** @description Bad Request */
|
|
92848
|
+
400: {
|
|
92849
|
+
headers: {
|
|
92850
|
+
[name: string]: unknown;
|
|
92851
|
+
};
|
|
92852
|
+
content: {
|
|
92853
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
92854
|
+
};
|
|
92855
|
+
};
|
|
92856
|
+
/** @description Forbidden */
|
|
92857
|
+
403: {
|
|
92858
|
+
headers: {
|
|
92859
|
+
[name: string]: unknown;
|
|
92860
|
+
};
|
|
92861
|
+
content: {
|
|
92862
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
92863
|
+
};
|
|
92864
|
+
};
|
|
92865
|
+
/** @description Not Found */
|
|
92866
|
+
404: {
|
|
92867
|
+
headers: {
|
|
92868
|
+
[name: string]: unknown;
|
|
92869
|
+
};
|
|
92870
|
+
content: {
|
|
92871
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
92872
|
+
};
|
|
92873
|
+
};
|
|
92874
|
+
/** @description Internal Server Error */
|
|
92875
|
+
500: {
|
|
92876
|
+
headers: {
|
|
92877
|
+
[name: string]: unknown;
|
|
92878
|
+
};
|
|
92879
|
+
content: {
|
|
92880
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
92881
|
+
};
|
|
92882
|
+
};
|
|
92883
|
+
};
|
|
92884
|
+
};
|
|
91920
92885
|
sales_return_order_views_list_sales_return_orders: {
|
|
91921
92886
|
parameters: {
|
|
91922
92887
|
query?: {
|
|
@@ -92423,6 +93388,68 @@ export interface operations {
|
|
|
92423
93388
|
};
|
|
92424
93389
|
};
|
|
92425
93390
|
};
|
|
93391
|
+
sales_return_order_views_send_sales_return_order_by_email: {
|
|
93392
|
+
parameters: {
|
|
93393
|
+
query?: never;
|
|
93394
|
+
header?: never;
|
|
93395
|
+
path: {
|
|
93396
|
+
id: string;
|
|
93397
|
+
};
|
|
93398
|
+
cookie?: never;
|
|
93399
|
+
};
|
|
93400
|
+
requestBody: {
|
|
93401
|
+
content: {
|
|
93402
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
93403
|
+
};
|
|
93404
|
+
};
|
|
93405
|
+
responses: {
|
|
93406
|
+
/** @description OK */
|
|
93407
|
+
200: {
|
|
93408
|
+
headers: {
|
|
93409
|
+
[name: string]: unknown;
|
|
93410
|
+
};
|
|
93411
|
+
content: {
|
|
93412
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
93413
|
+
};
|
|
93414
|
+
};
|
|
93415
|
+
/** @description Bad Request */
|
|
93416
|
+
400: {
|
|
93417
|
+
headers: {
|
|
93418
|
+
[name: string]: unknown;
|
|
93419
|
+
};
|
|
93420
|
+
content: {
|
|
93421
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
93422
|
+
};
|
|
93423
|
+
};
|
|
93424
|
+
/** @description Forbidden */
|
|
93425
|
+
403: {
|
|
93426
|
+
headers: {
|
|
93427
|
+
[name: string]: unknown;
|
|
93428
|
+
};
|
|
93429
|
+
content: {
|
|
93430
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
93431
|
+
};
|
|
93432
|
+
};
|
|
93433
|
+
/** @description Not Found */
|
|
93434
|
+
404: {
|
|
93435
|
+
headers: {
|
|
93436
|
+
[name: string]: unknown;
|
|
93437
|
+
};
|
|
93438
|
+
content: {
|
|
93439
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
93440
|
+
};
|
|
93441
|
+
};
|
|
93442
|
+
/** @description Internal Server Error */
|
|
93443
|
+
500: {
|
|
93444
|
+
headers: {
|
|
93445
|
+
[name: string]: unknown;
|
|
93446
|
+
};
|
|
93447
|
+
content: {
|
|
93448
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
93449
|
+
};
|
|
93450
|
+
};
|
|
93451
|
+
};
|
|
93452
|
+
};
|
|
92426
93453
|
sales_return_invoice_views_list_return_sales_invoices: {
|
|
92427
93454
|
parameters: {
|
|
92428
93455
|
query?: {
|
|
@@ -92929,6 +93956,68 @@ export interface operations {
|
|
|
92929
93956
|
};
|
|
92930
93957
|
};
|
|
92931
93958
|
};
|
|
93959
|
+
sales_return_invoice_views_send_sales_return_invoice_by_email: {
|
|
93960
|
+
parameters: {
|
|
93961
|
+
query?: never;
|
|
93962
|
+
header?: never;
|
|
93963
|
+
path: {
|
|
93964
|
+
id: string;
|
|
93965
|
+
};
|
|
93966
|
+
cookie?: never;
|
|
93967
|
+
};
|
|
93968
|
+
requestBody: {
|
|
93969
|
+
content: {
|
|
93970
|
+
"application/json": components["schemas"]["EmailContentSchema"];
|
|
93971
|
+
};
|
|
93972
|
+
};
|
|
93973
|
+
responses: {
|
|
93974
|
+
/** @description OK */
|
|
93975
|
+
200: {
|
|
93976
|
+
headers: {
|
|
93977
|
+
[name: string]: unknown;
|
|
93978
|
+
};
|
|
93979
|
+
content: {
|
|
93980
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
93981
|
+
};
|
|
93982
|
+
};
|
|
93983
|
+
/** @description Bad Request */
|
|
93984
|
+
400: {
|
|
93985
|
+
headers: {
|
|
93986
|
+
[name: string]: unknown;
|
|
93987
|
+
};
|
|
93988
|
+
content: {
|
|
93989
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
93990
|
+
};
|
|
93991
|
+
};
|
|
93992
|
+
/** @description Forbidden */
|
|
93993
|
+
403: {
|
|
93994
|
+
headers: {
|
|
93995
|
+
[name: string]: unknown;
|
|
93996
|
+
};
|
|
93997
|
+
content: {
|
|
93998
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
93999
|
+
};
|
|
94000
|
+
};
|
|
94001
|
+
/** @description Not Found */
|
|
94002
|
+
404: {
|
|
94003
|
+
headers: {
|
|
94004
|
+
[name: string]: unknown;
|
|
94005
|
+
};
|
|
94006
|
+
content: {
|
|
94007
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
94008
|
+
};
|
|
94009
|
+
};
|
|
94010
|
+
/** @description Internal Server Error */
|
|
94011
|
+
500: {
|
|
94012
|
+
headers: {
|
|
94013
|
+
[name: string]: unknown;
|
|
94014
|
+
};
|
|
94015
|
+
content: {
|
|
94016
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
94017
|
+
};
|
|
94018
|
+
};
|
|
94019
|
+
};
|
|
94020
|
+
};
|
|
92932
94021
|
sales_refund_voucher_views_get_sales_refundable_documents: {
|
|
92933
94022
|
parameters: {
|
|
92934
94023
|
query: {
|