@aws-lite/apigatewayv2-types 0.0.9 → 0.0.11

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.
Files changed (2) hide show
  1. package/index.d.ts +9 -9
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -19,55 +19,55 @@ declare interface AwsLiteAPIGatewayV2 {
19
19
  /**
20
20
  * @description
21
21
  * - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/domainnames-domainname-apimappings.html#CreateApiMapping API Gateway V2: CreateApiMapping}
22
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#CreateApiMapping API Gateway V2: CreateApiMapping}
22
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/apigatewayv2/readme.md#CreateApiMapping API Gateway V2: CreateApiMapping}
23
23
  */
24
24
  CreateApiMapping: (input: { DomainName: string, ApiId: string, ApiMappingKey?: string, Stage: string }) => Promise<CreateApiMappingResponse>
25
25
  /**
26
26
  * @description
27
27
  * - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/apis-apiid-deployments.html#CreateDeployment API Gateway V2: CreateDeployment}
28
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#CreateDeployment API Gateway V2: CreateDeployment}
28
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/apigatewayv2/readme.md#CreateDeployment API Gateway V2: CreateDeployment}
29
29
  */
30
30
  CreateDeployment: (input: { ApiId: string, Description?: string, StageName?: string }) => Promise<CreateDeploymentResponse>
31
31
  /**
32
32
  * @description
33
33
  * - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/domainnames.html#CreateDomainName API Gateway V2: CreateDomainName}
34
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#CreateDomainName API Gateway V2: CreateDomainName}
34
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/apigatewayv2/readme.md#CreateDomainName API Gateway V2: CreateDomainName}
35
35
  */
36
36
  CreateDomainName: (input: { DomainName: string, DomainNameConfigurations?: any[], MutualTlsAuthentication?: Record<string, any>, Tags?: Record<string, any> }) => Promise<CreateDomainNameResponse>
37
37
  /**
38
38
  * @description
39
39
  * - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/domainnames-domainname-apimappings-apimappingid.html#DeleteApiMapping API Gateway V2: DeleteApiMapping}
40
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#DeleteApiMapping API Gateway V2: DeleteApiMapping}
40
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/apigatewayv2/readme.md#DeleteApiMapping API Gateway V2: DeleteApiMapping}
41
41
  */
42
42
  DeleteApiMapping: (input: { ApiMappingId: string, DomainName: string }) => Promise<DeleteApiMappingResponse>
43
43
  /**
44
44
  * @description
45
45
  * - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/domainnames-domainname.html#DeleteDomainName API Gateway V2: DeleteDomainName}
46
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#DeleteDomainName API Gateway V2: DeleteDomainName}
46
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/apigatewayv2/readme.md#DeleteDomainName API Gateway V2: DeleteDomainName}
47
47
  */
48
48
  DeleteDomainName: (input: { DomainName: string }) => Promise<DeleteDomainNameResponse>
49
49
  /**
50
50
  * @description
51
51
  * - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/domainnames-domainname-apimappings.html#GetApiMappings API Gateway V2: GetApiMappings}
52
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#GetApiMappings API Gateway V2: GetApiMappings}
52
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/apigatewayv2/readme.md#GetApiMappings API Gateway V2: GetApiMappings}
53
53
  */
54
54
  GetApiMappings: (input: { DomainName: string, MaxResults?: number, NextToken?: string, paginate?: boolean | string }) => Promise<GetApiMappingsResponse>
55
55
  /**
56
56
  * @description
57
57
  * - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/apis-apiid-deployments-deploymentid.html#GetDeployment API Gateway V2: GetDeployment}
58
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#GetDeployment API Gateway V2: GetDeployment}
58
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/apigatewayv2/readme.md#GetDeployment API Gateway V2: GetDeployment}
59
59
  */
60
60
  GetDeployment: (input: { ApiId: string, NextToken?: string, MaxResults?: number }) => Promise<GetDeploymentResponse>
61
61
  /**
62
62
  * @description
63
63
  * - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/apis-apiid-deployments.html#GetDeployments API Gateway V2: GetDeployments}
64
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#GetDeployments API Gateway V2: GetDeployments}
64
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/apigatewayv2/readme.md#GetDeployments API Gateway V2: GetDeployments}
65
65
  */
66
66
  GetDeployments: (input: { ApiId: string, NextToken?: string, MaxResults?: number, paginate?: boolean | string }) => Promise<GetDeploymentsResponse>
67
67
  /**
68
68
  * @description
69
69
  * - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/apis-apiid-stages-stagename.html#UpdateStage API Gateway V2: UpdateStage}
70
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#UpdateStage API Gateway V2: UpdateStage}
70
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/apigatewayv2/readme.md#UpdateStage API Gateway V2: UpdateStage}
71
71
  */
72
72
  UpdateStage: (input: { ApiId: string, StageName: string, AccessLogSettings?: Record<string, any>, AutoDeploy?: boolean, ClientCertificateId?: string, DefaultRouteSettings?: Record<string, any>, DeploymentId?: string, Description?: string, RouteSettings?: Record<string, any>, StageVariables?: Record<string, any> }) => Promise<UpdateStageResponse>
73
73
  // $METHODS_END
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@aws-lite/apigatewayv2-types",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "Type definitions for the `@aws-lite/apigatewayv2` plugin",
5
5
  "homepage": "https://aws-lite.org/services/apigatewayv2",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/architect/aws-lite.git",
8
+ "url": "git+https://github.com/aws-lite/aws-lite.git",
9
9
  "directory": "plugins/apigatewayv2/types"
10
10
  },
11
- "bugs": "https://github.com/architect/aws-lite/issues",
11
+ "bugs": "https://github.com/aws-lite/aws-lite/issues",
12
12
  "main": "",
13
13
  "engines": {
14
14
  "node": ">=16"