@opencxh/domain 1.131.0 → 1.133.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/dist/entities/activity/blocks.d.ts +109 -0
- package/dist/entities/activity/blocks.test.d.ts +1 -0
- package/dist/entities/activity/catalog.d.ts +123 -0
- package/dist/entities/activity/catalog.test.d.ts +1 -0
- package/dist/entities/activity/descriptor.d.ts +88 -0
- package/dist/entities/activity/descriptor.test.d.ts +1 -0
- package/dist/entities/activity/index.d.ts +4 -0
- package/dist/entities/activity/preview.d.ts +13 -2
- package/dist/entities/activity/resolve.d.ts +64 -0
- package/dist/entities/interaction/types.d.ts +19 -1
- package/dist/index.cjs +7 -7
- package/dist/index.js +837 -347
- package/dist/platform/sdk.d.ts +8 -1
- package/package.json +1 -1
package/dist/platform/sdk.d.ts
CHANGED
|
@@ -30,7 +30,14 @@ export interface InternalSDK<LocalServices extends ServiceMap = {}, TranslationK
|
|
|
30
30
|
get<T = any>(appName: string, resourceKey: string): Promise<T>;
|
|
31
31
|
};
|
|
32
32
|
readonly localization: {
|
|
33
|
-
|
|
33
|
+
/**
|
|
34
|
+
* Vertaal een sleutel.
|
|
35
|
+
*
|
|
36
|
+
* Zonder `:` is het een sleutel van deze app zelf. Mét `:` is hij al genamespaced
|
|
37
|
+
* (`"helpdesk:ticket.added.text"`) en wordt hij ongewijzigd opgezocht — nodig om tekst
|
|
38
|
+
* te tonen die een andere app meestuurde bij iets wat wij renderen.
|
|
39
|
+
*/
|
|
40
|
+
t(key: TranslationKeys | `${string}:${string}`, params?: Record<string, any>): string;
|
|
34
41
|
};
|
|
35
42
|
readonly ui: {
|
|
36
43
|
modals: {
|