Browse Source

nextcloud: Use individual Accept headers

pull/219/head
jld3103 2 years ago
parent
commit
0c18b3e5c4
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 1
      packages/nextcloud/lib/src/client.dart
  2. 204
      packages/nextcloud/lib/src/nextcloud.openapi.dart

1
packages/nextcloud/lib/src/client.dart

@ -16,7 +16,6 @@ class NextcloudClient extends openapi.NextcloudClient {
super( super(
baseHeaders: (<String, String?>{ baseHeaders: (<String, String?>{
'OCS-APIRequest': 'true', 'OCS-APIRequest': 'true',
'Accept': 'application/json',
'Accept-Language': language, 'Accept-Language': language,
}..removeWhere((final _, final value) => value == null)) }..removeWhere((final _, final value) => value == null))
.cast<String, String>(), .cast<String, String>(),

204
packages/nextcloud/lib/src/nextcloud.openapi.dart

@ -169,7 +169,9 @@ class NextcloudCoreClient {
Future<NextcloudCoreServerStatus> getStatus() async { Future<NextcloudCoreServerStatus> getStatus() async {
var path = '/status.php'; var path = '/status.php';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -187,7 +189,9 @@ class NextcloudCoreClient {
Future<NextcloudCoreServerCapabilities> getCapabilities() async { Future<NextcloudCoreServerCapabilities> getCapabilities() async {
var path = '/ocs/v2.php/cloud/capabilities'; var path = '/ocs/v2.php/cloud/capabilities';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -205,7 +209,9 @@ class NextcloudCoreClient {
Future<NextcloudCoreNavigationApps> getNavigationApps() async { Future<NextcloudCoreNavigationApps> getNavigationApps() async {
var path = '/ocs/v2.php/core/navigation/apps'; var path = '/ocs/v2.php/core/navigation/apps';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -223,7 +229,9 @@ class NextcloudCoreClient {
Future<NextcloudCoreLoginFlowInit> initLoginFlow() async { Future<NextcloudCoreLoginFlowInit> initLoginFlow() async {
var path = '/index.php/login/v2'; var path = '/index.php/login/v2';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'post', 'post',
@ -241,7 +249,9 @@ class NextcloudCoreClient {
Future<NextcloudCoreLoginFlowResult> getLoginFlowResult({required String token}) async { Future<NextcloudCoreLoginFlowResult> getLoginFlowResult({required String token}) async {
var path = '/index.php/login/v2/poll'; var path = '/index.php/login/v2/poll';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['token'] = token; queryParameters['token'] = token;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -267,7 +277,9 @@ class NextcloudCoreClient {
}) async { }) async {
var path = '/index.php/core/preview.png'; var path = '/index.php/core/preview.png';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'image/png',
};
Uint8List? body; Uint8List? body;
if (file != '') { if (file != '') {
queryParameters['file'] = file; queryParameters['file'] = file;
@ -305,7 +317,9 @@ class NextcloudCoreClient {
}) async { }) async {
var path = '/index.php/avatar/{userId}/{size}/dark'; var path = '/index.php/avatar/{userId}/{size}/dark';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'image/png',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{userId}', Uri.encodeQueryComponent(userId)); path = path.replaceAll('{userId}', Uri.encodeQueryComponent(userId));
path = path.replaceAll('{size}', Uri.encodeQueryComponent(size.toString())); path = path.replaceAll('{size}', Uri.encodeQueryComponent(size.toString()));
@ -327,7 +341,9 @@ class NextcloudCoreClient {
}) async { }) async {
var path = '/index.php/avatar/{userId}/{size}'; var path = '/index.php/avatar/{userId}/{size}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'image/png',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{userId}', Uri.encodeQueryComponent(userId)); path = path.replaceAll('{userId}', Uri.encodeQueryComponent(userId));
path = path.replaceAll('{size}', Uri.encodeQueryComponent(size.toString())); path = path.replaceAll('{size}', Uri.encodeQueryComponent(size.toString()));
@ -353,7 +369,9 @@ class NextcloudCoreClient {
}) async { }) async {
var path = '/ocs/v2.php/core/autocomplete/get'; var path = '/ocs/v2.php/core/autocomplete/get';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['search'] = search; queryParameters['search'] = search;
queryParameters['itemType'] = itemType; queryParameters['itemType'] = itemType;
@ -387,7 +405,9 @@ class NextcloudNewsClient {
Future<NextcloudNewsSupportedAPIVersions> getSupportedApiVersions() async { Future<NextcloudNewsSupportedAPIVersions> getSupportedApiVersions() async {
var path = '/index.php/apps/news/api'; var path = '/index.php/apps/news/api';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -405,7 +425,9 @@ class NextcloudNewsClient {
Future<NextcloudNewsListFolders> listFolders() async { Future<NextcloudNewsListFolders> listFolders() async {
var path = '/index.php/apps/news/api/v1-3/folders'; var path = '/index.php/apps/news/api/v1-3/folders';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -423,7 +445,9 @@ class NextcloudNewsClient {
Future<NextcloudNewsListFolders> createFolder({required String name}) async { Future<NextcloudNewsListFolders> createFolder({required String name}) async {
var path = '/index.php/apps/news/api/v1-3/folders'; var path = '/index.php/apps/news/api/v1-3/folders';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['name'] = name; queryParameters['name'] = name;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -504,7 +528,9 @@ class NextcloudNewsClient {
Future<NextcloudNewsListFeeds> listFeeds() async { Future<NextcloudNewsListFeeds> listFeeds() async {
var path = '/index.php/apps/news/api/v1-3/feeds'; var path = '/index.php/apps/news/api/v1-3/feeds';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -524,7 +550,9 @@ class NextcloudNewsClient {
}) async { }) async {
var path = '/index.php/apps/news/api/v1-3/feeds'; var path = '/index.php/apps/news/api/v1-3/feeds';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['url'] = url; queryParameters['url'] = url;
if (folderId != null) { if (folderId != null) {
@ -638,7 +666,9 @@ class NextcloudNewsClient {
}) async { }) async {
var path = '/index.php/apps/news/api/v1-3/items'; var path = '/index.php/apps/news/api/v1-3/items';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
if (type != 3) { if (type != 3) {
queryParameters['type'] = type.toString(); queryParameters['type'] = type.toString();
@ -678,7 +708,9 @@ class NextcloudNewsClient {
}) async { }) async {
var path = '/index.php/apps/news/api/v1-3/items/updated'; var path = '/index.php/apps/news/api/v1-3/items/updated';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
if (type != 3) { if (type != 3) {
queryParameters['type'] = type.toString(); queryParameters['type'] = type.toString();
@ -790,7 +822,9 @@ class NextcloudNotesClient {
}) async { }) async {
var path = '/index.php/apps/notes/api/v1/notes'; var path = '/index.php/apps/notes/api/v1/notes';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
if (category != null) { if (category != null) {
queryParameters['category'] = category; queryParameters['category'] = category;
@ -833,7 +867,9 @@ class NextcloudNotesClient {
}) async { }) async {
var path = '/index.php/apps/notes/api/v1/notes'; var path = '/index.php/apps/notes/api/v1/notes';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
if (category != '') { if (category != '') {
queryParameters['category'] = category; queryParameters['category'] = category;
@ -869,7 +905,9 @@ class NextcloudNotesClient {
}) async { }) async {
var path = '/index.php/apps/notes/api/v1/notes/{id}'; var path = '/index.php/apps/notes/api/v1/notes/{id}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString())); path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString()));
if (exclude != '') { if (exclude != '') {
@ -901,7 +939,9 @@ class NextcloudNotesClient {
}) async { }) async {
var path = '/index.php/apps/notes/api/v1/notes/{id}'; var path = '/index.php/apps/notes/api/v1/notes/{id}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString())); path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString()));
if (content != null) { if (content != null) {
@ -937,7 +977,9 @@ class NextcloudNotesClient {
Future<String> deleteNote({required int id}) async { Future<String> deleteNote({required int id}) async {
var path = '/index.php/apps/notes/api/v1/notes/{id}'; var path = '/index.php/apps/notes/api/v1/notes/{id}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString())); path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString()));
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -955,7 +997,9 @@ class NextcloudNotesClient {
Future<NextcloudNotesSettings> getSettings() async { Future<NextcloudNotesSettings> getSettings() async {
var path = '/index.php/apps/notes/api/v1/settings'; var path = '/index.php/apps/notes/api/v1/settings';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -972,7 +1016,9 @@ class NextcloudNotesClient {
Future<NextcloudNotesSettings> updateSettings({required NextcloudNotesSettings notesSettings}) async { Future<NextcloudNotesSettings> updateSettings({required NextcloudNotesSettings notesSettings}) async {
var path = '/index.php/apps/notes/api/v1/settings'; var path = '/index.php/apps/notes/api/v1/settings';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
headers['Content-Type'] = 'application/json'; headers['Content-Type'] = 'application/json';
body = Uint8List.fromList(utf8.encode(json.encode(notesSettings.toJson()))); body = Uint8List.fromList(utf8.encode(json.encode(notesSettings.toJson())));
@ -997,7 +1043,9 @@ class NextcloudNotificationsClient {
Future<NextcloudNotificationsListNotifications> listNotifications() async { Future<NextcloudNotificationsListNotifications> listNotifications() async {
var path = '/ocs/v2.php/apps/notifications/api/v2/notifications'; var path = '/ocs/v2.php/apps/notifications/api/v2/notifications';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -1015,7 +1063,9 @@ class NextcloudNotificationsClient {
Future<String> deleteAllNotifications() async { Future<String> deleteAllNotifications() async {
var path = '/ocs/v2.php/apps/notifications/api/v2/notifications'; var path = '/ocs/v2.php/apps/notifications/api/v2/notifications';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'delete', 'delete',
@ -1032,7 +1082,9 @@ class NextcloudNotificationsClient {
Future<NextcloudNotificationsGetNotification> getNotification({required int id}) async { Future<NextcloudNotificationsGetNotification> getNotification({required int id}) async {
var path = '/ocs/v2.php/apps/notifications/api/v2/notifications/{id}'; var path = '/ocs/v2.php/apps/notifications/api/v2/notifications/{id}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString())); path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString()));
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1051,7 +1103,9 @@ class NextcloudNotificationsClient {
Future<NextcloudEmptyOCS> deleteNotification({required int id}) async { Future<NextcloudEmptyOCS> deleteNotification({required int id}) async {
var path = '/ocs/v2.php/apps/notifications/api/v2/notifications/{id}'; var path = '/ocs/v2.php/apps/notifications/api/v2/notifications/{id}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString())); path = path.replaceAll('{id}', Uri.encodeQueryComponent(id.toString()));
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1073,7 +1127,9 @@ class NextcloudNotificationsClient {
}) async { }) async {
var path = '/ocs/v2.php/apps/notifications/api/v2/push'; var path = '/ocs/v2.php/apps/notifications/api/v2/push';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['pushTokenHash'] = pushTokenHash; queryParameters['pushTokenHash'] = pushTokenHash;
queryParameters['devicePublicKey'] = devicePublicKey; queryParameters['devicePublicKey'] = devicePublicKey;
@ -1094,7 +1150,9 @@ class NextcloudNotificationsClient {
Future<String> removeDevice() async { Future<String> removeDevice() async {
var path = '/ocs/v2.php/apps/notifications/api/v2/push'; var path = '/ocs/v2.php/apps/notifications/api/v2/push';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'delete', 'delete',
@ -1115,7 +1173,9 @@ class NextcloudNotificationsClient {
}) async { }) async {
var path = '/ocs/v2.php/apps/notifications/api/v2/admin_notifications/{userId}'; var path = '/ocs/v2.php/apps/notifications/api/v2/admin_notifications/{userId}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{userId}', Uri.encodeQueryComponent(userId)); path = path.replaceAll('{userId}', Uri.encodeQueryComponent(userId));
queryParameters['shortMessage'] = shortMessage; queryParameters['shortMessage'] = shortMessage;
@ -1143,7 +1203,9 @@ class NextcloudProvisioningApiClient {
Future<NextcloudProvisioningApiUser> getCurrentUser() async { Future<NextcloudProvisioningApiUser> getCurrentUser() async {
var path = '/ocs/v2.php/cloud/user'; var path = '/ocs/v2.php/cloud/user';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -1161,7 +1223,9 @@ class NextcloudProvisioningApiClient {
Future<NextcloudProvisioningApiUser> getUser({required String userId}) async { Future<NextcloudProvisioningApiUser> getUser({required String userId}) async {
var path = '/ocs/v2.php/cloud/users/{userId}'; var path = '/ocs/v2.php/cloud/users/{userId}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{userId}', Uri.encodeQueryComponent(userId)); path = path.replaceAll('{userId}', Uri.encodeQueryComponent(userId));
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1187,7 +1251,9 @@ class NextcloudUnifiedPushProviderClient {
Future<NextcloudUnifiedPushProviderCheckResponse200ApplicationJson> check() async { Future<NextcloudUnifiedPushProviderCheckResponse200ApplicationJson> check() async {
var path = '/index.php/apps/uppush'; var path = '/index.php/apps/uppush';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -1207,7 +1273,9 @@ class NextcloudUnifiedPushProviderClient {
{required int keepalive}) async { {required int keepalive}) async {
var path = '/index.php/apps/uppush/keepalive'; var path = '/index.php/apps/uppush/keepalive';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['keepalive'] = keepalive.toString(); queryParameters['keepalive'] = keepalive.toString();
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1228,7 +1296,9 @@ class NextcloudUnifiedPushProviderClient {
{required String deviceName}) async { {required String deviceName}) async {
var path = '/index.php/apps/uppush/device'; var path = '/index.php/apps/uppush/device';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['deviceName'] = deviceName; queryParameters['deviceName'] = deviceName;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1251,7 +1321,9 @@ class NextcloudUnifiedPushProviderClient {
{required String deviceId}) async { {required String deviceId}) async {
var path = '/index.php/apps/uppush/device/{deviceId}'; var path = '/index.php/apps/uppush/device/{deviceId}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{deviceId}', Uri.encodeQueryComponent(deviceId)); path = path.replaceAll('{deviceId}', Uri.encodeQueryComponent(deviceId));
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1272,7 +1344,9 @@ class NextcloudUnifiedPushProviderClient {
{required String deviceId}) async { {required String deviceId}) async {
var path = '/index.php/apps/uppush/device/{deviceId}'; var path = '/index.php/apps/uppush/device/{deviceId}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{deviceId}', Uri.encodeQueryComponent(deviceId)); path = path.replaceAll('{deviceId}', Uri.encodeQueryComponent(deviceId));
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1295,7 +1369,9 @@ class NextcloudUnifiedPushProviderClient {
}) async { }) async {
var path = '/index.php/apps/uppush/app'; var path = '/index.php/apps/uppush/app';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['deviceId'] = deviceId; queryParameters['deviceId'] = deviceId;
queryParameters['appName'] = appName; queryParameters['appName'] = appName;
@ -1316,7 +1392,9 @@ class NextcloudUnifiedPushProviderClient {
Future<NextcloudUnifiedPushProviderDeleteAppResponse200ApplicationJson> deleteApp({required String token}) async { Future<NextcloudUnifiedPushProviderDeleteAppResponse200ApplicationJson> deleteApp({required String token}) async {
var path = '/index.php/apps/uppush/app/{token}'; var path = '/index.php/apps/uppush/app/{token}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{token}', Uri.encodeQueryComponent(token)); path = path.replaceAll('{token}', Uri.encodeQueryComponent(token));
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1337,7 +1415,9 @@ class NextcloudUnifiedPushProviderClient {
{required String token}) async { {required String token}) async {
var path = '/index.php/apps/uppush/push/{token}'; var path = '/index.php/apps/uppush/push/{token}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{token}', Uri.encodeQueryComponent(token)); path = path.replaceAll('{token}', Uri.encodeQueryComponent(token));
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1357,7 +1437,9 @@ class NextcloudUnifiedPushProviderClient {
Future<NextcloudUnifiedPushProviderPushResponse201ApplicationJson> push({required String token}) async { Future<NextcloudUnifiedPushProviderPushResponse201ApplicationJson> push({required String token}) async {
var path = '/index.php/apps/uppush/push/{token}'; var path = '/index.php/apps/uppush/push/{token}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{token}', Uri.encodeQueryComponent(token)); path = path.replaceAll('{token}', Uri.encodeQueryComponent(token));
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1377,7 +1459,9 @@ class NextcloudUnifiedPushProviderClient {
Future<NextcloudUnifiedPushProviderGatewayMatrixDiscoveryResponse200ApplicationJson> gatewayMatrixDiscovery() async { Future<NextcloudUnifiedPushProviderGatewayMatrixDiscoveryResponse200ApplicationJson> gatewayMatrixDiscovery() async {
var path = '/index.php/apps/uppush/gateway/matrix'; var path = '/index.php/apps/uppush/gateway/matrix';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -1396,7 +1480,9 @@ class NextcloudUnifiedPushProviderClient {
Future<NextcloudUnifiedPushProviderGatewayMatrixResponse200ApplicationJson> gatewayMatrix() async { Future<NextcloudUnifiedPushProviderGatewayMatrixResponse200ApplicationJson> gatewayMatrix() async {
var path = '/index.php/apps/uppush/gateway/matrix'; var path = '/index.php/apps/uppush/gateway/matrix';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'post', 'post',
@ -1420,7 +1506,9 @@ class NextcloudUserStatusClient {
Future<NextcloudUserStatusGetPublicStatuses> getPublicStatuses() async { Future<NextcloudUserStatusGetPublicStatuses> getPublicStatuses() async {
var path = '/ocs/v2.php/apps/user_status/api/v1/statuses'; var path = '/ocs/v2.php/apps/user_status/api/v1/statuses';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -1438,7 +1526,9 @@ class NextcloudUserStatusClient {
Future<NextcloudUserStatusGetPublicStatus> getPublicStatus({required String userId}) async { Future<NextcloudUserStatusGetPublicStatus> getPublicStatus({required String userId}) async {
var path = '/ocs/v2.php/apps/user_status/api/v1/statuses/{userId}'; var path = '/ocs/v2.php/apps/user_status/api/v1/statuses/{userId}';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
path = path.replaceAll('{userId}', Uri.encodeQueryComponent(userId)); path = path.replaceAll('{userId}', Uri.encodeQueryComponent(userId));
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1457,7 +1547,9 @@ class NextcloudUserStatusClient {
Future<NextcloudUserStatusGetStatus> getStatus() async { Future<NextcloudUserStatusGetStatus> getStatus() async {
var path = '/ocs/v2.php/apps/user_status/api/v1/user_status'; var path = '/ocs/v2.php/apps/user_status/api/v1/user_status';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -1475,7 +1567,9 @@ class NextcloudUserStatusClient {
Future<NextcloudUserStatusGetStatus> setStatus({required NextcloudUserStatusType statusType}) async { Future<NextcloudUserStatusGetStatus> setStatus({required NextcloudUserStatusType statusType}) async {
var path = '/ocs/v2.php/apps/user_status/api/v1/user_status/status'; var path = '/ocs/v2.php/apps/user_status/api/v1/user_status/status';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['statusType'] = statusType.value; queryParameters['statusType'] = statusType.value;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
@ -1497,7 +1591,9 @@ class NextcloudUserStatusClient {
}) async { }) async {
var path = '/ocs/v2.php/apps/user_status/api/v1/user_status/message/predefined'; var path = '/ocs/v2.php/apps/user_status/api/v1/user_status/message/predefined';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['messageId'] = messageId; queryParameters['messageId'] = messageId;
if (clearAt != null) { if (clearAt != null) {
@ -1523,7 +1619,9 @@ class NextcloudUserStatusClient {
}) async { }) async {
var path = '/ocs/v2.php/apps/user_status/api/v1/user_status/message/custom'; var path = '/ocs/v2.php/apps/user_status/api/v1/user_status/message/custom';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
if (statusIcon != null) { if (statusIcon != null) {
queryParameters['statusIcon'] = statusIcon; queryParameters['statusIcon'] = statusIcon;
@ -1567,7 +1665,9 @@ class NextcloudUserStatusClient {
Future<NextcloudUserStatusPredefinedStatuses> getPredefinedStatuses() async { Future<NextcloudUserStatusPredefinedStatuses> getPredefinedStatuses() async {
var path = '/ocs/v2.php/apps/user_status/api/v1/predefined_statuses'; var path = '/ocs/v2.php/apps/user_status/api/v1/predefined_statuses';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(
'get', 'get',
@ -1585,7 +1685,9 @@ class NextcloudUserStatusClient {
Future<NextcloudUserStatusStatus> heartbeat({required NextcloudUserStatusType status}) async { Future<NextcloudUserStatusStatus> heartbeat({required NextcloudUserStatusType status}) async {
var path = '/ocs/v2.php/apps/user_status/api/v1/heartbeat'; var path = '/ocs/v2.php/apps/user_status/api/v1/heartbeat';
final queryParameters = <String, dynamic>{}; final queryParameters = <String, dynamic>{};
final headers = <String, String>{}; final headers = <String, String>{
'Accept': 'application/json',
};
Uint8List? body; Uint8List? body;
queryParameters['status'] = status.value; queryParameters['status'] = status.value;
final response = await rootClient.doRequest( final response = await rootClient.doRequest(

Loading…
Cancel
Save