@finsemble/finsemble-core 10.0.0-iocd-3 → 10.0.0-iocd-4

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.
@@ -83,6 +83,18 @@
83
83
  "type": "object",
84
84
  "additionalProperties": false,
85
85
  "properties": {
86
+ "clientKey": {
87
+ "description": "Set this to your io.Connect Desktop client key to generate installers for your end users",
88
+ "type": "string"
89
+ },
90
+ "iocdInstaller": {
91
+ "description": "Set this to the location on your filesystem of the iocd installer that you were provided. You can also set the env variable IOCDINSTALLER",
92
+ "type": "string"
93
+ },
94
+ "windowsSign": {
95
+ "description": "A valid parameter set for @electron/windows-sign. This can be used for advanced signing. This is only available when using io.Connect Desktop.",
96
+ "type": "object"
97
+ },
86
98
  "manifestUrl": {
87
99
  "description": "The URL of the hosted production Finsemble manifest for this installer configuration.",
88
100
  "type": "string"
@@ -125,7 +137,7 @@
125
137
  "type": "string"
126
138
  },
127
139
  "certificateFile": {
128
- "description": "The path to an Authenticode Code Signing Certificate for code-signing the application wioth signtool.exe.",
140
+ "description": "The path to an Authenticode Code Signing Certificate for code-signing the application with signtool.exe.",
129
141
  "type": ["string", "null"]
130
142
  },
131
143
  "certificatePassword": {
@@ -12,8 +12,8 @@
12
12
  "$schema": {
13
13
  "type": "string"
14
14
  },
15
- "iop": {
16
- "$ref": "#/definitions/iop"
15
+ "iocd": {
16
+ "$ref": "#/definitions/iocd"
17
17
  },
18
18
  "comment": {
19
19
  "type": "string"
@@ -359,8 +359,8 @@
359
359
  "$schema": {
360
360
  "type": "string"
361
361
  },
362
- "iop": {
363
- "$ref": "#/definitions/iop"
362
+ "iocd": {
363
+ "$ref": "#/definitions/iocd"
364
364
  },
365
365
  "comment": {
366
366
  "type": "string"
@@ -424,8 +424,8 @@
424
424
  "$schema": {
425
425
  "type": "string"
426
426
  },
427
- "iop": {
428
- "$ref": "#/definitions/iop"
427
+ "iocd": {
428
+ "$ref": "#/definitions/iocd"
429
429
  },
430
430
  "comment": {
431
431
  "type": "string"
@@ -828,7 +828,7 @@
828
828
  },
829
829
  "additionalProperties": false
830
830
  },
831
- "iop": {
831
+ "iocd": {
832
832
  "description": "Properties that control how Finsemble behaves when running on the io.Connect Desktop platform",
833
833
  "type": "object",
834
834
  "properties": {
@@ -836,7 +836,7 @@
836
836
  "type": "boolean",
837
837
  "description": "Set to true to enable the logger recipe that listens on 'logger.service.logMessages'"
838
838
  },
839
- "iopDialogs": {
839
+ "iocdDialogs": {
840
840
  "type": "boolean",
841
841
  "description": "When true, io.Connect Desktop's default dialogs will be used instead of Finsemble's"
842
842
  }