Skip to content

Commit

Permalink
cd: post amplify push | run number 27
Browse files Browse the repository at this point in the history
  • Loading branch information
zxcvbnmmohd authored and github-actions[bot] committed May 29, 2024
1 parent 477decb commit 24c21ba
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 93 deletions.
16 changes: 8 additions & 8 deletions amplify/team-provider-info.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,38 +25,38 @@
"EMAILSUBJECT": "Confirm your account",
"EMAILMESSAGE": "Tap the link to confirm your account.",
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
"s3Key": "amplify-builds/RukuAuthCustomMessage-3630346a4d4455686d6e-build.zip"
"s3Key": "amplify-builds/RukuAuthCustomMessage-5248636a502f5345724e-build.zip"
},
"RukuAuthPostAuthentication": {
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
"s3Key": "amplify-builds/RukuAuthPostAuthentication-367a2b79377073673973-build.zip"
"s3Key": "amplify-builds/RukuAuthPostAuthentication-54702b72484d496b354f-build.zip"
},
"RukuAuthPostConfirmation": {
"GROUP": "Jamaah",
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
"s3Key": "amplify-builds/RukuAuthPostConfirmation-54656b466a6171323351-build.zip"
"s3Key": "amplify-builds/RukuAuthPostConfirmation-704739703671374f5235-build.zip"
},
"RukuAuthPreAuthentication": {
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
"s3Key": "amplify-builds/RukuAuthPreAuthentication-2b4a4d2f704555713053-build.zip"
"s3Key": "amplify-builds/RukuAuthPreAuthentication-4a633677554b796b4762-build.zip"
},
"RukuAuthPreSignup": {
"DOMAINALLOWLIST": " ",
"DOMAINDENYLIST": " ",
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
"s3Key": "amplify-builds/RukuAuthPreSignup-5574357a7473474b7553-build.zip"
"s3Key": "amplify-builds/RukuAuthPreSignup-6479576f62384d634536-build.zip"
},
"RukuAPILambdaAuthorizer": {
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
"s3Key": "amplify-builds/RukuAPILambdaAuthorizer-6e51722f516e6e6e7547-build.zip"
"s3Key": "amplify-builds/RukuAPILambdaAuthorizer-536e73654868386e5652-build.zip"
},
"RukuStorageTrigger": {
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
"s3Key": "amplify-builds/RukuStorageTrigger-2f3573636c2b55656851-build.zip"
"s3Key": "amplify-builds/RukuStorageTrigger-70783845736d6e6e4b71-build.zip"
},
"AdminQueriesa8865030": {
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
"s3Key": "amplify-builds/AdminQueriesa8865030-5544367467677941782b-build.zip"
"s3Key": "amplify-builds/AdminQueriesa8865030-726962794a4c79574e54-build.zip"
},
"rukuCommonLayerTs": {
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
Expand Down
2 changes: 1 addition & 1 deletion lib/models/ModelProvider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export 'UserType.dart';

class ModelProvider implements amplify_core.ModelProviderInterface {
@override
String version = "63016cf7bd6dd704a0cbdf7f0abc05d4";
String version = "5577b1a5b4913acbe8e10430eb297dc0";
@override
List<amplify_core.ModelSchema> modelSchemas = [Announcement.schema, Bookmark.schema, Comment.schema, Donation.schema, FundraisingCampaign.schema, Like.schema, Mosque.schema, MosqueFollower.schema, Organization.schema, OrganizationMember.schema, PrayerTime.schema, User.schema];
@override
Expand Down
28 changes: 4 additions & 24 deletions lib/models/Mosque.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ class Mosque extends amplify_core.Model {
final String? _email;
final String? _website;
final SocialMedia? _socialMedia;
final String? _liveVideoUrl;
final bool? _isVerified;
final User? _creator;
final Organization? _organization;
Expand Down Expand Up @@ -165,10 +164,6 @@ class Mosque extends amplify_core.Model {
return _socialMedia;
}

String? get liveVideoUrl {
return _liveVideoUrl;
}

bool get isVerified {
try {
return _isVerified!;
Expand Down Expand Up @@ -257,9 +252,9 @@ class Mosque extends amplify_core.Model {
return _owners;
}

const Mosque._internal({required this.id, required name, required description, required images, required address, required latitude, required longitude, hours, phone, email, website, socialMedia, liveVideoUrl, required isVerified, required creator, organization, followers, announcements, fundraisingCampaigns, prayerTimes, bookmarks, likes, comments, required createdAt, required updatedAt, owners}): _name = name, _description = description, _images = images, _address = address, _latitude = latitude, _longitude = longitude, _hours = hours, _phone = phone, _email = email, _website = website, _socialMedia = socialMedia, _liveVideoUrl = liveVideoUrl, _isVerified = isVerified, _creator = creator, _organization = organization, _followers = followers, _announcements = announcements, _fundraisingCampaigns = fundraisingCampaigns, _prayerTimes = prayerTimes, _bookmarks = bookmarks, _likes = likes, _comments = comments, _createdAt = createdAt, _updatedAt = updatedAt, _owners = owners;
const Mosque._internal({required this.id, required name, required description, required images, required address, required latitude, required longitude, hours, phone, email, website, socialMedia, required isVerified, required creator, organization, followers, announcements, fundraisingCampaigns, prayerTimes, bookmarks, likes, comments, required createdAt, required updatedAt, owners}): _name = name, _description = description, _images = images, _address = address, _latitude = latitude, _longitude = longitude, _hours = hours, _phone = phone, _email = email, _website = website, _socialMedia = socialMedia, _isVerified = isVerified, _creator = creator, _organization = organization, _followers = followers, _announcements = announcements, _fundraisingCampaigns = fundraisingCampaigns, _prayerTimes = prayerTimes, _bookmarks = bookmarks, _likes = likes, _comments = comments, _createdAt = createdAt, _updatedAt = updatedAt, _owners = owners;

factory Mosque({String? id, required String name, required String description, required List<String> images, required String address, required double latitude, required double longitude, Hours? hours, String? phone, String? email, String? website, SocialMedia? socialMedia, String? liveVideoUrl, required bool isVerified, required User creator, Organization? organization, List<MosqueFollower>? followers, List<Announcement>? announcements, List<FundraisingCampaign>? fundraisingCampaigns, List<PrayerTime>? prayerTimes, List<Bookmark>? bookmarks, List<Like>? likes, List<Comment>? comments, required amplify_core.TemporalDateTime createdAt, required amplify_core.TemporalDateTime updatedAt, List<String>? owners}) {
factory Mosque({String? id, required String name, required String description, required List<String> images, required String address, required double latitude, required double longitude, Hours? hours, String? phone, String? email, String? website, SocialMedia? socialMedia, required bool isVerified, required User creator, Organization? organization, List<MosqueFollower>? followers, List<Announcement>? announcements, List<FundraisingCampaign>? fundraisingCampaigns, List<PrayerTime>? prayerTimes, List<Bookmark>? bookmarks, List<Like>? likes, List<Comment>? comments, required amplify_core.TemporalDateTime createdAt, required amplify_core.TemporalDateTime updatedAt, List<String>? owners}) {
return Mosque._internal(
id: id == null ? amplify_core.UUID.getUUID() : id,
name: name,
Expand All @@ -273,7 +268,6 @@ class Mosque extends amplify_core.Model {
email: email,
website: website,
socialMedia: socialMedia,
liveVideoUrl: liveVideoUrl,
isVerified: isVerified,
creator: creator,
organization: organization,
Expand Down Expand Up @@ -309,7 +303,6 @@ class Mosque extends amplify_core.Model {
_email == other._email &&
_website == other._website &&
_socialMedia == other._socialMedia &&
_liveVideoUrl == other._liveVideoUrl &&
_isVerified == other._isVerified &&
_creator == other._creator &&
_organization == other._organization &&
Expand Down Expand Up @@ -345,7 +338,6 @@ class Mosque extends amplify_core.Model {
buffer.write("email=" + "$_email" + ", ");
buffer.write("website=" + "$_website" + ", ");
buffer.write("socialMedia=" + (_socialMedia != null ? _socialMedia!.toString() : "null") + ", ");
buffer.write("liveVideoUrl=" + "$_liveVideoUrl" + ", ");
buffer.write("isVerified=" + (_isVerified != null ? _isVerified!.toString() : "null") + ", ");
buffer.write("creator=" + (_creator != null ? _creator!.toString() : "null") + ", ");
buffer.write("organization=" + (_organization != null ? _organization!.toString() : "null") + ", ");
Expand All @@ -357,7 +349,7 @@ class Mosque extends amplify_core.Model {
return buffer.toString();
}

Mosque copyWith({String? name, String? description, List<String>? images, String? address, double? latitude, double? longitude, Hours? hours, String? phone, String? email, String? website, SocialMedia? socialMedia, String? liveVideoUrl, bool? isVerified, User? creator, Organization? organization, List<MosqueFollower>? followers, List<Announcement>? announcements, List<FundraisingCampaign>? fundraisingCampaigns, List<PrayerTime>? prayerTimes, List<Bookmark>? bookmarks, List<Like>? likes, List<Comment>? comments, amplify_core.TemporalDateTime? createdAt, amplify_core.TemporalDateTime? updatedAt, List<String>? owners}) {
Mosque copyWith({String? name, String? description, List<String>? images, String? address, double? latitude, double? longitude, Hours? hours, String? phone, String? email, String? website, SocialMedia? socialMedia, bool? isVerified, User? creator, Organization? organization, List<MosqueFollower>? followers, List<Announcement>? announcements, List<FundraisingCampaign>? fundraisingCampaigns, List<PrayerTime>? prayerTimes, List<Bookmark>? bookmarks, List<Like>? likes, List<Comment>? comments, amplify_core.TemporalDateTime? createdAt, amplify_core.TemporalDateTime? updatedAt, List<String>? owners}) {
return Mosque._internal(
id: id,
name: name ?? this.name,
Expand All @@ -371,7 +363,6 @@ class Mosque extends amplify_core.Model {
email: email ?? this.email,
website: website ?? this.website,
socialMedia: socialMedia ?? this.socialMedia,
liveVideoUrl: liveVideoUrl ?? this.liveVideoUrl,
isVerified: isVerified ?? this.isVerified,
creator: creator ?? this.creator,
organization: organization ?? this.organization,
Expand Down Expand Up @@ -399,7 +390,6 @@ class Mosque extends amplify_core.Model {
ModelFieldValue<String?>? email,
ModelFieldValue<String?>? website,
ModelFieldValue<SocialMedia?>? socialMedia,
ModelFieldValue<String?>? liveVideoUrl,
ModelFieldValue<bool>? isVerified,
ModelFieldValue<User>? creator,
ModelFieldValue<Organization?>? organization,
Expand Down Expand Up @@ -427,7 +417,6 @@ class Mosque extends amplify_core.Model {
email: email == null ? this.email : email.value,
website: website == null ? this.website : website.value,
socialMedia: socialMedia == null ? this.socialMedia : socialMedia.value,
liveVideoUrl: liveVideoUrl == null ? this.liveVideoUrl : liveVideoUrl.value,
isVerified: isVerified == null ? this.isVerified : isVerified.value,
creator: creator == null ? this.creator : creator.value,
organization: organization == null ? this.organization : organization.value,
Expand Down Expand Up @@ -461,7 +450,6 @@ class Mosque extends amplify_core.Model {
_socialMedia = json['socialMedia'] != null
? SocialMedia.fromJson(new Map<String, dynamic>.from(json['socialMedia']))
: null,
_liveVideoUrl = json['liveVideoUrl'],
_isVerified = json['isVerified'],
_creator = json['creator'] != null
? json['creator']['serializedData'] != null
Expand Down Expand Up @@ -569,7 +557,7 @@ class Mosque extends amplify_core.Model {
_owners = json['owners']?.cast<String>();

Map<String, dynamic> toJson() => {
'id': id, 'name': _name, 'description': _description, 'images': _images, 'address': _address, 'latitude': _latitude, 'longitude': _longitude, 'hours': _hours?.toJson(), 'phone': _phone, 'email': _email, 'website': _website, 'socialMedia': _socialMedia?.toJson(), 'liveVideoUrl': _liveVideoUrl, 'isVerified': _isVerified, 'creator': _creator?.toJson(), 'organization': _organization?.toJson(), 'followers': _followers?.map((MosqueFollower? e) => e?.toJson()).toList(), 'announcements': _announcements?.map((Announcement? e) => e?.toJson()).toList(), 'fundraisingCampaigns': _fundraisingCampaigns?.map((FundraisingCampaign? e) => e?.toJson()).toList(), 'prayerTimes': _prayerTimes?.map((PrayerTime? e) => e?.toJson()).toList(), 'bookmarks': _bookmarks?.map((Bookmark? e) => e?.toJson()).toList(), 'likes': _likes?.map((Like? e) => e?.toJson()).toList(), 'comments': _comments?.map((Comment? e) => e?.toJson()).toList(), 'createdAt': _createdAt?.format(), 'updatedAt': _updatedAt?.format(), 'owners': _owners
'id': id, 'name': _name, 'description': _description, 'images': _images, 'address': _address, 'latitude': _latitude, 'longitude': _longitude, 'hours': _hours?.toJson(), 'phone': _phone, 'email': _email, 'website': _website, 'socialMedia': _socialMedia?.toJson(), 'isVerified': _isVerified, 'creator': _creator?.toJson(), 'organization': _organization?.toJson(), 'followers': _followers?.map((MosqueFollower? e) => e?.toJson()).toList(), 'announcements': _announcements?.map((Announcement? e) => e?.toJson()).toList(), 'fundraisingCampaigns': _fundraisingCampaigns?.map((FundraisingCampaign? e) => e?.toJson()).toList(), 'prayerTimes': _prayerTimes?.map((PrayerTime? e) => e?.toJson()).toList(), 'bookmarks': _bookmarks?.map((Bookmark? e) => e?.toJson()).toList(), 'likes': _likes?.map((Like? e) => e?.toJson()).toList(), 'comments': _comments?.map((Comment? e) => e?.toJson()).toList(), 'createdAt': _createdAt?.format(), 'updatedAt': _updatedAt?.format(), 'owners': _owners
};

Map<String, Object?> toMap() => {
Expand All @@ -585,7 +573,6 @@ class Mosque extends amplify_core.Model {
'email': _email,
'website': _website,
'socialMedia': _socialMedia,
'liveVideoUrl': _liveVideoUrl,
'isVerified': _isVerified,
'creator': _creator,
'organization': _organization,
Expand Down Expand Up @@ -614,7 +601,6 @@ class Mosque extends amplify_core.Model {
static final EMAIL = amplify_core.QueryField(fieldName: "email");
static final WEBSITE = amplify_core.QueryField(fieldName: "website");
static final SOCIALMEDIA = amplify_core.QueryField(fieldName: "socialMedia");
static final LIVEVIDEOURL = amplify_core.QueryField(fieldName: "liveVideoUrl");
static final ISVERIFIED = amplify_core.QueryField(fieldName: "isVerified");
static final CREATOR = amplify_core.QueryField(
fieldName: "creator",
Expand Down Expand Up @@ -748,12 +734,6 @@ class Mosque extends amplify_core.Model {
ofType: amplify_core.ModelFieldType(amplify_core.ModelFieldTypeEnum.embedded, ofCustomTypeName: 'SocialMedia')
));

modelSchemaDefinition.addField(amplify_core.ModelFieldDefinition.field(
key: Mosque.LIVEVIDEOURL,
isRequired: false,
ofType: amplify_core.ModelFieldType(amplify_core.ModelFieldTypeEnum.string)
));

modelSchemaDefinition.addField(amplify_core.ModelFieldDefinition.field(
key: Mosque.ISVERIFIED,
isRequired: true,
Expand Down
15 changes: 0 additions & 15 deletions src/graphql/mutations.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ mutation CreateFundraisingCampaign(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -296,7 +295,6 @@ mutation UpdateFundraisingCampaign(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -491,7 +489,6 @@ mutation DeleteFundraisingCampaign(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -785,7 +782,6 @@ mutation CreatePrayerTime(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -1063,7 +1059,6 @@ mutation UpdatePrayerTime(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -1341,7 +1336,6 @@ mutation DeletePrayerTime(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -1472,7 +1466,6 @@ mutation CreateMosque(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -1754,7 +1747,6 @@ mutation UpdateMosque(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -2036,7 +2028,6 @@ mutation DeleteMosque(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -2369,7 +2360,6 @@ mutation CreateOrganization(
phone
email
website
liveVideoUrl
isVerified
creatorID
organizationID
Expand Down Expand Up @@ -2494,7 +2484,6 @@ mutation UpdateOrganization(
phone
email
website
liveVideoUrl
isVerified
creatorID
organizationID
Expand Down Expand Up @@ -2619,7 +2608,6 @@ mutation DeleteOrganization(
phone
email
website
liveVideoUrl
isVerified
creatorID
organizationID
Expand Down Expand Up @@ -2669,7 +2657,6 @@ mutation CreateMosqueFollower(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -2840,7 +2827,6 @@ mutation UpdateMosqueFollower(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down Expand Up @@ -3011,7 +2997,6 @@ mutation DeleteMosqueFollower(
youtube
__typename
}
liveVideoUrl
isVerified
creatorID
creator {
Expand Down
Loading

0 comments on commit 24c21ba

Please sign in to comment.