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 +10 -0
- package/dist/test.d.ts +1 -1
- package/dist/test.js +1 -1
- package/package.json +1 -1
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
|
-
|
|
1
|
+
export {};
|
package/dist/test.js
CHANGED