@kanda-libs/ks-component-ts 0.3.108 → 0.3.109
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/index.d.ts +15049 -15043
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +3 -3
- package/package.json +1 -1
- package/src/generated/components/schemas/TradeSummary.ts +2 -0
- package/src/generated/operations/providerCheckWebhook.ts +2 -1
- package/src/generated/operations/providerWebhook.ts +2 -1
- package/src/generated/widget/index.tsx +68475 -68427
package/package.json
CHANGED
|
@@ -12,6 +12,7 @@ export const TradeSummary = t.partial({
|
|
|
12
12
|
work_types: t.array(WorkType),
|
|
13
13
|
lat_lng: LatLng,
|
|
14
14
|
distance: t.number,
|
|
15
|
+
landing_url: t.string,
|
|
15
16
|
});
|
|
16
17
|
|
|
17
18
|
export interface TradeSummary {
|
|
@@ -22,4 +23,5 @@ export interface TradeSummary {
|
|
|
22
23
|
work_types?: Array<WorkType>;
|
|
23
24
|
lat_lng?: LatLng;
|
|
24
25
|
distance?: number;
|
|
26
|
+
landing_url?: string;
|
|
25
27
|
}
|