dataverse-utils 3.0.1 → 3.0.2

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.
@@ -63,9 +63,7 @@ async function createAssembly(config, content, apiConfig, solution) {
63
63
  version: config.version,
64
64
  publickeytoken: config.name,
65
65
  sourcetype: 0,
66
- culture: '',
67
- unsecureconfiguration: config.unsecureconfiguration,
68
- secureconfiguration: config.secureconfiguration
66
+ culture: ''
69
67
  };
70
68
  const options = {};
71
69
  if (solution) {
@@ -81,9 +79,7 @@ async function updateAssembly(config, content, apiConfig) {
81
79
  logger_1.logger.info(`update assembly ${config.name}`);
82
80
  const assembly = {
83
81
  content: content,
84
- version: config.version,
85
- unsecureconfiguration: config.unsecureconfiguration,
86
- secureconfiguration: config.secureconfiguration
82
+ version: config.version
87
83
  };
88
84
  const result = await (0, node_1.update)(apiConfig, 'pluginassemblies', config.pluginassemblyid, assembly);
89
85
  if (result?.error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataverse-utils",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "license": "MIT",
5
5
  "description": "Utilities for interacting with Dataverse environments",
6
6
  "main": "lib/index.js",