@sjunepark/landprice 0.0.1 → 0.0.3
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/LICENSE.md +35 -27
- package/README.md +6 -3
- package/dist/app/get-available-years.d.ts +14 -0
- package/dist/app/get-standard-land-price-detail.d.ts +14 -0
- package/dist/app/list-areas.d.ts +14 -0
- package/dist/app/search-individual-land-prices.d.ts +14 -0
- package/dist/app/search-standard-land-prices.d.ts +14 -0
- package/dist/capabilities/get-available-years/contract.d.ts +78 -0
- package/dist/capabilities/get-available-years/execute.d.ts +7 -0
- package/dist/capabilities/get-available-years/provider.d.ts +7 -0
- package/dist/capabilities/get-standard-land-price-detail/contract.d.ts +152 -0
- package/dist/capabilities/get-standard-land-price-detail/execute.d.ts +5 -0
- package/dist/capabilities/get-standard-land-price-detail/provider.d.ts +5 -0
- package/dist/capabilities/list-areas/contract.d.ts +106 -0
- package/dist/capabilities/list-areas/execute.d.ts +5 -0
- package/dist/capabilities/list-areas/provider.d.ts +5 -0
- package/dist/capabilities/request-validation.d.ts +14 -0
- package/dist/capabilities/search-individual-land-prices/contract.d.ts +279 -0
- package/dist/capabilities/search-individual-land-prices/execute.d.ts +5 -0
- package/dist/capabilities/search-individual-land-prices/provider.d.ts +5 -0
- package/dist/capabilities/search-standard-land-prices/contract.d.ts +194 -0
- package/dist/capabilities/search-standard-land-prices/execute.d.ts +5 -0
- package/dist/capabilities/search-standard-land-prices/provider.d.ts +5 -0
- package/dist/capabilities/types.d.ts +143 -0
- package/dist/cli.js +23979 -54
- package/dist/pi-extension.d.ts +6 -0
- package/dist/pi-extension.js +21740 -0
- package/dist/pi.d.ts +33 -0
- package/dist/pi.js +21736 -0
- package/dist/sources/realtyprice/constants.d.ts +2 -0
- package/dist/sources/realtyprice/endpoints.d.ts +14 -0
- package/dist/sources/realtyprice/fetch.d.ts +2 -0
- package/dist/sources/realtyprice/metadata.d.ts +2 -0
- package/dist/sources/realtyprice/provider.d.ts +6 -0
- package/dist/sources/realtyprice/source-helpers.d.ts +19 -0
- package/dist/toolset.d.ts +216 -0
- package/dist/toolset.js +21694 -0
- package/package.json +20 -5
- package/TERMS.md +0 -38
package/dist/pi.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { type HostToolResult, type SingleToolActionInput } from "./toolset";
|
|
2
|
+
export type PiToolDefinition = {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
readonly label: string;
|
|
5
|
+
readonly description: string;
|
|
6
|
+
readonly promptSnippet: string;
|
|
7
|
+
readonly promptGuidelines: readonly string[];
|
|
8
|
+
readonly parameters: unknown;
|
|
9
|
+
readonly execute: (toolCallId: string, params: SingleToolActionInput, signal?: AbortSignal) => Promise<HostToolResult>;
|
|
10
|
+
};
|
|
11
|
+
export declare const landpricePiToolParameters: {
|
|
12
|
+
readonly type: "object";
|
|
13
|
+
readonly additionalProperties: false;
|
|
14
|
+
readonly required: readonly ["action"];
|
|
15
|
+
readonly properties: {
|
|
16
|
+
readonly action: {
|
|
17
|
+
readonly type: "string";
|
|
18
|
+
readonly enum: readonly ["help", "command_help", "validate", "run"];
|
|
19
|
+
readonly description: "Action to perform. Use help first, command_help for one operation contract, validate before execution when unsure, and run to execute.";
|
|
20
|
+
};
|
|
21
|
+
readonly command: {
|
|
22
|
+
readonly type: "string";
|
|
23
|
+
readonly enum: readonly ["get-available-years", "list-areas", "search-standard-land-prices", "search-individual-land-prices", "get-standard-land-price-detail"];
|
|
24
|
+
readonly description: "Canonical Landprice operation name. Required except for action=help.";
|
|
25
|
+
};
|
|
26
|
+
readonly inputJson: {
|
|
27
|
+
readonly type: "object";
|
|
28
|
+
readonly additionalProperties: true;
|
|
29
|
+
readonly description: "Operation input object using the semantic fields from command_help. Required for run and usually for validate.";
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
export declare const createLandpricePiTool: () => PiToolDefinition;
|