@cipherstash/stack 0.6.0 → 0.7.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @cipherstash/stack
2
2
 
3
+ ## 0.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1be8f81: Exposed a public method on the Encryption client to expose the build Encryption schema.
8
+
3
9
  ## 0.6.0
4
10
 
5
11
  ### Minor Changes
package/dist/bin/stash.js CHANGED
@@ -4261,6 +4261,14 @@ var EncryptionClient = class {
4261
4261
  workspaceId: this.workspaceId
4262
4262
  };
4263
4263
  }
4264
+ /**
4265
+ * Get the encrypt config object.
4266
+ *
4267
+ * @returns The encrypt config object.
4268
+ */
4269
+ getEncryptConfig() {
4270
+ return this.encryptConfig;
4271
+ }
4264
4272
  };
4265
4273
  var Encryption = async (config3) => {
4266
4274
  const { schemas, config: clientConfig } = config3;