agent-claw: automated task changes

This commit is contained in:
daniel
2026-05-06 18:55:16 -05:00
parent 38905bb1e9
commit 732b00fb66
8494 changed files with 2018127 additions and 4 deletions

View File

@@ -0,0 +1,24 @@
import type { IHttpApiRef } from './api';
/**
* Calculations and operations for HTTP APIs
*/
export declare class HttpApiHelper {
private readonly httpApi;
/**
* Return an `HttpApiHelper` for the given HTTP API
*/
static fromHttpApi(httpApi: IHttpApiRef): HttpApiHelper;
private constructor();
/**
* Get the "execute-api" ARN.
*
* When 'ANY' is passed to the method, an ARN with the method set to '*' is obtained.
*
* @default - The default behavior applies when no specific method, path, or stage is provided.
* In this case, the ARN will cover all methods, all resources, and all stages of this API.
* Specifically, if 'method' is not specified, it defaults to '*', representing all methods.
* If 'path' is not specified, it defaults to '/*', representing all paths.
* If 'stage' is not specified, it also defaults to '*', representing all stages.
*/
arnForExecuteApi(method?: string, path?: string, stage?: string): string;
}