@finsemble/finsemble-core 8.11.3 → 8.12.0-beta.1

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.
@@ -181,7 +181,8 @@
181
181
  "contextMenu": false,
182
182
  "showTaskbarIcon": true,
183
183
  "alwaysOnTop": false,
184
- "resizable": true
184
+ "resizable": true,
185
+ "cornerRounding": false
185
186
  }
186
187
  },
187
188
  "component": {
@@ -48,7 +48,7 @@
48
48
  "bootParams": {
49
49
  "stage": "authentication",
50
50
  "dependencies": ["authenticationService"],
51
- "timeout": 36000000
51
+ "timeout": 2147483647
52
52
  }
53
53
  },
54
54
  "initializeSystemManagerAPITask": {
@@ -12,6 +12,9 @@
12
12
  "$schema": {
13
13
  "type": "string"
14
14
  },
15
+ "iocd": {
16
+ "$ref": "#/definitions/iocd"
17
+ },
15
18
  "comment": {
16
19
  "type": "string"
17
20
  },
@@ -356,6 +359,9 @@
356
359
  "$schema": {
357
360
  "type": "string"
358
361
  },
362
+ "iocd": {
363
+ "$ref": "#/definitions/iocd"
364
+ },
359
365
  "comment": {
360
366
  "type": "string"
361
367
  },
@@ -418,6 +424,9 @@
418
424
  "$schema": {
419
425
  "type": "string"
420
426
  },
427
+ "iocd": {
428
+ "$ref": "#/definitions/iocd"
429
+ },
421
430
  "comment": {
422
431
  "type": "string"
423
432
  },
@@ -819,6 +828,55 @@
819
828
  },
820
829
  "additionalProperties": false
821
830
  },
831
+ "iocd": {
832
+ "description": "Properties that control how Finsemble behaves when running on the io.Connect Desktop platform",
833
+ "type": "object",
834
+ "properties": {
835
+ "enableLegacyLoggerRecipe": {
836
+ "type": "boolean",
837
+ "description": "Set to true to enable the logger recipe that listens on 'logger.service.logMessages'"
838
+ },
839
+ "iocdDialogs": {
840
+ "type": "boolean",
841
+ "description": "When true, io.Connect Desktop's default dialogs will be used instead of Finsemble's"
842
+ },
843
+ "timeout": {
844
+ "type": "number",
845
+ "description": "Set to the number of milliseconds before the fsbl-service pops up with a timeout error. Default is 40000."
846
+ },
847
+ "data": {
848
+ "type": "object",
849
+ "description": "Determines the iocd migration strategy for various categories of Finsemble end user data",
850
+ "properties": {
851
+ "preferences": {
852
+ "description": "The migration strategy for user preferences",
853
+ "$ref": "#/definitions/iocdDataMigrationSetting"
854
+ },
855
+ "workspaces": {
856
+ "description": "The migration strategy for workspaces",
857
+ "$ref": "#/definitions/iocdDataMigrationSetting"
858
+ }
859
+ }
860
+ }
861
+ }
862
+ },
863
+ "iocdDataMigrationSetting": {
864
+ "type": "object",
865
+ "description": "Migration strategy for a Finsemble end user data category",
866
+ "properties": {
867
+ "load": {
868
+ "type": "string",
869
+ "description": "Specifies where to load data at boot. `storageAdapter` loads from the storage adapter. `iocd` loads from the relevant iocd store. `oneTimeConversion` loads from storageAdapter only once, thereafter loads from iocd store.",
870
+ "default": "iocd",
871
+ "enum": ["storageAdapter", "oneTimeConversion", "iocd"]
872
+ },
873
+ "saveToStorageAdapter": {
874
+ "type": "boolean",
875
+ "description": "Specifies whether to save data back to the storageAdapter. (Data is always saved to the relevant iocd store.)",
876
+ "default": false
877
+ }
878
+ }
879
+ },
822
880
  "manifestStartupApp": {
823
881
  "description": "Manifest property for the initial startup app, which reference Finsemble's System Manager.",
824
882
  "type": "object",
@@ -2568,6 +2626,9 @@
2568
2626
  "properties": {
2569
2627
  "Finsemble": {
2570
2628
  "$ref": "#/definitions/component"
2629
+ },
2630
+ "io.Connect": {
2631
+ "$ref": "https://docs.interop.io/desktop/assets/configuration/application.json#/definitions/application"
2571
2632
  }
2572
2633
  }
2573
2634
  },
@@ -4584,6 +4645,8 @@
4584
4645
  },
4585
4646
  "cornerRounding": {
4586
4647
  "description": "Specifies corner rounding for a window.",
4648
+ "type": ["boolean", "object"],
4649
+ "default": true,
4587
4650
  "properties": {
4588
4651
  "width": {
4589
4652
  "type": "number",
@@ -12,6 +12,9 @@
12
12
  "$schema": {
13
13
  "type": "string"
14
14
  },
15
+ "iocd": {
16
+ "$ref": "#/definitions/iocd"
17
+ },
15
18
  "comment": {
16
19
  "type": "string"
17
20
  },
@@ -356,6 +359,9 @@
356
359
  "$schema": {
357
360
  "type": "string"
358
361
  },
362
+ "iocd": {
363
+ "$ref": "#/definitions/iocd"
364
+ },
359
365
  "comment": {
360
366
  "type": "string"
361
367
  },
@@ -418,6 +424,9 @@
418
424
  "$schema": {
419
425
  "type": "string"
420
426
  },
427
+ "iocd": {
428
+ "$ref": "#/definitions/iocd"
429
+ },
421
430
  "comment": {
422
431
  "type": "string"
423
432
  },
@@ -819,6 +828,55 @@
819
828
  },
820
829
  "additionalProperties": false
821
830
  },
831
+ "iocd": {
832
+ "description": "Properties that control how Finsemble behaves when running on the io.Connect Desktop platform",
833
+ "type": "object",
834
+ "properties": {
835
+ "enableLegacyLoggerRecipe": {
836
+ "type": "boolean",
837
+ "description": "Set to true to enable the logger recipe that listens on 'logger.service.logMessages'"
838
+ },
839
+ "iocdDialogs": {
840
+ "type": "boolean",
841
+ "description": "When true, io.Connect Desktop's default dialogs will be used instead of Finsemble's"
842
+ },
843
+ "timeout": {
844
+ "type": "number",
845
+ "description": "Set to the number of milliseconds before the fsbl-service pops up with a timeout error. Default is 40000."
846
+ },
847
+ "data": {
848
+ "type": "object",
849
+ "description": "Determines the iocd migration strategy for various categories of Finsemble end user data",
850
+ "properties": {
851
+ "preferences": {
852
+ "description": "The migration strategy for user preferences",
853
+ "$ref": "#/definitions/iocdDataMigrationSetting"
854
+ },
855
+ "workspaces": {
856
+ "description": "The migration strategy for workspaces",
857
+ "$ref": "#/definitions/iocdDataMigrationSetting"
858
+ }
859
+ }
860
+ }
861
+ }
862
+ },
863
+ "iocdDataMigrationSetting": {
864
+ "type": "object",
865
+ "description": "Migration strategy for a Finsemble end user data category",
866
+ "properties": {
867
+ "load": {
868
+ "type": "string",
869
+ "description": "Specifies where to load data at boot. `storageAdapter` loads from the storage adapter. `iocd` loads from the relevant iocd store. `oneTimeConversion` loads from storageAdapter only once, thereafter loads from iocd store.",
870
+ "default": "iocd",
871
+ "enum": ["storageAdapter", "oneTimeConversion", "iocd"]
872
+ },
873
+ "saveToStorageAdapter": {
874
+ "type": "boolean",
875
+ "description": "Specifies whether to save data back to the storageAdapter. (Data is always saved to the relevant iocd store.)",
876
+ "default": false
877
+ }
878
+ }
879
+ },
822
880
  "manifestStartupApp": {
823
881
  "description": "Manifest property for the initial startup app, which reference Finsemble's System Manager.",
824
882
  "type": "object",
@@ -2568,6 +2626,9 @@
2568
2626
  "properties": {
2569
2627
  "Finsemble": {
2570
2628
  "$ref": "#/definitions/component"
2629
+ },
2630
+ "io.Connect": {
2631
+ "$ref": "https://docs.interop.io/desktop/assets/configuration/application.json#/definitions/application"
2571
2632
  }
2572
2633
  }
2573
2634
  },
@@ -4584,6 +4645,8 @@
4584
4645
  },
4585
4646
  "cornerRounding": {
4586
4647
  "description": "Specifies corner rounding for a window.",
4648
+ "type": ["boolean", "object"],
4649
+ "default": true,
4587
4650
  "properties": {
4588
4651
  "width": {
4589
4652
  "type": "number",
@@ -181,7 +181,8 @@
181
181
  "contextMenu": false,
182
182
  "showTaskbarIcon": true,
183
183
  "alwaysOnTop": false,
184
- "resizable": true
184
+ "resizable": true,
185
+ "cornerRounding": false
185
186
  }
186
187
  },
187
188
  "component": {
@@ -48,7 +48,7 @@
48
48
  "bootParams": {
49
49
  "stage": "authentication",
50
50
  "dependencies": ["authenticationService"],
51
- "timeout": 36000000
51
+ "timeout": 2147483647
52
52
  }
53
53
  },
54
54
  "initializeSystemManagerAPITask": {
@@ -138,8 +138,8 @@
138
138
  }
139
139
  },
140
140
  "system": {
141
- "FSBLVersion": "8.11.3",
142
- "gitHash": "1113215b0c18640350e4cb1491fdefa3f0110d60",
141
+ "FSBLVersion": "8.12.0-beta.1",
142
+ "gitHash": "46c8f2eb5f997ab83e711d64905aaaaa8336c4a1",
143
143
  "finsembleLibraryPath": "$moduleRoot/FSBL.js",
144
144
  "premiumRoot": "$moduleRoot",
145
145
  "addFSBLWrappers": false,
@@ -12,6 +12,9 @@
12
12
  "$schema": {
13
13
  "type": "string"
14
14
  },
15
+ "iocd": {
16
+ "$ref": "#/definitions/iocd"
17
+ },
15
18
  "comment": {
16
19
  "type": "string"
17
20
  },
@@ -356,6 +359,9 @@
356
359
  "$schema": {
357
360
  "type": "string"
358
361
  },
362
+ "iocd": {
363
+ "$ref": "#/definitions/iocd"
364
+ },
359
365
  "comment": {
360
366
  "type": "string"
361
367
  },
@@ -418,6 +424,9 @@
418
424
  "$schema": {
419
425
  "type": "string"
420
426
  },
427
+ "iocd": {
428
+ "$ref": "#/definitions/iocd"
429
+ },
421
430
  "comment": {
422
431
  "type": "string"
423
432
  },
@@ -819,6 +828,55 @@
819
828
  },
820
829
  "additionalProperties": false
821
830
  },
831
+ "iocd": {
832
+ "description": "Properties that control how Finsemble behaves when running on the io.Connect Desktop platform",
833
+ "type": "object",
834
+ "properties": {
835
+ "enableLegacyLoggerRecipe": {
836
+ "type": "boolean",
837
+ "description": "Set to true to enable the logger recipe that listens on 'logger.service.logMessages'"
838
+ },
839
+ "iocdDialogs": {
840
+ "type": "boolean",
841
+ "description": "When true, io.Connect Desktop's default dialogs will be used instead of Finsemble's"
842
+ },
843
+ "timeout": {
844
+ "type": "number",
845
+ "description": "Set to the number of milliseconds before the fsbl-service pops up with a timeout error. Default is 40000."
846
+ },
847
+ "data": {
848
+ "type": "object",
849
+ "description": "Determines the iocd migration strategy for various categories of Finsemble end user data",
850
+ "properties": {
851
+ "preferences": {
852
+ "description": "The migration strategy for user preferences",
853
+ "$ref": "#/definitions/iocdDataMigrationSetting"
854
+ },
855
+ "workspaces": {
856
+ "description": "The migration strategy for workspaces",
857
+ "$ref": "#/definitions/iocdDataMigrationSetting"
858
+ }
859
+ }
860
+ }
861
+ }
862
+ },
863
+ "iocdDataMigrationSetting": {
864
+ "type": "object",
865
+ "description": "Migration strategy for a Finsemble end user data category",
866
+ "properties": {
867
+ "load": {
868
+ "type": "string",
869
+ "description": "Specifies where to load data at boot. `storageAdapter` loads from the storage adapter. `iocd` loads from the relevant iocd store. `oneTimeConversion` loads from storageAdapter only once, thereafter loads from iocd store.",
870
+ "default": "iocd",
871
+ "enum": ["storageAdapter", "oneTimeConversion", "iocd"]
872
+ },
873
+ "saveToStorageAdapter": {
874
+ "type": "boolean",
875
+ "description": "Specifies whether to save data back to the storageAdapter. (Data is always saved to the relevant iocd store.)",
876
+ "default": false
877
+ }
878
+ }
879
+ },
822
880
  "manifestStartupApp": {
823
881
  "description": "Manifest property for the initial startup app, which reference Finsemble's System Manager.",
824
882
  "type": "object",
@@ -2568,6 +2626,9 @@
2568
2626
  "properties": {
2569
2627
  "Finsemble": {
2570
2628
  "$ref": "#/definitions/component"
2629
+ },
2630
+ "io.Connect": {
2631
+ "$ref": "https://docs.interop.io/desktop/assets/configuration/application.json#/definitions/application"
2571
2632
  }
2572
2633
  }
2573
2634
  },
@@ -4584,6 +4645,8 @@
4584
4645
  },
4585
4646
  "cornerRounding": {
4586
4647
  "description": "Specifies corner rounding for a window.",
4648
+ "type": ["boolean", "object"],
4649
+ "default": true,
4587
4650
  "properties": {
4588
4651
  "width": {
4589
4652
  "type": "number",