Browse Source

fix(nextcloud): Fix OCS-APIRequest header for notifications

Signed-off-by: jld3103 <jld3103yt@gmail.com>
pull/949/head
jld3103 1 year ago
parent
commit
6083f900b9
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 2
      external/nextcloud-notifications
  2. 108
      packages/nextcloud/lib/src/api/notifications.openapi.dart
  3. 54
      packages/nextcloud/lib/src/api/notifications.openapi.json

2
external/nextcloud-notifications vendored

@ -1 +1 @@
Subproject commit 8056d80ce22aeef0a65c3f2523869e7ea0f37f54 Subproject commit ba53fd66d1bf421765b0b6678aad868bae5a3889

108
packages/nextcloud/lib/src/api/notifications.openapi.dart

@ -62,7 +62,7 @@ class ApiClient {
/// * [longMessage] Message of the notification /// * [longMessage] Message of the notification
/// * [apiVersion] /// * [apiVersion]
/// * [userId] ID of the user /// * [userId] ID of the user
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Notification generated successfully /// * 200: Notification generated successfully
@ -77,7 +77,7 @@ class ApiClient {
required final String userId, required final String userId,
final String longMessage = '', final String longMessage = '',
final ApiGenerateNotificationApiVersion apiVersion = ApiGenerateNotificationApiVersion.v2, final ApiGenerateNotificationApiVersion apiVersion = ApiGenerateNotificationApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) async { }) async {
final rawResponse = generateNotificationRaw( final rawResponse = generateNotificationRaw(
shortMessage: shortMessage, shortMessage: shortMessage,
@ -104,7 +104,7 @@ class ApiClient {
/// * [longMessage] Message of the notification /// * [longMessage] Message of the notification
/// * [apiVersion] /// * [apiVersion]
/// * [userId] ID of the user /// * [userId] ID of the user
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Notification generated successfully /// * 200: Notification generated successfully
@ -120,7 +120,7 @@ class ApiClient {
required final String userId, required final String userId,
final String longMessage = '', final String longMessage = '',
final ApiGenerateNotificationApiVersion apiVersion = ApiGenerateNotificationApiVersion.v2, final ApiGenerateNotificationApiVersion apiVersion = ApiGenerateNotificationApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) { }) {
var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/admin_notifications/{userId}'; var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/admin_notifications/{userId}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
@ -152,7 +152,7 @@ class ApiClient {
queryParameters['longMessage'] = longMessage; queryParameters['longMessage'] = longMessage;
} }
path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name)); path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name));
headers['OCS-APIRequest'] = oCSAPIRequest; headers['OCS-APIRequest'] = oCSAPIRequest.toString();
final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null); final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null);
return DynamiteRawResponse<ApiGenerateNotificationResponseApplicationJson, void>( return DynamiteRawResponse<ApiGenerateNotificationResponseApplicationJson, void>(
response: _rootClient.doRequest( response: _rootClient.doRequest(
@ -181,7 +181,7 @@ class EndpointClient {
/// ///
/// Parameters: /// Parameters:
/// * [apiVersion] Version of the API to use /// * [apiVersion] Version of the API to use
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Notifications returned /// * 200: Notifications returned
@ -192,7 +192,7 @@ class EndpointClient {
Future<DynamiteResponse<EndpointListNotificationsResponseApplicationJson, EndpointEndpointListNotificationsHeaders>> Future<DynamiteResponse<EndpointListNotificationsResponseApplicationJson, EndpointEndpointListNotificationsHeaders>>
listNotifications({ listNotifications({
final EndpointListNotificationsApiVersion apiVersion = EndpointListNotificationsApiVersion.v2, final EndpointListNotificationsApiVersion apiVersion = EndpointListNotificationsApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) async { }) async {
final rawResponse = listNotificationsRaw( final rawResponse = listNotificationsRaw(
apiVersion: apiVersion, apiVersion: apiVersion,
@ -211,7 +211,7 @@ class EndpointClient {
/// ///
/// Parameters: /// Parameters:
/// * [apiVersion] Version of the API to use /// * [apiVersion] Version of the API to use
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Notifications returned /// * 200: Notifications returned
@ -223,7 +223,7 @@ class EndpointClient {
DynamiteRawResponse<EndpointListNotificationsResponseApplicationJson, EndpointEndpointListNotificationsHeaders> DynamiteRawResponse<EndpointListNotificationsResponseApplicationJson, EndpointEndpointListNotificationsHeaders>
listNotificationsRaw({ listNotificationsRaw({
final EndpointListNotificationsApiVersion apiVersion = EndpointListNotificationsApiVersion.v2, final EndpointListNotificationsApiVersion apiVersion = EndpointListNotificationsApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) { }) {
var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/notifications'; var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/notifications';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
@ -250,7 +250,7 @@ class EndpointClient {
// coverage:ignore-end // coverage:ignore-end
path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name)); path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name));
headers['OCS-APIRequest'] = oCSAPIRequest; headers['OCS-APIRequest'] = oCSAPIRequest.toString();
final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null); final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null);
return DynamiteRawResponse<EndpointListNotificationsResponseApplicationJson, return DynamiteRawResponse<EndpointListNotificationsResponseApplicationJson,
EndpointEndpointListNotificationsHeaders>( EndpointEndpointListNotificationsHeaders>(
@ -274,7 +274,7 @@ class EndpointClient {
/// ///
/// Parameters: /// Parameters:
/// * [apiVersion] /// * [apiVersion]
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: All notifications deleted successfully /// * 200: All notifications deleted successfully
@ -284,7 +284,7 @@ class EndpointClient {
/// * [deleteAllNotificationsRaw] for an experimental operation that returns a [DynamiteRawResponse] that can be serialized. /// * [deleteAllNotificationsRaw] for an experimental operation that returns a [DynamiteRawResponse] that can be serialized.
Future<DynamiteResponse<EndpointDeleteAllNotificationsResponseApplicationJson, void>> deleteAllNotifications({ Future<DynamiteResponse<EndpointDeleteAllNotificationsResponseApplicationJson, void>> deleteAllNotifications({
final EndpointDeleteAllNotificationsApiVersion apiVersion = EndpointDeleteAllNotificationsApiVersion.v2, final EndpointDeleteAllNotificationsApiVersion apiVersion = EndpointDeleteAllNotificationsApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) async { }) async {
final rawResponse = deleteAllNotificationsRaw( final rawResponse = deleteAllNotificationsRaw(
apiVersion: apiVersion, apiVersion: apiVersion,
@ -303,7 +303,7 @@ class EndpointClient {
/// ///
/// Parameters: /// Parameters:
/// * [apiVersion] /// * [apiVersion]
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: All notifications deleted successfully /// * 200: All notifications deleted successfully
@ -314,7 +314,7 @@ class EndpointClient {
@experimental @experimental
DynamiteRawResponse<EndpointDeleteAllNotificationsResponseApplicationJson, void> deleteAllNotificationsRaw({ DynamiteRawResponse<EndpointDeleteAllNotificationsResponseApplicationJson, void> deleteAllNotificationsRaw({
final EndpointDeleteAllNotificationsApiVersion apiVersion = EndpointDeleteAllNotificationsApiVersion.v2, final EndpointDeleteAllNotificationsApiVersion apiVersion = EndpointDeleteAllNotificationsApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) { }) {
var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/notifications'; var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/notifications';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
@ -341,7 +341,7 @@ class EndpointClient {
// coverage:ignore-end // coverage:ignore-end
path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name)); path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name));
headers['OCS-APIRequest'] = oCSAPIRequest; headers['OCS-APIRequest'] = oCSAPIRequest.toString();
final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null); final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null);
return DynamiteRawResponse<EndpointDeleteAllNotificationsResponseApplicationJson, void>( return DynamiteRawResponse<EndpointDeleteAllNotificationsResponseApplicationJson, void>(
response: _rootClient.doRequest( response: _rootClient.doRequest(
@ -365,7 +365,7 @@ class EndpointClient {
/// Parameters: /// Parameters:
/// * [apiVersion] Version of the API to use /// * [apiVersion] Version of the API to use
/// * [id] ID of the notification /// * [id] ID of the notification
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Notification returned /// * 200: Notification returned
@ -376,7 +376,7 @@ class EndpointClient {
Future<DynamiteResponse<EndpointGetNotificationResponseApplicationJson, void>> getNotification({ Future<DynamiteResponse<EndpointGetNotificationResponseApplicationJson, void>> getNotification({
required final int id, required final int id,
final EndpointGetNotificationApiVersion apiVersion = EndpointGetNotificationApiVersion.v2, final EndpointGetNotificationApiVersion apiVersion = EndpointGetNotificationApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) async { }) async {
final rawResponse = getNotificationRaw( final rawResponse = getNotificationRaw(
id: id, id: id,
@ -397,7 +397,7 @@ class EndpointClient {
/// Parameters: /// Parameters:
/// * [apiVersion] Version of the API to use /// * [apiVersion] Version of the API to use
/// * [id] ID of the notification /// * [id] ID of the notification
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Notification returned /// * 200: Notification returned
@ -409,7 +409,7 @@ class EndpointClient {
DynamiteRawResponse<EndpointGetNotificationResponseApplicationJson, void> getNotificationRaw({ DynamiteRawResponse<EndpointGetNotificationResponseApplicationJson, void> getNotificationRaw({
required final int id, required final int id,
final EndpointGetNotificationApiVersion apiVersion = EndpointGetNotificationApiVersion.v2, final EndpointGetNotificationApiVersion apiVersion = EndpointGetNotificationApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) { }) {
var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/notifications/{id}'; var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/notifications/{id}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
@ -437,7 +437,7 @@ class EndpointClient {
// coverage:ignore-end // coverage:ignore-end
path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString())); path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString()));
path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name)); path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name));
headers['OCS-APIRequest'] = oCSAPIRequest; headers['OCS-APIRequest'] = oCSAPIRequest.toString();
final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null); final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null);
return DynamiteRawResponse<EndpointGetNotificationResponseApplicationJson, void>( return DynamiteRawResponse<EndpointGetNotificationResponseApplicationJson, void>(
response: _rootClient.doRequest( response: _rootClient.doRequest(
@ -461,7 +461,7 @@ class EndpointClient {
/// Parameters: /// Parameters:
/// * [apiVersion] /// * [apiVersion]
/// * [id] ID of the notification /// * [id] ID of the notification
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Notification deleted successfully /// * 200: Notification deleted successfully
@ -473,7 +473,7 @@ class EndpointClient {
Future<DynamiteResponse<EndpointDeleteNotificationResponseApplicationJson, void>> deleteNotification({ Future<DynamiteResponse<EndpointDeleteNotificationResponseApplicationJson, void>> deleteNotification({
required final int id, required final int id,
final EndpointDeleteNotificationApiVersion apiVersion = EndpointDeleteNotificationApiVersion.v2, final EndpointDeleteNotificationApiVersion apiVersion = EndpointDeleteNotificationApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) async { }) async {
final rawResponse = deleteNotificationRaw( final rawResponse = deleteNotificationRaw(
id: id, id: id,
@ -494,7 +494,7 @@ class EndpointClient {
/// Parameters: /// Parameters:
/// * [apiVersion] /// * [apiVersion]
/// * [id] ID of the notification /// * [id] ID of the notification
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Notification deleted successfully /// * 200: Notification deleted successfully
@ -507,7 +507,7 @@ class EndpointClient {
DynamiteRawResponse<EndpointDeleteNotificationResponseApplicationJson, void> deleteNotificationRaw({ DynamiteRawResponse<EndpointDeleteNotificationResponseApplicationJson, void> deleteNotificationRaw({
required final int id, required final int id,
final EndpointDeleteNotificationApiVersion apiVersion = EndpointDeleteNotificationApiVersion.v2, final EndpointDeleteNotificationApiVersion apiVersion = EndpointDeleteNotificationApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) { }) {
var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/notifications/{id}'; var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/notifications/{id}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
@ -535,7 +535,7 @@ class EndpointClient {
// coverage:ignore-end // coverage:ignore-end
path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString())); path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString()));
path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name)); path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name));
headers['OCS-APIRequest'] = oCSAPIRequest; headers['OCS-APIRequest'] = oCSAPIRequest.toString();
final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null); final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null);
return DynamiteRawResponse<EndpointDeleteNotificationResponseApplicationJson, void>( return DynamiteRawResponse<EndpointDeleteNotificationResponseApplicationJson, void>(
response: _rootClient.doRequest( response: _rootClient.doRequest(
@ -559,7 +559,7 @@ class EndpointClient {
/// Parameters: /// Parameters:
/// * [ids] IDs of the notifications to check /// * [ids] IDs of the notifications to check
/// * [apiVersion] Version of the API to use /// * [apiVersion] Version of the API to use
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Existing notification IDs returned /// * 200: Existing notification IDs returned
@ -570,7 +570,7 @@ class EndpointClient {
Future<DynamiteResponse<EndpointConfirmIdsForUserResponseApplicationJson, void>> confirmIdsForUser({ Future<DynamiteResponse<EndpointConfirmIdsForUserResponseApplicationJson, void>> confirmIdsForUser({
required final List<int> ids, required final List<int> ids,
final EndpointConfirmIdsForUserApiVersion apiVersion = EndpointConfirmIdsForUserApiVersion.v2, final EndpointConfirmIdsForUserApiVersion apiVersion = EndpointConfirmIdsForUserApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) async { }) async {
final rawResponse = confirmIdsForUserRaw( final rawResponse = confirmIdsForUserRaw(
ids: ids, ids: ids,
@ -591,7 +591,7 @@ class EndpointClient {
/// Parameters: /// Parameters:
/// * [ids] IDs of the notifications to check /// * [ids] IDs of the notifications to check
/// * [apiVersion] Version of the API to use /// * [apiVersion] Version of the API to use
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Existing notification IDs returned /// * 200: Existing notification IDs returned
@ -603,7 +603,7 @@ class EndpointClient {
DynamiteRawResponse<EndpointConfirmIdsForUserResponseApplicationJson, void> confirmIdsForUserRaw({ DynamiteRawResponse<EndpointConfirmIdsForUserResponseApplicationJson, void> confirmIdsForUserRaw({
required final List<int> ids, required final List<int> ids,
final EndpointConfirmIdsForUserApiVersion apiVersion = EndpointConfirmIdsForUserApiVersion.v2, final EndpointConfirmIdsForUserApiVersion apiVersion = EndpointConfirmIdsForUserApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) { }) {
var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/notifications/exists'; var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/notifications/exists';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
@ -631,7 +631,7 @@ class EndpointClient {
// coverage:ignore-end // coverage:ignore-end
queryParameters['ids[]'] = ids.map((final e) => e.toString()); queryParameters['ids[]'] = ids.map((final e) => e.toString());
path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name)); path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name));
headers['OCS-APIRequest'] = oCSAPIRequest; headers['OCS-APIRequest'] = oCSAPIRequest.toString();
final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null); final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null);
return DynamiteRawResponse<EndpointConfirmIdsForUserResponseApplicationJson, void>( return DynamiteRawResponse<EndpointConfirmIdsForUserResponseApplicationJson, void>(
response: _rootClient.doRequest( response: _rootClient.doRequest(
@ -663,7 +663,7 @@ class PushClient {
/// * [devicePublicKey] Public key of the device /// * [devicePublicKey] Public key of the device
/// * [proxyServer] Proxy server to be used /// * [proxyServer] Proxy server to be used
/// * [apiVersion] /// * [apiVersion]
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Device was already registered /// * 200: Device was already registered
@ -678,7 +678,7 @@ class PushClient {
required final String devicePublicKey, required final String devicePublicKey,
required final String proxyServer, required final String proxyServer,
final PushRegisterDeviceApiVersion apiVersion = PushRegisterDeviceApiVersion.v2, final PushRegisterDeviceApiVersion apiVersion = PushRegisterDeviceApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) async { }) async {
final rawResponse = registerDeviceRaw( final rawResponse = registerDeviceRaw(
pushTokenHash: pushTokenHash, pushTokenHash: pushTokenHash,
@ -703,7 +703,7 @@ class PushClient {
/// * [devicePublicKey] Public key of the device /// * [devicePublicKey] Public key of the device
/// * [proxyServer] Proxy server to be used /// * [proxyServer] Proxy server to be used
/// * [apiVersion] /// * [apiVersion]
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: Device was already registered /// * 200: Device was already registered
@ -719,7 +719,7 @@ class PushClient {
required final String devicePublicKey, required final String devicePublicKey,
required final String proxyServer, required final String proxyServer,
final PushRegisterDeviceApiVersion apiVersion = PushRegisterDeviceApiVersion.v2, final PushRegisterDeviceApiVersion apiVersion = PushRegisterDeviceApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) { }) {
var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/push'; var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/push';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
@ -749,7 +749,7 @@ class PushClient {
queryParameters['devicePublicKey'] = devicePublicKey; queryParameters['devicePublicKey'] = devicePublicKey;
queryParameters['proxyServer'] = proxyServer; queryParameters['proxyServer'] = proxyServer;
path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name)); path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name));
headers['OCS-APIRequest'] = oCSAPIRequest; headers['OCS-APIRequest'] = oCSAPIRequest.toString();
final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null); final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null);
return DynamiteRawResponse<PushRegisterDeviceResponseApplicationJson, void>( return DynamiteRawResponse<PushRegisterDeviceResponseApplicationJson, void>(
response: _rootClient.doRequest( response: _rootClient.doRequest(
@ -772,7 +772,7 @@ class PushClient {
/// ///
/// Parameters: /// Parameters:
/// * [apiVersion] /// * [apiVersion]
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: No device registered /// * 200: No device registered
@ -784,7 +784,7 @@ class PushClient {
/// * [removeDeviceRaw] for an experimental operation that returns a [DynamiteRawResponse] that can be serialized. /// * [removeDeviceRaw] for an experimental operation that returns a [DynamiteRawResponse] that can be serialized.
Future<DynamiteResponse<PushRemoveDeviceResponseApplicationJson, void>> removeDevice({ Future<DynamiteResponse<PushRemoveDeviceResponseApplicationJson, void>> removeDevice({
final PushRemoveDeviceApiVersion apiVersion = PushRemoveDeviceApiVersion.v2, final PushRemoveDeviceApiVersion apiVersion = PushRemoveDeviceApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) async { }) async {
final rawResponse = removeDeviceRaw( final rawResponse = removeDeviceRaw(
apiVersion: apiVersion, apiVersion: apiVersion,
@ -803,7 +803,7 @@ class PushClient {
/// ///
/// Parameters: /// Parameters:
/// * [apiVersion] /// * [apiVersion]
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200: No device registered /// * 200: No device registered
@ -816,7 +816,7 @@ class PushClient {
@experimental @experimental
DynamiteRawResponse<PushRemoveDeviceResponseApplicationJson, void> removeDeviceRaw({ DynamiteRawResponse<PushRemoveDeviceResponseApplicationJson, void> removeDeviceRaw({
final PushRemoveDeviceApiVersion apiVersion = PushRemoveDeviceApiVersion.v2, final PushRemoveDeviceApiVersion apiVersion = PushRemoveDeviceApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) { }) {
var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/push'; var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/push';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
@ -843,7 +843,7 @@ class PushClient {
// coverage:ignore-end // coverage:ignore-end
path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name)); path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name));
headers['OCS-APIRequest'] = oCSAPIRequest; headers['OCS-APIRequest'] = oCSAPIRequest.toString();
final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null); final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null);
return DynamiteRawResponse<PushRemoveDeviceResponseApplicationJson, void>( return DynamiteRawResponse<PushRemoveDeviceResponseApplicationJson, void>(
response: _rootClient.doRequest( response: _rootClient.doRequest(
@ -875,10 +875,10 @@ class SettingsClient {
/// * [soundNotification] Enable sound for notifications ('yes' or 'no') /// * [soundNotification] Enable sound for notifications ('yes' or 'no')
/// * [soundTalk] Enable sound for Talk notifications ('yes' or 'no') /// * [soundTalk] Enable sound for Talk notifications ('yes' or 'no')
/// * [apiVersion] /// * [apiVersion]
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200 /// * 200: Personal settings updated
/// ///
/// See: /// See:
/// * [personalRaw] for an experimental operation that returns a [DynamiteRawResponse] that can be serialized. /// * [personalRaw] for an experimental operation that returns a [DynamiteRawResponse] that can be serialized.
@ -887,7 +887,7 @@ class SettingsClient {
required final String soundNotification, required final String soundNotification,
required final String soundTalk, required final String soundTalk,
final SettingsPersonalApiVersion apiVersion = SettingsPersonalApiVersion.v2, final SettingsPersonalApiVersion apiVersion = SettingsPersonalApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) async { }) async {
final rawResponse = personalRaw( final rawResponse = personalRaw(
batchSetting: batchSetting, batchSetting: batchSetting,
@ -912,10 +912,10 @@ class SettingsClient {
/// * [soundNotification] Enable sound for notifications ('yes' or 'no') /// * [soundNotification] Enable sound for notifications ('yes' or 'no')
/// * [soundTalk] Enable sound for Talk notifications ('yes' or 'no') /// * [soundTalk] Enable sound for Talk notifications ('yes' or 'no')
/// * [apiVersion] /// * [apiVersion]
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200 /// * 200: Personal settings updated
/// ///
/// See: /// See:
/// * [personal] for an operation that returns a [DynamiteResponse] with a stable API. /// * [personal] for an operation that returns a [DynamiteResponse] with a stable API.
@ -925,7 +925,7 @@ class SettingsClient {
required final String soundNotification, required final String soundNotification,
required final String soundTalk, required final String soundTalk,
final SettingsPersonalApiVersion apiVersion = SettingsPersonalApiVersion.v2, final SettingsPersonalApiVersion apiVersion = SettingsPersonalApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) { }) {
var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/settings'; var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/settings';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
@ -955,7 +955,7 @@ class SettingsClient {
queryParameters['soundNotification'] = soundNotification; queryParameters['soundNotification'] = soundNotification;
queryParameters['soundTalk'] = soundTalk; queryParameters['soundTalk'] = soundTalk;
path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name)); path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name));
headers['OCS-APIRequest'] = oCSAPIRequest; headers['OCS-APIRequest'] = oCSAPIRequest.toString();
final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null); final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null);
return DynamiteRawResponse<SettingsPersonalResponseApplicationJson, void>( return DynamiteRawResponse<SettingsPersonalResponseApplicationJson, void>(
response: _rootClient.doRequest( response: _rootClient.doRequest(
@ -983,10 +983,10 @@ class SettingsClient {
/// * [soundNotification] Enable sound for notifications ('yes' or 'no') /// * [soundNotification] Enable sound for notifications ('yes' or 'no')
/// * [soundTalk] Enable sound for Talk notifications ('yes' or 'no') /// * [soundTalk] Enable sound for Talk notifications ('yes' or 'no')
/// * [apiVersion] /// * [apiVersion]
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200 /// * 200: Admin settings updated
/// ///
/// See: /// See:
/// * [adminRaw] for an experimental operation that returns a [DynamiteRawResponse] that can be serialized. /// * [adminRaw] for an experimental operation that returns a [DynamiteRawResponse] that can be serialized.
@ -995,7 +995,7 @@ class SettingsClient {
required final String soundNotification, required final String soundNotification,
required final String soundTalk, required final String soundTalk,
final SettingsAdminApiVersion apiVersion = SettingsAdminApiVersion.v2, final SettingsAdminApiVersion apiVersion = SettingsAdminApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) async { }) async {
final rawResponse = adminRaw( final rawResponse = adminRaw(
batchSetting: batchSetting, batchSetting: batchSetting,
@ -1022,10 +1022,10 @@ class SettingsClient {
/// * [soundNotification] Enable sound for notifications ('yes' or 'no') /// * [soundNotification] Enable sound for notifications ('yes' or 'no')
/// * [soundTalk] Enable sound for Talk notifications ('yes' or 'no') /// * [soundTalk] Enable sound for Talk notifications ('yes' or 'no')
/// * [apiVersion] /// * [apiVersion]
/// * [oCSAPIRequest] /// * [oCSAPIRequest] Required to be true for the API request to pass
/// ///
/// Status codes: /// Status codes:
/// * 200 /// * 200: Admin settings updated
/// ///
/// See: /// See:
/// * [admin] for an operation that returns a [DynamiteResponse] with a stable API. /// * [admin] for an operation that returns a [DynamiteResponse] with a stable API.
@ -1035,7 +1035,7 @@ class SettingsClient {
required final String soundNotification, required final String soundNotification,
required final String soundTalk, required final String soundTalk,
final SettingsAdminApiVersion apiVersion = SettingsAdminApiVersion.v2, final SettingsAdminApiVersion apiVersion = SettingsAdminApiVersion.v2,
final String oCSAPIRequest = 'true', final bool oCSAPIRequest = true,
}) { }) {
var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/settings/admin'; var path = '/ocs/v2.php/apps/notifications/api/{apiVersion}/settings/admin';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
@ -1065,7 +1065,7 @@ class SettingsClient {
queryParameters['soundNotification'] = soundNotification; queryParameters['soundNotification'] = soundNotification;
queryParameters['soundTalk'] = soundTalk; queryParameters['soundTalk'] = soundTalk;
path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name)); path = path.replaceAll('{apiVersion}', Uri.encodeQueryComponent(apiVersion.name));
headers['OCS-APIRequest'] = oCSAPIRequest; headers['OCS-APIRequest'] = oCSAPIRequest.toString();
final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null); final uri = Uri(path: path, queryParameters: queryParameters.isNotEmpty ? queryParameters : null);
return DynamiteRawResponse<SettingsAdminResponseApplicationJson, void>( return DynamiteRawResponse<SettingsAdminResponseApplicationJson, void>(
response: _rootClient.doRequest( response: _rootClient.doRequest(

54
packages/nextcloud/lib/src/api/notifications.openapi.json

@ -234,10 +234,11 @@
{ {
"name": "OCS-APIRequest", "name": "OCS-APIRequest",
"in": "header", "in": "header",
"description": "Required to be true for the API request to pass",
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "boolean",
"default": "true" "default": true
} }
} }
], ],
@ -352,10 +353,11 @@
{ {
"name": "OCS-APIRequest", "name": "OCS-APIRequest",
"in": "header", "in": "header",
"description": "Required to be true for the API request to pass",
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "boolean",
"default": "true" "default": true
} }
} }
], ],
@ -464,10 +466,11 @@
{ {
"name": "OCS-APIRequest", "name": "OCS-APIRequest",
"in": "header", "in": "header",
"description": "Required to be true for the API request to pass",
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "boolean",
"default": "true" "default": true
} }
} }
], ],
@ -575,10 +578,11 @@
{ {
"name": "OCS-APIRequest", "name": "OCS-APIRequest",
"in": "header", "in": "header",
"description": "Required to be true for the API request to pass",
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "boolean",
"default": "true" "default": true
} }
} }
], ],
@ -720,10 +724,11 @@
{ {
"name": "OCS-APIRequest", "name": "OCS-APIRequest",
"in": "header", "in": "header",
"description": "Required to be true for the API request to pass",
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "boolean",
"default": "true" "default": true
} }
} }
], ],
@ -857,10 +862,11 @@
{ {
"name": "OCS-APIRequest", "name": "OCS-APIRequest",
"in": "header", "in": "header",
"description": "Required to be true for the API request to pass",
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "boolean",
"default": "true" "default": true
} }
} }
], ],
@ -1023,10 +1029,11 @@
{ {
"name": "OCS-APIRequest", "name": "OCS-APIRequest",
"in": "header", "in": "header",
"description": "Required to be true for the API request to pass",
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "boolean",
"default": "true" "default": true
} }
} }
], ],
@ -1216,10 +1223,11 @@
{ {
"name": "OCS-APIRequest", "name": "OCS-APIRequest",
"in": "header", "in": "header",
"description": "Required to be true for the API request to pass",
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "boolean",
"default": "true" "default": true
} }
} }
], ],
@ -1404,16 +1412,17 @@
{ {
"name": "OCS-APIRequest", "name": "OCS-APIRequest",
"in": "header", "in": "header",
"description": "Required to be true for the API request to pass",
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "boolean",
"default": "true" "default": true
} }
} }
], ],
"responses": { "responses": {
"200": { "200": {
"description": "", "description": "Personal settings updated",
"content": { "content": {
"application/json": { "application/json": {
"schema": { "schema": {
@ -1503,16 +1512,17 @@
{ {
"name": "OCS-APIRequest", "name": "OCS-APIRequest",
"in": "header", "in": "header",
"description": "Required to be true for the API request to pass",
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "boolean",
"default": "true" "default": true
} }
} }
], ],
"responses": { "responses": {
"200": { "200": {
"description": "", "description": "Admin settings updated",
"content": { "content": {
"application/json": { "application/json": {
"schema": { "schema": {

Loading…
Cancel
Save