@openbox/shared-types 0.2.57 → 0.2.59
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/GetMany/Response.d.ts +3 -1
- package/lib/invoices/Sellers/DeleteSingle/Response.d.ts +1 -1
- package/lib/invoices/Sellers/GetMany/Response.d.ts +4 -2
- package/lib/invoices/Zones/GetMany/Response.d.ts +3 -1
- package/package.json +1 -1
- package/src/invoices/PaymentConditions/GetMany/Response.ts +1 -1
- package/src/invoices/Sellers/DeleteSingle/Response.ts +1 -1
- package/src/invoices/Sellers/GetMany/Response.ts +2 -2
- package/src/invoices/Zones/GetMany/Response.ts +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { GetManyResponse } from '../../../interfaces';
|
|
2
2
|
import { InvoicesPaymentConditionsResponse } from '../invoices.payment-conditions.interface';
|
|
3
3
|
export type InvoicesPaymentsConditionsGetManyResponse = GetManyResponse & {
|
|
4
|
-
data: Array<InvoicesPaymentConditionsResponse
|
|
4
|
+
data: Array<InvoicesPaymentConditionsResponse & {
|
|
5
|
+
index: number;
|
|
6
|
+
}>;
|
|
5
7
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SingleResponse } from '../../../interfaces';
|
|
2
|
-
export type
|
|
2
|
+
export type InvoicesSellersDeleteSingleResponse = SingleResponse;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { GetManyResponse } from '../../../interfaces';
|
|
2
2
|
import { InvoicesSellersResponse } from '../invoices.sellers.interface';
|
|
3
|
-
export type
|
|
4
|
-
data: Array<InvoicesSellersResponse
|
|
3
|
+
export type InvoicesSellersGetManyResponse = GetManyResponse & {
|
|
4
|
+
data: Array<InvoicesSellersResponse & {
|
|
5
|
+
index: number;
|
|
6
|
+
}>;
|
|
5
7
|
};
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { GetManyResponse } from '../../../interfaces';
|
|
2
2
|
import { InvoicesZonesResponse } from '../invoices.zones.interfaces';
|
|
3
3
|
export type InvoicesZonesGetManyResponse = GetManyResponse & {
|
|
4
|
-
data: Array<InvoicesZonesResponse
|
|
4
|
+
data: Array<InvoicesZonesResponse & {
|
|
5
|
+
index: number;
|
|
6
|
+
}>;
|
|
5
7
|
};
|
package/package.json
CHANGED
|
@@ -2,5 +2,5 @@ import { GetManyResponse } from '../../../interfaces'
|
|
|
2
2
|
import { InvoicesPaymentConditionsResponse } from '../invoices.payment-conditions.interface'
|
|
3
3
|
|
|
4
4
|
export type InvoicesPaymentsConditionsGetManyResponse = GetManyResponse & {
|
|
5
|
-
data: Array<InvoicesPaymentConditionsResponse>
|
|
5
|
+
data: Array<InvoicesPaymentConditionsResponse & { index: number }>
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { GetManyResponse } from '../../../interfaces'
|
|
2
2
|
import { InvoicesSellersResponse } from '../invoices.sellers.interface'
|
|
3
3
|
|
|
4
|
-
export type
|
|
5
|
-
data: Array<InvoicesSellersResponse>
|
|
4
|
+
export type InvoicesSellersGetManyResponse = GetManyResponse & {
|
|
5
|
+
data: Array<InvoicesSellersResponse & { index: number }>
|
|
6
6
|
}
|
|
@@ -2,5 +2,5 @@ import { GetManyResponse } from '../../../interfaces'
|
|
|
2
2
|
import { InvoicesZonesResponse } from '../invoices.zones.interfaces'
|
|
3
3
|
|
|
4
4
|
export type InvoicesZonesGetManyResponse = GetManyResponse & {
|
|
5
|
-
data: Array<InvoicesZonesResponse>
|
|
5
|
+
data: Array<InvoicesZonesResponse & { index: number }>
|
|
6
6
|
}
|