@@ -24,7 +24,7 @@ class WebDataRepository extends NetworkDataRepository {
2424 }) async * {
2525 final Response result = await post (
2626 Uri .parse (
27- '${config .firebaseCloudFunctionsBaseURL }/v2 /getPublishModelRequest' ),
27+ '${config .firebaseCloudFunctionsBaseURL }/api /getPublishModelRequest' ),
2828 headers: < String , String > {'Content-Type' : 'application/json' },
2929 body: jsonEncode ({
3030 'projectID' : projectID,
@@ -56,7 +56,7 @@ class WebDataRepository extends NetworkDataRepository {
5656 }) async {
5757 final Response result = await post (
5858 Uri .parse (
59- '${config .firebaseCloudFunctionsBaseURL }/v2 /getLayoutModelRequest' ),
59+ '${config .firebaseCloudFunctionsBaseURL }/api /getLayoutModelRequest' ),
6060 headers: < String , String > {'Content-Type' : 'application/json' },
6161 body: jsonEncode ({
6262 'projectID' : projectID,
@@ -92,7 +92,7 @@ class WebDataRepository extends NetworkDataRepository {
9292 try {
9393 final Response result = await post (
9494 Uri .parse (
95- '${config .firebaseCloudFunctionsBaseURL }/v2 /getFontModelRequest' ),
95+ '${config .firebaseCloudFunctionsBaseURL }/api /getFontModelRequest' ),
9696 headers: < String , String > {'Content-Type' : 'application/json' },
9797 body: jsonEncode ({
9898 'projectID' : projectID,
@@ -129,7 +129,7 @@ class WebDataRepository extends NetworkDataRepository {
129129 try {
130130 final Response result = await post (
131131 Uri .parse (
132- '${config .firebaseCloudFunctionsBaseURL }/v2 /getPublishedApiRequest' ),
132+ '${config .firebaseCloudFunctionsBaseURL }/api /getPublishedApiRequest' ),
133133 headers: < String , String > {'Content-Type' : 'application/json' },
134134 body: jsonEncode ({
135135 'projectID' : projectID,
@@ -168,7 +168,7 @@ class WebDataRepository extends NetworkDataRepository {
168168 try {
169169 final Response result = await post (
170170 Uri .parse (
171- '${config .firebaseCloudFunctionsBaseURL }/v2 /getPublishedLayoutVariablesRequest' ),
171+ '${config .firebaseCloudFunctionsBaseURL }/api /getPublishedLayoutVariablesRequest' ),
172172 headers: < String , String > {'Content-Type' : 'application/json' },
173173 body: jsonEncode ({
174174 'projectID' : projectID,
@@ -209,7 +209,7 @@ class WebDataRepository extends NetworkDataRepository {
209209 try {
210210 final Response result = await post (
211211 Uri .parse (
212- '${config .firebaseCloudFunctionsBaseURL }/v2 /getPublishedLayoutConditionsRequest' ),
212+ '${config .firebaseCloudFunctionsBaseURL }/api /getPublishedLayoutConditionsRequest' ),
213213 headers: < String , String > {'Content-Type' : 'application/json' },
214214 body: jsonEncode ({
215215 'projectID' : projectID,
0 commit comments