jmapcloud-ng-types 1.1.22 → 1.1.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jmapcloud-ng-types",
3
- "version": "1.1.22",
3
+ "version": "1.1.23",
4
4
  "description": "JMap Cloud specific version of JMap Cloud NG types and interfaces",
5
5
  "main": "src/app.ts",
6
6
  "types": "ambient.d.ts",
package/public/app.d.ts CHANGED
@@ -28,7 +28,7 @@ declare global {
28
28
  *
29
29
  * This is the JMap Cloud NG API documentation.
30
30
  *
31
- * Examples are available <a href="https://doc.k2geospatial.com/jmap/doc/ng_dev/examples.html" target="_blank">here</a>.
31
+ * Examples are available <a href="https://docs.jmapcloud.io/en/jmap-ng/jmap-ng-developer-documentation/examples" target="_blank">here</a>.
32
32
  *
33
33
  * You can customize JMap Cloud NG by providing startup options ([JApplicationOptions](../interfaces/JMap_Cloud_NG___Types.JApplicationOptions.html)).
34
34
  */
package/public/form.d.ts CHANGED
@@ -32,6 +32,7 @@ export type JSubFormDialogParams =
32
32
  | {
33
33
  type: "layerUpdate"
34
34
  dataSourceId: string
35
+ organizationId: string
35
36
  featureId: JId
36
37
  isReadOnly: boolean
37
38
  onSubmit?: () => void
@@ -39,6 +40,7 @@ export type JSubFormDialogParams =
39
40
  | {
40
41
  type: "tableUpdate"
41
42
  dataSourceId: string
43
+ organizationId: string
42
44
  rowId: number
43
45
  isReadOnly: boolean
44
46
  onSubmit?: () => void
@@ -46,6 +48,7 @@ export type JSubFormDialogParams =
46
48
  | {
47
49
  type: "tableCreate"
48
50
  dataSourceId: string
51
+ organizationId: string
49
52
  isReadOnly: false
50
53
  onSubmit?: () => void
51
54
  }