Compare commits

...

18 Commits

Author SHA1 Message Date
NaiJi ✨ 3a0221e8b1 chore: Merge master into desec 2023-06-02 00:52:32 -03:00
Inex Code 7a80590fc8 Merge pull request 'feat: Add DeSEC as a DNS provider' (#211) from desec into master
Reviewed-on: kherel/selfprivacy.org.app#211
2023-06-01 15:16:15 +03:00
NaiJi ✨ f55800cd72 fix: Implement better domain id check on DNS restoration 2023-06-01 15:12:49 +03:00
Inex Code 370cbf1052 fix(ui): Button margins 2023-06-01 15:12:49 +03:00
Inex Code 4e65d5f945 refactor: Migrate to Flutter 3.10 and Dart 3.0 2023-06-01 15:12:49 +03:00
def 523a1a6df8 update desec markdown 2023-06-01 15:12:49 +03:00
NaiJi ✨ 0c038fda43 fix: Remove price lists for DNS and move deSEC onto above Cloudflare 2023-06-01 15:12:49 +03:00
NaiJi ✨ 0e3e560485 feat: Remove certificate check during installation 2023-06-01 15:12:49 +03:00
NaiJi ✨ 25eb82c131 feat: Implement proper access recovery for DNS providers 2023-06-01 15:12:49 +03:00
NaiJi ✨ 73ec2687b2 fix: Make minor improvements for deSEC 2023-06-01 15:12:49 +03:00
NaiJi ✨ 8b0d318eac chore: Add assets for deSEC 2023-06-01 15:12:49 +03:00
NaiJi ✨ 6bee028188 feat: Implement proper DKIM creation for deSEC 2023-06-01 15:12:49 +03:00
NaiJi ✨ 32ef162f9b feat: Implement polymorphic DNS check for DNS API 2023-06-01 15:12:49 +03:00
NaiJi ✨ c67e37a40e fix: Adjust graphql schemas to new dns provider
- fix runtime bugs
2023-06-01 15:12:49 +03:00
NaiJi ✨ 01c09aaae4 feat: Implement deSEC API support 2023-06-01 15:12:49 +03:00
NaiJi ✨ b41b4159b4 feat: Implement infrastructure for new DNS provider deSEC 2023-06-01 15:12:49 +03:00
def 309e7ba621 Merge pull request 'fix old link' (#208) from fix-old-link into master
Reviewed-on: kherel/selfprivacy.org.app#208
Reviewed-by: Inex Code <inex.code@selfprivacy.org>
2023-05-20 23:13:15 +03:00
def 53cf228748 fix old link 2023-05-19 11:45:22 +03:00
22 changed files with 2012 additions and 735 deletions

View File

@ -2,7 +2,7 @@
SelfPrivacy — is a platform on your cloud hosting, that allows to deploy your own private services and control them using mobile application. SelfPrivacy — is a platform on your cloud hosting, that allows to deploy your own private services and control them using mobile application.
To use this application, you'll be required to create accounts of different service providers. Please reffer to this manual: https://selfprivacy.org/en/second To use this application, you'll be required to create accounts of different service providers. Please reffer to this manual: https://selfprivacy.org/docs/getting-started/
Application will do the following things for you: Application will do the following things for you:

View File

@ -39,6 +39,6 @@ subprojects {
project.evaluationDependsOn(':app') project.evaluationDependsOn(':app')
} }
task clean(type: Delete) { tasks.register("clean", Delete) {
delete rootProject.buildDir delete rootProject.buildDir
} }

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip

View File

@ -142,6 +142,177 @@ extension UtilityExtension$Fragment$basicMutationReturnFields
this, this,
(i) => i, (i) => i,
); );
_T when<_T>({
required _T Function(
Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)
apiKeyMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)
autoUpgradeSettingsMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn)
deviceApiTokenMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$GenericJobButationReturn)
genericJobButationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$GenericMutationReturn)
genericMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$ServiceJobMutationReturn)
serviceJobMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$ServiceMutationReturn)
serviceMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$TimezoneMutationReturn)
timezoneMutationReturn,
required _T Function(Fragment$basicMutationReturnFields$$UserMutationReturn)
userMutationReturn,
required _T Function() orElse,
}) {
switch ($__typename) {
case "ApiKeyMutationReturn":
return apiKeyMutationReturn(
this as Fragment$basicMutationReturnFields$$ApiKeyMutationReturn);
case "AutoUpgradeSettingsMutationReturn":
return autoUpgradeSettingsMutationReturn(this
as Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn);
case "DeviceApiTokenMutationReturn":
return deviceApiTokenMutationReturn(this
as Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn);
case "GenericJobButationReturn":
return genericJobButationReturn(this
as Fragment$basicMutationReturnFields$$GenericJobButationReturn);
case "GenericMutationReturn":
return genericMutationReturn(
this as Fragment$basicMutationReturnFields$$GenericMutationReturn);
case "ServiceJobMutationReturn":
return serviceJobMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceJobMutationReturn);
case "ServiceMutationReturn":
return serviceMutationReturn(
this as Fragment$basicMutationReturnFields$$ServiceMutationReturn);
case "TimezoneMutationReturn":
return timezoneMutationReturn(
this as Fragment$basicMutationReturnFields$$TimezoneMutationReturn);
case "UserMutationReturn":
return userMutationReturn(
this as Fragment$basicMutationReturnFields$$UserMutationReturn);
default:
return orElse();
}
}
_T maybeWhen<_T>({
_T Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)?
apiKeyMutationReturn,
_T Function(
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)?
autoUpgradeSettingsMutationReturn,
_T Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn)?
deviceApiTokenMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$GenericJobButationReturn)?
genericJobButationReturn,
_T Function(Fragment$basicMutationReturnFields$$GenericMutationReturn)?
genericMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$ServiceJobMutationReturn)?
serviceJobMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn)?
serviceMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$TimezoneMutationReturn)?
timezoneMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$UserMutationReturn)?
userMutationReturn,
required _T Function() orElse,
}) {
switch ($__typename) {
case "ApiKeyMutationReturn":
if (apiKeyMutationReturn != null) {
return apiKeyMutationReturn(
this as Fragment$basicMutationReturnFields$$ApiKeyMutationReturn);
} else {
return orElse();
}
case "AutoUpgradeSettingsMutationReturn":
if (autoUpgradeSettingsMutationReturn != null) {
return autoUpgradeSettingsMutationReturn(this
as Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn);
} else {
return orElse();
}
case "DeviceApiTokenMutationReturn":
if (deviceApiTokenMutationReturn != null) {
return deviceApiTokenMutationReturn(this
as Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn);
} else {
return orElse();
}
case "GenericJobButationReturn":
if (genericJobButationReturn != null) {
return genericJobButationReturn(this
as Fragment$basicMutationReturnFields$$GenericJobButationReturn);
} else {
return orElse();
}
case "GenericMutationReturn":
if (genericMutationReturn != null) {
return genericMutationReturn(this
as Fragment$basicMutationReturnFields$$GenericMutationReturn);
} else {
return orElse();
}
case "ServiceJobMutationReturn":
if (serviceJobMutationReturn != null) {
return serviceJobMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceJobMutationReturn);
} else {
return orElse();
}
case "ServiceMutationReturn":
if (serviceMutationReturn != null) {
return serviceMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceMutationReturn);
} else {
return orElse();
}
case "TimezoneMutationReturn":
if (timezoneMutationReturn != null) {
return timezoneMutationReturn(this
as Fragment$basicMutationReturnFields$$TimezoneMutationReturn);
} else {
return orElse();
}
case "UserMutationReturn":
if (userMutationReturn != null) {
return userMutationReturn(
this as Fragment$basicMutationReturnFields$$UserMutationReturn);
} else {
return orElse();
}
default:
return orElse();
}
}
} }
abstract class CopyWith$Fragment$basicMutationReturnFields<TRes> { abstract class CopyWith$Fragment$basicMutationReturnFields<TRes> {
@ -172,7 +343,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields<TRes>
final TRes Function(Fragment$basicMutationReturnFields) _then; final TRes Function(Fragment$basicMutationReturnFields) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -298,7 +469,7 @@ class Fragment$basicMutationReturnFields$$ApiKeyMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ApiKeyMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ApiKeyMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ApiKeyMutationReturn.fromJson(
@ -429,7 +600,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ApiKeyMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -477,7 +648,7 @@ class Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'AutoUpgradeSettingsMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn.fromJson(
@ -613,7 +784,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutat
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn) Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -662,7 +833,7 @@ class Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'DeviceApiTokenMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn.fromJson(
@ -796,7 +967,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$DeviceApiTokenMutationRe
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn) _then; Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -844,7 +1015,7 @@ class Fragment$basicMutationReturnFields$$GenericJobButationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericJobButationReturn',
}); });
factory Fragment$basicMutationReturnFields$$GenericJobButationReturn.fromJson( factory Fragment$basicMutationReturnFields$$GenericJobButationReturn.fromJson(
@ -976,7 +1147,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$GenericJobButationReturn
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$GenericJobButationReturn) _then; Fragment$basicMutationReturnFields$$GenericJobButationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1024,7 +1195,7 @@ class Fragment$basicMutationReturnFields$$GenericMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$GenericMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$GenericMutationReturn.fromJson(
@ -1155,7 +1326,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$GenericMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$GenericMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$GenericMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1203,7 +1374,7 @@ class Fragment$basicMutationReturnFields$$ServiceJobMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceJobMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ServiceJobMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ServiceJobMutationReturn.fromJson(
@ -1335,7 +1506,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ServiceJobMutationReturn
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$ServiceJobMutationReturn) _then; Fragment$basicMutationReturnFields$$ServiceJobMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1383,7 +1554,7 @@ class Fragment$basicMutationReturnFields$$ServiceMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ServiceMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ServiceMutationReturn.fromJson(
@ -1514,7 +1685,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ServiceMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1562,7 +1733,7 @@ class Fragment$basicMutationReturnFields$$TimezoneMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'TimezoneMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$TimezoneMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$TimezoneMutationReturn.fromJson(
@ -1694,7 +1865,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$TimezoneMutationReturn<
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$TimezoneMutationReturn) _then; Fragment$basicMutationReturnFields$$TimezoneMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1742,7 +1913,7 @@ class Fragment$basicMutationReturnFields$$UserMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'UserMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$UserMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$UserMutationReturn.fromJson(
@ -1870,7 +2041,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$UserMutationReturn<TRes>
final TRes Function(Fragment$basicMutationReturnFields$$UserMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$UserMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1914,7 +2085,7 @@ class _CopyWithStubImpl$Fragment$basicMutationReturnFields$$UserMutationReturn<
class Query$GetServerDiskVolumes { class Query$GetServerDiskVolumes {
Query$GetServerDiskVolumes({ Query$GetServerDiskVolumes({
required this.storage, required this.storage,
required this.$__typename, this.$__typename = 'Query',
}); });
factory Query$GetServerDiskVolumes.fromJson(Map<String, dynamic> json) { factory Query$GetServerDiskVolumes.fromJson(Map<String, dynamic> json) {
@ -2009,7 +2180,7 @@ class _CopyWithImpl$Query$GetServerDiskVolumes<TRes>
final TRes Function(Query$GetServerDiskVolumes) _then; final TRes Function(Query$GetServerDiskVolumes) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? storage = _undefined, Object? storage = _undefined,
@ -2233,6 +2404,10 @@ const documentNodeQueryGetServerDiskVolumes = DocumentNode(definitions: [
Query$GetServerDiskVolumes _parserFn$Query$GetServerDiskVolumes( Query$GetServerDiskVolumes _parserFn$Query$GetServerDiskVolumes(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Query$GetServerDiskVolumes.fromJson(data); Query$GetServerDiskVolumes.fromJson(data);
typedef OnQueryComplete$Query$GetServerDiskVolumes = FutureOr<void> Function(
Map<String, dynamic>?,
Query$GetServerDiskVolumes?,
);
class Options$Query$GetServerDiskVolumes class Options$Query$GetServerDiskVolumes
extends graphql.QueryOptions<Query$GetServerDiskVolumes> { extends graphql.QueryOptions<Query$GetServerDiskVolumes> {
@ -2242,19 +2417,42 @@ class Options$Query$GetServerDiskVolumes
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$GetServerDiskVolumes? typedOptimisticResult,
Duration? pollInterval, Duration? pollInterval,
graphql.Context? context, graphql.Context? context,
}) : super( OnQueryComplete$Query$GetServerDiskVolumes? onComplete,
graphql.OnQueryError? onError,
}) : onCompleteWithParsed = onComplete,
super(
operationName: operationName, operationName: operationName,
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
pollInterval: pollInterval, pollInterval: pollInterval,
context: context, context: context,
onComplete: onComplete == null
? null
: (data) => onComplete(
data,
data == null
? null
: _parserFn$Query$GetServerDiskVolumes(data),
),
onError: onError,
document: documentNodeQueryGetServerDiskVolumes, document: documentNodeQueryGetServerDiskVolumes,
parserFn: _parserFn$Query$GetServerDiskVolumes, parserFn: _parserFn$Query$GetServerDiskVolumes,
); );
final OnQueryComplete$Query$GetServerDiskVolumes? onCompleteWithParsed;
@override
List<Object?> get properties => [
...super.onComplete == null
? super.properties
: super.properties.where((property) => property != onComplete),
onCompleteWithParsed,
];
} }
class WatchOptions$Query$GetServerDiskVolumes class WatchOptions$Query$GetServerDiskVolumes
@ -2265,6 +2463,7 @@ class WatchOptions$Query$GetServerDiskVolumes
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$GetServerDiskVolumes? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -2275,7 +2474,7 @@ class WatchOptions$Query$GetServerDiskVolumes
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeQueryGetServerDiskVolumes, document: documentNodeQueryGetServerDiskVolumes,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -2331,7 +2530,7 @@ extension ClientExtension$Query$GetServerDiskVolumes on graphql.GraphQLClient {
class Query$GetServerDiskVolumes$storage { class Query$GetServerDiskVolumes$storage {
Query$GetServerDiskVolumes$storage({ Query$GetServerDiskVolumes$storage({
required this.volumes, required this.volumes,
required this.$__typename, this.$__typename = 'Storage',
}); });
factory Query$GetServerDiskVolumes$storage.fromJson( factory Query$GetServerDiskVolumes$storage.fromJson(
@ -2442,7 +2641,7 @@ class _CopyWithImpl$Query$GetServerDiskVolumes$storage<TRes>
final TRes Function(Query$GetServerDiskVolumes$storage) _then; final TRes Function(Query$GetServerDiskVolumes$storage) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? volumes = _undefined, Object? volumes = _undefined,
@ -2495,7 +2694,7 @@ class Query$GetServerDiskVolumes$storage$volumes {
required this.type, required this.type,
required this.usages, required this.usages,
required this.usedSpace, required this.usedSpace,
required this.$__typename, this.$__typename = 'StorageVolume',
}); });
factory Query$GetServerDiskVolumes$storage$volumes.fromJson( factory Query$GetServerDiskVolumes$storage$volumes.fromJson(
@ -2719,7 +2918,7 @@ class _CopyWithImpl$Query$GetServerDiskVolumes$storage$volumes<TRes>
final TRes Function(Query$GetServerDiskVolumes$storage$volumes) _then; final TRes Function(Query$GetServerDiskVolumes$storage$volumes) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? freeSpace = _undefined, Object? freeSpace = _undefined,
@ -2890,6 +3089,41 @@ extension UtilityExtension$Query$GetServerDiskVolumes$storage$volumes$usages
this, this,
(i) => i, (i) => i,
); );
_T when<_T>({
required _T Function(
Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage)
serviceStorageUsage,
required _T Function() orElse,
}) {
switch ($__typename) {
case "ServiceStorageUsage":
return serviceStorageUsage(this
as Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage);
default:
return orElse();
}
}
_T maybeWhen<_T>({
_T Function(
Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage)?
serviceStorageUsage,
required _T Function() orElse,
}) {
switch ($__typename) {
case "ServiceStorageUsage":
if (serviceStorageUsage != null) {
return serviceStorageUsage(this
as Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage);
} else {
return orElse();
}
default:
return orElse();
}
}
} }
abstract class CopyWith$Query$GetServerDiskVolumes$storage$volumes$usages< abstract class CopyWith$Query$GetServerDiskVolumes$storage$volumes$usages<
@ -2922,7 +3156,7 @@ class _CopyWithImpl$Query$GetServerDiskVolumes$storage$volumes$usages<TRes>
final TRes Function(Query$GetServerDiskVolumes$storage$volumes$usages) _then; final TRes Function(Query$GetServerDiskVolumes$storage$volumes$usages) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? title = _undefined, Object? title = _undefined,
@ -2962,7 +3196,7 @@ class Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage
implements Query$GetServerDiskVolumes$storage$volumes$usages { implements Query$GetServerDiskVolumes$storage$volumes$usages {
Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage({ Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage({
this.service, this.service,
required this.$__typename, this.$__typename = 'ServiceStorageUsage',
required this.title, required this.title,
required this.usedSpace, required this.usedSpace,
}); });
@ -3107,7 +3341,7 @@ class _CopyWithImpl$Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceSt
Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage) Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? service = _undefined, Object? service = _undefined,
@ -3172,7 +3406,7 @@ class Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage$ser
required this.id, required this.id,
required this.isMovable, required this.isMovable,
required this.displayName, required this.displayName,
required this.$__typename, this.$__typename = 'Service',
}); });
factory Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage$service.fromJson( factory Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage$service.fromJson(
@ -3308,7 +3542,7 @@ class _CopyWithImpl$Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceSt
Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage$service) Query$GetServerDiskVolumes$storage$volumes$usages$$ServiceStorageUsage$service)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? id = _undefined, Object? id = _undefined,
@ -3427,7 +3661,7 @@ class _CopyWithImpl$Variables$Mutation$MountVolume<TRes>
final TRes Function(Variables$Mutation$MountVolume) _then; final TRes Function(Variables$Mutation$MountVolume) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? name = _undefined}) => TRes call({Object? name = _undefined}) =>
_then(Variables$Mutation$MountVolume._({ _then(Variables$Mutation$MountVolume._({
@ -3448,7 +3682,7 @@ class _CopyWithStubImpl$Variables$Mutation$MountVolume<TRes>
class Mutation$MountVolume { class Mutation$MountVolume {
Mutation$MountVolume({ Mutation$MountVolume({
required this.mountVolume, required this.mountVolume,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$MountVolume.fromJson(Map<String, dynamic> json) { factory Mutation$MountVolume.fromJson(Map<String, dynamic> json) {
@ -3541,7 +3775,7 @@ class _CopyWithImpl$Mutation$MountVolume<TRes>
final TRes Function(Mutation$MountVolume) _then; final TRes Function(Mutation$MountVolume) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? mountVolume = _undefined, Object? mountVolume = _undefined,
@ -3633,7 +3867,7 @@ Mutation$MountVolume _parserFn$Mutation$MountVolume(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$MountVolume.fromJson(data); Mutation$MountVolume.fromJson(data);
typedef OnMutationCompleted$Mutation$MountVolume = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$MountVolume = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$MountVolume?, Mutation$MountVolume?,
); );
@ -3646,6 +3880,7 @@ class Options$Mutation$MountVolume
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$MountVolume? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$MountVolume? onCompleted, OnMutationCompleted$Mutation$MountVolume? onCompleted,
graphql.OnMutationUpdate<Mutation$MountVolume>? update, graphql.OnMutationUpdate<Mutation$MountVolume>? update,
@ -3657,7 +3892,7 @@ class Options$Mutation$MountVolume
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -3691,6 +3926,7 @@ class WatchOptions$Mutation$MountVolume
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$MountVolume? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -3702,7 +3938,7 @@ class WatchOptions$Mutation$MountVolume
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationMountVolume, document: documentNodeMutationMountVolume,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -3728,7 +3964,7 @@ class Mutation$MountVolume$mountVolume
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericMutationReturn',
}); });
factory Mutation$MountVolume$mountVolume.fromJson(Map<String, dynamic> json) { factory Mutation$MountVolume$mountVolume.fromJson(Map<String, dynamic> json) {
@ -3849,7 +4085,7 @@ class _CopyWithImpl$Mutation$MountVolume$mountVolume<TRes>
final TRes Function(Mutation$MountVolume$mountVolume) _then; final TRes Function(Mutation$MountVolume$mountVolume) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -3964,7 +4200,7 @@ class _CopyWithImpl$Variables$Mutation$ResizeVolume<TRes>
final TRes Function(Variables$Mutation$ResizeVolume) _then; final TRes Function(Variables$Mutation$ResizeVolume) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? name = _undefined}) => TRes call({Object? name = _undefined}) =>
_then(Variables$Mutation$ResizeVolume._({ _then(Variables$Mutation$ResizeVolume._({
@ -3985,7 +4221,7 @@ class _CopyWithStubImpl$Variables$Mutation$ResizeVolume<TRes>
class Mutation$ResizeVolume { class Mutation$ResizeVolume {
Mutation$ResizeVolume({ Mutation$ResizeVolume({
required this.resizeVolume, required this.resizeVolume,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$ResizeVolume.fromJson(Map<String, dynamic> json) { factory Mutation$ResizeVolume.fromJson(Map<String, dynamic> json) {
@ -4078,7 +4314,7 @@ class _CopyWithImpl$Mutation$ResizeVolume<TRes>
final TRes Function(Mutation$ResizeVolume) _then; final TRes Function(Mutation$ResizeVolume) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? resizeVolume = _undefined, Object? resizeVolume = _undefined,
@ -4170,7 +4406,7 @@ Mutation$ResizeVolume _parserFn$Mutation$ResizeVolume(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$ResizeVolume.fromJson(data); Mutation$ResizeVolume.fromJson(data);
typedef OnMutationCompleted$Mutation$ResizeVolume = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$ResizeVolume = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$ResizeVolume?, Mutation$ResizeVolume?,
); );
@ -4183,6 +4419,7 @@ class Options$Mutation$ResizeVolume
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$ResizeVolume? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$ResizeVolume? onCompleted, OnMutationCompleted$Mutation$ResizeVolume? onCompleted,
graphql.OnMutationUpdate<Mutation$ResizeVolume>? update, graphql.OnMutationUpdate<Mutation$ResizeVolume>? update,
@ -4194,7 +4431,7 @@ class Options$Mutation$ResizeVolume
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -4228,6 +4465,7 @@ class WatchOptions$Mutation$ResizeVolume
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$ResizeVolume? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -4239,7 +4477,7 @@ class WatchOptions$Mutation$ResizeVolume
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationResizeVolume, document: documentNodeMutationResizeVolume,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -4265,7 +4503,7 @@ class Mutation$ResizeVolume$resizeVolume
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericMutationReturn',
}); });
factory Mutation$ResizeVolume$resizeVolume.fromJson( factory Mutation$ResizeVolume$resizeVolume.fromJson(
@ -4388,7 +4626,7 @@ class _CopyWithImpl$Mutation$ResizeVolume$resizeVolume<TRes>
final TRes Function(Mutation$ResizeVolume$resizeVolume) _then; final TRes Function(Mutation$ResizeVolume$resizeVolume) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -4503,7 +4741,7 @@ class _CopyWithImpl$Variables$Mutation$UnmountVolume<TRes>
final TRes Function(Variables$Mutation$UnmountVolume) _then; final TRes Function(Variables$Mutation$UnmountVolume) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? name = _undefined}) => TRes call({Object? name = _undefined}) =>
_then(Variables$Mutation$UnmountVolume._({ _then(Variables$Mutation$UnmountVolume._({
@ -4524,7 +4762,7 @@ class _CopyWithStubImpl$Variables$Mutation$UnmountVolume<TRes>
class Mutation$UnmountVolume { class Mutation$UnmountVolume {
Mutation$UnmountVolume({ Mutation$UnmountVolume({
required this.unmountVolume, required this.unmountVolume,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$UnmountVolume.fromJson(Map<String, dynamic> json) { factory Mutation$UnmountVolume.fromJson(Map<String, dynamic> json) {
@ -4618,7 +4856,7 @@ class _CopyWithImpl$Mutation$UnmountVolume<TRes>
final TRes Function(Mutation$UnmountVolume) _then; final TRes Function(Mutation$UnmountVolume) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? unmountVolume = _undefined, Object? unmountVolume = _undefined,
@ -4710,7 +4948,7 @@ Mutation$UnmountVolume _parserFn$Mutation$UnmountVolume(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$UnmountVolume.fromJson(data); Mutation$UnmountVolume.fromJson(data);
typedef OnMutationCompleted$Mutation$UnmountVolume = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$UnmountVolume = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$UnmountVolume?, Mutation$UnmountVolume?,
); );
@ -4723,6 +4961,7 @@ class Options$Mutation$UnmountVolume
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$UnmountVolume? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$UnmountVolume? onCompleted, OnMutationCompleted$Mutation$UnmountVolume? onCompleted,
graphql.OnMutationUpdate<Mutation$UnmountVolume>? update, graphql.OnMutationUpdate<Mutation$UnmountVolume>? update,
@ -4734,7 +4973,7 @@ class Options$Mutation$UnmountVolume
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -4770,6 +5009,7 @@ class WatchOptions$Mutation$UnmountVolume
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$UnmountVolume? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -4781,7 +5021,7 @@ class WatchOptions$Mutation$UnmountVolume
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationUnmountVolume, document: documentNodeMutationUnmountVolume,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -4807,7 +5047,7 @@ class Mutation$UnmountVolume$unmountVolume
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericMutationReturn',
}); });
factory Mutation$UnmountVolume$unmountVolume.fromJson( factory Mutation$UnmountVolume$unmountVolume.fromJson(
@ -4930,7 +5170,7 @@ class _CopyWithImpl$Mutation$UnmountVolume$unmountVolume<TRes>
final TRes Function(Mutation$UnmountVolume$unmountVolume) _then; final TRes Function(Mutation$UnmountVolume$unmountVolume) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -5049,7 +5289,7 @@ class _CopyWithImpl$Variables$Mutation$MigrateToBinds<TRes>
final TRes Function(Variables$Mutation$MigrateToBinds) _then; final TRes Function(Variables$Mutation$MigrateToBinds) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? input = _undefined}) => TRes call({Object? input = _undefined}) =>
_then(Variables$Mutation$MigrateToBinds._({ _then(Variables$Mutation$MigrateToBinds._({
@ -5071,7 +5311,7 @@ class _CopyWithStubImpl$Variables$Mutation$MigrateToBinds<TRes>
class Mutation$MigrateToBinds { class Mutation$MigrateToBinds {
Mutation$MigrateToBinds({ Mutation$MigrateToBinds({
required this.migrateToBinds, required this.migrateToBinds,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$MigrateToBinds.fromJson(Map<String, dynamic> json) { factory Mutation$MigrateToBinds.fromJson(Map<String, dynamic> json) {
@ -5165,7 +5405,7 @@ class _CopyWithImpl$Mutation$MigrateToBinds<TRes>
final TRes Function(Mutation$MigrateToBinds) _then; final TRes Function(Mutation$MigrateToBinds) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? migrateToBinds = _undefined, Object? migrateToBinds = _undefined,
@ -5349,7 +5589,7 @@ Mutation$MigrateToBinds _parserFn$Mutation$MigrateToBinds(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$MigrateToBinds.fromJson(data); Mutation$MigrateToBinds.fromJson(data);
typedef OnMutationCompleted$Mutation$MigrateToBinds = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$MigrateToBinds = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$MigrateToBinds?, Mutation$MigrateToBinds?,
); );
@ -5362,6 +5602,7 @@ class Options$Mutation$MigrateToBinds
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$MigrateToBinds? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$MigrateToBinds? onCompleted, OnMutationCompleted$Mutation$MigrateToBinds? onCompleted,
graphql.OnMutationUpdate<Mutation$MigrateToBinds>? update, graphql.OnMutationUpdate<Mutation$MigrateToBinds>? update,
@ -5373,7 +5614,7 @@ class Options$Mutation$MigrateToBinds
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -5409,6 +5650,7 @@ class WatchOptions$Mutation$MigrateToBinds
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$MigrateToBinds? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -5420,7 +5662,7 @@ class WatchOptions$Mutation$MigrateToBinds
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationMigrateToBinds, document: documentNodeMutationMigrateToBinds,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -5446,7 +5688,7 @@ class Mutation$MigrateToBinds$migrateToBinds
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericJobButationReturn',
this.job, this.job,
}); });
@ -5588,7 +5830,7 @@ class _CopyWithImpl$Mutation$MigrateToBinds$migrateToBinds<TRes>
final TRes Function(Mutation$MigrateToBinds$migrateToBinds) _then; final TRes Function(Mutation$MigrateToBinds$migrateToBinds) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -5654,7 +5896,7 @@ class Mutation$MigrateToBinds$migrateToBinds$job {
this.statusText, this.statusText,
required this.uid, required this.uid,
required this.updatedAt, required this.updatedAt,
required this.$__typename, this.$__typename = 'ApiJob',
}); });
factory Mutation$MigrateToBinds$migrateToBinds$job.fromJson( factory Mutation$MigrateToBinds$migrateToBinds$job.fromJson(
@ -5890,7 +6132,7 @@ class _CopyWithImpl$Mutation$MigrateToBinds$migrateToBinds$job<TRes>
final TRes Function(Mutation$MigrateToBinds$migrateToBinds$job) _then; final TRes Function(Mutation$MigrateToBinds$migrateToBinds$job) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? createdAt = _undefined, Object? createdAt = _undefined,

View File

@ -76,8 +76,8 @@ type DeviceApiTokenMutationReturn implements MutationReturnInterface {
enum DnsProvider { enum DnsProvider {
CLOUDFLARE, CLOUDFLARE,
DIGITALOCEAN, DESEC,
DESEC DIGITALOCEAN
} }
type DnsRecord { type DnsRecord {

View File

@ -116,7 +116,7 @@ class _CopyWithImpl$Input$AutoUpgradeSettingsInput<TRes>
final TRes Function(Input$AutoUpgradeSettingsInput) _then; final TRes Function(Input$AutoUpgradeSettingsInput) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? enableAutoUpgrade = _undefined, Object? enableAutoUpgrade = _undefined,
@ -286,7 +286,7 @@ class _CopyWithImpl$Input$MigrateToBindsInput<TRes>
final TRes Function(Input$MigrateToBindsInput) _then; final TRes Function(Input$MigrateToBindsInput) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? emailBlockDevice = _undefined, Object? emailBlockDevice = _undefined,
@ -424,7 +424,7 @@ class _CopyWithImpl$Input$MoveServiceInput<TRes>
final TRes Function(Input$MoveServiceInput) _then; final TRes Function(Input$MoveServiceInput) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? serviceId = _undefined, Object? serviceId = _undefined,
@ -567,7 +567,7 @@ class _CopyWithImpl$Input$RecoveryKeyLimitsInput<TRes>
final TRes Function(Input$RecoveryKeyLimitsInput) _then; final TRes Function(Input$RecoveryKeyLimitsInput) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? expirationDate = _undefined, Object? expirationDate = _undefined,
@ -692,7 +692,7 @@ class _CopyWithImpl$Input$SshMutationInput<TRes>
final TRes Function(Input$SshMutationInput) _then; final TRes Function(Input$SshMutationInput) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? username = _undefined, Object? username = _undefined,
@ -818,7 +818,7 @@ class _CopyWithImpl$Input$UseNewDeviceKeyInput<TRes>
final TRes Function(Input$UseNewDeviceKeyInput) _then; final TRes Function(Input$UseNewDeviceKeyInput) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? key = _undefined, Object? key = _undefined,
@ -943,7 +943,7 @@ class _CopyWithImpl$Input$UseRecoveryKeyInput<TRes>
final TRes Function(Input$UseRecoveryKeyInput) _then; final TRes Function(Input$UseRecoveryKeyInput) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? key = _undefined, Object? key = _undefined,
@ -1068,7 +1068,7 @@ class _CopyWithImpl$Input$UserMutationInput<TRes>
final TRes Function(Input$UserMutationInput) _then; final TRes Function(Input$UserMutationInput) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? username = _undefined, Object? username = _undefined,
@ -1096,16 +1096,16 @@ class _CopyWithStubImpl$Input$UserMutationInput<TRes>
_res; _res;
} }
enum Enum$DnsProvider { CLOUDFLARE, DIGITALOCEAN, DESEC, $unknown } enum Enum$DnsProvider { CLOUDFLARE, DESEC, DIGITALOCEAN, $unknown }
String toJson$Enum$DnsProvider(Enum$DnsProvider e) { String toJson$Enum$DnsProvider(Enum$DnsProvider e) {
switch (e) { switch (e) {
case Enum$DnsProvider.CLOUDFLARE: case Enum$DnsProvider.CLOUDFLARE:
return r'CLOUDFLARE'; return r'CLOUDFLARE';
case Enum$DnsProvider.DIGITALOCEAN:
return r'DIGITALOCEAN';
case Enum$DnsProvider.DESEC: case Enum$DnsProvider.DESEC:
return r'DESEC'; return r'DESEC';
case Enum$DnsProvider.DIGITALOCEAN:
return r'DIGITALOCEAN';
case Enum$DnsProvider.$unknown: case Enum$DnsProvider.$unknown:
return r'$unknown'; return r'$unknown';
} }
@ -1115,10 +1115,10 @@ Enum$DnsProvider fromJson$Enum$DnsProvider(String value) {
switch (value) { switch (value) {
case r'CLOUDFLARE': case r'CLOUDFLARE':
return Enum$DnsProvider.CLOUDFLARE; return Enum$DnsProvider.CLOUDFLARE;
case r'DIGITALOCEAN':
return Enum$DnsProvider.DIGITALOCEAN;
case r'DESEC': case r'DESEC':
return Enum$DnsProvider.DESEC; return Enum$DnsProvider.DESEC;
case r'DIGITALOCEAN':
return Enum$DnsProvider.DIGITALOCEAN;
default: default:
return Enum$DnsProvider.$unknown; return Enum$DnsProvider.$unknown;
} }
@ -1272,7 +1272,7 @@ class Fragment$dnsRecordFields {
this.priority, this.priority,
required this.recordType, required this.recordType,
required this.ttl, required this.ttl,
required this.$__typename, this.$__typename = 'DnsRecord',
}); });
factory Fragment$dnsRecordFields.fromJson(Map<String, dynamic> json) { factory Fragment$dnsRecordFields.fromJson(Map<String, dynamic> json) {
@ -1421,7 +1421,7 @@ class _CopyWithImpl$Fragment$dnsRecordFields<TRes>
final TRes Function(Fragment$dnsRecordFields) _then; final TRes Function(Fragment$dnsRecordFields) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? content = _undefined, Object? content = _undefined,
@ -1559,7 +1559,7 @@ extension ClientExtension$Fragment$dnsRecordFields on graphql.GraphQLClient {
} }
} }
const possibleTypesMap = { const possibleTypesMap = <String, Set<String>>{
'MutationReturnInterface': { 'MutationReturnInterface': {
'ApiKeyMutationReturn', 'ApiKeyMutationReturn',
'AutoUpgradeSettingsMutationReturn', 'AutoUpgradeSettingsMutationReturn',

View File

@ -141,6 +141,177 @@ extension UtilityExtension$Fragment$basicMutationReturnFields
this, this,
(i) => i, (i) => i,
); );
_T when<_T>({
required _T Function(
Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)
apiKeyMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)
autoUpgradeSettingsMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn)
deviceApiTokenMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$GenericJobButationReturn)
genericJobButationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$GenericMutationReturn)
genericMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$ServiceJobMutationReturn)
serviceJobMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$ServiceMutationReturn)
serviceMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$TimezoneMutationReturn)
timezoneMutationReturn,
required _T Function(Fragment$basicMutationReturnFields$$UserMutationReturn)
userMutationReturn,
required _T Function() orElse,
}) {
switch ($__typename) {
case "ApiKeyMutationReturn":
return apiKeyMutationReturn(
this as Fragment$basicMutationReturnFields$$ApiKeyMutationReturn);
case "AutoUpgradeSettingsMutationReturn":
return autoUpgradeSettingsMutationReturn(this
as Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn);
case "DeviceApiTokenMutationReturn":
return deviceApiTokenMutationReturn(this
as Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn);
case "GenericJobButationReturn":
return genericJobButationReturn(this
as Fragment$basicMutationReturnFields$$GenericJobButationReturn);
case "GenericMutationReturn":
return genericMutationReturn(
this as Fragment$basicMutationReturnFields$$GenericMutationReturn);
case "ServiceJobMutationReturn":
return serviceJobMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceJobMutationReturn);
case "ServiceMutationReturn":
return serviceMutationReturn(
this as Fragment$basicMutationReturnFields$$ServiceMutationReturn);
case "TimezoneMutationReturn":
return timezoneMutationReturn(
this as Fragment$basicMutationReturnFields$$TimezoneMutationReturn);
case "UserMutationReturn":
return userMutationReturn(
this as Fragment$basicMutationReturnFields$$UserMutationReturn);
default:
return orElse();
}
}
_T maybeWhen<_T>({
_T Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)?
apiKeyMutationReturn,
_T Function(
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)?
autoUpgradeSettingsMutationReturn,
_T Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn)?
deviceApiTokenMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$GenericJobButationReturn)?
genericJobButationReturn,
_T Function(Fragment$basicMutationReturnFields$$GenericMutationReturn)?
genericMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$ServiceJobMutationReturn)?
serviceJobMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn)?
serviceMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$TimezoneMutationReturn)?
timezoneMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$UserMutationReturn)?
userMutationReturn,
required _T Function() orElse,
}) {
switch ($__typename) {
case "ApiKeyMutationReturn":
if (apiKeyMutationReturn != null) {
return apiKeyMutationReturn(
this as Fragment$basicMutationReturnFields$$ApiKeyMutationReturn);
} else {
return orElse();
}
case "AutoUpgradeSettingsMutationReturn":
if (autoUpgradeSettingsMutationReturn != null) {
return autoUpgradeSettingsMutationReturn(this
as Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn);
} else {
return orElse();
}
case "DeviceApiTokenMutationReturn":
if (deviceApiTokenMutationReturn != null) {
return deviceApiTokenMutationReturn(this
as Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn);
} else {
return orElse();
}
case "GenericJobButationReturn":
if (genericJobButationReturn != null) {
return genericJobButationReturn(this
as Fragment$basicMutationReturnFields$$GenericJobButationReturn);
} else {
return orElse();
}
case "GenericMutationReturn":
if (genericMutationReturn != null) {
return genericMutationReturn(this
as Fragment$basicMutationReturnFields$$GenericMutationReturn);
} else {
return orElse();
}
case "ServiceJobMutationReturn":
if (serviceJobMutationReturn != null) {
return serviceJobMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceJobMutationReturn);
} else {
return orElse();
}
case "ServiceMutationReturn":
if (serviceMutationReturn != null) {
return serviceMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceMutationReturn);
} else {
return orElse();
}
case "TimezoneMutationReturn":
if (timezoneMutationReturn != null) {
return timezoneMutationReturn(this
as Fragment$basicMutationReturnFields$$TimezoneMutationReturn);
} else {
return orElse();
}
case "UserMutationReturn":
if (userMutationReturn != null) {
return userMutationReturn(
this as Fragment$basicMutationReturnFields$$UserMutationReturn);
} else {
return orElse();
}
default:
return orElse();
}
}
} }
abstract class CopyWith$Fragment$basicMutationReturnFields<TRes> { abstract class CopyWith$Fragment$basicMutationReturnFields<TRes> {
@ -171,7 +342,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields<TRes>
final TRes Function(Fragment$basicMutationReturnFields) _then; final TRes Function(Fragment$basicMutationReturnFields) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -297,7 +468,7 @@ class Fragment$basicMutationReturnFields$$ApiKeyMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ApiKeyMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ApiKeyMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ApiKeyMutationReturn.fromJson(
@ -428,7 +599,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ApiKeyMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -476,7 +647,7 @@ class Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'AutoUpgradeSettingsMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn.fromJson(
@ -612,7 +783,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutat
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn) Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -661,7 +832,7 @@ class Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'DeviceApiTokenMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn.fromJson(
@ -795,7 +966,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$DeviceApiTokenMutationRe
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn) _then; Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -843,7 +1014,7 @@ class Fragment$basicMutationReturnFields$$GenericJobButationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericJobButationReturn',
}); });
factory Fragment$basicMutationReturnFields$$GenericJobButationReturn.fromJson( factory Fragment$basicMutationReturnFields$$GenericJobButationReturn.fromJson(
@ -975,7 +1146,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$GenericJobButationReturn
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$GenericJobButationReturn) _then; Fragment$basicMutationReturnFields$$GenericJobButationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1023,7 +1194,7 @@ class Fragment$basicMutationReturnFields$$GenericMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$GenericMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$GenericMutationReturn.fromJson(
@ -1154,7 +1325,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$GenericMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$GenericMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$GenericMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1202,7 +1373,7 @@ class Fragment$basicMutationReturnFields$$ServiceJobMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceJobMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ServiceJobMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ServiceJobMutationReturn.fromJson(
@ -1334,7 +1505,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ServiceJobMutationReturn
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$ServiceJobMutationReturn) _then; Fragment$basicMutationReturnFields$$ServiceJobMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1382,7 +1553,7 @@ class Fragment$basicMutationReturnFields$$ServiceMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ServiceMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ServiceMutationReturn.fromJson(
@ -1513,7 +1684,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ServiceMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1561,7 +1732,7 @@ class Fragment$basicMutationReturnFields$$TimezoneMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'TimezoneMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$TimezoneMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$TimezoneMutationReturn.fromJson(
@ -1693,7 +1864,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$TimezoneMutationReturn<
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$TimezoneMutationReturn) _then; Fragment$basicMutationReturnFields$$TimezoneMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1741,7 +1912,7 @@ class Fragment$basicMutationReturnFields$$UserMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'UserMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$UserMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$UserMutationReturn.fromJson(
@ -1869,7 +2040,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$UserMutationReturn<TRes>
final TRes Function(Fragment$basicMutationReturnFields$$UserMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$UserMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1913,7 +2084,7 @@ class _CopyWithStubImpl$Fragment$basicMutationReturnFields$$UserMutationReturn<
class Query$SystemSettings { class Query$SystemSettings {
Query$SystemSettings({ Query$SystemSettings({
required this.system, required this.system,
required this.$__typename, this.$__typename = 'Query',
}); });
factory Query$SystemSettings.fromJson(Map<String, dynamic> json) { factory Query$SystemSettings.fromJson(Map<String, dynamic> json) {
@ -2006,7 +2177,7 @@ class _CopyWithImpl$Query$SystemSettings<TRes>
final TRes Function(Query$SystemSettings) _then; final TRes Function(Query$SystemSettings) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? system = _undefined, Object? system = _undefined,
@ -2157,6 +2328,10 @@ const documentNodeQuerySystemSettings = DocumentNode(definitions: [
Query$SystemSettings _parserFn$Query$SystemSettings( Query$SystemSettings _parserFn$Query$SystemSettings(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Query$SystemSettings.fromJson(data); Query$SystemSettings.fromJson(data);
typedef OnQueryComplete$Query$SystemSettings = FutureOr<void> Function(
Map<String, dynamic>?,
Query$SystemSettings?,
);
class Options$Query$SystemSettings class Options$Query$SystemSettings
extends graphql.QueryOptions<Query$SystemSettings> { extends graphql.QueryOptions<Query$SystemSettings> {
@ -2166,19 +2341,40 @@ class Options$Query$SystemSettings
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$SystemSettings? typedOptimisticResult,
Duration? pollInterval, Duration? pollInterval,
graphql.Context? context, graphql.Context? context,
}) : super( OnQueryComplete$Query$SystemSettings? onComplete,
graphql.OnQueryError? onError,
}) : onCompleteWithParsed = onComplete,
super(
operationName: operationName, operationName: operationName,
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
pollInterval: pollInterval, pollInterval: pollInterval,
context: context, context: context,
onComplete: onComplete == null
? null
: (data) => onComplete(
data,
data == null ? null : _parserFn$Query$SystemSettings(data),
),
onError: onError,
document: documentNodeQuerySystemSettings, document: documentNodeQuerySystemSettings,
parserFn: _parserFn$Query$SystemSettings, parserFn: _parserFn$Query$SystemSettings,
); );
final OnQueryComplete$Query$SystemSettings? onCompleteWithParsed;
@override
List<Object?> get properties => [
...super.onComplete == null
? super.properties
: super.properties.where((property) => property != onComplete),
onCompleteWithParsed,
];
} }
class WatchOptions$Query$SystemSettings class WatchOptions$Query$SystemSettings
@ -2189,6 +2385,7 @@ class WatchOptions$Query$SystemSettings
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$SystemSettings? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -2199,7 +2396,7 @@ class WatchOptions$Query$SystemSettings
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeQuerySystemSettings, document: documentNodeQuerySystemSettings,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -2251,7 +2448,7 @@ extension ClientExtension$Query$SystemSettings on graphql.GraphQLClient {
class Query$SystemSettings$system { class Query$SystemSettings$system {
Query$SystemSettings$system({ Query$SystemSettings$system({
required this.settings, required this.settings,
required this.$__typename, this.$__typename = 'System',
}); });
factory Query$SystemSettings$system.fromJson(Map<String, dynamic> json) { factory Query$SystemSettings$system.fromJson(Map<String, dynamic> json) {
@ -2346,7 +2543,7 @@ class _CopyWithImpl$Query$SystemSettings$system<TRes>
final TRes Function(Query$SystemSettings$system) _then; final TRes Function(Query$SystemSettings$system) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? settings = _undefined, Object? settings = _undefined,
@ -2387,7 +2584,7 @@ class Query$SystemSettings$system$settings {
required this.autoUpgrade, required this.autoUpgrade,
required this.ssh, required this.ssh,
required this.timezone, required this.timezone,
required this.$__typename, this.$__typename = 'SystemSettings',
}); });
factory Query$SystemSettings$system$settings.fromJson( factory Query$SystemSettings$system$settings.fromJson(
@ -2515,7 +2712,7 @@ class _CopyWithImpl$Query$SystemSettings$system$settings<TRes>
final TRes Function(Query$SystemSettings$system$settings) _then; final TRes Function(Query$SystemSettings$system$settings) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? autoUpgrade = _undefined, Object? autoUpgrade = _undefined,
@ -2575,7 +2772,7 @@ class Query$SystemSettings$system$settings$autoUpgrade {
Query$SystemSettings$system$settings$autoUpgrade({ Query$SystemSettings$system$settings$autoUpgrade({
required this.allowReboot, required this.allowReboot,
required this.enable, required this.enable,
required this.$__typename, this.$__typename = 'AutoUpgradeOptions',
}); });
factory Query$SystemSettings$system$settings$autoUpgrade.fromJson( factory Query$SystemSettings$system$settings$autoUpgrade.fromJson(
@ -2685,7 +2882,7 @@ class _CopyWithImpl$Query$SystemSettings$system$settings$autoUpgrade<TRes>
final TRes Function(Query$SystemSettings$system$settings$autoUpgrade) _then; final TRes Function(Query$SystemSettings$system$settings$autoUpgrade) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? allowReboot = _undefined, Object? allowReboot = _undefined,
@ -2723,7 +2920,7 @@ class Query$SystemSettings$system$settings$ssh {
Query$SystemSettings$system$settings$ssh({ Query$SystemSettings$system$settings$ssh({
required this.enable, required this.enable,
required this.passwordAuthentication, required this.passwordAuthentication,
required this.$__typename, this.$__typename = 'SshSettings',
}); });
factory Query$SystemSettings$system$settings$ssh.fromJson( factory Query$SystemSettings$system$settings$ssh.fromJson(
@ -2832,7 +3029,7 @@ class _CopyWithImpl$Query$SystemSettings$system$settings$ssh<TRes>
final TRes Function(Query$SystemSettings$system$settings$ssh) _then; final TRes Function(Query$SystemSettings$system$settings$ssh) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? enable = _undefined, Object? enable = _undefined,
@ -2870,7 +3067,7 @@ class _CopyWithStubImpl$Query$SystemSettings$system$settings$ssh<TRes>
class Query$SystemIsUsingBinds { class Query$SystemIsUsingBinds {
Query$SystemIsUsingBinds({ Query$SystemIsUsingBinds({
required this.system, required this.system,
required this.$__typename, this.$__typename = 'Query',
}); });
factory Query$SystemIsUsingBinds.fromJson(Map<String, dynamic> json) { factory Query$SystemIsUsingBinds.fromJson(Map<String, dynamic> json) {
@ -2965,7 +3162,7 @@ class _CopyWithImpl$Query$SystemIsUsingBinds<TRes>
final TRes Function(Query$SystemIsUsingBinds) _then; final TRes Function(Query$SystemIsUsingBinds) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? system = _undefined, Object? system = _undefined,
@ -3058,6 +3255,10 @@ const documentNodeQuerySystemIsUsingBinds = DocumentNode(definitions: [
Query$SystemIsUsingBinds _parserFn$Query$SystemIsUsingBinds( Query$SystemIsUsingBinds _parserFn$Query$SystemIsUsingBinds(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Query$SystemIsUsingBinds.fromJson(data); Query$SystemIsUsingBinds.fromJson(data);
typedef OnQueryComplete$Query$SystemIsUsingBinds = FutureOr<void> Function(
Map<String, dynamic>?,
Query$SystemIsUsingBinds?,
);
class Options$Query$SystemIsUsingBinds class Options$Query$SystemIsUsingBinds
extends graphql.QueryOptions<Query$SystemIsUsingBinds> { extends graphql.QueryOptions<Query$SystemIsUsingBinds> {
@ -3067,19 +3268,42 @@ class Options$Query$SystemIsUsingBinds
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$SystemIsUsingBinds? typedOptimisticResult,
Duration? pollInterval, Duration? pollInterval,
graphql.Context? context, graphql.Context? context,
}) : super( OnQueryComplete$Query$SystemIsUsingBinds? onComplete,
graphql.OnQueryError? onError,
}) : onCompleteWithParsed = onComplete,
super(
operationName: operationName, operationName: operationName,
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
pollInterval: pollInterval, pollInterval: pollInterval,
context: context, context: context,
onComplete: onComplete == null
? null
: (data) => onComplete(
data,
data == null
? null
: _parserFn$Query$SystemIsUsingBinds(data),
),
onError: onError,
document: documentNodeQuerySystemIsUsingBinds, document: documentNodeQuerySystemIsUsingBinds,
parserFn: _parserFn$Query$SystemIsUsingBinds, parserFn: _parserFn$Query$SystemIsUsingBinds,
); );
final OnQueryComplete$Query$SystemIsUsingBinds? onCompleteWithParsed;
@override
List<Object?> get properties => [
...super.onComplete == null
? super.properties
: super.properties.where((property) => property != onComplete),
onCompleteWithParsed,
];
} }
class WatchOptions$Query$SystemIsUsingBinds class WatchOptions$Query$SystemIsUsingBinds
@ -3090,6 +3314,7 @@ class WatchOptions$Query$SystemIsUsingBinds
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$SystemIsUsingBinds? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -3100,7 +3325,7 @@ class WatchOptions$Query$SystemIsUsingBinds
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeQuerySystemIsUsingBinds, document: documentNodeQuerySystemIsUsingBinds,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -3156,7 +3381,7 @@ extension ClientExtension$Query$SystemIsUsingBinds on graphql.GraphQLClient {
class Query$SystemIsUsingBinds$system { class Query$SystemIsUsingBinds$system {
Query$SystemIsUsingBinds$system({ Query$SystemIsUsingBinds$system({
required this.info, required this.info,
required this.$__typename, this.$__typename = 'System',
}); });
factory Query$SystemIsUsingBinds$system.fromJson(Map<String, dynamic> json) { factory Query$SystemIsUsingBinds$system.fromJson(Map<String, dynamic> json) {
@ -3251,7 +3476,7 @@ class _CopyWithImpl$Query$SystemIsUsingBinds$system<TRes>
final TRes Function(Query$SystemIsUsingBinds$system) _then; final TRes Function(Query$SystemIsUsingBinds$system) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? info = _undefined, Object? info = _undefined,
@ -3290,7 +3515,7 @@ class _CopyWithStubImpl$Query$SystemIsUsingBinds$system<TRes>
class Query$SystemIsUsingBinds$system$info { class Query$SystemIsUsingBinds$system$info {
Query$SystemIsUsingBinds$system$info({ Query$SystemIsUsingBinds$system$info({
required this.usingBinds, required this.usingBinds,
required this.$__typename, this.$__typename = 'SystemInfo',
}); });
factory Query$SystemIsUsingBinds$system$info.fromJson( factory Query$SystemIsUsingBinds$system$info.fromJson(
@ -3385,7 +3610,7 @@ class _CopyWithImpl$Query$SystemIsUsingBinds$system$info<TRes>
final TRes Function(Query$SystemIsUsingBinds$system$info) _then; final TRes Function(Query$SystemIsUsingBinds$system$info) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? usingBinds = _undefined, Object? usingBinds = _undefined,
@ -3417,7 +3642,7 @@ class _CopyWithStubImpl$Query$SystemIsUsingBinds$system$info<TRes>
class Query$DomainInfo { class Query$DomainInfo {
Query$DomainInfo({ Query$DomainInfo({
required this.system, required this.system,
required this.$__typename, this.$__typename = 'Query',
}); });
factory Query$DomainInfo.fromJson(Map<String, dynamic> json) { factory Query$DomainInfo.fromJson(Map<String, dynamic> json) {
@ -3510,7 +3735,7 @@ class _CopyWithImpl$Query$DomainInfo<TRes>
final TRes Function(Query$DomainInfo) _then; final TRes Function(Query$DomainInfo) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? system = _undefined, Object? system = _undefined,
@ -3636,6 +3861,10 @@ const documentNodeQueryDomainInfo = DocumentNode(definitions: [
]); ]);
Query$DomainInfo _parserFn$Query$DomainInfo(Map<String, dynamic> data) => Query$DomainInfo _parserFn$Query$DomainInfo(Map<String, dynamic> data) =>
Query$DomainInfo.fromJson(data); Query$DomainInfo.fromJson(data);
typedef OnQueryComplete$Query$DomainInfo = FutureOr<void> Function(
Map<String, dynamic>?,
Query$DomainInfo?,
);
class Options$Query$DomainInfo extends graphql.QueryOptions<Query$DomainInfo> { class Options$Query$DomainInfo extends graphql.QueryOptions<Query$DomainInfo> {
Options$Query$DomainInfo({ Options$Query$DomainInfo({
@ -3644,19 +3873,40 @@ class Options$Query$DomainInfo extends graphql.QueryOptions<Query$DomainInfo> {
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$DomainInfo? typedOptimisticResult,
Duration? pollInterval, Duration? pollInterval,
graphql.Context? context, graphql.Context? context,
}) : super( OnQueryComplete$Query$DomainInfo? onComplete,
graphql.OnQueryError? onError,
}) : onCompleteWithParsed = onComplete,
super(
operationName: operationName, operationName: operationName,
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
pollInterval: pollInterval, pollInterval: pollInterval,
context: context, context: context,
onComplete: onComplete == null
? null
: (data) => onComplete(
data,
data == null ? null : _parserFn$Query$DomainInfo(data),
),
onError: onError,
document: documentNodeQueryDomainInfo, document: documentNodeQueryDomainInfo,
parserFn: _parserFn$Query$DomainInfo, parserFn: _parserFn$Query$DomainInfo,
); );
final OnQueryComplete$Query$DomainInfo? onCompleteWithParsed;
@override
List<Object?> get properties => [
...super.onComplete == null
? super.properties
: super.properties.where((property) => property != onComplete),
onCompleteWithParsed,
];
} }
class WatchOptions$Query$DomainInfo class WatchOptions$Query$DomainInfo
@ -3667,6 +3917,7 @@ class WatchOptions$Query$DomainInfo
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$DomainInfo? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -3677,7 +3928,7 @@ class WatchOptions$Query$DomainInfo
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeQueryDomainInfo, document: documentNodeQueryDomainInfo,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -3727,7 +3978,7 @@ extension ClientExtension$Query$DomainInfo on graphql.GraphQLClient {
class Query$DomainInfo$system { class Query$DomainInfo$system {
Query$DomainInfo$system({ Query$DomainInfo$system({
required this.domainInfo, required this.domainInfo,
required this.$__typename, this.$__typename = 'System',
}); });
factory Query$DomainInfo$system.fromJson(Map<String, dynamic> json) { factory Query$DomainInfo$system.fromJson(Map<String, dynamic> json) {
@ -3821,7 +4072,7 @@ class _CopyWithImpl$Query$DomainInfo$system<TRes>
final TRes Function(Query$DomainInfo$system) _then; final TRes Function(Query$DomainInfo$system) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? domainInfo = _undefined, Object? domainInfo = _undefined,
@ -3863,7 +4114,7 @@ class Query$DomainInfo$system$domainInfo {
required this.hostname, required this.hostname,
required this.provider, required this.provider,
required this.requiredDnsRecords, required this.requiredDnsRecords,
required this.$__typename, this.$__typename = 'SystemDomainInfo',
}); });
factory Query$DomainInfo$system$domainInfo.fromJson( factory Query$DomainInfo$system$domainInfo.fromJson(
@ -4016,7 +4267,7 @@ class _CopyWithImpl$Query$DomainInfo$system$domainInfo<TRes>
final TRes Function(Query$DomainInfo$system$domainInfo) _then; final TRes Function(Query$DomainInfo$system$domainInfo) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? domain = _undefined, Object? domain = _undefined,
@ -4152,7 +4403,7 @@ class _CopyWithImpl$Variables$Mutation$ChangeTimezone<TRes>
final TRes Function(Variables$Mutation$ChangeTimezone) _then; final TRes Function(Variables$Mutation$ChangeTimezone) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? timezone = _undefined}) => TRes call({Object? timezone = _undefined}) =>
_then(Variables$Mutation$ChangeTimezone._({ _then(Variables$Mutation$ChangeTimezone._({
@ -4174,7 +4425,7 @@ class _CopyWithStubImpl$Variables$Mutation$ChangeTimezone<TRes>
class Mutation$ChangeTimezone { class Mutation$ChangeTimezone {
Mutation$ChangeTimezone({ Mutation$ChangeTimezone({
required this.changeTimezone, required this.changeTimezone,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$ChangeTimezone.fromJson(Map<String, dynamic> json) { factory Mutation$ChangeTimezone.fromJson(Map<String, dynamic> json) {
@ -4268,7 +4519,7 @@ class _CopyWithImpl$Mutation$ChangeTimezone<TRes>
final TRes Function(Mutation$ChangeTimezone) _then; final TRes Function(Mutation$ChangeTimezone) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? changeTimezone = _undefined, Object? changeTimezone = _undefined,
@ -4367,7 +4618,7 @@ Mutation$ChangeTimezone _parserFn$Mutation$ChangeTimezone(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$ChangeTimezone.fromJson(data); Mutation$ChangeTimezone.fromJson(data);
typedef OnMutationCompleted$Mutation$ChangeTimezone = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$ChangeTimezone = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$ChangeTimezone?, Mutation$ChangeTimezone?,
); );
@ -4380,6 +4631,7 @@ class Options$Mutation$ChangeTimezone
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$ChangeTimezone? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$ChangeTimezone? onCompleted, OnMutationCompleted$Mutation$ChangeTimezone? onCompleted,
graphql.OnMutationUpdate<Mutation$ChangeTimezone>? update, graphql.OnMutationUpdate<Mutation$ChangeTimezone>? update,
@ -4391,7 +4643,7 @@ class Options$Mutation$ChangeTimezone
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -4427,6 +4679,7 @@ class WatchOptions$Mutation$ChangeTimezone
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$ChangeTimezone? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -4438,7 +4691,7 @@ class WatchOptions$Mutation$ChangeTimezone
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationChangeTimezone, document: documentNodeMutationChangeTimezone,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -4464,7 +4717,7 @@ class Mutation$ChangeTimezone$changeTimezone
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'TimezoneMutationReturn',
this.timezone, this.timezone,
}); });
@ -4602,7 +4855,7 @@ class _CopyWithImpl$Mutation$ChangeTimezone$changeTimezone<TRes>
final TRes Function(Mutation$ChangeTimezone$changeTimezone) _then; final TRes Function(Mutation$ChangeTimezone$changeTimezone) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -4726,7 +4979,7 @@ class _CopyWithImpl$Variables$Mutation$ChangeAutoUpgradeSettings<TRes>
final TRes Function(Variables$Mutation$ChangeAutoUpgradeSettings) _then; final TRes Function(Variables$Mutation$ChangeAutoUpgradeSettings) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? settings = _undefined}) => TRes call({Object? settings = _undefined}) =>
_then(Variables$Mutation$ChangeAutoUpgradeSettings._({ _then(Variables$Mutation$ChangeAutoUpgradeSettings._({
@ -4748,7 +5001,7 @@ class _CopyWithStubImpl$Variables$Mutation$ChangeAutoUpgradeSettings<TRes>
class Mutation$ChangeAutoUpgradeSettings { class Mutation$ChangeAutoUpgradeSettings {
Mutation$ChangeAutoUpgradeSettings({ Mutation$ChangeAutoUpgradeSettings({
required this.changeAutoUpgradeSettings, required this.changeAutoUpgradeSettings,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$ChangeAutoUpgradeSettings.fromJson( factory Mutation$ChangeAutoUpgradeSettings.fromJson(
@ -4850,7 +5103,7 @@ class _CopyWithImpl$Mutation$ChangeAutoUpgradeSettings<TRes>
final TRes Function(Mutation$ChangeAutoUpgradeSettings) _then; final TRes Function(Mutation$ChangeAutoUpgradeSettings) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? changeAutoUpgradeSettings = _undefined, Object? changeAutoUpgradeSettings = _undefined,
@ -4965,7 +5218,7 @@ Mutation$ChangeAutoUpgradeSettings _parserFn$Mutation$ChangeAutoUpgradeSettings(
Mutation$ChangeAutoUpgradeSettings.fromJson(data); Mutation$ChangeAutoUpgradeSettings.fromJson(data);
typedef OnMutationCompleted$Mutation$ChangeAutoUpgradeSettings = FutureOr<void> typedef OnMutationCompleted$Mutation$ChangeAutoUpgradeSettings = FutureOr<void>
Function( Function(
dynamic, Map<String, dynamic>?,
Mutation$ChangeAutoUpgradeSettings?, Mutation$ChangeAutoUpgradeSettings?,
); );
@ -4978,6 +5231,7 @@ class Options$Mutation$ChangeAutoUpgradeSettings
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$ChangeAutoUpgradeSettings? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$ChangeAutoUpgradeSettings? onCompleted, OnMutationCompleted$Mutation$ChangeAutoUpgradeSettings? onCompleted,
graphql.OnMutationUpdate<Mutation$ChangeAutoUpgradeSettings>? update, graphql.OnMutationUpdate<Mutation$ChangeAutoUpgradeSettings>? update,
@ -4989,7 +5243,7 @@ class Options$Mutation$ChangeAutoUpgradeSettings
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -5026,6 +5280,7 @@ class WatchOptions$Mutation$ChangeAutoUpgradeSettings
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$ChangeAutoUpgradeSettings? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -5037,7 +5292,7 @@ class WatchOptions$Mutation$ChangeAutoUpgradeSettings
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationChangeAutoUpgradeSettings, document: documentNodeMutationChangeAutoUpgradeSettings,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -5067,7 +5322,7 @@ class Mutation$ChangeAutoUpgradeSettings$changeAutoUpgradeSettings
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'AutoUpgradeSettingsMutationReturn',
required this.allowReboot, required this.allowReboot,
required this.enableAutoUpgrade, required this.enableAutoUpgrade,
}); });
@ -5229,7 +5484,7 @@ class _CopyWithImpl$Mutation$ChangeAutoUpgradeSettings$changeAutoUpgradeSettings
final TRes Function( final TRes Function(
Mutation$ChangeAutoUpgradeSettings$changeAutoUpgradeSettings) _then; Mutation$ChangeAutoUpgradeSettings$changeAutoUpgradeSettings) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,

View File

@ -141,6 +141,177 @@ extension UtilityExtension$Fragment$basicMutationReturnFields
this, this,
(i) => i, (i) => i,
); );
_T when<_T>({
required _T Function(
Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)
apiKeyMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)
autoUpgradeSettingsMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn)
deviceApiTokenMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$GenericJobButationReturn)
genericJobButationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$GenericMutationReturn)
genericMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$ServiceJobMutationReturn)
serviceJobMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$ServiceMutationReturn)
serviceMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$TimezoneMutationReturn)
timezoneMutationReturn,
required _T Function(Fragment$basicMutationReturnFields$$UserMutationReturn)
userMutationReturn,
required _T Function() orElse,
}) {
switch ($__typename) {
case "ApiKeyMutationReturn":
return apiKeyMutationReturn(
this as Fragment$basicMutationReturnFields$$ApiKeyMutationReturn);
case "AutoUpgradeSettingsMutationReturn":
return autoUpgradeSettingsMutationReturn(this
as Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn);
case "DeviceApiTokenMutationReturn":
return deviceApiTokenMutationReturn(this
as Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn);
case "GenericJobButationReturn":
return genericJobButationReturn(this
as Fragment$basicMutationReturnFields$$GenericJobButationReturn);
case "GenericMutationReturn":
return genericMutationReturn(
this as Fragment$basicMutationReturnFields$$GenericMutationReturn);
case "ServiceJobMutationReturn":
return serviceJobMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceJobMutationReturn);
case "ServiceMutationReturn":
return serviceMutationReturn(
this as Fragment$basicMutationReturnFields$$ServiceMutationReturn);
case "TimezoneMutationReturn":
return timezoneMutationReturn(
this as Fragment$basicMutationReturnFields$$TimezoneMutationReturn);
case "UserMutationReturn":
return userMutationReturn(
this as Fragment$basicMutationReturnFields$$UserMutationReturn);
default:
return orElse();
}
}
_T maybeWhen<_T>({
_T Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)?
apiKeyMutationReturn,
_T Function(
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)?
autoUpgradeSettingsMutationReturn,
_T Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn)?
deviceApiTokenMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$GenericJobButationReturn)?
genericJobButationReturn,
_T Function(Fragment$basicMutationReturnFields$$GenericMutationReturn)?
genericMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$ServiceJobMutationReturn)?
serviceJobMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn)?
serviceMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$TimezoneMutationReturn)?
timezoneMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$UserMutationReturn)?
userMutationReturn,
required _T Function() orElse,
}) {
switch ($__typename) {
case "ApiKeyMutationReturn":
if (apiKeyMutationReturn != null) {
return apiKeyMutationReturn(
this as Fragment$basicMutationReturnFields$$ApiKeyMutationReturn);
} else {
return orElse();
}
case "AutoUpgradeSettingsMutationReturn":
if (autoUpgradeSettingsMutationReturn != null) {
return autoUpgradeSettingsMutationReturn(this
as Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn);
} else {
return orElse();
}
case "DeviceApiTokenMutationReturn":
if (deviceApiTokenMutationReturn != null) {
return deviceApiTokenMutationReturn(this
as Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn);
} else {
return orElse();
}
case "GenericJobButationReturn":
if (genericJobButationReturn != null) {
return genericJobButationReturn(this
as Fragment$basicMutationReturnFields$$GenericJobButationReturn);
} else {
return orElse();
}
case "GenericMutationReturn":
if (genericMutationReturn != null) {
return genericMutationReturn(this
as Fragment$basicMutationReturnFields$$GenericMutationReturn);
} else {
return orElse();
}
case "ServiceJobMutationReturn":
if (serviceJobMutationReturn != null) {
return serviceJobMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceJobMutationReturn);
} else {
return orElse();
}
case "ServiceMutationReturn":
if (serviceMutationReturn != null) {
return serviceMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceMutationReturn);
} else {
return orElse();
}
case "TimezoneMutationReturn":
if (timezoneMutationReturn != null) {
return timezoneMutationReturn(this
as Fragment$basicMutationReturnFields$$TimezoneMutationReturn);
} else {
return orElse();
}
case "UserMutationReturn":
if (userMutationReturn != null) {
return userMutationReturn(
this as Fragment$basicMutationReturnFields$$UserMutationReturn);
} else {
return orElse();
}
default:
return orElse();
}
}
} }
abstract class CopyWith$Fragment$basicMutationReturnFields<TRes> { abstract class CopyWith$Fragment$basicMutationReturnFields<TRes> {
@ -171,7 +342,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields<TRes>
final TRes Function(Fragment$basicMutationReturnFields) _then; final TRes Function(Fragment$basicMutationReturnFields) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -297,7 +468,7 @@ class Fragment$basicMutationReturnFields$$ApiKeyMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ApiKeyMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ApiKeyMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ApiKeyMutationReturn.fromJson(
@ -428,7 +599,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ApiKeyMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -476,7 +647,7 @@ class Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'AutoUpgradeSettingsMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn.fromJson(
@ -612,7 +783,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutat
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn) Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -661,7 +832,7 @@ class Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'DeviceApiTokenMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn.fromJson(
@ -795,7 +966,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$DeviceApiTokenMutationRe
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn) _then; Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -843,7 +1014,7 @@ class Fragment$basicMutationReturnFields$$GenericJobButationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericJobButationReturn',
}); });
factory Fragment$basicMutationReturnFields$$GenericJobButationReturn.fromJson( factory Fragment$basicMutationReturnFields$$GenericJobButationReturn.fromJson(
@ -975,7 +1146,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$GenericJobButationReturn
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$GenericJobButationReturn) _then; Fragment$basicMutationReturnFields$$GenericJobButationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1023,7 +1194,7 @@ class Fragment$basicMutationReturnFields$$GenericMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$GenericMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$GenericMutationReturn.fromJson(
@ -1154,7 +1325,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$GenericMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$GenericMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$GenericMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1202,7 +1373,7 @@ class Fragment$basicMutationReturnFields$$ServiceJobMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceJobMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ServiceJobMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ServiceJobMutationReturn.fromJson(
@ -1334,7 +1505,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ServiceJobMutationReturn
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$ServiceJobMutationReturn) _then; Fragment$basicMutationReturnFields$$ServiceJobMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1382,7 +1553,7 @@ class Fragment$basicMutationReturnFields$$ServiceMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ServiceMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ServiceMutationReturn.fromJson(
@ -1513,7 +1684,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ServiceMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1561,7 +1732,7 @@ class Fragment$basicMutationReturnFields$$TimezoneMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'TimezoneMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$TimezoneMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$TimezoneMutationReturn.fromJson(
@ -1693,7 +1864,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$TimezoneMutationReturn<
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$TimezoneMutationReturn) _then; Fragment$basicMutationReturnFields$$TimezoneMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1741,7 +1912,7 @@ class Fragment$basicMutationReturnFields$$UserMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'UserMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$UserMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$UserMutationReturn.fromJson(
@ -1869,7 +2040,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$UserMutationReturn<TRes>
final TRes Function(Fragment$basicMutationReturnFields$$UserMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$UserMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1913,7 +2084,7 @@ class _CopyWithStubImpl$Fragment$basicMutationReturnFields$$UserMutationReturn<
class Query$AllServices { class Query$AllServices {
Query$AllServices({ Query$AllServices({
required this.services, required this.services,
required this.$__typename, this.$__typename = 'Query',
}); });
factory Query$AllServices.fromJson(Map<String, dynamic> json) { factory Query$AllServices.fromJson(Map<String, dynamic> json) {
@ -2006,7 +2177,7 @@ class _CopyWithImpl$Query$AllServices<TRes>
final TRes Function(Query$AllServices) _then; final TRes Function(Query$AllServices) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? services = _undefined, Object? services = _undefined,
@ -2225,6 +2396,10 @@ const documentNodeQueryAllServices = DocumentNode(definitions: [
]); ]);
Query$AllServices _parserFn$Query$AllServices(Map<String, dynamic> data) => Query$AllServices _parserFn$Query$AllServices(Map<String, dynamic> data) =>
Query$AllServices.fromJson(data); Query$AllServices.fromJson(data);
typedef OnQueryComplete$Query$AllServices = FutureOr<void> Function(
Map<String, dynamic>?,
Query$AllServices?,
);
class Options$Query$AllServices class Options$Query$AllServices
extends graphql.QueryOptions<Query$AllServices> { extends graphql.QueryOptions<Query$AllServices> {
@ -2234,19 +2409,40 @@ class Options$Query$AllServices
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$AllServices? typedOptimisticResult,
Duration? pollInterval, Duration? pollInterval,
graphql.Context? context, graphql.Context? context,
}) : super( OnQueryComplete$Query$AllServices? onComplete,
graphql.OnQueryError? onError,
}) : onCompleteWithParsed = onComplete,
super(
operationName: operationName, operationName: operationName,
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
pollInterval: pollInterval, pollInterval: pollInterval,
context: context, context: context,
onComplete: onComplete == null
? null
: (data) => onComplete(
data,
data == null ? null : _parserFn$Query$AllServices(data),
),
onError: onError,
document: documentNodeQueryAllServices, document: documentNodeQueryAllServices,
parserFn: _parserFn$Query$AllServices, parserFn: _parserFn$Query$AllServices,
); );
final OnQueryComplete$Query$AllServices? onCompleteWithParsed;
@override
List<Object?> get properties => [
...super.onComplete == null
? super.properties
: super.properties.where((property) => property != onComplete),
onCompleteWithParsed,
];
} }
class WatchOptions$Query$AllServices class WatchOptions$Query$AllServices
@ -2257,6 +2453,7 @@ class WatchOptions$Query$AllServices
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$AllServices? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -2267,7 +2464,7 @@ class WatchOptions$Query$AllServices
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeQueryAllServices, document: documentNodeQueryAllServices,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -2317,7 +2514,7 @@ extension ClientExtension$Query$AllServices on graphql.GraphQLClient {
class Query$AllServices$services { class Query$AllServices$services {
Query$AllServices$services({ Query$AllServices$services({
required this.allServices, required this.allServices,
required this.$__typename, this.$__typename = 'Services',
}); });
factory Query$AllServices$services.fromJson(Map<String, dynamic> json) { factory Query$AllServices$services.fromJson(Map<String, dynamic> json) {
@ -2426,7 +2623,7 @@ class _CopyWithImpl$Query$AllServices$services<TRes>
final TRes Function(Query$AllServices$services) _then; final TRes Function(Query$AllServices$services) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? allServices = _undefined, Object? allServices = _undefined,
@ -2481,7 +2678,7 @@ class Query$AllServices$services$allServices {
required this.storageUsage, required this.storageUsage,
required this.svgIcon, required this.svgIcon,
this.url, this.url,
required this.$__typename, this.$__typename = 'Service',
}); });
factory Query$AllServices$services$allServices.fromJson( factory Query$AllServices$services$allServices.fromJson(
@ -2739,7 +2936,7 @@ class _CopyWithImpl$Query$AllServices$services$allServices<TRes>
final TRes Function(Query$AllServices$services$allServices) _then; final TRes Function(Query$AllServices$services$allServices) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? description = _undefined, Object? description = _undefined,
@ -2843,7 +3040,7 @@ class Query$AllServices$services$allServices$storageUsage {
required this.title, required this.title,
required this.usedSpace, required this.usedSpace,
this.volume, this.volume,
required this.$__typename, this.$__typename = 'ServiceStorageUsage',
}); });
factory Query$AllServices$services$allServices$storageUsage.fromJson( factory Query$AllServices$services$allServices$storageUsage.fromJson(
@ -2976,7 +3173,7 @@ class _CopyWithImpl$Query$AllServices$services$allServices$storageUsage<TRes>
final TRes Function(Query$AllServices$services$allServices$storageUsage) final TRes Function(Query$AllServices$services$allServices$storageUsage)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? title = _undefined, Object? title = _undefined,
@ -3035,7 +3232,7 @@ class _CopyWithStubImpl$Query$AllServices$services$allServices$storageUsage<
class Query$AllServices$services$allServices$storageUsage$volume { class Query$AllServices$services$allServices$storageUsage$volume {
Query$AllServices$services$allServices$storageUsage$volume({ Query$AllServices$services$allServices$storageUsage$volume({
required this.name, required this.name,
required this.$__typename, this.$__typename = 'StorageVolume',
}); });
factory Query$AllServices$services$allServices$storageUsage$volume.fromJson( factory Query$AllServices$services$allServices$storageUsage$volume.fromJson(
@ -3139,7 +3336,7 @@ class _CopyWithImpl$Query$AllServices$services$allServices$storageUsage$volume<
final TRes Function( final TRes Function(
Query$AllServices$services$allServices$storageUsage$volume) _then; Query$AllServices$services$allServices$storageUsage$volume) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? name = _undefined, Object? name = _undefined,
@ -3249,7 +3446,7 @@ class _CopyWithImpl$Variables$Mutation$EnableService<TRes>
final TRes Function(Variables$Mutation$EnableService) _then; final TRes Function(Variables$Mutation$EnableService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? serviceId = _undefined}) => TRes call({Object? serviceId = _undefined}) =>
_then(Variables$Mutation$EnableService._({ _then(Variables$Mutation$EnableService._({
@ -3271,7 +3468,7 @@ class _CopyWithStubImpl$Variables$Mutation$EnableService<TRes>
class Mutation$EnableService { class Mutation$EnableService {
Mutation$EnableService({ Mutation$EnableService({
required this.enableService, required this.enableService,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$EnableService.fromJson(Map<String, dynamic> json) { factory Mutation$EnableService.fromJson(Map<String, dynamic> json) {
@ -3365,7 +3562,7 @@ class _CopyWithImpl$Mutation$EnableService<TRes>
final TRes Function(Mutation$EnableService) _then; final TRes Function(Mutation$EnableService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? enableService = _undefined, Object? enableService = _undefined,
@ -3457,7 +3654,7 @@ Mutation$EnableService _parserFn$Mutation$EnableService(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$EnableService.fromJson(data); Mutation$EnableService.fromJson(data);
typedef OnMutationCompleted$Mutation$EnableService = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$EnableService = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$EnableService?, Mutation$EnableService?,
); );
@ -3470,6 +3667,7 @@ class Options$Mutation$EnableService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$EnableService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$EnableService? onCompleted, OnMutationCompleted$Mutation$EnableService? onCompleted,
graphql.OnMutationUpdate<Mutation$EnableService>? update, graphql.OnMutationUpdate<Mutation$EnableService>? update,
@ -3481,7 +3679,7 @@ class Options$Mutation$EnableService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -3517,6 +3715,7 @@ class WatchOptions$Mutation$EnableService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$EnableService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -3528,7 +3727,7 @@ class WatchOptions$Mutation$EnableService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationEnableService, document: documentNodeMutationEnableService,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -3554,7 +3753,7 @@ class Mutation$EnableService$enableService
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceMutationReturn',
}); });
factory Mutation$EnableService$enableService.fromJson( factory Mutation$EnableService$enableService.fromJson(
@ -3677,7 +3876,7 @@ class _CopyWithImpl$Mutation$EnableService$enableService<TRes>
final TRes Function(Mutation$EnableService$enableService) _then; final TRes Function(Mutation$EnableService$enableService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -3793,7 +3992,7 @@ class _CopyWithImpl$Variables$Mutation$DisableService<TRes>
final TRes Function(Variables$Mutation$DisableService) _then; final TRes Function(Variables$Mutation$DisableService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? serviceId = _undefined}) => TRes call({Object? serviceId = _undefined}) =>
_then(Variables$Mutation$DisableService._({ _then(Variables$Mutation$DisableService._({
@ -3815,7 +4014,7 @@ class _CopyWithStubImpl$Variables$Mutation$DisableService<TRes>
class Mutation$DisableService { class Mutation$DisableService {
Mutation$DisableService({ Mutation$DisableService({
required this.disableService, required this.disableService,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$DisableService.fromJson(Map<String, dynamic> json) { factory Mutation$DisableService.fromJson(Map<String, dynamic> json) {
@ -3909,7 +4108,7 @@ class _CopyWithImpl$Mutation$DisableService<TRes>
final TRes Function(Mutation$DisableService) _then; final TRes Function(Mutation$DisableService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? disableService = _undefined, Object? disableService = _undefined,
@ -4001,7 +4200,7 @@ Mutation$DisableService _parserFn$Mutation$DisableService(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$DisableService.fromJson(data); Mutation$DisableService.fromJson(data);
typedef OnMutationCompleted$Mutation$DisableService = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$DisableService = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$DisableService?, Mutation$DisableService?,
); );
@ -4014,6 +4213,7 @@ class Options$Mutation$DisableService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$DisableService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$DisableService? onCompleted, OnMutationCompleted$Mutation$DisableService? onCompleted,
graphql.OnMutationUpdate<Mutation$DisableService>? update, graphql.OnMutationUpdate<Mutation$DisableService>? update,
@ -4025,7 +4225,7 @@ class Options$Mutation$DisableService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -4061,6 +4261,7 @@ class WatchOptions$Mutation$DisableService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$DisableService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -4072,7 +4273,7 @@ class WatchOptions$Mutation$DisableService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationDisableService, document: documentNodeMutationDisableService,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -4098,7 +4299,7 @@ class Mutation$DisableService$disableService
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceMutationReturn',
}); });
factory Mutation$DisableService$disableService.fromJson( factory Mutation$DisableService$disableService.fromJson(
@ -4221,7 +4422,7 @@ class _CopyWithImpl$Mutation$DisableService$disableService<TRes>
final TRes Function(Mutation$DisableService$disableService) _then; final TRes Function(Mutation$DisableService$disableService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -4336,7 +4537,7 @@ class _CopyWithImpl$Variables$Mutation$StopService<TRes>
final TRes Function(Variables$Mutation$StopService) _then; final TRes Function(Variables$Mutation$StopService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? serviceId = _undefined}) => TRes call({Object? serviceId = _undefined}) =>
_then(Variables$Mutation$StopService._({ _then(Variables$Mutation$StopService._({
@ -4358,7 +4559,7 @@ class _CopyWithStubImpl$Variables$Mutation$StopService<TRes>
class Mutation$StopService { class Mutation$StopService {
Mutation$StopService({ Mutation$StopService({
required this.stopService, required this.stopService,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$StopService.fromJson(Map<String, dynamic> json) { factory Mutation$StopService.fromJson(Map<String, dynamic> json) {
@ -4451,7 +4652,7 @@ class _CopyWithImpl$Mutation$StopService<TRes>
final TRes Function(Mutation$StopService) _then; final TRes Function(Mutation$StopService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? stopService = _undefined, Object? stopService = _undefined,
@ -4543,7 +4744,7 @@ Mutation$StopService _parserFn$Mutation$StopService(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$StopService.fromJson(data); Mutation$StopService.fromJson(data);
typedef OnMutationCompleted$Mutation$StopService = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$StopService = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$StopService?, Mutation$StopService?,
); );
@ -4556,6 +4757,7 @@ class Options$Mutation$StopService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$StopService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$StopService? onCompleted, OnMutationCompleted$Mutation$StopService? onCompleted,
graphql.OnMutationUpdate<Mutation$StopService>? update, graphql.OnMutationUpdate<Mutation$StopService>? update,
@ -4567,7 +4769,7 @@ class Options$Mutation$StopService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -4601,6 +4803,7 @@ class WatchOptions$Mutation$StopService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$StopService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -4612,7 +4815,7 @@ class WatchOptions$Mutation$StopService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationStopService, document: documentNodeMutationStopService,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -4638,7 +4841,7 @@ class Mutation$StopService$stopService
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceMutationReturn',
}); });
factory Mutation$StopService$stopService.fromJson(Map<String, dynamic> json) { factory Mutation$StopService$stopService.fromJson(Map<String, dynamic> json) {
@ -4759,7 +4962,7 @@ class _CopyWithImpl$Mutation$StopService$stopService<TRes>
final TRes Function(Mutation$StopService$stopService) _then; final TRes Function(Mutation$StopService$stopService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -4874,7 +5077,7 @@ class _CopyWithImpl$Variables$Mutation$StartService<TRes>
final TRes Function(Variables$Mutation$StartService) _then; final TRes Function(Variables$Mutation$StartService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? serviceId = _undefined}) => TRes call({Object? serviceId = _undefined}) =>
_then(Variables$Mutation$StartService._({ _then(Variables$Mutation$StartService._({
@ -4896,7 +5099,7 @@ class _CopyWithStubImpl$Variables$Mutation$StartService<TRes>
class Mutation$StartService { class Mutation$StartService {
Mutation$StartService({ Mutation$StartService({
required this.startService, required this.startService,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$StartService.fromJson(Map<String, dynamic> json) { factory Mutation$StartService.fromJson(Map<String, dynamic> json) {
@ -4989,7 +5192,7 @@ class _CopyWithImpl$Mutation$StartService<TRes>
final TRes Function(Mutation$StartService) _then; final TRes Function(Mutation$StartService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? startService = _undefined, Object? startService = _undefined,
@ -5081,7 +5284,7 @@ Mutation$StartService _parserFn$Mutation$StartService(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$StartService.fromJson(data); Mutation$StartService.fromJson(data);
typedef OnMutationCompleted$Mutation$StartService = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$StartService = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$StartService?, Mutation$StartService?,
); );
@ -5094,6 +5297,7 @@ class Options$Mutation$StartService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$StartService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$StartService? onCompleted, OnMutationCompleted$Mutation$StartService? onCompleted,
graphql.OnMutationUpdate<Mutation$StartService>? update, graphql.OnMutationUpdate<Mutation$StartService>? update,
@ -5105,7 +5309,7 @@ class Options$Mutation$StartService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -5139,6 +5343,7 @@ class WatchOptions$Mutation$StartService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$StartService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -5150,7 +5355,7 @@ class WatchOptions$Mutation$StartService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationStartService, document: documentNodeMutationStartService,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -5176,7 +5381,7 @@ class Mutation$StartService$startService
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceMutationReturn',
}); });
factory Mutation$StartService$startService.fromJson( factory Mutation$StartService$startService.fromJson(
@ -5299,7 +5504,7 @@ class _CopyWithImpl$Mutation$StartService$startService<TRes>
final TRes Function(Mutation$StartService$startService) _then; final TRes Function(Mutation$StartService$startService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -5415,7 +5620,7 @@ class _CopyWithImpl$Variables$Mutation$RestartService<TRes>
final TRes Function(Variables$Mutation$RestartService) _then; final TRes Function(Variables$Mutation$RestartService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? serviceId = _undefined}) => TRes call({Object? serviceId = _undefined}) =>
_then(Variables$Mutation$RestartService._({ _then(Variables$Mutation$RestartService._({
@ -5437,7 +5642,7 @@ class _CopyWithStubImpl$Variables$Mutation$RestartService<TRes>
class Mutation$RestartService { class Mutation$RestartService {
Mutation$RestartService({ Mutation$RestartService({
required this.restartService, required this.restartService,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$RestartService.fromJson(Map<String, dynamic> json) { factory Mutation$RestartService.fromJson(Map<String, dynamic> json) {
@ -5531,7 +5736,7 @@ class _CopyWithImpl$Mutation$RestartService<TRes>
final TRes Function(Mutation$RestartService) _then; final TRes Function(Mutation$RestartService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? restartService = _undefined, Object? restartService = _undefined,
@ -5623,7 +5828,7 @@ Mutation$RestartService _parserFn$Mutation$RestartService(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$RestartService.fromJson(data); Mutation$RestartService.fromJson(data);
typedef OnMutationCompleted$Mutation$RestartService = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$RestartService = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$RestartService?, Mutation$RestartService?,
); );
@ -5636,6 +5841,7 @@ class Options$Mutation$RestartService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$RestartService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$RestartService? onCompleted, OnMutationCompleted$Mutation$RestartService? onCompleted,
graphql.OnMutationUpdate<Mutation$RestartService>? update, graphql.OnMutationUpdate<Mutation$RestartService>? update,
@ -5647,7 +5853,7 @@ class Options$Mutation$RestartService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -5683,6 +5889,7 @@ class WatchOptions$Mutation$RestartService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$RestartService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -5694,7 +5901,7 @@ class WatchOptions$Mutation$RestartService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationRestartService, document: documentNodeMutationRestartService,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -5720,7 +5927,7 @@ class Mutation$RestartService$restartService
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceMutationReturn',
}); });
factory Mutation$RestartService$restartService.fromJson( factory Mutation$RestartService$restartService.fromJson(
@ -5843,7 +6050,7 @@ class _CopyWithImpl$Mutation$RestartService$restartService<TRes>
final TRes Function(Mutation$RestartService$restartService) _then; final TRes Function(Mutation$RestartService$restartService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -5961,7 +6168,7 @@ class _CopyWithImpl$Variables$Mutation$MoveService<TRes>
final TRes Function(Variables$Mutation$MoveService) _then; final TRes Function(Variables$Mutation$MoveService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? input = _undefined}) => TRes call({Object? input = _undefined}) =>
_then(Variables$Mutation$MoveService._({ _then(Variables$Mutation$MoveService._({
@ -5983,7 +6190,7 @@ class _CopyWithStubImpl$Variables$Mutation$MoveService<TRes>
class Mutation$MoveService { class Mutation$MoveService {
Mutation$MoveService({ Mutation$MoveService({
required this.moveService, required this.moveService,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$MoveService.fromJson(Map<String, dynamic> json) { factory Mutation$MoveService.fromJson(Map<String, dynamic> json) {
@ -6076,7 +6283,7 @@ class _CopyWithImpl$Mutation$MoveService<TRes>
final TRes Function(Mutation$MoveService) _then; final TRes Function(Mutation$MoveService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? moveService = _undefined, Object? moveService = _undefined,
@ -6260,7 +6467,7 @@ Mutation$MoveService _parserFn$Mutation$MoveService(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$MoveService.fromJson(data); Mutation$MoveService.fromJson(data);
typedef OnMutationCompleted$Mutation$MoveService = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$MoveService = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$MoveService?, Mutation$MoveService?,
); );
@ -6273,6 +6480,7 @@ class Options$Mutation$MoveService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$MoveService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$MoveService? onCompleted, OnMutationCompleted$Mutation$MoveService? onCompleted,
graphql.OnMutationUpdate<Mutation$MoveService>? update, graphql.OnMutationUpdate<Mutation$MoveService>? update,
@ -6284,7 +6492,7 @@ class Options$Mutation$MoveService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -6318,6 +6526,7 @@ class WatchOptions$Mutation$MoveService
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$MoveService? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -6329,7 +6538,7 @@ class WatchOptions$Mutation$MoveService
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationMoveService, document: documentNodeMutationMoveService,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -6355,7 +6564,7 @@ class Mutation$MoveService$moveService
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceJobMutationReturn',
this.job, this.job,
}); });
@ -6495,7 +6704,7 @@ class _CopyWithImpl$Mutation$MoveService$moveService<TRes>
final TRes Function(Mutation$MoveService$moveService) _then; final TRes Function(Mutation$MoveService$moveService) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -6560,7 +6769,7 @@ class Mutation$MoveService$moveService$job {
this.statusText, this.statusText,
required this.uid, required this.uid,
required this.updatedAt, required this.updatedAt,
required this.$__typename, this.$__typename = 'ApiJob',
}); });
factory Mutation$MoveService$moveService$job.fromJson( factory Mutation$MoveService$moveService$job.fromJson(
@ -6796,7 +7005,7 @@ class _CopyWithImpl$Mutation$MoveService$moveService$job<TRes>
final TRes Function(Mutation$MoveService$moveService$job) _then; final TRes Function(Mutation$MoveService$moveService$job) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? createdAt = _undefined, Object? createdAt = _undefined,

View File

@ -141,6 +141,177 @@ extension UtilityExtension$Fragment$basicMutationReturnFields
this, this,
(i) => i, (i) => i,
); );
_T when<_T>({
required _T Function(
Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)
apiKeyMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)
autoUpgradeSettingsMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn)
deviceApiTokenMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$GenericJobButationReturn)
genericJobButationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$GenericMutationReturn)
genericMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$ServiceJobMutationReturn)
serviceJobMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$ServiceMutationReturn)
serviceMutationReturn,
required _T Function(
Fragment$basicMutationReturnFields$$TimezoneMutationReturn)
timezoneMutationReturn,
required _T Function(Fragment$basicMutationReturnFields$$UserMutationReturn)
userMutationReturn,
required _T Function() orElse,
}) {
switch ($__typename) {
case "ApiKeyMutationReturn":
return apiKeyMutationReturn(
this as Fragment$basicMutationReturnFields$$ApiKeyMutationReturn);
case "AutoUpgradeSettingsMutationReturn":
return autoUpgradeSettingsMutationReturn(this
as Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn);
case "DeviceApiTokenMutationReturn":
return deviceApiTokenMutationReturn(this
as Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn);
case "GenericJobButationReturn":
return genericJobButationReturn(this
as Fragment$basicMutationReturnFields$$GenericJobButationReturn);
case "GenericMutationReturn":
return genericMutationReturn(
this as Fragment$basicMutationReturnFields$$GenericMutationReturn);
case "ServiceJobMutationReturn":
return serviceJobMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceJobMutationReturn);
case "ServiceMutationReturn":
return serviceMutationReturn(
this as Fragment$basicMutationReturnFields$$ServiceMutationReturn);
case "TimezoneMutationReturn":
return timezoneMutationReturn(
this as Fragment$basicMutationReturnFields$$TimezoneMutationReturn);
case "UserMutationReturn":
return userMutationReturn(
this as Fragment$basicMutationReturnFields$$UserMutationReturn);
default:
return orElse();
}
}
_T maybeWhen<_T>({
_T Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)?
apiKeyMutationReturn,
_T Function(
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)?
autoUpgradeSettingsMutationReturn,
_T Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn)?
deviceApiTokenMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$GenericJobButationReturn)?
genericJobButationReturn,
_T Function(Fragment$basicMutationReturnFields$$GenericMutationReturn)?
genericMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$ServiceJobMutationReturn)?
serviceJobMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn)?
serviceMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$TimezoneMutationReturn)?
timezoneMutationReturn,
_T Function(Fragment$basicMutationReturnFields$$UserMutationReturn)?
userMutationReturn,
required _T Function() orElse,
}) {
switch ($__typename) {
case "ApiKeyMutationReturn":
if (apiKeyMutationReturn != null) {
return apiKeyMutationReturn(
this as Fragment$basicMutationReturnFields$$ApiKeyMutationReturn);
} else {
return orElse();
}
case "AutoUpgradeSettingsMutationReturn":
if (autoUpgradeSettingsMutationReturn != null) {
return autoUpgradeSettingsMutationReturn(this
as Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn);
} else {
return orElse();
}
case "DeviceApiTokenMutationReturn":
if (deviceApiTokenMutationReturn != null) {
return deviceApiTokenMutationReturn(this
as Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn);
} else {
return orElse();
}
case "GenericJobButationReturn":
if (genericJobButationReturn != null) {
return genericJobButationReturn(this
as Fragment$basicMutationReturnFields$$GenericJobButationReturn);
} else {
return orElse();
}
case "GenericMutationReturn":
if (genericMutationReturn != null) {
return genericMutationReturn(this
as Fragment$basicMutationReturnFields$$GenericMutationReturn);
} else {
return orElse();
}
case "ServiceJobMutationReturn":
if (serviceJobMutationReturn != null) {
return serviceJobMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceJobMutationReturn);
} else {
return orElse();
}
case "ServiceMutationReturn":
if (serviceMutationReturn != null) {
return serviceMutationReturn(this
as Fragment$basicMutationReturnFields$$ServiceMutationReturn);
} else {
return orElse();
}
case "TimezoneMutationReturn":
if (timezoneMutationReturn != null) {
return timezoneMutationReturn(this
as Fragment$basicMutationReturnFields$$TimezoneMutationReturn);
} else {
return orElse();
}
case "UserMutationReturn":
if (userMutationReturn != null) {
return userMutationReturn(
this as Fragment$basicMutationReturnFields$$UserMutationReturn);
} else {
return orElse();
}
default:
return orElse();
}
}
} }
abstract class CopyWith$Fragment$basicMutationReturnFields<TRes> { abstract class CopyWith$Fragment$basicMutationReturnFields<TRes> {
@ -171,7 +342,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields<TRes>
final TRes Function(Fragment$basicMutationReturnFields) _then; final TRes Function(Fragment$basicMutationReturnFields) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -297,7 +468,7 @@ class Fragment$basicMutationReturnFields$$ApiKeyMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ApiKeyMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ApiKeyMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ApiKeyMutationReturn.fromJson(
@ -428,7 +599,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ApiKeyMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$ApiKeyMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -476,7 +647,7 @@ class Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'AutoUpgradeSettingsMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn.fromJson(
@ -612,7 +783,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutat
Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn) Fragment$basicMutationReturnFields$$AutoUpgradeSettingsMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -661,7 +832,7 @@ class Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'DeviceApiTokenMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn.fromJson(
@ -795,7 +966,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$DeviceApiTokenMutationRe
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn) _then; Fragment$basicMutationReturnFields$$DeviceApiTokenMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -843,7 +1014,7 @@ class Fragment$basicMutationReturnFields$$GenericJobButationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericJobButationReturn',
}); });
factory Fragment$basicMutationReturnFields$$GenericJobButationReturn.fromJson( factory Fragment$basicMutationReturnFields$$GenericJobButationReturn.fromJson(
@ -975,7 +1146,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$GenericJobButationReturn
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$GenericJobButationReturn) _then; Fragment$basicMutationReturnFields$$GenericJobButationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1023,7 +1194,7 @@ class Fragment$basicMutationReturnFields$$GenericMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$GenericMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$GenericMutationReturn.fromJson(
@ -1154,7 +1325,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$GenericMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$GenericMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$GenericMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1202,7 +1373,7 @@ class Fragment$basicMutationReturnFields$$ServiceJobMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceJobMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ServiceJobMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ServiceJobMutationReturn.fromJson(
@ -1334,7 +1505,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ServiceJobMutationReturn
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$ServiceJobMutationReturn) _then; Fragment$basicMutationReturnFields$$ServiceJobMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1382,7 +1553,7 @@ class Fragment$basicMutationReturnFields$$ServiceMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'ServiceMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$ServiceMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$ServiceMutationReturn.fromJson(
@ -1513,7 +1684,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$ServiceMutationReturn<
final TRes Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$ServiceMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1561,7 +1732,7 @@ class Fragment$basicMutationReturnFields$$TimezoneMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'TimezoneMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$TimezoneMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$TimezoneMutationReturn.fromJson(
@ -1693,7 +1864,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$TimezoneMutationReturn<
final TRes Function( final TRes Function(
Fragment$basicMutationReturnFields$$TimezoneMutationReturn) _then; Fragment$basicMutationReturnFields$$TimezoneMutationReturn) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1741,7 +1912,7 @@ class Fragment$basicMutationReturnFields$$UserMutationReturn
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'UserMutationReturn',
}); });
factory Fragment$basicMutationReturnFields$$UserMutationReturn.fromJson( factory Fragment$basicMutationReturnFields$$UserMutationReturn.fromJson(
@ -1869,7 +2040,7 @@ class _CopyWithImpl$Fragment$basicMutationReturnFields$$UserMutationReturn<TRes>
final TRes Function(Fragment$basicMutationReturnFields$$UserMutationReturn) final TRes Function(Fragment$basicMutationReturnFields$$UserMutationReturn)
_then; _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -1915,7 +2086,7 @@ class Fragment$userFields {
required this.username, required this.username,
required this.userType, required this.userType,
required this.sshKeys, required this.sshKeys,
required this.$__typename, this.$__typename = 'User',
}); });
factory Fragment$userFields.fromJson(Map<String, dynamic> json) { factory Fragment$userFields.fromJson(Map<String, dynamic> json) {
@ -2041,7 +2212,7 @@ class _CopyWithImpl$Fragment$userFields<TRes>
final TRes Function(Fragment$userFields) _then; final TRes Function(Fragment$userFields) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? username = _undefined, Object? username = _undefined,
@ -2161,7 +2332,7 @@ extension ClientExtension$Fragment$userFields on graphql.GraphQLClient {
class Query$AllUsers { class Query$AllUsers {
Query$AllUsers({ Query$AllUsers({
required this.users, required this.users,
required this.$__typename, this.$__typename = 'Query',
}); });
factory Query$AllUsers.fromJson(Map<String, dynamic> json) { factory Query$AllUsers.fromJson(Map<String, dynamic> json) {
@ -2253,7 +2424,7 @@ class _CopyWithImpl$Query$AllUsers<TRes>
final TRes Function(Query$AllUsers) _then; final TRes Function(Query$AllUsers) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? users = _undefined, Object? users = _undefined,
@ -2369,6 +2540,10 @@ const documentNodeQueryAllUsers = DocumentNode(definitions: [
]); ]);
Query$AllUsers _parserFn$Query$AllUsers(Map<String, dynamic> data) => Query$AllUsers _parserFn$Query$AllUsers(Map<String, dynamic> data) =>
Query$AllUsers.fromJson(data); Query$AllUsers.fromJson(data);
typedef OnQueryComplete$Query$AllUsers = FutureOr<void> Function(
Map<String, dynamic>?,
Query$AllUsers?,
);
class Options$Query$AllUsers extends graphql.QueryOptions<Query$AllUsers> { class Options$Query$AllUsers extends graphql.QueryOptions<Query$AllUsers> {
Options$Query$AllUsers({ Options$Query$AllUsers({
@ -2377,19 +2552,40 @@ class Options$Query$AllUsers extends graphql.QueryOptions<Query$AllUsers> {
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$AllUsers? typedOptimisticResult,
Duration? pollInterval, Duration? pollInterval,
graphql.Context? context, graphql.Context? context,
}) : super( OnQueryComplete$Query$AllUsers? onComplete,
graphql.OnQueryError? onError,
}) : onCompleteWithParsed = onComplete,
super(
operationName: operationName, operationName: operationName,
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
pollInterval: pollInterval, pollInterval: pollInterval,
context: context, context: context,
onComplete: onComplete == null
? null
: (data) => onComplete(
data,
data == null ? null : _parserFn$Query$AllUsers(data),
),
onError: onError,
document: documentNodeQueryAllUsers, document: documentNodeQueryAllUsers,
parserFn: _parserFn$Query$AllUsers, parserFn: _parserFn$Query$AllUsers,
); );
final OnQueryComplete$Query$AllUsers? onCompleteWithParsed;
@override
List<Object?> get properties => [
...super.onComplete == null
? super.properties
: super.properties.where((property) => property != onComplete),
onCompleteWithParsed,
];
} }
class WatchOptions$Query$AllUsers class WatchOptions$Query$AllUsers
@ -2400,6 +2596,7 @@ class WatchOptions$Query$AllUsers
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$AllUsers? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -2410,7 +2607,7 @@ class WatchOptions$Query$AllUsers
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeQueryAllUsers, document: documentNodeQueryAllUsers,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -2460,7 +2657,7 @@ class Query$AllUsers$users {
Query$AllUsers$users({ Query$AllUsers$users({
required this.allUsers, required this.allUsers,
this.rootUser, this.rootUser,
required this.$__typename, this.$__typename = 'Users',
}); });
factory Query$AllUsers$users.fromJson(Map<String, dynamic> json) { factory Query$AllUsers$users.fromJson(Map<String, dynamic> json) {
@ -2581,7 +2778,7 @@ class _CopyWithImpl$Query$AllUsers$users<TRes>
final TRes Function(Query$AllUsers$users) _then; final TRes Function(Query$AllUsers$users) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? allUsers = _undefined, Object? allUsers = _undefined,
@ -2712,7 +2909,7 @@ class _CopyWithImpl$Variables$Query$GetUser<TRes>
final TRes Function(Variables$Query$GetUser) _then; final TRes Function(Variables$Query$GetUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? username = _undefined}) => TRes call({Object? username = _undefined}) =>
_then(Variables$Query$GetUser._({ _then(Variables$Query$GetUser._({
@ -2734,7 +2931,7 @@ class _CopyWithStubImpl$Variables$Query$GetUser<TRes>
class Query$GetUser { class Query$GetUser {
Query$GetUser({ Query$GetUser({
required this.users, required this.users,
required this.$__typename, this.$__typename = 'Query',
}); });
factory Query$GetUser.fromJson(Map<String, dynamic> json) { factory Query$GetUser.fromJson(Map<String, dynamic> json) {
@ -2825,7 +3022,7 @@ class _CopyWithImpl$Query$GetUser<TRes>
final TRes Function(Query$GetUser) _then; final TRes Function(Query$GetUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? users = _undefined, Object? users = _undefined,
@ -2929,6 +3126,10 @@ const documentNodeQueryGetUser = DocumentNode(definitions: [
]); ]);
Query$GetUser _parserFn$Query$GetUser(Map<String, dynamic> data) => Query$GetUser _parserFn$Query$GetUser(Map<String, dynamic> data) =>
Query$GetUser.fromJson(data); Query$GetUser.fromJson(data);
typedef OnQueryComplete$Query$GetUser = FutureOr<void> Function(
Map<String, dynamic>?,
Query$GetUser?,
);
class Options$Query$GetUser extends graphql.QueryOptions<Query$GetUser> { class Options$Query$GetUser extends graphql.QueryOptions<Query$GetUser> {
Options$Query$GetUser({ Options$Query$GetUser({
@ -2938,20 +3139,41 @@ class Options$Query$GetUser extends graphql.QueryOptions<Query$GetUser> {
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$GetUser? typedOptimisticResult,
Duration? pollInterval, Duration? pollInterval,
graphql.Context? context, graphql.Context? context,
}) : super( OnQueryComplete$Query$GetUser? onComplete,
graphql.OnQueryError? onError,
}) : onCompleteWithParsed = onComplete,
super(
variables: variables.toJson(), variables: variables.toJson(),
operationName: operationName, operationName: operationName,
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
pollInterval: pollInterval, pollInterval: pollInterval,
context: context, context: context,
onComplete: onComplete == null
? null
: (data) => onComplete(
data,
data == null ? null : _parserFn$Query$GetUser(data),
),
onError: onError,
document: documentNodeQueryGetUser, document: documentNodeQueryGetUser,
parserFn: _parserFn$Query$GetUser, parserFn: _parserFn$Query$GetUser,
); );
final OnQueryComplete$Query$GetUser? onCompleteWithParsed;
@override
List<Object?> get properties => [
...super.onComplete == null
? super.properties
: super.properties.where((property) => property != onComplete),
onCompleteWithParsed,
];
} }
class WatchOptions$Query$GetUser class WatchOptions$Query$GetUser
@ -2963,6 +3185,7 @@ class WatchOptions$Query$GetUser
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Query$GetUser? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -2974,7 +3197,7 @@ class WatchOptions$Query$GetUser
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeQueryGetUser, document: documentNodeQueryGetUser,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -3034,7 +3257,7 @@ extension ClientExtension$Query$GetUser on graphql.GraphQLClient {
class Query$GetUser$users { class Query$GetUser$users {
Query$GetUser$users({ Query$GetUser$users({
this.getUser, this.getUser,
required this.$__typename, this.$__typename = 'Users',
}); });
factory Query$GetUser$users.fromJson(Map<String, dynamic> json) { factory Query$GetUser$users.fromJson(Map<String, dynamic> json) {
@ -3128,7 +3351,7 @@ class _CopyWithImpl$Query$GetUser$users<TRes>
final TRes Function(Query$GetUser$users) _then; final TRes Function(Query$GetUser$users) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? getUser = _undefined, Object? getUser = _undefined,
@ -3245,7 +3468,7 @@ class _CopyWithImpl$Variables$Mutation$CreateUser<TRes>
final TRes Function(Variables$Mutation$CreateUser) _then; final TRes Function(Variables$Mutation$CreateUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? user = _undefined}) => TRes call({Object? user = _undefined}) =>
_then(Variables$Mutation$CreateUser._({ _then(Variables$Mutation$CreateUser._({
@ -3267,7 +3490,7 @@ class _CopyWithStubImpl$Variables$Mutation$CreateUser<TRes>
class Mutation$CreateUser { class Mutation$CreateUser {
Mutation$CreateUser({ Mutation$CreateUser({
required this.createUser, required this.createUser,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$CreateUser.fromJson(Map<String, dynamic> json) { factory Mutation$CreateUser.fromJson(Map<String, dynamic> json) {
@ -3360,7 +3583,7 @@ class _CopyWithImpl$Mutation$CreateUser<TRes>
final TRes Function(Mutation$CreateUser) _then; final TRes Function(Mutation$CreateUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? createUser = _undefined, Object? createUser = _undefined,
@ -3471,7 +3694,7 @@ const documentNodeMutationCreateUser = DocumentNode(definitions: [
Mutation$CreateUser _parserFn$Mutation$CreateUser(Map<String, dynamic> data) => Mutation$CreateUser _parserFn$Mutation$CreateUser(Map<String, dynamic> data) =>
Mutation$CreateUser.fromJson(data); Mutation$CreateUser.fromJson(data);
typedef OnMutationCompleted$Mutation$CreateUser = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$CreateUser = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$CreateUser?, Mutation$CreateUser?,
); );
@ -3484,6 +3707,7 @@ class Options$Mutation$CreateUser
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$CreateUser? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$CreateUser? onCompleted, OnMutationCompleted$Mutation$CreateUser? onCompleted,
graphql.OnMutationUpdate<Mutation$CreateUser>? update, graphql.OnMutationUpdate<Mutation$CreateUser>? update,
@ -3495,7 +3719,7 @@ class Options$Mutation$CreateUser
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -3529,6 +3753,7 @@ class WatchOptions$Mutation$CreateUser
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$CreateUser? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -3540,7 +3765,7 @@ class WatchOptions$Mutation$CreateUser
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationCreateUser, document: documentNodeMutationCreateUser,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -3566,7 +3791,7 @@ class Mutation$CreateUser$createUser
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'UserMutationReturn',
this.user, this.user,
}); });
@ -3705,7 +3930,7 @@ class _CopyWithImpl$Mutation$CreateUser$createUser<TRes>
final TRes Function(Mutation$CreateUser$createUser) _then; final TRes Function(Mutation$CreateUser$createUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -3833,7 +4058,7 @@ class _CopyWithImpl$Variables$Mutation$DeleteUser<TRes>
final TRes Function(Variables$Mutation$DeleteUser) _then; final TRes Function(Variables$Mutation$DeleteUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? username = _undefined}) => TRes call({Object? username = _undefined}) =>
_then(Variables$Mutation$DeleteUser._({ _then(Variables$Mutation$DeleteUser._({
@ -3855,7 +4080,7 @@ class _CopyWithStubImpl$Variables$Mutation$DeleteUser<TRes>
class Mutation$DeleteUser { class Mutation$DeleteUser {
Mutation$DeleteUser({ Mutation$DeleteUser({
required this.deleteUser, required this.deleteUser,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$DeleteUser.fromJson(Map<String, dynamic> json) { factory Mutation$DeleteUser.fromJson(Map<String, dynamic> json) {
@ -3948,7 +4173,7 @@ class _CopyWithImpl$Mutation$DeleteUser<TRes>
final TRes Function(Mutation$DeleteUser) _then; final TRes Function(Mutation$DeleteUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? deleteUser = _undefined, Object? deleteUser = _undefined,
@ -4039,7 +4264,7 @@ const documentNodeMutationDeleteUser = DocumentNode(definitions: [
Mutation$DeleteUser _parserFn$Mutation$DeleteUser(Map<String, dynamic> data) => Mutation$DeleteUser _parserFn$Mutation$DeleteUser(Map<String, dynamic> data) =>
Mutation$DeleteUser.fromJson(data); Mutation$DeleteUser.fromJson(data);
typedef OnMutationCompleted$Mutation$DeleteUser = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$DeleteUser = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$DeleteUser?, Mutation$DeleteUser?,
); );
@ -4052,6 +4277,7 @@ class Options$Mutation$DeleteUser
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$DeleteUser? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$DeleteUser? onCompleted, OnMutationCompleted$Mutation$DeleteUser? onCompleted,
graphql.OnMutationUpdate<Mutation$DeleteUser>? update, graphql.OnMutationUpdate<Mutation$DeleteUser>? update,
@ -4063,7 +4289,7 @@ class Options$Mutation$DeleteUser
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -4097,6 +4323,7 @@ class WatchOptions$Mutation$DeleteUser
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$DeleteUser? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -4108,7 +4335,7 @@ class WatchOptions$Mutation$DeleteUser
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationDeleteUser, document: documentNodeMutationDeleteUser,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -4134,7 +4361,7 @@ class Mutation$DeleteUser$deleteUser
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'GenericMutationReturn',
}); });
factory Mutation$DeleteUser$deleteUser.fromJson(Map<String, dynamic> json) { factory Mutation$DeleteUser$deleteUser.fromJson(Map<String, dynamic> json) {
@ -4255,7 +4482,7 @@ class _CopyWithImpl$Mutation$DeleteUser$deleteUser<TRes>
final TRes Function(Mutation$DeleteUser$deleteUser) _then; final TRes Function(Mutation$DeleteUser$deleteUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -4373,7 +4600,7 @@ class _CopyWithImpl$Variables$Mutation$UpdateUser<TRes>
final TRes Function(Variables$Mutation$UpdateUser) _then; final TRes Function(Variables$Mutation$UpdateUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? user = _undefined}) => TRes call({Object? user = _undefined}) =>
_then(Variables$Mutation$UpdateUser._({ _then(Variables$Mutation$UpdateUser._({
@ -4395,7 +4622,7 @@ class _CopyWithStubImpl$Variables$Mutation$UpdateUser<TRes>
class Mutation$UpdateUser { class Mutation$UpdateUser {
Mutation$UpdateUser({ Mutation$UpdateUser({
required this.updateUser, required this.updateUser,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$UpdateUser.fromJson(Map<String, dynamic> json) { factory Mutation$UpdateUser.fromJson(Map<String, dynamic> json) {
@ -4488,7 +4715,7 @@ class _CopyWithImpl$Mutation$UpdateUser<TRes>
final TRes Function(Mutation$UpdateUser) _then; final TRes Function(Mutation$UpdateUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? updateUser = _undefined, Object? updateUser = _undefined,
@ -4599,7 +4826,7 @@ const documentNodeMutationUpdateUser = DocumentNode(definitions: [
Mutation$UpdateUser _parserFn$Mutation$UpdateUser(Map<String, dynamic> data) => Mutation$UpdateUser _parserFn$Mutation$UpdateUser(Map<String, dynamic> data) =>
Mutation$UpdateUser.fromJson(data); Mutation$UpdateUser.fromJson(data);
typedef OnMutationCompleted$Mutation$UpdateUser = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$UpdateUser = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$UpdateUser?, Mutation$UpdateUser?,
); );
@ -4612,6 +4839,7 @@ class Options$Mutation$UpdateUser
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$UpdateUser? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$UpdateUser? onCompleted, OnMutationCompleted$Mutation$UpdateUser? onCompleted,
graphql.OnMutationUpdate<Mutation$UpdateUser>? update, graphql.OnMutationUpdate<Mutation$UpdateUser>? update,
@ -4623,7 +4851,7 @@ class Options$Mutation$UpdateUser
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -4657,6 +4885,7 @@ class WatchOptions$Mutation$UpdateUser
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$UpdateUser? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -4668,7 +4897,7 @@ class WatchOptions$Mutation$UpdateUser
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationUpdateUser, document: documentNodeMutationUpdateUser,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -4694,7 +4923,7 @@ class Mutation$UpdateUser$updateUser
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'UserMutationReturn',
this.user, this.user,
}); });
@ -4833,7 +5062,7 @@ class _CopyWithImpl$Mutation$UpdateUser$updateUser<TRes>
final TRes Function(Mutation$UpdateUser$updateUser) _then; final TRes Function(Mutation$UpdateUser$updateUser) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -4964,7 +5193,7 @@ class _CopyWithImpl$Variables$Mutation$AddSshKey<TRes>
final TRes Function(Variables$Mutation$AddSshKey) _then; final TRes Function(Variables$Mutation$AddSshKey) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? sshInput = _undefined}) => TRes call({Object? sshInput = _undefined}) =>
_then(Variables$Mutation$AddSshKey._({ _then(Variables$Mutation$AddSshKey._({
@ -4986,7 +5215,7 @@ class _CopyWithStubImpl$Variables$Mutation$AddSshKey<TRes>
class Mutation$AddSshKey { class Mutation$AddSshKey {
Mutation$AddSshKey({ Mutation$AddSshKey({
required this.addSshKey, required this.addSshKey,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$AddSshKey.fromJson(Map<String, dynamic> json) { factory Mutation$AddSshKey.fromJson(Map<String, dynamic> json) {
@ -5079,7 +5308,7 @@ class _CopyWithImpl$Mutation$AddSshKey<TRes>
final TRes Function(Mutation$AddSshKey) _then; final TRes Function(Mutation$AddSshKey) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? addSshKey = _undefined, Object? addSshKey = _undefined,
@ -5190,7 +5419,7 @@ const documentNodeMutationAddSshKey = DocumentNode(definitions: [
Mutation$AddSshKey _parserFn$Mutation$AddSshKey(Map<String, dynamic> data) => Mutation$AddSshKey _parserFn$Mutation$AddSshKey(Map<String, dynamic> data) =>
Mutation$AddSshKey.fromJson(data); Mutation$AddSshKey.fromJson(data);
typedef OnMutationCompleted$Mutation$AddSshKey = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$AddSshKey = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$AddSshKey?, Mutation$AddSshKey?,
); );
@ -5203,6 +5432,7 @@ class Options$Mutation$AddSshKey
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$AddSshKey? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$AddSshKey? onCompleted, OnMutationCompleted$Mutation$AddSshKey? onCompleted,
graphql.OnMutationUpdate<Mutation$AddSshKey>? update, graphql.OnMutationUpdate<Mutation$AddSshKey>? update,
@ -5214,7 +5444,7 @@ class Options$Mutation$AddSshKey
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -5248,6 +5478,7 @@ class WatchOptions$Mutation$AddSshKey
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$AddSshKey? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -5259,7 +5490,7 @@ class WatchOptions$Mutation$AddSshKey
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationAddSshKey, document: documentNodeMutationAddSshKey,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -5285,7 +5516,7 @@ class Mutation$AddSshKey$addSshKey
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'UserMutationReturn',
this.user, this.user,
}); });
@ -5424,7 +5655,7 @@ class _CopyWithImpl$Mutation$AddSshKey$addSshKey<TRes>
final TRes Function(Mutation$AddSshKey$addSshKey) _then; final TRes Function(Mutation$AddSshKey$addSshKey) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,
@ -5555,7 +5786,7 @@ class _CopyWithImpl$Variables$Mutation$RemoveSshKey<TRes>
final TRes Function(Variables$Mutation$RemoveSshKey) _then; final TRes Function(Variables$Mutation$RemoveSshKey) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({Object? sshInput = _undefined}) => TRes call({Object? sshInput = _undefined}) =>
_then(Variables$Mutation$RemoveSshKey._({ _then(Variables$Mutation$RemoveSshKey._({
@ -5577,7 +5808,7 @@ class _CopyWithStubImpl$Variables$Mutation$RemoveSshKey<TRes>
class Mutation$RemoveSshKey { class Mutation$RemoveSshKey {
Mutation$RemoveSshKey({ Mutation$RemoveSshKey({
required this.removeSshKey, required this.removeSshKey,
required this.$__typename, this.$__typename = 'Mutation',
}); });
factory Mutation$RemoveSshKey.fromJson(Map<String, dynamic> json) { factory Mutation$RemoveSshKey.fromJson(Map<String, dynamic> json) {
@ -5670,7 +5901,7 @@ class _CopyWithImpl$Mutation$RemoveSshKey<TRes>
final TRes Function(Mutation$RemoveSshKey) _then; final TRes Function(Mutation$RemoveSshKey) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? removeSshKey = _undefined, Object? removeSshKey = _undefined,
@ -5782,7 +6013,7 @@ Mutation$RemoveSshKey _parserFn$Mutation$RemoveSshKey(
Map<String, dynamic> data) => Map<String, dynamic> data) =>
Mutation$RemoveSshKey.fromJson(data); Mutation$RemoveSshKey.fromJson(data);
typedef OnMutationCompleted$Mutation$RemoveSshKey = FutureOr<void> Function( typedef OnMutationCompleted$Mutation$RemoveSshKey = FutureOr<void> Function(
dynamic, Map<String, dynamic>?,
Mutation$RemoveSshKey?, Mutation$RemoveSshKey?,
); );
@ -5795,6 +6026,7 @@ class Options$Mutation$RemoveSshKey
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$RemoveSshKey? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
OnMutationCompleted$Mutation$RemoveSshKey? onCompleted, OnMutationCompleted$Mutation$RemoveSshKey? onCompleted,
graphql.OnMutationUpdate<Mutation$RemoveSshKey>? update, graphql.OnMutationUpdate<Mutation$RemoveSshKey>? update,
@ -5806,7 +6038,7 @@ class Options$Mutation$RemoveSshKey
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
onCompleted: onCompleted == null onCompleted: onCompleted == null
? null ? null
@ -5840,6 +6072,7 @@ class WatchOptions$Mutation$RemoveSshKey
graphql.ErrorPolicy? errorPolicy, graphql.ErrorPolicy? errorPolicy,
graphql.CacheRereadPolicy? cacheRereadPolicy, graphql.CacheRereadPolicy? cacheRereadPolicy,
Object? optimisticResult, Object? optimisticResult,
Mutation$RemoveSshKey? typedOptimisticResult,
graphql.Context? context, graphql.Context? context,
Duration? pollInterval, Duration? pollInterval,
bool? eagerlyFetchResults, bool? eagerlyFetchResults,
@ -5851,7 +6084,7 @@ class WatchOptions$Mutation$RemoveSshKey
fetchPolicy: fetchPolicy, fetchPolicy: fetchPolicy,
errorPolicy: errorPolicy, errorPolicy: errorPolicy,
cacheRereadPolicy: cacheRereadPolicy, cacheRereadPolicy: cacheRereadPolicy,
optimisticResult: optimisticResult, optimisticResult: optimisticResult ?? typedOptimisticResult?.toJson(),
context: context, context: context,
document: documentNodeMutationRemoveSshKey, document: documentNodeMutationRemoveSshKey,
pollInterval: pollInterval, pollInterval: pollInterval,
@ -5877,7 +6110,7 @@ class Mutation$RemoveSshKey$removeSshKey
required this.code, required this.code,
required this.message, required this.message,
required this.success, required this.success,
required this.$__typename, this.$__typename = 'UserMutationReturn',
this.user, this.user,
}); });
@ -6018,7 +6251,7 @@ class _CopyWithImpl$Mutation$RemoveSshKey$removeSshKey<TRes>
final TRes Function(Mutation$RemoveSshKey$removeSshKey) _then; final TRes Function(Mutation$RemoveSshKey$removeSshKey) _then;
static const _undefined = {}; static const _undefined = <dynamic, dynamic>{};
TRes call({ TRes call({
Object? code = _undefined, Object? code = _undefined,

View File

@ -2,8 +2,8 @@ import 'dart:async';
import 'dart:developer'; import 'dart:developer';
import 'dart:io'; import 'dart:io';
import 'package:dio/adapter.dart';
import 'package:dio/dio.dart'; import 'package:dio/dio.dart';
import 'package:dio/io.dart';
import 'package:pretty_dio_logger/pretty_dio_logger.dart'; import 'package:pretty_dio_logger/pretty_dio_logger.dart';
import 'package:selfprivacy/config/get_it_config.dart'; import 'package:selfprivacy/config/get_it_config.dart';
import 'package:selfprivacy/logic/models/message.dart'; import 'package:selfprivacy/logic/models/message.dart';
@ -15,7 +15,7 @@ abstract class ApiMap {
dio.interceptors.add(PrettyDioLogger()); dio.interceptors.add(PrettyDioLogger());
} }
dio.interceptors.add(ConsoleInterceptor()); dio.interceptors.add(ConsoleInterceptor());
(dio.httpClientAdapter as DefaultHttpClientAdapter).onHttpClientCreate = (dio.httpClientAdapter as IOHttpClientAdapter).onHttpClientCreate =
(final HttpClient client) { (final HttpClient client) {
client.badCertificateCallback = client.badCertificateCallback =
(final X509Certificate cert, final String host, final int port) => (final X509Certificate cert, final String host, final int port) =>

View File

@ -68,7 +68,7 @@ class ServerInstallationRepository {
if (dnsProvider != null || if (dnsProvider != null ||
(serverDomain != null && (serverDomain != null &&
serverDomain.provider != ServerProviderType.unknown)) { serverDomain.provider != DnsProviderType.unknown)) {
ProvidersController.initDnsProvider( ProvidersController.initDnsProvider(
DnsProviderSettings( DnsProviderSettings(
provider: dnsProvider ?? serverDomain!.provider, provider: dnsProvider ?? serverDomain!.provider,

View File

@ -1,12 +1,11 @@
import 'package:easy_localization/easy_localization.dart'; import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:selfprivacy/config/brand_colors.dart'; import 'package:selfprivacy/config/brand_colors.dart';
import 'package:selfprivacy/config/hive_config.dart'; import 'package:selfprivacy/config/hive_config.dart';
import 'package:selfprivacy/theming/factory/app_theme_factory.dart'; import 'package:selfprivacy/theming/factory/app_theme_factory.dart';
import 'package:selfprivacy/ui/router/router.dart'; import 'package:selfprivacy/ui/router/router.dart';
import 'package:wakelock/wakelock.dart'; // import 'package:wakelock/wakelock.dart';
import 'package:timezone/data/latest.dart' as tz; import 'package:timezone/data/latest.dart' as tz;
import 'package:selfprivacy/config/bloc_config.dart'; import 'package:selfprivacy/config/bloc_config.dart';
@ -20,13 +19,13 @@ void main() async {
await HiveConfig.init(); await HiveConfig.init();
// await SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]); // await SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
try { // try {
/// Wakelock support for Linux // /// Wakelock support for Linux
/// desktop is not yet implemented // /// desktop is not yet implemented
await Wakelock.enable(); // await Wakelock.enable();
} on PlatformException catch (e) { // } on PlatformException catch (e) {
print(e); // print(e);
} // }
await getItSetup(); await getItSetup();
await EasyLocalization.ensureInitialized(); await EasyLocalization.ensureInitialized();

View File

@ -32,12 +32,14 @@ class BrandButton {
assert(text != null || child != null, 'required title or child'); assert(text != null || child != null, 'required title or child');
return ConstrainedBox( return ConstrainedBox(
constraints: const BoxConstraints( constraints: const BoxConstraints(
minHeight: 40,
minWidth: double.infinity, minWidth: double.infinity,
), ),
child: FilledButton( child: FilledButton(
key: key, key: key,
onPressed: onPressed, onPressed: onPressed,
style: ElevatedButton.styleFrom(
tapTargetSize: MaterialTapTargetSize.padded,
),
child: child ?? Text(text ?? ''), child: child ?? Text(text ?? ''),
), ),
); );

View File

@ -17,11 +17,13 @@ class BrandOutlinedButton extends StatelessWidget {
@override @override
Widget build(final BuildContext context) => ConstrainedBox( Widget build(final BuildContext context) => ConstrainedBox(
constraints: const BoxConstraints( constraints: const BoxConstraints(
minHeight: 40,
minWidth: double.infinity, minWidth: double.infinity,
), ),
child: OutlinedButton( child: OutlinedButton(
onPressed: onPressed, onPressed: onPressed,
style: OutlinedButton.styleFrom(
tapTargetSize: MaterialTapTargetSize.padded,
),
child: child ?? child: child ??
Text( Text(
title ?? '', title ?? '',

View File

@ -68,12 +68,13 @@ class _RestApiRequestMessageItem extends StatelessWidget {
), ),
actions: [ actions: [
// A button to copy the request to the clipboard // A button to copy the request to the clipboard
TextButton( if (message.text != null)
onPressed: () { TextButton(
Clipboard.setData(ClipboardData(text: message.text)); onPressed: () {
}, Clipboard.setData(ClipboardData(text: message.text ?? ''));
child: Text('console_page.copy'.tr()), },
), child: Text('console_page.copy'.tr()),
),
TextButton( TextButton(
onPressed: () => Navigator.of(context).pop(), onPressed: () => Navigator.of(context).pop(),
child: Text('basis.close'.tr()), child: Text('basis.close'.tr()),
@ -117,12 +118,13 @@ class _RestApiResponseMessageItem extends StatelessWidget {
), ),
actions: [ actions: [
// A button to copy the request to the clipboard // A button to copy the request to the clipboard
TextButton( if (message.text != null)
onPressed: () { TextButton(
Clipboard.setData(ClipboardData(text: message.text)); onPressed: () {
}, Clipboard.setData(ClipboardData(text: message.text ?? ''));
child: Text('console_page.copy'.tr()), },
), child: Text('console_page.copy'.tr()),
),
TextButton( TextButton(
onPressed: () => Navigator.of(context).pop(), onPressed: () => Navigator.of(context).pop(),
child: Text('basis.close'.tr()), child: Text('basis.close'.tr()),
@ -190,12 +192,13 @@ class _GraphQlResponseMessageItem extends StatelessWidget {
), ),
actions: [ actions: [
// A button to copy the request to the clipboard // A button to copy the request to the clipboard
TextButton( if (message.text != null)
onPressed: () { TextButton(
Clipboard.setData(ClipboardData(text: message.text)); onPressed: () {
}, Clipboard.setData(ClipboardData(text: message.text ?? ''));
child: Text('console_page.copy'.tr()), },
), child: Text('console_page.copy'.tr()),
),
TextButton( TextButton(
onPressed: () => Navigator.of(context).pop(), onPressed: () => Navigator.of(context).pop(),
child: Text('basis.close'.tr()), child: Text('basis.close'.tr()),
@ -258,12 +261,13 @@ class _GraphQlRequestMessageItem extends StatelessWidget {
), ),
actions: [ actions: [
// A button to copy the request to the clipboard // A button to copy the request to the clipboard
TextButton( if (message.text != null)
onPressed: () { TextButton(
Clipboard.setData(ClipboardData(text: message.text)); onPressed: () {
}, Clipboard.setData(ClipboardData(text: message.text ?? ''));
child: Text('console_page.copy'.tr()), },
), child: Text('console_page.copy'.tr()),
),
TextButton( TextButton(
onPressed: () => Navigator.of(context).pop(), onPressed: () => Navigator.of(context).pop(),
child: Text('basis.close'.tr()), child: Text('basis.close'.tr()),

View File

@ -12,6 +12,7 @@ import 'package:selfprivacy/logic/cubit/forms/setup/initializing/root_user_form_
import 'package:selfprivacy/logic/cubit/support_system/support_system_cubit.dart'; import 'package:selfprivacy/logic/cubit/support_system/support_system_cubit.dart';
import 'package:selfprivacy/ui/components/buttons/brand_button.dart'; import 'package:selfprivacy/ui/components/buttons/brand_button.dart';
import 'package:selfprivacy/ui/components/brand_timer/brand_timer.dart'; import 'package:selfprivacy/ui/components/brand_timer/brand_timer.dart';
import 'package:selfprivacy/ui/components/buttons/outlined_button.dart';
import 'package:selfprivacy/ui/components/drawers/progress_drawer.dart'; import 'package:selfprivacy/ui/components/drawers/progress_drawer.dart';
import 'package:selfprivacy/ui/components/progress_bar/progress_bar.dart'; import 'package:selfprivacy/ui/components/progress_bar/progress_bar.dart';
import 'package:selfprivacy/ui/components/drawers/support_drawer.dart'; import 'package:selfprivacy/ui/components/drawers/support_drawer.dart';
@ -133,20 +134,16 @@ class InitializingPage extends StatelessWidget {
}, },
), ),
), ),
ConstrainedBox( // const SizedBox(height: 8),
constraints: const BoxConstraints( BrandOutlinedButton(
minWidth: double.infinity, child: Text(
), cubit.state is ServerInstallationFinished
child: OutlinedButton( ? 'basis.close'.tr()
child: Text( : 'basis.later'.tr(),
cubit.state is ServerInstallationFinished
? 'basis.close'.tr()
: 'basis.later'.tr(),
),
onPressed: () {
context.router.popUntilRoot();
},
), ),
onPressed: () {
context.router.popUntilRoot();
},
), ),
], ],
), ),

View File

@ -46,7 +46,8 @@ Widget fadeThroughTransition(
replaceInRouteName: 'Page|Screen|Routing,Route', replaceInRouteName: 'Page|Screen|Routing,Route',
) )
class RootRouter extends _$RootRouter { class RootRouter extends _$RootRouter {
RootRouter(GlobalKey<NavigatorState> super.navigatorKey); RootRouter(final GlobalKey<NavigatorState> navigatorKey)
: super(navigatorKey: navigatorKey);
@override @override
RouteType get defaultRouteType => const RouteType.material(); RouteType get defaultRouteType => const RouteType.material();

View File

@ -10,7 +10,8 @@
part of 'router.dart'; part of 'router.dart';
abstract class _$RootRouter extends RootStackRouter { abstract class _$RootRouter extends RootStackRouter {
_$RootRouter([GlobalKey<NavigatorState>? navigatorKey]) : super(navigatorKey); // ignore: unused_element
_$RootRouter({super.navigatorKey});
@override @override
final Map<String, PageFactory> pagesMap = { final Map<String, PageFactory> pagesMap = {

View File

@ -13,7 +13,6 @@ import package_info
import path_provider_foundation import path_provider_foundation
import shared_preferences_foundation import shared_preferences_foundation
import url_launcher_macos import url_launcher_macos
import wakelock_macos
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
ConnectivityPlugin.register(with: registry.registrar(forPlugin: "ConnectivityPlugin")) ConnectivityPlugin.register(with: registry.registrar(forPlugin: "ConnectivityPlugin"))
@ -24,5 +23,4 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
WakelockMacosPlugin.register(with: registry.registrar(forPlugin: "WakelockMacosPlugin"))
} }

View File

@ -5,18 +5,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: _fe_analyzer_shared name: _fe_analyzer_shared
sha256: "0c80aeab9bc807ab10022cd3b2f4cf2ecdf231949dc1ddd9442406a003f19201" sha256: ae92f5d747aee634b87f89d9946000c2de774be1d6ac3e58268224348cd0101a
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "52.0.0" version: "61.0.0"
analyzer: analyzer:
dependency: transitive dependency: transitive
description: description:
name: analyzer name: analyzer
sha256: cd8ee83568a77f3ae6b913a36093a1c9b1264e7cb7f834d9ddd2311dade9c1f4 sha256: ea3d8652bda62982addfd92fdc2d0214e5f82e43325104990d4f4c4a2a313562
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "5.4.0" version: "5.13.0"
animations: animations:
dependency: "direct main" dependency: "direct main"
description: description:
@ -45,26 +45,26 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: async name: async
sha256: bfe67ef28df125b7dddcea62755991f807aa39a2492a23e1550161692950bbe0 sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.10.0" version: "2.11.0"
auto_route: auto_route:
dependency: "direct main" dependency: "direct main"
description: description:
name: auto_route name: auto_route
sha256: c012d5c631f9a201f07203a7084742618a1cef5e4d9f7b1e4fde6bc6158dd134 sha256: cf6cda303fd98608426fa429692a04f643146f981b1c0ac1033e3f0e11a1ed9c
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.1.0" version: "7.3.2"
auto_route_generator: auto_route_generator:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: auto_route_generator name: auto_route_generator
sha256: a3f11c3b1e6e884d1592924f3b7212855f1c7c8791c12d3b41b87ab81fb9d3b8 sha256: d0555913cc54153c38b1dd4f69e0d6a623818ca7195e7c1437901d52b2596eec
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.0.0" version: "7.1.1"
auto_size_text: auto_size_text:
dependency: "direct main" dependency: "direct main"
description: description:
@ -77,18 +77,18 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: basic_utils name: basic_utils
sha256: "3e86a17d2aafbd52ef69c0dc8936b1bc7bd91bcd8fa1c0d222d13ca2f6d000bb" sha256: "8815477fcf58499e42326bd858e391442425fa57db9a45e48e15224c62049262"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "5.4.2" version: "5.5.4"
bloc: bloc:
dependency: transitive dependency: transitive
description: description:
name: bloc name: bloc
sha256: bd4f8027bfa60d96c8046dec5ce74c463b2c918dce1b0d36593575995344534a sha256: "3820f15f502372d979121de1f6b97bfcf1630ebff8fe1d52fb2b0bfa49be5b49"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "8.1.0" version: "8.1.2"
boolean_selector: boolean_selector:
dependency: transitive dependency: transitive
description: description:
@ -117,10 +117,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: build_daemon name: build_daemon
sha256: "6bc5544ea6ce4428266e7ea680e945c68806c4aae2da0eb5e9ccf38df8d6acbf" sha256: "5f02d73eb2ba16483e693f80bee4f088563a820e47d1027d4cdfe62b5bb43e65"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.1.0" version: "4.0.0"
build_resolvers: build_resolvers:
dependency: transitive dependency: transitive
description: description:
@ -133,10 +133,10 @@ packages:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: build_runner name: build_runner
sha256: b0a8a7b8a76c493e85f1b84bffa0588859a06197863dba8c9036b15581fd9727 sha256: "220ae4553e50d7c21a17c051afc7b183d28a24a420502e842f303f8e4e6edced"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.3.3" version: "2.4.4"
build_runner_core: build_runner_core:
dependency: transitive dependency: transitive
description: description:
@ -165,10 +165,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: characters name: characters
sha256: e6a326c8af69605aec75ed6c187d06b349707a27fbff8222ca9cc2cff167975c sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.2.1" version: "1.3.0"
checked_yaml: checked_yaml:
dependency: transitive dependency: transitive
description: description:
@ -177,6 +177,14 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.0.2" version: "2.0.2"
cli_util:
dependency: transitive
description:
name: cli_util
sha256: b8db3080e59b2503ca9e7922c3df2072cf13992354d5e944074ffa836fba43b7
url: "https://pub.dev"
source: hosted
version: "0.4.0"
clock: clock:
dependency: transitive dependency: transitive
description: description:
@ -197,10 +205,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: collection name: collection
sha256: cfc915e6923fe5ce6e153b0723c753045de46de1b4d63771530504004a45fae0 sha256: "4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.17.0" version: "1.17.1"
connectivity_plus: connectivity_plus:
dependency: transitive dependency: transitive
description: description:
@ -237,10 +245,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: crypt name: crypt
sha256: c12682393cc6aae221e278692d8a433e188db2064b7de5daa253fd62ccfa096f sha256: fef2b24f8fb73b626224b207b2e57ac139d38b63dc7428257f820a2fd9e4688b
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "4.2.1" version: "4.3.0"
crypto: crypto:
dependency: transitive dependency: transitive
description: description:
@ -277,10 +285,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: device_info_plus name: device_info_plus
sha256: "7ff671ed0a6356fa8f2e1ae7d3558d3fb7b6a41e24455e4f8df75b811fb8e4ab" sha256: "2c35b6d1682b028e42d07b3aee4b98fa62996c10bc12cb651ec856a80d6a761b"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "8.0.0" version: "9.0.2"
device_info_plus_platform_interface: device_info_plus_platform_interface:
dependency: transitive dependency: transitive
description: description:
@ -293,26 +301,26 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: dio name: dio
sha256: "7d328c4d898a61efc3cd93655a0955858e29a0aa647f0f9e02d59b3bb275e2e8" sha256: "347d56c26d63519552ef9a569f2a593dda99a81fdbdff13c584b7197cfe05059"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "4.0.6" version: "5.1.2"
dynamic_color: dynamic_color:
dependency: "direct main" dependency: "direct main"
description: description:
name: dynamic_color name: dynamic_color
sha256: c4a508284b14ec4dda5adba2c28b2cdd34fbae1afead7e8c52cad87d51c5405b sha256: "74dff1435a695887ca64899b8990004f8d1232b0e84bfc4faa1fdda7c6f57cc1"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.6.2" version: "1.6.5"
easy_localization: easy_localization:
dependency: "direct main" dependency: "direct main"
description: description:
name: easy_localization name: easy_localization
sha256: "6a2e99fa0bfe5765bf4c6ca9b137d5de2c75593007178c5e4cd2ae985f870080" sha256: "30ebf25448ffe169e0bd9bc4b5da94faa8398967a2ad2ca09f438be8b6953645"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.0.1" version: "3.0.2"
easy_logger: easy_logger:
dependency: transitive dependency: transitive
description: description:
@ -381,10 +389,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: fl_chart name: fl_chart
sha256: "29da130cdef13f47e1798a66e99fd119e557c293b98be8ebaf6fed2cbc43bf29" sha256: "48a1b69be9544e2b03d9a8e843affd89e43f3194c9248776222efcb4206bb1ec"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.50.6" version: "0.62.0"
flutter: flutter:
dependency: "direct main" dependency: "direct main"
description: flutter description: flutter
@ -394,10 +402,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: flutter_bloc name: flutter_bloc
sha256: "890c51c8007f0182360e523518a0c732efb89876cb4669307af7efada5b55557" sha256: e74efb89ee6945bcbce74a5b3a5a3376b088e5f21f55c263fc38cbdc6237faae
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "8.1.1" version: "8.1.3"
flutter_hooks: flutter_hooks:
dependency: transitive dependency: transitive
description: description:
@ -410,10 +418,10 @@ packages:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: flutter_launcher_icons name: flutter_launcher_icons
sha256: "559c600f056e7c704bd843723c21e01b5fba47e8824bd02422165bcc02a5de1d" sha256: "526faf84284b86a4cb36d20a5e45147747b7563d921373d4ee0559c54fcdbcea"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.9.3" version: "0.13.1"
flutter_lints: flutter_lints:
dependency: "direct dev" dependency: "direct dev"
description: description:
@ -431,10 +439,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: flutter_markdown name: flutter_markdown
sha256: "818cf6c28377ba2c91ed283c96fd712e9c175dd2d2488eb7fc93b6afb9ad2e08" sha256: "7b25c10de1fea883f3c4f9b8389506b54053cd00807beab69fd65c8653a2711f"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.6.13+1" version: "0.6.14"
flutter_plugin_android_lifecycle: flutter_plugin_android_lifecycle:
dependency: transitive dependency: transitive
description: description:
@ -447,26 +455,26 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: flutter_secure_storage name: flutter_secure_storage
sha256: f2afec1f1762c040a349ea2a588e32f442da5d0db3494a52a929a97c9e550bc5 sha256: "98352186ee7ad3639ccc77ad7924b773ff6883076ab952437d20f18a61f0a7c5"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "7.0.1" version: "8.0.0"
flutter_secure_storage_linux: flutter_secure_storage_linux:
dependency: transitive dependency: transitive
description: description:
name: flutter_secure_storage_linux name: flutter_secure_storage_linux
sha256: "736436adaf91552433823f51ce22e098c2f0551db06b6596f58597a25b8ea797" sha256: "0912ae29a572230ad52d8a4697e5518d7f0f429052fd51df7e5a7952c7efe2a3"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.1.2" version: "1.1.3"
flutter_secure_storage_macos: flutter_secure_storage_macos:
dependency: transitive dependency: transitive
description: description:
name: flutter_secure_storage_macos name: flutter_secure_storage_macos
sha256: ff0768a6700ea1d9620e03518e2e25eac86a8bd07ca3556e9617bfa5ace4bd00 sha256: "083add01847fc1c80a07a08e1ed6927e9acd9618a35e330239d4422cd2a58c50"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.0.1" version: "3.0.0"
flutter_secure_storage_platform_interface: flutter_secure_storage_platform_interface:
dependency: transitive dependency: transitive
description: description:
@ -487,18 +495,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: flutter_secure_storage_windows name: flutter_secure_storage_windows
sha256: ca89c8059cf439985aa83c59619b3674c7ef6cc2e86943d169a7369d6a69cab5 sha256: fc2910ec9b28d60598216c29ea763b3a96c401f0ce1d13cdf69ccb0e5c93c3ee
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.1.3" version: "2.0.0"
flutter_svg: flutter_svg:
dependency: "direct main" dependency: "direct main"
description: description:
name: flutter_svg name: flutter_svg
sha256: f999d84ad2efda1c4c3956e7968b713b3a24b06f0a0e4798e844e16bbb9bb70b sha256: "6ff8c902c8056af9736de2689f63f81c42e2d642b9f4c79dbf8790ae48b63012"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.0.0+1" version: "2.0.6"
flutter_test: flutter_test:
dependency: "direct dev" dependency: "direct dev"
description: flutter description: flutter
@ -521,10 +529,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: get_it name: get_it
sha256: "290fde3a86072e4b37dbb03c07bec6126f0ecc28dad403c12ffe2e5a2d751ab7" sha256: "529de303c739fca98cd7ece5fca500d8ff89649f1bb4b4e94fb20954abcd7468"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "7.2.0" version: "7.6.0"
glob: glob:
dependency: transitive dependency: transitive
description: description:
@ -537,90 +545,90 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: gql name: gql
sha256: "0db9fcebe50d919ff7d872b70f035722771b0789cdee17c8aa27e850445592a9" sha256: "7dd48a2632103154186bf77adb850489efdabe65c05313eab784657df800794a"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.14.1-alpha+1672756470474" version: "1.0.1-alpha+1682715291314"
gql_code_builder: gql_code_builder:
dependency: transitive dependency: transitive
description: description:
name: gql_code_builder name: gql_code_builder
sha256: "654fc5f455938d721f88631ce2e0d9350058bc6e965a22df6dd5668c72cd19c0" sha256: "6e386a85f5d91daae82915337f566a43dfeb0a0df38caa372387fbc07d31b8c1"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.6.1-alpha+1667318637890" version: "0.7.2"
gql_dedupe_link: gql_dedupe_link:
dependency: transitive dependency: transitive
description: description:
name: gql_dedupe_link name: gql_dedupe_link
sha256: "89681048cf956348e865da872a40081499b8c087fc84dd4d4b9c134bd70d27b3" sha256: "2c76b1006cd7445e026d3bc46c6336f28cbcf3711326f128839cfc746f9e2ec9"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.0.3+1" version: "2.0.4-alpha+1682715291398"
gql_error_link: gql_error_link:
dependency: transitive dependency: transitive
description: description:
name: gql_error_link name: gql_error_link
sha256: e7bfdd2b6232f3e15861cd96c2ad6b7c9c94693843b3dea18295136a5fb5b534 sha256: bfdb543137da89448cc5d003fd029c2e8718931d39d4a7dedb16f9169862fbb9
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.2.3+1" version: "1.0.0"
gql_exec: gql_exec:
dependency: transitive dependency: transitive
description: description:
name: gql_exec name: gql_exec
sha256: "0d1fdb2e4154efbfc1dcf3f35ec36d19c8428ff0d560eb4c45b354f8f871dc50" sha256: "07f73f4edc00698f67c3fb5bda0d95ab7e6ea844572a670ef270154244fae6d4"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.4.3" version: "1.0.1-alpha+1682715291324"
gql_http_link: gql_http_link:
dependency: transitive dependency: transitive
description: description:
name: gql_http_link name: gql_http_link
sha256: "89ef87b32947acf4189f564c095f1148b0ab9bb9996fe518716dbad66708b834" sha256: "365c0e72da7e29e007c4a0ed7a470f6c03af1ef00acd2af3c22157c8bb47f314"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.4.5" version: "1.0.0"
gql_link: gql_link:
dependency: transitive dependency: transitive
description: description:
name: gql_link name: gql_link
sha256: f7973279126bc922d465c4f4da6ed93d187085e597b3480f5e14e74d28fe14bd sha256: ee781e59527240adf69e044389a7d0a19b890a6e76b6dfff969ef56ba8d4fea7
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.5.1" version: "1.0.1-alpha+1682715291332"
gql_transform_link: gql_transform_link:
dependency: transitive dependency: transitive
description: description:
name: gql_transform_link name: gql_transform_link
sha256: b1735a9a92d25a92960002a8b40dfaede95ec1e5ed848906125d69efd878661f sha256: "0645fdd874ca1be695fd327271fdfb24c0cd6fa40774a64b946062f321a59709"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.2.2+1" version: "1.0.0"
graphql: graphql:
dependency: "direct main" dependency: "direct main"
description: description:
name: graphql name: graphql
sha256: b061201579040e9548cec2bae17bbdea0ab30666cb4e7ba48b9675f14d982199 sha256: f2529e2f606f445bbb38b92c6eb18dd4c11196ca638421fe5aaab62140ac3106
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "5.1.3" version: "5.2.0-beta.3"
graphql_codegen: graphql_codegen:
dependency: "direct main" dependency: "direct main"
description: description:
name: graphql_codegen name: graphql_codegen
sha256: d8b5b70f3d0c6db6eec6e610185604a128fb275943543036cbce3f606d49cd77 sha256: "773dce58e9bce208a8694badc1af9fe39870bb2cb18078474ba5c2b6a535f87c"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.12.0-beta.7" version: "0.13.0"
graphql_flutter: graphql_flutter:
dependency: "direct main" dependency: "direct main"
description: description:
name: graphql_flutter name: graphql_flutter
sha256: "06059ac9e8417c71582f05e28a59b1416d43959d34a6a0d9565341e3a362e117" sha256: "9de0365b58c8733130a706e9fddb33f6791d9bbbee45e1cd1bc2ca0920941a19"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "5.1.2" version: "5.2.0-beta.3"
graphs: graphs:
dependency: transitive dependency: transitive
description: description:
@ -681,18 +689,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: image name: image
sha256: "8e9d133755c3e84c73288363e6343157c383a0c6c56fc51afcc5d4d7180306d6" sha256: a72242c9a0ffb65d03de1b7113bc4e189686fc07c7147b8b41811d0dd0e0d9bf
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.3.0" version: "4.0.17"
intl: intl:
dependency: "direct main" dependency: "direct main"
description: description:
name: intl name: intl
sha256: "910f85bce16fb5c6f614e117efa303e85a1731bb0081edf3604a2ae6e9a3cc91" sha256: a3715e3bc90294e971cb7dc063fbf3cd9ee0ebf8604ffeafabd9e6f16abbdbe6
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.17.0" version: "0.18.0"
io: io:
dependency: transitive dependency: transitive
description: description:
@ -713,26 +721,26 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: js name: js
sha256: "5528c2f391ededb7775ec1daa69e65a2d61276f7552de2b5f7b8d34ee9fd4ab7" sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.6.5" version: "0.6.7"
json_annotation: json_annotation:
dependency: "direct main" dependency: "direct main"
description: description:
name: json_annotation name: json_annotation
sha256: c33da08e136c3df0190bd5bbe51ae1df4a7d96e7954d1d7249fea2968a72d317 sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "4.8.0" version: "4.8.1"
json_serializable: json_serializable:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: json_serializable name: json_serializable
sha256: dadc08bd61f72559f938dd08ec20dbfec6c709bba83515085ea943d2078d187a sha256: "61a60716544392a82726dd0fa1dd6f5f1fd32aec66422b6e229e7b90d52325c4"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.6.1" version: "6.7.0"
lints: lints:
dependency: transitive dependency: transitive
description: description:
@ -745,10 +753,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: local_auth name: local_auth
sha256: "8cea55dca20d1e0efa5480df2d47ae30851e7a24cb8e7d225be7e67ae8485aa4" sha256: "0cf238be2bfa51a6c9e7e9cfc11c05ea39f2a3a4d3e5bb255d0ebc917da24401"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.1.3" version: "2.1.6"
local_auth_android: local_auth_android:
dependency: transitive dependency: transitive
description: description:
@ -793,10 +801,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: markdown name: markdown
sha256: c2b81e184067b41d0264d514f7cdaa2c02d38511e39d6521a1ccc238f6d7b3f2 sha256: "8e332924094383133cee218b676871f42db2514f1f6ac617b6cf6152a7faab8e"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.0.1" version: "7.1.0"
mask_text_input_formatter: mask_text_input_formatter:
dependency: transitive dependency: transitive
description: description:
@ -809,10 +817,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: matcher name: matcher
sha256: "16db949ceee371e9b99d22f88fa3a73c4e59fd0afed0bd25fc336eb76c198b72" sha256: "6501fbd55da300384b768785b83e5ce66991266cec21af89ab9ae7f5ce1c4cbb"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.12.13" version: "0.12.15"
material_color_utilities: material_color_utilities:
dependency: "direct main" dependency: "direct main"
description: description:
@ -825,10 +833,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: meta name: meta
sha256: "6c268b42ed578a53088d834796959e4a1814b5e9e164f147f580a386e5decf42" sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.8.0" version: "1.9.1"
mime: mime:
dependency: transitive dependency: transitive
description: description:
@ -881,10 +889,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: normalize name: normalize
sha256: baf8caf2d8b745af5737cca6c24f7fe3cf3158897fdbcde9a909b9c8d3e2e5af sha256: "8a60e37de5b608eeaf9b839273370c71ebba445e9f73b08eee7725e0d92dbc43"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.7.2" version: "0.8.2+1"
package_config: package_config:
dependency: transitive dependency: transitive
description: description:
@ -905,10 +913,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: path name: path
sha256: db9d4f58c908a4ba5953fcee2ae317c94889433e5024c27ce74a37f94267945b sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.8.2" version: "1.8.3"
path_parsing: path_parsing:
dependency: transitive dependency: transitive
description: description:
@ -961,18 +969,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: path_provider_windows name: path_provider_windows
sha256: bcabbe399d4042b8ee687e17548d5d3f527255253b4a639f5f8d2094a9c2b45c sha256: d3f80b32e83ec208ac95253e0cd4d298e104fbc63cb29c5c69edaed43b0c69d6
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.1.3" version: "2.1.6"
petitparser: petitparser:
dependency: transitive dependency: transitive
description: description:
name: petitparser name: petitparser
sha256: "49392a45ced973e8d94a85fdb21293fbb40ba805fc49f2965101ae748a3683b4" sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "5.1.0" version: "5.4.0"
platform: platform:
dependency: transitive dependency: transitive
description: description:
@ -993,10 +1001,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: pointycastle name: pointycastle
sha256: db7306cf0249f838d1a24af52b5a5887c5bf7f31d8bb4e827d071dc0939ad346 sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.6.2" version: "3.7.3"
pool: pool:
dependency: transitive dependency: transitive
description: description:
@ -1009,10 +1017,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: pretty_dio_logger name: pretty_dio_logger
sha256: "948f7eeb36e7aa0760b51c1a8e3331d4b21e36fabd39efca81f585ed93893544" sha256: "00b80053063935cf9a6190da344c5373b9d0e92da4c944c878ff2fbef0ef6dc2"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.2.0-beta-1" version: "1.3.1"
process: process:
dependency: transitive dependency: transitive
description: description:
@ -1033,10 +1041,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: pub_semver name: pub_semver
sha256: "307de764d305289ff24ad257ad5c5793ce56d04947599ad68b3baa124105fc17" sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.1.3" version: "2.1.4"
pubspec_parse: pubspec_parse:
dependency: transitive dependency: transitive
description: description:
@ -1158,10 +1166,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: source_gen name: source_gen
sha256: c2bea18c95cfa0276a366270afaa2850b09b4a76db95d546f3d003dcc7011298 sha256: "373f96cf5a8744bc9816c1ff41cf5391bbdbe3d7a96fe98c622b6738a8a7bd33"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.2.7" version: "1.3.2"
source_helper: source_helper:
dependency: transitive dependency: transitive
description: description:
@ -1238,34 +1246,34 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: test name: test
sha256: a5fcd2d25eeadbb6589e80198a47d6a464ba3e2049da473943b8af9797900c2d sha256: "3dac9aecf2c3991d09b9cdde4f98ded7b30804a88a0d7e4e7e1678e78d6b97f4"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.22.0" version: "1.24.1"
test_api: test_api:
dependency: transitive dependency: transitive
description: description:
name: test_api name: test_api
sha256: ad540f65f92caa91bf21dfc8ffb8c589d6e4dc0c2267818b4cc2792857706206 sha256: eb6ac1540b26de412b3403a163d919ba86f6a973fe6cc50ae3541b80092fdcfb
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.4.16" version: "0.5.1"
test_core: test_core:
dependency: transitive dependency: transitive
description: description:
name: test_core name: test_core
sha256: "0ef9755ec6d746951ba0aabe62f874b707690b5ede0fecc818b138fcc9b14888" sha256: "5138dbffb77b2289ecb12b81c11ba46036590b72a64a7a90d6ffb880f1a29e93"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.4.20" version: "0.5.1"
timezone: timezone:
dependency: "direct main" dependency: "direct main"
description: description:
name: timezone name: timezone
sha256: "24c8fcdd49a805d95777a39064862133ff816ebfffe0ceff110fb5960e557964" sha256: "1cfd8ddc2d1cfd836bc93e67b9be88c3adaeca6f40a00ca999104c30693cdca0"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.9.1" version: "0.9.2"
timing: timing:
dependency: transitive dependency: transitive
description: description:
@ -1286,10 +1294,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: url_launcher name: url_launcher
sha256: "698fa0b4392effdc73e9e184403b627362eb5fbf904483ac9defbb1c2191d809" sha256: eb1e00ab44303d50dd487aab67ebc575456c146c6af44422f9c13889984c00f3
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.1.8" version: "6.1.11"
url_launcher_android: url_launcher_android:
dependency: transitive dependency: transitive
description: description:
@ -1358,26 +1366,26 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: vector_graphics name: vector_graphics
sha256: "09562ef5f47aa84f6567495adb6b9cb2a3192b82c352623b8bd00b300d62603b" sha256: b96f10cbdfcbd03a65758633a43e7d04574438f059b1043104b5d61b23d38a4f
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.0.1" version: "1.1.6"
vector_graphics_codec: vector_graphics_codec:
dependency: transitive dependency: transitive
description: description:
name: vector_graphics_codec name: vector_graphics_codec
sha256: "886e57742644ebed024dc3ade29712e37eea1b03d294fb314c0a3386243fe5a6" sha256: "57a8e6e24662a3bdfe3b3d61257db91768700c0b8f844e235877b56480f31c69"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.0.1" version: "1.1.6"
vector_graphics_compiler: vector_graphics_compiler:
dependency: transitive dependency: transitive
description: description:
name: vector_graphics_compiler name: vector_graphics_compiler
sha256: "5d9010c4a292766c55395b2288532579a85673f8148460d1e233d98ffe10d24e" sha256: "7430f5d834d0db4560d7b19863362cd892f1e52b43838553a3c5cdfc9ab28e5b"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.0.1" version: "1.1.6"
vector_math: vector_math:
dependency: transitive dependency: transitive
description: description:
@ -1394,46 +1402,6 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "9.4.0" version: "9.4.0"
wakelock:
dependency: "direct main"
description:
name: wakelock
sha256: "769ecf42eb2d07128407b50cb93d7c10bd2ee48f0276ef0119db1d25cc2f87db"
url: "https://pub.dev"
source: hosted
version: "0.6.2"
wakelock_macos:
dependency: transitive
description:
name: wakelock_macos
sha256: "047c6be2f88cb6b76d02553bca5a3a3b95323b15d30867eca53a19a0a319d4cd"
url: "https://pub.dev"
source: hosted
version: "0.4.0"
wakelock_platform_interface:
dependency: transitive
description:
name: wakelock_platform_interface
sha256: "1f4aeb81fb592b863da83d2d0f7b8196067451e4df91046c26b54a403f9de621"
url: "https://pub.dev"
source: hosted
version: "0.3.0"
wakelock_web:
dependency: transitive
description:
name: wakelock_web
sha256: "1b256b811ee3f0834888efddfe03da8d18d0819317f20f6193e2922b41a501b5"
url: "https://pub.dev"
source: hosted
version: "0.4.0"
wakelock_windows:
dependency: transitive
description:
name: wakelock_windows
sha256: "857f77b3fe6ae82dd045455baa626bc4b93cb9bb6c86bf3f27c182167c3a5567"
url: "https://pub.dev"
source: hosted
version: "0.2.1"
watcher: watcher:
dependency: transitive dependency: transitive
description: description:
@ -1446,10 +1414,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: web_socket_channel name: web_socket_channel
sha256: "3a969ddcc204a3e34e863d204b29c0752716f78b6f9cc8235083208d268a4ccd" sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.2.0" version: "2.4.0"
webkit_inspection_protocol: webkit_inspection_protocol:
dependency: transitive dependency: transitive
description: description:
@ -1462,10 +1430,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: win32 name: win32
sha256: c9ebe7ee4ab0c2194e65d3a07d8c54c5d00bb001b76081c4a04cdb8448b59e46 sha256: "5a751eddf9db89b3e5f9d50c20ab8612296e4e8db69009788d6c8b060a84191c"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.1.3" version: "4.1.4"
win32_registry:
dependency: transitive
description:
name: win32_registry
sha256: "1c52f994bdccb77103a6231ad4ea331a244dbcef5d1f37d8462f713143b0bfae"
url: "https://pub.dev"
source: hosted
version: "1.1.0"
xdg_directories: xdg_directories:
dependency: transitive dependency: transitive
description: description:
@ -1478,10 +1454,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: xml name: xml
sha256: "979ee37d622dec6365e2efa4d906c37470995871fe9ae080d967e192d88286b5" sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.2.2" version: "6.3.0"
yaml: yaml:
dependency: transitive dependency: transitive
description: description:
@ -1491,5 +1467,5 @@ packages:
source: hosted source: hosted
version: "3.1.1" version: "3.1.1"
sdks: sdks:
dart: ">=2.19.0 <3.0.0" dart: ">=3.0.2 <4.0.0"
flutter: ">=3.7.0" flutter: ">=3.10.2"

View File

@ -4,60 +4,61 @@ publish_to: 'none'
version: 0.8.0+17 version: 0.8.0+17
environment: environment:
sdk: '>=2.19.0 <3.0.0' sdk: '>=3.0.2 <4.0.0'
flutter: ">=3.7.0" flutter: ">=3.10.2"
dependencies: dependencies:
animations: ^2.0.7 animations: ^2.0.7
auto_route: ^6.0.1 auto_route: ^7.3.2
auto_size_text: ^3.0.0 auto_size_text: ^3.0.0
basic_utils: ^5.4.2 basic_utils: ^5.5.4
crypt: ^4.2.1 crypt: ^4.3.0
cubit_form: ^2.0.1 cubit_form: ^2.0.1
device_info_plus: ^8.0.0 device_info_plus: ^9.0.2
dio: ^4.0.4 dio: ^5.1.2
dynamic_color: ^1.6.2 dynamic_color: ^1.6.5
easy_localization: ^3.0.1 easy_localization: ^3.0.2
either_option: ^2.0.1-dev.1 either_option: ^2.0.1-dev.1
equatable: ^2.0.5 equatable: ^2.0.5
fl_chart: ^0.50.1 fl_chart: ^0.62.0
flutter: flutter:
sdk: flutter sdk: flutter
flutter_bloc: ^8.1.1 flutter_bloc: ^8.1.3
flutter_markdown: ^0.6.13+1 flutter_markdown: ^0.6.14
flutter_secure_storage: ^7.0.1 flutter_secure_storage: ^8.0.0
flutter_svg: ^2.0.0+1 flutter_svg: ^2.0.6
get_it: ^7.2.0 get_it: ^7.6.0
gql: ^0.14.0 gql: ^1.0.0
graphql: ^5.1.2 graphql: ^5.1.2
graphql_codegen: ^0.12.0-beta.7 graphql_codegen: ^0.13.0
graphql_flutter: ^5.1.2 graphql_flutter: ^5.1.2
hive: ^2.2.3 hive: ^2.2.3
hive_flutter: ^1.1.0 hive_flutter: ^1.1.0
http: ^0.13.5 http: ^0.13.5
intl: ^0.17.0 intl: ^0.18.0
ionicons: ^0.2.2 ionicons: ^0.2.2
json_annotation: ^4.8.0 json_annotation: ^4.8.1
local_auth: ^2.1.3 local_auth: ^2.1.6
material_color_utilities: ^0.2.0 material_color_utilities: ^0.2.0
modal_bottom_sheet: ^3.0.0-pre modal_bottom_sheet: ^3.0.0-pre
nanoid: ^1.0.0 nanoid: ^1.0.0
package_info: ^2.0.2 package_info: ^2.0.2
pretty_dio_logger: ^1.2.0-beta-1 pretty_dio_logger: ^1.3.1
provider: ^6.0.5 provider: ^6.0.5
pub_semver: ^2.1.3 pub_semver: ^2.1.4
timezone: ^0.9.1 timezone: ^0.9.2
url_launcher: ^6.1.8 url_launcher: ^6.1.11
wakelock: ^0.6.2 # TODO: Developer is not available, update later.
# wakelock: ^0.6.2
dev_dependencies: dev_dependencies:
auto_route_generator: ^6.0.0 auto_route_generator: ^7.1.1
flutter_test: flutter_test:
sdk: flutter sdk: flutter
build_runner: ^2.3.3 build_runner: ^2.4.4
flutter_launcher_icons: ^0.9.2 flutter_launcher_icons: ^0.13.1
hive_generator: ^2.0.0 hive_generator: ^2.0.0
json_serializable: ^6.6.1 json_serializable: ^6.7.0
flutter_lints: ^2.0.1 flutter_lints: ^2.0.1
flutter_icons: flutter_icons: