@tap-payments/os-micro-frontend-shared 0.1.266 → 0.1.268
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.
|
@@ -193,6 +193,24 @@ export declare const APP_CODES: {
|
|
|
193
193
|
intents: {
|
|
194
194
|
code: string;
|
|
195
195
|
functions: {
|
|
196
|
+
flagBalance: {
|
|
197
|
+
code: string;
|
|
198
|
+
};
|
|
199
|
+
releaseBalance: {
|
|
200
|
+
code: string;
|
|
201
|
+
};
|
|
202
|
+
charge: {
|
|
203
|
+
code: string;
|
|
204
|
+
};
|
|
205
|
+
flag: {
|
|
206
|
+
code: string;
|
|
207
|
+
};
|
|
208
|
+
releaseFlag: {
|
|
209
|
+
code: string;
|
|
210
|
+
};
|
|
211
|
+
createCharge: {
|
|
212
|
+
code: string;
|
|
213
|
+
};
|
|
196
214
|
view: {
|
|
197
215
|
code: string;
|
|
198
216
|
};
|
package/build/constants/apps.js
CHANGED
|
@@ -81,7 +81,19 @@ export const APP_CODES = {
|
|
|
81
81
|
},
|
|
82
82
|
intents: {
|
|
83
83
|
code: 'INTENTS',
|
|
84
|
-
functions: Object.assign({}, SERVICE_COMMON_FUNCTIONS),
|
|
84
|
+
functions: Object.assign(Object.assign({}, SERVICE_COMMON_FUNCTIONS), { flagBalance: {
|
|
85
|
+
code: 'FLAG BALANCE',
|
|
86
|
+
}, releaseBalance: {
|
|
87
|
+
code: 'RELEASE BALANCE',
|
|
88
|
+
}, charge: {
|
|
89
|
+
code: 'CHARGE',
|
|
90
|
+
}, flag: {
|
|
91
|
+
code: 'FLAG',
|
|
92
|
+
}, releaseFlag: {
|
|
93
|
+
code: 'RELEASE FLAG',
|
|
94
|
+
}, createCharge: {
|
|
95
|
+
code: 'CREATE_CHARGE',
|
|
96
|
+
} }),
|
|
85
97
|
},
|
|
86
98
|
authorization: {
|
|
87
99
|
code: 'AUTHORIZATIONS',
|
package/package.json
CHANGED