@openbox/shared-types 0.2.59 → 0.2.60
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/lib/invoices/PaymentConditions/DeleteSingle/Response.d.ts +1 -1
- package/lib/invoices/PaymentConditions/GetMany/Request.d.ts +1 -1
- package/lib/invoices/PaymentConditions/GetMany/Response.d.ts +1 -1
- package/lib/invoices/PaymentConditions/UpdateMany/Request.d.ts +2 -2
- package/lib/invoices/PaymentConditions/UpdateSingle/Request.d.ts +1 -1
- package/lib/invoices/PaymentConditions/UpdateSingle/Response.d.ts +1 -1
- package/lib/invoices/PaymentConditions/UpdateSingleStatus/Request.d.ts +1 -1
- package/lib/invoices/PaymentConditions/UpdateSingleStatus/Response.d.ts +1 -1
- package/package.json +1 -1
- package/src/invoices/PaymentConditions/DeleteSingle/Response.ts +1 -1
- package/src/invoices/PaymentConditions/GetMany/Request.ts +1 -1
- package/src/invoices/PaymentConditions/GetMany/Response.ts +1 -1
- package/src/invoices/PaymentConditions/UpdateMany/Request.ts +2 -2
- package/src/invoices/PaymentConditions/UpdateSingle/Request.ts +1 -2
- package/src/invoices/PaymentConditions/UpdateSingle/Response.ts +1 -1
- package/src/invoices/PaymentConditions/UpdateSingleStatus/Request.ts +1 -1
- package/src/invoices/PaymentConditions/UpdateSingleStatus/Response.ts +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SingleResponse } from '../../../interfaces';
|
|
2
|
-
export type
|
|
2
|
+
export type InvoicesPaymentConditionsDeleteSingleResponse = SingleResponse;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { GetManyResponse } from '../../../interfaces';
|
|
2
2
|
import { InvoicesPaymentConditionsResponse } from '../invoices.payment-conditions.interface';
|
|
3
|
-
export type
|
|
3
|
+
export type InvoicesPaymentConditionsGetManyResponse = GetManyResponse & {
|
|
4
4
|
data: Array<InvoicesPaymentConditionsResponse & {
|
|
5
5
|
index: number;
|
|
6
6
|
}>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export type InvoicesPaymentConditionsUpdateManyRequest = Array<
|
|
1
|
+
import { InvoicesPaymentConditionsUpdateSingleRequest } from '../UpdateSingle/Request';
|
|
2
|
+
export type InvoicesPaymentConditionsUpdateManyRequest = Array<InvoicesPaymentConditionsUpdateSingleRequest & {
|
|
3
3
|
id: string;
|
|
4
4
|
}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { InvoicesPaymentConditionsRequest } from '../invoices.payment-conditions.interface';
|
|
2
|
-
export type
|
|
2
|
+
export type InvoicesPaymentConditionsUpdateSingleRequest = Partial<InvoicesPaymentConditionsRequest>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SingleResponse } from '../../../interfaces';
|
|
2
|
-
export type
|
|
2
|
+
export type InvoicesPaymentConditionsUpdateSingleResponse = SingleResponse;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SingleResponse } from '../../../interfaces';
|
|
2
|
-
export type
|
|
2
|
+
export type InvoicesPaymentConditionsUpdateSingleStatusResponse = SingleResponse;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { GetManyResponse } from '../../../interfaces'
|
|
2
2
|
import { InvoicesPaymentConditionsResponse } from '../invoices.payment-conditions.interface'
|
|
3
3
|
|
|
4
|
-
export type
|
|
4
|
+
export type InvoicesPaymentConditionsGetManyResponse = GetManyResponse & {
|
|
5
5
|
data: Array<InvoicesPaymentConditionsResponse & { index: number }>
|
|
6
6
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InvoicesPaymentConditionsUpdateSingleRequest } from '../UpdateSingle/Request'
|
|
2
2
|
|
|
3
3
|
export type InvoicesPaymentConditionsUpdateManyRequest = Array<
|
|
4
|
-
|
|
4
|
+
InvoicesPaymentConditionsUpdateSingleRequest & {
|
|
5
5
|
id: string
|
|
6
6
|
}
|
|
7
7
|
>
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import { InvoicesPaymentConditionsRequest } from '../invoices.payment-conditions.interface'
|
|
2
2
|
|
|
3
|
-
export type
|
|
4
|
-
Partial<InvoicesPaymentConditionsRequest>
|
|
3
|
+
export type InvoicesPaymentConditionsUpdateSingleRequest = Partial<InvoicesPaymentConditionsRequest>
|