@aws-sdk/client-invoicing 3.703.0

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 (127) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +293 -0
  3. package/dist-cjs/Invoicing.js +29 -0
  4. package/dist-cjs/InvoicingClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/BatchGetInvoiceProfileCommand.js +27 -0
  8. package/dist-cjs/commands/CreateInvoiceUnitCommand.js +26 -0
  9. package/dist-cjs/commands/DeleteInvoiceUnitCommand.js +26 -0
  10. package/dist-cjs/commands/GetInvoiceUnitCommand.js +26 -0
  11. package/dist-cjs/commands/ListInvoiceUnitsCommand.js +26 -0
  12. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  13. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  14. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  15. package/dist-cjs/commands/UpdateInvoiceUnitCommand.js +26 -0
  16. package/dist-cjs/commands/index.js +12 -0
  17. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  18. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  19. package/dist-cjs/endpoint/ruleset.js +7 -0
  20. package/dist-cjs/extensionConfiguration.js +2 -0
  21. package/dist-cjs/index.js +11 -0
  22. package/dist-cjs/models/InvoicingServiceException.js +12 -0
  23. package/dist-cjs/models/index.js +4 -0
  24. package/dist-cjs/models/models_0.js +121 -0
  25. package/dist-cjs/pagination/Interfaces.js +2 -0
  26. package/dist-cjs/pagination/ListInvoiceUnitsPaginator.js +7 -0
  27. package/dist-cjs/pagination/index.js +5 -0
  28. package/dist-cjs/protocols/Aws_json1_0.js +367 -0
  29. package/dist-cjs/runtimeConfig.browser.js +39 -0
  30. package/dist-cjs/runtimeConfig.js +50 -0
  31. package/dist-cjs/runtimeConfig.native.js +15 -0
  32. package/dist-cjs/runtimeConfig.shared.js +34 -0
  33. package/dist-cjs/runtimeExtensions.js +25 -0
  34. package/dist-es/Invoicing.js +25 -0
  35. package/dist-es/InvoicingClient.js +46 -0
  36. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  37. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  38. package/dist-es/commands/BatchGetInvoiceProfileCommand.js +23 -0
  39. package/dist-es/commands/CreateInvoiceUnitCommand.js +22 -0
  40. package/dist-es/commands/DeleteInvoiceUnitCommand.js +22 -0
  41. package/dist-es/commands/GetInvoiceUnitCommand.js +22 -0
  42. package/dist-es/commands/ListInvoiceUnitsCommand.js +22 -0
  43. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  44. package/dist-es/commands/TagResourceCommand.js +22 -0
  45. package/dist-es/commands/UntagResourceCommand.js +22 -0
  46. package/dist-es/commands/UpdateInvoiceUnitCommand.js +22 -0
  47. package/dist-es/commands/index.js +9 -0
  48. package/dist-es/endpoint/EndpointParameters.js +12 -0
  49. package/dist-es/endpoint/endpointResolver.js +14 -0
  50. package/dist-es/endpoint/ruleset.js +4 -0
  51. package/dist-es/extensionConfiguration.js +1 -0
  52. package/dist-es/index.js +6 -0
  53. package/dist-es/models/InvoicingServiceException.js +8 -0
  54. package/dist-es/models/index.js +1 -0
  55. package/dist-es/models/models_0.js +109 -0
  56. package/dist-es/pagination/Interfaces.js +1 -0
  57. package/dist-es/pagination/ListInvoiceUnitsPaginator.js +4 -0
  58. package/dist-es/pagination/index.js +2 -0
  59. package/dist-es/protocols/Aws_json1_0.js +346 -0
  60. package/dist-es/runtimeConfig.browser.js +34 -0
  61. package/dist-es/runtimeConfig.js +45 -0
  62. package/dist-es/runtimeConfig.native.js +11 -0
  63. package/dist-es/runtimeConfig.shared.js +30 -0
  64. package/dist-es/runtimeExtensions.js +21 -0
  65. package/dist-types/Invoicing.d.ts +90 -0
  66. package/dist-types/InvoicingClient.d.ts +194 -0
  67. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  68. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  69. package/dist-types/commands/BatchGetInvoiceProfileCommand.d.ts +111 -0
  70. package/dist-types/commands/CreateInvoiceUnitCommand.d.ts +100 -0
  71. package/dist-types/commands/DeleteInvoiceUnitCommand.d.ts +91 -0
  72. package/dist-types/commands/GetInvoiceUnitCommand.d.ts +101 -0
  73. package/dist-types/commands/ListInvoiceUnitsCommand.d.ts +114 -0
  74. package/dist-types/commands/ListTagsForResourceCommand.d.ts +96 -0
  75. package/dist-types/commands/TagResourceCommand.d.ts +99 -0
  76. package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
  77. package/dist-types/commands/UpdateInvoiceUnitCommand.d.ts +97 -0
  78. package/dist-types/commands/index.d.ts +9 -0
  79. package/dist-types/endpoint/EndpointParameters.d.ts +34 -0
  80. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  81. package/dist-types/endpoint/ruleset.d.ts +2 -0
  82. package/dist-types/extensionConfiguration.d.ts +9 -0
  83. package/dist-types/index.d.ts +30 -0
  84. package/dist-types/models/InvoicingServiceException.d.ts +14 -0
  85. package/dist-types/models/index.d.ts +1 -0
  86. package/dist-types/models/models_0.d.ts +742 -0
  87. package/dist-types/pagination/Interfaces.d.ts +8 -0
  88. package/dist-types/pagination/ListInvoiceUnitsPaginator.d.ts +7 -0
  89. package/dist-types/pagination/index.d.ts +2 -0
  90. package/dist-types/protocols/Aws_json1_0.d.ts +83 -0
  91. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  92. package/dist-types/runtimeConfig.d.ts +48 -0
  93. package/dist-types/runtimeConfig.native.d.ts +47 -0
  94. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  95. package/dist-types/runtimeExtensions.d.ts +17 -0
  96. package/dist-types/ts3.4/Invoicing.d.ts +159 -0
  97. package/dist-types/ts3.4/InvoicingClient.d.ts +172 -0
  98. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  99. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  100. package/dist-types/ts3.4/commands/BatchGetInvoiceProfileCommand.d.ts +51 -0
  101. package/dist-types/ts3.4/commands/CreateInvoiceUnitCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/DeleteInvoiceUnitCommand.d.ts +51 -0
  103. package/dist-types/ts3.4/commands/GetInvoiceUnitCommand.d.ts +50 -0
  104. package/dist-types/ts3.4/commands/ListInvoiceUnitsCommand.d.ts +50 -0
  105. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  107. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  108. package/dist-types/ts3.4/commands/UpdateInvoiceUnitCommand.d.ts +51 -0
  109. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  110. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  111. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  112. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  113. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  114. package/dist-types/ts3.4/index.d.ts +9 -0
  115. package/dist-types/ts3.4/models/InvoicingServiceException.d.ts +9 -0
  116. package/dist-types/ts3.4/models/index.d.ts +1 -0
  117. package/dist-types/ts3.4/models/models_0.d.ts +192 -0
  118. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  119. package/dist-types/ts3.4/pagination/ListInvoiceUnitsPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  121. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +113 -0
  122. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
  123. package/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
  124. package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
  125. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  126. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  127. package/package.json +101 -0
@@ -0,0 +1,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { InvoicingClient } from "../InvoicingClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface InvoicingPaginationConfiguration extends PaginationConfiguration {
7
+ client: InvoicingClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListInvoiceUnitsCommandInput, ListInvoiceUnitsCommandOutput } from "../commands/ListInvoiceUnitsCommand";
3
+ import { InvoicingPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListInvoiceUnits: (config: InvoicingPaginationConfiguration, input: ListInvoiceUnitsCommandInput, ...rest: any[]) => Paginator<ListInvoiceUnitsCommandOutput>;
@@ -0,0 +1,2 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListInvoiceUnitsPaginator";
@@ -0,0 +1,83 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { BatchGetInvoiceProfileCommandInput, BatchGetInvoiceProfileCommandOutput } from "../commands/BatchGetInvoiceProfileCommand";
4
+ import { CreateInvoiceUnitCommandInput, CreateInvoiceUnitCommandOutput } from "../commands/CreateInvoiceUnitCommand";
5
+ import { DeleteInvoiceUnitCommandInput, DeleteInvoiceUnitCommandOutput } from "../commands/DeleteInvoiceUnitCommand";
6
+ import { GetInvoiceUnitCommandInput, GetInvoiceUnitCommandOutput } from "../commands/GetInvoiceUnitCommand";
7
+ import { ListInvoiceUnitsCommandInput, ListInvoiceUnitsCommandOutput } from "../commands/ListInvoiceUnitsCommand";
8
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
9
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
10
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
11
+ import { UpdateInvoiceUnitCommandInput, UpdateInvoiceUnitCommandOutput } from "../commands/UpdateInvoiceUnitCommand";
12
+ /**
13
+ * serializeAws_json1_0BatchGetInvoiceProfileCommand
14
+ */
15
+ export declare const se_BatchGetInvoiceProfileCommand: (input: BatchGetInvoiceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
+ /**
17
+ * serializeAws_json1_0CreateInvoiceUnitCommand
18
+ */
19
+ export declare const se_CreateInvoiceUnitCommand: (input: CreateInvoiceUnitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ /**
21
+ * serializeAws_json1_0DeleteInvoiceUnitCommand
22
+ */
23
+ export declare const se_DeleteInvoiceUnitCommand: (input: DeleteInvoiceUnitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ /**
25
+ * serializeAws_json1_0GetInvoiceUnitCommand
26
+ */
27
+ export declare const se_GetInvoiceUnitCommand: (input: GetInvoiceUnitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ /**
29
+ * serializeAws_json1_0ListInvoiceUnitsCommand
30
+ */
31
+ export declare const se_ListInvoiceUnitsCommand: (input: ListInvoiceUnitsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ /**
33
+ * serializeAws_json1_0ListTagsForResourceCommand
34
+ */
35
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ /**
37
+ * serializeAws_json1_0TagResourceCommand
38
+ */
39
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
+ /**
41
+ * serializeAws_json1_0UntagResourceCommand
42
+ */
43
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
+ /**
45
+ * serializeAws_json1_0UpdateInvoiceUnitCommand
46
+ */
47
+ export declare const se_UpdateInvoiceUnitCommand: (input: UpdateInvoiceUnitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ /**
49
+ * deserializeAws_json1_0BatchGetInvoiceProfileCommand
50
+ */
51
+ export declare const de_BatchGetInvoiceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetInvoiceProfileCommandOutput>;
52
+ /**
53
+ * deserializeAws_json1_0CreateInvoiceUnitCommand
54
+ */
55
+ export declare const de_CreateInvoiceUnitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInvoiceUnitCommandOutput>;
56
+ /**
57
+ * deserializeAws_json1_0DeleteInvoiceUnitCommand
58
+ */
59
+ export declare const de_DeleteInvoiceUnitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteInvoiceUnitCommandOutput>;
60
+ /**
61
+ * deserializeAws_json1_0GetInvoiceUnitCommand
62
+ */
63
+ export declare const de_GetInvoiceUnitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInvoiceUnitCommandOutput>;
64
+ /**
65
+ * deserializeAws_json1_0ListInvoiceUnitsCommand
66
+ */
67
+ export declare const de_ListInvoiceUnitsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInvoiceUnitsCommandOutput>;
68
+ /**
69
+ * deserializeAws_json1_0ListTagsForResourceCommand
70
+ */
71
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
72
+ /**
73
+ * deserializeAws_json1_0TagResourceCommand
74
+ */
75
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
76
+ /**
77
+ * deserializeAws_json1_0UntagResourceCommand
78
+ */
79
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
80
+ /**
81
+ * deserializeAws_json1_0UpdateInvoiceUnitCommand
82
+ */
83
+ export declare const de_UpdateInvoiceUnitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateInvoiceUnitCommandOutput>;
@@ -0,0 +1,48 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { InvoicingClientConfig } from "./InvoicingClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: InvoicingClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: string | Uint8Array) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: string | Uint8Array) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ logger: import("@smithy/types").Logger;
30
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
31
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger | undefined;
37
+ }) => import("@smithy/types").EndpointV2;
38
+ tls?: boolean | undefined;
39
+ serviceConfiguredEndpoint?: undefined;
40
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
41
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").InvoicingHttpAuthSchemeProvider;
42
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
43
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
44
+ signingEscapePath?: boolean | undefined;
45
+ systemClockOffset?: number | undefined;
46
+ signingRegion?: string | undefined;
47
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
48
+ };
@@ -0,0 +1,48 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { InvoicingClientConfig } from "./InvoicingClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: InvoicingClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
21
+ apiVersion: string;
22
+ cacheMiddleware?: boolean | undefined;
23
+ urlParser: import("@smithy/types").UrlParser;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: (_input: string | Uint8Array) => string;
26
+ utf8Decoder: import("@smithy/types").Decoder;
27
+ utf8Encoder: (input: string | Uint8Array) => string;
28
+ disableHostPrefix: boolean;
29
+ serviceId: string;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger | undefined;
37
+ }) => import("@smithy/types").EndpointV2;
38
+ tls?: boolean | undefined;
39
+ serviceConfiguredEndpoint?: undefined;
40
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
41
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").InvoicingHttpAuthSchemeProvider;
42
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
43
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
44
+ signingEscapePath?: boolean | undefined;
45
+ systemClockOffset?: number | undefined;
46
+ signingRegion?: string | undefined;
47
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
48
+ };
@@ -0,0 +1,47 @@
1
+ import { InvoicingClientConfig } from "./InvoicingClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: InvoicingClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean | undefined;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: string | Uint8Array) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: string | Uint8Array) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
24
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
+ maxAttempts: number | import("@smithy/types").Provider<number>;
26
+ retryMode: string | import("@smithy/types").Provider<string>;
27
+ logger: import("@smithy/types").Logger;
28
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
29
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
30
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
31
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
32
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
33
+ endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
37
+ tls?: boolean | undefined;
38
+ serviceConfiguredEndpoint?: undefined;
39
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
40
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").InvoicingHttpAuthSchemeProvider;
41
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
42
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
43
+ signingEscapePath?: boolean | undefined;
44
+ systemClockOffset?: number | undefined;
45
+ signingRegion?: string | undefined;
46
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
47
+ };
@@ -0,0 +1,21 @@
1
+ import { InvoicingClientConfig } from "./InvoicingClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: InvoicingClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").InvoicingHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
+ };
@@ -0,0 +1,17 @@
1
+ import { InvoicingExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: InvoicingExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,159 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ BatchGetInvoiceProfileCommandInput,
4
+ BatchGetInvoiceProfileCommandOutput,
5
+ } from "./commands/BatchGetInvoiceProfileCommand";
6
+ import {
7
+ CreateInvoiceUnitCommandInput,
8
+ CreateInvoiceUnitCommandOutput,
9
+ } from "./commands/CreateInvoiceUnitCommand";
10
+ import {
11
+ DeleteInvoiceUnitCommandInput,
12
+ DeleteInvoiceUnitCommandOutput,
13
+ } from "./commands/DeleteInvoiceUnitCommand";
14
+ import {
15
+ GetInvoiceUnitCommandInput,
16
+ GetInvoiceUnitCommandOutput,
17
+ } from "./commands/GetInvoiceUnitCommand";
18
+ import {
19
+ ListInvoiceUnitsCommandInput,
20
+ ListInvoiceUnitsCommandOutput,
21
+ } from "./commands/ListInvoiceUnitsCommand";
22
+ import {
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ } from "./commands/ListTagsForResourceCommand";
26
+ import {
27
+ TagResourceCommandInput,
28
+ TagResourceCommandOutput,
29
+ } from "./commands/TagResourceCommand";
30
+ import {
31
+ UntagResourceCommandInput,
32
+ UntagResourceCommandOutput,
33
+ } from "./commands/UntagResourceCommand";
34
+ import {
35
+ UpdateInvoiceUnitCommandInput,
36
+ UpdateInvoiceUnitCommandOutput,
37
+ } from "./commands/UpdateInvoiceUnitCommand";
38
+ import { InvoicingClient } from "./InvoicingClient";
39
+ export interface Invoicing {
40
+ batchGetInvoiceProfile(
41
+ args: BatchGetInvoiceProfileCommandInput,
42
+ options?: __HttpHandlerOptions
43
+ ): Promise<BatchGetInvoiceProfileCommandOutput>;
44
+ batchGetInvoiceProfile(
45
+ args: BatchGetInvoiceProfileCommandInput,
46
+ cb: (err: any, data?: BatchGetInvoiceProfileCommandOutput) => void
47
+ ): void;
48
+ batchGetInvoiceProfile(
49
+ args: BatchGetInvoiceProfileCommandInput,
50
+ options: __HttpHandlerOptions,
51
+ cb: (err: any, data?: BatchGetInvoiceProfileCommandOutput) => void
52
+ ): void;
53
+ createInvoiceUnit(
54
+ args: CreateInvoiceUnitCommandInput,
55
+ options?: __HttpHandlerOptions
56
+ ): Promise<CreateInvoiceUnitCommandOutput>;
57
+ createInvoiceUnit(
58
+ args: CreateInvoiceUnitCommandInput,
59
+ cb: (err: any, data?: CreateInvoiceUnitCommandOutput) => void
60
+ ): void;
61
+ createInvoiceUnit(
62
+ args: CreateInvoiceUnitCommandInput,
63
+ options: __HttpHandlerOptions,
64
+ cb: (err: any, data?: CreateInvoiceUnitCommandOutput) => void
65
+ ): void;
66
+ deleteInvoiceUnit(
67
+ args: DeleteInvoiceUnitCommandInput,
68
+ options?: __HttpHandlerOptions
69
+ ): Promise<DeleteInvoiceUnitCommandOutput>;
70
+ deleteInvoiceUnit(
71
+ args: DeleteInvoiceUnitCommandInput,
72
+ cb: (err: any, data?: DeleteInvoiceUnitCommandOutput) => void
73
+ ): void;
74
+ deleteInvoiceUnit(
75
+ args: DeleteInvoiceUnitCommandInput,
76
+ options: __HttpHandlerOptions,
77
+ cb: (err: any, data?: DeleteInvoiceUnitCommandOutput) => void
78
+ ): void;
79
+ getInvoiceUnit(
80
+ args: GetInvoiceUnitCommandInput,
81
+ options?: __HttpHandlerOptions
82
+ ): Promise<GetInvoiceUnitCommandOutput>;
83
+ getInvoiceUnit(
84
+ args: GetInvoiceUnitCommandInput,
85
+ cb: (err: any, data?: GetInvoiceUnitCommandOutput) => void
86
+ ): void;
87
+ getInvoiceUnit(
88
+ args: GetInvoiceUnitCommandInput,
89
+ options: __HttpHandlerOptions,
90
+ cb: (err: any, data?: GetInvoiceUnitCommandOutput) => void
91
+ ): void;
92
+ listInvoiceUnits(): Promise<ListInvoiceUnitsCommandOutput>;
93
+ listInvoiceUnits(
94
+ args: ListInvoiceUnitsCommandInput,
95
+ options?: __HttpHandlerOptions
96
+ ): Promise<ListInvoiceUnitsCommandOutput>;
97
+ listInvoiceUnits(
98
+ args: ListInvoiceUnitsCommandInput,
99
+ cb: (err: any, data?: ListInvoiceUnitsCommandOutput) => void
100
+ ): void;
101
+ listInvoiceUnits(
102
+ args: ListInvoiceUnitsCommandInput,
103
+ options: __HttpHandlerOptions,
104
+ cb: (err: any, data?: ListInvoiceUnitsCommandOutput) => void
105
+ ): void;
106
+ listTagsForResource(
107
+ args: ListTagsForResourceCommandInput,
108
+ options?: __HttpHandlerOptions
109
+ ): Promise<ListTagsForResourceCommandOutput>;
110
+ listTagsForResource(
111
+ args: ListTagsForResourceCommandInput,
112
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
113
+ ): void;
114
+ listTagsForResource(
115
+ args: ListTagsForResourceCommandInput,
116
+ options: __HttpHandlerOptions,
117
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
118
+ ): void;
119
+ tagResource(
120
+ args: TagResourceCommandInput,
121
+ options?: __HttpHandlerOptions
122
+ ): Promise<TagResourceCommandOutput>;
123
+ tagResource(
124
+ args: TagResourceCommandInput,
125
+ cb: (err: any, data?: TagResourceCommandOutput) => void
126
+ ): void;
127
+ tagResource(
128
+ args: TagResourceCommandInput,
129
+ options: __HttpHandlerOptions,
130
+ cb: (err: any, data?: TagResourceCommandOutput) => void
131
+ ): void;
132
+ untagResource(
133
+ args: UntagResourceCommandInput,
134
+ options?: __HttpHandlerOptions
135
+ ): Promise<UntagResourceCommandOutput>;
136
+ untagResource(
137
+ args: UntagResourceCommandInput,
138
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
139
+ ): void;
140
+ untagResource(
141
+ args: UntagResourceCommandInput,
142
+ options: __HttpHandlerOptions,
143
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
144
+ ): void;
145
+ updateInvoiceUnit(
146
+ args: UpdateInvoiceUnitCommandInput,
147
+ options?: __HttpHandlerOptions
148
+ ): Promise<UpdateInvoiceUnitCommandOutput>;
149
+ updateInvoiceUnit(
150
+ args: UpdateInvoiceUnitCommandInput,
151
+ cb: (err: any, data?: UpdateInvoiceUnitCommandOutput) => void
152
+ ): void;
153
+ updateInvoiceUnit(
154
+ args: UpdateInvoiceUnitCommandInput,
155
+ options: __HttpHandlerOptions,
156
+ cb: (err: any, data?: UpdateInvoiceUnitCommandOutput) => void
157
+ ): void;
158
+ }
159
+ export declare class Invoicing extends InvoicingClient implements Invoicing {}
@@ -0,0 +1,172 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ BatchGetInvoiceProfileCommandInput,
50
+ BatchGetInvoiceProfileCommandOutput,
51
+ } from "./commands/BatchGetInvoiceProfileCommand";
52
+ import {
53
+ CreateInvoiceUnitCommandInput,
54
+ CreateInvoiceUnitCommandOutput,
55
+ } from "./commands/CreateInvoiceUnitCommand";
56
+ import {
57
+ DeleteInvoiceUnitCommandInput,
58
+ DeleteInvoiceUnitCommandOutput,
59
+ } from "./commands/DeleteInvoiceUnitCommand";
60
+ import {
61
+ GetInvoiceUnitCommandInput,
62
+ GetInvoiceUnitCommandOutput,
63
+ } from "./commands/GetInvoiceUnitCommand";
64
+ import {
65
+ ListInvoiceUnitsCommandInput,
66
+ ListInvoiceUnitsCommandOutput,
67
+ } from "./commands/ListInvoiceUnitsCommand";
68
+ import {
69
+ ListTagsForResourceCommandInput,
70
+ ListTagsForResourceCommandOutput,
71
+ } from "./commands/ListTagsForResourceCommand";
72
+ import {
73
+ TagResourceCommandInput,
74
+ TagResourceCommandOutput,
75
+ } from "./commands/TagResourceCommand";
76
+ import {
77
+ UntagResourceCommandInput,
78
+ UntagResourceCommandOutput,
79
+ } from "./commands/UntagResourceCommand";
80
+ import {
81
+ UpdateInvoiceUnitCommandInput,
82
+ UpdateInvoiceUnitCommandOutput,
83
+ } from "./commands/UpdateInvoiceUnitCommand";
84
+ import {
85
+ ClientInputEndpointParameters,
86
+ ClientResolvedEndpointParameters,
87
+ EndpointParameters,
88
+ } from "./endpoint/EndpointParameters";
89
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
90
+ export { __Client };
91
+ export type ServiceInputTypes =
92
+ | BatchGetInvoiceProfileCommandInput
93
+ | CreateInvoiceUnitCommandInput
94
+ | DeleteInvoiceUnitCommandInput
95
+ | GetInvoiceUnitCommandInput
96
+ | ListInvoiceUnitsCommandInput
97
+ | ListTagsForResourceCommandInput
98
+ | TagResourceCommandInput
99
+ | UntagResourceCommandInput
100
+ | UpdateInvoiceUnitCommandInput;
101
+ export type ServiceOutputTypes =
102
+ | BatchGetInvoiceProfileCommandOutput
103
+ | CreateInvoiceUnitCommandOutput
104
+ | DeleteInvoiceUnitCommandOutput
105
+ | GetInvoiceUnitCommandOutput
106
+ | ListInvoiceUnitsCommandOutput
107
+ | ListTagsForResourceCommandOutput
108
+ | TagResourceCommandOutput
109
+ | UntagResourceCommandOutput
110
+ | UpdateInvoiceUnitCommandOutput;
111
+ export interface ClientDefaults
112
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
113
+ requestHandler?: __HttpHandlerUserInput;
114
+ sha256?: __ChecksumConstructor | __HashConstructor;
115
+ urlParser?: __UrlParser;
116
+ bodyLengthChecker?: __BodyLengthCalculator;
117
+ streamCollector?: __StreamCollector;
118
+ base64Decoder?: __Decoder;
119
+ base64Encoder?: __Encoder;
120
+ utf8Decoder?: __Decoder;
121
+ utf8Encoder?: __Encoder;
122
+ runtime?: string;
123
+ disableHostPrefix?: boolean;
124
+ serviceId?: string;
125
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
126
+ useFipsEndpoint?: boolean | __Provider<boolean>;
127
+ region?: string | __Provider<string>;
128
+ defaultUserAgentProvider?: Provider<__UserAgent>;
129
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
130
+ maxAttempts?: number | __Provider<number>;
131
+ retryMode?: string | __Provider<string>;
132
+ logger?: __Logger;
133
+ extensions?: RuntimeExtension[];
134
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
135
+ }
136
+ export type InvoicingClientConfigType = Partial<
137
+ __SmithyConfiguration<__HttpHandlerOptions>
138
+ > &
139
+ ClientDefaults &
140
+ UserAgentInputConfig &
141
+ RetryInputConfig &
142
+ RegionInputConfig &
143
+ HostHeaderInputConfig &
144
+ EndpointInputConfig<EndpointParameters> &
145
+ HttpAuthSchemeInputConfig &
146
+ ClientInputEndpointParameters;
147
+ export interface InvoicingClientConfig extends InvoicingClientConfigType {}
148
+ export type InvoicingClientResolvedConfigType =
149
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
150
+ Required<ClientDefaults> &
151
+ RuntimeExtensionsConfig &
152
+ UserAgentResolvedConfig &
153
+ RetryResolvedConfig &
154
+ RegionResolvedConfig &
155
+ HostHeaderResolvedConfig &
156
+ EndpointResolvedConfig<EndpointParameters> &
157
+ HttpAuthSchemeResolvedConfig &
158
+ ClientResolvedEndpointParameters;
159
+ export interface InvoicingClientResolvedConfig
160
+ extends InvoicingClientResolvedConfigType {}
161
+ export declare class InvoicingClient extends __Client<
162
+ __HttpHandlerOptions,
163
+ ServiceInputTypes,
164
+ ServiceOutputTypes,
165
+ InvoicingClientResolvedConfig
166
+ > {
167
+ readonly config: InvoicingClientResolvedConfig;
168
+ constructor(
169
+ ...[configuration]: __CheckOptionalClientConfig<InvoicingClientConfig>
170
+ );
171
+ destroy(): void;
172
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { InvoicingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: InvoicingHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): InvoicingHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: InvoicingHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;