Skip to content
This repository was archived by the owner on Dec 12, 2022. It is now read-only.

Commit ff60fa4

Browse files
committed
chore: rename sit to staging
1 parent cf72e49 commit ff60fa4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/models/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class Config {
1111
*/
1212
msvKey: string;
1313
/**
14-
* Can be sit, uat or live
14+
* Can be staging, uat or live
1515
*/
1616
msvEnv: string;
1717
callbacks: SdkCallbacks;

src/preview-app-versions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const data = {
2-
"sit": {
2+
"staging": {
33
"playground": {
44
"android": 30,
55
"ios": 19

src/services/preview-app-versions-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export class PreviewAppVersionsService {
55
private static GET_VERSIONS_DATA_URL = "https://raw.githubusercontent.com/telerik/nativescript-preview-sdk/master/src/preview-app-versions.js?token=AAuaxiKOa83eWHeHU_N3C1qPCW1z4rv5ks5brHCBwA%3D%3D";
66

77
public validMsvKeys = ["cli", "playground"];
8-
public validMsvEnvs = ["sit", "uat", "live"];
8+
public validMsvEnvs = ["staging", "uat", "live"];
99

1010
public async getMinSupportedVersions(key: string, env: string): Promise<{ android: number, ios: number }> {
1111
const response = await this.get();

0 commit comments

Comments
 (0)