@hiennc24/constant 1.0.28 → 1.1.0
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/lib/collections.constant.d.ts +5 -1
- package/lib/collections.constant.js +592 -586
- package/lib/index.d.ts +2 -2
- package/lib/service.constant.json +4 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import SERVICE_BROKER from "./service.constant.json";
|
|
2
2
|
export default SERVICE_BROKER;
|
|
3
3
|
export type ServiceBrokerConstantType = {
|
|
4
|
-
[
|
|
4
|
+
[K in keyof typeof SERVICE_BROKER]: (typeof SERVICE_BROKER)[K];
|
|
5
5
|
};
|
|
6
|
-
export { default as COLLECTIONS, CollectionsConstantType } from
|
|
6
|
+
export { default as COLLECTIONS, CollectionsConstantType, } from "./collections.constant";
|
|
7
7
|
export declare const addLocalServices: (services: ServiceBrokerConstantType) => void;
|
|
@@ -1866,9 +1866,12 @@
|
|
|
1866
1866
|
},
|
|
1867
1867
|
"SVC_PLATFORM_VERIFY": {
|
|
1868
1868
|
"NAME": "svc-platform-integration.authorize",
|
|
1869
|
+
"LOGIN": "getAuthPlatform",
|
|
1869
1870
|
"ACTION_GET_TOKEN": "getToken",
|
|
1871
|
+
"ACTION_HANDLE_REDIRECT": "handleRedirect",
|
|
1870
1872
|
"ACTION_CREATE_TOKEN_REDIRECT": "createTokenRedirect",
|
|
1871
|
-
"
|
|
1873
|
+
"ACTION_HANDLE_REDIRECT_NO_DOMAIN": "handleRedirectNoDomain",
|
|
1874
|
+
"ACTION_CREATE_TOKEN_REDIRECT_NO_DOMAIN": "createTokenNoDomain"
|
|
1872
1875
|
},
|
|
1873
1876
|
"SVC_WEBHOOKS": {
|
|
1874
1877
|
"NAME": "svc-webhooks",
|