@owox/connectors 0.11.0-next-20251023113356 → 0.11.0-next-20251023121218

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/dist/index.cjs CHANGED
@@ -39,7 +39,8 @@ var RUN_CONFIG_TYPE = {
39
39
  var CONFIG_ATTRIBUTES = {
40
40
  MANUAL_BACKFILL: "MANUAL_BACKFILL",
41
41
  HIDE_IN_CONFIG_FORM: "HIDE_IN_CONFIG_FORM",
42
- SECRET: "SECRET"
42
+ SECRET: "SECRET",
43
+ ADVANCED: "ADVANCED"
43
44
  };
44
45
  class AbstractException extends Error {
45
46
  /**
@@ -535,11 +536,13 @@ var AbstractSource = class AbstractSource2 {
535
536
  this.config = config.mergeParameters({
536
537
  MaxFetchRetries: {
537
538
  requiredType: "number",
538
- default: 3
539
+ default: 3,
540
+ attributes: [CONFIG_ATTRIBUTES.ADVANCED]
539
541
  },
540
542
  InitialRetryDelay: {
541
543
  requiredType: "number",
542
- default: 5e3
544
+ default: 5e3,
545
+ attributes: [CONFIG_ATTRIBUTES.ADVANCED]
543
546
  }
544
547
  });
545
548
  }
@@ -1000,7 +1003,7 @@ class AbstractConfig {
1000
1003
  this.addParameter("Environment", {
1001
1004
  value: AbstractConfig.detectEnvironment(),
1002
1005
  requiredType: "number",
1003
- showInUI: false
1006
+ attributes: [CONFIG_ATTRIBUTES.HIDE_IN_CONFIG_FORM, CONFIG_ATTRIBUTES.ADVANCED]
1004
1007
  });
1005
1008
  for (var name in configData) {
1006
1009
  this.addParameter(name, configData[name]);
package/dist/index.js CHANGED
@@ -44,7 +44,8 @@ var require_index = __commonJS({
44
44
  var CONFIG_ATTRIBUTES = {
45
45
  MANUAL_BACKFILL: "MANUAL_BACKFILL",
46
46
  HIDE_IN_CONFIG_FORM: "HIDE_IN_CONFIG_FORM",
47
- SECRET: "SECRET"
47
+ SECRET: "SECRET",
48
+ ADVANCED: "ADVANCED"
48
49
  };
49
50
  class AbstractException extends Error {
50
51
  /**
@@ -540,11 +541,13 @@ var require_index = __commonJS({
540
541
  this.config = config.mergeParameters({
541
542
  MaxFetchRetries: {
542
543
  requiredType: "number",
543
- default: 3
544
+ default: 3,
545
+ attributes: [CONFIG_ATTRIBUTES.ADVANCED]
544
546
  },
545
547
  InitialRetryDelay: {
546
548
  requiredType: "number",
547
- default: 5e3
549
+ default: 5e3,
550
+ attributes: [CONFIG_ATTRIBUTES.ADVANCED]
548
551
  }
549
552
  });
550
553
  }
@@ -1005,7 +1008,7 @@ var require_index = __commonJS({
1005
1008
  this.addParameter("Environment", {
1006
1009
  value: AbstractConfig.detectEnvironment(),
1007
1010
  requiredType: "number",
1008
- showInUI: false
1011
+ attributes: [CONFIG_ATTRIBUTES.HIDE_IN_CONFIG_FORM, CONFIG_ATTRIBUTES.ADVANCED]
1009
1012
  });
1010
1013
  for (var name in configData) {
1011
1014
  this.addParameter(name, configData[name]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owox/connectors",
3
- "version": "0.11.0-next-20251023113356",
3
+ "version": "0.11.0-next-20251023121218",
4
4
  "description": "Connectors and storages for different data sources",
5
5
  "license": "MIT",
6
6
  "publishConfig": {