@opencxh/domain 1.225.0 → 1.226.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.
@@ -77,6 +77,24 @@ export interface SyncSettingsField {
77
77
  * without the source changing. A hint, not a promise.
78
78
  */
79
79
  resource?: string;
80
+ /**
81
+ * Rarely needed: the form hides it behind a collapsed "Advanced".
82
+ *
83
+ * Declared by the source and not guessed by the form, because only the source knows which of
84
+ * its settings are the everyday ones. A generic source has fifteen settings of which nine are
85
+ * paging and delta plumbing, and showing those at the same level as "which tool" is what makes
86
+ * such a form unreadable.
87
+ */
88
+ advanced?: boolean;
89
+ /**
90
+ * This setting changes **what a trial call answers with**, so it belongs with that call.
91
+ *
92
+ * Two things at once: the form puts the field next to the trial-run button instead of among
93
+ * the rest, and the trial call sends it along. Without it the form would have to know which
94
+ * keys of which source are probe input — vendor knowledge in exactly the place that must not
95
+ * have any.
96
+ */
97
+ probe?: boolean;
80
98
  }
81
99
  export interface SyncSourceDefinition {
82
100
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencxh/domain",
3
- "version": "1.225.0",
3
+ "version": "1.226.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",