@connect-plus-online/ogabai-integrations 0.0.107 → 0.0.109

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/dist/index.d.mts CHANGED
@@ -408,6 +408,7 @@ type Transaction = {
408
408
  narration: string;
409
409
  expenseReceiptUrl: string;
410
410
  parentTransactionId: string;
411
+ returnedStockIds: string[];
411
412
  };
412
413
  type OrderStatus = "pending" | "processing" | "routing" | "delivered";
413
414
  type Order = {
package/dist/index.d.ts CHANGED
@@ -408,6 +408,7 @@ type Transaction = {
408
408
  narration: string;
409
409
  expenseReceiptUrl: string;
410
410
  parentTransactionId: string;
411
+ returnedStockIds: string[];
411
412
  };
412
413
  type OrderStatus = "pending" | "processing" | "routing" | "delivered";
413
414
  type Order = {
package/dist/index.esm.js CHANGED
@@ -2812,7 +2812,7 @@ var stockSchema = {
2812
2812
  `,
2813
2813
  getStocks: (query) => `
2814
2814
  query getStocks($stock: StockInput, $stockIds: [String], $limit: Int!, $skip: Int!) {
2815
- stocks(stock: $stock, stockIds: $stockIds, limit: $limit, skip: $skip) {
2815
+ getStocks(stock: $stock, stockIds: $stockIds, limit: $limit, skip: $skip) {
2816
2816
  ${query}
2817
2817
  }
2818
2818
  }
@@ -3336,7 +3336,8 @@ var transactionQuery = [
3336
3336
  "expenseId",
3337
3337
  "expenseReceiptUrl",
3338
3338
  "narration",
3339
- "parentTransactionId"
3339
+ "parentTransactionId",
3340
+ "returnedStockIds"
3340
3341
  ];
3341
3342
  var orderQuery = [
3342
3343
  "_id",