@ibiliaze/global-vars 1.289.0 → 1.289.2

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.
@@ -218,6 +218,9 @@ export declare const pages: {
218
218
  readonly path: "/admin/settings";
219
219
  readonly name: "Settings";
220
220
  readonly subPages: readonly [{
221
+ readonly name: "Payments";
222
+ readonly path: "/payments";
223
+ }, {
221
224
  readonly name: "Backup";
222
225
  readonly path: "/backup";
223
226
  }, {
@@ -123,6 +123,7 @@ exports.pages = {
123
123
  path: '/admin/settings',
124
124
  name: 'Settings',
125
125
  subPages: [
126
+ { name: 'Payments', path: '/payments' },
126
127
  { name: 'Backup', path: '/backup' },
127
128
  { name: 'Sessions', path: '/sessions' },
128
129
  { name: 'Logs', path: '/logs' },
@@ -22,4 +22,13 @@ export declare const checkoutRoleDefs: readonly [{
22
22
  message: string;
23
23
  redirectPath?: string;
24
24
  };
25
+ }, {
26
+ readonly method: "get";
27
+ readonly path: "/checkout/result";
28
+ readonly role: "getCheckoutResult";
29
+ readonly name: "Get checkout result";
30
+ readonly response_200: {
31
+ result: string;
32
+ message: string;
33
+ };
25
34
  }];
@@ -17,4 +17,11 @@ exports.checkoutRoleDefs = [
17
17
  name: 'Handle checkout',
18
18
  response_200: {},
19
19
  },
20
+ {
21
+ method: 'get',
22
+ path: '/checkout/result',
23
+ role: 'getCheckoutResult',
24
+ name: 'Get checkout result',
25
+ response_200: {},
26
+ },
20
27
  ];
@@ -2925,6 +2925,15 @@ export declare const apis: <TId, TDate>() => readonly [{
2925
2925
  message: string;
2926
2926
  redirectPath?: string;
2927
2927
  };
2928
+ }, {
2929
+ readonly method: "get";
2930
+ readonly path: "/checkout/result";
2931
+ readonly role: "getCheckoutResult";
2932
+ readonly name: "Get checkout result";
2933
+ readonly response_200: {
2934
+ result: string;
2935
+ message: string;
2936
+ };
2928
2937
  }, {
2929
2938
  readonly method: "post";
2930
2939
  readonly path: "/util/file/upload/:id";
@@ -5894,6 +5903,15 @@ declare const allApis: readonly [{
5894
5903
  message: string;
5895
5904
  redirectPath?: string;
5896
5905
  };
5906
+ }, {
5907
+ readonly method: "get";
5908
+ readonly path: "/checkout/result";
5909
+ readonly role: "getCheckoutResult";
5910
+ readonly name: "Get checkout result";
5911
+ readonly response_200: {
5912
+ result: string;
5913
+ message: string;
5914
+ };
5897
5915
  }, {
5898
5916
  readonly method: "post";
5899
5917
  readonly path: "/util/file/upload/:id";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiliaze/global-vars",
3
- "version": "1.289.0",
3
+ "version": "1.289.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": false,