{"version":3,"file":"updateMyProfile.566cc496.js","sources":["../../../../../../src/grpc/profile/updateMyProfile.ts"],"sourcesContent":["import * as grpcWeb from \"@improbable-eng/grpc-web\";\n\nimport { type ProfileUpdateReply, ProfileUpdateRequest } from \"@aymeric_henry_sr/svelte-proto/profile_pb\";\nimport { Profile, type ProfileUpdate } from \"@aymeric_henry_sr/svelte-proto/profile_pb_service\";\n\nimport { GRPC_HOST } from '../../constants/env.constants';\nimport { unaryTransport } from \"../transport\";\nimport { grpcError } from \"$lib/utils/grpcError\";\n\nconst { grpc } = grpcWeb;\n\nexport function updateMyProfile(firstname: string, lastname: string, username: string, phone: string) {\n return new Promise<{ status: grpc.Code, message: ProfileUpdateReply }>((resolve, reject) => {\n const req = new ProfileUpdateRequest()\n req.setFirstname(firstname)\n req.setLastname(lastname)\n req.setUsername(username)\n req.setPhone(phone)\n\n grpc.unary(Profile.Update, {\n request: req,\n host: GRPC_HOST,\n transport: unaryTransport,\n onEnd: res => {\n const { status, message } = res;\n if (status === grpc.Code.OK && message !== null) {\n resolve({\n status,\n message,\n })\n }\n\n reject(grpcError(\"Update my profile\", arguments, res))\n }\n })\n })\n}\n"],"names":["grpc","grpcWeb","updateMyProfile","firstname","lastname","username","phone","resolve","reject","req","ProfileUpdateRequest","Profile","GRPC_HOST","unaryTransport","res","status","message","grpcError"],"mappings":"8hBASA,KAAM,CAAE,KAAAA,CAAS,EAAAC,EAEV,SAASC,EAAgBC,EAAmBC,EAAkBC,EAAkBC,EAAe,CACpG,OAAO,IAAI,QAA4D,CAACC,EAASC,IAAW,CACpF,MAAAC,EAAM,IAAIC,EAAAA,qBAChBD,EAAI,aAAaN,CAAS,EAC1BM,EAAI,YAAYL,CAAQ,EACxBK,EAAI,YAAYJ,CAAQ,EACxBI,EAAI,SAASH,CAAK,EAEbN,EAAA,MAA+DW,EAAQ,OAAQ,CAClF,QAASF,EACT,KAAMG,EACN,UAAWC,EACX,MAAcC,GAAA,CACN,KAAA,CAAE,OAAAC,EAAQ,QAAAC,CAAY,EAAAF,EACxBC,IAAWf,EAAK,KAAK,IAAMgB,IAAY,MACjCT,EAAA,CACN,OAAAQ,EACA,QAAAC,CAAA,CACD,EAGHR,EAAOS,EAAU,oBAAqB,UAAWH,CAAG,CAAC,CACvD,CAAA,CACD,CAAA,CACF,CACH"}