@veloceapps/api 8.0.0-152 → 8.0.0-154
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/services/sandbox-manager-api.service.mjs +12 -9
- package/fesm2015/veloceapps-api.mjs +10 -7
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +10 -7
- package/fesm2020/veloceapps-api.mjs.map +1 -1
- package/lib/services/sandbox-manager-api.service.d.ts +2 -1
- package/package.json +1 -1
@@ -3210,13 +3210,16 @@ class SandboxManagerApiService {
|
|
3210
3210
|
constructor(baseHttpService) {
|
3211
3211
|
this.baseHttpService = baseHttpService;
|
3212
3212
|
this.serviceUrl = '/admin/portal';
|
3213
|
-
|
3214
|
-
|
3215
|
-
|
3216
|
-
|
3217
|
-
|
3218
|
-
|
3219
|
-
|
3213
|
+
}
|
3214
|
+
getSalesforceOrganizations$(skip = 1, name = '') {
|
3215
|
+
return of([
|
3216
|
+
{ id: '1', name: 'Organization 1', active: true },
|
3217
|
+
{ id: '2', name: 'Organization 2', active: false },
|
3218
|
+
{ id: '3', name: 'Organization 3', active: true },
|
3219
|
+
]);
|
3220
|
+
}
|
3221
|
+
getAvailableSalesforceOrganizations$() {
|
3222
|
+
return of(2);
|
3220
3223
|
}
|
3221
3224
|
}
|
3222
3225
|
SandboxManagerApiService.MAX_RESULTS = 60;
|