@effect-aws/client-iot-wireless 1.1.0 → 1.9.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.
- package/Errors/package.json +6 -0
- package/IoTWirelessClientInstance/package.json +6 -0
- package/IoTWirelessService/package.json +6 -0
- package/IoTWirelessServiceConfig/package.json +6 -0
- package/{lib → dist/cjs}/Errors.d.ts +6 -11
- package/dist/cjs/Errors.d.ts.map +1 -0
- package/dist/cjs/Errors.js +15 -0
- package/dist/cjs/Errors.js.map +1 -0
- package/dist/cjs/IoTWirelessClientInstance.d.ts +24 -0
- package/dist/cjs/IoTWirelessClientInstance.d.ts.map +1 -0
- package/dist/cjs/IoTWirelessClientInstance.js +50 -0
- package/dist/cjs/IoTWirelessClientInstance.js.map +1 -0
- package/{lib → dist/cjs}/IoTWirelessService.d.ts +16 -38
- package/dist/cjs/IoTWirelessService.d.ts.map +1 -0
- package/dist/cjs/IoTWirelessService.js +168 -0
- package/dist/cjs/IoTWirelessService.js.map +1 -0
- package/dist/cjs/IoTWirelessServiceConfig.d.ts +25 -0
- package/dist/cjs/IoTWirelessServiceConfig.d.ts.map +1 -0
- package/dist/cjs/IoTWirelessServiceConfig.js +35 -0
- package/dist/cjs/IoTWirelessServiceConfig.js.map +1 -0
- package/dist/cjs/index.d.ts +39 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +56 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/dts/Errors.d.ts +14 -0
- package/dist/dts/Errors.d.ts.map +1 -0
- package/dist/dts/IoTWirelessClientInstance.d.ts +24 -0
- package/dist/dts/IoTWirelessClientInstance.d.ts.map +1 -0
- package/dist/dts/IoTWirelessService.d.ts +603 -0
- package/dist/dts/IoTWirelessService.d.ts.map +1 -0
- package/dist/dts/IoTWirelessServiceConfig.d.ts +25 -0
- package/dist/dts/IoTWirelessServiceConfig.d.ts.map +1 -0
- package/dist/dts/index.d.ts +39 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/esm/Errors.js +12 -0
- package/dist/esm/Errors.js.map +1 -0
- package/dist/esm/IoTWirelessClientInstance.js +23 -0
- package/dist/esm/IoTWirelessClientInstance.js.map +1 -0
- package/dist/esm/IoTWirelessService.js +141 -0
- package/dist/esm/IoTWirelessService.js.map +1 -0
- package/dist/esm/IoTWirelessServiceConfig.js +31 -0
- package/dist/esm/IoTWirelessServiceConfig.js.map +1 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +4 -0
- package/package.json +60 -43
- package/src/Errors.ts +32 -0
- package/src/IoTWirelessClientInstance.ts +33 -0
- package/src/IoTWirelessService.ts +2004 -0
- package/src/IoTWirelessServiceConfig.ts +52 -0
- package/src/index.ts +44 -0
- package/CHANGELOG.md +0 -13
- package/docgen.json +0 -8
- package/lib/Errors.js +0 -15
- package/lib/IoTWirelessClientInstance.d.ts +0 -31
- package/lib/IoTWirelessClientInstance.js +0 -57
- package/lib/IoTWirelessClientInstanceConfig.d.ts +0 -23
- package/lib/IoTWirelessClientInstanceConfig.js +0 -44
- package/lib/IoTWirelessService.js +0 -200
- package/lib/esm/Errors.js +0 -12
- package/lib/esm/IoTWirelessClientInstance.js +0 -30
- package/lib/esm/IoTWirelessClientInstanceConfig.js +0 -40
- package/lib/esm/IoTWirelessService.js +0 -196
- package/lib/esm/index.js +0 -5
- package/lib/index.d.ts +0 -4
- package/lib/index.js +0 -21
- package/project.json +0 -77
- package/vitest.config.ts +0 -3
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
import type { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, TooManyTagsException, ValidationException } from "@aws-sdk/client-iot-wireless";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
export
|
|
5
|
-
name: string;
|
|
6
|
-
}> = T & {
|
|
7
|
-
readonly _tag: T["name"];
|
|
8
|
-
};
|
|
2
|
+
import type { TaggedException } from "@effect-aws/commons";
|
|
3
|
+
import { SdkError as CommonSdkError } from "@effect-aws/commons";
|
|
4
|
+
export declare const AllServiceErrors: readonly ["AccessDeniedException", "ConflictException", "InternalServerException", "ResourceNotFoundException", "ThrottlingException", "TooManyTagsException", "ValidationException"];
|
|
9
5
|
export type AccessDeniedError = TaggedException<AccessDeniedException>;
|
|
10
6
|
export type ConflictError = TaggedException<ConflictException>;
|
|
11
7
|
export type InternalServerError = TaggedException<InternalServerException>;
|
|
@@ -13,7 +9,6 @@ export type ResourceNotFoundError = TaggedException<ResourceNotFoundException>;
|
|
|
13
9
|
export type ThrottlingError = TaggedException<ThrottlingException>;
|
|
14
10
|
export type TooManyTagsError = TaggedException<TooManyTagsException>;
|
|
15
11
|
export type ValidationError = TaggedException<ValidationException>;
|
|
16
|
-
export type SdkError =
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
export declare const SdkError: Data.Case.Constructor<SdkError, "_tag">;
|
|
12
|
+
export type SdkError = CommonSdkError;
|
|
13
|
+
export declare const SdkError: import("effect/Data").Case.Constructor<CommonSdkError, "_tag">;
|
|
14
|
+
//# sourceMappingURL=Errors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACrB,iBAAiB,EACjB,uBAAuB,EACvB,yBAAyB,EACzB,mBAAmB,EACnB,oBAAoB,EACpB,mBAAmB,EACpB,MAAM,8BAA8B,CAAC;AACtC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,QAAQ,IAAI,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAEjE,eAAO,MAAM,gBAAgB,uLAQnB,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,eAAe,CAAC,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,iBAAiB,CAAC,CAAC;AAC/D,MAAM,MAAM,mBAAmB,GAAG,eAAe,CAAC,uBAAuB,CAAC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,eAAe,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AACnE,MAAM,MAAM,gBAAgB,GAAG,eAAe,CAAC,oBAAoB,CAAC,CAAC;AACrE,MAAM,MAAM,eAAe,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AAEnE,MAAM,MAAM,QAAQ,GAAG,cAAc,CAAC;AACtC,eAAO,MAAM,QAAQ,gEAAiB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SdkError = exports.AllServiceErrors = void 0;
|
|
4
|
+
const commons_1 = require("@effect-aws/commons");
|
|
5
|
+
exports.AllServiceErrors = [
|
|
6
|
+
"AccessDeniedException",
|
|
7
|
+
"ConflictException",
|
|
8
|
+
"InternalServerException",
|
|
9
|
+
"ResourceNotFoundException",
|
|
10
|
+
"ThrottlingException",
|
|
11
|
+
"TooManyTagsException",
|
|
12
|
+
"ValidationException",
|
|
13
|
+
];
|
|
14
|
+
exports.SdkError = commons_1.SdkError;
|
|
15
|
+
//# sourceMappingURL=Errors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Errors.js","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":";;;AAUA,iDAAiE;AAEpD,QAAA,gBAAgB,GAAG;IAC9B,uBAAuB;IACvB,mBAAmB;IACnB,yBAAyB;IACzB,2BAA2B;IAC3B,qBAAqB;IACrB,sBAAsB;IACtB,qBAAqB;CACb,CAAC;AAWE,QAAA,QAAQ,GAAG,kBAAc,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { IoTWirelessClient } from "@aws-sdk/client-iot-wireless";
|
|
5
|
+
import { Context, Effect, Layer } from "effect";
|
|
6
|
+
declare const IoTWirelessClientInstance_base: Context.TagClass<IoTWirelessClientInstance, "@effect-aws/client-iot-wireless/IoTWirelessClientInstance", IoTWirelessClient>;
|
|
7
|
+
/**
|
|
8
|
+
* @since 1.0.0
|
|
9
|
+
* @category tags
|
|
10
|
+
*/
|
|
11
|
+
export declare class IoTWirelessClientInstance extends IoTWirelessClientInstance_base {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @since 1.0.0
|
|
15
|
+
* @category constructors
|
|
16
|
+
*/
|
|
17
|
+
export declare const make: Effect.Effect<IoTWirelessClient, never, import("effect/Scope").Scope>;
|
|
18
|
+
/**
|
|
19
|
+
* @since 1.0.0
|
|
20
|
+
* @category layers
|
|
21
|
+
*/
|
|
22
|
+
export declare const layer: Layer.Layer<IoTWirelessClientInstance, never, never>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=IoTWirelessClientInstance.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IoTWirelessClientInstance.d.ts","sourceRoot":"","sources":["../../src/IoTWirelessClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,yBAA0B,SAAQ,8BAEE;CAAG;AAEpD;;;GAGG;AACH,eAAO,MAAM,IAAI,uEAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,sDAAgD,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.layer = exports.make = exports.IoTWirelessClientInstance = void 0;
|
|
27
|
+
/**
|
|
28
|
+
* @since 1.0.0
|
|
29
|
+
*/
|
|
30
|
+
const client_iot_wireless_1 = require("@aws-sdk/client-iot-wireless");
|
|
31
|
+
const effect_1 = require("effect");
|
|
32
|
+
const IoTWirelessServiceConfig = __importStar(require("./IoTWirelessServiceConfig.js"));
|
|
33
|
+
/**
|
|
34
|
+
* @since 1.0.0
|
|
35
|
+
* @category tags
|
|
36
|
+
*/
|
|
37
|
+
class IoTWirelessClientInstance extends effect_1.Context.Tag("@effect-aws/client-iot-wireless/IoTWirelessClientInstance")() {
|
|
38
|
+
}
|
|
39
|
+
exports.IoTWirelessClientInstance = IoTWirelessClientInstance;
|
|
40
|
+
/**
|
|
41
|
+
* @since 1.0.0
|
|
42
|
+
* @category constructors
|
|
43
|
+
*/
|
|
44
|
+
exports.make = effect_1.Effect.flatMap(IoTWirelessServiceConfig.toIoTWirelessClientConfig, (config) => effect_1.Effect.acquireRelease(effect_1.Effect.sync(() => new client_iot_wireless_1.IoTWirelessClient(config)), (client) => effect_1.Effect.sync(() => client.destroy())));
|
|
45
|
+
/**
|
|
46
|
+
* @since 1.0.0
|
|
47
|
+
* @category layers
|
|
48
|
+
*/
|
|
49
|
+
exports.layer = effect_1.Layer.scoped(IoTWirelessClientInstance, exports.make);
|
|
50
|
+
//# sourceMappingURL=IoTWirelessClientInstance.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IoTWirelessClientInstance.js","sourceRoot":"","sources":["../../src/IoTWirelessClientInstance.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,sEAAiE;AACjE,mCAAgD;AAChD,wFAA0E;AAE1E;;;GAGG;AACH,MAAa,yBAA0B,SAAQ,gBAAO,CAAC,GAAG,CACxD,2DAA2D,CAC5D,EAAgD;CAAG;AAFpD,8DAEoD;AAEpD;;;GAGG;AACU,QAAA,IAAI,GAAG,eAAM,CAAC,OAAO,CAChC,wBAAwB,CAAC,yBAAyB,EAClD,CAAC,MAAM,EAAE,EAAE,CACT,eAAM,CAAC,cAAc,CACnB,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,uCAAiB,CAAC,MAAM,CAAC,CAAC,EAChD,CAAC,MAAM,EAAE,EAAE,CAAC,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAChD,CACJ,CAAC;AAEF;;;GAGG;AACU,QAAA,KAAK,GAAG,cAAK,CAAC,MAAM,CAAC,yBAAyB,EAAE,YAAI,CAAC,CAAC"}
|
|
@@ -1,21 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
|
-
import { type IoTWirelessClient, type IoTWirelessClientConfig, type AssociateAwsAccountWithPartnerAccountCommandInput, type AssociateAwsAccountWithPartnerAccountCommandOutput, type AssociateMulticastGroupWithFuotaTaskCommandInput, type AssociateMulticastGroupWithFuotaTaskCommandOutput, type AssociateWirelessDeviceWithFuotaTaskCommandInput, type AssociateWirelessDeviceWithFuotaTaskCommandOutput, type AssociateWirelessDeviceWithMulticastGroupCommandInput, type AssociateWirelessDeviceWithMulticastGroupCommandOutput, type AssociateWirelessDeviceWithThingCommandInput, type AssociateWirelessDeviceWithThingCommandOutput, type AssociateWirelessGatewayWithCertificateCommandInput, type AssociateWirelessGatewayWithCertificateCommandOutput, type AssociateWirelessGatewayWithThingCommandInput, type AssociateWirelessGatewayWithThingCommandOutput, type CancelMulticastGroupSessionCommandInput, type CancelMulticastGroupSessionCommandOutput, type CreateDestinationCommandInput, type CreateDestinationCommandOutput, type CreateDeviceProfileCommandInput, type CreateDeviceProfileCommandOutput, type CreateFuotaTaskCommandInput, type CreateFuotaTaskCommandOutput, type CreateMulticastGroupCommandInput, type CreateMulticastGroupCommandOutput, type CreateNetworkAnalyzerConfigurationCommandInput, type CreateNetworkAnalyzerConfigurationCommandOutput, type CreateServiceProfileCommandInput, type CreateServiceProfileCommandOutput, type CreateWirelessDeviceCommandInput, type CreateWirelessDeviceCommandOutput, type CreateWirelessGatewayCommandInput, type CreateWirelessGatewayCommandOutput, type CreateWirelessGatewayTaskCommandInput, type CreateWirelessGatewayTaskCommandOutput, type CreateWirelessGatewayTaskDefinitionCommandInput, type CreateWirelessGatewayTaskDefinitionCommandOutput, type DeleteDestinationCommandInput, type DeleteDestinationCommandOutput, type DeleteDeviceProfileCommandInput, type DeleteDeviceProfileCommandOutput, type DeleteFuotaTaskCommandInput, type DeleteFuotaTaskCommandOutput, type DeleteMulticastGroupCommandInput, type DeleteMulticastGroupCommandOutput, type DeleteNetworkAnalyzerConfigurationCommandInput, type DeleteNetworkAnalyzerConfigurationCommandOutput, type DeleteQueuedMessagesCommandInput, type DeleteQueuedMessagesCommandOutput, type DeleteServiceProfileCommandInput, type DeleteServiceProfileCommandOutput, type DeleteWirelessDeviceCommandInput, type DeleteWirelessDeviceCommandOutput, type DeleteWirelessDeviceImportTaskCommandInput, type DeleteWirelessDeviceImportTaskCommandOutput, type DeleteWirelessGatewayCommandInput, type DeleteWirelessGatewayCommandOutput, type DeleteWirelessGatewayTaskCommandInput, type DeleteWirelessGatewayTaskCommandOutput, type DeleteWirelessGatewayTaskDefinitionCommandInput, type DeleteWirelessGatewayTaskDefinitionCommandOutput, type DeregisterWirelessDeviceCommandInput, type DeregisterWirelessDeviceCommandOutput, type DisassociateAwsAccountFromPartnerAccountCommandInput, type DisassociateAwsAccountFromPartnerAccountCommandOutput, type DisassociateMulticastGroupFromFuotaTaskCommandInput, type DisassociateMulticastGroupFromFuotaTaskCommandOutput, type DisassociateWirelessDeviceFromFuotaTaskCommandInput, type DisassociateWirelessDeviceFromFuotaTaskCommandOutput, type DisassociateWirelessDeviceFromMulticastGroupCommandInput, type DisassociateWirelessDeviceFromMulticastGroupCommandOutput, type DisassociateWirelessDeviceFromThingCommandInput, type DisassociateWirelessDeviceFromThingCommandOutput, type DisassociateWirelessGatewayFromCertificateCommandInput, type DisassociateWirelessGatewayFromCertificateCommandOutput, type DisassociateWirelessGatewayFromThingCommandInput, type DisassociateWirelessGatewayFromThingCommandOutput, type GetDestinationCommandInput, type GetDestinationCommandOutput, type GetDeviceProfileCommandInput, type GetDeviceProfileCommandOutput, type GetEventConfigurationByResourceTypesCommandInput, type GetEventConfigurationByResourceTypesCommandOutput, type GetFuotaTaskCommandInput, type GetFuotaTaskCommandOutput, type GetLogLevelsByResourceTypesCommandInput, type GetLogLevelsByResourceTypesCommandOutput, type GetMetricConfigurationCommandInput, type GetMetricConfigurationCommandOutput, type GetMetricsCommandInput, type GetMetricsCommandOutput, type GetMulticastGroupCommandInput, type GetMulticastGroupCommandOutput, type GetMulticastGroupSessionCommandInput, type GetMulticastGroupSessionCommandOutput, type GetNetworkAnalyzerConfigurationCommandInput, type GetNetworkAnalyzerConfigurationCommandOutput, type GetPartnerAccountCommandInput, type GetPartnerAccountCommandOutput, type GetPositionCommandInput, type GetPositionCommandOutput, type GetPositionConfigurationCommandInput, type GetPositionConfigurationCommandOutput, type GetPositionEstimateCommandInput, type GetPositionEstimateCommandOutput, type GetResourceEventConfigurationCommandInput, type GetResourceEventConfigurationCommandOutput, type GetResourceLogLevelCommandInput, type GetResourceLogLevelCommandOutput, type GetResourcePositionCommandInput, type GetResourcePositionCommandOutput, type GetServiceEndpointCommandInput, type GetServiceEndpointCommandOutput, type GetServiceProfileCommandInput, type GetServiceProfileCommandOutput, type GetWirelessDeviceCommandInput, type GetWirelessDeviceCommandOutput, type GetWirelessDeviceImportTaskCommandInput, type GetWirelessDeviceImportTaskCommandOutput, type GetWirelessDeviceStatisticsCommandInput, type GetWirelessDeviceStatisticsCommandOutput, type GetWirelessGatewayCommandInput, type GetWirelessGatewayCommandOutput, type GetWirelessGatewayCertificateCommandInput, type GetWirelessGatewayCertificateCommandOutput, type GetWirelessGatewayFirmwareInformationCommandInput, type GetWirelessGatewayFirmwareInformationCommandOutput, type GetWirelessGatewayStatisticsCommandInput, type GetWirelessGatewayStatisticsCommandOutput, type GetWirelessGatewayTaskCommandInput, type GetWirelessGatewayTaskCommandOutput, type GetWirelessGatewayTaskDefinitionCommandInput, type GetWirelessGatewayTaskDefinitionCommandOutput, type ListDestinationsCommandInput, type ListDestinationsCommandOutput, type ListDeviceProfilesCommandInput, type ListDeviceProfilesCommandOutput, type ListDevicesForWirelessDeviceImportTaskCommandInput, type ListDevicesForWirelessDeviceImportTaskCommandOutput, type ListEventConfigurationsCommandInput, type ListEventConfigurationsCommandOutput, type ListFuotaTasksCommandInput, type ListFuotaTasksCommandOutput, type ListMulticastGroupsCommandInput, type ListMulticastGroupsCommandOutput, type ListMulticastGroupsByFuotaTaskCommandInput, type ListMulticastGroupsByFuotaTaskCommandOutput, type ListNetworkAnalyzerConfigurationsCommandInput, type ListNetworkAnalyzerConfigurationsCommandOutput, type ListPartnerAccountsCommandInput, type ListPartnerAccountsCommandOutput, type ListPositionConfigurationsCommandInput, type ListPositionConfigurationsCommandOutput, type ListQueuedMessagesCommandInput, type ListQueuedMessagesCommandOutput, type ListServiceProfilesCommandInput, type ListServiceProfilesCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type ListWirelessDeviceImportTasksCommandInput, type ListWirelessDeviceImportTasksCommandOutput, type ListWirelessDevicesCommandInput, type ListWirelessDevicesCommandOutput, type ListWirelessGatewayTaskDefinitionsCommandInput, type ListWirelessGatewayTaskDefinitionsCommandOutput, type ListWirelessGatewaysCommandInput, type ListWirelessGatewaysCommandOutput, type PutPositionConfigurationCommandInput, type PutPositionConfigurationCommandOutput, type PutResourceLogLevelCommandInput, type PutResourceLogLevelCommandOutput, type ResetAllResourceLogLevelsCommandInput, type ResetAllResourceLogLevelsCommandOutput, type ResetResourceLogLevelCommandInput, type ResetResourceLogLevelCommandOutput, type SendDataToMulticastGroupCommandInput, type SendDataToMulticastGroupCommandOutput, type SendDataToWirelessDeviceCommandInput, type SendDataToWirelessDeviceCommandOutput, type StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, type StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput, type StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, type StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput, type StartFuotaTaskCommandInput, type StartFuotaTaskCommandOutput, type StartMulticastGroupSessionCommandInput, type StartMulticastGroupSessionCommandOutput, type StartSingleWirelessDeviceImportTaskCommandInput, type StartSingleWirelessDeviceImportTaskCommandOutput, type StartWirelessDeviceImportTaskCommandInput, type StartWirelessDeviceImportTaskCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type TestWirelessDeviceCommandInput, type TestWirelessDeviceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateDestinationCommandInput, type UpdateDestinationCommandOutput, type UpdateEventConfigurationByResourceTypesCommandInput, type UpdateEventConfigurationByResourceTypesCommandOutput, type UpdateFuotaTaskCommandInput, type UpdateFuotaTaskCommandOutput, type UpdateLogLevelsByResourceTypesCommandInput, type UpdateLogLevelsByResourceTypesCommandOutput, type UpdateMetricConfigurationCommandInput, type UpdateMetricConfigurationCommandOutput, type UpdateMulticastGroupCommandInput, type UpdateMulticastGroupCommandOutput, type UpdateNetworkAnalyzerConfigurationCommandInput, type UpdateNetworkAnalyzerConfigurationCommandOutput, type UpdatePartnerAccountCommandInput, type UpdatePartnerAccountCommandOutput, type UpdatePositionCommandInput, type UpdatePositionCommandOutput, type UpdateResourceEventConfigurationCommandInput, type UpdateResourceEventConfigurationCommandOutput, type UpdateResourcePositionCommandInput, type UpdateResourcePositionCommandOutput, type UpdateWirelessDeviceCommandInput, type UpdateWirelessDeviceCommandOutput, type UpdateWirelessDeviceImportTaskCommandInput, type UpdateWirelessDeviceImportTaskCommandOutput, type UpdateWirelessGatewayCommandInput, type UpdateWirelessGatewayCommandOutput } from "@aws-sdk/client-iot-wireless";
|
|
4
|
+
import { type AssociateAwsAccountWithPartnerAccountCommandInput, type AssociateAwsAccountWithPartnerAccountCommandOutput, type AssociateMulticastGroupWithFuotaTaskCommandInput, type AssociateMulticastGroupWithFuotaTaskCommandOutput, type AssociateWirelessDeviceWithFuotaTaskCommandInput, type AssociateWirelessDeviceWithFuotaTaskCommandOutput, type AssociateWirelessDeviceWithMulticastGroupCommandInput, type AssociateWirelessDeviceWithMulticastGroupCommandOutput, type AssociateWirelessDeviceWithThingCommandInput, type AssociateWirelessDeviceWithThingCommandOutput, type AssociateWirelessGatewayWithCertificateCommandInput, type AssociateWirelessGatewayWithCertificateCommandOutput, type AssociateWirelessGatewayWithThingCommandInput, type AssociateWirelessGatewayWithThingCommandOutput, type CancelMulticastGroupSessionCommandInput, type CancelMulticastGroupSessionCommandOutput, type CreateDestinationCommandInput, type CreateDestinationCommandOutput, type CreateDeviceProfileCommandInput, type CreateDeviceProfileCommandOutput, type CreateFuotaTaskCommandInput, type CreateFuotaTaskCommandOutput, type CreateMulticastGroupCommandInput, type CreateMulticastGroupCommandOutput, type CreateNetworkAnalyzerConfigurationCommandInput, type CreateNetworkAnalyzerConfigurationCommandOutput, type CreateServiceProfileCommandInput, type CreateServiceProfileCommandOutput, type CreateWirelessDeviceCommandInput, type CreateWirelessDeviceCommandOutput, type CreateWirelessGatewayCommandInput, type CreateWirelessGatewayCommandOutput, type CreateWirelessGatewayTaskCommandInput, type CreateWirelessGatewayTaskCommandOutput, type CreateWirelessGatewayTaskDefinitionCommandInput, type CreateWirelessGatewayTaskDefinitionCommandOutput, type DeleteDestinationCommandInput, type DeleteDestinationCommandOutput, type DeleteDeviceProfileCommandInput, type DeleteDeviceProfileCommandOutput, type DeleteFuotaTaskCommandInput, type DeleteFuotaTaskCommandOutput, type DeleteMulticastGroupCommandInput, type DeleteMulticastGroupCommandOutput, type DeleteNetworkAnalyzerConfigurationCommandInput, type DeleteNetworkAnalyzerConfigurationCommandOutput, type DeleteQueuedMessagesCommandInput, type DeleteQueuedMessagesCommandOutput, type DeleteServiceProfileCommandInput, type DeleteServiceProfileCommandOutput, type DeleteWirelessDeviceCommandInput, type DeleteWirelessDeviceCommandOutput, type DeleteWirelessDeviceImportTaskCommandInput, type DeleteWirelessDeviceImportTaskCommandOutput, type DeleteWirelessGatewayCommandInput, type DeleteWirelessGatewayCommandOutput, type DeleteWirelessGatewayTaskCommandInput, type DeleteWirelessGatewayTaskCommandOutput, type DeleteWirelessGatewayTaskDefinitionCommandInput, type DeleteWirelessGatewayTaskDefinitionCommandOutput, type DeregisterWirelessDeviceCommandInput, type DeregisterWirelessDeviceCommandOutput, type DisassociateAwsAccountFromPartnerAccountCommandInput, type DisassociateAwsAccountFromPartnerAccountCommandOutput, type DisassociateMulticastGroupFromFuotaTaskCommandInput, type DisassociateMulticastGroupFromFuotaTaskCommandOutput, type DisassociateWirelessDeviceFromFuotaTaskCommandInput, type DisassociateWirelessDeviceFromFuotaTaskCommandOutput, type DisassociateWirelessDeviceFromMulticastGroupCommandInput, type DisassociateWirelessDeviceFromMulticastGroupCommandOutput, type DisassociateWirelessDeviceFromThingCommandInput, type DisassociateWirelessDeviceFromThingCommandOutput, type DisassociateWirelessGatewayFromCertificateCommandInput, type DisassociateWirelessGatewayFromCertificateCommandOutput, type DisassociateWirelessGatewayFromThingCommandInput, type DisassociateWirelessGatewayFromThingCommandOutput, type GetDestinationCommandInput, type GetDestinationCommandOutput, type GetDeviceProfileCommandInput, type GetDeviceProfileCommandOutput, type GetEventConfigurationByResourceTypesCommandInput, type GetEventConfigurationByResourceTypesCommandOutput, type GetFuotaTaskCommandInput, type GetFuotaTaskCommandOutput, type GetLogLevelsByResourceTypesCommandInput, type GetLogLevelsByResourceTypesCommandOutput, type GetMetricConfigurationCommandInput, type GetMetricConfigurationCommandOutput, type GetMetricsCommandInput, type GetMetricsCommandOutput, type GetMulticastGroupCommandInput, type GetMulticastGroupCommandOutput, type GetMulticastGroupSessionCommandInput, type GetMulticastGroupSessionCommandOutput, type GetNetworkAnalyzerConfigurationCommandInput, type GetNetworkAnalyzerConfigurationCommandOutput, type GetPartnerAccountCommandInput, type GetPartnerAccountCommandOutput, type GetPositionCommandInput, type GetPositionCommandOutput, type GetPositionConfigurationCommandInput, type GetPositionConfigurationCommandOutput, type GetPositionEstimateCommandInput, type GetPositionEstimateCommandOutput, type GetResourceEventConfigurationCommandInput, type GetResourceEventConfigurationCommandOutput, type GetResourceLogLevelCommandInput, type GetResourceLogLevelCommandOutput, type GetResourcePositionCommandInput, type GetResourcePositionCommandOutput, type GetServiceEndpointCommandInput, type GetServiceEndpointCommandOutput, type GetServiceProfileCommandInput, type GetServiceProfileCommandOutput, type GetWirelessDeviceCommandInput, type GetWirelessDeviceCommandOutput, type GetWirelessDeviceImportTaskCommandInput, type GetWirelessDeviceImportTaskCommandOutput, type GetWirelessDeviceStatisticsCommandInput, type GetWirelessDeviceStatisticsCommandOutput, type GetWirelessGatewayCertificateCommandInput, type GetWirelessGatewayCertificateCommandOutput, type GetWirelessGatewayCommandInput, type GetWirelessGatewayCommandOutput, type GetWirelessGatewayFirmwareInformationCommandInput, type GetWirelessGatewayFirmwareInformationCommandOutput, type GetWirelessGatewayStatisticsCommandInput, type GetWirelessGatewayStatisticsCommandOutput, type GetWirelessGatewayTaskCommandInput, type GetWirelessGatewayTaskCommandOutput, type GetWirelessGatewayTaskDefinitionCommandInput, type GetWirelessGatewayTaskDefinitionCommandOutput, type IoTWirelessClient, type IoTWirelessClientConfig, type ListDestinationsCommandInput, type ListDestinationsCommandOutput, type ListDeviceProfilesCommandInput, type ListDeviceProfilesCommandOutput, type ListDevicesForWirelessDeviceImportTaskCommandInput, type ListDevicesForWirelessDeviceImportTaskCommandOutput, type ListEventConfigurationsCommandInput, type ListEventConfigurationsCommandOutput, type ListFuotaTasksCommandInput, type ListFuotaTasksCommandOutput, type ListMulticastGroupsByFuotaTaskCommandInput, type ListMulticastGroupsByFuotaTaskCommandOutput, type ListMulticastGroupsCommandInput, type ListMulticastGroupsCommandOutput, type ListNetworkAnalyzerConfigurationsCommandInput, type ListNetworkAnalyzerConfigurationsCommandOutput, type ListPartnerAccountsCommandInput, type ListPartnerAccountsCommandOutput, type ListPositionConfigurationsCommandInput, type ListPositionConfigurationsCommandOutput, type ListQueuedMessagesCommandInput, type ListQueuedMessagesCommandOutput, type ListServiceProfilesCommandInput, type ListServiceProfilesCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type ListWirelessDeviceImportTasksCommandInput, type ListWirelessDeviceImportTasksCommandOutput, type ListWirelessDevicesCommandInput, type ListWirelessDevicesCommandOutput, type ListWirelessGatewaysCommandInput, type ListWirelessGatewaysCommandOutput, type ListWirelessGatewayTaskDefinitionsCommandInput, type ListWirelessGatewayTaskDefinitionsCommandOutput, type PutPositionConfigurationCommandInput, type PutPositionConfigurationCommandOutput, type PutResourceLogLevelCommandInput, type PutResourceLogLevelCommandOutput, type ResetAllResourceLogLevelsCommandInput, type ResetAllResourceLogLevelsCommandOutput, type ResetResourceLogLevelCommandInput, type ResetResourceLogLevelCommandOutput, type SendDataToMulticastGroupCommandInput, type SendDataToMulticastGroupCommandOutput, type SendDataToWirelessDeviceCommandInput, type SendDataToWirelessDeviceCommandOutput, type StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, type StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput, type StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, type StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput, type StartFuotaTaskCommandInput, type StartFuotaTaskCommandOutput, type StartMulticastGroupSessionCommandInput, type StartMulticastGroupSessionCommandOutput, type StartSingleWirelessDeviceImportTaskCommandInput, type StartSingleWirelessDeviceImportTaskCommandOutput, type StartWirelessDeviceImportTaskCommandInput, type StartWirelessDeviceImportTaskCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type TestWirelessDeviceCommandInput, type TestWirelessDeviceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateDestinationCommandInput, type UpdateDestinationCommandOutput, type UpdateEventConfigurationByResourceTypesCommandInput, type UpdateEventConfigurationByResourceTypesCommandOutput, type UpdateFuotaTaskCommandInput, type UpdateFuotaTaskCommandOutput, type UpdateLogLevelsByResourceTypesCommandInput, type UpdateLogLevelsByResourceTypesCommandOutput, type UpdateMetricConfigurationCommandInput, type UpdateMetricConfigurationCommandOutput, type UpdateMulticastGroupCommandInput, type UpdateMulticastGroupCommandOutput, type UpdateNetworkAnalyzerConfigurationCommandInput, type UpdateNetworkAnalyzerConfigurationCommandOutput, type UpdatePartnerAccountCommandInput, type UpdatePartnerAccountCommandOutput, type UpdatePositionCommandInput, type UpdatePositionCommandOutput, type UpdateResourceEventConfigurationCommandInput, type UpdateResourceEventConfigurationCommandOutput, type UpdateResourcePositionCommandInput, type UpdateResourcePositionCommandOutput, type UpdateWirelessDeviceCommandInput, type UpdateWirelessDeviceCommandOutput, type UpdateWirelessDeviceImportTaskCommandInput, type UpdateWirelessDeviceImportTaskCommandOutput, type UpdateWirelessGatewayCommandInput, type UpdateWirelessGatewayCommandOutput } from "@aws-sdk/client-iot-wireless";
|
|
5
|
+
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
5
6
|
import { Effect, Layer } from "effect";
|
|
6
|
-
import { AccessDeniedError, ConflictError, InternalServerError, ResourceNotFoundError, ThrottlingError, TooManyTagsError, ValidationError
|
|
7
|
-
import
|
|
8
|
-
import { IoTWirelessClientInstanceConfig } from "./IoTWirelessClientInstanceConfig";
|
|
9
|
-
/**
|
|
10
|
-
* @since 1.0.0
|
|
11
|
-
*/
|
|
12
|
-
export interface HttpHandlerOptions {
|
|
13
|
-
/**
|
|
14
|
-
* The maximum time in milliseconds that the connection phase of a request
|
|
15
|
-
* may take before the connection attempt is abandoned.
|
|
16
|
-
*/
|
|
17
|
-
requestTimeout?: number;
|
|
18
|
-
}
|
|
7
|
+
import type { AccessDeniedError, ConflictError, InternalServerError, ResourceNotFoundError, ThrottlingError, TooManyTagsError, ValidationError } from "./Errors.js";
|
|
8
|
+
import * as Instance from "./IoTWirelessClientInstance.js";
|
|
19
9
|
interface IoTWirelessService$ {
|
|
20
10
|
readonly _: unique symbol;
|
|
21
11
|
/**
|
|
@@ -471,7 +461,7 @@ interface IoTWirelessService$ {
|
|
|
471
461
|
* @since 1.0.0
|
|
472
462
|
* @category constructors
|
|
473
463
|
*/
|
|
474
|
-
export declare const makeIoTWirelessService: Effect.Effect<IoTWirelessService$, never, IoTWirelessClientInstance>;
|
|
464
|
+
export declare const makeIoTWirelessService: Effect.Effect<IoTWirelessService$, never, Instance.IoTWirelessClientInstance>;
|
|
475
465
|
declare const IoTWirelessService_base: import("effect/Context").TagClass<IoTWirelessService, "@effect-aws/client-iot-wireless/IoTWirelessService", IoTWirelessService$> & {
|
|
476
466
|
readonly _: Effect.Effect<IoTWirelessService$["_"], never, IoTWirelessService>;
|
|
477
467
|
associateAwsAccountWithPartnerAccount: (args: AssociateAwsAccountWithPartnerAccountCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<AssociateAwsAccountWithPartnerAccountCommandOutput, AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError | SdkError, IoTWirelessService>;
|
|
@@ -587,7 +577,7 @@ declare const IoTWirelessService_base: import("effect/Context").TagClass<IoTWire
|
|
|
587
577
|
updateWirelessDeviceImportTask: (args: UpdateWirelessDeviceImportTaskCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateWirelessDeviceImportTaskCommandOutput, AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError | SdkError, IoTWirelessService>;
|
|
588
578
|
updateWirelessGateway: (args: UpdateWirelessGatewayCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateWirelessGatewayCommandOutput, AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError | SdkError, IoTWirelessService>;
|
|
589
579
|
} & {
|
|
590
|
-
use: <X>(body: (_: IoTWirelessService$) => X) => X extends Effect.Effect<infer A, infer E, infer R> ? Effect.Effect<A, E,
|
|
580
|
+
use: <X>(body: (_: IoTWirelessService$) => X) => X extends Effect.Effect<infer A, infer E, infer R> ? Effect.Effect<A, E, IoTWirelessService | R> : Effect.Effect<X, never, IoTWirelessService>;
|
|
591
581
|
};
|
|
592
582
|
/**
|
|
593
583
|
* @since 1.0.0
|
|
@@ -595,31 +585,19 @@ declare const IoTWirelessService_base: import("effect/Context").TagClass<IoTWire
|
|
|
595
585
|
*/
|
|
596
586
|
export declare class IoTWirelessService extends IoTWirelessService_base {
|
|
597
587
|
static readonly defaultLayer: Layer.Layer<IoTWirelessService, never, never>;
|
|
598
|
-
static readonly layer: (config:
|
|
588
|
+
static readonly layer: (config: IoTWirelessService.Config) => Layer.Layer<IoTWirelessService, never, never>;
|
|
599
589
|
static readonly baseLayer: (evaluate: (defaultConfig: IoTWirelessClientConfig) => IoTWirelessClient) => Layer.Layer<IoTWirelessService, never, never>;
|
|
600
590
|
}
|
|
601
591
|
/**
|
|
602
592
|
* @since 1.0.0
|
|
603
|
-
* @category models
|
|
604
|
-
* @alias IoTWirelessService
|
|
605
|
-
*/
|
|
606
|
-
export declare const IoTWireless: typeof IoTWirelessService;
|
|
607
|
-
/**
|
|
608
|
-
* @since 1.0.0
|
|
609
|
-
* @category layers
|
|
610
|
-
* @deprecated use IoTWireless.baseLayer instead
|
|
611
593
|
*/
|
|
612
|
-
export declare
|
|
613
|
-
/**
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
* @since 1.0.0
|
|
621
|
-
* @category layers
|
|
622
|
-
* @deprecated use IoTWireless.defaultLayer instead
|
|
623
|
-
*/
|
|
624
|
-
export declare const DefaultIoTWirelessServiceLayer: Layer.Layer<IoTWirelessService, never, never>;
|
|
594
|
+
export declare namespace IoTWirelessService {
|
|
595
|
+
/**
|
|
596
|
+
* @since 1.0.0
|
|
597
|
+
*/
|
|
598
|
+
interface Config extends Omit<IoTWirelessClientConfig, "logger"> {
|
|
599
|
+
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
600
|
+
}
|
|
601
|
+
}
|
|
625
602
|
export {};
|
|
603
|
+
//# sourceMappingURL=IoTWirelessService.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IoTWirelessService.d.ts","sourceRoot":"","sources":["../../src/IoTWirelessService.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.IoTWirelessService = exports.makeIoTWirelessService = void 0;
|
|
27
|
+
/**
|
|
28
|
+
* @since 1.0.0
|
|
29
|
+
*/
|
|
30
|
+
const client_iot_wireless_1 = require("@aws-sdk/client-iot-wireless");
|
|
31
|
+
const commons_1 = require("@effect-aws/commons");
|
|
32
|
+
const effect_1 = require("effect");
|
|
33
|
+
const Errors_js_1 = require("./Errors.js");
|
|
34
|
+
const Instance = __importStar(require("./IoTWirelessClientInstance.js"));
|
|
35
|
+
const IoTWirelessServiceConfig = __importStar(require("./IoTWirelessServiceConfig.js"));
|
|
36
|
+
const commands = {
|
|
37
|
+
AssociateAwsAccountWithPartnerAccountCommand: client_iot_wireless_1.AssociateAwsAccountWithPartnerAccountCommand,
|
|
38
|
+
AssociateMulticastGroupWithFuotaTaskCommand: client_iot_wireless_1.AssociateMulticastGroupWithFuotaTaskCommand,
|
|
39
|
+
AssociateWirelessDeviceWithFuotaTaskCommand: client_iot_wireless_1.AssociateWirelessDeviceWithFuotaTaskCommand,
|
|
40
|
+
AssociateWirelessDeviceWithMulticastGroupCommand: client_iot_wireless_1.AssociateWirelessDeviceWithMulticastGroupCommand,
|
|
41
|
+
AssociateWirelessDeviceWithThingCommand: client_iot_wireless_1.AssociateWirelessDeviceWithThingCommand,
|
|
42
|
+
AssociateWirelessGatewayWithCertificateCommand: client_iot_wireless_1.AssociateWirelessGatewayWithCertificateCommand,
|
|
43
|
+
AssociateWirelessGatewayWithThingCommand: client_iot_wireless_1.AssociateWirelessGatewayWithThingCommand,
|
|
44
|
+
CancelMulticastGroupSessionCommand: client_iot_wireless_1.CancelMulticastGroupSessionCommand,
|
|
45
|
+
CreateDestinationCommand: client_iot_wireless_1.CreateDestinationCommand,
|
|
46
|
+
CreateDeviceProfileCommand: client_iot_wireless_1.CreateDeviceProfileCommand,
|
|
47
|
+
CreateFuotaTaskCommand: client_iot_wireless_1.CreateFuotaTaskCommand,
|
|
48
|
+
CreateMulticastGroupCommand: client_iot_wireless_1.CreateMulticastGroupCommand,
|
|
49
|
+
CreateNetworkAnalyzerConfigurationCommand: client_iot_wireless_1.CreateNetworkAnalyzerConfigurationCommand,
|
|
50
|
+
CreateServiceProfileCommand: client_iot_wireless_1.CreateServiceProfileCommand,
|
|
51
|
+
CreateWirelessDeviceCommand: client_iot_wireless_1.CreateWirelessDeviceCommand,
|
|
52
|
+
CreateWirelessGatewayCommand: client_iot_wireless_1.CreateWirelessGatewayCommand,
|
|
53
|
+
CreateWirelessGatewayTaskCommand: client_iot_wireless_1.CreateWirelessGatewayTaskCommand,
|
|
54
|
+
CreateWirelessGatewayTaskDefinitionCommand: client_iot_wireless_1.CreateWirelessGatewayTaskDefinitionCommand,
|
|
55
|
+
DeleteDestinationCommand: client_iot_wireless_1.DeleteDestinationCommand,
|
|
56
|
+
DeleteDeviceProfileCommand: client_iot_wireless_1.DeleteDeviceProfileCommand,
|
|
57
|
+
DeleteFuotaTaskCommand: client_iot_wireless_1.DeleteFuotaTaskCommand,
|
|
58
|
+
DeleteMulticastGroupCommand: client_iot_wireless_1.DeleteMulticastGroupCommand,
|
|
59
|
+
DeleteNetworkAnalyzerConfigurationCommand: client_iot_wireless_1.DeleteNetworkAnalyzerConfigurationCommand,
|
|
60
|
+
DeleteQueuedMessagesCommand: client_iot_wireless_1.DeleteQueuedMessagesCommand,
|
|
61
|
+
DeleteServiceProfileCommand: client_iot_wireless_1.DeleteServiceProfileCommand,
|
|
62
|
+
DeleteWirelessDeviceCommand: client_iot_wireless_1.DeleteWirelessDeviceCommand,
|
|
63
|
+
DeleteWirelessDeviceImportTaskCommand: client_iot_wireless_1.DeleteWirelessDeviceImportTaskCommand,
|
|
64
|
+
DeleteWirelessGatewayCommand: client_iot_wireless_1.DeleteWirelessGatewayCommand,
|
|
65
|
+
DeleteWirelessGatewayTaskCommand: client_iot_wireless_1.DeleteWirelessGatewayTaskCommand,
|
|
66
|
+
DeleteWirelessGatewayTaskDefinitionCommand: client_iot_wireless_1.DeleteWirelessGatewayTaskDefinitionCommand,
|
|
67
|
+
DeregisterWirelessDeviceCommand: client_iot_wireless_1.DeregisterWirelessDeviceCommand,
|
|
68
|
+
DisassociateAwsAccountFromPartnerAccountCommand: client_iot_wireless_1.DisassociateAwsAccountFromPartnerAccountCommand,
|
|
69
|
+
DisassociateMulticastGroupFromFuotaTaskCommand: client_iot_wireless_1.DisassociateMulticastGroupFromFuotaTaskCommand,
|
|
70
|
+
DisassociateWirelessDeviceFromFuotaTaskCommand: client_iot_wireless_1.DisassociateWirelessDeviceFromFuotaTaskCommand,
|
|
71
|
+
DisassociateWirelessDeviceFromMulticastGroupCommand: client_iot_wireless_1.DisassociateWirelessDeviceFromMulticastGroupCommand,
|
|
72
|
+
DisassociateWirelessDeviceFromThingCommand: client_iot_wireless_1.DisassociateWirelessDeviceFromThingCommand,
|
|
73
|
+
DisassociateWirelessGatewayFromCertificateCommand: client_iot_wireless_1.DisassociateWirelessGatewayFromCertificateCommand,
|
|
74
|
+
DisassociateWirelessGatewayFromThingCommand: client_iot_wireless_1.DisassociateWirelessGatewayFromThingCommand,
|
|
75
|
+
GetDestinationCommand: client_iot_wireless_1.GetDestinationCommand,
|
|
76
|
+
GetDeviceProfileCommand: client_iot_wireless_1.GetDeviceProfileCommand,
|
|
77
|
+
GetEventConfigurationByResourceTypesCommand: client_iot_wireless_1.GetEventConfigurationByResourceTypesCommand,
|
|
78
|
+
GetFuotaTaskCommand: client_iot_wireless_1.GetFuotaTaskCommand,
|
|
79
|
+
GetLogLevelsByResourceTypesCommand: client_iot_wireless_1.GetLogLevelsByResourceTypesCommand,
|
|
80
|
+
GetMetricConfigurationCommand: client_iot_wireless_1.GetMetricConfigurationCommand,
|
|
81
|
+
GetMetricsCommand: client_iot_wireless_1.GetMetricsCommand,
|
|
82
|
+
GetMulticastGroupCommand: client_iot_wireless_1.GetMulticastGroupCommand,
|
|
83
|
+
GetMulticastGroupSessionCommand: client_iot_wireless_1.GetMulticastGroupSessionCommand,
|
|
84
|
+
GetNetworkAnalyzerConfigurationCommand: client_iot_wireless_1.GetNetworkAnalyzerConfigurationCommand,
|
|
85
|
+
GetPartnerAccountCommand: client_iot_wireless_1.GetPartnerAccountCommand,
|
|
86
|
+
GetPositionCommand: client_iot_wireless_1.GetPositionCommand,
|
|
87
|
+
GetPositionConfigurationCommand: client_iot_wireless_1.GetPositionConfigurationCommand,
|
|
88
|
+
GetPositionEstimateCommand: client_iot_wireless_1.GetPositionEstimateCommand,
|
|
89
|
+
GetResourceEventConfigurationCommand: client_iot_wireless_1.GetResourceEventConfigurationCommand,
|
|
90
|
+
GetResourceLogLevelCommand: client_iot_wireless_1.GetResourceLogLevelCommand,
|
|
91
|
+
GetResourcePositionCommand: client_iot_wireless_1.GetResourcePositionCommand,
|
|
92
|
+
GetServiceEndpointCommand: client_iot_wireless_1.GetServiceEndpointCommand,
|
|
93
|
+
GetServiceProfileCommand: client_iot_wireless_1.GetServiceProfileCommand,
|
|
94
|
+
GetWirelessDeviceCommand: client_iot_wireless_1.GetWirelessDeviceCommand,
|
|
95
|
+
GetWirelessDeviceImportTaskCommand: client_iot_wireless_1.GetWirelessDeviceImportTaskCommand,
|
|
96
|
+
GetWirelessDeviceStatisticsCommand: client_iot_wireless_1.GetWirelessDeviceStatisticsCommand,
|
|
97
|
+
GetWirelessGatewayCommand: client_iot_wireless_1.GetWirelessGatewayCommand,
|
|
98
|
+
GetWirelessGatewayCertificateCommand: client_iot_wireless_1.GetWirelessGatewayCertificateCommand,
|
|
99
|
+
GetWirelessGatewayFirmwareInformationCommand: client_iot_wireless_1.GetWirelessGatewayFirmwareInformationCommand,
|
|
100
|
+
GetWirelessGatewayStatisticsCommand: client_iot_wireless_1.GetWirelessGatewayStatisticsCommand,
|
|
101
|
+
GetWirelessGatewayTaskCommand: client_iot_wireless_1.GetWirelessGatewayTaskCommand,
|
|
102
|
+
GetWirelessGatewayTaskDefinitionCommand: client_iot_wireless_1.GetWirelessGatewayTaskDefinitionCommand,
|
|
103
|
+
ListDestinationsCommand: client_iot_wireless_1.ListDestinationsCommand,
|
|
104
|
+
ListDeviceProfilesCommand: client_iot_wireless_1.ListDeviceProfilesCommand,
|
|
105
|
+
ListDevicesForWirelessDeviceImportTaskCommand: client_iot_wireless_1.ListDevicesForWirelessDeviceImportTaskCommand,
|
|
106
|
+
ListEventConfigurationsCommand: client_iot_wireless_1.ListEventConfigurationsCommand,
|
|
107
|
+
ListFuotaTasksCommand: client_iot_wireless_1.ListFuotaTasksCommand,
|
|
108
|
+
ListMulticastGroupsCommand: client_iot_wireless_1.ListMulticastGroupsCommand,
|
|
109
|
+
ListMulticastGroupsByFuotaTaskCommand: client_iot_wireless_1.ListMulticastGroupsByFuotaTaskCommand,
|
|
110
|
+
ListNetworkAnalyzerConfigurationsCommand: client_iot_wireless_1.ListNetworkAnalyzerConfigurationsCommand,
|
|
111
|
+
ListPartnerAccountsCommand: client_iot_wireless_1.ListPartnerAccountsCommand,
|
|
112
|
+
ListPositionConfigurationsCommand: client_iot_wireless_1.ListPositionConfigurationsCommand,
|
|
113
|
+
ListQueuedMessagesCommand: client_iot_wireless_1.ListQueuedMessagesCommand,
|
|
114
|
+
ListServiceProfilesCommand: client_iot_wireless_1.ListServiceProfilesCommand,
|
|
115
|
+
ListTagsForResourceCommand: client_iot_wireless_1.ListTagsForResourceCommand,
|
|
116
|
+
ListWirelessDeviceImportTasksCommand: client_iot_wireless_1.ListWirelessDeviceImportTasksCommand,
|
|
117
|
+
ListWirelessDevicesCommand: client_iot_wireless_1.ListWirelessDevicesCommand,
|
|
118
|
+
ListWirelessGatewayTaskDefinitionsCommand: client_iot_wireless_1.ListWirelessGatewayTaskDefinitionsCommand,
|
|
119
|
+
ListWirelessGatewaysCommand: client_iot_wireless_1.ListWirelessGatewaysCommand,
|
|
120
|
+
PutPositionConfigurationCommand: client_iot_wireless_1.PutPositionConfigurationCommand,
|
|
121
|
+
PutResourceLogLevelCommand: client_iot_wireless_1.PutResourceLogLevelCommand,
|
|
122
|
+
ResetAllResourceLogLevelsCommand: client_iot_wireless_1.ResetAllResourceLogLevelsCommand,
|
|
123
|
+
ResetResourceLogLevelCommand: client_iot_wireless_1.ResetResourceLogLevelCommand,
|
|
124
|
+
SendDataToMulticastGroupCommand: client_iot_wireless_1.SendDataToMulticastGroupCommand,
|
|
125
|
+
SendDataToWirelessDeviceCommand: client_iot_wireless_1.SendDataToWirelessDeviceCommand,
|
|
126
|
+
StartBulkAssociateWirelessDeviceWithMulticastGroupCommand: client_iot_wireless_1.StartBulkAssociateWirelessDeviceWithMulticastGroupCommand,
|
|
127
|
+
StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand: client_iot_wireless_1.StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand,
|
|
128
|
+
StartFuotaTaskCommand: client_iot_wireless_1.StartFuotaTaskCommand,
|
|
129
|
+
StartMulticastGroupSessionCommand: client_iot_wireless_1.StartMulticastGroupSessionCommand,
|
|
130
|
+
StartSingleWirelessDeviceImportTaskCommand: client_iot_wireless_1.StartSingleWirelessDeviceImportTaskCommand,
|
|
131
|
+
StartWirelessDeviceImportTaskCommand: client_iot_wireless_1.StartWirelessDeviceImportTaskCommand,
|
|
132
|
+
TagResourceCommand: client_iot_wireless_1.TagResourceCommand,
|
|
133
|
+
TestWirelessDeviceCommand: client_iot_wireless_1.TestWirelessDeviceCommand,
|
|
134
|
+
UntagResourceCommand: client_iot_wireless_1.UntagResourceCommand,
|
|
135
|
+
UpdateDestinationCommand: client_iot_wireless_1.UpdateDestinationCommand,
|
|
136
|
+
UpdateEventConfigurationByResourceTypesCommand: client_iot_wireless_1.UpdateEventConfigurationByResourceTypesCommand,
|
|
137
|
+
UpdateFuotaTaskCommand: client_iot_wireless_1.UpdateFuotaTaskCommand,
|
|
138
|
+
UpdateLogLevelsByResourceTypesCommand: client_iot_wireless_1.UpdateLogLevelsByResourceTypesCommand,
|
|
139
|
+
UpdateMetricConfigurationCommand: client_iot_wireless_1.UpdateMetricConfigurationCommand,
|
|
140
|
+
UpdateMulticastGroupCommand: client_iot_wireless_1.UpdateMulticastGroupCommand,
|
|
141
|
+
UpdateNetworkAnalyzerConfigurationCommand: client_iot_wireless_1.UpdateNetworkAnalyzerConfigurationCommand,
|
|
142
|
+
UpdatePartnerAccountCommand: client_iot_wireless_1.UpdatePartnerAccountCommand,
|
|
143
|
+
UpdatePositionCommand: client_iot_wireless_1.UpdatePositionCommand,
|
|
144
|
+
UpdateResourceEventConfigurationCommand: client_iot_wireless_1.UpdateResourceEventConfigurationCommand,
|
|
145
|
+
UpdateResourcePositionCommand: client_iot_wireless_1.UpdateResourcePositionCommand,
|
|
146
|
+
UpdateWirelessDeviceCommand: client_iot_wireless_1.UpdateWirelessDeviceCommand,
|
|
147
|
+
UpdateWirelessDeviceImportTaskCommand: client_iot_wireless_1.UpdateWirelessDeviceImportTaskCommand,
|
|
148
|
+
UpdateWirelessGatewayCommand: client_iot_wireless_1.UpdateWirelessGatewayCommand,
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* @since 1.0.0
|
|
152
|
+
* @category constructors
|
|
153
|
+
*/
|
|
154
|
+
exports.makeIoTWirelessService = effect_1.Effect.gen(function* () {
|
|
155
|
+
const client = yield* Instance.IoTWirelessClientInstance;
|
|
156
|
+
return commons_1.Service.fromClientAndCommands(client, commands, Errors_js_1.AllServiceErrors);
|
|
157
|
+
});
|
|
158
|
+
/**
|
|
159
|
+
* @since 1.0.0
|
|
160
|
+
* @category models
|
|
161
|
+
*/
|
|
162
|
+
class IoTWirelessService extends effect_1.Effect.Tag("@effect-aws/client-iot-wireless/IoTWirelessService")() {
|
|
163
|
+
static defaultLayer = effect_1.Layer.effect(this, exports.makeIoTWirelessService).pipe(effect_1.Layer.provide(Instance.layer));
|
|
164
|
+
static layer = (config) => effect_1.Layer.effect(this, exports.makeIoTWirelessService).pipe(effect_1.Layer.provide(Instance.layer), effect_1.Layer.provide(IoTWirelessServiceConfig.setIoTWirelessServiceConfig(config)));
|
|
165
|
+
static baseLayer = (evaluate) => effect_1.Layer.effect(this, exports.makeIoTWirelessService).pipe(effect_1.Layer.provide(effect_1.Layer.effect(Instance.IoTWirelessClientInstance, effect_1.Effect.map(IoTWirelessServiceConfig.toIoTWirelessClientConfig, evaluate))));
|
|
166
|
+
}
|
|
167
|
+
exports.IoTWirelessService = IoTWirelessService;
|
|
168
|
+
//# sourceMappingURL=IoTWirelessService.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IoTWirelessService.js","sourceRoot":"","sources":["../../src/IoTWirelessService.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import type { IoTWirelessClientConfig } from "@aws-sdk/client-iot-wireless";
|
|
5
|
+
import { Effect, Layer } from "effect";
|
|
6
|
+
import type { IoTWirelessService } from "./IoTWirelessService.js";
|
|
7
|
+
/**
|
|
8
|
+
* @since 1.0.0
|
|
9
|
+
* @category iot-wireless service config
|
|
10
|
+
*/
|
|
11
|
+
export declare const withIoTWirelessServiceConfig: {
|
|
12
|
+
(config: IoTWirelessService.Config): <A, E, R>(effect: Effect.Effect<A, E, R>) => Effect.Effect<A, E, R>;
|
|
13
|
+
<A, E, R>(effect: Effect.Effect<A, E, R>, config: IoTWirelessService.Config): Effect.Effect<A, E, R>;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @since 1.0.0
|
|
17
|
+
* @category iot-wireless service config
|
|
18
|
+
*/
|
|
19
|
+
export declare const setIoTWirelessServiceConfig: (config: IoTWirelessService.Config) => Layer.Layer<never, never, never>;
|
|
20
|
+
/**
|
|
21
|
+
* @since 1.0.0
|
|
22
|
+
* @category adapters
|
|
23
|
+
*/
|
|
24
|
+
export declare const toIoTWirelessClientConfig: Effect.Effect<IoTWirelessClientConfig>;
|
|
25
|
+
//# sourceMappingURL=IoTWirelessServiceConfig.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IoTWirelessServiceConfig.d.ts","sourceRoot":"","sources":["../../src/IoTWirelessServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAE5E,OAAO,EAAE,MAAM,EAAY,KAAK,EAAE,MAAM,QAAQ,CAAC;AAGjD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAWlE;;;GAGG;AACH,eAAO,MAAM,4BAA4B,EAAE;IACzC,CAAC,MAAM,EAAE,kBAAkB,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IACzG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,kBAAkB,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CAKtG,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,2BAA2B,WAAY,mBAAmB,MAAM,qCACf,CAAC;AAE/D;;;GAGG;AACH,eAAO,MAAM,yBAAyB,EAAE,MAAM,CAAC,MAAM,CAAC,uBAAuB,CAQ3E,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.toIoTWirelessClientConfig = exports.setIoTWirelessServiceConfig = exports.withIoTWirelessServiceConfig = void 0;
|
|
4
|
+
const commons_1 = require("@effect-aws/commons");
|
|
5
|
+
const effect_1 = require("effect");
|
|
6
|
+
const Function_1 = require("effect/Function");
|
|
7
|
+
const GlobalValue_1 = require("effect/GlobalValue");
|
|
8
|
+
/**
|
|
9
|
+
* @since 1.0.0
|
|
10
|
+
* @category iot-wireless service config
|
|
11
|
+
*/
|
|
12
|
+
const currentIoTWirelessServiceConfig = (0, GlobalValue_1.globalValue)("@effect-aws/client-iot-wireless/currentIoTWirelessServiceConfig", () => effect_1.FiberRef.unsafeMake({}));
|
|
13
|
+
/**
|
|
14
|
+
* @since 1.0.0
|
|
15
|
+
* @category iot-wireless service config
|
|
16
|
+
*/
|
|
17
|
+
exports.withIoTWirelessServiceConfig = (0, Function_1.dual)(2, (effect, config) => effect_1.Effect.locally(effect, currentIoTWirelessServiceConfig, config));
|
|
18
|
+
/**
|
|
19
|
+
* @since 1.0.0
|
|
20
|
+
* @category iot-wireless service config
|
|
21
|
+
*/
|
|
22
|
+
const setIoTWirelessServiceConfig = (config) => effect_1.Layer.locallyScoped(currentIoTWirelessServiceConfig, config);
|
|
23
|
+
exports.setIoTWirelessServiceConfig = setIoTWirelessServiceConfig;
|
|
24
|
+
/**
|
|
25
|
+
* @since 1.0.0
|
|
26
|
+
* @category adapters
|
|
27
|
+
*/
|
|
28
|
+
exports.toIoTWirelessClientConfig = effect_1.Effect.gen(function* () {
|
|
29
|
+
const { logger: serviceLogger, ...config } = yield* effect_1.FiberRef.get(currentIoTWirelessServiceConfig);
|
|
30
|
+
const logger = serviceLogger === true
|
|
31
|
+
? yield* commons_1.ServiceLogger.toClientLogger(commons_1.ServiceLogger.defaultServiceLogger)
|
|
32
|
+
: (serviceLogger ? yield* commons_1.ServiceLogger.toClientLogger(commons_1.ServiceLogger.make(serviceLogger)) : undefined);
|
|
33
|
+
return { logger, ...config };
|
|
34
|
+
});
|
|
35
|
+
//# sourceMappingURL=IoTWirelessServiceConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IoTWirelessServiceConfig.js","sourceRoot":"","sources":["../../src/IoTWirelessServiceConfig.ts"],"names":[],"mappings":";;;AAIA,iDAAoD;AACpD,mCAAiD;AACjD,8CAAuC;AACvC,oDAAiD;AAGjD;;;GAGG;AACH,MAAM,+BAA+B,GAAG,IAAA,yBAAW,EACjD,iEAAiE,EACjE,GAAG,EAAE,CAAC,iBAAQ,CAAC,UAAU,CAA4B,EAAE,CAAC,CACzD,CAAC;AAEF;;;GAGG;AACU,QAAA,4BAA4B,GAGrC,IAAA,eAAI,EACN,CAAC,EACD,CAAU,MAA8B,EAAE,MAAiC,EAA0B,EAAE,CACrG,eAAM,CAAC,OAAO,CAAC,MAAM,EAAE,+BAA+B,EAAE,MAAM,CAAC,CAClE,CAAC;AAEF;;;GAGG;AACI,MAAM,2BAA2B,GAAG,CAAC,MAAiC,EAAE,EAAE,CAC/E,cAAK,CAAC,aAAa,CAAC,+BAA+B,EAAE,MAAM,CAAC,CAAC;AADlD,QAAA,2BAA2B,+BACuB;AAE/D;;;GAGG;AACU,QAAA,yBAAyB,GAA2C,eAAM,CAAC,GAAG,CAAC,QAAQ,CAAC;IACnG,MAAM,EAAE,MAAM,EAAE,aAAa,EAAE,GAAG,MAAM,EAAE,GAAG,KAAK,CAAC,CAAC,iBAAQ,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAC;IAElG,MAAM,MAAM,GAAG,aAAa,KAAK,IAAI;QACnC,CAAC,CAAC,KAAK,CAAC,CAAC,uBAAa,CAAC,cAAc,CAAC,uBAAa,CAAC,oBAAoB,CAAC;QACzE,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,uBAAa,CAAC,cAAc,CAAC,uBAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;IAEzG,OAAO,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC;AAC/B,CAAC,CAAC,CAAC"}
|