@closerplatform/spinner-openapi 0.12.55 → 0.12.58
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/dist/api.d.ts +18 -0
- package/dist/api.js +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -3629,6 +3629,12 @@ export interface MainNotificationDto {
|
|
|
3629
3629
|
* @interface MainNotificationPatchForm
|
|
3630
3630
|
*/
|
|
3631
3631
|
export interface MainNotificationPatchForm {
|
|
3632
|
+
/**
|
|
3633
|
+
*
|
|
3634
|
+
* @type {string}
|
|
3635
|
+
* @memberof MainNotificationPatchForm
|
|
3636
|
+
*/
|
|
3637
|
+
text?: string;
|
|
3632
3638
|
/**
|
|
3633
3639
|
*
|
|
3634
3640
|
* @type {boolean}
|
|
@@ -3642,6 +3648,12 @@ export interface MainNotificationPatchForm {
|
|
|
3642
3648
|
* @interface MainNotificationPostForm
|
|
3643
3649
|
*/
|
|
3644
3650
|
export interface MainNotificationPostForm {
|
|
3651
|
+
/**
|
|
3652
|
+
*
|
|
3653
|
+
* @type {string}
|
|
3654
|
+
* @memberof MainNotificationPostForm
|
|
3655
|
+
*/
|
|
3656
|
+
text: string;
|
|
3645
3657
|
/**
|
|
3646
3658
|
*
|
|
3647
3659
|
* @type {string}
|
|
@@ -4713,6 +4725,12 @@ export interface OrgConfig {
|
|
|
4713
4725
|
* @memberof OrgConfig
|
|
4714
4726
|
*/
|
|
4715
4727
|
resetRoomViewOnClose?: boolean;
|
|
4728
|
+
/**
|
|
4729
|
+
*
|
|
4730
|
+
* @type {boolean}
|
|
4731
|
+
* @memberof OrgConfig
|
|
4732
|
+
*/
|
|
4733
|
+
autoReassignOnWebsocketUnavailable?: boolean;
|
|
4716
4734
|
}
|
|
4717
4735
|
/**
|
|
4718
4736
|
*
|
package/dist/api.js
CHANGED
|
@@ -6166,7 +6166,7 @@ exports.MainNotificationsApiFetchParamCreator = function (configuration) {
|
|
|
6166
6166
|
const localVarPath = `/notifications/main-notifications/{id}`
|
|
6167
6167
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6168
6168
|
const localVarUrlObj = url.parse(localVarPath, true);
|
|
6169
|
-
const localVarRequestOptions = Object.assign({ method: '
|
|
6169
|
+
const localVarRequestOptions = Object.assign({ method: 'PATCH' }, options);
|
|
6170
6170
|
const localVarHeaderParameter = {};
|
|
6171
6171
|
const localVarQueryParameter = {};
|
|
6172
6172
|
// authentication apiKey required
|