(function(){ angular .module("_webApi_") .constant("cat.careProviders", { "DATA": [ { Url: '/api/v1/special-qualities', CustomOptions: true, Method: 'get', InvokeName: 'getSpecialQualities' }, { Url: '/api/v1/servicing-areas', CustomOptions: true, Method: 'get', InvokeName: 'getServicingAreas' }, { Url: '/api/v1/services/categories/available', CustomOptions: true, Method: 'get', InvokeName: 'getServicesCategories' }, { Url: '/admin-panel/api/v1/care-providers/active', CustomOptions: true, Method: 'get', InvokeName: 'getAllActivecareProviders' }, { Url: '/admin-panel/api/v1/care-providers/blocked', CustomOptions: true, Method: 'get', InvokeName: 'getAllBlockedcareProviders' }, { Url: '/admin-panel/api/v1/care-providers/{id}', CustomOptions: true, Method: 'get', InvokeName: 'getCareProviderById' }, { Url: '/admin-panel/api/v1/care-providers/completed-registration', CustomOptions: true, Method: 'get', InvokeName: 'getAllCareProvidersAll' }, { Url: '/admin-panel/api/v1/care-providers/{id}', CustomOptions: true, Method: 'put', InvokeName: 'updateCareProviderById' }, { Url: '/admin-panel/api/v1/care-providers', CustomOptions: true, Method: 'post', InvokeName: 'createCareProvider' }, { Url: '/admin-panel/api/v1/care-providers/{id}/block', CustomOptions: true, Method: 'put', InvokeName: 'blockCareProviderById' }, { Url: '/admin-panel/api/v1/care-providers/blocked/{id}/unblock', CustomOptions: true, Method: 'put', InvokeName: 'unblockCareProviderById' }, { Url: '/admin-panel/api/v1/care-providers/{id}/password', CustomOptions: true, Method: 'put', InvokeName: 'changeCareProviderPasswordById' }, { Url: '/admin-panel/api/v1/care-providers/{id}/image', CustomOptions: true, Method: 'post', InvokeName: 'uploadCareProviderImage' }, { Url: '/admin-panel/api/v1/care-providers/{id}/license/activate', CustomOptions: true, Method: 'put', InvokeName: 'activateCareProviderLicense' }, { Url: '/admin-panel/api/v1/care-providers/{id}/license/deactivate', CustomOptions: true, Method: 'put', InvokeName: 'deActivateCareProviderLicense' } ] }); })();