@blocklet/server-js 1.17.3-beta-20251123-232619-53258789 → 1.17.3-beta-20251125-042047-1bcefd39

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/lib/node.d.ts CHANGED
@@ -2178,6 +2178,8 @@ declare namespace ABTNodeClient {
2178
2178
  interface RequestUpdateNginxHttpsCertInput {
2179
2179
  id: string;
2180
2180
  name: string;
2181
+ certificate: string;
2182
+ privateKey: string;
2181
2183
  }
2182
2184
 
2183
2185
  interface RequestUpdateOrgInput {
@@ -11224,6 +11224,26 @@
11224
11224
  "ofType": null
11225
11225
  },
11226
11226
  "defaultValue": null
11227
+ },
11228
+ {
11229
+ "name": "certificate",
11230
+ "description": null,
11231
+ "type": {
11232
+ "kind": "SCALAR",
11233
+ "name": "String",
11234
+ "ofType": null
11235
+ },
11236
+ "defaultValue": null
11237
+ },
11238
+ {
11239
+ "name": "privateKey",
11240
+ "description": null,
11241
+ "type": {
11242
+ "kind": "SCALAR",
11243
+ "name": "String",
11244
+ "ofType": null
11245
+ },
11246
+ "defaultValue": null
11227
11247
  }
11228
11248
  ],
11229
11249
  "interfaces": null,
package/lib/types.js CHANGED
@@ -2668,6 +2668,8 @@
2668
2668
  * @typedef {object} ABTNodeClient.RequestUpdateNginxHttpsCertInput
2669
2669
  * @property {string} id
2670
2670
  * @property {string} name
2671
+ * @property {string} certificate
2672
+ * @property {string} privateKey
2671
2673
  */
2672
2674
 
2673
2675
  /**