swoop-common 1.0.20 → 1.0.22

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 CHANGED
@@ -24,7 +24,17 @@ init({
24
24
  coreServiceUrl: 'https://your.core.service',
25
25
  swoopServiceForwardUrl: 'https://your.forward.service'
26
26
  });
27
+ ```
28
+
29
+ ## Service Interfaces
30
+
31
+ The library provides three primary service interfaces to interact with backend systems:
32
+
33
+ - **SwoopService** — Interfaces with the Swoop API.
34
+ - **ItineraryService** — For itinerary service.
35
+ - **CoreService** — For core service.
27
36
 
37
+ These interfaces offer convenient methods to work seamlessly with the underlying services required by the itinerary system.
28
38
 
29
39
  ## StyledFormView
30
40
 
package/dist/test.d.ts CHANGED
@@ -1 +1 @@
1
- declare const conv: (...objects: Array<Record<string, any>>) => Record<string, any>;
1
+ export {};
package/dist/test.js CHANGED
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  // If this throws an error, it is due to a missmatch in types between objects
3
2
  const conv = (...objects) => {
4
3
  if (objects.length === 0)
@@ -24,3 +23,4 @@ const conv = (...objects) => {
24
23
  }
25
24
  return base;
26
25
  };
26
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [