@expressms/smartapp-sdk 1.0.4
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/README.md +94 -0
- package/build/main/index.d.ts +7 -0
- package/build/main/index.js +23 -0
- package/build/main/lib/contacts/index.d.ts +13 -0
- package/build/main/lib/contacts/index.js +43 -0
- package/build/main/lib/helpers/helpers.d.ts +4 -0
- package/build/main/lib/helpers/helpers.js +9 -0
- package/build/main/lib/index.d.ts +2 -0
- package/build/main/lib/index.js +17 -0
- package/build/main/lib/logging/index.d.ts +7 -0
- package/build/main/lib/logging/index.js +19 -0
- package/build/main/lib/notification/index.d.ts +2 -0
- package/build/main/lib/notification/index.js +20 -0
- package/build/main/lib/routing/index.d.ts +3 -0
- package/build/main/lib/routing/index.js +25 -0
- package/build/main/types/bridge.d.ts +10 -0
- package/build/main/types/bridge.js +15 -0
- package/build/main/types/contacts.d.ts +8 -0
- package/build/main/types/contacts.js +3 -0
- package/build/main/types/index.d.ts +2 -0
- package/build/main/types/index.js +19 -0
- package/build/main/types/routing.d.ts +4 -0
- package/build/main/types/routing.js +9 -0
- package/build/module/index.d.ts +7 -0
- package/build/module/index.js +8 -0
- package/build/module/lib/contacts/index.d.ts +13 -0
- package/build/module/lib/contacts/index.js +34 -0
- package/build/module/lib/helpers/helpers.d.ts +4 -0
- package/build/module/lib/helpers/helpers.js +6 -0
- package/build/module/lib/index.d.ts +2 -0
- package/build/module/lib/index.js +11 -0
- package/build/module/lib/logging/index.d.ts +7 -0
- package/build/module/lib/logging/index.js +12 -0
- package/build/module/lib/notification/index.d.ts +2 -0
- package/build/module/lib/notification/index.js +14 -0
- package/build/module/lib/routing/index.d.ts +3 -0
- package/build/module/lib/routing/index.js +18 -0
- package/build/module/types/bridge.d.ts +10 -0
- package/build/module/types/bridge.js +12 -0
- package/build/module/types/contacts.d.ts +8 -0
- package/build/module/types/contacts.js +2 -0
- package/build/module/types/index.d.ts +2 -0
- package/build/module/types/index.js +3 -0
- package/build/module/types/routing.d.ts +4 -0
- package/build/module/types/routing.js +6 -0
- package/build/umd/index.js +2063 -0
- package/package.json +60 -0
- package/workers/workbox.js +80 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './bridge';
|
|
2
|
+
export * from './routing';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdHlwZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxVQUFVLENBQUE7QUFDeEIsY0FBYyxXQUFXLENBQUEifQ==
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export var LOCATION;
|
|
2
|
+
(function (LOCATION) {
|
|
3
|
+
LOCATION["ROOT"] = "root";
|
|
4
|
+
LOCATION["NESTED"] = "nested";
|
|
5
|
+
})(LOCATION || (LOCATION = {}));
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm91dGluZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90eXBlcy9yb3V0aW5nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLFFBR1g7QUFIRCxXQUFZLFFBQVE7SUFDbEIseUJBQWEsQ0FBQTtJQUNiLDZCQUFpQixDQUFBO0FBQ25CLENBQUMsRUFIVyxRQUFRLEtBQVIsUUFBUSxRQUduQiJ9
|