mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
57 lines
1.6 KiB
Dart
57 lines
1.6 KiB
Dart
//
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
//
|
|
// @dart=2.18
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
// ignore_for_file: constant_identifier_names
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
import 'package:openapi/api.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
/// tests for PluginsApi
|
|
void main() {
|
|
// final instance = PluginsApi();
|
|
|
|
group('tests for PluginsApi', () {
|
|
// Retrieve a plugin
|
|
//
|
|
// Retrieve information about a specific plugin by its ID.
|
|
//
|
|
//Future<PluginResponseDto> getPlugin(String id) async
|
|
test('test getPlugin', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Retrieve plugin methods
|
|
//
|
|
// Retrieve a list of plugin methods
|
|
//
|
|
//Future<List<PluginMethodResponseDto>> searchPluginMethods({ String description, bool enabled, String id, String name, String pluginName, String pluginVersion, String title, WorkflowTrigger trigger, WorkflowType type }) async
|
|
test('test searchPluginMethods', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Retrieve workflow templates
|
|
//
|
|
// Retrieve workflow templates provided by installed plugins
|
|
//
|
|
//Future<List<PluginTemplateResponseDto>> searchPluginTemplates() async
|
|
test('test searchPluginTemplates', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List all plugins
|
|
//
|
|
// Retrieve a list of plugins available to the authenticated user.
|
|
//
|
|
//Future<List<PluginResponseDto>> searchPlugins({ String description, bool enabled, String id, String name, String title, String version }) async
|
|
test('test searchPlugins', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|