@veloceapps/api 7.0.2-63 → 7.0.2-64

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.
@@ -713,6 +713,18 @@ class SalesforceApiService {
713
713
  ...options,
714
714
  });
715
715
  }
716
+ getGlobalPicklists() {
717
+ return this.httpService.api({
718
+ method: 'get',
719
+ url: `${this.SERVICE_URL}/globalvalueset`,
720
+ });
721
+ }
722
+ getGlobalPicklistValues(id) {
723
+ return this.httpService.api({
724
+ method: 'get',
725
+ url: `${this.SERVICE_URL}/globalvalueset/${id}/values`,
726
+ });
727
+ }
716
728
  }
717
729
  SalesforceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: SalesforceApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
718
730
  SalesforceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: SalesforceApiService });