@hobenakicoffee/libraries 8.3.0 → 8.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hobenakicoffee/libraries",
3
- "version": "8.3.0",
3
+ "version": "8.3.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "types": "src/index.ts",
@@ -4661,6 +4661,10 @@ export type Database = {
4661
4661
  Args: { p_featured_limit?: number; p_username: string };
4662
4662
  Returns: Json;
4663
4663
  };
4664
+ get_shop_order_for_payment: {
4665
+ Args: { p_order_id: string };
4666
+ Returns: Json;
4667
+ };
4664
4668
  get_shop_overview: { Args: never; Returns: Json };
4665
4669
  get_shop_policies: { Args: { p_username: string }; Returns: Json };
4666
4670
  get_shop_products: {
@@ -4827,7 +4831,11 @@ export type Database = {
4827
4831
  Returns: string;
4828
4832
  };
4829
4833
  handle_shop_payment_success: {
4830
- Args: { p_order_id: string; p_transaction_reference_id: string };
4834
+ Args: {
4835
+ p_amount: number;
4836
+ p_order_id: string;
4837
+ p_transaction_reference_id: string;
4838
+ };
4831
4839
  Returns: Json;
4832
4840
  };
4833
4841
  handle_successful_payment: {