@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
|
}, {
|
package/dist/ticketops/pages.js
CHANGED
|
@@ -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
|
}];
|
|
@@ -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";
|