@zauru-sdk/graphql 2.0.112 → 2.0.113
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.
|
@@ -1345,9 +1345,7 @@ query getInvoicesByAgencyId {
|
|
|
1345
1345
|
where: {
|
|
1346
1346
|
agency_id: {_eq: ${id}},
|
|
1347
1347
|
voided: {_eq: false}
|
|
1348
|
-
${filters?.invoice_id
|
|
1349
|
-
? `, id: {_eq: ${filters?.invoice_id}}`
|
|
1350
|
-
: ""}
|
|
1348
|
+
${filters?.invoice_id ? `, id: {_eq: ${filters?.invoice_id}}` : ""}
|
|
1351
1349
|
${filters?.tag_id
|
|
1352
1350
|
? `, tagging_invoices: { tag_id: {_eq: ${filters?.tag_id}}}`
|
|
1353
1351
|
: ""}
|
|
@@ -1391,6 +1389,7 @@ query getInvoicesByAgencyId {
|
|
|
1391
1389
|
}
|
|
1392
1390
|
payee {
|
|
1393
1391
|
name
|
|
1392
|
+
tin
|
|
1394
1393
|
payee_category_id
|
|
1395
1394
|
}
|
|
1396
1395
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zauru-sdk/graphql",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.113",
|
|
4
4
|
"description": "Queries de uso común para las aplicación de Zauru.",
|
|
5
5
|
"main": "./dist/esm/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -21,5 +21,5 @@
|
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"typescript": "^5.1.6"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "0251ee194f152e5ddbf5e35bea38d050b2309f31"
|
|
25
25
|
}
|