@zauru-sdk/graphql 1.0.120 → 2.0.4
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.
|
@@ -28,7 +28,7 @@ export declare const getPurchaseOrdersBetweenDatesStringQuery: (startDate: strin
|
|
|
28
28
|
}) => string;
|
|
29
29
|
export declare const getPayeesStringQuery = "\nquery getPayees {\n payees {\n id\n id_number\n name\n tin\n vendor\n address_line_1\n }\n}\n";
|
|
30
30
|
export declare const getProvidersStringQuery = "\nquery getProviders {\n payees (where: {vendor: {_eq: true}}) {\n id\n id_number\n name\n tin\n address_line_1\n }\n}\n";
|
|
31
|
-
export declare const getAgenciesStringQuery = "\nquery getAgencies {\n agencies {\n id\n name\n }\n}\n";
|
|
31
|
+
export declare const getAgenciesStringQuery = "\nquery getAgencies {\n agencies {\n id\n name\n address_line_2\n }\n}\n";
|
|
32
32
|
export declare const getWebAppRowStringQuery: (id: number) => string;
|
|
33
33
|
export declare const getWebAppRowsByWebAppTableIdStringQuery: (webapp_table_id: number) => string;
|
|
34
34
|
export declare const getPayeeCategoryByIdStringQuery: (id: number) => string;
|
|
@@ -16,6 +16,7 @@ query getLast100Receptions {
|
|
|
16
16
|
authorized
|
|
17
17
|
received
|
|
18
18
|
transport_type
|
|
19
|
+
shipment_reference
|
|
19
20
|
purchase_order_details {
|
|
20
21
|
item_id
|
|
21
22
|
id
|
|
@@ -50,6 +51,7 @@ query getPurchaseOrderByIdNumber {
|
|
|
50
51
|
received
|
|
51
52
|
discount
|
|
52
53
|
other_charges
|
|
54
|
+
shipment_reference
|
|
53
55
|
webapp_table_rowables {
|
|
54
56
|
webapp_rows {
|
|
55
57
|
data
|
|
@@ -98,6 +100,7 @@ query getPurchaseOrder($id: bigint) @cached {
|
|
|
98
100
|
discount
|
|
99
101
|
delivery_date
|
|
100
102
|
other_charges
|
|
103
|
+
shipment_reference
|
|
101
104
|
webapp_table_rowables {
|
|
102
105
|
webapp_rows {
|
|
103
106
|
data
|
|
@@ -323,6 +326,7 @@ const getPurchaseOrdersBetweenDatesStringQuery = (startDate, endDate, config) =>
|
|
|
323
326
|
discount
|
|
324
327
|
other_charges
|
|
325
328
|
consolidate_id
|
|
329
|
+
shipment_reference
|
|
326
330
|
${purchaseOrderDetails}
|
|
327
331
|
${lots}
|
|
328
332
|
${webAppRows}
|
|
@@ -360,6 +364,7 @@ query getAgencies {
|
|
|
360
364
|
agencies {
|
|
361
365
|
id
|
|
362
366
|
name
|
|
367
|
+
address_line_2
|
|
363
368
|
}
|
|
364
369
|
}
|
|
365
370
|
`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zauru-sdk/graphql",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.4",
|
|
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": "78f1e67e363a88974b8b74b5c0f0637fa3782ef0"
|
|
25
25
|
}
|