diff --git a/README.md b/README.md index 84d3508..5817fa1 100644 --- a/README.md +++ b/README.md @@ -13,19 +13,25 @@ This Laravel 4 package provides an interface for using [Salesforce CRM](http://w Begin by installing this package through Composer. Edit your project's `composer.json` file to require `davispeixoto/laravel-salesforce`. +```json "require": { "laravel/framework": "4.*", "davispeixoto/laravel-salesforce": "2.0.*" } +``` Next, update Composer from the Terminal: +```sh composer update +``` Once this operation completes, still in Terminal run: +```sh php artisan config:publish davispeixoto/laravel-salesforce - +``` + ### Configuration Update the settings in the generated `app/config/packages/davispeixoto/laravel-salesforce` configuration file with your salesforce credentials. @@ -36,10 +42,13 @@ Ensure you put [your WSDL file](https://www.salesforce.com/us/developer/docs/api Finally add the service provider. Open `app/config/app.php`, and add a new item to the providers array. +```php 'Davispeixoto\LaravelSalesforce\LaravelSalesforceServiceProvider' +``` That's it! You're all set to go. Just use: +```php Route::get('/test', function() { try { echo print_r(Salesforce::describeLayout('Account')); @@ -48,6 +57,7 @@ That's it! You're all set to go. Just use: die($e->getMessage() . $e->getTraceAsString()); } }); +``` ### More Information @@ -74,4 +84,3 @@ who kindly empower this project with a free open-source license for [PhpStorm](h [2]: https://www.jetbrains.com/company/docs/logo_jetbrains.png [3]: https://www.jetbrains.com/phpstorm/ [4]: https://www.jetbrains.com/phpstorm/documentation/docs/logo_phpstorm.png - diff --git a/src/Davispeixoto/LaravelSalesforce/Facades/Salesforce.php b/src/Davispeixoto/LaravelSalesforce/Facades/Salesforce.php index 36ad54a..0fbccc0 100644 --- a/src/Davispeixoto/LaravelSalesforce/Facades/Salesforce.php +++ b/src/Davispeixoto/LaravelSalesforce/Facades/Salesforce.php @@ -2,13 +2,15 @@ use Illuminate\Support\Facades\Facade; -class Salesforce extends Facade { - /** - * Get the registered name of the component. - * - * @return string - */ - protected static function getFacadeAccessor() { - return 'salesforce'; - } +class Salesforce extends Facade +{ + /** + * Get the registered name of the component. + * + * @return string + */ + protected static function getFacadeAccessor() + { + return 'salesforce'; + } } diff --git a/src/Davispeixoto/LaravelSalesforce/LaravelSalesforceServiceProvider.php b/src/Davispeixoto/LaravelSalesforce/LaravelSalesforceServiceProvider.php index 8a98b8c..9ab458d 100644 --- a/src/Davispeixoto/LaravelSalesforce/LaravelSalesforceServiceProvider.php +++ b/src/Davispeixoto/LaravelSalesforce/LaravelSalesforceServiceProvider.php @@ -2,51 +2,52 @@ use Illuminate\Support\ServiceProvider; -class LaravelSalesforceServiceProvider extends ServiceProvider { - - /** - * Indicates if loading of the provider is deferred. - * - * @var bool - */ - protected $defer = false; - - /** - * Bootstrap the application events. - * - * @return void - */ - public function boot() - { - $this->package('davispeixoto/laravel-salesforce'); - } - - /** - * Register the service provider. - * - * @return void - */ - public function register() - { - $this->app->booting(function() { - $loader = \Illuminate\Foundation\AliasLoader::getInstance(); - $loader->alias('Salesforce', 'Davispeixoto\LaravelSalesforce\Facades\Salesforce'); - $loader->alias('SF', 'Davispeixoto\LaravelSalesforce\Facades\Salesforce'); - }); - - $this->app['salesforce'] = $this->app->share(function($app) { - return new Salesforce($app['config']); - }); - } - - /** - * Get the services provided by the provider. - * - * @return array - */ - public function provides() - { - return array('salesforce'); - } +class LaravelSalesforceServiceProvider extends ServiceProvider +{ + + /** + * Indicates if loading of the provider is deferred. + * + * @var bool + */ + protected $defer = false; + + /** + * Bootstrap the application events. + * + * @return void + */ + public function boot() + { + $this->package('davispeixoto/laravel-salesforce'); + } + + /** + * Register the service provider. + * + * @return void + */ + public function register() + { + $this->app->booting(function () { + $loader = \Illuminate\Foundation\AliasLoader::getInstance(); + $loader->alias('Salesforce', 'Davispeixoto\LaravelSalesforce\Facades\Salesforce'); + $loader->alias('SF', 'Davispeixoto\LaravelSalesforce\Facades\Salesforce'); + }); + + $this->app['salesforce'] = $this->app->share(function ($app) { + return new Salesforce($app['config']); + }); + } + + /** + * Get the services provided by the provider. + * + * @return array + */ + public function provides() + { + return array('salesforce'); + } } diff --git a/src/Davispeixoto/LaravelSalesforce/Salesforce.php b/src/Davispeixoto/LaravelSalesforce/Salesforce.php index 909af1f..67522f8 100644 --- a/src/Davispeixoto/LaravelSalesforce/Salesforce.php +++ b/src/Davispeixoto/LaravelSalesforce/Salesforce.php @@ -1,6 +1,7 @@ sfh->createConnection($wsdl); - $this->sfh->login($configExternal->get('laravel-salesforce::username'), - $configExternal->get('laravel-salesforce::password') . $configExternal->get('laravel-salesforce::token')); - } catch (\Exception $e) { - throw new SalesforceException('Exception no Construtor' . $e->getMessage() . "\n\n" . $e->getTraceAsString()); - } - } + $username = $configExternal->get('laravel-salesforce::username'); + $password = $configExternal->get('laravel-salesforce::password'); + $token = $configExternal->get('laravel-salesforce::token'); - /* - * Enterprise client functions - */ + $this->sfh->login($username, $password . $token); - /** - * Create - * - * Create objetcts into salesforce - * - * @param array $sObjects An array of one or more (up to 200) stdClass representations of the object - * @param string $type The Salesforce Object Type - * @return mixed An array of successes/failures for this operation - */ - public function create($sObjects, $type) - { - return $this->sfh->create($sObjects, $type); - } + $this->noParamsReturns = array('getNamespace',); + $this->noParamsNoReturns = array('printDebugInfo'); + $this->paramsReturns = array(); + $this->paramsNoReturns = array('setCallOptions'); - /** - * Update - * - * Create objetcts into salesforce using Salesforce ID - * - * @param array $sObjects An array of stdClass representations of the object - * @param string $type The Salesforce Object Type - * @param null $assignment_header Actually not used by official Salesforce implementation - * @param null $mru_header Actually not used by official Salesforce implementation - * @return \Davispeixoto\ForceDotComToolkitForPhp\UpdateResult An array of successes/failures for this operation - */ - public function update($sObjects, $type, $assignment_header = null, $mru_header = null) - { - return $this->sfh->update($sObjects, $type, $assignment_header, $mru_header); - } - - /** - * Upsert - * - * Update objects into salesforce given their external ID - * If its external ID is not found, creates the object into - * Salesforce - * - * @param string $ext_Id The field name to be used as external ID - * @param array $sObjects An array of stdClass representations of the object - * @param string $type The Salesforce Object Type - * @return \Davispeixoto\ForceDotComToolkitForPhp\UpsertResult An array of successes/failures for this operation - */ - public function upsert($ext_Id, $sObjects, $type = 'Contact') - { - return $this->sfh->upsert($ext_Id, $sObjects, $type); + } catch (Exception $e) { + throw new SalesforceException('Exception at Constructor' . $e->getMessage() . "\n\n" . $e->getTraceAsString()); + } } - /** - * Merge - * - * Merges up to 3 records into one. - * - * @param stdClass $mergeRequest A mergeRequest object - * @param string $type The Salesforce Object Type (actually can merge only Lead, Account and Contact objects) - * @return \Davispeixoto\ForceDotComToolkitForPhp\MergeResult - */ - public function merge($mergeRequest, $type) + public function __call($method, $args) { - return $this->sfh->merge($mergeRequest, $type); + return call_user_func_array(array($this->sfh, $method), $args); } /* - * Base Client functions - */ - public function getNamespace() - { - return $this->sfh->getNamespace(); - } - - public function printDebugInfo() - { - $this->sfh->printDebugInfo(); - } - - public function createConnection($wsdl, $proxy = null, $soap_options = array()) - { - return $this->sfh->createConnection($wsdl, $proxy, $soap_options); - } - - public function setCallOptions($header) - { - $this->sfh->setCallOptions($header); - } - - /** - * Login into salesforce - * - * Actually useless for this class - * once the login is made on constructor - * - * @param string $username - * @param string $password - * @return \Davispeixoto\ForceDotComToolkitForPhp\LoginResult - */ - public function login($username, $password) - { - return $this->sfh->login($username, $password); - } - - /** - * Logout - * - * @return \Davispeixoto\ForceDotComToolkitForPhp\LogoutResult - */ - public function logout() - { - return $this->sfh->logout(); - } - - /** - * Invalidate the current sessions - * - * @return \Davispeixoto\ForceDotComToolkitForPhp\invalidateSessionsResult - */ - public function invalidateSessions() - { - return $this->sfh->invalidateSessions(); - } - - public function setEndpoint($location) - { - $this->sfh->setEndpoint($location); - } - - public function setAssignmentRuleHeader($header) - { - $this->sfh->setAssignmentRuleHeader($header); - } - - public function setEmailHeader($header) - { - $this->sfh->setEmailHeader($header); - } - - public function setLoginScopeHeader($header) - { - $this->sfh->setLoginScopeHeader($header); - } - - public function setMruHeader($header) - { - $this->sfh->setMruHeader($header); - } - - public function setSessionHeader($sessionId) - { - $this->sfh->setSessionHeader($sessionId); - } - - public function setUserTerritoryDeleteHeader($header) - { - $this->sfh->setUserTerritoryDeleteHeader($header); - } - - /** - * Set Query Options - * - * Sets the query batch size - * Minimum is 200, Maximum is 2000 - * Defaults to 500 - * - * @param \stdClass $header The Salesforce QueryOptions Object - */ - public function setQueryOptions($header) - { - $this->sfh->setQueryOptions($header); - } - - public function setAllowFieldTruncationHeader($header) - { - $this->sfh->setAllowFieldTruncationHeader($header); - } - - public function setLocaleOptions($header) - { - $this->sfh->setLocaleOptions($header); - } - - public function setPackageVersionHeader($header) - { - $this->sfh->setPackageVersionHeader($header); - } - - public function getSessionId() - { - return $this->sfh->getSessionId(); - } - - public function getLocation() - { - return $this->sfh->getLocation(); - } - - public function getConnection() - { - return $this->sfh->getConnection(); - } - - public function getFunctions() - { - return $this->sfh->getFunctions(); - } - - public function getTypes() - { - return $this->sfh->getTypes(); - } - - public function getLastRequest() - { - return $this->sfh->getLastRequest(); - } - - public function getLastRequestHeaders() - { - return $this->sfh->getLastRequestHeaders(); - } - - public function getLastResponse() - { - return $this->sfh->getLastResponse(); - } - - public function getLastResponseHeaders() - { - return $this->sfh->getLastResponseHeaders(); - } - - public function sendSingleEmail($request) - { - return $this->sfh->sendSingleEmail($request); - } - - public function sendMassEmail($request) - { - return $this->sfh->sendMassEmail($request); - } - - /** - * Convert Lead - * - * Converts a Lead into an Account and Contact, - * as well as (optionally) an Opportunity. - * - * @param array $leadConverts The lead convert array (*check its specification!) - * @return \Davispeixoto\ForceDotComToolkitForPhp\LeadConvertResult - */ - public function convertLead($leadConverts) - { - return $this->sfh->convertLead($leadConverts); - } - - /** - * Delete - * - * Deletes on or more (up to 200) objects from Salesforce - * - * @param array $ids An array of Salesforce IDs - * @return \Davispeixoto\ForceDotComToolkitForPhp\DeleteResult - */ - public function delete($ids) - { - return $this->sfh->delete($ids); - } - - /** - * Undelete - * - * Undeletes on or more (up to 200) objects from Salesforce - * deleted with delete, merge operation or moved to recycle bin - * - * @param array $ids An array of Salesforce IDs - * @return \Davispeixoto\ForceDotComToolkitForPhp\DeleteResult - */ - public function undelete($ids) - { - return $this->sfh->undelete($ids); - } - - /** - * Empty Recycle Bin - * - * Permanently delete objects from recycle bin - * - * The Recycle Bin lets you view and restore recently deleted records - * for 15 days before they are permanently deleted. - * - * @param $ids - * @return \Davispeixoto\ForceDotComToolkitForPhp\DeleteResult - */ - public function emptyRecycleBin($ids) - { - return $this->sfh->emptyRecycleBin($ids); - } - - public function processSubmitRequest($processRequestArray) - { - return $this->sfh->processSubmitRequest($processRequestArray); - } - - public function processWorkitemRequest($processRequestArray) - { - return $this->sfh->processWorkitemRequest($processRequestArray); - } - - public function describeGlobal() - { - return $this->sfh->describeGlobal(); - } - - public function describeLayout($type, array $recordTypeIds = null) - { - return $this->sfh->describeLayout($type, $recordTypeIds); - } - - public function describeSObject($type) - { - return $this->sfh->describeSObject($type); - } - - public function describeSObjects($arrayOfTypes) - { - return $this->sfh->describeSObjects($arrayOfTypes); - } - - public function describeTabs() - { - return $this->sfh->describeTabs(); - } - - public function describeDataCategoryGroups($sObjectType) - { - return $this->sfh->describeDataCategoryGroups($sObjectType); - } - - public function describeDataCategoryGroupStructures(array $pairs, $topCategoriesOnly) - { - return $this->sfh->describeDataCategoryGroupStructures($pairs, $topCategoriesOnly); - } - - /** - * Get deleted - * - * Get deleted records IDs between the given start and end datetime - * - * @param string $type The Salesforce Object Type - * @param string $startDate The start datetime (according to Salesforce definition) - * @param string $endDate The end datetime (according to Salesforce definition) - * @return \Davispeixoto\ForceDotComToolkitForPhp\GetDeletedResult - */ - public function getDeleted($type, $startDate, $endDate) - { - return $this->sfh->getDeleted($type, $startDate, $endDate); - } - - /** - * Get updated - * - * Get inserted and updated records IDs between the given start and end datetime - * - * @param string $type The Salesforce Object Type - * @param string $startDate The start datetime (according to Salesforce definition) - * @param string $endDate The end datetime (according to Salesforce definition) - * @return \Davispeixoto\ForceDotComToolkitForPhp\GetUpdatedResult - */ - public function getUpdated($type, $startDate, $endDate) - { - return $this->sfh->getUpdated($type, $startDate, $endDate); - } - - /** - * Query - * - * Executes a SOQL query - * Returns a maximum of 500 records - * - * @param string $query The SOQL query - * @return \Davispeixoto\ForceDotComToolkitForPhp\QueryResult - */ - public function query($query) - { - return $this->sfh->query($query); - } - - /** - * Query More - * - * Retrieves the next batch for big result SOQL queries - * - * @param string $queryLocator The query locator returned on the previous SOQL query - * @return \Davispeixoto\ForceDotComToolkitForPhp\QueryResult - */ - public function queryMore($queryLocator) - { - return $this->sfh->queryMore($queryLocator); - } - - /** - * Query all - * - * Same as query but also returns deleted or merged records - * - * @param string $query The SOQL query - * @param null $queryOptions The query options object (min size is 200, maximum is 2000, defaults to 500) - * @return \Davispeixoto\ForceDotComToolkitForPhp\QueryResult + * Debugging functions */ - public function queryAll($query, $queryOptions = null) - { - return $this->sfh->queryAll($query, $queryOptions); - } /** - * Retrieve - * - * Retrieves one or more records based on the specified IDs. - * - * @param string $fieldList The fields you want to retrieve - * @param string $sObjectType The Salesforce Object Type - * @param array $ids An array of Salesforce IDs - * @return \Davispeixoto\ForceDotComToolkitForPhp\sObject[] - */ - public function retrieve($fieldList, $sObjectType, $ids) - { - return $this->sfh->retrieve($fieldList, $sObjectType, $ids); - } - - /** - * Search - * - * Performs a text search into Salesforce objects - * - * @param string $searchString A valid SOSL searchString - * @return \Davispeixoto\ForceDotComToolkitForPhp\SearchResult - */ - public function search($searchString) - { - return $this->sfh->search($searchString); - } - - public function getServerTimestamp() - { - return $this->sfh->getServerTimestamp(); - } - - public function getUserInfo() - { - return $this->sfh->getUserInfo(); - } - - public function setPassword($userId, $password) - { - return $this->sfh->setPassword($userId, $password); - } - - public function resetPassword($userId) - { - return $this->sfh->resetPassword($userId); - } - - /* - * Debugging functions + * @return mixed */ public function dump() { - print_r($this, true); + return print_r($this, true); } } diff --git a/src/Davispeixoto/LaravelSalesforce/Wsdl/enterprise.wsdl.xml b/src/Davispeixoto/LaravelSalesforce/Wsdl/enterprise.wsdl.xml index 14a9256..1aefc5f 100644 --- a/src/Davispeixoto/LaravelSalesforce/Wsdl/enterprise.wsdl.xml +++ b/src/Davispeixoto/LaravelSalesforce/Wsdl/enterprise.wsdl.xml @@ -6,10 +6,14 @@ Generated on 2010-11-04 10:49:00 +0000. Copyright 1999-2010 salesforce.com, inc. All Rights Reserved --> - + - + @@ -26,7 +30,8 @@ All Rights Reserved - + @@ -36,75 +41,75 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -114,20 +119,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -137,15 +142,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -155,23 +160,23 @@ All Rights Reserved - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -181,18 +186,18 @@ All Rights Reserved - - - - - - - - - - - - + + + + + + + + + + + + @@ -202,39 +207,39 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -244,18 +249,18 @@ All Rights Reserved - - - - - - - - - - - - + + + + + + + + + + + + @@ -265,21 +270,21 @@ All Rights Reserved - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -289,21 +294,21 @@ All Rights Reserved - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -313,18 +318,18 @@ All Rights Reserved - - - - - - - - - - - - + + + + + + + + + + + + @@ -334,21 +339,21 @@ All Rights Reserved - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -358,30 +363,30 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -391,21 +396,21 @@ All Rights Reserved - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -415,40 +420,40 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -458,16 +463,16 @@ All Rights Reserved - - - - - - - - - - + + + + + + + + + + @@ -477,22 +482,22 @@ All Rights Reserved - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -502,24 +507,24 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -529,19 +534,19 @@ All Rights Reserved - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -551,32 +556,32 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -586,18 +591,18 @@ All Rights Reserved - - - - - - - - - - - - + + + + + + + + + + + + @@ -607,16 +612,16 @@ All Rights Reserved - - - - - - - - - - + + + + + + + + + + @@ -626,52 +631,52 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -681,23 +686,23 @@ All Rights Reserved - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -707,19 +712,19 @@ All Rights Reserved - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -729,15 +734,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -747,61 +752,61 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -811,18 +816,18 @@ All Rights Reserved - - - - - - - - - - - - + + + + + + + + + + + + @@ -832,19 +837,19 @@ All Rights Reserved - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -854,15 +859,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -872,15 +877,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -890,15 +895,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -908,17 +913,17 @@ All Rights Reserved - - - - - - - - - - - + + + + + + + + + + + @@ -928,18 +933,18 @@ All Rights Reserved - - - - - - - - - - - - + + + + + + + + + + + + @@ -949,16 +954,16 @@ All Rights Reserved - - - - - - - - - - + + + + + + + + + + @@ -968,15 +973,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -986,16 +991,16 @@ All Rights Reserved - - - - - - - - - - + + + + + + + + + + @@ -1005,13 +1010,13 @@ All Rights Reserved - - - - - - - + + + + + + + @@ -1021,16 +1026,16 @@ All Rights Reserved - - - - - - - - - - + + + + + + + + + + @@ -1040,17 +1045,17 @@ All Rights Reserved - - - - - - - - - - - + + + + + + + + + + + @@ -1060,16 +1065,16 @@ All Rights Reserved - - - - - - - - - - + + + + + + + + + + @@ -1079,77 +1084,78 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1159,15 +1165,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -1177,15 +1183,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -1195,56 +1201,56 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1254,20 +1260,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -1277,15 +1283,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -1295,17 +1301,17 @@ All Rights Reserved - - - - - - - - - - - + + + + + + + + + + + @@ -1315,20 +1321,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -1338,30 +1344,30 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -1371,31 +1377,31 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1405,12 +1411,12 @@ All Rights Reserved - - - - - - + + + + + + @@ -1420,20 +1426,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -1443,30 +1449,31 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -1476,20 +1483,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -1499,34 +1506,34 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1536,53 +1543,53 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1592,21 +1599,21 @@ All Rights Reserved - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -1616,21 +1623,21 @@ All Rights Reserved - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -1640,19 +1647,19 @@ All Rights Reserved - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -1662,14 +1669,14 @@ All Rights Reserved - - - - - - - - + + + + + + + + @@ -1679,24 +1686,24 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -1706,10 +1713,10 @@ All Rights Reserved - - - - + + + + @@ -1719,28 +1726,28 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + @@ -1750,31 +1757,31 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1784,15 +1791,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -1802,72 +1809,72 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1877,15 +1884,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -1895,15 +1902,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -1913,17 +1920,17 @@ All Rights Reserved - - - - - - - - - - - + + + + + + + + + + + @@ -1933,20 +1940,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -1956,20 +1963,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -1979,21 +1986,21 @@ All Rights Reserved - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -2003,21 +2010,21 @@ All Rights Reserved - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -2027,39 +2034,39 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2069,66 +2076,70 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2138,19 +2149,19 @@ All Rights Reserved - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -2160,20 +2171,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -2183,15 +2194,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -2201,19 +2212,19 @@ All Rights Reserved - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -2223,25 +2234,25 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -2251,21 +2262,21 @@ All Rights Reserved - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -2275,15 +2286,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -2293,22 +2304,22 @@ All Rights Reserved - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -2318,16 +2329,16 @@ All Rights Reserved - - - - - - - - - - + + + + + + + + + + @@ -2337,45 +2348,47 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2385,23 +2398,23 @@ All Rights Reserved - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -2411,16 +2424,16 @@ All Rights Reserved - - - - - - - - - - + + + + + + + + + + @@ -2430,16 +2443,17 @@ All Rights Reserved - - - - - - - - - - + + + + + + + + + + @@ -2449,20 +2463,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -2472,24 +2486,24 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -2499,20 +2513,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -2522,23 +2536,23 @@ All Rights Reserved - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -2548,18 +2562,18 @@ All Rights Reserved - - - - - - - - - - - - + + + + + + + + + + + + @@ -2569,17 +2583,17 @@ All Rights Reserved - - - - - - - - - - - + + + + + + + + + + + @@ -2589,31 +2603,31 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2623,72 +2637,107 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2698,12 +2747,12 @@ All Rights Reserved - - - - - - + + + + + + @@ -2713,20 +2762,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -2736,20 +2785,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -2759,24 +2808,24 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -2786,25 +2835,25 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -2814,35 +2863,39 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2852,15 +2905,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -2870,35 +2923,35 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2908,15 +2961,15 @@ All Rights Reserved - - - - - - - - - + + + + + + + + + @@ -2926,17 +2979,17 @@ All Rights Reserved - - - - - - - - - - - + + + + + + + + + + + @@ -2946,20 +2999,20 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -2969,48 +3022,48 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3020,17 +3073,17 @@ All Rights Reserved - - - - - - - - - - - + + + + + + + + + + + @@ -3040,17 +3093,17 @@ All Rights Reserved - - - - - - - - - - - + + + + + + + + + + + @@ -3060,72 +3113,83 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3135,11 +3199,11 @@ All Rights Reserved - - - - - + + + + + @@ -3149,10 +3213,10 @@ All Rights Reserved - - - - + + + + @@ -3162,22 +3226,24 @@ All Rights Reserved - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -3187,14 +3253,14 @@ All Rights Reserved - - - - - - - - + + + + + + + + @@ -3204,35 +3270,35 @@ All Rights Reserved - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3241,7 +3307,8 @@ All Rights Reserved - + @@ -3268,7 +3335,6 @@ All Rights Reserved - @@ -3621,7 +3687,6 @@ All Rights Reserved - @@ -3635,9 +3700,6 @@ All Rights Reserved - - - @@ -3690,7 +3752,8 @@ All Rights Reserved - + @@ -3758,7 +3821,8 @@ All Rights Reserved - + @@ -3785,7 +3849,8 @@ All Rights Reserved - + + @@ -3800,7 +3865,8 @@ All Rights Reserved - + + @@ -3831,7 +3897,8 @@ All Rights Reserved - + @@ -3904,9 +3971,11 @@ All Rights Reserved - + - + @@ -3940,7 +4009,8 @@ All Rights Reserved - + @@ -3948,8 +4018,10 @@ All Rights Reserved - - + + @@ -3985,7 +4057,8 @@ All Rights Reserved - + @@ -4032,7 +4105,8 @@ All Rights Reserved - + @@ -4040,7 +4114,8 @@ All Rights Reserved - + @@ -4074,7 +4149,6 @@ All Rights Reserved - @@ -4122,19 +4196,23 @@ All Rights Reserved - + - - + + - + @@ -4149,7 +4227,6 @@ All Rights Reserved - @@ -4172,9 +4249,6 @@ All Rights Reserved - - - @@ -4219,7 +4293,8 @@ All Rights Reserved - + @@ -4249,14 +4324,16 @@ All Rights Reserved - + - + @@ -4264,7 +4341,8 @@ All Rights Reserved - + @@ -4306,7 +4384,8 @@ All Rights Reserved - + @@ -4328,7 +4407,6 @@ All Rights Reserved - @@ -4460,7 +4538,6 @@ All Rights Reserved - @@ -4609,7 +4686,6 @@ All Rights Reserved - @@ -4627,7 +4703,6 @@ All Rights Reserved - @@ -4686,7 +4761,6 @@ All Rights Reserved - @@ -4706,7 +4780,6 @@ All Rights Reserved - @@ -4739,20 +4812,21 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -4772,14 +4846,13 @@ All Rights Reserved - - - - - - - - + + + + + + + @@ -5426,7 +5498,9 @@ All Rights Reserved - Describe the data category group structures for a given set of pair of types and data category group name + Describe the data category group structures for a given set of pair of types and data + category group name + diff --git a/src/Davispeixoto/LaravelSalesforce/Wsdl/metadata.wsdl.xml b/src/Davispeixoto/LaravelSalesforce/Wsdl/metadata.wsdl.xml index 84ed531..d3ef1fd 100644 --- a/src/Davispeixoto/LaravelSalesforce/Wsdl/metadata.wsdl.xml +++ b/src/Davispeixoto/LaravelSalesforce/Wsdl/metadata.wsdl.xml @@ -4,3334 +4,3415 @@ Salesforce.com Metadata API version 27.0 Copyright 2006-2010 Salesforce.com, inc. All Rights Reserved --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Check the current status of an asyncronous deploy call. - - - - - Check the current status of an asyncronous deploy call. - - - - - Check the current status of an asyncronous call. - - - - - Creates new metadata entries asyncronously. - - - - - Deletes metadata entries asyncronously. - - - - - Deploys a zipfile full of metadata entries asynchronously. - - - - - Describes features of the metadata API. - - - - - Lists the available metadata components. - - - - - Retrieves a set of individually specified metadata entries. - - - - - Updates metadata entries asyncronously. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Manage your Salesforce.com metadata - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Check the current status of an asyncronous deploy call. + + + + + Check the current status of an asyncronous deploy call. + + + + + Check the current status of an asyncronous call. + + + + + Creates new metadata entries asyncronously. + + + + + Deletes metadata entries asyncronously. + + + + + Deploys a zipfile full of metadata entries asynchronously. + + + + + Describes features of the metadata API. + + + + + Lists the available metadata components. + + + + + Retrieves a set of individually specified metadata entries. + + + + + Updates metadata entries asyncronously. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Manage your Salesforce.com metadata + + + + diff --git a/src/Davispeixoto/LaravelSalesforce/Wsdl/partner.wsdl.xml b/src/Davispeixoto/LaravelSalesforce/Wsdl/partner.wsdl.xml index e0369cd..8bdb2a7 100644 --- a/src/Davispeixoto/LaravelSalesforce/Wsdl/partner.wsdl.xml +++ b/src/Davispeixoto/LaravelSalesforce/Wsdl/partner.wsdl.xml @@ -6,10 +6,14 @@ Generated on 2010-11-04 10:50:34 +0000. Copyright 1999-2010 salesforce.com, inc. All Rights Reserved --> - + - + @@ -26,7 +30,8 @@ All Rights Reserved - + @@ -53,7 +58,6 @@ All Rights Reserved - @@ -406,7 +410,6 @@ All Rights Reserved - @@ -420,9 +423,6 @@ All Rights Reserved - - - @@ -475,7 +475,8 @@ All Rights Reserved - + @@ -543,7 +544,8 @@ All Rights Reserved - + @@ -570,7 +572,8 @@ All Rights Reserved - + + @@ -585,7 +588,8 @@ All Rights Reserved - + + @@ -616,7 +620,8 @@ All Rights Reserved - + @@ -689,9 +694,11 @@ All Rights Reserved - + - + @@ -725,7 +732,8 @@ All Rights Reserved - + @@ -733,8 +741,10 @@ All Rights Reserved - - + + @@ -770,7 +780,8 @@ All Rights Reserved - + @@ -817,7 +828,8 @@ All Rights Reserved - + @@ -825,7 +837,8 @@ All Rights Reserved - + @@ -859,7 +872,6 @@ All Rights Reserved - @@ -907,19 +919,23 @@ All Rights Reserved - + - - + + - + @@ -934,7 +950,6 @@ All Rights Reserved - @@ -957,9 +972,6 @@ All Rights Reserved - - - @@ -1004,7 +1016,8 @@ All Rights Reserved - + @@ -1034,14 +1047,16 @@ All Rights Reserved - + - + @@ -1049,7 +1064,8 @@ All Rights Reserved - + @@ -1091,7 +1107,8 @@ All Rights Reserved - + @@ -1113,7 +1130,6 @@ All Rights Reserved - @@ -1245,7 +1261,6 @@ All Rights Reserved - @@ -1394,7 +1409,6 @@ All Rights Reserved - @@ -1412,7 +1426,6 @@ All Rights Reserved - @@ -1471,7 +1484,6 @@ All Rights Reserved - @@ -1534,20 +1546,21 @@ All Rights Reserved - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -1567,14 +1580,13 @@ All Rights Reserved - - - - - - - - + + + + + + + @@ -2223,7 +2234,9 @@ All Rights Reserved - Describe the data category group structures for a given set of pair of types and data category group name + Describe the data category group structures for a given set of pair of types and data + category group name + diff --git a/src/config/config.php b/src/config/config.php index 0de1043..78a5387 100644 --- a/src/config/config.php +++ b/src/config/config.php @@ -10,8 +10,8 @@ */ // production - 'username' => '', - 'password' => '', - 'token' => '', + 'username' => '', + 'password' => '', + 'token' => '', 'wsdl' => app_path() . '/wsdl/enterprise.wsdl.xml', ); diff --git a/src/config/local/config.php b/src/config/local/config.php index 9b7a8e1..0041c77 100644 --- a/src/config/local/config.php +++ b/src/config/local/config.php @@ -10,7 +10,7 @@ */ // sandbox - 'username' => '', + 'username' => '', 'password' => '', 'token' => '', 'wsdl' => app_path() . '/wsdl/enterprise.sandbox.wsdl.xml',