@epilot/customer-portal-client 0.19.2-rc.6 → 0.19.3
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/dist/definition.js +1 -1
- package/dist/openapi.d.ts +12 -0
- package/package.json +1 -1
- package/src/openapi.json +7 -0
package/dist/openapi.d.ts
CHANGED
|
@@ -3649,6 +3649,12 @@ declare namespace Components {
|
|
|
3649
3649
|
* Configured Portal extensions
|
|
3650
3650
|
*/
|
|
3651
3651
|
extensions?: ExtensionConfig[];
|
|
3652
|
+
/**
|
|
3653
|
+
* Configured Portal extensions hooks
|
|
3654
|
+
*/
|
|
3655
|
+
extension_hooks?: {
|
|
3656
|
+
[name: string]: ExtensionHookConfig;
|
|
3657
|
+
};
|
|
3652
3658
|
/**
|
|
3653
3659
|
* Default 360 user to notify upon an internal notification
|
|
3654
3660
|
*/
|
|
@@ -3685,6 +3691,12 @@ declare namespace Components {
|
|
|
3685
3691
|
* Configured Portal extensions
|
|
3686
3692
|
*/
|
|
3687
3693
|
extensions?: ExtensionConfig[];
|
|
3694
|
+
/**
|
|
3695
|
+
* Configured Portal extensions hooks
|
|
3696
|
+
*/
|
|
3697
|
+
extension_hooks?: {
|
|
3698
|
+
[name: string]: ExtensionHookConfig;
|
|
3699
|
+
};
|
|
3688
3700
|
/**
|
|
3689
3701
|
* Default 360 user to notify upon an internal notification
|
|
3690
3702
|
*/
|
package/package.json
CHANGED
package/src/openapi.json
CHANGED
|
@@ -5961,6 +5961,13 @@
|
|
|
5961
5961
|
"$ref": "#/components/schemas/ExtensionConfig"
|
|
5962
5962
|
}
|
|
5963
5963
|
},
|
|
5964
|
+
"extension_hooks": {
|
|
5965
|
+
"type": "object",
|
|
5966
|
+
"description": "Configured Portal extensions hooks",
|
|
5967
|
+
"additionalProperties": {
|
|
5968
|
+
"$ref": "#/components/schemas/ExtensionHookConfig"
|
|
5969
|
+
}
|
|
5970
|
+
},
|
|
5964
5971
|
"default_user_to_notify": {
|
|
5965
5972
|
"type": "object",
|
|
5966
5973
|
"description": "Default 360 user to notify upon an internal notification",
|