chore(server): auto sort open api spec (#3500)

* chore: recursively sort api keys

* chore: open api
This commit is contained in:
Jason Rasmussen
2023-08-01 12:49:18 -04:00
committed by GitHub
parent 690b87e375
commit 310fab526d
190 changed files with 6172 additions and 6168 deletions

View File

@@ -16,8 +16,8 @@ void main() {
// final instance = AddAssetsResponseDto();
group('test AddAssetsResponseDto', () {
// int successfullyAdded
test('to test the property `successfullyAdded`', () async {
// AlbumResponseDto album
test('to test the property `album`', () async {
// TODO
});
@@ -26,8 +26,8 @@ void main() {
// TODO
});
// AlbumResponseDto album
test('to test the property `album`', () async {
// int successfullyAdded
test('to test the property `successfullyAdded`', () async {
// TODO
});

View File

@@ -16,8 +16,8 @@ void main() {
// final instance = AdminSignupResponseDto();
group('test AdminSignupResponseDto', () {
// String id
test('to test the property `id`', () async {
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
@@ -31,13 +31,13 @@ void main() {
// TODO
});
// String lastName
test('to test the property `lastName`', () async {
// String id
test('to test the property `id`', () async {
// TODO
});
// DateTime createdAt
test('to test the property `createdAt`', () async {
// String lastName
test('to test the property `lastName`', () async {
// TODO
});

View File

@@ -16,6 +16,11 @@ void main() {
// final instance = AlbumCountResponseDto();
group('test AlbumCountResponseDto', () {
// int notShared
test('to test the property `notShared`', () async {
// TODO
});
// int owned
test('to test the property `owned`', () async {
// TODO
@@ -26,11 +31,6 @@ void main() {
// TODO
});
// int notShared
test('to test the property `notShared`', () async {
// TODO
});
});

View File

@@ -16,23 +16,23 @@ void main() {
// final instance = AlbumResponseDto();
group('test AlbumResponseDto', () {
// String albumName
test('to test the property `albumName`', () async {
// TODO
});
// String albumThumbnailAssetId
test('to test the property `albumThumbnailAssetId`', () async {
// TODO
});
// int assetCount
test('to test the property `assetCount`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
});
// String ownerId
test('to test the property `ownerId`', () async {
// TODO
});
// String albumName
test('to test the property `albumName`', () async {
// List<AssetResponseDto> assets (default value: const [])
test('to test the property `assets`', () async {
// TODO
});
@@ -41,13 +41,23 @@ void main() {
// TODO
});
// DateTime updatedAt
test('to test the property `updatedAt`', () async {
// String id
test('to test the property `id`', () async {
// TODO
});
// String albumThumbnailAssetId
test('to test the property `albumThumbnailAssetId`', () async {
// DateTime lastModifiedAssetTimestamp
test('to test the property `lastModifiedAssetTimestamp`', () async {
// TODO
});
// UserResponseDto owner
test('to test the property `owner`', () async {
// TODO
});
// String ownerId
test('to test the property `ownerId`', () async {
// TODO
});
@@ -61,18 +71,8 @@ void main() {
// TODO
});
// List<AssetResponseDto> assets (default value: const [])
test('to test the property `assets`', () async {
// TODO
});
// UserResponseDto owner
test('to test the property `owner`', () async {
// TODO
});
// DateTime lastModifiedAssetTimestamp
test('to test the property `lastModifiedAssetTimestamp`', () async {
// DateTime updatedAt
test('to test the property `updatedAt`', () async {
// TODO
});

View File

@@ -16,23 +16,8 @@ void main() {
// final instance = AllJobStatusResponseDto();
group('test AllJobStatusResponseDto', () {
// JobStatusDto thumbnailGeneration
test('to test the property `thumbnailGeneration`', () async {
// TODO
});
// JobStatusDto metadataExtraction
test('to test the property `metadataExtraction`', () async {
// TODO
});
// JobStatusDto videoConversion
test('to test the property `videoConversion`', () async {
// TODO
});
// JobStatusDto objectTagging
test('to test the property `objectTagging`', () async {
// JobStatusDto backgroundTask
test('to test the property `backgroundTask`', () async {
// TODO
});
@@ -41,18 +26,13 @@ void main() {
// TODO
});
// JobStatusDto storageTemplateMigration
test('to test the property `storageTemplateMigration`', () async {
// JobStatusDto metadataExtraction
test('to test the property `metadataExtraction`', () async {
// TODO
});
// JobStatusDto backgroundTask
test('to test the property `backgroundTask`', () async {
// TODO
});
// JobStatusDto search
test('to test the property `search`', () async {
// JobStatusDto objectTagging
test('to test the property `objectTagging`', () async {
// TODO
});
@@ -61,11 +41,31 @@ void main() {
// TODO
});
// JobStatusDto search
test('to test the property `search`', () async {
// TODO
});
// JobStatusDto sidecar
test('to test the property `sidecar`', () async {
// TODO
});
// JobStatusDto storageTemplateMigration
test('to test the property `storageTemplateMigration`', () async {
// TODO
});
// JobStatusDto thumbnailGeneration
test('to test the property `thumbnailGeneration`', () async {
// TODO
});
// JobStatusDto videoConversion
test('to test the property `videoConversion`', () async {
// TODO
});
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = APIKeyCreateResponseDto();
group('test APIKeyCreateResponseDto', () {
// String secret
test('to test the property `secret`', () async {
// APIKeyResponseDto apiKey
test('to test the property `apiKey`', () async {
// TODO
});
// APIKeyResponseDto apiKey
test('to test the property `apiKey`', () async {
// String secret
test('to test the property `secret`', () async {
// TODO
});

View File

@@ -16,6 +16,11 @@ void main() {
// final instance = APIKeyResponseDto();
group('test APIKeyResponseDto', () {
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
@@ -26,11 +31,6 @@ void main() {
// TODO
});
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// DateTime updatedAt
test('to test the property `updatedAt`', () async {
// TODO

View File

@@ -146,7 +146,7 @@ void main() {
// TODO
});
//Future<AssetFileUploadResponseDto> uploadFile(MultipartFile assetData, String deviceAssetId, String deviceId, DateTime fileCreatedAt, DateTime fileModifiedAt, bool isFavorite, { String key, MultipartFile livePhotoData, MultipartFile sidecarData, bool isReadOnly, bool isArchived, bool isVisible, String duration }) async
//Future<AssetFileUploadResponseDto> uploadFile(MultipartFile assetData, String deviceAssetId, String deviceId, DateTime fileCreatedAt, DateTime fileModifiedAt, bool isFavorite, { String key, String duration, bool isArchived, bool isReadOnly, bool isVisible, MultipartFile livePhotoData, MultipartFile sidecarData }) async
test('test uploadFile', () async {
// TODO
});

View File

@@ -16,17 +16,17 @@ void main() {
// final instance = AssetBulkUploadCheckItem();
group('test AssetBulkUploadCheckItem', () {
// String id
test('to test the property `id`', () async {
// TODO
});
// base64 or hex encoded sha1 hash
// String checksum
test('to test the property `checksum`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
});
});

View File

@@ -16,26 +16,26 @@ void main() {
// final instance = AssetBulkUploadCheckResult();
group('test AssetBulkUploadCheckResult', () {
// String id
test('to test the property `id`', () async {
// TODO
});
// String action
test('to test the property `action`', () async {
// TODO
});
// String reason
test('to test the property `reason`', () async {
// TODO
});
// String assetId
test('to test the property `assetId`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
});
// String reason
test('to test the property `reason`', () async {
// TODO
});
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = AssetCountByTimeBucketResponseDto();
group('test AssetCountByTimeBucketResponseDto', () {
// int totalCount
test('to test the property `totalCount`', () async {
// List<AssetCountByTimeBucket> buckets (default value: const [])
test('to test the property `buckets`', () async {
// TODO
});
// List<AssetCountByTimeBucket> buckets (default value: const [])
test('to test the property `buckets`', () async {
// int totalCount
test('to test the property `totalCount`', () async {
// TODO
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = AssetCountByTimeBucket();
group('test AssetCountByTimeBucket', () {
// String timeBucket
test('to test the property `timeBucket`', () async {
// int count
test('to test the property `count`', () async {
// TODO
});
// int count
test('to test the property `count`', () async {
// String timeBucket
test('to test the property `timeBucket`', () async {
// TODO
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = AssetFileUploadResponseDto();
group('test AssetFileUploadResponseDto', () {
// String id
test('to test the property `id`', () async {
// bool duplicate
test('to test the property `duplicate`', () async {
// TODO
});
// bool duplicate
test('to test the property `duplicate`', () async {
// String id
test('to test the property `id`', () async {
// TODO
});

View File

@@ -21,13 +21,13 @@ void main() {
// TODO
});
// bool success
test('to test the property `success`', () async {
// String error
test('to test the property `error`', () async {
// TODO
});
// String error
test('to test the property `error`', () async {
// bool success
test('to test the property `success`', () async {
// TODO
});

View File

@@ -16,13 +16,9 @@ void main() {
// final instance = AssetResponseDto();
group('test AssetResponseDto', () {
// AssetTypeEnum type
test('to test the property `type`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// base64 encoded sha1 hash
// String checksum
test('to test the property `checksum`', () async {
// TODO
});
@@ -31,62 +27,11 @@ void main() {
// TODO
});
// String ownerId
test('to test the property `ownerId`', () async {
// TODO
});
// String deviceId
test('to test the property `deviceId`', () async {
// TODO
});
// String originalPath
test('to test the property `originalPath`', () async {
// TODO
});
// String originalFileName
test('to test the property `originalFileName`', () async {
// TODO
});
// bool resized
test('to test the property `resized`', () async {
// TODO
});
// base64 encoded thumbhash
// String thumbhash
test('to test the property `thumbhash`', () async {
// TODO
});
// DateTime fileCreatedAt
test('to test the property `fileCreatedAt`', () async {
// TODO
});
// DateTime fileModifiedAt
test('to test the property `fileModifiedAt`', () async {
// TODO
});
// DateTime updatedAt
test('to test the property `updatedAt`', () async {
// TODO
});
// bool isFavorite
test('to test the property `isFavorite`', () async {
// TODO
});
// bool isArchived
test('to test the property `isArchived`', () async {
// TODO
});
// String duration
test('to test the property `duration`', () async {
// TODO
@@ -97,8 +42,28 @@ void main() {
// TODO
});
// SmartInfoResponseDto smartInfo
test('to test the property `smartInfo`', () async {
// DateTime fileCreatedAt
test('to test the property `fileCreatedAt`', () async {
// TODO
});
// DateTime fileModifiedAt
test('to test the property `fileModifiedAt`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
});
// bool isArchived
test('to test the property `isArchived`', () async {
// TODO
});
// bool isFavorite
test('to test the property `isFavorite`', () async {
// TODO
});
@@ -107,8 +72,18 @@ void main() {
// TODO
});
// List<TagResponseDto> tags (default value: const [])
test('to test the property `tags`', () async {
// String originalFileName
test('to test the property `originalFileName`', () async {
// TODO
});
// String originalPath
test('to test the property `originalPath`', () async {
// TODO
});
// String ownerId
test('to test the property `ownerId`', () async {
// TODO
});
@@ -117,9 +92,34 @@ void main() {
// TODO
});
// base64 encoded sha1 hash
// String checksum
test('to test the property `checksum`', () async {
// bool resized
test('to test the property `resized`', () async {
// TODO
});
// SmartInfoResponseDto smartInfo
test('to test the property `smartInfo`', () async {
// TODO
});
// List<TagResponseDto> tags (default value: const [])
test('to test the property `tags`', () async {
// TODO
});
// base64 encoded thumbhash
// String thumbhash
test('to test the property `thumbhash`', () async {
// TODO
});
// AssetTypeEnum type
test('to test the property `type`', () async {
// TODO
});
// DateTime updatedAt
test('to test the property `updatedAt`', () async {
// TODO
});

View File

@@ -21,13 +21,13 @@ void main() {
// TODO
});
// int videos
test('to test the property `videos`', () async {
// int total
test('to test the property `total`', () async {
// TODO
});
// int total
test('to test the property `total`', () async {
// int videos
test('to test the property `videos`', () async {
// TODO
});

View File

@@ -16,33 +16,33 @@ void main() {
// final instance = AuthDeviceResponseDto();
group('test AuthDeviceResponseDto', () {
// String id
test('to test the property `id`', () async {
// TODO
});
// String createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// String updatedAt
test('to test the property `updatedAt`', () async {
// TODO
});
// bool current
test('to test the property `current`', () async {
// TODO
});
// String deviceOS
test('to test the property `deviceOS`', () async {
// TODO
});
// String deviceType
test('to test the property `deviceType`', () async {
// TODO
});
// String deviceOS
test('to test the property `deviceOS`', () async {
// String id
test('to test the property `id`', () async {
// TODO
});
// String updatedAt
test('to test the property `updatedAt`', () async {
// TODO
});

View File

@@ -16,6 +16,11 @@ void main() {
// final instance = BulkIdResponseDto();
group('test BulkIdResponseDto', () {
// String error
test('to test the property `error`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
@@ -26,11 +31,6 @@ void main() {
// TODO
});
// String error
test('to test the property `error`', () async {
// TODO
});
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = ChangePasswordDto();
group('test ChangePasswordDto', () {
// String password
test('to test the property `password`', () async {
// String newPassword
test('to test the property `newPassword`', () async {
// TODO
});
// String newPassword
test('to test the property `newPassword`', () async {
// String password
test('to test the property `password`', () async {
// TODO
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = CheckDuplicateAssetResponseDto();
group('test CheckDuplicateAssetResponseDto', () {
// bool isExist
test('to test the property `isExist`', () async {
// String id
test('to test the property `id`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// bool isExist
test('to test the property `isExist`', () async {
// TODO
});

View File

@@ -21,13 +21,13 @@ void main() {
// TODO
});
// List<String> sharedWithUserIds (default value: const [])
test('to test the property `sharedWithUserIds`', () async {
// List<String> assetIds (default value: const [])
test('to test the property `assetIds`', () async {
// TODO
});
// List<String> assetIds (default value: const [])
test('to test the property `assetIds`', () async {
// List<String> sharedWithUserIds (default value: const [])
test('to test the property `sharedWithUserIds`', () async {
// TODO
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = CreateProfileImageResponseDto();
group('test CreateProfileImageResponseDto', () {
// String userId
test('to test the property `userId`', () async {
// String profileImagePath
test('to test the property `profileImagePath`', () async {
// TODO
});
// String profileImagePath
test('to test the property `profileImagePath`', () async {
// String userId
test('to test the property `userId`', () async {
// TODO
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = CreateTagDto();
group('test CreateTagDto', () {
// TagTypeEnum type
test('to test the property `type`', () async {
// String name
test('to test the property `name`', () async {
// TODO
});
// String name
test('to test the property `name`', () async {
// TagTypeEnum type
test('to test the property `type`', () async {
// TODO
});

View File

@@ -21,8 +21,8 @@ void main() {
// TODO
});
// String password
test('to test the property `password`', () async {
// String externalPath
test('to test the property `externalPath`', () async {
// TODO
});
@@ -36,13 +36,13 @@ void main() {
// TODO
});
// String storageLabel
test('to test the property `storageLabel`', () async {
// String password
test('to test the property `password`', () async {
// TODO
});
// String externalPath
test('to test the property `externalPath`', () async {
// String storageLabel
test('to test the property `storageLabel`', () async {
// TODO
});

View File

@@ -16,21 +16,11 @@ void main() {
// final instance = CuratedLocationsResponseDto();
group('test CuratedLocationsResponseDto', () {
// String id
test('to test the property `id`', () async {
// TODO
});
// String city
test('to test the property `city`', () async {
// TODO
});
// String resizePath
test('to test the property `resizePath`', () async {
// TODO
});
// String deviceAssetId
test('to test the property `deviceAssetId`', () async {
// TODO
@@ -41,6 +31,16 @@ void main() {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
});
// String resizePath
test('to test the property `resizePath`', () async {
// TODO
});
});

View File

@@ -16,6 +16,16 @@ void main() {
// final instance = CuratedObjectsResponseDto();
group('test CuratedObjectsResponseDto', () {
// String deviceAssetId
test('to test the property `deviceAssetId`', () async {
// TODO
});
// String deviceId
test('to test the property `deviceId`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
@@ -31,16 +41,6 @@ void main() {
// TODO
});
// String deviceAssetId
test('to test the property `deviceAssetId`', () async {
// TODO
});
// String deviceId
test('to test the property `deviceId`', () async {
// TODO
});
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = DeleteAssetResponseDto();
group('test DeleteAssetResponseDto', () {
// DeleteAssetStatus status
test('to test the property `status`', () async {
// String id
test('to test the property `id`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// DeleteAssetStatus status
test('to test the property `status`', () async {
// TODO
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = DownloadArchiveInfo();
group('test DownloadArchiveInfo', () {
// int size
test('to test the property `size`', () async {
// List<String> assetIds (default value: const [])
test('to test the property `assetIds`', () async {
// TODO
});
// List<String> assetIds (default value: const [])
test('to test the property `assetIds`', () async {
// int size
test('to test the property `size`', () async {
// TODO
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = DownloadResponseDto();
group('test DownloadResponseDto', () {
// int totalSize
test('to test the property `totalSize`', () async {
// List<DownloadArchiveInfo> archives (default value: const [])
test('to test the property `archives`', () async {
// TODO
});
// List<DownloadArchiveInfo> archives (default value: const [])
test('to test the property `archives`', () async {
// int totalSize
test('to test the property `totalSize`', () async {
// TODO
});

View File

@@ -16,33 +16,13 @@ void main() {
// final instance = ExifResponseDto();
group('test ExifResponseDto', () {
// int fileSizeInByte
test('to test the property `fileSizeInByte`', () async {
// String city
test('to test the property `city`', () async {
// TODO
});
// String make
test('to test the property `make`', () async {
// TODO
});
// String model
test('to test the property `model`', () async {
// TODO
});
// num exifImageWidth
test('to test the property `exifImageWidth`', () async {
// TODO
});
// num exifImageHeight
test('to test the property `exifImageHeight`', () async {
// TODO
});
// String orientation
test('to test the property `orientation`', () async {
// String country
test('to test the property `country`', () async {
// TODO
});
@@ -51,18 +31,23 @@ void main() {
// TODO
});
// DateTime modifyDate
test('to test the property `modifyDate`', () async {
// String description
test('to test the property `description`', () async {
// TODO
});
// String timeZone
test('to test the property `timeZone`', () async {
// num exifImageHeight
test('to test the property `exifImageHeight`', () async {
// TODO
});
// String lensModel
test('to test the property `lensModel`', () async {
// num exifImageWidth
test('to test the property `exifImageWidth`', () async {
// TODO
});
// String exposureTime
test('to test the property `exposureTime`', () async {
// TODO
});
@@ -71,6 +56,11 @@ void main() {
// TODO
});
// int fileSizeInByte
test('to test the property `fileSizeInByte`', () async {
// TODO
});
// num focalLength
test('to test the property `focalLength`', () async {
// TODO
@@ -81,13 +71,13 @@ void main() {
// TODO
});
// String exposureTime
test('to test the property `exposureTime`', () async {
// num latitude
test('to test the property `latitude`', () async {
// TODO
});
// num latitude
test('to test the property `latitude`', () async {
// String lensModel
test('to test the property `lensModel`', () async {
// TODO
});
@@ -96,23 +86,23 @@ void main() {
// TODO
});
// String city
test('to test the property `city`', () async {
// String make
test('to test the property `make`', () async {
// TODO
});
// String state
test('to test the property `state`', () async {
// String model
test('to test the property `model`', () async {
// TODO
});
// String country
test('to test the property `country`', () async {
// DateTime modifyDate
test('to test the property `modifyDate`', () async {
// TODO
});
// String description
test('to test the property `description`', () async {
// String orientation
test('to test the property `orientation`', () async {
// TODO
});
@@ -121,6 +111,16 @@ void main() {
// TODO
});
// String state
test('to test the property `state`', () async {
// TODO
});
// String timeZone
test('to test the property `timeZone`', () async {
// TODO
});
});

View File

@@ -16,21 +16,11 @@ void main() {
// final instance = ImportAssetDto();
group('test ImportAssetDto', () {
// bool isReadOnly (default value: true)
test('to test the property `isReadOnly`', () async {
// TODO
});
// String assetPath
test('to test the property `assetPath`', () async {
// TODO
});
// String sidecarPath
test('to test the property `sidecarPath`', () async {
// TODO
});
// String deviceAssetId
test('to test the property `deviceAssetId`', () async {
// TODO
@@ -41,6 +31,11 @@ void main() {
// TODO
});
// String duration
test('to test the property `duration`', () async {
// TODO
});
// DateTime fileCreatedAt
test('to test the property `fileCreatedAt`', () async {
// TODO
@@ -51,13 +46,18 @@ void main() {
// TODO
});
// bool isArchived
test('to test the property `isArchived`', () async {
// TODO
});
// bool isFavorite
test('to test the property `isFavorite`', () async {
// TODO
});
// bool isArchived
test('to test the property `isArchived`', () async {
// bool isReadOnly (default value: true)
test('to test the property `isReadOnly`', () async {
// TODO
});
@@ -66,8 +66,8 @@ void main() {
// TODO
});
// String duration
test('to test the property `duration`', () async {
// String sidecarPath
test('to test the property `sidecarPath`', () async {
// TODO
});

View File

@@ -26,18 +26,13 @@ void main() {
// TODO
});
// int failed
test('to test the property `failed`', () async {
// TODO
});
// int delayed
test('to test the property `delayed`', () async {
// TODO
});
// int waiting
test('to test the property `waiting`', () async {
// int failed
test('to test the property `failed`', () async {
// TODO
});
@@ -46,6 +41,11 @@ void main() {
// TODO
});
// int waiting
test('to test the property `waiting`', () async {
// TODO
});
});

View File

@@ -21,21 +21,16 @@ void main() {
// TODO
});
// String userId
test('to test the property `userId`', () async {
// TODO
});
// String userEmail
test('to test the property `userEmail`', () async {
// TODO
});
// String firstName
test('to test the property `firstName`', () async {
// TODO
});
// bool isAdmin
test('to test the property `isAdmin`', () async {
// TODO
});
// String lastName
test('to test the property `lastName`', () async {
// TODO
@@ -46,13 +41,18 @@ void main() {
// TODO
});
// bool isAdmin
test('to test the property `isAdmin`', () async {
// bool shouldChangePassword
test('to test the property `shouldChangePassword`', () async {
// TODO
});
// bool shouldChangePassword
test('to test the property `shouldChangePassword`', () async {
// String userEmail
test('to test the property `userEmail`', () async {
// TODO
});
// String userId
test('to test the property `userId`', () async {
// TODO
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = LogoutResponseDto();
group('test LogoutResponseDto', () {
// bool successful
test('to test the property `successful`', () async {
// String redirectUri
test('to test the property `redirectUri`', () async {
// TODO
});
// String redirectUri
test('to test the property `redirectUri`', () async {
// bool successful
test('to test the property `successful`', () async {
// TODO
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = MemoryLaneResponseDto();
group('test MemoryLaneResponseDto', () {
// String title
test('to test the property `title`', () async {
// List<AssetResponseDto> assets (default value: const [])
test('to test the property `assets`', () async {
// TODO
});
// List<AssetResponseDto> assets (default value: const [])
test('to test the property `assets`', () async {
// String title
test('to test the property `title`', () async {
// TODO
});

View File

@@ -16,6 +16,16 @@ void main() {
// final instance = OAuthConfigResponseDto();
group('test OAuthConfigResponseDto', () {
// bool autoLaunch
test('to test the property `autoLaunch`', () async {
// TODO
});
// String buttonText
test('to test the property `buttonText`', () async {
// TODO
});
// bool enabled
test('to test the property `enabled`', () async {
// TODO
@@ -31,16 +41,6 @@ void main() {
// TODO
});
// String buttonText
test('to test the property `buttonText`', () async {
// TODO
});
// bool autoLaunch
test('to test the property `autoLaunch`', () async {
// TODO
});
});

View File

@@ -16,6 +16,11 @@ void main() {
// final instance = PeopleResponseDto();
group('test PeopleResponseDto', () {
// List<PersonResponseDto> people (default value: const [])
test('to test the property `people`', () async {
// TODO
});
// num total
test('to test the property `total`', () async {
// TODO
@@ -26,11 +31,6 @@ void main() {
// TODO
});
// List<PersonResponseDto> people (default value: const [])
test('to test the property `people`', () async {
// TODO
});
});

View File

@@ -16,30 +16,30 @@ void main() {
// final instance = PeopleUpdateItem();
group('test PeopleUpdateItem', () {
// Person id.
// String id
test('to test the property `id`', () async {
// TODO
});
// Person name.
// String name
test('to test the property `name`', () async {
// TODO
});
// Asset is used to get the feature face thumbnail.
// String featureFaceAssetId
test('to test the property `featureFaceAssetId`', () async {
// TODO
});
// Person id.
// String id
test('to test the property `id`', () async {
// TODO
});
// Person visibility
// bool isHidden
test('to test the property `isHidden`', () async {
// TODO
});
// Person name.
// String name
test('to test the property `name`', () async {
// TODO
});
});

View File

@@ -21,6 +21,11 @@ void main() {
// TODO
});
// bool isHidden
test('to test the property `isHidden`', () async {
// TODO
});
// String name
test('to test the property `name`', () async {
// TODO
@@ -31,11 +36,6 @@ void main() {
// TODO
});
// bool isHidden
test('to test the property `isHidden`', () async {
// TODO
});
});

View File

@@ -16,12 +16,6 @@ void main() {
// final instance = PersonUpdateDto();
group('test PersonUpdateDto', () {
// Person name.
// String name
test('to test the property `name`', () async {
// TODO
});
// Asset is used to get the feature face thumbnail.
// String featureFaceAssetId
test('to test the property `featureFaceAssetId`', () async {
@@ -34,6 +28,12 @@ void main() {
// TODO
});
// Person name.
// String name
test('to test the property `name`', () async {
// TODO
});
});

View File

@@ -16,26 +16,26 @@ void main() {
// final instance = SearchAlbumResponseDto();
group('test SearchAlbumResponseDto', () {
// int total
test('to test the property `total`', () async {
// TODO
});
// int count
test('to test the property `count`', () async {
// TODO
});
// List<AlbumResponseDto> items (default value: const [])
test('to test the property `items`', () async {
// TODO
});
// List<SearchFacetResponseDto> facets (default value: const [])
test('to test the property `facets`', () async {
// TODO
});
// List<AlbumResponseDto> items (default value: const [])
test('to test the property `items`', () async {
// TODO
});
// int total
test('to test the property `total`', () async {
// TODO
});
});

View File

@@ -16,26 +16,26 @@ void main() {
// final instance = SearchAssetResponseDto();
group('test SearchAssetResponseDto', () {
// int total
test('to test the property `total`', () async {
// TODO
});
// int count
test('to test the property `count`', () async {
// TODO
});
// List<AssetResponseDto> items (default value: const [])
test('to test the property `items`', () async {
// TODO
});
// List<SearchFacetResponseDto> facets (default value: const [])
test('to test the property `facets`', () async {
// TODO
});
// List<AssetResponseDto> items (default value: const [])
test('to test the property `items`', () async {
// TODO
});
// int total
test('to test the property `total`', () async {
// TODO
});
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = SearchExploreItem();
group('test SearchExploreItem', () {
// String value
test('to test the property `value`', () async {
// AssetResponseDto data
test('to test the property `data`', () async {
// TODO
});
// AssetResponseDto data
test('to test the property `data`', () async {
// String value
test('to test the property `value`', () async {
// TODO
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = SearchFacetResponseDto();
group('test SearchFacetResponseDto', () {
// String fieldName
test('to test the property `fieldName`', () async {
// List<SearchFacetCountResponseDto> counts (default value: const [])
test('to test the property `counts`', () async {
// TODO
});
// List<SearchFacetCountResponseDto> counts (default value: const [])
test('to test the property `counts`', () async {
// String fieldName
test('to test the property `fieldName`', () async {
// TODO
});

View File

@@ -16,13 +16,8 @@ void main() {
// final instance = ServerInfoResponseDto();
group('test ServerInfoResponseDto', () {
// int diskSizeRaw
test('to test the property `diskSizeRaw`', () async {
// TODO
});
// int diskUseRaw
test('to test the property `diskUseRaw`', () async {
// String diskAvailable
test('to test the property `diskAvailable`', () async {
// TODO
});
@@ -31,13 +26,18 @@ void main() {
// TODO
});
// double diskUsagePercentage
test('to test the property `diskUsagePercentage`', () async {
// String diskSize
test('to test the property `diskSize`', () async {
// TODO
});
// String diskSize
test('to test the property `diskSize`', () async {
// int diskSizeRaw
test('to test the property `diskSizeRaw`', () async {
// TODO
});
// double diskUsagePercentage
test('to test the property `diskUsagePercentage`', () async {
// TODO
});
@@ -46,8 +46,8 @@ void main() {
// TODO
});
// String diskAvailable
test('to test the property `diskAvailable`', () async {
// int diskUseRaw
test('to test the property `diskUseRaw`', () async {
// TODO
});

View File

@@ -16,11 +16,6 @@ void main() {
// final instance = ServerMediaTypesResponseDto();
group('test ServerMediaTypesResponseDto', () {
// List<String> video (default value: const [])
test('to test the property `video`', () async {
// TODO
});
// List<String> image (default value: const [])
test('to test the property `image`', () async {
// TODO
@@ -31,6 +26,11 @@ void main() {
// TODO
});
// List<String> video (default value: const [])
test('to test the property `video`', () async {
// TODO
});
});

View File

@@ -21,11 +21,6 @@ void main() {
// TODO
});
// int videos (default value: 0)
test('to test the property `videos`', () async {
// TODO
});
// int usage (default value: 0)
test('to test the property `usage`', () async {
// TODO
@@ -36,6 +31,11 @@ void main() {
// TODO
});
// int videos (default value: 0)
test('to test the property `videos`', () async {
// TODO
});
});

View File

@@ -16,8 +16,18 @@ void main() {
// final instance = SharedLinkCreateDto();
group('test SharedLinkCreateDto', () {
// SharedLinkType type
test('to test the property `type`', () async {
// String albumId
test('to test the property `albumId`', () async {
// TODO
});
// bool allowDownload (default value: true)
test('to test the property `allowDownload`', () async {
// TODO
});
// bool allowUpload (default value: false)
test('to test the property `allowUpload`', () async {
// TODO
});
@@ -26,11 +36,6 @@ void main() {
// TODO
});
// String albumId
test('to test the property `albumId`', () async {
// TODO
});
// String description
test('to test the property `description`', () async {
// TODO
@@ -41,21 +46,16 @@ void main() {
// TODO
});
// bool allowUpload (default value: false)
test('to test the property `allowUpload`', () async {
// TODO
});
// bool allowDownload (default value: true)
test('to test the property `allowDownload`', () async {
// TODO
});
// bool showExif (default value: true)
test('to test the property `showExif`', () async {
// TODO
});
// SharedLinkType type
test('to test the property `type`', () async {
// TODO
});
});

View File

@@ -16,13 +16,8 @@ void main() {
// final instance = SharedLinkEditDto();
group('test SharedLinkEditDto', () {
// String description
test('to test the property `description`', () async {
// TODO
});
// DateTime expiresAt
test('to test the property `expiresAt`', () async {
// bool allowDownload
test('to test the property `allowDownload`', () async {
// TODO
});
@@ -31,8 +26,13 @@ void main() {
// TODO
});
// bool allowDownload
test('to test the property `allowDownload`', () async {
// String description
test('to test the property `description`', () async {
// TODO
});
// DateTime expiresAt
test('to test the property `expiresAt`', () async {
// TODO
});

View File

@@ -16,66 +16,66 @@ void main() {
// final instance = SharedLinkResponseDto();
group('test SharedLinkResponseDto', () {
// SharedLinkType type
test('to test the property `type`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
});
// String description
test('to test the property `description`', () async {
// TODO
});
// String userId
test('to test the property `userId`', () async {
// TODO
});
// String key
test('to test the property `key`', () async {
// TODO
});
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// DateTime expiresAt
test('to test the property `expiresAt`', () async {
// TODO
});
// List<AssetResponseDto> assets (default value: const [])
test('to test the property `assets`', () async {
// TODO
});
// AlbumResponseDto album
test('to test the property `album`', () async {
// TODO
});
// bool allowUpload
test('to test the property `allowUpload`', () async {
// TODO
});
// bool allowDownload
test('to test the property `allowDownload`', () async {
// TODO
});
// bool allowUpload
test('to test the property `allowUpload`', () async {
// TODO
});
// List<AssetResponseDto> assets (default value: const [])
test('to test the property `assets`', () async {
// TODO
});
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// String description
test('to test the property `description`', () async {
// TODO
});
// DateTime expiresAt
test('to test the property `expiresAt`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
});
// String key
test('to test the property `key`', () async {
// TODO
});
// bool showExif
test('to test the property `showExif`', () async {
// TODO
});
// SharedLinkType type
test('to test the property `type`', () async {
// TODO
});
// String userId
test('to test the property `userId`', () async {
// TODO
});
});

View File

@@ -21,11 +21,6 @@ void main() {
// TODO
});
// String password
test('to test the property `password`', () async {
// TODO
});
// String firstName
test('to test the property `firstName`', () async {
// TODO
@@ -36,6 +31,11 @@ void main() {
// TODO
});
// String password
test('to test the property `password`', () async {
// TODO
});
});

View File

@@ -16,13 +16,13 @@ void main() {
// final instance = SmartInfoResponseDto();
group('test SmartInfoResponseDto', () {
// List<String> tags (default value: const [])
test('to test the property `tags`', () async {
// List<String> objects (default value: const [])
test('to test the property `objects`', () async {
// TODO
});
// List<String> objects (default value: const [])
test('to test the property `objects`', () async {
// List<String> tags (default value: const [])
test('to test the property `tags`', () async {
// TODO
});

View File

@@ -21,6 +21,11 @@ void main() {
// TODO
});
// SystemConfigJobDto job
test('to test the property `job`', () async {
// TODO
});
// SystemConfigOAuthDto oauth
test('to test the property `oauth`', () async {
// TODO
@@ -36,11 +41,6 @@ void main() {
// TODO
});
// SystemConfigJobDto job
test('to test the property `job`', () async {
// TODO
});
});

View File

@@ -21,23 +21,8 @@ void main() {
// TODO
});
// int threads
test('to test the property `threads`', () async {
// TODO
});
// VideoCodec targetVideoCodec
test('to test the property `targetVideoCodec`', () async {
// TODO
});
// AudioCodec targetAudioCodec
test('to test the property `targetAudioCodec`', () async {
// TODO
});
// TranscodePolicy transcode
test('to test the property `transcode`', () async {
// String maxBitrate
test('to test the property `maxBitrate`', () async {
// TODO
});
@@ -46,13 +31,28 @@ void main() {
// TODO
});
// AudioCodec targetAudioCodec
test('to test the property `targetAudioCodec`', () async {
// TODO
});
// String targetResolution
test('to test the property `targetResolution`', () async {
// TODO
});
// String maxBitrate
test('to test the property `maxBitrate`', () async {
// VideoCodec targetVideoCodec
test('to test the property `targetVideoCodec`', () async {
// TODO
});
// int threads
test('to test the property `threads`', () async {
// TODO
});
// TranscodePolicy transcode
test('to test the property `transcode`', () async {
// TODO
});

View File

@@ -16,23 +16,8 @@ void main() {
// final instance = SystemConfigJobDto();
group('test SystemConfigJobDto', () {
// JobSettingsDto thumbnailGeneration
test('to test the property `thumbnailGeneration`', () async {
// TODO
});
// JobSettingsDto metadataExtraction
test('to test the property `metadataExtraction`', () async {
// TODO
});
// JobSettingsDto videoConversion
test('to test the property `videoConversion`', () async {
// TODO
});
// JobSettingsDto objectTagging
test('to test the property `objectTagging`', () async {
// JobSettingsDto backgroundTask
test('to test the property `backgroundTask`', () async {
// TODO
});
@@ -41,18 +26,13 @@ void main() {
// TODO
});
// JobSettingsDto storageTemplateMigration
test('to test the property `storageTemplateMigration`', () async {
// JobSettingsDto metadataExtraction
test('to test the property `metadataExtraction`', () async {
// TODO
});
// JobSettingsDto backgroundTask
test('to test the property `backgroundTask`', () async {
// TODO
});
// JobSettingsDto search
test('to test the property `search`', () async {
// JobSettingsDto objectTagging
test('to test the property `objectTagging`', () async {
// TODO
});
@@ -61,11 +41,31 @@ void main() {
// TODO
});
// JobSettingsDto search
test('to test the property `search`', () async {
// TODO
});
// JobSettingsDto sidecar
test('to test the property `sidecar`', () async {
// TODO
});
// JobSettingsDto storageTemplateMigration
test('to test the property `storageTemplateMigration`', () async {
// TODO
});
// JobSettingsDto thumbnailGeneration
test('to test the property `thumbnailGeneration`', () async {
// TODO
});
// JobSettingsDto videoConversion
test('to test the property `videoConversion`', () async {
// TODO
});
});

View File

@@ -16,13 +16,18 @@ void main() {
// final instance = SystemConfigOAuthDto();
group('test SystemConfigOAuthDto', () {
// bool enabled
test('to test the property `enabled`', () async {
// bool autoLaunch
test('to test the property `autoLaunch`', () async {
// TODO
});
// String issuerUrl
test('to test the property `issuerUrl`', () async {
// bool autoRegister
test('to test the property `autoRegister`', () async {
// TODO
});
// String buttonText
test('to test the property `buttonText`', () async {
// TODO
});
@@ -36,28 +41,13 @@ void main() {
// TODO
});
// String scope
test('to test the property `scope`', () async {
// bool enabled
test('to test the property `enabled`', () async {
// TODO
});
// String storageLabelClaim
test('to test the property `storageLabelClaim`', () async {
// TODO
});
// String buttonText
test('to test the property `buttonText`', () async {
// TODO
});
// bool autoRegister
test('to test the property `autoRegister`', () async {
// TODO
});
// bool autoLaunch
test('to test the property `autoLaunch`', () async {
// String issuerUrl
test('to test the property `issuerUrl`', () async {
// TODO
});
@@ -71,6 +61,16 @@ void main() {
// TODO
});
// String scope
test('to test the property `scope`', () async {
// TODO
});
// String storageLabelClaim
test('to test the property `storageLabelClaim`', () async {
// TODO
});
});

View File

@@ -16,16 +16,6 @@ void main() {
// final instance = SystemConfigTemplateStorageOptionDto();
group('test SystemConfigTemplateStorageOptionDto', () {
// List<String> yearOptions (default value: const [])
test('to test the property `yearOptions`', () async {
// TODO
});
// List<String> monthOptions (default value: const [])
test('to test the property `monthOptions`', () async {
// TODO
});
// List<String> dayOptions (default value: const [])
test('to test the property `dayOptions`', () async {
// TODO
@@ -41,8 +31,8 @@ void main() {
// TODO
});
// List<String> secondOptions (default value: const [])
test('to test the property `secondOptions`', () async {
// List<String> monthOptions (default value: const [])
test('to test the property `monthOptions`', () async {
// TODO
});
@@ -51,6 +41,16 @@ void main() {
// TODO
});
// List<String> secondOptions (default value: const [])
test('to test the property `secondOptions`', () async {
// TODO
});
// List<String> yearOptions (default value: const [])
test('to test the property `yearOptions`', () async {
// TODO
});
});

View File

@@ -16,11 +16,6 @@ void main() {
// final instance = TagResponseDto();
group('test TagResponseDto', () {
// TagTypeEnum type
test('to test the property `type`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
@@ -31,6 +26,11 @@ void main() {
// TODO
});
// TagTypeEnum type
test('to test the property `type`', () async {
// TODO
});
// String userId
test('to test the property `userId`', () async {
// TODO

View File

@@ -16,13 +16,8 @@ void main() {
// final instance = UpdateAssetDto();
group('test UpdateAssetDto', () {
// List<String> tagIds (default value: const [])
test('to test the property `tagIds`', () async {
// TODO
});
// bool isFavorite
test('to test the property `isFavorite`', () async {
// String description
test('to test the property `description`', () async {
// TODO
});
@@ -31,8 +26,13 @@ void main() {
// TODO
});
// String description
test('to test the property `description`', () async {
// bool isFavorite
test('to test the property `isFavorite`', () async {
// TODO
});
// List<String> tagIds (default value: const [])
test('to test the property `tagIds`', () async {
// TODO
});

View File

@@ -16,51 +16,51 @@ void main() {
// final instance = UpdateUserDto();
group('test UpdateUserDto', () {
// String id
test('to test the property `id`', () async {
// TODO
});
// String email
test('to test the property `email`', () async {
// TODO
});
// String password
test('to test the property `password`', () async {
// TODO
});
// String firstName
test('to test the property `firstName`', () async {
// TODO
});
// String lastName
test('to test the property `lastName`', () async {
// TODO
});
// String storageLabel
test('to test the property `storageLabel`', () async {
// TODO
});
// String externalPath
test('to test the property `externalPath`', () async {
// TODO
});
// String firstName
test('to test the property `firstName`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
});
// bool isAdmin
test('to test the property `isAdmin`', () async {
// TODO
});
// String lastName
test('to test the property `lastName`', () async {
// TODO
});
// String password
test('to test the property `password`', () async {
// TODO
});
// bool shouldChangePassword
test('to test the property `shouldChangePassword`', () async {
// TODO
});
// String storageLabel
test('to test the property `storageLabel`', () async {
// TODO
});
});

View File

@@ -16,36 +16,36 @@ void main() {
// final instance = UsageByUserDto();
group('test UsageByUserDto', () {
// String userId
test('to test the property `userId`', () async {
// TODO
});
// String userFirstName
test('to test the property `userFirstName`', () async {
// TODO
});
// String userLastName
test('to test the property `userLastName`', () async {
// TODO
});
// int photos
test('to test the property `photos`', () async {
// TODO
});
// int videos
test('to test the property `videos`', () async {
// TODO
});
// int usage
test('to test the property `usage`', () async {
// TODO
});
// String userFirstName
test('to test the property `userFirstName`', () async {
// TODO
});
// String userId
test('to test the property `userId`', () async {
// TODO
});
// String userLastName
test('to test the property `userLastName`', () async {
// TODO
});
// int videos
test('to test the property `videos`', () async {
// TODO
});
});

View File

@@ -16,8 +16,13 @@ void main() {
// final instance = UserResponseDto();
group('test UserResponseDto', () {
// String id
test('to test the property `id`', () async {
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// DateTime deletedAt
test('to test the property `deletedAt`', () async {
// TODO
});
@@ -26,23 +31,33 @@ void main() {
// TODO
});
// String externalPath
test('to test the property `externalPath`', () async {
// TODO
});
// String firstName
test('to test the property `firstName`', () async {
// TODO
});
// String id
test('to test the property `id`', () async {
// TODO
});
// bool isAdmin
test('to test the property `isAdmin`', () async {
// TODO
});
// String lastName
test('to test the property `lastName`', () async {
// TODO
});
// String storageLabel
test('to test the property `storageLabel`', () async {
// TODO
});
// String externalPath
test('to test the property `externalPath`', () async {
// String oauthId
test('to test the property `oauthId`', () async {
// TODO
});
@@ -56,18 +71,8 @@ void main() {
// TODO
});
// bool isAdmin
test('to test the property `isAdmin`', () async {
// TODO
});
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// DateTime deletedAt
test('to test the property `deletedAt`', () async {
// String storageLabel
test('to test the property `storageLabel`', () async {
// TODO
});
@@ -76,11 +81,6 @@ void main() {
// TODO
});
// String oauthId
test('to test the property `oauthId`', () async {
// TODO
});
});