Skip to content

Commit

Permalink
feat: generate effectful iot clients
Browse files Browse the repository at this point in the history
  • Loading branch information
floydspace committed Jan 18, 2025
1 parent eabaa4a commit 571cd4a
Show file tree
Hide file tree
Showing 149 changed files with 17,441 additions and 686 deletions.
10 changes: 10 additions & 0 deletions .changeset/bright-maps-provide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"@effect-aws/client-iot-jobs-data-plane": major
"@effect-aws/client-iot-events-data": major
"@effect-aws/client-iot-data-plane": major
"@effect-aws/client-iot-wireless": major
"@effect-aws/client-iot-events": major
"@effect-aws/client-iot": major
---

generate effectful iot clients (closes [#94](https://github.com/floydspace/effect-aws/issues/94))
48 changes: 48 additions & 0 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,54 @@ new TypeScriptLibProject({
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-iot",
deps: [...commonDeps, "@aws-sdk/client-iot@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-iot-wireless",
deps: [...commonDeps, "@aws-sdk/client-iot-wireless@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-iot-data-plane",
deps: [...commonDeps, "@aws-sdk/client-iot-data-plane@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-iot-jobs-data-plane",
deps: [...commonDeps, "@aws-sdk/client-iot-jobs-data-plane@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-iot-events",
deps: [...commonDeps, "@aws-sdk/client-iot-events@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-iot-events-data",
deps: [...commonDeps, "@aws-sdk/client-iot-events-data@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

project.addImplicitDependency(dynamodbLib, dynamodbClient);
project.addImplicitDependency(secretsManager, secretsManagerClient);
project.addImplicitDependency(ssm, ssmClient);
Expand Down
6 changes: 6 additions & 0 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

126 changes: 126 additions & 0 deletions packages/client-iot-data-plane/.eslintrc.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions packages/client-iot-data-plane/.gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions packages/client-iot-data-plane/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions packages/client-iot-data-plane/.npmignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/client-iot-data-plane/.prettierignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions packages/client-iot-data-plane/.prettierrc.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 72 additions & 0 deletions packages/client-iot-data-plane/.projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions packages/client-iot-data-plane/.projen/files.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 571cd4a

Please sign in to comment.