@closerplatform/spinner-openapi 0.12.54 → 0.12.57
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
|
@@ -3604,6 +3604,12 @@ export interface MainNotificationDto {
|
|
|
3604
3604
|
* @memberof MainNotificationDto
|
|
3605
3605
|
*/
|
|
3606
3606
|
orgId: string;
|
|
3607
|
+
/**
|
|
3608
|
+
*
|
|
3609
|
+
* @type {string}
|
|
3610
|
+
* @memberof MainNotificationDto
|
|
3611
|
+
*/
|
|
3612
|
+
text: string;
|
|
3607
3613
|
/**
|
|
3608
3614
|
*
|
|
3609
3615
|
* @type {string}
|
|
@@ -3623,6 +3629,12 @@ export interface MainNotificationDto {
|
|
|
3623
3629
|
* @interface MainNotificationPatchForm
|
|
3624
3630
|
*/
|
|
3625
3631
|
export interface MainNotificationPatchForm {
|
|
3632
|
+
/**
|
|
3633
|
+
*
|
|
3634
|
+
* @type {string}
|
|
3635
|
+
* @memberof MainNotificationPatchForm
|
|
3636
|
+
*/
|
|
3637
|
+
text?: string;
|
|
3626
3638
|
/**
|
|
3627
3639
|
*
|
|
3628
3640
|
* @type {boolean}
|
|
@@ -3636,6 +3648,12 @@ export interface MainNotificationPatchForm {
|
|
|
3636
3648
|
* @interface MainNotificationPostForm
|
|
3637
3649
|
*/
|
|
3638
3650
|
export interface MainNotificationPostForm {
|
|
3651
|
+
/**
|
|
3652
|
+
*
|
|
3653
|
+
* @type {string}
|
|
3654
|
+
* @memberof MainNotificationPostForm
|
|
3655
|
+
*/
|
|
3656
|
+
text: string;
|
|
3639
3657
|
/**
|
|
3640
3658
|
*
|
|
3641
3659
|
* @type {string}
|
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
|