Skip to content

Commit dd99dc2

Browse files
authored
Merge pull request #2109 from numbersprotocol/feat-update-num-price-list-endpoint
Feat update num price list endpoint
2 parents 07bab17 + 77ca390 commit dd99dc2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ios/App/Configuration.storekit

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"locale" : "en_US"
1616
}
1717
],
18-
"productID" : "cap_lite_consumable_bronze_pack_099",
18+
"productID" : "capture_lite_consumable_bronze_pack_099",
1919
"referenceName" : "Bronze Pack",
2020
"type" : "Consumable"
2121
},
@@ -30,7 +30,7 @@
3030
"locale" : "en_US"
3131
}
3232
],
33-
"productID" : "cap_lite_consumable_silver_pack_199",
33+
"productID" : "capture_lite_consumable_silver_pack_199",
3434
"referenceName" : "Silver Pack",
3535
"type" : "Consumable"
3636
},
@@ -45,7 +45,7 @@
4545
"locale" : "en_US"
4646
}
4747
],
48-
"productID" : "cap_lite_consumable_gold_pack_299",
48+
"productID" : "capture_lite_consumable_gold_pack_299",
4949
"referenceName" : "Gold Pack",
5050
"type" : "Consumable"
5151
},
@@ -60,7 +60,7 @@
6060
"locale" : "en_US"
6161
}
6262
],
63-
"productID" : "cap_lite_consumable_platinum_pack_399",
63+
"productID" : "capture_lite_consumable_platinum_pack_399",
6464
"referenceName" : "Platinum Pack",
6565
"type" : "Consumable"
6666
}

src/app/shared/dia-backend/num/dia-backend-num.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Injectable } from '@angular/core';
33
import { defer } from 'rxjs';
44
import { concatMap } from 'rxjs/operators';
55
import { DiaBackendAuthService } from '../auth/dia-backend-auth.service';
6-
import { BASE_URL, BUBBLE_API_URL } from '../secret';
6+
import { BASE_URL, BUBBLE_IFRAME_URL } from '../secret';
77

88
@Injectable({
99
providedIn: 'root',
@@ -33,7 +33,7 @@ export class DiaBackendNumService {
3333
// ask @ethan wu to change bubble endpoint from POST to GET
3434
return defer(() =>
3535
this.httpClient.post<NumPointPriceListResponse>(
36-
`${BUBBLE_API_URL}/version-num-points-price-list/api/1.1/wf/num-points-price-list`,
36+
`${BUBBLE_IFRAME_URL}/api/1.1/wf/get_num_price`,
3737
{}
3838
)
3939
);

0 commit comments

Comments
 (0)