@esri/hub-common 13.25.2 → 13.26.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.
@@ -954,6 +954,13 @@ export interface ICreateDiscussionSetting {
954
954
  type: DiscussionSettingType;
955
955
  settings: ISettings;
956
956
  }
957
+ /**
958
+ * @export
959
+ * @interface IUpdateDiscussionSetting
960
+ */
961
+ export interface IUpdateDiscussionSetting {
962
+ settings: Partial<ISettings>;
963
+ }
957
964
  /**
958
965
  * parameters for creating a discussionSetting
959
966
  *
@@ -974,6 +981,17 @@ export interface ICreateDiscussionSettingParams extends IDiscussionsRequestOptio
974
981
  export interface IFetchDiscussionSettingParams extends IDiscussionsRequestOptions {
975
982
  id: string;
976
983
  }
984
+ /**
985
+ * parameters for updating a discussionSetting
986
+ *
987
+ * @export
988
+ * @interface IUpdateDiscussionSettingParams
989
+ * @extends {IDiscussionsRequestOptions}
990
+ */
991
+ export interface IUpdateDiscussionSettingParams extends IDiscussionsRequestOptions {
992
+ id: string;
993
+ data: IUpdateDiscussionSetting;
994
+ }
977
995
  /**
978
996
  * parameters for removing a discussionSetting
979
997
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esri/hub-common",
3
- "version": "13.25.2",
3
+ "version": "13.26.0",
4
4
  "description": "Common TypeScript types and utility functions for @esri/hub.js.",
5
5
  "main": "dist/node/index.js",
6
6
  "module": "dist/esm/index.js",