@tagsamurai/fats-api-services 1.0.0-alpha.235 → 1.0.0-alpha.236
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/api-services.es.js
CHANGED
|
@@ -620,7 +620,7 @@ const AssignmentServices$1 = {
|
|
|
620
620
|
postTransaction: (body) => {
|
|
621
621
|
return API$x.post("/transaction", body);
|
|
622
622
|
},
|
|
623
|
-
|
|
623
|
+
putTransactionRequest: (id, body) => {
|
|
624
624
|
return API$x.put(`/transaction/${id}/request`, body);
|
|
625
625
|
},
|
|
626
626
|
putCancelTransaction: (body) => {
|
package/api-services.system.js
CHANGED
|
@@ -627,7 +627,7 @@ System.register(["axios"], function(exports, module) {
|
|
|
627
627
|
postTransaction: (body) => {
|
|
628
628
|
return API$x.post("/transaction", body);
|
|
629
629
|
},
|
|
630
|
-
|
|
630
|
+
putTransactionRequest: (id, body) => {
|
|
631
631
|
return API$x.put(`/transaction/${id}/request`, body);
|
|
632
632
|
},
|
|
633
633
|
putCancelTransaction: (body) => {
|
package/package.json
CHANGED
|
@@ -36,6 +36,7 @@ declare const AssignmentServices: {
|
|
|
36
36
|
email: string;
|
|
37
37
|
}) => Promise<AxiosResponse>;
|
|
38
38
|
postSendConfirmationEmail: (id: string) => Promise<AxiosResponse>;
|
|
39
|
+
putTransactionRequest: (id: string, body: import('../dto/assignment.dto').EnterprisePutTransactionDto[]) => Promise<AxiosResponse>;
|
|
39
40
|
putCancelTransaction: (body: {
|
|
40
41
|
id: string[];
|
|
41
42
|
}) => Promise<AxiosResponse>;
|
|
@@ -32,7 +32,7 @@ declare const AssignmentServices: {
|
|
|
32
32
|
}) => Promise<AxiosResponse>;
|
|
33
33
|
postSendConfirmationEmail: (id: string) => Promise<AxiosResponse>;
|
|
34
34
|
postTransaction: (body: EnterprisePostTransactionDto[]) => Promise<AxiosResponse>;
|
|
35
|
-
|
|
35
|
+
putTransactionRequest: (id: string, body: EnterprisePutTransactionDto[]) => Promise<AxiosResponse>;
|
|
36
36
|
putCancelTransaction: (body: {
|
|
37
37
|
id: string[];
|
|
38
38
|
}) => Promise<AxiosResponse>;
|