infisical-node
infisical-node copied to clipboard
♾ Official Infisical SDK for Node
getting ``` This expression is not constructable. Type 'typeof import("/home/uri/uriva/my-project/node_modules/infisical-node/lib/index")' has no construct signatures.ts(2351) ``` for ```js import { map, pipe } from "gamla"; import InfisicalClient from "infisical-node"; export const...
# Folder API endpoints Implements the basic [folder logic from the API](https://infisical.com/docs/api-reference/endpoints/folders/list). This will allow for the creation, listing, updating, and deletion of folders via the SDK. Not for this...
Currently the Node SDK doesn't support secret referencing. This PR fixes Issue #18 ``` NESTED_SECRET_1 = ${NESTED_SECRET_2} NESTED_SECRET_2 = ${NESTED_SECRET_3} NESTED_SECRET_3 = DEEPLY_NESTED_SECRET ``` Each of these secrets should resolve...
It's super annoying that this won't fail if you give an api key with the incorrect permissions
It's the first time I'm using Infisical (self-hosted via docker at the last version you released) and the `infisical-node`. I tried to fetch all secrets from a given path (e.g....
It would be so useful to have the ability to specify the path of an absolute env var without needing to specify the environment slug at the beginning (e.g. ${db.PASSWORD}...
The expected "types" directory doesn't seem to be present in the installed package under node_modules/infisical-node/api infisical-node@^1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/infisical-node/-/infisical-node-1.3.2.tgz#37c73dde05e8bf914fc7d3c0e1936524aedd9ddf" integrity sha512-o1rxfOBAmpTiipka9Xnfa2AgTS8CkJHo0aRQwk6UGi+yEkKzXS7dDM7bZD56M/z+yKGLK15QkfFGZXp1VomlHw== dependencies: axios "^1.3.3" dotenv "^16.0.3" tweetnacl "^1.0.3" tweetnacl-util...
Address export issue of types and interfaces related issue: https://github.com/Infisical/infisical-node/issues/8
The package does not export types correctly. As an example, the config type `InfisicalClientOptions` is only available via the source `import { InfisicalClientOptions } from 'infisical-node/src/types/InfisicalClient'` Normally, there should also...
It makes no sense to return cached responses for request of creating, updating or removing secrets if they are not successfully. I would expect, that these methods are throwing or...