diff --git a/README.md b/README.md index 907717fc..953f7be4 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# SendinBlue's API v3 Node.js Library +# Pakat's API v3 Node.js Library -SendinBlue's API exposes the entire SendinBlue features via a standardized programmatic interface. Please refer to the full [documentation](https://developers.sendinblue.com) to learn more. +Pakat's API exposes the entire Pakat features via a standardized programmatic interface. Please refer to the full [documentation](https://docs.pakat.net) to learn more. Pakat is a proxy for SendinBlue. This is the wrapper for the API. It implements all the features of the API v3. It supports promises. -SendinBlue's API matches the [OpenAPI v2 definition](https://www.openapis.org/). The specification can be downloaded [here](https://api.sendinblue.com/v3/swagger_definition.yml). +Pakat's API matches the [OpenAPI v2 definition](https://www.openapis.org/). The specification can be downloaded [here](https://api.sendinblue.com/v3/swagger_definition.yml). This library is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project and is reviewed and maintained by SendinBlue: @@ -23,7 +23,7 @@ The following recommended installation requires [npm](https://npmjs.org/). If yo Then install it via: ```shell -npm install sib-api-v3-sdk --save +npm install pakat-api-v3-sdk --save ``` ##### Local development @@ -41,23 +41,23 @@ Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the follow npm link ``` -Finally, switch to the directory you want to use your sib-api-v3-sdk from, and run: +Finally, switch to the directory you want to use your pakat-api-v3-sdk from, and run: ```shell npm link /path/to/ ``` -You should now be able to `require('sib-api-v3-sdk')` in javascript files from the directory you ran the last +You should now be able to `require('pakat-api-v3-sdk')` in javascript files from the directory you ran the last command above from. #### git # If the library is hosted at a git repository, e.g. -https://github.com/sendinblue/APIv3-nodejs-library +https://github.com/irandoust/pakat-APIv3-nodejs-library then install it via: ```shell - npm install sendinblue/APIv3-nodejs-library --save + npm install irandoust/pakat-APIv3-nodejs-library --save ``` ### Webpack Configuration @@ -83,9 +83,9 @@ module: { Please follow the [installation](#installation) instruction and execute the following JS code: ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); +var PakatApiV3Sdk = require('pakat-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -99,7 +99,7 @@ partnerKey.apiKey = "YOUR API KEY" // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix['partner-key'] = "Token" -var api = new SibApiV3Sdk.AccountApi() +var api = new PakatApiV3Sdk.AccountApi() api.getAccount().then(function(data) { console.log('API called successfully. Returned data: ' + data); }, function(error) { @@ -115,306 +115,306 @@ All URIs are relative to *https://api.sendinblue.com/v3* Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- -*SibApiV3Sdk.AccountApi* | [**getAccount**](docs/AccountApi.md#getAccount) | **GET** /account | Get your account information, plan and credits details -*SibApiV3Sdk.AttributesApi* | [**createAttribute**](docs/AttributesApi.md#createAttribute) | **POST** /contacts/attributes/{attributeCategory}/{attributeName} | Create contact attribute -*SibApiV3Sdk.AttributesApi* | [**deleteAttribute**](docs/AttributesApi.md#deleteAttribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Delete an attribute -*SibApiV3Sdk.AttributesApi* | [**getAttributes**](docs/AttributesApi.md#getAttributes) | **GET** /contacts/attributes | List all attributes -*SibApiV3Sdk.AttributesApi* | [**updateAttribute**](docs/AttributesApi.md#updateAttribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Update contact attribute -*SibApiV3Sdk.ContactsApi* | [**addContactToList**](docs/ContactsApi.md#addContactToList) | **POST** /contacts/lists/{listId}/contacts/add | Add existing contacts to a list -*SibApiV3Sdk.ContactsApi* | [**createAttribute**](docs/ContactsApi.md#createAttribute) | **POST** /contacts/attributes/{attributeCategory}/{attributeName} | Create contact attribute -*SibApiV3Sdk.ContactsApi* | [**createContact**](docs/ContactsApi.md#createContact) | **POST** /contacts | Create a contact -*SibApiV3Sdk.ContactsApi* | [**createDoiContact**](docs/ContactsApi.md#createDoiContact) | **POST** /contacts/doubleOptinConfirmation | Create Contact via DOI (Double-Opt-In) Flow -*SibApiV3Sdk.ContactsApi* | [**createFolder**](docs/ContactsApi.md#createFolder) | **POST** /contacts/folders | Create a folder -*SibApiV3Sdk.ContactsApi* | [**createList**](docs/ContactsApi.md#createList) | **POST** /contacts/lists | Create a list -*SibApiV3Sdk.ContactsApi* | [**deleteAttribute**](docs/ContactsApi.md#deleteAttribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Delete an attribute -*SibApiV3Sdk.ContactsApi* | [**deleteContact**](docs/ContactsApi.md#deleteContact) | **DELETE** /contacts/{identifier} | Delete a contact -*SibApiV3Sdk.ContactsApi* | [**deleteFolder**](docs/ContactsApi.md#deleteFolder) | **DELETE** /contacts/folders/{folderId} | Delete a folder (and all its lists) -*SibApiV3Sdk.ContactsApi* | [**deleteList**](docs/ContactsApi.md#deleteList) | **DELETE** /contacts/lists/{listId} | Delete a list -*SibApiV3Sdk.ContactsApi* | [**getAttributes**](docs/ContactsApi.md#getAttributes) | **GET** /contacts/attributes | List all attributes -*SibApiV3Sdk.ContactsApi* | [**getContactInfo**](docs/ContactsApi.md#getContactInfo) | **GET** /contacts/{identifier} | Get a contact's details -*SibApiV3Sdk.ContactsApi* | [**getContactStats**](docs/ContactsApi.md#getContactStats) | **GET** /contacts/{identifier}/campaignStats | Get email campaigns' statistics for a contact -*SibApiV3Sdk.ContactsApi* | [**getContacts**](docs/ContactsApi.md#getContacts) | **GET** /contacts | Get all the contacts -*SibApiV3Sdk.ContactsApi* | [**getContactsFromList**](docs/ContactsApi.md#getContactsFromList) | **GET** /contacts/lists/{listId}/contacts | Get contacts in a list -*SibApiV3Sdk.ContactsApi* | [**getFolder**](docs/ContactsApi.md#getFolder) | **GET** /contacts/folders/{folderId} | Returns a folder's details -*SibApiV3Sdk.ContactsApi* | [**getFolderLists**](docs/ContactsApi.md#getFolderLists) | **GET** /contacts/folders/{folderId}/lists | Get lists in a folder -*SibApiV3Sdk.ContactsApi* | [**getFolders**](docs/ContactsApi.md#getFolders) | **GET** /contacts/folders | Get all folders -*SibApiV3Sdk.ContactsApi* | [**getList**](docs/ContactsApi.md#getList) | **GET** /contacts/lists/{listId} | Get a list's details -*SibApiV3Sdk.ContactsApi* | [**getLists**](docs/ContactsApi.md#getLists) | **GET** /contacts/lists | Get all the lists -*SibApiV3Sdk.ContactsApi* | [**importContacts**](docs/ContactsApi.md#importContacts) | **POST** /contacts/import | Import contacts -*SibApiV3Sdk.ContactsApi* | [**removeContactFromList**](docs/ContactsApi.md#removeContactFromList) | **POST** /contacts/lists/{listId}/contacts/remove | Delete a contact from a list -*SibApiV3Sdk.ContactsApi* | [**requestContactExport**](docs/ContactsApi.md#requestContactExport) | **POST** /contacts/export | Export contacts -*SibApiV3Sdk.ContactsApi* | [**updateAttribute**](docs/ContactsApi.md#updateAttribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Update contact attribute -*SibApiV3Sdk.ContactsApi* | [**updateContact**](docs/ContactsApi.md#updateContact) | **PUT** /contacts/{identifier} | Update a contact -*SibApiV3Sdk.ContactsApi* | [**updateFolder**](docs/ContactsApi.md#updateFolder) | **PUT** /contacts/folders/{folderId} | Update a folder -*SibApiV3Sdk.ContactsApi* | [**updateList**](docs/ContactsApi.md#updateList) | **PUT** /contacts/lists/{listId} | Update a list -*SibApiV3Sdk.EmailCampaignsApi* | [**createEmailCampaign**](docs/EmailCampaignsApi.md#createEmailCampaign) | **POST** /emailCampaigns | Create an email campaign -*SibApiV3Sdk.EmailCampaignsApi* | [**deleteEmailCampaign**](docs/EmailCampaignsApi.md#deleteEmailCampaign) | **DELETE** /emailCampaigns/{campaignId} | Delete an email campaign -*SibApiV3Sdk.EmailCampaignsApi* | [**emailExportRecipients**](docs/EmailCampaignsApi.md#emailExportRecipients) | **POST** /emailCampaigns/{campaignId}/exportRecipients | Export the recipients of an email campaign -*SibApiV3Sdk.EmailCampaignsApi* | [**getAbTestCampaignResult**](docs/EmailCampaignsApi.md#getAbTestCampaignResult) | **GET** /emailCampaigns/{campaignId}/abTestCampaignResult | Get an A/B test email campaign results -*SibApiV3Sdk.EmailCampaignsApi* | [**getEmailCampaign**](docs/EmailCampaignsApi.md#getEmailCampaign) | **GET** /emailCampaigns/{campaignId} | Get an email campaign report -*SibApiV3Sdk.EmailCampaignsApi* | [**getEmailCampaigns**](docs/EmailCampaignsApi.md#getEmailCampaigns) | **GET** /emailCampaigns | Return all your created email campaigns -*SibApiV3Sdk.EmailCampaignsApi* | [**getSharedTemplateUrl**](docs/EmailCampaignsApi.md#getSharedTemplateUrl) | **GET** /emailCampaigns/{campaignId}/sharedUrl | Get a shared template url -*SibApiV3Sdk.EmailCampaignsApi* | [**sendEmailCampaignNow**](docs/EmailCampaignsApi.md#sendEmailCampaignNow) | **POST** /emailCampaigns/{campaignId}/sendNow | Send an email campaign immediately, based on campaignId -*SibApiV3Sdk.EmailCampaignsApi* | [**sendReport**](docs/EmailCampaignsApi.md#sendReport) | **POST** /emailCampaigns/{campaignId}/sendReport | Send the report of a campaign -*SibApiV3Sdk.EmailCampaignsApi* | [**sendTestEmail**](docs/EmailCampaignsApi.md#sendTestEmail) | **POST** /emailCampaigns/{campaignId}/sendTest | Send an email campaign to your test list -*SibApiV3Sdk.EmailCampaignsApi* | [**updateCampaignStatus**](docs/EmailCampaignsApi.md#updateCampaignStatus) | **PUT** /emailCampaigns/{campaignId}/status | Update an email campaign status -*SibApiV3Sdk.EmailCampaignsApi* | [**updateEmailCampaign**](docs/EmailCampaignsApi.md#updateEmailCampaign) | **PUT** /emailCampaigns/{campaignId} | Update an email campaign -*SibApiV3Sdk.EmailCampaignsApi* | [**uploadImageToGallery**](docs/EmailCampaignsApi.md#uploadImageToGallery) | **POST** /emailCampaigns/images | Upload an image to your account's image gallery -*SibApiV3Sdk.FoldersApi* | [**createFolder**](docs/FoldersApi.md#createFolder) | **POST** /contacts/folders | Create a folder -*SibApiV3Sdk.FoldersApi* | [**deleteFolder**](docs/FoldersApi.md#deleteFolder) | **DELETE** /contacts/folders/{folderId} | Delete a folder (and all its lists) -*SibApiV3Sdk.FoldersApi* | [**getFolder**](docs/FoldersApi.md#getFolder) | **GET** /contacts/folders/{folderId} | Returns a folder's details -*SibApiV3Sdk.FoldersApi* | [**getFolderLists**](docs/FoldersApi.md#getFolderLists) | **GET** /contacts/folders/{folderId}/lists | Get lists in a folder -*SibApiV3Sdk.FoldersApi* | [**getFolders**](docs/FoldersApi.md#getFolders) | **GET** /contacts/folders | Get all folders -*SibApiV3Sdk.FoldersApi* | [**updateFolder**](docs/FoldersApi.md#updateFolder) | **PUT** /contacts/folders/{folderId} | Update a folder -*SibApiV3Sdk.ListsApi* | [**addContactToList**](docs/ListsApi.md#addContactToList) | **POST** /contacts/lists/{listId}/contacts/add | Add existing contacts to a list -*SibApiV3Sdk.ListsApi* | [**createList**](docs/ListsApi.md#createList) | **POST** /contacts/lists | Create a list -*SibApiV3Sdk.ListsApi* | [**deleteList**](docs/ListsApi.md#deleteList) | **DELETE** /contacts/lists/{listId} | Delete a list -*SibApiV3Sdk.ListsApi* | [**getContactsFromList**](docs/ListsApi.md#getContactsFromList) | **GET** /contacts/lists/{listId}/contacts | Get contacts in a list -*SibApiV3Sdk.ListsApi* | [**getFolderLists**](docs/ListsApi.md#getFolderLists) | **GET** /contacts/folders/{folderId}/lists | Get lists in a folder -*SibApiV3Sdk.ListsApi* | [**getList**](docs/ListsApi.md#getList) | **GET** /contacts/lists/{listId} | Get a list's details -*SibApiV3Sdk.ListsApi* | [**getLists**](docs/ListsApi.md#getLists) | **GET** /contacts/lists | Get all the lists -*SibApiV3Sdk.ListsApi* | [**removeContactFromList**](docs/ListsApi.md#removeContactFromList) | **POST** /contacts/lists/{listId}/contacts/remove | Delete a contact from a list -*SibApiV3Sdk.ListsApi* | [**updateList**](docs/ListsApi.md#updateList) | **PUT** /contacts/lists/{listId} | Update a list -*SibApiV3Sdk.ProcessApi* | [**getProcess**](docs/ProcessApi.md#getProcess) | **GET** /processes/{processId} | Return the informations for a process -*SibApiV3Sdk.ProcessApi* | [**getProcesses**](docs/ProcessApi.md#getProcesses) | **GET** /processes | Return all the processes for your account -*SibApiV3Sdk.ResellerApi* | [**addCredits**](docs/ResellerApi.md#addCredits) | **POST** /reseller/children/{childIdentifier}/credits/add | Add Email and/or SMS credits to a specific child account -*SibApiV3Sdk.ResellerApi* | [**associateIpToChild**](docs/ResellerApi.md#associateIpToChild) | **POST** /reseller/children/{childIdentifier}/ips/associate | Associate a dedicated IP to the child -*SibApiV3Sdk.ResellerApi* | [**createChildDomain**](docs/ResellerApi.md#createChildDomain) | **POST** /reseller/children/{childIdentifier}/domains | Create a domain for a child account -*SibApiV3Sdk.ResellerApi* | [**createResellerChild**](docs/ResellerApi.md#createResellerChild) | **POST** /reseller/children | Creates a reseller child -*SibApiV3Sdk.ResellerApi* | [**deleteChildDomain**](docs/ResellerApi.md#deleteChildDomain) | **DELETE** /reseller/children/{childIdentifier}/domains/{domainName} | Delete the sender domain of the reseller child based on the childIdentifier and domainName passed -*SibApiV3Sdk.ResellerApi* | [**deleteResellerChild**](docs/ResellerApi.md#deleteResellerChild) | **DELETE** /reseller/children/{childIdentifier} | Delete a single reseller child based on the child identifier supplied -*SibApiV3Sdk.ResellerApi* | [**dissociateIpFromChild**](docs/ResellerApi.md#dissociateIpFromChild) | **POST** /reseller/children/{childIdentifier}/ips/dissociate | Dissociate a dedicated IP to the child -*SibApiV3Sdk.ResellerApi* | [**getChildAccountCreationStatus**](docs/ResellerApi.md#getChildAccountCreationStatus) | **GET** /reseller/children/{childIdentifier}/accountCreationStatus | Get the status of a reseller's child account creation, whether it is successfully created (exists) or not based on the identifier supplied -*SibApiV3Sdk.ResellerApi* | [**getChildDomains**](docs/ResellerApi.md#getChildDomains) | **GET** /reseller/children/{childIdentifier}/domains | Get all sender domains for a specific child account -*SibApiV3Sdk.ResellerApi* | [**getChildInfo**](docs/ResellerApi.md#getChildInfo) | **GET** /reseller/children/{childIdentifier} | Get a child account's details -*SibApiV3Sdk.ResellerApi* | [**getResellerChilds**](docs/ResellerApi.md#getResellerChilds) | **GET** /reseller/children | Get the list of all children accounts -*SibApiV3Sdk.ResellerApi* | [**getSsoToken**](docs/ResellerApi.md#getSsoToken) | **GET** /reseller/children/{childIdentifier}/auth | Get session token to access Sendinblue (SSO) -*SibApiV3Sdk.ResellerApi* | [**removeCredits**](docs/ResellerApi.md#removeCredits) | **POST** /reseller/children/{childIdentifier}/credits/remove | Remove Email and/or SMS credits from a specific child account -*SibApiV3Sdk.ResellerApi* | [**updateChildAccountStatus**](docs/ResellerApi.md#updateChildAccountStatus) | **PUT** /reseller/children/{childIdentifier}/accountStatus | Update info of reseller's child account status based on the childIdentifier supplied -*SibApiV3Sdk.ResellerApi* | [**updateChildDomain**](docs/ResellerApi.md#updateChildDomain) | **PUT** /reseller/children/{childIdentifier}/domains/{domainName} | Update the sender domain of reseller's child based on the childIdentifier and domainName passed -*SibApiV3Sdk.ResellerApi* | [**updateResellerChild**](docs/ResellerApi.md#updateResellerChild) | **PUT** /reseller/children/{childIdentifier} | Update info of reseller's child based on the child identifier supplied -*SibApiV3Sdk.SMSCampaignsApi* | [**createSmsCampaign**](docs/SMSCampaignsApi.md#createSmsCampaign) | **POST** /smsCampaigns | Creates an SMS campaign -*SibApiV3Sdk.SMSCampaignsApi* | [**deleteSmsCampaign**](docs/SMSCampaignsApi.md#deleteSmsCampaign) | **DELETE** /smsCampaigns/{campaignId} | Delete an SMS campaign -*SibApiV3Sdk.SMSCampaignsApi* | [**getSmsCampaign**](docs/SMSCampaignsApi.md#getSmsCampaign) | **GET** /smsCampaigns/{campaignId} | Get an SMS campaign -*SibApiV3Sdk.SMSCampaignsApi* | [**getSmsCampaigns**](docs/SMSCampaignsApi.md#getSmsCampaigns) | **GET** /smsCampaigns | Returns the information for all your created SMS campaigns -*SibApiV3Sdk.SMSCampaignsApi* | [**requestSmsRecipientExport**](docs/SMSCampaignsApi.md#requestSmsRecipientExport) | **POST** /smsCampaigns/{campaignId}/exportRecipients | Export an SMS campaign's recipients -*SibApiV3Sdk.SMSCampaignsApi* | [**sendSmsCampaignNow**](docs/SMSCampaignsApi.md#sendSmsCampaignNow) | **POST** /smsCampaigns/{campaignId}/sendNow | Send your SMS campaign immediately -*SibApiV3Sdk.SMSCampaignsApi* | [**sendSmsReport**](docs/SMSCampaignsApi.md#sendSmsReport) | **POST** /smsCampaigns/{campaignId}/sendReport | Send an SMS campaign's report -*SibApiV3Sdk.SMSCampaignsApi* | [**sendTestSms**](docs/SMSCampaignsApi.md#sendTestSms) | **POST** /smsCampaigns/{campaignId}/sendTest | Send a test SMS campaign -*SibApiV3Sdk.SMSCampaignsApi* | [**updateSmsCampaign**](docs/SMSCampaignsApi.md#updateSmsCampaign) | **PUT** /smsCampaigns/{campaignId} | Update an SMS campaign -*SibApiV3Sdk.SMSCampaignsApi* | [**updateSmsCampaignStatus**](docs/SMSCampaignsApi.md#updateSmsCampaignStatus) | **PUT** /smsCampaigns/{campaignId}/status | Update a campaign's status -*SibApiV3Sdk.SendersApi* | [**createSender**](docs/SendersApi.md#createSender) | **POST** /senders | Create a new sender -*SibApiV3Sdk.SendersApi* | [**deleteSender**](docs/SendersApi.md#deleteSender) | **DELETE** /senders/{senderId} | Delete a sender -*SibApiV3Sdk.SendersApi* | [**getIps**](docs/SendersApi.md#getIps) | **GET** /senders/ips | Get all the dedicated IPs for your account -*SibApiV3Sdk.SendersApi* | [**getIpsFromSender**](docs/SendersApi.md#getIpsFromSender) | **GET** /senders/{senderId}/ips | Get all the dedicated IPs for a sender -*SibApiV3Sdk.SendersApi* | [**getSenders**](docs/SendersApi.md#getSenders) | **GET** /senders | Get the list of all your senders -*SibApiV3Sdk.SendersApi* | [**updateSender**](docs/SendersApi.md#updateSender) | **PUT** /senders/{senderId} | Update a sender -*SibApiV3Sdk.TransactionalEmailsApi* | [**createSmtpTemplate**](docs/TransactionalEmailsApi.md#createSmtpTemplate) | **POST** /smtp/templates | Create an email template -*SibApiV3Sdk.TransactionalEmailsApi* | [**deleteHardbounces**](docs/TransactionalEmailsApi.md#deleteHardbounces) | **POST** /smtp/deleteHardbounces | Delete hardbounces -*SibApiV3Sdk.TransactionalEmailsApi* | [**deleteSmtpTemplate**](docs/TransactionalEmailsApi.md#deleteSmtpTemplate) | **DELETE** /smtp/templates/{templateId} | Delete an inactive email template -*SibApiV3Sdk.TransactionalEmailsApi* | [**getAggregatedSmtpReport**](docs/TransactionalEmailsApi.md#getAggregatedSmtpReport) | **GET** /smtp/statistics/aggregatedReport | Get your transactional email activity aggregated over a period of time -*SibApiV3Sdk.TransactionalEmailsApi* | [**getEmailEventReport**](docs/TransactionalEmailsApi.md#getEmailEventReport) | **GET** /smtp/statistics/events | Get all your transactional email activity (unaggregated events) -*SibApiV3Sdk.TransactionalEmailsApi* | [**getSmtpReport**](docs/TransactionalEmailsApi.md#getSmtpReport) | **GET** /smtp/statistics/reports | Get your transactional email activity aggregated per day -*SibApiV3Sdk.TransactionalEmailsApi* | [**getSmtpTemplate**](docs/TransactionalEmailsApi.md#getSmtpTemplate) | **GET** /smtp/templates/{templateId} | Returns the template information -*SibApiV3Sdk.TransactionalEmailsApi* | [**getSmtpTemplates**](docs/TransactionalEmailsApi.md#getSmtpTemplates) | **GET** /smtp/templates | Get the list of email templates -*SibApiV3Sdk.TransactionalEmailsApi* | [**getTransacBlockedContacts**](docs/TransactionalEmailsApi.md#getTransacBlockedContacts) | **GET** /smtp/blockedContacts | Get the list of blocked or unsubscribed transactional contacts -*SibApiV3Sdk.TransactionalEmailsApi* | [**getTransacEmailContent**](docs/TransactionalEmailsApi.md#getTransacEmailContent) | **GET** /smtp/emails/{uuid} | Get the personalized content of a sent transactional email -*SibApiV3Sdk.TransactionalEmailsApi* | [**getTransacEmailsList**](docs/TransactionalEmailsApi.md#getTransacEmailsList) | **GET** /smtp/emails | Get the list of transactional emails on the basis of allowed filters -*SibApiV3Sdk.TransactionalEmailsApi* | [**sendTemplate**](docs/TransactionalEmailsApi.md#sendTemplate) | **POST** /smtp/templates/{templateId}/send | Send a template -*SibApiV3Sdk.TransactionalEmailsApi* | [**sendTestTemplate**](docs/TransactionalEmailsApi.md#sendTestTemplate) | **POST** /smtp/templates/{templateId}/sendTest | Send a template to your test list -*SibApiV3Sdk.TransactionalEmailsApi* | [**sendTransacEmail**](docs/TransactionalEmailsApi.md#sendTransacEmail) | **POST** /smtp/email | Send a transactional email -*SibApiV3Sdk.TransactionalEmailsApi* | [**smtpBlockedContactsEmailDelete**](docs/TransactionalEmailsApi.md#smtpBlockedContactsEmailDelete) | **DELETE** /smtp/blockedContacts/{email} | Unblock or resubscribe a transactional contact -*SibApiV3Sdk.TransactionalEmailsApi* | [**smtpLogMessageIdDelete**](docs/TransactionalEmailsApi.md#smtpLogMessageIdDelete) | **DELETE** /smtp/log/{messageId} | Delete an SMTP transactional log -*SibApiV3Sdk.TransactionalEmailsApi* | [**updateSmtpTemplate**](docs/TransactionalEmailsApi.md#updateSmtpTemplate) | **PUT** /smtp/templates/{templateId} | Update an email template -*SibApiV3Sdk.TransactionalSMSApi* | [**getSmsEvents**](docs/TransactionalSMSApi.md#getSmsEvents) | **GET** /transactionalSMS/statistics/events | Get all your SMS activity (unaggregated events) -*SibApiV3Sdk.TransactionalSMSApi* | [**getTransacAggregatedSmsReport**](docs/TransactionalSMSApi.md#getTransacAggregatedSmsReport) | **GET** /transactionalSMS/statistics/aggregatedReport | Get your SMS activity aggregated over a period of time -*SibApiV3Sdk.TransactionalSMSApi* | [**getTransacSmsReport**](docs/TransactionalSMSApi.md#getTransacSmsReport) | **GET** /transactionalSMS/statistics/reports | Get your SMS activity aggregated per day -*SibApiV3Sdk.TransactionalSMSApi* | [**sendTransacSms**](docs/TransactionalSMSApi.md#sendTransacSms) | **POST** /transactionalSMS/sms | Send SMS message to a mobile number -*SibApiV3Sdk.WebhooksApi* | [**createWebhook**](docs/WebhooksApi.md#createWebhook) | **POST** /webhooks | Create a webhook -*SibApiV3Sdk.WebhooksApi* | [**deleteWebhook**](docs/WebhooksApi.md#deleteWebhook) | **DELETE** /webhooks/{webhookId} | Delete a webhook -*SibApiV3Sdk.WebhooksApi* | [**getWebhook**](docs/WebhooksApi.md#getWebhook) | **GET** /webhooks/{webhookId} | Get a webhook details -*SibApiV3Sdk.WebhooksApi* | [**getWebhooks**](docs/WebhooksApi.md#getWebhooks) | **GET** /webhooks | Get all webhooks -*SibApiV3Sdk.WebhooksApi* | [**updateWebhook**](docs/WebhooksApi.md#updateWebhook) | **PUT** /webhooks/{webhookId} | Update a webhook +*PakatApiV3Sdk.AccountApi* | [**getAccount**](docs/AccountApi.md#getAccount) | **GET** /account | Get your account information, plan and credits details +*PakatApiV3Sdk.AttributesApi* | [**createAttribute**](docs/AttributesApi.md#createAttribute) | **POST** /contacts/attributes/{attributeCategory}/{attributeName} | Create contact attribute +*PakatApiV3Sdk.AttributesApi* | [**deleteAttribute**](docs/AttributesApi.md#deleteAttribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Delete an attribute +*PakatApiV3Sdk.AttributesApi* | [**getAttributes**](docs/AttributesApi.md#getAttributes) | **GET** /contacts/attributes | List all attributes +*PakatApiV3Sdk.AttributesApi* | [**updateAttribute**](docs/AttributesApi.md#updateAttribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Update contact attribute +*PakatApiV3Sdk.ContactsApi* | [**addContactToList**](docs/ContactsApi.md#addContactToList) | **POST** /contacts/lists/{listId}/contacts/add | Add existing contacts to a list +*PakatApiV3Sdk.ContactsApi* | [**createAttribute**](docs/ContactsApi.md#createAttribute) | **POST** /contacts/attributes/{attributeCategory}/{attributeName} | Create contact attribute +*PakatApiV3Sdk.ContactsApi* | [**createContact**](docs/ContactsApi.md#createContact) | **POST** /contacts | Create a contact +*PakatApiV3Sdk.ContactsApi* | [**createDoiContact**](docs/ContactsApi.md#createDoiContact) | **POST** /contacts/doubleOptinConfirmation | Create Contact via DOI (Double-Opt-In) Flow +*PakatApiV3Sdk.ContactsApi* | [**createFolder**](docs/ContactsApi.md#createFolder) | **POST** /contacts/folders | Create a folder +*PakatApiV3Sdk.ContactsApi* | [**createList**](docs/ContactsApi.md#createList) | **POST** /contacts/lists | Create a list +*PakatApiV3Sdk.ContactsApi* | [**deleteAttribute**](docs/ContactsApi.md#deleteAttribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Delete an attribute +*PakatApiV3Sdk.ContactsApi* | [**deleteContact**](docs/ContactsApi.md#deleteContact) | **DELETE** /contacts/{identifier} | Delete a contact +*PakatApiV3Sdk.ContactsApi* | [**deleteFolder**](docs/ContactsApi.md#deleteFolder) | **DELETE** /contacts/folders/{folderId} | Delete a folder (and all its lists) +*PakatApiV3Sdk.ContactsApi* | [**deleteList**](docs/ContactsApi.md#deleteList) | **DELETE** /contacts/lists/{listId} | Delete a list +*PakatApiV3Sdk.ContactsApi* | [**getAttributes**](docs/ContactsApi.md#getAttributes) | **GET** /contacts/attributes | List all attributes +*PakatApiV3Sdk.ContactsApi* | [**getContactInfo**](docs/ContactsApi.md#getContactInfo) | **GET** /contacts/{identifier} | Get a contact's details +*PakatApiV3Sdk.ContactsApi* | [**getContactStats**](docs/ContactsApi.md#getContactStats) | **GET** /contacts/{identifier}/campaignStats | Get email campaigns' statistics for a contact +*PakatApiV3Sdk.ContactsApi* | [**getContacts**](docs/ContactsApi.md#getContacts) | **GET** /contacts | Get all the contacts +*PakatApiV3Sdk.ContactsApi* | [**getContactsFromList**](docs/ContactsApi.md#getContactsFromList) | **GET** /contacts/lists/{listId}/contacts | Get contacts in a list +*PakatApiV3Sdk.ContactsApi* | [**getFolder**](docs/ContactsApi.md#getFolder) | **GET** /contacts/folders/{folderId} | Returns a folder's details +*PakatApiV3Sdk.ContactsApi* | [**getFolderLists**](docs/ContactsApi.md#getFolderLists) | **GET** /contacts/folders/{folderId}/lists | Get lists in a folder +*PakatApiV3Sdk.ContactsApi* | [**getFolders**](docs/ContactsApi.md#getFolders) | **GET** /contacts/folders | Get all folders +*PakatApiV3Sdk.ContactsApi* | [**getList**](docs/ContactsApi.md#getList) | **GET** /contacts/lists/{listId} | Get a list's details +*PakatApiV3Sdk.ContactsApi* | [**getLists**](docs/ContactsApi.md#getLists) | **GET** /contacts/lists | Get all the lists +*PakatApiV3Sdk.ContactsApi* | [**importContacts**](docs/ContactsApi.md#importContacts) | **POST** /contacts/import | Import contacts +*PakatApiV3Sdk.ContactsApi* | [**removeContactFromList**](docs/ContactsApi.md#removeContactFromList) | **POST** /contacts/lists/{listId}/contacts/remove | Delete a contact from a list +*PakatApiV3Sdk.ContactsApi* | [**requestContactExport**](docs/ContactsApi.md#requestContactExport) | **POST** /contacts/export | Export contacts +*PakatApiV3Sdk.ContactsApi* | [**updateAttribute**](docs/ContactsApi.md#updateAttribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Update contact attribute +*PakatApiV3Sdk.ContactsApi* | [**updateContact**](docs/ContactsApi.md#updateContact) | **PUT** /contacts/{identifier} | Update a contact +*PakatApiV3Sdk.ContactsApi* | [**updateFolder**](docs/ContactsApi.md#updateFolder) | **PUT** /contacts/folders/{folderId} | Update a folder +*PakatApiV3Sdk.ContactsApi* | [**updateList**](docs/ContactsApi.md#updateList) | **PUT** /contacts/lists/{listId} | Update a list +*PakatApiV3Sdk.EmailCampaignsApi* | [**createEmailCampaign**](docs/EmailCampaignsApi.md#createEmailCampaign) | **POST** /emailCampaigns | Create an email campaign +*PakatApiV3Sdk.EmailCampaignsApi* | [**deleteEmailCampaign**](docs/EmailCampaignsApi.md#deleteEmailCampaign) | **DELETE** /emailCampaigns/{campaignId} | Delete an email campaign +*PakatApiV3Sdk.EmailCampaignsApi* | [**emailExportRecipients**](docs/EmailCampaignsApi.md#emailExportRecipients) | **POST** /emailCampaigns/{campaignId}/exportRecipients | Export the recipients of an email campaign +*PakatApiV3Sdk.EmailCampaignsApi* | [**getAbTestCampaignResult**](docs/EmailCampaignsApi.md#getAbTestCampaignResult) | **GET** /emailCampaigns/{campaignId}/abTestCampaignResult | Get an A/B test email campaign results +*PakatApiV3Sdk.EmailCampaignsApi* | [**getEmailCampaign**](docs/EmailCampaignsApi.md#getEmailCampaign) | **GET** /emailCampaigns/{campaignId} | Get an email campaign report +*PakatApiV3Sdk.EmailCampaignsApi* | [**getEmailCampaigns**](docs/EmailCampaignsApi.md#getEmailCampaigns) | **GET** /emailCampaigns | Return all your created email campaigns +*PakatApiV3Sdk.EmailCampaignsApi* | [**getSharedTemplateUrl**](docs/EmailCampaignsApi.md#getSharedTemplateUrl) | **GET** /emailCampaigns/{campaignId}/sharedUrl | Get a shared template url +*PakatApiV3Sdk.EmailCampaignsApi* | [**sendEmailCampaignNow**](docs/EmailCampaignsApi.md#sendEmailCampaignNow) | **POST** /emailCampaigns/{campaignId}/sendNow | Send an email campaign immediately, based on campaignId +*PakatApiV3Sdk.EmailCampaignsApi* | [**sendReport**](docs/EmailCampaignsApi.md#sendReport) | **POST** /emailCampaigns/{campaignId}/sendReport | Send the report of a campaign +*PakatApiV3Sdk.EmailCampaignsApi* | [**sendTestEmail**](docs/EmailCampaignsApi.md#sendTestEmail) | **POST** /emailCampaigns/{campaignId}/sendTest | Send an email campaign to your test list +*PakatApiV3Sdk.EmailCampaignsApi* | [**updateCampaignStatus**](docs/EmailCampaignsApi.md#updateCampaignStatus) | **PUT** /emailCampaigns/{campaignId}/status | Update an email campaign status +*PakatApiV3Sdk.EmailCampaignsApi* | [**updateEmailCampaign**](docs/EmailCampaignsApi.md#updateEmailCampaign) | **PUT** /emailCampaigns/{campaignId} | Update an email campaign +*PakatApiV3Sdk.EmailCampaignsApi* | [**uploadImageToGallery**](docs/EmailCampaignsApi.md#uploadImageToGallery) | **POST** /emailCampaigns/images | Upload an image to your account's image gallery +*PakatApiV3Sdk.FoldersApi* | [**createFolder**](docs/FoldersApi.md#createFolder) | **POST** /contacts/folders | Create a folder +*PakatApiV3Sdk.FoldersApi* | [**deleteFolder**](docs/FoldersApi.md#deleteFolder) | **DELETE** /contacts/folders/{folderId} | Delete a folder (and all its lists) +*PakatApiV3Sdk.FoldersApi* | [**getFolder**](docs/FoldersApi.md#getFolder) | **GET** /contacts/folders/{folderId} | Returns a folder's details +*PakatApiV3Sdk.FoldersApi* | [**getFolderLists**](docs/FoldersApi.md#getFolderLists) | **GET** /contacts/folders/{folderId}/lists | Get lists in a folder +*PakatApiV3Sdk.FoldersApi* | [**getFolders**](docs/FoldersApi.md#getFolders) | **GET** /contacts/folders | Get all folders +*PakatApiV3Sdk.FoldersApi* | [**updateFolder**](docs/FoldersApi.md#updateFolder) | **PUT** /contacts/folders/{folderId} | Update a folder +*PakatApiV3Sdk.ListsApi* | [**addContactToList**](docs/ListsApi.md#addContactToList) | **POST** /contacts/lists/{listId}/contacts/add | Add existing contacts to a list +*PakatApiV3Sdk.ListsApi* | [**createList**](docs/ListsApi.md#createList) | **POST** /contacts/lists | Create a list +*PakatApiV3Sdk.ListsApi* | [**deleteList**](docs/ListsApi.md#deleteList) | **DELETE** /contacts/lists/{listId} | Delete a list +*PakatApiV3Sdk.ListsApi* | [**getContactsFromList**](docs/ListsApi.md#getContactsFromList) | **GET** /contacts/lists/{listId}/contacts | Get contacts in a list +*PakatApiV3Sdk.ListsApi* | [**getFolderLists**](docs/ListsApi.md#getFolderLists) | **GET** /contacts/folders/{folderId}/lists | Get lists in a folder +*PakatApiV3Sdk.ListsApi* | [**getList**](docs/ListsApi.md#getList) | **GET** /contacts/lists/{listId} | Get a list's details +*PakatApiV3Sdk.ListsApi* | [**getLists**](docs/ListsApi.md#getLists) | **GET** /contacts/lists | Get all the lists +*PakatApiV3Sdk.ListsApi* | [**removeContactFromList**](docs/ListsApi.md#removeContactFromList) | **POST** /contacts/lists/{listId}/contacts/remove | Delete a contact from a list +*PakatApiV3Sdk.ListsApi* | [**updateList**](docs/ListsApi.md#updateList) | **PUT** /contacts/lists/{listId} | Update a list +*PakatApiV3Sdk.ProcessApi* | [**getProcess**](docs/ProcessApi.md#getProcess) | **GET** /processes/{processId} | Return the informations for a process +*PakatApiV3Sdk.ProcessApi* | [**getProcesses**](docs/ProcessApi.md#getProcesses) | **GET** /processes | Return all the processes for your account +*PakatApiV3Sdk.ResellerApi* | [**addCredits**](docs/ResellerApi.md#addCredits) | **POST** /reseller/children/{childIdentifier}/credits/add | Add Email and/or SMS credits to a specific child account +*PakatApiV3Sdk.ResellerApi* | [**associateIpToChild**](docs/ResellerApi.md#associateIpToChild) | **POST** /reseller/children/{childIdentifier}/ips/associate | Associate a dedicated IP to the child +*PakatApiV3Sdk.ResellerApi* | [**createChildDomain**](docs/ResellerApi.md#createChildDomain) | **POST** /reseller/children/{childIdentifier}/domains | Create a domain for a child account +*PakatApiV3Sdk.ResellerApi* | [**createResellerChild**](docs/ResellerApi.md#createResellerChild) | **POST** /reseller/children | Creates a reseller child +*PakatApiV3Sdk.ResellerApi* | [**deleteChildDomain**](docs/ResellerApi.md#deleteChildDomain) | **DELETE** /reseller/children/{childIdentifier}/domains/{domainName} | Delete the sender domain of the reseller child based on the childIdentifier and domainName passed +*PakatApiV3Sdk.ResellerApi* | [**deleteResellerChild**](docs/ResellerApi.md#deleteResellerChild) | **DELETE** /reseller/children/{childIdentifier} | Delete a single reseller child based on the child identifier supplied +*PakatApiV3Sdk.ResellerApi* | [**dissociateIpFromChild**](docs/ResellerApi.md#dissociateIpFromChild) | **POST** /reseller/children/{childIdentifier}/ips/dissociate | Dissociate a dedicated IP to the child +*PakatApiV3Sdk.ResellerApi* | [**getChildAccountCreationStatus**](docs/ResellerApi.md#getChildAccountCreationStatus) | **GET** /reseller/children/{childIdentifier}/accountCreationStatus | Get the status of a reseller's child account creation, whether it is successfully created (exists) or not based on the identifier supplied +*PakatApiV3Sdk.ResellerApi* | [**getChildDomains**](docs/ResellerApi.md#getChildDomains) | **GET** /reseller/children/{childIdentifier}/domains | Get all sender domains for a specific child account +*PakatApiV3Sdk.ResellerApi* | [**getChildInfo**](docs/ResellerApi.md#getChildInfo) | **GET** /reseller/children/{childIdentifier} | Get a child account's details +*PakatApiV3Sdk.ResellerApi* | [**getResellerChilds**](docs/ResellerApi.md#getResellerChilds) | **GET** /reseller/children | Get the list of all children accounts +*PakatApiV3Sdk.ResellerApi* | [**getSsoToken**](docs/ResellerApi.md#getSsoToken) | **GET** /reseller/children/{childIdentifier}/auth | Get session token to access Sendinblue (SSO) +*PakatApiV3Sdk.ResellerApi* | [**removeCredits**](docs/ResellerApi.md#removeCredits) | **POST** /reseller/children/{childIdentifier}/credits/remove | Remove Email and/or SMS credits from a specific child account +*PakatApiV3Sdk.ResellerApi* | [**updateChildAccountStatus**](docs/ResellerApi.md#updateChildAccountStatus) | **PUT** /reseller/children/{childIdentifier}/accountStatus | Update info of reseller's child account status based on the childIdentifier supplied +*PakatApiV3Sdk.ResellerApi* | [**updateChildDomain**](docs/ResellerApi.md#updateChildDomain) | **PUT** /reseller/children/{childIdentifier}/domains/{domainName} | Update the sender domain of reseller's child based on the childIdentifier and domainName passed +*PakatApiV3Sdk.ResellerApi* | [**updateResellerChild**](docs/ResellerApi.md#updateResellerChild) | **PUT** /reseller/children/{childIdentifier} | Update info of reseller's child based on the child identifier supplied +*PakatApiV3Sdk.SMSCampaignsApi* | [**createSmsCampaign**](docs/SMSCampaignsApi.md#createSmsCampaign) | **POST** /smsCampaigns | Creates an SMS campaign +*PakatApiV3Sdk.SMSCampaignsApi* | [**deleteSmsCampaign**](docs/SMSCampaignsApi.md#deleteSmsCampaign) | **DELETE** /smsCampaigns/{campaignId} | Delete an SMS campaign +*PakatApiV3Sdk.SMSCampaignsApi* | [**getSmsCampaign**](docs/SMSCampaignsApi.md#getSmsCampaign) | **GET** /smsCampaigns/{campaignId} | Get an SMS campaign +*PakatApiV3Sdk.SMSCampaignsApi* | [**getSmsCampaigns**](docs/SMSCampaignsApi.md#getSmsCampaigns) | **GET** /smsCampaigns | Returns the information for all your created SMS campaigns +*PakatApiV3Sdk.SMSCampaignsApi* | [**requestSmsRecipientExport**](docs/SMSCampaignsApi.md#requestSmsRecipientExport) | **POST** /smsCampaigns/{campaignId}/exportRecipients | Export an SMS campaign's recipients +*PakatApiV3Sdk.SMSCampaignsApi* | [**sendSmsCampaignNow**](docs/SMSCampaignsApi.md#sendSmsCampaignNow) | **POST** /smsCampaigns/{campaignId}/sendNow | Send your SMS campaign immediately +*PakatApiV3Sdk.SMSCampaignsApi* | [**sendSmsReport**](docs/SMSCampaignsApi.md#sendSmsReport) | **POST** /smsCampaigns/{campaignId}/sendReport | Send an SMS campaign's report +*PakatApiV3Sdk.SMSCampaignsApi* | [**sendTestSms**](docs/SMSCampaignsApi.md#sendTestSms) | **POST** /smsCampaigns/{campaignId}/sendTest | Send a test SMS campaign +*PakatApiV3Sdk.SMSCampaignsApi* | [**updateSmsCampaign**](docs/SMSCampaignsApi.md#updateSmsCampaign) | **PUT** /smsCampaigns/{campaignId} | Update an SMS campaign +*PakatApiV3Sdk.SMSCampaignsApi* | [**updateSmsCampaignStatus**](docs/SMSCampaignsApi.md#updateSmsCampaignStatus) | **PUT** /smsCampaigns/{campaignId}/status | Update a campaign's status +*PakatApiV3Sdk.SendersApi* | [**createSender**](docs/SendersApi.md#createSender) | **POST** /senders | Create a new sender +*PakatApiV3Sdk.SendersApi* | [**deleteSender**](docs/SendersApi.md#deleteSender) | **DELETE** /senders/{senderId} | Delete a sender +*PakatApiV3Sdk.SendersApi* | [**getIps**](docs/SendersApi.md#getIps) | **GET** /senders/ips | Get all the dedicated IPs for your account +*PakatApiV3Sdk.SendersApi* | [**getIpsFromSender**](docs/SendersApi.md#getIpsFromSender) | **GET** /senders/{senderId}/ips | Get all the dedicated IPs for a sender +*PakatApiV3Sdk.SendersApi* | [**getSenders**](docs/SendersApi.md#getSenders) | **GET** /senders | Get the list of all your senders +*PakatApiV3Sdk.SendersApi* | [**updateSender**](docs/SendersApi.md#updateSender) | **PUT** /senders/{senderId} | Update a sender +*PakatApiV3Sdk.TransactionalEmailsApi* | [**createSmtpTemplate**](docs/TransactionalEmailsApi.md#createSmtpTemplate) | **POST** /smtp/templates | Create an email template +*PakatApiV3Sdk.TransactionalEmailsApi* | [**deleteHardbounces**](docs/TransactionalEmailsApi.md#deleteHardbounces) | **POST** /smtp/deleteHardbounces | Delete hardbounces +*PakatApiV3Sdk.TransactionalEmailsApi* | [**deleteSmtpTemplate**](docs/TransactionalEmailsApi.md#deleteSmtpTemplate) | **DELETE** /smtp/templates/{templateId} | Delete an inactive email template +*PakatApiV3Sdk.TransactionalEmailsApi* | [**getAggregatedSmtpReport**](docs/TransactionalEmailsApi.md#getAggregatedSmtpReport) | **GET** /smtp/statistics/aggregatedReport | Get your transactional email activity aggregated over a period of time +*PakatApiV3Sdk.TransactionalEmailsApi* | [**getEmailEventReport**](docs/TransactionalEmailsApi.md#getEmailEventReport) | **GET** /smtp/statistics/events | Get all your transactional email activity (unaggregated events) +*PakatApiV3Sdk.TransactionalEmailsApi* | [**getSmtpReport**](docs/TransactionalEmailsApi.md#getSmtpReport) | **GET** /smtp/statistics/reports | Get your transactional email activity aggregated per day +*PakatApiV3Sdk.TransactionalEmailsApi* | [**getSmtpTemplate**](docs/TransactionalEmailsApi.md#getSmtpTemplate) | **GET** /smtp/templates/{templateId} | Returns the template information +*PakatApiV3Sdk.TransactionalEmailsApi* | [**getSmtpTemplates**](docs/TransactionalEmailsApi.md#getSmtpTemplates) | **GET** /smtp/templates | Get the list of email templates +*PakatApiV3Sdk.TransactionalEmailsApi* | [**getTransacBlockedContacts**](docs/TransactionalEmailsApi.md#getTransacBlockedContacts) | **GET** /smtp/blockedContacts | Get the list of blocked or unsubscribed transactional contacts +*PakatApiV3Sdk.TransactionalEmailsApi* | [**getTransacEmailContent**](docs/TransactionalEmailsApi.md#getTransacEmailContent) | **GET** /smtp/emails/{uuid} | Get the personalized content of a sent transactional email +*PakatApiV3Sdk.TransactionalEmailsApi* | [**getTransacEmailsList**](docs/TransactionalEmailsApi.md#getTransacEmailsList) | **GET** /smtp/emails | Get the list of transactional emails on the basis of allowed filters +*PakatApiV3Sdk.TransactionalEmailsApi* | [**sendTemplate**](docs/TransactionalEmailsApi.md#sendTemplate) | **POST** /smtp/templates/{templateId}/send | Send a template +*PakatApiV3Sdk.TransactionalEmailsApi* | [**sendTestTemplate**](docs/TransactionalEmailsApi.md#sendTestTemplate) | **POST** /smtp/templates/{templateId}/sendTest | Send a template to your test list +*PakatApiV3Sdk.TransactionalEmailsApi* | [**sendTransacEmail**](docs/TransactionalEmailsApi.md#sendTransacEmail) | **POST** /smtp/email | Send a transactional email +*PakatApiV3Sdk.TransactionalEmailsApi* | [**smtpBlockedContactsEmailDelete**](docs/TransactionalEmailsApi.md#smtpBlockedContactsEmailDelete) | **DELETE** /smtp/blockedContacts/{email} | Unblock or resubscribe a transactional contact +*PakatApiV3Sdk.TransactionalEmailsApi* | [**smtpLogMessageIdDelete**](docs/TransactionalEmailsApi.md#smtpLogMessageIdDelete) | **DELETE** /smtp/log/{messageId} | Delete an SMTP transactional log +*PakatApiV3Sdk.TransactionalEmailsApi* | [**updateSmtpTemplate**](docs/TransactionalEmailsApi.md#updateSmtpTemplate) | **PUT** /smtp/templates/{templateId} | Update an email template +*PakatApiV3Sdk.TransactionalSMSApi* | [**getSmsEvents**](docs/TransactionalSMSApi.md#getSmsEvents) | **GET** /transactionalSMS/statistics/events | Get all your SMS activity (unaggregated events) +*PakatApiV3Sdk.TransactionalSMSApi* | [**getTransacAggregatedSmsReport**](docs/TransactionalSMSApi.md#getTransacAggregatedSmsReport) | **GET** /transactionalSMS/statistics/aggregatedReport | Get your SMS activity aggregated over a period of time +*PakatApiV3Sdk.TransactionalSMSApi* | [**getTransacSmsReport**](docs/TransactionalSMSApi.md#getTransacSmsReport) | **GET** /transactionalSMS/statistics/reports | Get your SMS activity aggregated per day +*PakatApiV3Sdk.TransactionalSMSApi* | [**sendTransacSms**](docs/TransactionalSMSApi.md#sendTransacSms) | **POST** /transactionalSMS/sms | Send SMS message to a mobile number +*PakatApiV3Sdk.WebhooksApi* | [**createWebhook**](docs/WebhooksApi.md#createWebhook) | **POST** /webhooks | Create a webhook +*PakatApiV3Sdk.WebhooksApi* | [**deleteWebhook**](docs/WebhooksApi.md#deleteWebhook) | **DELETE** /webhooks/{webhookId} | Delete a webhook +*PakatApiV3Sdk.WebhooksApi* | [**getWebhook**](docs/WebhooksApi.md#getWebhook) | **GET** /webhooks/{webhookId} | Get a webhook details +*PakatApiV3Sdk.WebhooksApi* | [**getWebhooks**](docs/WebhooksApi.md#getWebhooks) | **GET** /webhooks | Get all webhooks +*PakatApiV3Sdk.WebhooksApi* | [**updateWebhook**](docs/WebhooksApi.md#updateWebhook) | **PUT** /webhooks/{webhookId} | Update a webhook ## Documentation for Models - - [SibApiV3Sdk.AbTestCampaignResult](docs/AbTestCampaignResult.md) - - [SibApiV3Sdk.AbTestCampaignResultClickedLinks](docs/AbTestCampaignResultClickedLinks.md) - - [SibApiV3Sdk.AbTestCampaignResultStatistics](docs/AbTestCampaignResultStatistics.md) - - [SibApiV3Sdk.AbTestVersionClicks](docs/AbTestVersionClicks.md) - - [SibApiV3Sdk.AbTestVersionClicksInner](docs/AbTestVersionClicksInner.md) - - [SibApiV3Sdk.AbTestVersionStats](docs/AbTestVersionStats.md) - - [SibApiV3Sdk.AddChildDomain](docs/AddChildDomain.md) - - [SibApiV3Sdk.AddContactToList](docs/AddContactToList.md) - - [SibApiV3Sdk.AddCredits](docs/AddCredits.md) - - [SibApiV3Sdk.CreateAttribute](docs/CreateAttribute.md) - - [SibApiV3Sdk.CreateAttributeEnumeration](docs/CreateAttributeEnumeration.md) - - [SibApiV3Sdk.CreateChild](docs/CreateChild.md) - - [SibApiV3Sdk.CreateContact](docs/CreateContact.md) - - [SibApiV3Sdk.CreateDoiContact](docs/CreateDoiContact.md) - - [SibApiV3Sdk.CreateEmailCampaign](docs/CreateEmailCampaign.md) - - [SibApiV3Sdk.CreateEmailCampaignRecipients](docs/CreateEmailCampaignRecipients.md) - - [SibApiV3Sdk.CreateEmailCampaignSender](docs/CreateEmailCampaignSender.md) - - [SibApiV3Sdk.CreateList](docs/CreateList.md) - - [SibApiV3Sdk.CreateModel](docs/CreateModel.md) - - [SibApiV3Sdk.CreateReseller](docs/CreateReseller.md) - - [SibApiV3Sdk.CreateSender](docs/CreateSender.md) - - [SibApiV3Sdk.CreateSenderIps](docs/CreateSenderIps.md) - - [SibApiV3Sdk.CreateSenderModel](docs/CreateSenderModel.md) - - [SibApiV3Sdk.CreateSmsCampaign](docs/CreateSmsCampaign.md) - - [SibApiV3Sdk.CreateSmsCampaignRecipients](docs/CreateSmsCampaignRecipients.md) - - [SibApiV3Sdk.CreateSmtpEmail](docs/CreateSmtpEmail.md) - - [SibApiV3Sdk.CreateSmtpTemplate](docs/CreateSmtpTemplate.md) - - [SibApiV3Sdk.CreateSmtpTemplateSender](docs/CreateSmtpTemplateSender.md) - - [SibApiV3Sdk.CreateUpdateContactModel](docs/CreateUpdateContactModel.md) - - [SibApiV3Sdk.CreateUpdateFolder](docs/CreateUpdateFolder.md) - - [SibApiV3Sdk.CreateWebhook](docs/CreateWebhook.md) - - [SibApiV3Sdk.CreatedProcessId](docs/CreatedProcessId.md) - - [SibApiV3Sdk.DeleteHardbounces](docs/DeleteHardbounces.md) - - [SibApiV3Sdk.EmailExportRecipients](docs/EmailExportRecipients.md) - - [SibApiV3Sdk.ErrorModel](docs/ErrorModel.md) - - [SibApiV3Sdk.GetAccountMarketingAutomation](docs/GetAccountMarketingAutomation.md) - - [SibApiV3Sdk.GetAccountPlan](docs/GetAccountPlan.md) - - [SibApiV3Sdk.GetAccountRelay](docs/GetAccountRelay.md) - - [SibApiV3Sdk.GetAccountRelayData](docs/GetAccountRelayData.md) - - [SibApiV3Sdk.GetAggregatedReport](docs/GetAggregatedReport.md) - - [SibApiV3Sdk.GetAttributes](docs/GetAttributes.md) - - [SibApiV3Sdk.GetAttributesAttributes](docs/GetAttributesAttributes.md) - - [SibApiV3Sdk.GetAttributesEnumeration](docs/GetAttributesEnumeration.md) - - [SibApiV3Sdk.GetCampaignOverview](docs/GetCampaignOverview.md) - - [SibApiV3Sdk.GetCampaignRecipients](docs/GetCampaignRecipients.md) - - [SibApiV3Sdk.GetCampaignStats](docs/GetCampaignStats.md) - - [SibApiV3Sdk.GetChildAccountCreationStatus](docs/GetChildAccountCreationStatus.md) - - [SibApiV3Sdk.GetChildDomain](docs/GetChildDomain.md) - - [SibApiV3Sdk.GetChildDomains](docs/GetChildDomains.md) - - [SibApiV3Sdk.GetChildInfoApiKeys](docs/GetChildInfoApiKeys.md) - - [SibApiV3Sdk.GetChildInfoApiKeysV2](docs/GetChildInfoApiKeysV2.md) - - [SibApiV3Sdk.GetChildInfoApiKeysV3](docs/GetChildInfoApiKeysV3.md) - - [SibApiV3Sdk.GetChildInfoCredits](docs/GetChildInfoCredits.md) - - [SibApiV3Sdk.GetChildInfoStatistics](docs/GetChildInfoStatistics.md) - - [SibApiV3Sdk.GetChildrenList](docs/GetChildrenList.md) - - [SibApiV3Sdk.GetClient](docs/GetClient.md) - - [SibApiV3Sdk.GetContactCampaignStats](docs/GetContactCampaignStats.md) - - [SibApiV3Sdk.GetContactCampaignStatsClicked](docs/GetContactCampaignStatsClicked.md) - - [SibApiV3Sdk.GetContactCampaignStatsOpened](docs/GetContactCampaignStatsOpened.md) - - [SibApiV3Sdk.GetContactCampaignStatsTransacAttributes](docs/GetContactCampaignStatsTransacAttributes.md) - - [SibApiV3Sdk.GetContactCampaignStatsUnsubscriptions](docs/GetContactCampaignStatsUnsubscriptions.md) - - [SibApiV3Sdk.GetContactDetails](docs/GetContactDetails.md) - - [SibApiV3Sdk.GetContacts](docs/GetContacts.md) - - [SibApiV3Sdk.GetDeviceBrowserStats](docs/GetDeviceBrowserStats.md) - - [SibApiV3Sdk.GetEmailCampaigns](docs/GetEmailCampaigns.md) - - [SibApiV3Sdk.GetEmailEventReport](docs/GetEmailEventReport.md) - - [SibApiV3Sdk.GetEmailEventReportEvents](docs/GetEmailEventReportEvents.md) - - [SibApiV3Sdk.GetExtendedCampaignOverviewSender](docs/GetExtendedCampaignOverviewSender.md) - - [SibApiV3Sdk.GetExtendedCampaignStats](docs/GetExtendedCampaignStats.md) - - [SibApiV3Sdk.GetExtendedClientAddress](docs/GetExtendedClientAddress.md) - - [SibApiV3Sdk.GetExtendedContactDetailsStatistics](docs/GetExtendedContactDetailsStatistics.md) - - [SibApiV3Sdk.GetExtendedContactDetailsStatisticsClicked](docs/GetExtendedContactDetailsStatisticsClicked.md) - - [SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks](docs/GetExtendedContactDetailsStatisticsLinks.md) - - [SibApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent](docs/GetExtendedContactDetailsStatisticsMessagesSent.md) - - [SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened](docs/GetExtendedContactDetailsStatisticsOpened.md) - - [SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions](docs/GetExtendedContactDetailsStatisticsUnsubscriptions.md) - - [SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription](docs/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.md) - - [SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription](docs/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.md) - - [SibApiV3Sdk.GetExtendedListCampaignStats](docs/GetExtendedListCampaignStats.md) - - [SibApiV3Sdk.GetFolder](docs/GetFolder.md) - - [SibApiV3Sdk.GetFolderLists](docs/GetFolderLists.md) - - [SibApiV3Sdk.GetFolders](docs/GetFolders.md) - - [SibApiV3Sdk.GetIp](docs/GetIp.md) - - [SibApiV3Sdk.GetIpFromSender](docs/GetIpFromSender.md) - - [SibApiV3Sdk.GetIps](docs/GetIps.md) - - [SibApiV3Sdk.GetIpsFromSender](docs/GetIpsFromSender.md) - - [SibApiV3Sdk.GetList](docs/GetList.md) - - [SibApiV3Sdk.GetLists](docs/GetLists.md) - - [SibApiV3Sdk.GetProcess](docs/GetProcess.md) - - [SibApiV3Sdk.GetProcesses](docs/GetProcesses.md) - - [SibApiV3Sdk.GetReports](docs/GetReports.md) - - [SibApiV3Sdk.GetReportsReports](docs/GetReportsReports.md) - - [SibApiV3Sdk.GetSendersList](docs/GetSendersList.md) - - [SibApiV3Sdk.GetSendersListIps](docs/GetSendersListIps.md) - - [SibApiV3Sdk.GetSendersListSenders](docs/GetSendersListSenders.md) - - [SibApiV3Sdk.GetSharedTemplateUrl](docs/GetSharedTemplateUrl.md) - - [SibApiV3Sdk.GetSmsCampaignOverview](docs/GetSmsCampaignOverview.md) - - [SibApiV3Sdk.GetSmsCampaignStats](docs/GetSmsCampaignStats.md) - - [SibApiV3Sdk.GetSmsCampaigns](docs/GetSmsCampaigns.md) - - [SibApiV3Sdk.GetSmsEventReport](docs/GetSmsEventReport.md) - - [SibApiV3Sdk.GetSmsEventReportEvents](docs/GetSmsEventReportEvents.md) - - [SibApiV3Sdk.GetSmtpTemplateOverview](docs/GetSmtpTemplateOverview.md) - - [SibApiV3Sdk.GetSmtpTemplateOverviewSender](docs/GetSmtpTemplateOverviewSender.md) - - [SibApiV3Sdk.GetSmtpTemplates](docs/GetSmtpTemplates.md) - - [SibApiV3Sdk.GetSsoToken](docs/GetSsoToken.md) - - [SibApiV3Sdk.GetStatsByBrowser](docs/GetStatsByBrowser.md) - - [SibApiV3Sdk.GetStatsByDevice](docs/GetStatsByDevice.md) - - [SibApiV3Sdk.GetStatsByDomain](docs/GetStatsByDomain.md) - - [SibApiV3Sdk.GetTransacAggregatedSmsReport](docs/GetTransacAggregatedSmsReport.md) - - [SibApiV3Sdk.GetTransacBlockedContacts](docs/GetTransacBlockedContacts.md) - - [SibApiV3Sdk.GetTransacBlockedContactsContacts](docs/GetTransacBlockedContactsContacts.md) - - [SibApiV3Sdk.GetTransacBlockedContactsReason](docs/GetTransacBlockedContactsReason.md) - - [SibApiV3Sdk.GetTransacEmailContent](docs/GetTransacEmailContent.md) - - [SibApiV3Sdk.GetTransacEmailContentEvents](docs/GetTransacEmailContentEvents.md) - - [SibApiV3Sdk.GetTransacEmailsList](docs/GetTransacEmailsList.md) - - [SibApiV3Sdk.GetTransacEmailsListTransactionalEmails](docs/GetTransacEmailsListTransactionalEmails.md) - - [SibApiV3Sdk.GetTransacSmsReport](docs/GetTransacSmsReport.md) - - [SibApiV3Sdk.GetTransacSmsReportReports](docs/GetTransacSmsReportReports.md) - - [SibApiV3Sdk.GetWebhook](docs/GetWebhook.md) - - [SibApiV3Sdk.GetWebhooks](docs/GetWebhooks.md) - - [SibApiV3Sdk.ManageIp](docs/ManageIp.md) - - [SibApiV3Sdk.PostContactInfo](docs/PostContactInfo.md) - - [SibApiV3Sdk.PostContactInfoContacts](docs/PostContactInfoContacts.md) - - [SibApiV3Sdk.PostSendFailed](docs/PostSendFailed.md) - - [SibApiV3Sdk.PostSendSmsTestFailed](docs/PostSendSmsTestFailed.md) - - [SibApiV3Sdk.RemainingCreditModel](docs/RemainingCreditModel.md) - - [SibApiV3Sdk.RemainingCreditModelChild](docs/RemainingCreditModelChild.md) - - [SibApiV3Sdk.RemainingCreditModelReseller](docs/RemainingCreditModelReseller.md) - - [SibApiV3Sdk.RemoveContactFromList](docs/RemoveContactFromList.md) - - [SibApiV3Sdk.RemoveCredits](docs/RemoveCredits.md) - - [SibApiV3Sdk.RequestContactExport](docs/RequestContactExport.md) - - [SibApiV3Sdk.RequestContactExportCustomContactFilter](docs/RequestContactExportCustomContactFilter.md) - - [SibApiV3Sdk.RequestContactImport](docs/RequestContactImport.md) - - [SibApiV3Sdk.RequestContactImportNewList](docs/RequestContactImportNewList.md) - - [SibApiV3Sdk.RequestSmsRecipientExport](docs/RequestSmsRecipientExport.md) - - [SibApiV3Sdk.SendEmail](docs/SendEmail.md) - - [SibApiV3Sdk.SendEmailAttachment](docs/SendEmailAttachment.md) - - [SibApiV3Sdk.SendReport](docs/SendReport.md) - - [SibApiV3Sdk.SendReportEmail](docs/SendReportEmail.md) - - [SibApiV3Sdk.SendSms](docs/SendSms.md) - - [SibApiV3Sdk.SendSmtpEmail](docs/SendSmtpEmail.md) - - [SibApiV3Sdk.SendSmtpEmailAttachment](docs/SendSmtpEmailAttachment.md) - - [SibApiV3Sdk.SendSmtpEmailBcc](docs/SendSmtpEmailBcc.md) - - [SibApiV3Sdk.SendSmtpEmailCc](docs/SendSmtpEmailCc.md) - - [SibApiV3Sdk.SendSmtpEmailReplyTo](docs/SendSmtpEmailReplyTo.md) - - [SibApiV3Sdk.SendSmtpEmailSender](docs/SendSmtpEmailSender.md) - - [SibApiV3Sdk.SendSmtpEmailTo](docs/SendSmtpEmailTo.md) - - [SibApiV3Sdk.SendTemplateEmail](docs/SendTemplateEmail.md) - - [SibApiV3Sdk.SendTestEmail](docs/SendTestEmail.md) - - [SibApiV3Sdk.SendTestSms](docs/SendTestSms.md) - - [SibApiV3Sdk.SendTransacSms](docs/SendTransacSms.md) - - [SibApiV3Sdk.UpdateAttribute](docs/UpdateAttribute.md) - - [SibApiV3Sdk.UpdateAttributeEnumeration](docs/UpdateAttributeEnumeration.md) - - [SibApiV3Sdk.UpdateCampaignStatus](docs/UpdateCampaignStatus.md) - - [SibApiV3Sdk.UpdateChild](docs/UpdateChild.md) - - [SibApiV3Sdk.UpdateChildAccountStatus](docs/UpdateChildAccountStatus.md) - - [SibApiV3Sdk.UpdateChildDomain](docs/UpdateChildDomain.md) - - [SibApiV3Sdk.UpdateContact](docs/UpdateContact.md) - - [SibApiV3Sdk.UpdateEmailCampaign](docs/UpdateEmailCampaign.md) - - [SibApiV3Sdk.UpdateEmailCampaignRecipients](docs/UpdateEmailCampaignRecipients.md) - - [SibApiV3Sdk.UpdateEmailCampaignSender](docs/UpdateEmailCampaignSender.md) - - [SibApiV3Sdk.UpdateList](docs/UpdateList.md) - - [SibApiV3Sdk.UpdateSender](docs/UpdateSender.md) - - [SibApiV3Sdk.UpdateSmsCampaign](docs/UpdateSmsCampaign.md) - - [SibApiV3Sdk.UpdateSmtpTemplate](docs/UpdateSmtpTemplate.md) - - [SibApiV3Sdk.UpdateSmtpTemplateSender](docs/UpdateSmtpTemplateSender.md) - - [SibApiV3Sdk.UpdateWebhook](docs/UpdateWebhook.md) - - [SibApiV3Sdk.UploadImageToGallery](docs/UploadImageToGallery.md) - - [SibApiV3Sdk.GetChildInfo](docs/GetChildInfo.md) - - [SibApiV3Sdk.GetExtendedCampaignOverview](docs/GetExtendedCampaignOverview.md) - - [SibApiV3Sdk.GetExtendedClient](docs/GetExtendedClient.md) - - [SibApiV3Sdk.GetExtendedContactDetails](docs/GetExtendedContactDetails.md) - - [SibApiV3Sdk.GetExtendedList](docs/GetExtendedList.md) - - [SibApiV3Sdk.GetSmsCampaign](docs/GetSmsCampaign.md) - - [SibApiV3Sdk.GetAccount](docs/GetAccount.md) - - [SibApiV3Sdk.GetEmailCampaign](docs/GetEmailCampaign.md) + - [PakatApiV3Sdk.AbTestCampaignResult](docs/AbTestCampaignResult.md) + - [PakatApiV3Sdk.AbTestCampaignResultClickedLinks](docs/AbTestCampaignResultClickedLinks.md) + - [PakatApiV3Sdk.AbTestCampaignResultStatistics](docs/AbTestCampaignResultStatistics.md) + - [PakatApiV3Sdk.AbTestVersionClicks](docs/AbTestVersionClicks.md) + - [PakatApiV3Sdk.AbTestVersionClicksInner](docs/AbTestVersionClicksInner.md) + - [PakatApiV3Sdk.AbTestVersionStats](docs/AbTestVersionStats.md) + - [PakatApiV3Sdk.AddChildDomain](docs/AddChildDomain.md) + - [PakatApiV3Sdk.AddContactToList](docs/AddContactToList.md) + - [PakatApiV3Sdk.AddCredits](docs/AddCredits.md) + - [PakatApiV3Sdk.CreateAttribute](docs/CreateAttribute.md) + - [PakatApiV3Sdk.CreateAttributeEnumeration](docs/CreateAttributeEnumeration.md) + - [PakatApiV3Sdk.CreateChild](docs/CreateChild.md) + - [PakatApiV3Sdk.CreateContact](docs/CreateContact.md) + - [PakatApiV3Sdk.CreateDoiContact](docs/CreateDoiContact.md) + - [PakatApiV3Sdk.CreateEmailCampaign](docs/CreateEmailCampaign.md) + - [PakatApiV3Sdk.CreateEmailCampaignRecipients](docs/CreateEmailCampaignRecipients.md) + - [PakatApiV3Sdk.CreateEmailCampaignSender](docs/CreateEmailCampaignSender.md) + - [PakatApiV3Sdk.CreateList](docs/CreateList.md) + - [PakatApiV3Sdk.CreateModel](docs/CreateModel.md) + - [PakatApiV3Sdk.CreateReseller](docs/CreateReseller.md) + - [PakatApiV3Sdk.CreateSender](docs/CreateSender.md) + - [PakatApiV3Sdk.CreateSenderIps](docs/CreateSenderIps.md) + - [PakatApiV3Sdk.CreateSenderModel](docs/CreateSenderModel.md) + - [PakatApiV3Sdk.CreateSmsCampaign](docs/CreateSmsCampaign.md) + - [PakatApiV3Sdk.CreateSmsCampaignRecipients](docs/CreateSmsCampaignRecipients.md) + - [PakatApiV3Sdk.CreateSmtpEmail](docs/CreateSmtpEmail.md) + - [PakatApiV3Sdk.CreateSmtpTemplate](docs/CreateSmtpTemplate.md) + - [PakatApiV3Sdk.CreateSmtpTemplateSender](docs/CreateSmtpTemplateSender.md) + - [PakatApiV3Sdk.CreateUpdateContactModel](docs/CreateUpdateContactModel.md) + - [PakatApiV3Sdk.CreateUpdateFolder](docs/CreateUpdateFolder.md) + - [PakatApiV3Sdk.CreateWebhook](docs/CreateWebhook.md) + - [PakatApiV3Sdk.CreatedProcessId](docs/CreatedProcessId.md) + - [PakatApiV3Sdk.DeleteHardbounces](docs/DeleteHardbounces.md) + - [PakatApiV3Sdk.EmailExportRecipients](docs/EmailExportRecipients.md) + - [PakatApiV3Sdk.ErrorModel](docs/ErrorModel.md) + - [PakatApiV3Sdk.GetAccountMarketingAutomation](docs/GetAccountMarketingAutomation.md) + - [PakatApiV3Sdk.GetAccountPlan](docs/GetAccountPlan.md) + - [PakatApiV3Sdk.GetAccountRelay](docs/GetAccountRelay.md) + - [PakatApiV3Sdk.GetAccountRelayData](docs/GetAccountRelayData.md) + - [PakatApiV3Sdk.GetAggregatedReport](docs/GetAggregatedReport.md) + - [PakatApiV3Sdk.GetAttributes](docs/GetAttributes.md) + - [PakatApiV3Sdk.GetAttributesAttributes](docs/GetAttributesAttributes.md) + - [PakatApiV3Sdk.GetAttributesEnumeration](docs/GetAttributesEnumeration.md) + - [PakatApiV3Sdk.GetCampaignOverview](docs/GetCampaignOverview.md) + - [PakatApiV3Sdk.GetCampaignRecipients](docs/GetCampaignRecipients.md) + - [PakatApiV3Sdk.GetCampaignStats](docs/GetCampaignStats.md) + - [PakatApiV3Sdk.GetChildAccountCreationStatus](docs/GetChildAccountCreationStatus.md) + - [PakatApiV3Sdk.GetChildDomain](docs/GetChildDomain.md) + - [PakatApiV3Sdk.GetChildDomains](docs/GetChildDomains.md) + - [PakatApiV3Sdk.GetChildInfoApiKeys](docs/GetChildInfoApiKeys.md) + - [PakatApiV3Sdk.GetChildInfoApiKeysV2](docs/GetChildInfoApiKeysV2.md) + - [PakatApiV3Sdk.GetChildInfoApiKeysV3](docs/GetChildInfoApiKeysV3.md) + - [PakatApiV3Sdk.GetChildInfoCredits](docs/GetChildInfoCredits.md) + - [PakatApiV3Sdk.GetChildInfoStatistics](docs/GetChildInfoStatistics.md) + - [PakatApiV3Sdk.GetChildrenList](docs/GetChildrenList.md) + - [PakatApiV3Sdk.GetClient](docs/GetClient.md) + - [PakatApiV3Sdk.GetContactCampaignStats](docs/GetContactCampaignStats.md) + - [PakatApiV3Sdk.GetContactCampaignStatsClicked](docs/GetContactCampaignStatsClicked.md) + - [PakatApiV3Sdk.GetContactCampaignStatsOpened](docs/GetContactCampaignStatsOpened.md) + - [PakatApiV3Sdk.GetContactCampaignStatsTransacAttributes](docs/GetContactCampaignStatsTransacAttributes.md) + - [PakatApiV3Sdk.GetContactCampaignStatsUnsubscriptions](docs/GetContactCampaignStatsUnsubscriptions.md) + - [PakatApiV3Sdk.GetContactDetails](docs/GetContactDetails.md) + - [PakatApiV3Sdk.GetContacts](docs/GetContacts.md) + - [PakatApiV3Sdk.GetDeviceBrowserStats](docs/GetDeviceBrowserStats.md) + - [PakatApiV3Sdk.GetEmailCampaigns](docs/GetEmailCampaigns.md) + - [PakatApiV3Sdk.GetEmailEventReport](docs/GetEmailEventReport.md) + - [PakatApiV3Sdk.GetEmailEventReportEvents](docs/GetEmailEventReportEvents.md) + - [PakatApiV3Sdk.GetExtendedCampaignOverviewSender](docs/GetExtendedCampaignOverviewSender.md) + - [PakatApiV3Sdk.GetExtendedCampaignStats](docs/GetExtendedCampaignStats.md) + - [PakatApiV3Sdk.GetExtendedClientAddress](docs/GetExtendedClientAddress.md) + - [PakatApiV3Sdk.GetExtendedContactDetailsStatistics](docs/GetExtendedContactDetailsStatistics.md) + - [PakatApiV3Sdk.GetExtendedContactDetailsStatisticsClicked](docs/GetExtendedContactDetailsStatisticsClicked.md) + - [PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks](docs/GetExtendedContactDetailsStatisticsLinks.md) + - [PakatApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent](docs/GetExtendedContactDetailsStatisticsMessagesSent.md) + - [PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened](docs/GetExtendedContactDetailsStatisticsOpened.md) + - [PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions](docs/GetExtendedContactDetailsStatisticsUnsubscriptions.md) + - [PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription](docs/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.md) + - [PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription](docs/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.md) + - [PakatApiV3Sdk.GetExtendedListCampaignStats](docs/GetExtendedListCampaignStats.md) + - [PakatApiV3Sdk.GetFolder](docs/GetFolder.md) + - [PakatApiV3Sdk.GetFolderLists](docs/GetFolderLists.md) + - [PakatApiV3Sdk.GetFolders](docs/GetFolders.md) + - [PakatApiV3Sdk.GetIp](docs/GetIp.md) + - [PakatApiV3Sdk.GetIpFromSender](docs/GetIpFromSender.md) + - [PakatApiV3Sdk.GetIps](docs/GetIps.md) + - [PakatApiV3Sdk.GetIpsFromSender](docs/GetIpsFromSender.md) + - [PakatApiV3Sdk.GetList](docs/GetList.md) + - [PakatApiV3Sdk.GetLists](docs/GetLists.md) + - [PakatApiV3Sdk.GetProcess](docs/GetProcess.md) + - [PakatApiV3Sdk.GetProcesses](docs/GetProcesses.md) + - [PakatApiV3Sdk.GetReports](docs/GetReports.md) + - [PakatApiV3Sdk.GetReportsReports](docs/GetReportsReports.md) + - [PakatApiV3Sdk.GetSendersList](docs/GetSendersList.md) + - [PakatApiV3Sdk.GetSendersListIps](docs/GetSendersListIps.md) + - [PakatApiV3Sdk.GetSendersListSenders](docs/GetSendersListSenders.md) + - [PakatApiV3Sdk.GetSharedTemplateUrl](docs/GetSharedTemplateUrl.md) + - [PakatApiV3Sdk.GetSmsCampaignOverview](docs/GetSmsCampaignOverview.md) + - [PakatApiV3Sdk.GetSmsCampaignStats](docs/GetSmsCampaignStats.md) + - [PakatApiV3Sdk.GetSmsCampaigns](docs/GetSmsCampaigns.md) + - [PakatApiV3Sdk.GetSmsEventReport](docs/GetSmsEventReport.md) + - [PakatApiV3Sdk.GetSmsEventReportEvents](docs/GetSmsEventReportEvents.md) + - [PakatApiV3Sdk.GetSmtpTemplateOverview](docs/GetSmtpTemplateOverview.md) + - [PakatApiV3Sdk.GetSmtpTemplateOverviewSender](docs/GetSmtpTemplateOverviewSender.md) + - [PakatApiV3Sdk.GetSmtpTemplates](docs/GetSmtpTemplates.md) + - [PakatApiV3Sdk.GetSsoToken](docs/GetSsoToken.md) + - [PakatApiV3Sdk.GetStatsByBrowser](docs/GetStatsByBrowser.md) + - [PakatApiV3Sdk.GetStatsByDevice](docs/GetStatsByDevice.md) + - [PakatApiV3Sdk.GetStatsByDomain](docs/GetStatsByDomain.md) + - [PakatApiV3Sdk.GetTransacAggregatedSmsReport](docs/GetTransacAggregatedSmsReport.md) + - [PakatApiV3Sdk.GetTransacBlockedContacts](docs/GetTransacBlockedContacts.md) + - [PakatApiV3Sdk.GetTransacBlockedContactsContacts](docs/GetTransacBlockedContactsContacts.md) + - [PakatApiV3Sdk.GetTransacBlockedContactsReason](docs/GetTransacBlockedContactsReason.md) + - [PakatApiV3Sdk.GetTransacEmailContent](docs/GetTransacEmailContent.md) + - [PakatApiV3Sdk.GetTransacEmailContentEvents](docs/GetTransacEmailContentEvents.md) + - [PakatApiV3Sdk.GetTransacEmailsList](docs/GetTransacEmailsList.md) + - [PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails](docs/GetTransacEmailsListTransactionalEmails.md) + - [PakatApiV3Sdk.GetTransacSmsReport](docs/GetTransacSmsReport.md) + - [PakatApiV3Sdk.GetTransacSmsReportReports](docs/GetTransacSmsReportReports.md) + - [PakatApiV3Sdk.GetWebhook](docs/GetWebhook.md) + - [PakatApiV3Sdk.GetWebhooks](docs/GetWebhooks.md) + - [PakatApiV3Sdk.ManageIp](docs/ManageIp.md) + - [PakatApiV3Sdk.PostContactInfo](docs/PostContactInfo.md) + - [PakatApiV3Sdk.PostContactInfoContacts](docs/PostContactInfoContacts.md) + - [PakatApiV3Sdk.PostSendFailed](docs/PostSendFailed.md) + - [PakatApiV3Sdk.PostSendSmsTestFailed](docs/PostSendSmsTestFailed.md) + - [PakatApiV3Sdk.RemainingCreditModel](docs/RemainingCreditModel.md) + - [PakatApiV3Sdk.RemainingCreditModelChild](docs/RemainingCreditModelChild.md) + - [PakatApiV3Sdk.RemainingCreditModelReseller](docs/RemainingCreditModelReseller.md) + - [PakatApiV3Sdk.RemoveContactFromList](docs/RemoveContactFromList.md) + - [PakatApiV3Sdk.RemoveCredits](docs/RemoveCredits.md) + - [PakatApiV3Sdk.RequestContactExport](docs/RequestContactExport.md) + - [PakatApiV3Sdk.RequestContactExportCustomContactFilter](docs/RequestContactExportCustomContactFilter.md) + - [PakatApiV3Sdk.RequestContactImport](docs/RequestContactImport.md) + - [PakatApiV3Sdk.RequestContactImportNewList](docs/RequestContactImportNewList.md) + - [PakatApiV3Sdk.RequestSmsRecipientExport](docs/RequestSmsRecipientExport.md) + - [PakatApiV3Sdk.SendEmail](docs/SendEmail.md) + - [PakatApiV3Sdk.SendEmailAttachment](docs/SendEmailAttachment.md) + - [PakatApiV3Sdk.SendReport](docs/SendReport.md) + - [PakatApiV3Sdk.SendReportEmail](docs/SendReportEmail.md) + - [PakatApiV3Sdk.SendSms](docs/SendSms.md) + - [PakatApiV3Sdk.SendSmtpEmail](docs/SendSmtpEmail.md) + - [PakatApiV3Sdk.SendSmtpEmailAttachment](docs/SendSmtpEmailAttachment.md) + - [PakatApiV3Sdk.SendSmtpEmailBcc](docs/SendSmtpEmailBcc.md) + - [PakatApiV3Sdk.SendSmtpEmailCc](docs/SendSmtpEmailCc.md) + - [PakatApiV3Sdk.SendSmtpEmailReplyTo](docs/SendSmtpEmailReplyTo.md) + - [PakatApiV3Sdk.SendSmtpEmailSender](docs/SendSmtpEmailSender.md) + - [PakatApiV3Sdk.SendSmtpEmailTo](docs/SendSmtpEmailTo.md) + - [PakatApiV3Sdk.SendTemplateEmail](docs/SendTemplateEmail.md) + - [PakatApiV3Sdk.SendTestEmail](docs/SendTestEmail.md) + - [PakatApiV3Sdk.SendTestSms](docs/SendTestSms.md) + - [PakatApiV3Sdk.SendTransacSms](docs/SendTransacSms.md) + - [PakatApiV3Sdk.UpdateAttribute](docs/UpdateAttribute.md) + - [PakatApiV3Sdk.UpdateAttributeEnumeration](docs/UpdateAttributeEnumeration.md) + - [PakatApiV3Sdk.UpdateCampaignStatus](docs/UpdateCampaignStatus.md) + - [PakatApiV3Sdk.UpdateChild](docs/UpdateChild.md) + - [PakatApiV3Sdk.UpdateChildAccountStatus](docs/UpdateChildAccountStatus.md) + - [PakatApiV3Sdk.UpdateChildDomain](docs/UpdateChildDomain.md) + - [PakatApiV3Sdk.UpdateContact](docs/UpdateContact.md) + - [PakatApiV3Sdk.UpdateEmailCampaign](docs/UpdateEmailCampaign.md) + - [PakatApiV3Sdk.UpdateEmailCampaignRecipients](docs/UpdateEmailCampaignRecipients.md) + - [PakatApiV3Sdk.UpdateEmailCampaignSender](docs/UpdateEmailCampaignSender.md) + - [PakatApiV3Sdk.UpdateList](docs/UpdateList.md) + - [PakatApiV3Sdk.UpdateSender](docs/UpdateSender.md) + - [PakatApiV3Sdk.UpdateSmsCampaign](docs/UpdateSmsCampaign.md) + - [PakatApiV3Sdk.UpdateSmtpTemplate](docs/UpdateSmtpTemplate.md) + - [PakatApiV3Sdk.UpdateSmtpTemplateSender](docs/UpdateSmtpTemplateSender.md) + - [PakatApiV3Sdk.UpdateWebhook](docs/UpdateWebhook.md) + - [PakatApiV3Sdk.UploadImageToGallery](docs/UploadImageToGallery.md) + - [PakatApiV3Sdk.GetChildInfo](docs/GetChildInfo.md) + - [PakatApiV3Sdk.GetExtendedCampaignOverview](docs/GetExtendedCampaignOverview.md) + - [PakatApiV3Sdk.GetExtendedClient](docs/GetExtendedClient.md) + - [PakatApiV3Sdk.GetExtendedContactDetails](docs/GetExtendedContactDetails.md) + - [PakatApiV3Sdk.GetExtendedList](docs/GetExtendedList.md) + - [PakatApiV3Sdk.GetSmsCampaign](docs/GetSmsCampaign.md) + - [PakatApiV3Sdk.GetAccount](docs/GetAccount.md) + - [PakatApiV3Sdk.GetEmailCampaign](docs/GetEmailCampaign.md) ## Documentation for Authorization diff --git a/docs/AbTestCampaignResult.md b/docs/AbTestCampaignResult.md index b9e176b0..e7f7e0c9 100644 --- a/docs/AbTestCampaignResult.md +++ b/docs/AbTestCampaignResult.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AbTestCampaignResult +# PakatApiV3Sdk.AbTestCampaignResult ## Properties Name | Type | Description | Notes diff --git a/docs/AbTestCampaignResultClickedLinks.md b/docs/AbTestCampaignResultClickedLinks.md index 7edc039a..d83a86b2 100644 --- a/docs/AbTestCampaignResultClickedLinks.md +++ b/docs/AbTestCampaignResultClickedLinks.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AbTestCampaignResultClickedLinks +# PakatApiV3Sdk.AbTestCampaignResultClickedLinks ## Properties Name | Type | Description | Notes diff --git a/docs/AbTestCampaignResultStatistics.md b/docs/AbTestCampaignResultStatistics.md index ca30e4e4..f1407036 100644 --- a/docs/AbTestCampaignResultStatistics.md +++ b/docs/AbTestCampaignResultStatistics.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AbTestCampaignResultStatistics +# PakatApiV3Sdk.AbTestCampaignResultStatistics ## Properties Name | Type | Description | Notes diff --git a/docs/AbTestVersionClicks.md b/docs/AbTestVersionClicks.md index 50903dc4..b61207fc 100644 --- a/docs/AbTestVersionClicks.md +++ b/docs/AbTestVersionClicks.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AbTestVersionClicks +# PakatApiV3Sdk.AbTestVersionClicks ## Properties Name | Type | Description | Notes diff --git a/docs/AbTestVersionClicksInner.md b/docs/AbTestVersionClicksInner.md index 46a09b4d..c8d8cc2d 100644 --- a/docs/AbTestVersionClicksInner.md +++ b/docs/AbTestVersionClicksInner.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AbTestVersionClicksInner +# PakatApiV3Sdk.AbTestVersionClicksInner ## Properties Name | Type | Description | Notes diff --git a/docs/AbTestVersionStats.md b/docs/AbTestVersionStats.md index 478f8ac4..45621068 100644 --- a/docs/AbTestVersionStats.md +++ b/docs/AbTestVersionStats.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AbTestVersionStats +# PakatApiV3Sdk.AbTestVersionStats ## Properties Name | Type | Description | Notes diff --git a/docs/AccountApi.md b/docs/AccountApi.md index cab48b1e..7de32932 100644 --- a/docs/AccountApi.md +++ b/docs/AccountApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AccountApi +# PakatApiV3Sdk.AccountApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -15,8 +15,8 @@ Get your account information, plan and credits details ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -30,7 +30,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.AccountApi(); +var apiInstance = new PakatApiV3Sdk.AccountApi(); apiInstance.getAccount().then(function(data) { console.log('API called successfully. Returned data: ' + data); }, function(error) { diff --git a/docs/AddChildDomain.md b/docs/AddChildDomain.md index fba6359d..afd0e0fe 100644 --- a/docs/AddChildDomain.md +++ b/docs/AddChildDomain.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AddChildDomain +# PakatApiV3Sdk.AddChildDomain ## Properties Name | Type | Description | Notes diff --git a/docs/AddContactToList.md b/docs/AddContactToList.md index f53da7fd..bc64193d 100644 --- a/docs/AddContactToList.md +++ b/docs/AddContactToList.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AddContactToList +# PakatApiV3Sdk.AddContactToList ## Properties Name | Type | Description | Notes diff --git a/docs/AddCredits.md b/docs/AddCredits.md index b1f58b21..398d1506 100644 --- a/docs/AddCredits.md +++ b/docs/AddCredits.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AddCredits +# PakatApiV3Sdk.AddCredits ## Properties Name | Type | Description | Notes diff --git a/docs/AttributesApi.md b/docs/AttributesApi.md index 423c0c46..f1f6eab7 100644 --- a/docs/AttributesApi.md +++ b/docs/AttributesApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.AttributesApi +# PakatApiV3Sdk.AttributesApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -18,8 +18,8 @@ Create contact attribute ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -33,13 +33,13 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.AttributesApi(); +var apiInstance = new PakatApiV3Sdk.AttributesApi(); var attributeCategory = "attributeCategory_example"; // String | Category of the attribute var attributeName = "attributeName_example"; // String | Name of the attribute -var createAttribute = new SibApiV3Sdk.CreateAttribute(); // CreateAttribute | Values to create an attribute +var createAttribute = new PakatApiV3Sdk.CreateAttribute(); // CreateAttribute | Values to create an attribute apiInstance.createAttribute(attributeCategory, attributeName, createAttribute).then(function() { console.log('API called successfully.'); @@ -78,8 +78,8 @@ Delete an attribute ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -93,7 +93,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.AttributesApi(); +var apiInstance = new PakatApiV3Sdk.AttributesApi(); var attributeCategory = "attributeCategory_example"; // String | Category of the attribute @@ -135,8 +135,8 @@ List all attributes ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -150,7 +150,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.AttributesApi(); +var apiInstance = new PakatApiV3Sdk.AttributesApi(); apiInstance.getAttributes().then(function(data) { console.log('API called successfully. Returned data: ' + data); }, function(error) { @@ -183,8 +183,8 @@ Update contact attribute ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -198,13 +198,13 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.AttributesApi(); +var apiInstance = new PakatApiV3Sdk.AttributesApi(); var attributeCategory = "attributeCategory_example"; // String | Category of the attribute var attributeName = "attributeName_example"; // String | Name of the existing attribute -var updateAttribute = new SibApiV3Sdk.UpdateAttribute(); // UpdateAttribute | Values to update an attribute +var updateAttribute = new PakatApiV3Sdk.UpdateAttribute(); // UpdateAttribute | Values to update an attribute apiInstance.updateAttribute(attributeCategory, attributeName, updateAttribute).then(function() { console.log('API called successfully.'); diff --git a/docs/ContactsApi.md b/docs/ContactsApi.md index 963a1049..972cb9ce 100644 --- a/docs/ContactsApi.md +++ b/docs/ContactsApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.ContactsApi +# PakatApiV3Sdk.ContactsApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -41,8 +41,8 @@ Add existing contacts to a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -56,11 +56,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var listId = 789; // Number | Id of the list -var contactEmails = new SibApiV3Sdk.AddContactToList(); // AddContactToList | Emails addresses OR IDs of the contacts +var contactEmails = new PakatApiV3Sdk.AddContactToList(); // AddContactToList | Emails addresses OR IDs of the contacts apiInstance.addContactToList(listId, contactEmails).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -98,8 +98,8 @@ Create contact attribute ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -113,13 +113,13 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var attributeCategory = "attributeCategory_example"; // String | Category of the attribute var attributeName = "attributeName_example"; // String | Name of the attribute -var createAttribute = new SibApiV3Sdk.CreateAttribute(); // CreateAttribute | Values to create an attribute +var createAttribute = new PakatApiV3Sdk.CreateAttribute(); // CreateAttribute | Values to create an attribute apiInstance.createAttribute(attributeCategory, attributeName, createAttribute).then(function() { console.log('API called successfully.'); @@ -158,8 +158,8 @@ Create a contact ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -173,9 +173,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); -var createContact = new SibApiV3Sdk.CreateContact(); // CreateContact | Values to create a contact +var createContact = new PakatApiV3Sdk.CreateContact(); // CreateContact | Values to create a contact apiInstance.createContact(createContact).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -212,8 +212,8 @@ Create Contact via DOI (Double-Opt-In) Flow ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -227,9 +227,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); -var createDoiContact = new SibApiV3Sdk.CreateDoiContact(); // CreateDoiContact | Values to create the Double opt-in (DOI) contact +var createDoiContact = new PakatApiV3Sdk.CreateDoiContact(); // CreateDoiContact | Values to create the Double opt-in (DOI) contact apiInstance.createDoiContact(createDoiContact).then(function() { console.log('API called successfully.'); @@ -266,8 +266,8 @@ Create a folder ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -281,9 +281,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); -var createFolder = new SibApiV3Sdk.CreateUpdateFolder(); // CreateUpdateFolder | Name of the folder +var createFolder = new PakatApiV3Sdk.CreateUpdateFolder(); // CreateUpdateFolder | Name of the folder apiInstance.createFolder(createFolder).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -320,8 +320,8 @@ Create a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -335,9 +335,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); -var createList = new SibApiV3Sdk.CreateList(); // CreateList | Values to create a list +var createList = new PakatApiV3Sdk.CreateList(); // CreateList | Values to create a list apiInstance.createList(createList).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -374,8 +374,8 @@ Delete an attribute ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -389,7 +389,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var attributeCategory = "attributeCategory_example"; // String | Category of the attribute @@ -431,8 +431,8 @@ Delete a contact ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -446,7 +446,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var identifier = "identifier_example"; // String | Email (urlencoded) OR ID of the contact @@ -485,8 +485,8 @@ Delete a folder (and all its lists) ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -500,7 +500,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var folderId = 789; // Number | Id of the folder @@ -539,8 +539,8 @@ Delete a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -554,7 +554,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var listId = 789; // Number | Id of the list @@ -593,8 +593,8 @@ List all attributes ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -608,7 +608,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); apiInstance.getAttributes().then(function(data) { console.log('API called successfully. Returned data: ' + data); }, function(error) { @@ -641,8 +641,8 @@ Get a contact's details ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -656,7 +656,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var identifier = "identifier_example"; // String | Email (urlencoded) OR ID of the contact OR its SMS attribute value @@ -695,8 +695,8 @@ Get email campaigns' statistics for a contact ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -710,7 +710,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var identifier = "identifier_example"; // String | Email (urlencoded) OR ID of the contact @@ -755,8 +755,8 @@ Get all the contacts ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -770,7 +770,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var opts = { 'limit': 50, // Number | Number of documents per page @@ -814,8 +814,8 @@ Get contacts in a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -829,7 +829,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var listId = 789; // Number | Id of the list @@ -876,8 +876,8 @@ Returns a folder's details ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -891,7 +891,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var folderId = 789; // Number | id of the folder @@ -930,8 +930,8 @@ Get lists in a folder ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -945,7 +945,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var folderId = 789; // Number | Id of the folder @@ -990,8 +990,8 @@ Get all folders ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -1005,7 +1005,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var limit = 10; // Number | Number of documents per page @@ -1047,8 +1047,8 @@ Get a list's details ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -1062,7 +1062,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var listId = 789; // Number | Id of the list @@ -1101,8 +1101,8 @@ Get all the lists ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -1116,7 +1116,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var opts = { 'limit': 10, // Number | Number of documents per page @@ -1160,8 +1160,8 @@ It returns the background process ID which on completion calls the notify URL th ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -1175,9 +1175,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); -var requestContactImport = new SibApiV3Sdk.RequestContactImport(); // RequestContactImport | Values to import contacts in Sendinblue. To know more about the expected format, please have a look at ``https://help.sendinblue.com/hc/en-us/articles/209499265-Build-contacts-lists-for-your-email-marketing-campaigns`` +var requestContactImport = new PakatApiV3Sdk.RequestContactImport(); // RequestContactImport | Values to import contacts in Sendinblue. To know more about the expected format, please have a look at ``https://help.sendinblue.com/hc/en-us/articles/209499265-Build-contacts-lists-for-your-email-marketing-campaigns`` apiInstance.importContacts(requestContactImport).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -1214,8 +1214,8 @@ Delete a contact from a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -1229,11 +1229,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var listId = 789; // Number | Id of the list -var contactEmails = new SibApiV3Sdk.RemoveContactFromList(); // RemoveContactFromList | Emails addresses OR IDs of the contacts +var contactEmails = new PakatApiV3Sdk.RemoveContactFromList(); // RemoveContactFromList | Emails addresses OR IDs of the contacts apiInstance.removeContactFromList(listId, contactEmails).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -1273,8 +1273,8 @@ It returns the background process ID which on completion calls the notify URL th ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -1288,9 +1288,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); -var requestContactExport = new SibApiV3Sdk.RequestContactExport(); // RequestContactExport | Values to request a contact export +var requestContactExport = new PakatApiV3Sdk.RequestContactExport(); // RequestContactExport | Values to request a contact export apiInstance.requestContactExport(requestContactExport).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -1327,8 +1327,8 @@ Update contact attribute ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -1342,13 +1342,13 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var attributeCategory = "attributeCategory_example"; // String | Category of the attribute var attributeName = "attributeName_example"; // String | Name of the existing attribute -var updateAttribute = new SibApiV3Sdk.UpdateAttribute(); // UpdateAttribute | Values to update an attribute +var updateAttribute = new PakatApiV3Sdk.UpdateAttribute(); // UpdateAttribute | Values to update an attribute apiInstance.updateAttribute(attributeCategory, attributeName, updateAttribute).then(function() { console.log('API called successfully.'); @@ -1387,8 +1387,8 @@ Update a contact ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -1402,11 +1402,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var identifier = "identifier_example"; // String | Email (urlencoded) OR ID of the contact -var updateContact = new SibApiV3Sdk.UpdateContact(); // UpdateContact | Values to update a contact +var updateContact = new PakatApiV3Sdk.UpdateContact(); // UpdateContact | Values to update a contact apiInstance.updateContact(identifier, updateContact).then(function() { console.log('API called successfully.'); @@ -1444,8 +1444,8 @@ Update a folder ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -1459,11 +1459,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var folderId = 789; // Number | Id of the folder -var updateFolder = new SibApiV3Sdk.CreateUpdateFolder(); // CreateUpdateFolder | Name of the folder +var updateFolder = new PakatApiV3Sdk.CreateUpdateFolder(); // CreateUpdateFolder | Name of the folder apiInstance.updateFolder(folderId, updateFolder).then(function() { console.log('API called successfully.'); @@ -1501,8 +1501,8 @@ Update a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -1516,11 +1516,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ContactsApi(); +var apiInstance = new PakatApiV3Sdk.ContactsApi(); var listId = 789; // Number | Id of the list -var updateList = new SibApiV3Sdk.UpdateList(); // UpdateList | Values to update a list +var updateList = new PakatApiV3Sdk.UpdateList(); // UpdateList | Values to update a list apiInstance.updateList(listId, updateList).then(function() { console.log('API called successfully.'); diff --git a/docs/CreateAttribute.md b/docs/CreateAttribute.md index 78d154ba..175cb388 100644 --- a/docs/CreateAttribute.md +++ b/docs/CreateAttribute.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateAttribute +# PakatApiV3Sdk.CreateAttribute ## Properties Name | Type | Description | Notes diff --git a/docs/CreateAttributeEnumeration.md b/docs/CreateAttributeEnumeration.md index dc9548de..35bc84e7 100644 --- a/docs/CreateAttributeEnumeration.md +++ b/docs/CreateAttributeEnumeration.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateAttributeEnumeration +# PakatApiV3Sdk.CreateAttributeEnumeration ## Properties Name | Type | Description | Notes diff --git a/docs/CreateChild.md b/docs/CreateChild.md index f3a3e38e..ed6ccca7 100644 --- a/docs/CreateChild.md +++ b/docs/CreateChild.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateChild +# PakatApiV3Sdk.CreateChild ## Properties Name | Type | Description | Notes diff --git a/docs/CreateContact.md b/docs/CreateContact.md index a44a3393..2b17e0c1 100644 --- a/docs/CreateContact.md +++ b/docs/CreateContact.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateContact +# PakatApiV3Sdk.CreateContact ## Properties Name | Type | Description | Notes diff --git a/docs/CreateDoiContact.md b/docs/CreateDoiContact.md index 500ea1e9..47cdbe1c 100644 --- a/docs/CreateDoiContact.md +++ b/docs/CreateDoiContact.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateDoiContact +# PakatApiV3Sdk.CreateDoiContact ## Properties Name | Type | Description | Notes diff --git a/docs/CreateEmailCampaign.md b/docs/CreateEmailCampaign.md index 511d131a..b7d7aa48 100644 --- a/docs/CreateEmailCampaign.md +++ b/docs/CreateEmailCampaign.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateEmailCampaign +# PakatApiV3Sdk.CreateEmailCampaign ## Properties Name | Type | Description | Notes diff --git a/docs/CreateEmailCampaignRecipients.md b/docs/CreateEmailCampaignRecipients.md index 401dc56b..a94d19df 100644 --- a/docs/CreateEmailCampaignRecipients.md +++ b/docs/CreateEmailCampaignRecipients.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateEmailCampaignRecipients +# PakatApiV3Sdk.CreateEmailCampaignRecipients ## Properties Name | Type | Description | Notes diff --git a/docs/CreateEmailCampaignSender.md b/docs/CreateEmailCampaignSender.md index 645410fe..b4392eed 100644 --- a/docs/CreateEmailCampaignSender.md +++ b/docs/CreateEmailCampaignSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateEmailCampaignSender +# PakatApiV3Sdk.CreateEmailCampaignSender ## Properties Name | Type | Description | Notes diff --git a/docs/CreateList.md b/docs/CreateList.md index 79d13230..75ca5583 100644 --- a/docs/CreateList.md +++ b/docs/CreateList.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateList +# PakatApiV3Sdk.CreateList ## Properties Name | Type | Description | Notes diff --git a/docs/CreateModel.md b/docs/CreateModel.md index c4bc8a3f..1f08afd5 100644 --- a/docs/CreateModel.md +++ b/docs/CreateModel.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateModel +# PakatApiV3Sdk.CreateModel ## Properties Name | Type | Description | Notes diff --git a/docs/CreateReseller.md b/docs/CreateReseller.md index 770d8ff6..1fba8309 100644 --- a/docs/CreateReseller.md +++ b/docs/CreateReseller.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateReseller +# PakatApiV3Sdk.CreateReseller ## Properties Name | Type | Description | Notes diff --git a/docs/CreateSender.md b/docs/CreateSender.md index f08a10d8..3a7979e9 100644 --- a/docs/CreateSender.md +++ b/docs/CreateSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateSender +# PakatApiV3Sdk.CreateSender ## Properties Name | Type | Description | Notes diff --git a/docs/CreateSenderIps.md b/docs/CreateSenderIps.md index 246d0c4a..e82f551b 100644 --- a/docs/CreateSenderIps.md +++ b/docs/CreateSenderIps.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateSenderIps +# PakatApiV3Sdk.CreateSenderIps ## Properties Name | Type | Description | Notes diff --git a/docs/CreateSenderModel.md b/docs/CreateSenderModel.md index 7f155391..3f1611e9 100644 --- a/docs/CreateSenderModel.md +++ b/docs/CreateSenderModel.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateSenderModel +# PakatApiV3Sdk.CreateSenderModel ## Properties Name | Type | Description | Notes diff --git a/docs/CreateSmsCampaign.md b/docs/CreateSmsCampaign.md index b813ff97..54b7c342 100644 --- a/docs/CreateSmsCampaign.md +++ b/docs/CreateSmsCampaign.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateSmsCampaign +# PakatApiV3Sdk.CreateSmsCampaign ## Properties Name | Type | Description | Notes diff --git a/docs/CreateSmsCampaignRecipients.md b/docs/CreateSmsCampaignRecipients.md index 5a618557..0091edc3 100644 --- a/docs/CreateSmsCampaignRecipients.md +++ b/docs/CreateSmsCampaignRecipients.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateSmsCampaignRecipients +# PakatApiV3Sdk.CreateSmsCampaignRecipients ## Properties Name | Type | Description | Notes diff --git a/docs/CreateSmtpEmail.md b/docs/CreateSmtpEmail.md index d6983aa8..676423fb 100644 --- a/docs/CreateSmtpEmail.md +++ b/docs/CreateSmtpEmail.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateSmtpEmail +# PakatApiV3Sdk.CreateSmtpEmail ## Properties Name | Type | Description | Notes diff --git a/docs/CreateSmtpTemplate.md b/docs/CreateSmtpTemplate.md index a9e97c5e..2cf07ffc 100644 --- a/docs/CreateSmtpTemplate.md +++ b/docs/CreateSmtpTemplate.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateSmtpTemplate +# PakatApiV3Sdk.CreateSmtpTemplate ## Properties Name | Type | Description | Notes diff --git a/docs/CreateSmtpTemplateSender.md b/docs/CreateSmtpTemplateSender.md index 4eb29673..c2ba9e6d 100644 --- a/docs/CreateSmtpTemplateSender.md +++ b/docs/CreateSmtpTemplateSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateSmtpTemplateSender +# PakatApiV3Sdk.CreateSmtpTemplateSender ## Properties Name | Type | Description | Notes diff --git a/docs/CreateUpdateContactModel.md b/docs/CreateUpdateContactModel.md index 39d8a507..641a3722 100644 --- a/docs/CreateUpdateContactModel.md +++ b/docs/CreateUpdateContactModel.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateUpdateContactModel +# PakatApiV3Sdk.CreateUpdateContactModel ## Properties Name | Type | Description | Notes diff --git a/docs/CreateUpdateFolder.md b/docs/CreateUpdateFolder.md index 08bb582f..26b5b2f8 100644 --- a/docs/CreateUpdateFolder.md +++ b/docs/CreateUpdateFolder.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateUpdateFolder +# PakatApiV3Sdk.CreateUpdateFolder ## Properties Name | Type | Description | Notes diff --git a/docs/CreateWebhook.md b/docs/CreateWebhook.md index 879d25ec..b3143472 100644 --- a/docs/CreateWebhook.md +++ b/docs/CreateWebhook.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreateWebhook +# PakatApiV3Sdk.CreateWebhook ## Properties Name | Type | Description | Notes diff --git a/docs/CreatedProcessId.md b/docs/CreatedProcessId.md index 73e90596..ba8ad1a4 100644 --- a/docs/CreatedProcessId.md +++ b/docs/CreatedProcessId.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.CreatedProcessId +# PakatApiV3Sdk.CreatedProcessId ## Properties Name | Type | Description | Notes diff --git a/docs/DeleteHardbounces.md b/docs/DeleteHardbounces.md index 4e4a6484..bc3d924d 100644 --- a/docs/DeleteHardbounces.md +++ b/docs/DeleteHardbounces.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.DeleteHardbounces +# PakatApiV3Sdk.DeleteHardbounces ## Properties Name | Type | Description | Notes diff --git a/docs/EmailCampaignsApi.md b/docs/EmailCampaignsApi.md index 56760d7c..184be21d 100644 --- a/docs/EmailCampaignsApi.md +++ b/docs/EmailCampaignsApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.EmailCampaignsApi +# PakatApiV3Sdk.EmailCampaignsApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -27,8 +27,8 @@ Create an email campaign ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -42,9 +42,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); -var emailCampaigns = new SibApiV3Sdk.CreateEmailCampaign(); // CreateEmailCampaign | Values to create a campaign +var emailCampaigns = new PakatApiV3Sdk.CreateEmailCampaign(); // CreateEmailCampaign | Values to create a campaign apiInstance.createEmailCampaign(emailCampaigns).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -81,8 +81,8 @@ Delete an email campaign ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -96,7 +96,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var campaignId = 789; // Number | id of the campaign @@ -135,8 +135,8 @@ Export the recipients of an email campaign ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -150,12 +150,12 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var campaignId = 789; // Number | Id of the campaign var opts = { - 'recipientExport': new SibApiV3Sdk.EmailExportRecipients() // EmailExportRecipients | Values to send for a recipient export request + 'recipientExport': new PakatApiV3Sdk.EmailExportRecipients() // EmailExportRecipients | Values to send for a recipient export request }; apiInstance.emailExportRecipients(campaignId, opts).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -195,8 +195,8 @@ Obtain winning version of an A/B test email campaign ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -210,7 +210,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var campaignId = 789; // Number | Id of the A/B test campaign @@ -249,8 +249,8 @@ Get an email campaign report ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -264,7 +264,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var campaignId = 789; // Number | Id of the campaign @@ -303,8 +303,8 @@ Return all your created email campaigns ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -318,7 +318,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var opts = { 'type': "type_example", // String | Filter on the type of the campaigns @@ -370,8 +370,8 @@ Get a unique URL to share & import an email template from one Sendinblue acc ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -385,7 +385,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var campaignId = 789; // Number | Id of the campaign or template @@ -424,8 +424,8 @@ Send an email campaign immediately, based on campaignId ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -439,7 +439,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var campaignId = 789; // Number | Id of the campaign @@ -480,8 +480,8 @@ A PDF will be sent to the specified email addresses ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -495,11 +495,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var campaignId = 789; // Number | Id of the campaign -var sendReport = new SibApiV3Sdk.SendReport(); // SendReport | Values for send a report +var sendReport = new PakatApiV3Sdk.SendReport(); // SendReport | Values for send a report apiInstance.sendReport(campaignId, sendReport).then(function() { console.log('API called successfully.'); @@ -537,8 +537,8 @@ Send an email campaign to your test list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -552,11 +552,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var campaignId = 789; // Number | Id of the campaign -var emailTo = new SibApiV3Sdk.SendTestEmail(); // SendTestEmail | +var emailTo = new PakatApiV3Sdk.SendTestEmail(); // SendTestEmail | apiInstance.sendTestEmail(campaignId, emailTo).then(function() { console.log('API called successfully.'); @@ -594,8 +594,8 @@ Update an email campaign status ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -609,11 +609,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var campaignId = 789; // Number | Id of the campaign -var status = new SibApiV3Sdk.UpdateCampaignStatus(); // UpdateCampaignStatus | Status of the campaign +var status = new PakatApiV3Sdk.UpdateCampaignStatus(); // UpdateCampaignStatus | Status of the campaign apiInstance.updateCampaignStatus(campaignId, status).then(function() { console.log('API called successfully.'); @@ -651,8 +651,8 @@ Update an email campaign ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -666,11 +666,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); var campaignId = 789; // Number | Id of the campaign -var emailCampaign = new SibApiV3Sdk.UpdateEmailCampaign(); // UpdateEmailCampaign | Values to update a campaign +var emailCampaign = new PakatApiV3Sdk.UpdateEmailCampaign(); // UpdateEmailCampaign | Values to update a campaign apiInstance.updateEmailCampaign(campaignId, emailCampaign).then(function() { console.log('API called successfully.'); @@ -708,8 +708,8 @@ Upload an image to your account's image gallery ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -723,9 +723,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.EmailCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.EmailCampaignsApi(); -var uploadImage = new SibApiV3Sdk.UploadImageToGallery(); // UploadImageToGallery | Parameters to upload an image +var uploadImage = new PakatApiV3Sdk.UploadImageToGallery(); // UploadImageToGallery | Parameters to upload an image apiInstance.uploadImageToGallery(uploadImage).then(function() { console.log('API called successfully.'); diff --git a/docs/EmailExportRecipients.md b/docs/EmailExportRecipients.md index ae8105ee..5eef7137 100644 --- a/docs/EmailExportRecipients.md +++ b/docs/EmailExportRecipients.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.EmailExportRecipients +# PakatApiV3Sdk.EmailExportRecipients ## Properties Name | Type | Description | Notes diff --git a/docs/ErrorModel.md b/docs/ErrorModel.md index 8895b94c..3a8f24ce 100644 --- a/docs/ErrorModel.md +++ b/docs/ErrorModel.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.ErrorModel +# PakatApiV3Sdk.ErrorModel ## Properties Name | Type | Description | Notes diff --git a/docs/FoldersApi.md b/docs/FoldersApi.md index c44332b2..9c38440f 100644 --- a/docs/FoldersApi.md +++ b/docs/FoldersApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.FoldersApi +# PakatApiV3Sdk.FoldersApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -20,8 +20,8 @@ Create a folder ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -35,9 +35,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.FoldersApi(); +var apiInstance = new PakatApiV3Sdk.FoldersApi(); -var createFolder = new SibApiV3Sdk.CreateUpdateFolder(); // CreateUpdateFolder | Name of the folder +var createFolder = new PakatApiV3Sdk.CreateUpdateFolder(); // CreateUpdateFolder | Name of the folder apiInstance.createFolder(createFolder).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -74,8 +74,8 @@ Delete a folder (and all its lists) ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -89,7 +89,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.FoldersApi(); +var apiInstance = new PakatApiV3Sdk.FoldersApi(); var folderId = 789; // Number | Id of the folder @@ -128,8 +128,8 @@ Returns a folder's details ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -143,7 +143,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.FoldersApi(); +var apiInstance = new PakatApiV3Sdk.FoldersApi(); var folderId = 789; // Number | id of the folder @@ -182,8 +182,8 @@ Get lists in a folder ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -197,7 +197,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.FoldersApi(); +var apiInstance = new PakatApiV3Sdk.FoldersApi(); var folderId = 789; // Number | Id of the folder @@ -242,8 +242,8 @@ Get all folders ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -257,7 +257,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.FoldersApi(); +var apiInstance = new PakatApiV3Sdk.FoldersApi(); var limit = 10; // Number | Number of documents per page @@ -299,8 +299,8 @@ Update a folder ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -314,11 +314,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.FoldersApi(); +var apiInstance = new PakatApiV3Sdk.FoldersApi(); var folderId = 789; // Number | Id of the folder -var updateFolder = new SibApiV3Sdk.CreateUpdateFolder(); // CreateUpdateFolder | Name of the folder +var updateFolder = new PakatApiV3Sdk.CreateUpdateFolder(); // CreateUpdateFolder | Name of the folder apiInstance.updateFolder(folderId, updateFolder).then(function() { console.log('API called successfully.'); diff --git a/docs/GetAccount.md b/docs/GetAccount.md index b51986bf..8ffdcdc5 100644 --- a/docs/GetAccount.md +++ b/docs/GetAccount.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetAccount +# PakatApiV3Sdk.GetAccount ## Properties Name | Type | Description | Notes diff --git a/docs/GetAccountMarketingAutomation.md b/docs/GetAccountMarketingAutomation.md index f651d976..48f5895d 100644 --- a/docs/GetAccountMarketingAutomation.md +++ b/docs/GetAccountMarketingAutomation.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetAccountMarketingAutomation +# PakatApiV3Sdk.GetAccountMarketingAutomation ## Properties Name | Type | Description | Notes diff --git a/docs/GetAccountPlan.md b/docs/GetAccountPlan.md index e1084c5d..7d385919 100644 --- a/docs/GetAccountPlan.md +++ b/docs/GetAccountPlan.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetAccountPlan +# PakatApiV3Sdk.GetAccountPlan ## Properties Name | Type | Description | Notes diff --git a/docs/GetAccountRelay.md b/docs/GetAccountRelay.md index 10a36311..5048ae2f 100644 --- a/docs/GetAccountRelay.md +++ b/docs/GetAccountRelay.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetAccountRelay +# PakatApiV3Sdk.GetAccountRelay ## Properties Name | Type | Description | Notes diff --git a/docs/GetAccountRelayData.md b/docs/GetAccountRelayData.md index 22d79a5b..a6b37b97 100644 --- a/docs/GetAccountRelayData.md +++ b/docs/GetAccountRelayData.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetAccountRelayData +# PakatApiV3Sdk.GetAccountRelayData ## Properties Name | Type | Description | Notes diff --git a/docs/GetAggregatedReport.md b/docs/GetAggregatedReport.md index 0e441cb7..66f0d155 100644 --- a/docs/GetAggregatedReport.md +++ b/docs/GetAggregatedReport.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetAggregatedReport +# PakatApiV3Sdk.GetAggregatedReport ## Properties Name | Type | Description | Notes diff --git a/docs/GetAttributes.md b/docs/GetAttributes.md index 081d6339..0aca3b58 100644 --- a/docs/GetAttributes.md +++ b/docs/GetAttributes.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetAttributes +# PakatApiV3Sdk.GetAttributes ## Properties Name | Type | Description | Notes diff --git a/docs/GetAttributesAttributes.md b/docs/GetAttributesAttributes.md index 9ecde7fe..2381bbbc 100644 --- a/docs/GetAttributesAttributes.md +++ b/docs/GetAttributesAttributes.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetAttributesAttributes +# PakatApiV3Sdk.GetAttributesAttributes ## Properties Name | Type | Description | Notes diff --git a/docs/GetAttributesEnumeration.md b/docs/GetAttributesEnumeration.md index 19d1153a..c71cdf3d 100644 --- a/docs/GetAttributesEnumeration.md +++ b/docs/GetAttributesEnumeration.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetAttributesEnumeration +# PakatApiV3Sdk.GetAttributesEnumeration ## Properties Name | Type | Description | Notes diff --git a/docs/GetCampaignOverview.md b/docs/GetCampaignOverview.md index 4b14e94a..068dc02f 100644 --- a/docs/GetCampaignOverview.md +++ b/docs/GetCampaignOverview.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetCampaignOverview +# PakatApiV3Sdk.GetCampaignOverview ## Properties Name | Type | Description | Notes diff --git a/docs/GetCampaignRecipients.md b/docs/GetCampaignRecipients.md index 0dc60b27..97c672c0 100644 --- a/docs/GetCampaignRecipients.md +++ b/docs/GetCampaignRecipients.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetCampaignRecipients +# PakatApiV3Sdk.GetCampaignRecipients ## Properties Name | Type | Description | Notes diff --git a/docs/GetCampaignStats.md b/docs/GetCampaignStats.md index 41a2075c..9e5efa92 100644 --- a/docs/GetCampaignStats.md +++ b/docs/GetCampaignStats.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetCampaignStats +# PakatApiV3Sdk.GetCampaignStats ## Properties Name | Type | Description | Notes diff --git a/docs/GetChildAccountCreationStatus.md b/docs/GetChildAccountCreationStatus.md index cf57395c..9674821d 100644 --- a/docs/GetChildAccountCreationStatus.md +++ b/docs/GetChildAccountCreationStatus.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetChildAccountCreationStatus +# PakatApiV3Sdk.GetChildAccountCreationStatus ## Properties Name | Type | Description | Notes diff --git a/docs/GetChildDomain.md b/docs/GetChildDomain.md index a6802ee3..1a6b94e8 100644 --- a/docs/GetChildDomain.md +++ b/docs/GetChildDomain.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetChildDomain +# PakatApiV3Sdk.GetChildDomain ## Properties Name | Type | Description | Notes diff --git a/docs/GetChildDomains.md b/docs/GetChildDomains.md index 2338b6aa..0cb2fc17 100644 --- a/docs/GetChildDomains.md +++ b/docs/GetChildDomains.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetChildDomains +# PakatApiV3Sdk.GetChildDomains ## Properties Name | Type | Description | Notes diff --git a/docs/GetChildInfo.md b/docs/GetChildInfo.md index 5c602728..9206a36c 100644 --- a/docs/GetChildInfo.md +++ b/docs/GetChildInfo.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetChildInfo +# PakatApiV3Sdk.GetChildInfo ## Properties Name | Type | Description | Notes diff --git a/docs/GetChildInfoApiKeys.md b/docs/GetChildInfoApiKeys.md index 748b0643..9ccf711d 100644 --- a/docs/GetChildInfoApiKeys.md +++ b/docs/GetChildInfoApiKeys.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetChildInfoApiKeys +# PakatApiV3Sdk.GetChildInfoApiKeys ## Properties Name | Type | Description | Notes diff --git a/docs/GetChildInfoApiKeysV2.md b/docs/GetChildInfoApiKeysV2.md index 7663168a..82fbd7a4 100644 --- a/docs/GetChildInfoApiKeysV2.md +++ b/docs/GetChildInfoApiKeysV2.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetChildInfoApiKeysV2 +# PakatApiV3Sdk.GetChildInfoApiKeysV2 ## Properties Name | Type | Description | Notes diff --git a/docs/GetChildInfoApiKeysV3.md b/docs/GetChildInfoApiKeysV3.md index 4cd7dc7c..274047bd 100644 --- a/docs/GetChildInfoApiKeysV3.md +++ b/docs/GetChildInfoApiKeysV3.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetChildInfoApiKeysV3 +# PakatApiV3Sdk.GetChildInfoApiKeysV3 ## Properties Name | Type | Description | Notes diff --git a/docs/GetChildInfoCredits.md b/docs/GetChildInfoCredits.md index 634aecd0..b862c4bc 100644 --- a/docs/GetChildInfoCredits.md +++ b/docs/GetChildInfoCredits.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetChildInfoCredits +# PakatApiV3Sdk.GetChildInfoCredits ## Properties Name | Type | Description | Notes diff --git a/docs/GetChildInfoStatistics.md b/docs/GetChildInfoStatistics.md index eb4fad6e..31f02e59 100644 --- a/docs/GetChildInfoStatistics.md +++ b/docs/GetChildInfoStatistics.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetChildInfoStatistics +# PakatApiV3Sdk.GetChildInfoStatistics ## Properties Name | Type | Description | Notes diff --git a/docs/GetChildrenList.md b/docs/GetChildrenList.md index a580ff2c..5bb363cb 100644 --- a/docs/GetChildrenList.md +++ b/docs/GetChildrenList.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetChildrenList +# PakatApiV3Sdk.GetChildrenList ## Properties Name | Type | Description | Notes diff --git a/docs/GetClient.md b/docs/GetClient.md index b243f4f9..f10815e2 100644 --- a/docs/GetClient.md +++ b/docs/GetClient.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetClient +# PakatApiV3Sdk.GetClient ## Properties Name | Type | Description | Notes diff --git a/docs/GetContactCampaignStats.md b/docs/GetContactCampaignStats.md index 7f81af7c..442c72e6 100644 --- a/docs/GetContactCampaignStats.md +++ b/docs/GetContactCampaignStats.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetContactCampaignStats +# PakatApiV3Sdk.GetContactCampaignStats ## Properties Name | Type | Description | Notes diff --git a/docs/GetContactCampaignStatsClicked.md b/docs/GetContactCampaignStatsClicked.md index 1eb75165..0fd719be 100644 --- a/docs/GetContactCampaignStatsClicked.md +++ b/docs/GetContactCampaignStatsClicked.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetContactCampaignStatsClicked +# PakatApiV3Sdk.GetContactCampaignStatsClicked ## Properties Name | Type | Description | Notes diff --git a/docs/GetContactCampaignStatsOpened.md b/docs/GetContactCampaignStatsOpened.md index e112f810..589d66fe 100644 --- a/docs/GetContactCampaignStatsOpened.md +++ b/docs/GetContactCampaignStatsOpened.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetContactCampaignStatsOpened +# PakatApiV3Sdk.GetContactCampaignStatsOpened ## Properties Name | Type | Description | Notes diff --git a/docs/GetContactCampaignStatsTransacAttributes.md b/docs/GetContactCampaignStatsTransacAttributes.md index 7074922f..27e35ba1 100644 --- a/docs/GetContactCampaignStatsTransacAttributes.md +++ b/docs/GetContactCampaignStatsTransacAttributes.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetContactCampaignStatsTransacAttributes +# PakatApiV3Sdk.GetContactCampaignStatsTransacAttributes ## Properties Name | Type | Description | Notes diff --git a/docs/GetContactCampaignStatsUnsubscriptions.md b/docs/GetContactCampaignStatsUnsubscriptions.md index d8d4e06d..4df2ddee 100644 --- a/docs/GetContactCampaignStatsUnsubscriptions.md +++ b/docs/GetContactCampaignStatsUnsubscriptions.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetContactCampaignStatsUnsubscriptions +# PakatApiV3Sdk.GetContactCampaignStatsUnsubscriptions ## Properties Name | Type | Description | Notes diff --git a/docs/GetContactDetails.md b/docs/GetContactDetails.md index 494741da..19022d6b 100644 --- a/docs/GetContactDetails.md +++ b/docs/GetContactDetails.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetContactDetails +# PakatApiV3Sdk.GetContactDetails ## Properties Name | Type | Description | Notes diff --git a/docs/GetContacts.md b/docs/GetContacts.md index 8c28a932..d1124abc 100644 --- a/docs/GetContacts.md +++ b/docs/GetContacts.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetContacts +# PakatApiV3Sdk.GetContacts ## Properties Name | Type | Description | Notes diff --git a/docs/GetDeviceBrowserStats.md b/docs/GetDeviceBrowserStats.md index 0d4752e1..49059dee 100644 --- a/docs/GetDeviceBrowserStats.md +++ b/docs/GetDeviceBrowserStats.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetDeviceBrowserStats +# PakatApiV3Sdk.GetDeviceBrowserStats ## Properties Name | Type | Description | Notes diff --git a/docs/GetEmailCampaign.md b/docs/GetEmailCampaign.md index 22e392b2..e5f99d60 100644 --- a/docs/GetEmailCampaign.md +++ b/docs/GetEmailCampaign.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetEmailCampaign +# PakatApiV3Sdk.GetEmailCampaign ## Properties Name | Type | Description | Notes diff --git a/docs/GetEmailCampaigns.md b/docs/GetEmailCampaigns.md index d49cac19..b42d365f 100644 --- a/docs/GetEmailCampaigns.md +++ b/docs/GetEmailCampaigns.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetEmailCampaigns +# PakatApiV3Sdk.GetEmailCampaigns ## Properties Name | Type | Description | Notes diff --git a/docs/GetEmailEventReport.md b/docs/GetEmailEventReport.md index 71e4403a..0f654aba 100644 --- a/docs/GetEmailEventReport.md +++ b/docs/GetEmailEventReport.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetEmailEventReport +# PakatApiV3Sdk.GetEmailEventReport ## Properties Name | Type | Description | Notes diff --git a/docs/GetEmailEventReportEvents.md b/docs/GetEmailEventReportEvents.md index e23130ab..22d64295 100644 --- a/docs/GetEmailEventReportEvents.md +++ b/docs/GetEmailEventReportEvents.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetEmailEventReportEvents +# PakatApiV3Sdk.GetEmailEventReportEvents ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedCampaignOverview.md b/docs/GetExtendedCampaignOverview.md index 97473f79..db2cd084 100644 --- a/docs/GetExtendedCampaignOverview.md +++ b/docs/GetExtendedCampaignOverview.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedCampaignOverview +# PakatApiV3Sdk.GetExtendedCampaignOverview ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedCampaignOverviewSender.md b/docs/GetExtendedCampaignOverviewSender.md index 5dac43f4..78e50abd 100644 --- a/docs/GetExtendedCampaignOverviewSender.md +++ b/docs/GetExtendedCampaignOverviewSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedCampaignOverviewSender +# PakatApiV3Sdk.GetExtendedCampaignOverviewSender ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedCampaignStats.md b/docs/GetExtendedCampaignStats.md index b821995d..6974d94c 100644 --- a/docs/GetExtendedCampaignStats.md +++ b/docs/GetExtendedCampaignStats.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedCampaignStats +# PakatApiV3Sdk.GetExtendedCampaignStats ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedClient.md b/docs/GetExtendedClient.md index 785d3f0f..f1bc3f20 100644 --- a/docs/GetExtendedClient.md +++ b/docs/GetExtendedClient.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedClient +# PakatApiV3Sdk.GetExtendedClient ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedClientAddress.md b/docs/GetExtendedClientAddress.md index e3709fcf..9065ec04 100644 --- a/docs/GetExtendedClientAddress.md +++ b/docs/GetExtendedClientAddress.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedClientAddress +# PakatApiV3Sdk.GetExtendedClientAddress ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedContactDetails.md b/docs/GetExtendedContactDetails.md index e5086e11..4abd353d 100644 --- a/docs/GetExtendedContactDetails.md +++ b/docs/GetExtendedContactDetails.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedContactDetails +# PakatApiV3Sdk.GetExtendedContactDetails ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedContactDetailsStatistics.md b/docs/GetExtendedContactDetailsStatistics.md index 448334c4..585e8d69 100644 --- a/docs/GetExtendedContactDetailsStatistics.md +++ b/docs/GetExtendedContactDetailsStatistics.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedContactDetailsStatistics +# PakatApiV3Sdk.GetExtendedContactDetailsStatistics ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedContactDetailsStatisticsClicked.md b/docs/GetExtendedContactDetailsStatisticsClicked.md index 51ea1dd7..db5a4015 100644 --- a/docs/GetExtendedContactDetailsStatisticsClicked.md +++ b/docs/GetExtendedContactDetailsStatisticsClicked.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedContactDetailsStatisticsClicked +# PakatApiV3Sdk.GetExtendedContactDetailsStatisticsClicked ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedContactDetailsStatisticsLinks.md b/docs/GetExtendedContactDetailsStatisticsLinks.md index d2b73384..41dd57b7 100644 --- a/docs/GetExtendedContactDetailsStatisticsLinks.md +++ b/docs/GetExtendedContactDetailsStatisticsLinks.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks +# PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedContactDetailsStatisticsMessagesSent.md b/docs/GetExtendedContactDetailsStatisticsMessagesSent.md index 4e24ca7b..a16fa632 100644 --- a/docs/GetExtendedContactDetailsStatisticsMessagesSent.md +++ b/docs/GetExtendedContactDetailsStatisticsMessagesSent.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent +# PakatApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedContactDetailsStatisticsOpened.md b/docs/GetExtendedContactDetailsStatisticsOpened.md index 290bfd07..2c377e07 100644 --- a/docs/GetExtendedContactDetailsStatisticsOpened.md +++ b/docs/GetExtendedContactDetailsStatisticsOpened.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened +# PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedContactDetailsStatisticsUnsubscriptions.md b/docs/GetExtendedContactDetailsStatisticsUnsubscriptions.md index 965ce1f5..fb020063 100644 --- a/docs/GetExtendedContactDetailsStatisticsUnsubscriptions.md +++ b/docs/GetExtendedContactDetailsStatisticsUnsubscriptions.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions +# PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.md b/docs/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.md index 2dbfc1b8..2d4a7ae2 100644 --- a/docs/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.md +++ b/docs/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription +# PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.md b/docs/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.md index d9079401..8d594b6f 100644 --- a/docs/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.md +++ b/docs/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription +# PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedList.md b/docs/GetExtendedList.md index bbb942e2..dea4f6ea 100644 --- a/docs/GetExtendedList.md +++ b/docs/GetExtendedList.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedList +# PakatApiV3Sdk.GetExtendedList ## Properties Name | Type | Description | Notes diff --git a/docs/GetExtendedListCampaignStats.md b/docs/GetExtendedListCampaignStats.md index cc43623e..860d5448 100644 --- a/docs/GetExtendedListCampaignStats.md +++ b/docs/GetExtendedListCampaignStats.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetExtendedListCampaignStats +# PakatApiV3Sdk.GetExtendedListCampaignStats ## Properties Name | Type | Description | Notes diff --git a/docs/GetFolder.md b/docs/GetFolder.md index 233ff0ac..c7e8e24c 100644 --- a/docs/GetFolder.md +++ b/docs/GetFolder.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetFolder +# PakatApiV3Sdk.GetFolder ## Properties Name | Type | Description | Notes diff --git a/docs/GetFolderLists.md b/docs/GetFolderLists.md index 50098c14..33187e7d 100644 --- a/docs/GetFolderLists.md +++ b/docs/GetFolderLists.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetFolderLists +# PakatApiV3Sdk.GetFolderLists ## Properties Name | Type | Description | Notes diff --git a/docs/GetFolders.md b/docs/GetFolders.md index cba80e12..d9479fca 100644 --- a/docs/GetFolders.md +++ b/docs/GetFolders.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetFolders +# PakatApiV3Sdk.GetFolders ## Properties Name | Type | Description | Notes diff --git a/docs/GetIp.md b/docs/GetIp.md index 2305684c..fb341c74 100644 --- a/docs/GetIp.md +++ b/docs/GetIp.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetIp +# PakatApiV3Sdk.GetIp ## Properties Name | Type | Description | Notes diff --git a/docs/GetIpFromSender.md b/docs/GetIpFromSender.md index c65002a7..7363abb5 100644 --- a/docs/GetIpFromSender.md +++ b/docs/GetIpFromSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetIpFromSender +# PakatApiV3Sdk.GetIpFromSender ## Properties Name | Type | Description | Notes diff --git a/docs/GetIps.md b/docs/GetIps.md index 007bfc0a..4475a4f0 100644 --- a/docs/GetIps.md +++ b/docs/GetIps.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetIps +# PakatApiV3Sdk.GetIps ## Properties Name | Type | Description | Notes diff --git a/docs/GetIpsFromSender.md b/docs/GetIpsFromSender.md index 13d3ecf3..fe71828c 100644 --- a/docs/GetIpsFromSender.md +++ b/docs/GetIpsFromSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetIpsFromSender +# PakatApiV3Sdk.GetIpsFromSender ## Properties Name | Type | Description | Notes diff --git a/docs/GetList.md b/docs/GetList.md index 5db4688d..1edc140b 100644 --- a/docs/GetList.md +++ b/docs/GetList.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetList +# PakatApiV3Sdk.GetList ## Properties Name | Type | Description | Notes diff --git a/docs/GetLists.md b/docs/GetLists.md index 10962beb..95713ca7 100644 --- a/docs/GetLists.md +++ b/docs/GetLists.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetLists +# PakatApiV3Sdk.GetLists ## Properties Name | Type | Description | Notes diff --git a/docs/GetProcess.md b/docs/GetProcess.md index 246f826b..1ca37bcc 100644 --- a/docs/GetProcess.md +++ b/docs/GetProcess.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetProcess +# PakatApiV3Sdk.GetProcess ## Properties Name | Type | Description | Notes diff --git a/docs/GetProcesses.md b/docs/GetProcesses.md index 53ef9891..d84ac2a9 100644 --- a/docs/GetProcesses.md +++ b/docs/GetProcesses.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetProcesses +# PakatApiV3Sdk.GetProcesses ## Properties Name | Type | Description | Notes diff --git a/docs/GetReports.md b/docs/GetReports.md index b7906747..7c137b1c 100644 --- a/docs/GetReports.md +++ b/docs/GetReports.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetReports +# PakatApiV3Sdk.GetReports ## Properties Name | Type | Description | Notes diff --git a/docs/GetReportsReports.md b/docs/GetReportsReports.md index 0047032d..d76bde4e 100644 --- a/docs/GetReportsReports.md +++ b/docs/GetReportsReports.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetReportsReports +# PakatApiV3Sdk.GetReportsReports ## Properties Name | Type | Description | Notes diff --git a/docs/GetSendersList.md b/docs/GetSendersList.md index 148befa3..9dc67e38 100644 --- a/docs/GetSendersList.md +++ b/docs/GetSendersList.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSendersList +# PakatApiV3Sdk.GetSendersList ## Properties Name | Type | Description | Notes diff --git a/docs/GetSendersListIps.md b/docs/GetSendersListIps.md index 338666a9..909cf2c6 100644 --- a/docs/GetSendersListIps.md +++ b/docs/GetSendersListIps.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSendersListIps +# PakatApiV3Sdk.GetSendersListIps ## Properties Name | Type | Description | Notes diff --git a/docs/GetSendersListSenders.md b/docs/GetSendersListSenders.md index 246e545a..309fb1a1 100644 --- a/docs/GetSendersListSenders.md +++ b/docs/GetSendersListSenders.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSendersListSenders +# PakatApiV3Sdk.GetSendersListSenders ## Properties Name | Type | Description | Notes diff --git a/docs/GetSharedTemplateUrl.md b/docs/GetSharedTemplateUrl.md index 1327d4f2..b300ab32 100644 --- a/docs/GetSharedTemplateUrl.md +++ b/docs/GetSharedTemplateUrl.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSharedTemplateUrl +# PakatApiV3Sdk.GetSharedTemplateUrl ## Properties Name | Type | Description | Notes diff --git a/docs/GetSmsCampaign.md b/docs/GetSmsCampaign.md index 3f65aaf0..2a202d06 100644 --- a/docs/GetSmsCampaign.md +++ b/docs/GetSmsCampaign.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSmsCampaign +# PakatApiV3Sdk.GetSmsCampaign ## Properties Name | Type | Description | Notes diff --git a/docs/GetSmsCampaignOverview.md b/docs/GetSmsCampaignOverview.md index 335b5644..ebd99630 100644 --- a/docs/GetSmsCampaignOverview.md +++ b/docs/GetSmsCampaignOverview.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSmsCampaignOverview +# PakatApiV3Sdk.GetSmsCampaignOverview ## Properties Name | Type | Description | Notes diff --git a/docs/GetSmsCampaignStats.md b/docs/GetSmsCampaignStats.md index 6507e1db..a52b613e 100644 --- a/docs/GetSmsCampaignStats.md +++ b/docs/GetSmsCampaignStats.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSmsCampaignStats +# PakatApiV3Sdk.GetSmsCampaignStats ## Properties Name | Type | Description | Notes diff --git a/docs/GetSmsCampaigns.md b/docs/GetSmsCampaigns.md index e02d16c2..7d425284 100644 --- a/docs/GetSmsCampaigns.md +++ b/docs/GetSmsCampaigns.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSmsCampaigns +# PakatApiV3Sdk.GetSmsCampaigns ## Properties Name | Type | Description | Notes diff --git a/docs/GetSmsEventReport.md b/docs/GetSmsEventReport.md index b8c34e6d..402c2954 100644 --- a/docs/GetSmsEventReport.md +++ b/docs/GetSmsEventReport.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSmsEventReport +# PakatApiV3Sdk.GetSmsEventReport ## Properties Name | Type | Description | Notes diff --git a/docs/GetSmsEventReportEvents.md b/docs/GetSmsEventReportEvents.md index 75b9c462..fd768853 100644 --- a/docs/GetSmsEventReportEvents.md +++ b/docs/GetSmsEventReportEvents.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSmsEventReportEvents +# PakatApiV3Sdk.GetSmsEventReportEvents ## Properties Name | Type | Description | Notes diff --git a/docs/GetSmtpTemplateOverview.md b/docs/GetSmtpTemplateOverview.md index f6600b48..5b110cad 100644 --- a/docs/GetSmtpTemplateOverview.md +++ b/docs/GetSmtpTemplateOverview.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSmtpTemplateOverview +# PakatApiV3Sdk.GetSmtpTemplateOverview ## Properties Name | Type | Description | Notes diff --git a/docs/GetSmtpTemplateOverviewSender.md b/docs/GetSmtpTemplateOverviewSender.md index dc218247..2e4b9901 100644 --- a/docs/GetSmtpTemplateOverviewSender.md +++ b/docs/GetSmtpTemplateOverviewSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSmtpTemplateOverviewSender +# PakatApiV3Sdk.GetSmtpTemplateOverviewSender ## Properties Name | Type | Description | Notes diff --git a/docs/GetSmtpTemplates.md b/docs/GetSmtpTemplates.md index 969b1b0f..72e26a63 100644 --- a/docs/GetSmtpTemplates.md +++ b/docs/GetSmtpTemplates.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSmtpTemplates +# PakatApiV3Sdk.GetSmtpTemplates ## Properties Name | Type | Description | Notes diff --git a/docs/GetSsoToken.md b/docs/GetSsoToken.md index af296345..5049bd37 100644 --- a/docs/GetSsoToken.md +++ b/docs/GetSsoToken.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetSsoToken +# PakatApiV3Sdk.GetSsoToken ## Properties Name | Type | Description | Notes diff --git a/docs/GetStatsByBrowser.md b/docs/GetStatsByBrowser.md index 5b6929b2..7d956277 100644 --- a/docs/GetStatsByBrowser.md +++ b/docs/GetStatsByBrowser.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetStatsByBrowser +# PakatApiV3Sdk.GetStatsByBrowser ## Properties Name | Type | Description | Notes diff --git a/docs/GetStatsByDevice.md b/docs/GetStatsByDevice.md index b896e811..98add980 100644 --- a/docs/GetStatsByDevice.md +++ b/docs/GetStatsByDevice.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetStatsByDevice +# PakatApiV3Sdk.GetStatsByDevice ## Properties Name | Type | Description | Notes diff --git a/docs/GetStatsByDomain.md b/docs/GetStatsByDomain.md index ed6bdf48..e943f3b0 100644 --- a/docs/GetStatsByDomain.md +++ b/docs/GetStatsByDomain.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetStatsByDomain +# PakatApiV3Sdk.GetStatsByDomain ## Properties Name | Type | Description | Notes diff --git a/docs/GetTransacAggregatedSmsReport.md b/docs/GetTransacAggregatedSmsReport.md index 9fa919e8..94295728 100644 --- a/docs/GetTransacAggregatedSmsReport.md +++ b/docs/GetTransacAggregatedSmsReport.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetTransacAggregatedSmsReport +# PakatApiV3Sdk.GetTransacAggregatedSmsReport ## Properties Name | Type | Description | Notes diff --git a/docs/GetTransacBlockedContacts.md b/docs/GetTransacBlockedContacts.md index 0a1c98ad..83874577 100644 --- a/docs/GetTransacBlockedContacts.md +++ b/docs/GetTransacBlockedContacts.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetTransacBlockedContacts +# PakatApiV3Sdk.GetTransacBlockedContacts ## Properties Name | Type | Description | Notes diff --git a/docs/GetTransacBlockedContactsContacts.md b/docs/GetTransacBlockedContactsContacts.md index c27015da..08347caa 100644 --- a/docs/GetTransacBlockedContactsContacts.md +++ b/docs/GetTransacBlockedContactsContacts.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetTransacBlockedContactsContacts +# PakatApiV3Sdk.GetTransacBlockedContactsContacts ## Properties Name | Type | Description | Notes diff --git a/docs/GetTransacBlockedContactsReason.md b/docs/GetTransacBlockedContactsReason.md index 089caf90..dc4af118 100644 --- a/docs/GetTransacBlockedContactsReason.md +++ b/docs/GetTransacBlockedContactsReason.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetTransacBlockedContactsReason +# PakatApiV3Sdk.GetTransacBlockedContactsReason ## Properties Name | Type | Description | Notes diff --git a/docs/GetTransacEmailContent.md b/docs/GetTransacEmailContent.md index 8feedbed..2360db4b 100644 --- a/docs/GetTransacEmailContent.md +++ b/docs/GetTransacEmailContent.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetTransacEmailContent +# PakatApiV3Sdk.GetTransacEmailContent ## Properties Name | Type | Description | Notes diff --git a/docs/GetTransacEmailContentEvents.md b/docs/GetTransacEmailContentEvents.md index 1c8d623a..0f1b2571 100644 --- a/docs/GetTransacEmailContentEvents.md +++ b/docs/GetTransacEmailContentEvents.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetTransacEmailContentEvents +# PakatApiV3Sdk.GetTransacEmailContentEvents ## Properties Name | Type | Description | Notes diff --git a/docs/GetTransacEmailsList.md b/docs/GetTransacEmailsList.md index 93414560..33328d1a 100644 --- a/docs/GetTransacEmailsList.md +++ b/docs/GetTransacEmailsList.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetTransacEmailsList +# PakatApiV3Sdk.GetTransacEmailsList ## Properties Name | Type | Description | Notes diff --git a/docs/GetTransacEmailsListTransactionalEmails.md b/docs/GetTransacEmailsListTransactionalEmails.md index 367e9bc3..df0cd46e 100644 --- a/docs/GetTransacEmailsListTransactionalEmails.md +++ b/docs/GetTransacEmailsListTransactionalEmails.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetTransacEmailsListTransactionalEmails +# PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails ## Properties Name | Type | Description | Notes diff --git a/docs/GetTransacSmsReport.md b/docs/GetTransacSmsReport.md index 0e0bf716..9b3f5adc 100644 --- a/docs/GetTransacSmsReport.md +++ b/docs/GetTransacSmsReport.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetTransacSmsReport +# PakatApiV3Sdk.GetTransacSmsReport ## Properties Name | Type | Description | Notes diff --git a/docs/GetTransacSmsReportReports.md b/docs/GetTransacSmsReportReports.md index fcfed89c..47e7547b 100644 --- a/docs/GetTransacSmsReportReports.md +++ b/docs/GetTransacSmsReportReports.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetTransacSmsReportReports +# PakatApiV3Sdk.GetTransacSmsReportReports ## Properties Name | Type | Description | Notes diff --git a/docs/GetWebhook.md b/docs/GetWebhook.md index 56f8d176..bbc0286d 100644 --- a/docs/GetWebhook.md +++ b/docs/GetWebhook.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetWebhook +# PakatApiV3Sdk.GetWebhook ## Properties Name | Type | Description | Notes diff --git a/docs/GetWebhooks.md b/docs/GetWebhooks.md index 8228811c..6482ef95 100644 --- a/docs/GetWebhooks.md +++ b/docs/GetWebhooks.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.GetWebhooks +# PakatApiV3Sdk.GetWebhooks ## Properties Name | Type | Description | Notes diff --git a/docs/ListsApi.md b/docs/ListsApi.md index 58a5388c..d1015eb9 100644 --- a/docs/ListsApi.md +++ b/docs/ListsApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.ListsApi +# PakatApiV3Sdk.ListsApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -23,8 +23,8 @@ Add existing contacts to a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -38,11 +38,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ListsApi(); +var apiInstance = new PakatApiV3Sdk.ListsApi(); var listId = 789; // Number | Id of the list -var contactEmails = new SibApiV3Sdk.AddContactToList(); // AddContactToList | Emails addresses OR IDs of the contacts +var contactEmails = new PakatApiV3Sdk.AddContactToList(); // AddContactToList | Emails addresses OR IDs of the contacts apiInstance.addContactToList(listId, contactEmails).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -80,8 +80,8 @@ Create a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -95,9 +95,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ListsApi(); +var apiInstance = new PakatApiV3Sdk.ListsApi(); -var createList = new SibApiV3Sdk.CreateList(); // CreateList | Values to create a list +var createList = new PakatApiV3Sdk.CreateList(); // CreateList | Values to create a list apiInstance.createList(createList).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -134,8 +134,8 @@ Delete a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -149,7 +149,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ListsApi(); +var apiInstance = new PakatApiV3Sdk.ListsApi(); var listId = 789; // Number | Id of the list @@ -188,8 +188,8 @@ Get contacts in a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -203,7 +203,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ListsApi(); +var apiInstance = new PakatApiV3Sdk.ListsApi(); var listId = 789; // Number | Id of the list @@ -250,8 +250,8 @@ Get lists in a folder ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -265,7 +265,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ListsApi(); +var apiInstance = new PakatApiV3Sdk.ListsApi(); var folderId = 789; // Number | Id of the folder @@ -310,8 +310,8 @@ Get a list's details ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -325,7 +325,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ListsApi(); +var apiInstance = new PakatApiV3Sdk.ListsApi(); var listId = 789; // Number | Id of the list @@ -364,8 +364,8 @@ Get all the lists ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -379,7 +379,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ListsApi(); +var apiInstance = new PakatApiV3Sdk.ListsApi(); var opts = { 'limit': 10, // Number | Number of documents per page @@ -421,8 +421,8 @@ Delete a contact from a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -436,11 +436,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ListsApi(); +var apiInstance = new PakatApiV3Sdk.ListsApi(); var listId = 789; // Number | Id of the list -var contactEmails = new SibApiV3Sdk.RemoveContactFromList(); // RemoveContactFromList | Emails addresses OR IDs of the contacts +var contactEmails = new PakatApiV3Sdk.RemoveContactFromList(); // RemoveContactFromList | Emails addresses OR IDs of the contacts apiInstance.removeContactFromList(listId, contactEmails).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -478,8 +478,8 @@ Update a list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -493,11 +493,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ListsApi(); +var apiInstance = new PakatApiV3Sdk.ListsApi(); var listId = 789; // Number | Id of the list -var updateList = new SibApiV3Sdk.UpdateList(); // UpdateList | Values to update a list +var updateList = new PakatApiV3Sdk.UpdateList(); // UpdateList | Values to update a list apiInstance.updateList(listId, updateList).then(function() { console.log('API called successfully.'); diff --git a/docs/ManageIp.md b/docs/ManageIp.md index 6b12be6e..61df7b8e 100644 --- a/docs/ManageIp.md +++ b/docs/ManageIp.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.ManageIp +# PakatApiV3Sdk.ManageIp ## Properties Name | Type | Description | Notes diff --git a/docs/PostContactInfo.md b/docs/PostContactInfo.md index 5696555d..09945f02 100644 --- a/docs/PostContactInfo.md +++ b/docs/PostContactInfo.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.PostContactInfo +# PakatApiV3Sdk.PostContactInfo ## Properties Name | Type | Description | Notes diff --git a/docs/PostContactInfoContacts.md b/docs/PostContactInfoContacts.md index ee7184fd..2e14c845 100644 --- a/docs/PostContactInfoContacts.md +++ b/docs/PostContactInfoContacts.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.PostContactInfoContacts +# PakatApiV3Sdk.PostContactInfoContacts ## Properties Name | Type | Description | Notes diff --git a/docs/PostSendFailed.md b/docs/PostSendFailed.md index 4ccd38de..7826caad 100644 --- a/docs/PostSendFailed.md +++ b/docs/PostSendFailed.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.PostSendFailed +# PakatApiV3Sdk.PostSendFailed ## Properties Name | Type | Description | Notes diff --git a/docs/PostSendSmsTestFailed.md b/docs/PostSendSmsTestFailed.md index fc418076..d46158c6 100644 --- a/docs/PostSendSmsTestFailed.md +++ b/docs/PostSendSmsTestFailed.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.PostSendSmsTestFailed +# PakatApiV3Sdk.PostSendSmsTestFailed ## Properties Name | Type | Description | Notes diff --git a/docs/ProcessApi.md b/docs/ProcessApi.md index 72c0c9ac..a41a9f96 100644 --- a/docs/ProcessApi.md +++ b/docs/ProcessApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.ProcessApi +# PakatApiV3Sdk.ProcessApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -16,8 +16,8 @@ Return the informations for a process ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -31,7 +31,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ProcessApi(); +var apiInstance = new PakatApiV3Sdk.ProcessApi(); var processId = 789; // Number | Id of the process @@ -70,8 +70,8 @@ Return all the processes for your account ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -85,7 +85,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ProcessApi(); +var apiInstance = new PakatApiV3Sdk.ProcessApi(); var opts = { 'limit': 10, // Number | Number limitation for the result returned diff --git a/docs/RemainingCreditModel.md b/docs/RemainingCreditModel.md index 38790a6d..7426e847 100644 --- a/docs/RemainingCreditModel.md +++ b/docs/RemainingCreditModel.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.RemainingCreditModel +# PakatApiV3Sdk.RemainingCreditModel ## Properties Name | Type | Description | Notes diff --git a/docs/RemainingCreditModelChild.md b/docs/RemainingCreditModelChild.md index e7e1b264..1f13e7d1 100644 --- a/docs/RemainingCreditModelChild.md +++ b/docs/RemainingCreditModelChild.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.RemainingCreditModelChild +# PakatApiV3Sdk.RemainingCreditModelChild ## Properties Name | Type | Description | Notes diff --git a/docs/RemainingCreditModelReseller.md b/docs/RemainingCreditModelReseller.md index f9cff581..b759510b 100644 --- a/docs/RemainingCreditModelReseller.md +++ b/docs/RemainingCreditModelReseller.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.RemainingCreditModelReseller +# PakatApiV3Sdk.RemainingCreditModelReseller ## Properties Name | Type | Description | Notes diff --git a/docs/RemoveContactFromList.md b/docs/RemoveContactFromList.md index 27e0e92a..999389ad 100644 --- a/docs/RemoveContactFromList.md +++ b/docs/RemoveContactFromList.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.RemoveContactFromList +# PakatApiV3Sdk.RemoveContactFromList ## Properties Name | Type | Description | Notes diff --git a/docs/RemoveCredits.md b/docs/RemoveCredits.md index c4bda2a1..c2f3e9a2 100644 --- a/docs/RemoveCredits.md +++ b/docs/RemoveCredits.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.RemoveCredits +# PakatApiV3Sdk.RemoveCredits ## Properties Name | Type | Description | Notes diff --git a/docs/RequestContactExport.md b/docs/RequestContactExport.md index 643ff3f7..a83ab7d2 100644 --- a/docs/RequestContactExport.md +++ b/docs/RequestContactExport.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.RequestContactExport +# PakatApiV3Sdk.RequestContactExport ## Properties Name | Type | Description | Notes diff --git a/docs/RequestContactExportCustomContactFilter.md b/docs/RequestContactExportCustomContactFilter.md index 5064b967..71b9950b 100644 --- a/docs/RequestContactExportCustomContactFilter.md +++ b/docs/RequestContactExportCustomContactFilter.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.RequestContactExportCustomContactFilter +# PakatApiV3Sdk.RequestContactExportCustomContactFilter ## Properties Name | Type | Description | Notes diff --git a/docs/RequestContactImport.md b/docs/RequestContactImport.md index 6da0dfd0..49103003 100644 --- a/docs/RequestContactImport.md +++ b/docs/RequestContactImport.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.RequestContactImport +# PakatApiV3Sdk.RequestContactImport ## Properties Name | Type | Description | Notes diff --git a/docs/RequestContactImportNewList.md b/docs/RequestContactImportNewList.md index f17ea80e..3f5fe1d6 100644 --- a/docs/RequestContactImportNewList.md +++ b/docs/RequestContactImportNewList.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.RequestContactImportNewList +# PakatApiV3Sdk.RequestContactImportNewList ## Properties Name | Type | Description | Notes diff --git a/docs/RequestSmsRecipientExport.md b/docs/RequestSmsRecipientExport.md index 8b47f9a1..b47c1725 100644 --- a/docs/RequestSmsRecipientExport.md +++ b/docs/RequestSmsRecipientExport.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.RequestSmsRecipientExport +# PakatApiV3Sdk.RequestSmsRecipientExport ## Properties Name | Type | Description | Notes diff --git a/docs/ResellerApi.md b/docs/ResellerApi.md index c407a71d..72b10ad5 100644 --- a/docs/ResellerApi.md +++ b/docs/ResellerApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.ResellerApi +# PakatApiV3Sdk.ResellerApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -30,8 +30,8 @@ Add Email and/or SMS credits to a specific child account ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -45,11 +45,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child -var addCredits = new SibApiV3Sdk.AddCredits(); // AddCredits | Values to post to add credit to a specific child account +var addCredits = new PakatApiV3Sdk.AddCredits(); // AddCredits | Values to post to add credit to a specific child account apiInstance.addCredits(childIdentifier, addCredits).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -87,8 +87,8 @@ Associate a dedicated IP to the child ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -102,11 +102,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child -var ip = new SibApiV3Sdk.ManageIp(); // ManageIp | IP to associate +var ip = new PakatApiV3Sdk.ManageIp(); // ManageIp | IP to associate apiInstance.associateIpToChild(childIdentifier, ip).then(function() { console.log('API called successfully.'); @@ -144,8 +144,8 @@ Create a domain for a child account ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -159,11 +159,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child -var addChildDomain = new SibApiV3Sdk.AddChildDomain(); // AddChildDomain | Sender domain to add for a specific child account. This will not be displayed to the parent account. +var addChildDomain = new PakatApiV3Sdk.AddChildDomain(); // AddChildDomain | Sender domain to add for a specific child account. This will not be displayed to the parent account. apiInstance.createChildDomain(childIdentifier, addChildDomain).then(function() { console.log('API called successfully.'); @@ -201,8 +201,8 @@ Creates a reseller child ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -216,10 +216,10 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var opts = { - 'resellerChild': new SibApiV3Sdk.CreateChild() // CreateChild | reseller child to add + 'resellerChild': new PakatApiV3Sdk.CreateChild() // CreateChild | reseller child to add }; apiInstance.createResellerChild(opts).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -256,8 +256,8 @@ Delete the sender domain of the reseller child based on the childIdentifier and ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -271,7 +271,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child @@ -313,8 +313,8 @@ Delete a single reseller child based on the child identifier supplied ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -328,7 +328,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or child id of reseller's child @@ -367,8 +367,8 @@ Dissociate a dedicated IP to the child ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -382,11 +382,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child -var ip = new SibApiV3Sdk.ManageIp(); // ManageIp | IP to dissociate +var ip = new PakatApiV3Sdk.ManageIp(); // ManageIp | IP to dissociate apiInstance.dissociateIpFromChild(childIdentifier, ip).then(function() { console.log('API called successfully.'); @@ -424,8 +424,8 @@ Get the status of a reseller's child account creation, whether it is success ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -439,7 +439,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child @@ -478,8 +478,8 @@ Get all sender domains for a specific child account ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -493,7 +493,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child @@ -532,8 +532,8 @@ Get a child account's details ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -547,7 +547,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child @@ -586,8 +586,8 @@ Get the list of all children accounts ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -601,7 +601,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var opts = { 'limit': 10, // Number | Number of documents for child accounts information per page @@ -645,8 +645,8 @@ It returns a session [token] which will remain valid for a short period of time. ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -660,7 +660,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child @@ -699,8 +699,8 @@ Remove Email and/or SMS credits from a specific child account ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -714,11 +714,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child -var removeCredits = new SibApiV3Sdk.RemoveCredits(); // RemoveCredits | Values to post to remove email or SMS credits from a specific child account +var removeCredits = new PakatApiV3Sdk.RemoveCredits(); // RemoveCredits | Values to post to remove email or SMS credits from a specific child account apiInstance.removeCredits(childIdentifier, removeCredits).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -756,8 +756,8 @@ Update info of reseller's child account status based on the childIdentifier ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -771,11 +771,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child -var updateChildAccountStatus = new SibApiV3Sdk.UpdateChildAccountStatus(); // UpdateChildAccountStatus | values to update in child account status +var updateChildAccountStatus = new PakatApiV3Sdk.UpdateChildAccountStatus(); // UpdateChildAccountStatus | values to update in child account status apiInstance.updateChildAccountStatus(childIdentifier, updateChildAccountStatus).then(function() { console.log('API called successfully.'); @@ -813,8 +813,8 @@ Update the sender domain of reseller's child based on the childIdentifier an ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -828,13 +828,13 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child var domainName = "domainName_example"; // String | Pass the existing domain that needs to be updated -var updateChildDomain = new SibApiV3Sdk.UpdateChildDomain(); // UpdateChildDomain | value to update for sender domain +var updateChildDomain = new PakatApiV3Sdk.UpdateChildDomain(); // UpdateChildDomain | value to update for sender domain apiInstance.updateChildDomain(childIdentifier, domainName, updateChildDomain).then(function() { console.log('API called successfully.'); @@ -873,8 +873,8 @@ Update info of reseller's child based on the child identifier supplied ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -888,11 +888,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.ResellerApi(); +var apiInstance = new PakatApiV3Sdk.ResellerApi(); var childIdentifier = "childIdentifier_example"; // String | Either auth key or id of reseller's child -var resellerChild = new SibApiV3Sdk.UpdateChild(); // UpdateChild | values to update in child profile +var resellerChild = new PakatApiV3Sdk.UpdateChild(); // UpdateChild | values to update in child profile apiInstance.updateResellerChild(childIdentifier, resellerChild).then(function() { console.log('API called successfully.'); diff --git a/docs/SMSCampaignsApi.md b/docs/SMSCampaignsApi.md index d3a17493..bf84f17b 100644 --- a/docs/SMSCampaignsApi.md +++ b/docs/SMSCampaignsApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SMSCampaignsApi +# PakatApiV3Sdk.SMSCampaignsApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -24,8 +24,8 @@ Creates an SMS campaign ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -39,9 +39,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SMSCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.SMSCampaignsApi(); -var createSmsCampaign = new SibApiV3Sdk.CreateSmsCampaign(); // CreateSmsCampaign | Values to create an SMS Campaign +var createSmsCampaign = new PakatApiV3Sdk.CreateSmsCampaign(); // CreateSmsCampaign | Values to create an SMS Campaign apiInstance.createSmsCampaign(createSmsCampaign).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -78,8 +78,8 @@ Delete an SMS campaign ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -93,7 +93,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SMSCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.SMSCampaignsApi(); var campaignId = 789; // Number | id of the SMS campaign @@ -132,8 +132,8 @@ Get an SMS campaign ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -147,7 +147,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SMSCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.SMSCampaignsApi(); var campaignId = 789; // Number | id of the SMS campaign @@ -186,8 +186,8 @@ Returns the information for all your created SMS campaigns ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -201,7 +201,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SMSCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.SMSCampaignsApi(); var opts = { 'status': "status_example", // String | Status of campaign. @@ -251,8 +251,8 @@ It returns the background process ID which on completion calls the notify URL th ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -266,12 +266,12 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SMSCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.SMSCampaignsApi(); var campaignId = 789; // Number | id of the campaign var opts = { - 'recipientExport': new SibApiV3Sdk.RequestSmsRecipientExport() // RequestSmsRecipientExport | Values to send for a recipient export request + 'recipientExport': new PakatApiV3Sdk.RequestSmsRecipientExport() // RequestSmsRecipientExport | Values to send for a recipient export request }; apiInstance.requestSmsRecipientExport(campaignId, opts).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -309,8 +309,8 @@ Send your SMS campaign immediately ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -324,7 +324,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SMSCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.SMSCampaignsApi(); var campaignId = 789; // Number | id of the campaign @@ -365,8 +365,8 @@ Send report of Sent and Archived campaign, to the specified email addresses, wit ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -380,11 +380,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SMSCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.SMSCampaignsApi(); var campaignId = 789; // Number | id of the campaign -var sendReport = new SibApiV3Sdk.SendReport(); // SendReport | Values for send a report +var sendReport = new PakatApiV3Sdk.SendReport(); // SendReport | Values for send a report apiInstance.sendSmsReport(campaignId, sendReport).then(function() { console.log('API called successfully.'); @@ -422,8 +422,8 @@ Send a test SMS campaign ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -437,11 +437,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SMSCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.SMSCampaignsApi(); var campaignId = 789; // Number | Id of the SMS campaign -var phoneNumber = new SibApiV3Sdk.SendTestSms(); // SendTestSms | Mobile number of the recipient with the country code. This number must belong to one of your contacts in SendinBlue account and must not be blacklisted +var phoneNumber = new PakatApiV3Sdk.SendTestSms(); // SendTestSms | Mobile number of the recipient with the country code. This number must belong to one of your contacts in SendinBlue account and must not be blacklisted apiInstance.sendTestSms(campaignId, phoneNumber).then(function() { console.log('API called successfully.'); @@ -479,8 +479,8 @@ Update an SMS campaign ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -494,11 +494,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SMSCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.SMSCampaignsApi(); var campaignId = 789; // Number | id of the SMS campaign -var updateSmsCampaign = new SibApiV3Sdk.UpdateSmsCampaign(); // UpdateSmsCampaign | Values to update an SMS Campaign +var updateSmsCampaign = new PakatApiV3Sdk.UpdateSmsCampaign(); // UpdateSmsCampaign | Values to update an SMS Campaign apiInstance.updateSmsCampaign(campaignId, updateSmsCampaign).then(function() { console.log('API called successfully.'); @@ -536,8 +536,8 @@ Update a campaign's status ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -551,11 +551,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SMSCampaignsApi(); +var apiInstance = new PakatApiV3Sdk.SMSCampaignsApi(); var campaignId = 789; // Number | id of the campaign -var status = new SibApiV3Sdk.UpdateCampaignStatus(); // UpdateCampaignStatus | Status of the campaign. +var status = new PakatApiV3Sdk.UpdateCampaignStatus(); // UpdateCampaignStatus | Status of the campaign. apiInstance.updateSmsCampaignStatus(campaignId, status).then(function() { console.log('API called successfully.'); diff --git a/docs/SendEmail.md b/docs/SendEmail.md index f1df907a..7e1d8851 100644 --- a/docs/SendEmail.md +++ b/docs/SendEmail.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendEmail +# PakatApiV3Sdk.SendEmail ## Properties Name | Type | Description | Notes diff --git a/docs/SendEmailAttachment.md b/docs/SendEmailAttachment.md index a9b73353..654ea105 100644 --- a/docs/SendEmailAttachment.md +++ b/docs/SendEmailAttachment.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendEmailAttachment +# PakatApiV3Sdk.SendEmailAttachment ## Properties Name | Type | Description | Notes diff --git a/docs/SendReport.md b/docs/SendReport.md index ea7c32dc..e0601160 100644 --- a/docs/SendReport.md +++ b/docs/SendReport.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendReport +# PakatApiV3Sdk.SendReport ## Properties Name | Type | Description | Notes diff --git a/docs/SendReportEmail.md b/docs/SendReportEmail.md index a87affc1..5b56cb8e 100644 --- a/docs/SendReportEmail.md +++ b/docs/SendReportEmail.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendReportEmail +# PakatApiV3Sdk.SendReportEmail ## Properties Name | Type | Description | Notes diff --git a/docs/SendSms.md b/docs/SendSms.md index 3dc3922d..14c1c912 100644 --- a/docs/SendSms.md +++ b/docs/SendSms.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendSms +# PakatApiV3Sdk.SendSms ## Properties Name | Type | Description | Notes diff --git a/docs/SendSmtpEmail.md b/docs/SendSmtpEmail.md index c157ab16..263d2188 100644 --- a/docs/SendSmtpEmail.md +++ b/docs/SendSmtpEmail.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendSmtpEmail +# PakatApiV3Sdk.SendSmtpEmail ## Properties Name | Type | Description | Notes diff --git a/docs/SendSmtpEmailAttachment.md b/docs/SendSmtpEmailAttachment.md index b2be612e..90a4fb6d 100644 --- a/docs/SendSmtpEmailAttachment.md +++ b/docs/SendSmtpEmailAttachment.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendSmtpEmailAttachment +# PakatApiV3Sdk.SendSmtpEmailAttachment ## Properties Name | Type | Description | Notes diff --git a/docs/SendSmtpEmailBcc.md b/docs/SendSmtpEmailBcc.md index b40b2020..449c3ab3 100644 --- a/docs/SendSmtpEmailBcc.md +++ b/docs/SendSmtpEmailBcc.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendSmtpEmailBcc +# PakatApiV3Sdk.SendSmtpEmailBcc ## Properties Name | Type | Description | Notes diff --git a/docs/SendSmtpEmailCc.md b/docs/SendSmtpEmailCc.md index 8c1fee32..82721830 100644 --- a/docs/SendSmtpEmailCc.md +++ b/docs/SendSmtpEmailCc.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendSmtpEmailCc +# PakatApiV3Sdk.SendSmtpEmailCc ## Properties Name | Type | Description | Notes diff --git a/docs/SendSmtpEmailReplyTo.md b/docs/SendSmtpEmailReplyTo.md index 2fedc394..7f3a035a 100644 --- a/docs/SendSmtpEmailReplyTo.md +++ b/docs/SendSmtpEmailReplyTo.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendSmtpEmailReplyTo +# PakatApiV3Sdk.SendSmtpEmailReplyTo ## Properties Name | Type | Description | Notes diff --git a/docs/SendSmtpEmailSender.md b/docs/SendSmtpEmailSender.md index fc93c47f..9bd2d5cc 100644 --- a/docs/SendSmtpEmailSender.md +++ b/docs/SendSmtpEmailSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendSmtpEmailSender +# PakatApiV3Sdk.SendSmtpEmailSender ## Properties Name | Type | Description | Notes diff --git a/docs/SendSmtpEmailTo.md b/docs/SendSmtpEmailTo.md index aa8386a6..4f719e93 100644 --- a/docs/SendSmtpEmailTo.md +++ b/docs/SendSmtpEmailTo.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendSmtpEmailTo +# PakatApiV3Sdk.SendSmtpEmailTo ## Properties Name | Type | Description | Notes diff --git a/docs/SendTemplateEmail.md b/docs/SendTemplateEmail.md index 2cfe7e46..893226b2 100644 --- a/docs/SendTemplateEmail.md +++ b/docs/SendTemplateEmail.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendTemplateEmail +# PakatApiV3Sdk.SendTemplateEmail ## Properties Name | Type | Description | Notes diff --git a/docs/SendTestEmail.md b/docs/SendTestEmail.md index 238bc1ff..2e3542c0 100644 --- a/docs/SendTestEmail.md +++ b/docs/SendTestEmail.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendTestEmail +# PakatApiV3Sdk.SendTestEmail ## Properties Name | Type | Description | Notes diff --git a/docs/SendTestSms.md b/docs/SendTestSms.md index f1cbf541..58b3d2c2 100644 --- a/docs/SendTestSms.md +++ b/docs/SendTestSms.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendTestSms +# PakatApiV3Sdk.SendTestSms ## Properties Name | Type | Description | Notes diff --git a/docs/SendTransacSms.md b/docs/SendTransacSms.md index 9af0de53..961b6627 100644 --- a/docs/SendTransacSms.md +++ b/docs/SendTransacSms.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendTransacSms +# PakatApiV3Sdk.SendTransacSms ## Properties Name | Type | Description | Notes diff --git a/docs/SendersApi.md b/docs/SendersApi.md index 1fc15956..be99a9b5 100644 --- a/docs/SendersApi.md +++ b/docs/SendersApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.SendersApi +# PakatApiV3Sdk.SendersApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -20,8 +20,8 @@ Create a new sender ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -35,10 +35,10 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SendersApi(); +var apiInstance = new PakatApiV3Sdk.SendersApi(); var opts = { - 'sender': new SibApiV3Sdk.CreateSender() // CreateSender | sender's name + 'sender': new PakatApiV3Sdk.CreateSender() // CreateSender | sender's name }; apiInstance.createSender(opts).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -75,8 +75,8 @@ Delete a sender ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -90,7 +90,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SendersApi(); +var apiInstance = new PakatApiV3Sdk.SendersApi(); var senderId = 789; // Number | Id of the sender @@ -129,8 +129,8 @@ Get all the dedicated IPs for your account ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -144,7 +144,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SendersApi(); +var apiInstance = new PakatApiV3Sdk.SendersApi(); apiInstance.getIps().then(function(data) { console.log('API called successfully. Returned data: ' + data); }, function(error) { @@ -177,8 +177,8 @@ Get all the dedicated IPs for a sender ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -192,7 +192,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SendersApi(); +var apiInstance = new PakatApiV3Sdk.SendersApi(); var senderId = 789; // Number | Id of the sender @@ -231,8 +231,8 @@ Get the list of all your senders ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -246,7 +246,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SendersApi(); +var apiInstance = new PakatApiV3Sdk.SendersApi(); var opts = { 'ip': "ip_example", // String | Filter your senders for a specific ip (available for dedicated IP usage only) @@ -288,8 +288,8 @@ Update a sender ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -303,12 +303,12 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.SendersApi(); +var apiInstance = new PakatApiV3Sdk.SendersApi(); var senderId = 789; // Number | Id of the sender var opts = { - 'sender': new SibApiV3Sdk.UpdateSender() // UpdateSender | sender's name + 'sender': new PakatApiV3Sdk.UpdateSender() // UpdateSender | sender's name }; apiInstance.updateSender(senderId, opts).then(function() { console.log('API called successfully.'); diff --git a/docs/TransactionalEmailsApi.md b/docs/TransactionalEmailsApi.md index 3e390db0..4f74f615 100644 --- a/docs/TransactionalEmailsApi.md +++ b/docs/TransactionalEmailsApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.TransactionalEmailsApi +# PakatApiV3Sdk.TransactionalEmailsApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -31,8 +31,8 @@ Create an email template ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -46,9 +46,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); -var smtpTemplate = new SibApiV3Sdk.CreateSmtpTemplate(); // CreateSmtpTemplate | values to update in transactional email template +var smtpTemplate = new PakatApiV3Sdk.CreateSmtpTemplate(); // CreateSmtpTemplate | values to update in transactional email template apiInstance.createSmtpTemplate(smtpTemplate).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -87,8 +87,8 @@ Delete hardbounces. To use carefully (e.g. in case of temporary ISP failures) ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -102,10 +102,10 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var opts = { - 'deleteHardbounces': new SibApiV3Sdk.DeleteHardbounces() // DeleteHardbounces | values to delete hardbounces + 'deleteHardbounces': new PakatApiV3Sdk.DeleteHardbounces() // DeleteHardbounces | values to delete hardbounces }; apiInstance.deleteHardbounces(opts).then(function() { console.log('API called successfully.'); @@ -142,8 +142,8 @@ Delete an inactive email template ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -157,7 +157,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var templateId = 789; // Number | id of the template @@ -196,8 +196,8 @@ Get your transactional email activity aggregated over a period of time ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -211,7 +211,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var opts = { 'startDate': "startDate_example", // String | Mandatory if endDate is used. Starting date of the report (YYYY-MM-DD). Must be lower than equal to endDate @@ -257,8 +257,8 @@ Get all your transactional email activity (unaggregated events) ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -272,7 +272,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var opts = { 'limit': 50, // Number | Number limitation for the result returned @@ -330,8 +330,8 @@ Get your transactional email activity aggregated per day ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -345,7 +345,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var opts = { 'limit': 10, // Number | Number of documents returned per page @@ -395,8 +395,8 @@ Returns the template information ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -410,7 +410,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var templateId = 789; // Number | id of the template @@ -449,8 +449,8 @@ Get the list of email templates ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -464,7 +464,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var opts = { 'templateStatus': true, // Boolean | Filter on the status of the template. Active = true, inactive = false @@ -508,8 +508,8 @@ Get the list of blocked or unsubscribed transactional contacts ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -523,7 +523,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var opts = { 'startDate': "startDate_example", // String | Mandatory if endDate is used. Starting date (YYYY-MM-DD) from which you want to fetch the blocked or unsubscribed contacts @@ -571,8 +571,8 @@ Get the personalized content of a sent transactional email ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -586,7 +586,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var uuid = "uuid_example"; // String | Unique id of the transactional email that has been sent to a particular contact @@ -627,8 +627,8 @@ This endpoint will show the list of emails for past 30 days by default. To retri ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -642,7 +642,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var opts = { 'email': "email_example", // String | Mandatory if templateId and messageId are not passed in query filters. Email address to which transactional email has been sent. @@ -692,8 +692,8 @@ This endpoint is deprecated. Prefer v3/smtp/email instead. ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -707,11 +707,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var templateId = 789; // Number | Id of the template -var sendEmail = new SibApiV3Sdk.SendEmail(); // SendEmail | +var sendEmail = new PakatApiV3Sdk.SendEmail(); // SendEmail | apiInstance.sendTemplate(templateId, sendEmail).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -749,8 +749,8 @@ Send a template to your test list ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -764,11 +764,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var templateId = 789; // Number | Id of the template -var sendTestEmail = new SibApiV3Sdk.SendTestEmail(); // SendTestEmail | +var sendTestEmail = new PakatApiV3Sdk.SendTestEmail(); // SendTestEmail | apiInstance.sendTestTemplate(templateId, sendTestEmail).then(function() { console.log('API called successfully.'); @@ -806,8 +806,8 @@ Send a transactional email ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -821,9 +821,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); -var sendSmtpEmail = new SibApiV3Sdk.SendSmtpEmail(); // SendSmtpEmail | Values to send a transactional email +var sendSmtpEmail = new PakatApiV3Sdk.SendSmtpEmail(); // SendSmtpEmail | Values to send a transactional email apiInstance.sendTransacEmail(sendSmtpEmail).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -860,8 +860,8 @@ Unblock or resubscribe a transactional contact ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -875,7 +875,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var email = "email_example"; // String | contact email (urlencoded) to unblock. @@ -914,8 +914,8 @@ Delete an SMTP transactional log ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -929,7 +929,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var messageId = "messageId_example"; // String | MessageId of the transactional log to delete @@ -968,8 +968,8 @@ Update an email template ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -983,11 +983,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalEmailsApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalEmailsApi(); var templateId = 789; // Number | id of the template -var smtpTemplate = new SibApiV3Sdk.UpdateSmtpTemplate(); // UpdateSmtpTemplate | values to update in transactional email template +var smtpTemplate = new PakatApiV3Sdk.UpdateSmtpTemplate(); // UpdateSmtpTemplate | values to update in transactional email template apiInstance.updateSmtpTemplate(templateId, smtpTemplate).then(function() { console.log('API called successfully.'); diff --git a/docs/TransactionalSMSApi.md b/docs/TransactionalSMSApi.md index 5f351758..f45c0b2e 100644 --- a/docs/TransactionalSMSApi.md +++ b/docs/TransactionalSMSApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.TransactionalSMSApi +# PakatApiV3Sdk.TransactionalSMSApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -18,8 +18,8 @@ Get all your SMS activity (unaggregated events) ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -33,7 +33,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalSMSApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalSMSApi(); var opts = { 'limit': 50, // Number | Number of documents per page @@ -87,8 +87,8 @@ Get your SMS activity aggregated over a period of time ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -102,7 +102,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalSMSApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalSMSApi(); var opts = { 'startDate': "startDate_example", // String | Mandatory if endDate is used. Starting date (YYYY-MM-DD) of the report @@ -148,8 +148,8 @@ Get your SMS activity aggregated per day ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -163,7 +163,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalSMSApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalSMSApi(); var opts = { 'startDate': "startDate_example", // String | Mandatory if endDate is used. Starting date (YYYY-MM-DD) of the report @@ -209,8 +209,8 @@ Send SMS message to a mobile number ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -224,9 +224,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.TransactionalSMSApi(); +var apiInstance = new PakatApiV3Sdk.TransactionalSMSApi(); -var sendTransacSms = new SibApiV3Sdk.SendTransacSms(); // SendTransacSms | Values to send a transactional SMS +var sendTransacSms = new PakatApiV3Sdk.SendTransacSms(); // SendTransacSms | Values to send a transactional SMS apiInstance.sendTransacSms(sendTransacSms).then(function(data) { console.log('API called successfully. Returned data: ' + data); diff --git a/docs/UpdateAttribute.md b/docs/UpdateAttribute.md index e7e02a09..71a6119f 100644 --- a/docs/UpdateAttribute.md +++ b/docs/UpdateAttribute.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateAttribute +# PakatApiV3Sdk.UpdateAttribute ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateAttributeEnumeration.md b/docs/UpdateAttributeEnumeration.md index d603cd49..e4889580 100644 --- a/docs/UpdateAttributeEnumeration.md +++ b/docs/UpdateAttributeEnumeration.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateAttributeEnumeration +# PakatApiV3Sdk.UpdateAttributeEnumeration ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateCampaignStatus.md b/docs/UpdateCampaignStatus.md index e237a1e7..7dc5b372 100644 --- a/docs/UpdateCampaignStatus.md +++ b/docs/UpdateCampaignStatus.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateCampaignStatus +# PakatApiV3Sdk.UpdateCampaignStatus ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateChild.md b/docs/UpdateChild.md index 4133948c..01aa717d 100644 --- a/docs/UpdateChild.md +++ b/docs/UpdateChild.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateChild +# PakatApiV3Sdk.UpdateChild ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateChildAccountStatus.md b/docs/UpdateChildAccountStatus.md index 649836ae..db04561c 100644 --- a/docs/UpdateChildAccountStatus.md +++ b/docs/UpdateChildAccountStatus.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateChildAccountStatus +# PakatApiV3Sdk.UpdateChildAccountStatus ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateChildDomain.md b/docs/UpdateChildDomain.md index d0d6c717..7603c3f6 100644 --- a/docs/UpdateChildDomain.md +++ b/docs/UpdateChildDomain.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateChildDomain +# PakatApiV3Sdk.UpdateChildDomain ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateContact.md b/docs/UpdateContact.md index d92972d5..602fa0ae 100644 --- a/docs/UpdateContact.md +++ b/docs/UpdateContact.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateContact +# PakatApiV3Sdk.UpdateContact ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateEmailCampaign.md b/docs/UpdateEmailCampaign.md index 783eba12..cbe29991 100644 --- a/docs/UpdateEmailCampaign.md +++ b/docs/UpdateEmailCampaign.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateEmailCampaign +# PakatApiV3Sdk.UpdateEmailCampaign ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateEmailCampaignRecipients.md b/docs/UpdateEmailCampaignRecipients.md index cd130732..06463809 100644 --- a/docs/UpdateEmailCampaignRecipients.md +++ b/docs/UpdateEmailCampaignRecipients.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateEmailCampaignRecipients +# PakatApiV3Sdk.UpdateEmailCampaignRecipients ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateEmailCampaignSender.md b/docs/UpdateEmailCampaignSender.md index 9dc86982..bf5cd57a 100644 --- a/docs/UpdateEmailCampaignSender.md +++ b/docs/UpdateEmailCampaignSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateEmailCampaignSender +# PakatApiV3Sdk.UpdateEmailCampaignSender ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateList.md b/docs/UpdateList.md index fa2acc4b..641cc0bd 100644 --- a/docs/UpdateList.md +++ b/docs/UpdateList.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateList +# PakatApiV3Sdk.UpdateList ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateSender.md b/docs/UpdateSender.md index 7d2d693c..b3148a06 100644 --- a/docs/UpdateSender.md +++ b/docs/UpdateSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateSender +# PakatApiV3Sdk.UpdateSender ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateSmsCampaign.md b/docs/UpdateSmsCampaign.md index 652b7d54..b8f3ac35 100644 --- a/docs/UpdateSmsCampaign.md +++ b/docs/UpdateSmsCampaign.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateSmsCampaign +# PakatApiV3Sdk.UpdateSmsCampaign ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateSmtpTemplate.md b/docs/UpdateSmtpTemplate.md index be48db92..98da2446 100644 --- a/docs/UpdateSmtpTemplate.md +++ b/docs/UpdateSmtpTemplate.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateSmtpTemplate +# PakatApiV3Sdk.UpdateSmtpTemplate ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateSmtpTemplateSender.md b/docs/UpdateSmtpTemplateSender.md index be17ea4d..7c083ff6 100644 --- a/docs/UpdateSmtpTemplateSender.md +++ b/docs/UpdateSmtpTemplateSender.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateSmtpTemplateSender +# PakatApiV3Sdk.UpdateSmtpTemplateSender ## Properties Name | Type | Description | Notes diff --git a/docs/UpdateWebhook.md b/docs/UpdateWebhook.md index 2161b033..fbbe9e37 100644 --- a/docs/UpdateWebhook.md +++ b/docs/UpdateWebhook.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UpdateWebhook +# PakatApiV3Sdk.UpdateWebhook ## Properties Name | Type | Description | Notes diff --git a/docs/UploadImageToGallery.md b/docs/UploadImageToGallery.md index 0f43a9d4..8951d7b8 100644 --- a/docs/UploadImageToGallery.md +++ b/docs/UploadImageToGallery.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.UploadImageToGallery +# PakatApiV3Sdk.UploadImageToGallery ## Properties Name | Type | Description | Notes diff --git a/docs/WebhooksApi.md b/docs/WebhooksApi.md index 56a387b0..eabfb5df 100644 --- a/docs/WebhooksApi.md +++ b/docs/WebhooksApi.md @@ -1,4 +1,4 @@ -# SibApiV3Sdk.WebhooksApi +# PakatApiV3Sdk.WebhooksApi All URIs are relative to *https://api.sendinblue.com/v3* @@ -19,8 +19,8 @@ Create a webhook ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -34,9 +34,9 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.WebhooksApi(); +var apiInstance = new PakatApiV3Sdk.WebhooksApi(); -var createWebhook = new SibApiV3Sdk.CreateWebhook(); // CreateWebhook | Values to create a webhook +var createWebhook = new PakatApiV3Sdk.CreateWebhook(); // CreateWebhook | Values to create a webhook apiInstance.createWebhook(createWebhook).then(function(data) { console.log('API called successfully. Returned data: ' + data); @@ -73,8 +73,8 @@ Delete a webhook ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -88,7 +88,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.WebhooksApi(); +var apiInstance = new PakatApiV3Sdk.WebhooksApi(); var webhookId = 789; // Number | Id of the webhook @@ -127,8 +127,8 @@ Get a webhook details ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -142,7 +142,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.WebhooksApi(); +var apiInstance = new PakatApiV3Sdk.WebhooksApi(); var webhookId = 789; // Number | Id of the webhook @@ -181,8 +181,8 @@ Get all webhooks ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -196,7 +196,7 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.WebhooksApi(); +var apiInstance = new PakatApiV3Sdk.WebhooksApi(); var opts = { 'type': "transactional" // String | Filter on webhook type @@ -236,8 +236,8 @@ Update a webhook ### Example ```javascript -var SibApiV3Sdk = require('sib-api-v3-sdk'); -var defaultClient = SibApiV3Sdk.ApiClient.instance; +var PakatApiV3Sdk = require('sib-api-v3-sdk'); +var defaultClient = PakatApiV3Sdk.ApiClient.instance; // Configure API key authorization: api-key var apiKey = defaultClient.authentications['api-key']; @@ -251,11 +251,11 @@ partnerKey.apiKey = 'YOUR API KEY'; // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //partnerKey.apiKeyPrefix = 'Token'; -var apiInstance = new SibApiV3Sdk.WebhooksApi(); +var apiInstance = new PakatApiV3Sdk.WebhooksApi(); var webhookId = 789; // Number | Id of the webhook -var updateWebhook = new SibApiV3Sdk.UpdateWebhook(); // UpdateWebhook | Values to update a webhook +var updateWebhook = new PakatApiV3Sdk.UpdateWebhook(); // UpdateWebhook | Values to update a webhook apiInstance.updateWebhook(webhookId, updateWebhook).then(function() { console.log('API called successfully.'); diff --git a/package-lock.json b/package-lock.json index b07bb329..47a4727d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "sib-api-v3-sdk", + "name": "pakat-api-v3-sdk", "version": "8.0.1", "lockfileVersion": 1, "requires": true, diff --git a/package.json b/package.json index 505d3ff3..28a3edc2 100755 --- a/package.json +++ b/package.json @@ -1,21 +1,24 @@ { - "name": "sib-api-v3-sdk", - "version": "8.0.1", - "description": "SendinBlue_provide_a_RESTFul_API_that_can_be_used_with_any_languages__With_this_API_you_will_be_able_to_____Manage_your_campaigns_and_get_the_statistics____Manage_your_contacts____Send_transactional_Emails_and_SMS____and_much_more___You_can_download_our_wrappers_at_httpsgithub_comorgssendinbluePossible_responses___Code__Message____________________________________200___OK__Successful_Request_____201___OK__Successful_Creation____202___OK__Request_accepted____204___OK__Successful_UpdateDeletion_____400___Error__Bad_Request_____401___Error__Authentication_Needed_____402___Error__Not_enough_credit_plan_upgrade_needed_____403___Error__Permission_denied_____404___Error__Object_does_not_exist____405___Error__Method_not_allowed_____406___Error__Not_Acceptable__", - "license": "MIT", - "main": "src/index.js", - "scripts": { - "test": "./node_modules/mocha/bin/mocha --recursive" - }, - "browser": { - "fs": false - }, - "dependencies": { - "superagent": "3.7.0" - }, - "devDependencies": { - "expect.js": "~0.3.1", - "mocha": "^8.1.3", - "sinon": "1.17.3" - } + "name": "pakat-api-v3-sdk", + "version": "1.0.2", + "description": "Pakat API v3 SDK is forked from a SendinBlue package with the same name provided to use with Pakat.net API.", + "license": "MIT", + "main": "src/index.js", + "repository": { + "url": "https://github.com/Irandoust/Pakat-APIv3-nodejs-library" + }, + "scripts": { + "test": "./node_modules/mocha/bin/mocha --recursive" + }, + "browser": { + "fs": false + }, + "dependencies": { + "superagent": "3.7.0" + }, + "devDependencies": { + "expect.js": "~0.3.1", + "mocha": "^8.1.3", + "sinon": "1.17.3" + } } diff --git a/src/ApiClient.js b/src/ApiClient.js index 2f158036..ccb2017f 100644 --- a/src/ApiClient.js +++ b/src/ApiClient.js @@ -1,6 +1,6 @@ /** * SendinBlue API - * SendinBlue provide a RESTFul API that can be used with any languages. With this API, you will be able to : - Manage your campaigns and get the statistics - Manage your contacts - Send transactional Emails and SMS - and much more... You can download our wrappers at https://github.com/orgs/sendinblue **Possible responses** | Code | Message | | :-------------: | ------------- | | 200 | OK. Successful Request | | 201 | OK. Successful Creation | | 202 | OK. Request accepted | | 204 | OK. Successful Update/Deletion | | 400 | Error. Bad Request | | 401 | Error. Authentication Needed | | 402 | Error. Not enough credit, plan upgrade needed | | 403 | Error. Permission denied | | 404 | Error. Object does not exist | | 405 | Error. Method not allowed | | 406 | Error. Not Acceptable | + * SendinBlue provide a RESTFul API that can be used with any languages. With this API, you will be able to : - Manage your campaigns and get the statistics - Manage your contacts - Send transactional Emails and SMS - and much more... You can download our wrappers at https://github.com/orgs/sendinblue **Possible responses** | Code | Message | | :-------------: | ------------- | | 200 | OK. Successful Request | | 201 | OK. Successful Creation | | 202 | OK. Request accepted | | 204 | OK. Successful Update/Deletion | | 400 | Error. Bad Request | | 401 | Error. Authentication Needed | | 402 | Error. Not enough credit, plan upgrade needed | | 403 | Error. Permission denied | | 404 | Error. Object does not exist | | 405 | Error. Method not allowed | | 406 | Error. Not Acceptable | * * OpenAPI spec version: 3.0.0 * Contact: contact@sendinblue.com @@ -14,575 +14,567 @@ * */ -(function(root, factory) { - if (typeof define === 'function' && define.amd) { - // AMD. Register as an anonymous module. - define(['superagent', 'querystring'], factory); - } else if (typeof module === 'object' && module.exports) { - // CommonJS-like environments that support module.exports, like Node. - module.exports = factory(require('superagent'), require('querystring')); - } else { - // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; - } - root.SibApiV3Sdk.ApiClient = factory(root.superagent, root.querystring); - } -}(this, function(superagent, querystring) { - 'use strict'; - - /** - * @module ApiClient - * @version 8.0.0 - */ - - /** - * Manages low level client-server communications, parameter marshalling, etc. There should not be any need for an - * application to use this class directly - the *Api and model classes provide the public API for the service. The - * contents of this file should be regarded as internal but are documented for completeness. - * @alias module:ApiClient - * @class - */ - var exports = function() { - /** - * The base URL against which to resolve every API call's (relative) path. - * @type {String} - * @default https://api.sendinblue.com/v3 - */ - this.basePath = 'https://api.sendinblue.com/v3'.replace(/\/+$/, ''); - - /** - * The authentication methods to be included for all API calls. - * @type {Array.} - */ - this.authentications = { - 'api-key': {type: 'apiKey', 'in': 'header', name: 'api-key'}, - 'partner-key': {type: 'apiKey', 'in': 'header', name: 'partner-key'} - }; - /** - * The default HTTP headers to be included for all API calls. - * @type {Array.} - * @default {} - */ - this.defaultHeaders = {}; - - /** - * The default HTTP timeout for all API calls. - * @type {Number} - * @default 60000 - */ - this.timeout = 60000; - - /** - * If set to false an additional timestamp parameter is added to all API GET calls to - * prevent browser caching - * @type {Boolean} - * @default true - */ - this.cache = true; - - /** - * If set to true, the client will save the cookies from each server - * response, and return them in the next request. - * @default false - */ - this.enableCookies = false; - - /* - * Used to save and return cookies in a node.js (non-browser) setting, - * if this.enableCookies is set to true. - */ - if (typeof window === 'undefined') { - this.agent = new superagent.agent(); - } - - /* - * Allow user to override superagent agent - */ - this.requestAgent = null; - }; - - /** - * Returns a string representation for an actual parameter. - * @param param The actual parameter. - * @returns {String} The string representation of param. - */ - exports.prototype.paramToString = function(param) { - if (param == undefined || param == null) { - return ''; - } - if (param instanceof Date) { - return param.toJSON(); - } - return param.toString(); - }; - - /** - * Builds full URL by appending the given path to the base URL and replacing path parameter place-holders with parameter values. - * NOTE: query parameters are not handled here. - * @param {String} path The path to append to the base URL. - * @param {Object} pathParams The parameter values to append. - * @returns {String} The encoded path with parameter values substituted. - */ - exports.prototype.buildUrl = function(path, pathParams) { - if (!path.match(/^\//)) { - path = '/' + path; - } - var url = this.basePath + path; - var _this = this; - url = url.replace(/\{([\w-]+)\}/g, function(fullMatch, key) { - var value; - if (pathParams.hasOwnProperty(key)) { - value = _this.paramToString(pathParams[key]); - } else { - value = fullMatch; - } - return encodeURIComponent(value); - }); - return url; - }; - - /** - * Checks whether the given content type represents JSON.
- * JSON content type examples:
- *
    - *
  • application/json
  • - *
  • application/json; charset=UTF8
  • - *
  • APPLICATION/JSON
  • - *
- * @param {String} contentType The MIME content type to check. - * @returns {Boolean} true if contentType represents JSON, otherwise false. - */ - exports.prototype.isJsonMime = function(contentType) { - return Boolean(contentType != null && contentType.match(/^application\/json(;.*)?$/i)); - }; - - /** - * Chooses a content type from the given array, with JSON preferred; i.e. return JSON if included, otherwise return the first. - * @param {Array.} contentTypes - * @returns {String} The chosen content type, preferring JSON. - */ - exports.prototype.jsonPreferredMime = function(contentTypes) { - for (var i = 0; i < contentTypes.length; i++) { - if (this.isJsonMime(contentTypes[i])) { - return contentTypes[i]; - } - } - return contentTypes[0]; - }; - - /** - * Checks whether the given parameter value represents file-like content. - * @param param The parameter to check. - * @returns {Boolean} true if param represents a file. - */ - exports.prototype.isFileParam = function(param) { - // fs.ReadStream in Node.js and Electron (but not in runtime like browserify) - if (typeof require === 'function') { - var fs; - try { - fs = require('fs'); - } catch (err) {} - if (fs && fs.ReadStream && param instanceof fs.ReadStream) { - return true; - } - } - // Buffer in Node.js - if (typeof Buffer === 'function' && param instanceof Buffer) { - return true; - } - // Blob in browser - if (typeof Blob === 'function' && param instanceof Blob) { - return true; - } - // File in browser (it seems File object is also instance of Blob, but keep this for safe) - if (typeof File === 'function' && param instanceof File) { - return true; - } - return false; - }; - - /** - * Normalizes parameter values: - *
    - *
  • remove nils
  • - *
  • keep files and arrays
  • - *
  • format to string with `paramToString` for other cases
  • - *
- * @param {Object.} params The parameters as object properties. - * @returns {Object.} normalized parameters. - */ - exports.prototype.normalizeParams = function(params) { - var newParams = {}; - for (var key in params) { - if (params.hasOwnProperty(key) && params[key] != undefined && params[key] != null) { - var value = params[key]; - if (this.isFileParam(value) || Array.isArray(value)) { - newParams[key] = value; - } else { - newParams[key] = this.paramToString(value); - } - } - } - return newParams; - }; - - /** - * Enumeration of collection format separator strategies. - * @enum {String} - * @readonly - */ - exports.CollectionFormatEnum = { - /** - * Comma-separated values. Value: csv - * @const - */ - CSV: ',', - /** - * Space-separated values. Value: ssv - * @const - */ - SSV: ' ', - /** - * Tab-separated values. Value: tsv - * @const - */ - TSV: '\t', - /** - * Pipe(|)-separated values. Value: pipes - * @const - */ - PIPES: '|', - /** - * Native array. Value: multi - * @const - */ - MULTI: 'multi' - }; - - /** - * Builds a string representation of an array-type actual parameter, according to the given collection format. - * @param {Array} param An array parameter. - * @param {module:ApiClient.CollectionFormatEnum} collectionFormat The array element separator strategy. - * @returns {String|Array} A string representation of the supplied collection, using the specified delimiter. Returns - * param as is if collectionFormat is multi. - */ - exports.prototype.buildCollectionParam = function buildCollectionParam(param, collectionFormat) { - if (param == null) { - return null; - } - switch (collectionFormat) { - case 'csv': - return param.map(this.paramToString).join(','); - case 'ssv': - return param.map(this.paramToString).join(' '); - case 'tsv': - return param.map(this.paramToString).join('\t'); - case 'pipes': - return param.map(this.paramToString).join('|'); - case 'multi': - // return the array directly as SuperAgent will handle it as expected - return param.map(this.paramToString); - default: - throw new Error('Unknown collection format: ' + collectionFormat); - } - }; - - /** - * Applies authentication headers to the request. - * @param {Object} request The request object created by a superagent() call. - * @param {Array.} authNames An array of authentication method names. - */ - exports.prototype.applyAuthToRequest = function(request, authNames) { - var _this = this; - authNames.forEach(function(authName) { - var auth = _this.authentications[authName]; - switch (auth.type) { - case 'basic': - if (auth.username || auth.password) { - request.auth(auth.username || '', auth.password || ''); - } - break; - case 'apiKey': - if (auth.apiKey) { - var data = {}; - if (auth.apiKeyPrefix) { - data[auth.name] = auth.apiKeyPrefix + ' ' + auth.apiKey; - } else { - data[auth.name] = auth.apiKey; - } - if (auth['in'] === 'header') { - request.set(data); - } else { - request.query(data); - } - } - break; - case 'oauth2': - if (auth.accessToken) { - request.set({'Authorization': 'Bearer ' + auth.accessToken}); - } - break; - default: - throw new Error('Unknown authentication type: ' + auth.type); - } - }); - }; - - /** - * Deserializes an HTTP response body into a value of the specified type. - * @param {Object} response A SuperAgent response object. - * @param {(String|Array.|Object.|Function)} returnType The type to return. Pass a string for simple types - * or the constructor function for a complex type. Pass an array containing the type name to return an array of that type. To - * return an object, pass an object with one property whose name is the key type and whose value is the corresponding value type: - * all properties on data will be converted to this type. - * @returns A value of the specified type. - */ - exports.prototype.deserialize = function deserialize(response, returnType) { - if (response == null || returnType == null || response.status == 204) { - return null; - } - // Rely on SuperAgent for parsing response body. - // See http://visionmedia.github.io/superagent/#parsing-response-bodies - var data = response.body; - if (data == null || (typeof data === 'object' && typeof data.length === 'undefined' && !Object.keys(data).length)) { - // SuperAgent does not always produce a body; use the unparsed response as a fallback - data = response.text; - } - return exports.convertToType(data, returnType); - }; - - /** - * Invokes the REST service using the supplied settings and parameters. - * @param {String} path The base URL to invoke. - * @param {String} httpMethod The HTTP method to use. - * @param {Object.} pathParams A map of path parameters and their values. - * @param {Object.} queryParams A map of query parameters and their values. - * @param {Object.} collectionQueryParams A map of collection query parameters and their values. - * @param {Object.} headerParams A map of header parameters and their values. - * @param {Object.} formParams A map of form parameters and their values. - * @param {Object} bodyParam The value to pass as the request body. - * @param {Array.} authNames An array of authentication type names. - * @param {Array.} contentTypes An array of request MIME types. - * @param {Array.} accepts An array of acceptable response MIME types. - * @param {(String|Array|ObjectFunction)} returnType The required type to return; can be a string for simple types or the - * constructor for a complex type. - * @returns {Promise} A {@link https://www.promisejs.org/|Promise} object. - */ - exports.prototype.callApi = function callApi(path, httpMethod, pathParams, - queryParams, collectionQueryParams, headerParams, formParams, bodyParam, authNames, contentTypes, accepts, - returnType) { - - var _this = this; - var url = this.buildUrl(path, pathParams); - var request = superagent(httpMethod, url); - - // apply authentications - this.applyAuthToRequest(request, authNames); - - // set collection query parameters - for (var key in collectionQueryParams) { - if (collectionQueryParams.hasOwnProperty(key)) { - var param = collectionQueryParams[key]; - if (param.collectionFormat === 'csv') { - // SuperAgent normally percent-encodes all reserved characters in a query parameter. However, - // commas are used as delimiters for the 'csv' collectionFormat so they must not be encoded. We - // must therefore construct and encode 'csv' collection query parameters manually. - if (param.value != null) { - var value = param.value.map(this.paramToString).map(encodeURIComponent).join(','); - request.query(encodeURIComponent(key) + "=" + value); - } - } else { - // All other collection query parameters should be treated as ordinary query parameters. - queryParams[key] = this.buildCollectionParam(param.value, param.collectionFormat); - } - } - } - - // set query parameters - if (httpMethod.toUpperCase() === 'GET' && this.cache === false) { - queryParams['_'] = new Date().getTime(); - } - request.query(this.normalizeParams(queryParams)); - - // set header parameters - request.set(this.defaultHeaders).set(this.normalizeParams(headerParams)); - - - // set requestAgent if it is set by user - if (this.requestAgent) { - request.agent(this.requestAgent); - } - - // set request timeout - request.timeout(this.timeout); - - var contentType = this.jsonPreferredMime(contentTypes); - if (contentType) { - // Issue with superagent and multipart/form-data (https://github.com/visionmedia/superagent/issues/746) - if(contentType != 'multipart/form-data') { - request.type(contentType); - } - } else if (!request.header['Content-Type']) { - request.type('application/json'); - } - - if (contentType === 'application/x-www-form-urlencoded') { - request.send(querystring.stringify(this.normalizeParams(formParams))); - } else if (contentType == 'multipart/form-data') { - var _formParams = this.normalizeParams(formParams); - for (var key in _formParams) { - if (_formParams.hasOwnProperty(key)) { - if (this.isFileParam(_formParams[key])) { - // file field - request.attach(key, _formParams[key]); - } else { - request.field(key, _formParams[key]); - } - } - } - } else if (bodyParam) { - request.send(bodyParam); - } - - var accept = this.jsonPreferredMime(accepts); - if (accept) { - request.accept(accept); - } - - if (returnType === 'Blob') { - request.responseType('blob'); - } else if (returnType === 'String') { - request.responseType('string'); - } - - // Attach previously saved cookies, if enabled - if (this.enableCookies){ - if (typeof window === 'undefined') { - this.agent.attachCookies(request); - } - else { - request.withCredentials(); - } - } - - return new Promise(function(resolve, reject) { - request.end(function(error, response) { - if (error) { - reject(error); - } else { - try { - var data = _this.deserialize(response, returnType); - if (_this.enableCookies && typeof window === 'undefined'){ - _this.agent.saveCookies(response); - } - resolve({data: data, response: response}); - } catch (err) { - reject(err); - } - } - }); - }); - }; - - /** - * Parses an ISO-8601 string representation of a date value. - * @param {String} str The date value as a string. - * @returns {Date} The parsed date object. - */ - exports.parseDate = function(str) { - return new Date(str.replace(/T/i, ' ')); - }; - - /** - * Converts a value to the specified type. - * @param {(String|Object)} data The data to convert, as a string or object. - * @param {(String|Array.|Object.|Function)} type The type to return. Pass a string for simple types - * or the constructor function for a complex type. Pass an array containing the type name to return an array of that type. To - * return an object, pass an object with one property whose name is the key type and whose value is the corresponding value type: - * all properties on data will be converted to this type. - * @returns An instance of the specified type or null or undefined if data is null or undefined. - */ - exports.convertToType = function(data, type) { - if (data === null || data === undefined) - return data - - switch (type) { - case 'Boolean': - return Boolean(data); - case 'Integer': - return parseInt(data, 10); - case 'Number': - return parseFloat(data); - case 'String': - return String(data); - case 'Date': - return this.parseDate(String(data)); - case 'Blob': - return data; - default: - if (type === Object) { - // generic object, return directly - return data; - } else if (typeof type === 'function') { - // for model type like: User - return type.constructFromObject(data); - } else if (Array.isArray(type)) { - // for array type like: ['String'] - var itemType = type[0]; - return data.map(function(item) { - return exports.convertToType(item, itemType); - }); - } else if (typeof type === 'object') { - // for plain object type like: {'String': 'Integer'} - var keyType, valueType; - for (var k in type) { - if (type.hasOwnProperty(k)) { - keyType = k; - valueType = type[k]; - break; - } - } - var result = {}; - for (var k in data) { - if (data.hasOwnProperty(k)) { - var key = exports.convertToType(k, keyType); - var value = exports.convertToType(data[k], valueType); - result[key] = value; - } - } - return result; - } else { - // for unknown type, return the data directly - return data; - } - } - }; - - /** - * Constructs a new map or array model from REST data. - * @param data {Object|Array} The REST data. - * @param obj {Object|Array} The target object or array. - */ - exports.constructFromObject = function(data, obj, itemType) { - if (Array.isArray(data)) { - for (var i = 0; i < data.length; i++) { - if (data.hasOwnProperty(i)) - obj[i] = exports.convertToType(data[i], itemType); - } - } else { - for (var k in data) { - if (data.hasOwnProperty(k)) - obj[k] = exports.convertToType(data[k], itemType); - } - } - }; - - /** - * The default API client implementation. - * @type {module:ApiClient} - */ - exports.instance = new exports(); - - return exports; -})); +;(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module. + define(['superagent', 'querystring'], factory) + } else if (typeof module === 'object' && module.exports) { + // CommonJS-like environments that support module.exports, like Node. + module.exports = factory(require('superagent'), require('querystring')) + } else { + // Browser globals (root is window) + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {} + } + root.PakatApiV3Sdk.ApiClient = factory(root.superagent, root.querystring) + } +})(this, function (superagent, querystring) { + 'use strict' + + /** + * @module ApiClient + * @version 8.0.0 + */ + + /** + * Manages low level client-server communications, parameter marshalling, etc. There should not be any need for an + * application to use this class directly - the *Api and model classes provide the public API for the service. The + * contents of this file should be regarded as internal but are documented for completeness. + * @alias module:ApiClient + * @class + */ + var exports = function () { + /** + * The base URL against which to resolve every API call's (relative) path. + * @type {String} + * @default https://api.pakat.net/v3 + */ + this.basePath = 'https://api.pakat.net/v3'.replace(/\/+$/, '') + + /** + * The authentication methods to be included for all API calls. + * @type {Array.} + */ + this.authentications = { + 'api-key': { type: 'apiKey', in: 'header', name: 'api-key' }, + 'partner-key': { type: 'apiKey', in: 'header', name: 'partner-key' }, + } + /** + * The default HTTP headers to be included for all API calls. + * @type {Array.} + * @default {} + */ + this.defaultHeaders = {} + + /** + * The default HTTP timeout for all API calls. + * @type {Number} + * @default 60000 + */ + this.timeout = 60000 + + /** + * If set to false an additional timestamp parameter is added to all API GET calls to + * prevent browser caching + * @type {Boolean} + * @default true + */ + this.cache = true + + /** + * If set to true, the client will save the cookies from each server + * response, and return them in the next request. + * @default false + */ + this.enableCookies = false + + /* + * Used to save and return cookies in a node.js (non-browser) setting, + * if this.enableCookies is set to true. + */ + if (typeof window === 'undefined') { + this.agent = new superagent.agent() + } + + /* + * Allow user to override superagent agent + */ + this.requestAgent = null + } + + /** + * Returns a string representation for an actual parameter. + * @param param The actual parameter. + * @returns {String} The string representation of param. + */ + exports.prototype.paramToString = function (param) { + if (param == undefined || param == null) { + return '' + } + if (param instanceof Date) { + return param.toJSON() + } + return param.toString() + } + + /** + * Builds full URL by appending the given path to the base URL and replacing path parameter place-holders with parameter values. + * NOTE: query parameters are not handled here. + * @param {String} path The path to append to the base URL. + * @param {Object} pathParams The parameter values to append. + * @returns {String} The encoded path with parameter values substituted. + */ + exports.prototype.buildUrl = function (path, pathParams) { + if (!path.match(/^\//)) { + path = '/' + path + } + var url = this.basePath + path + var _this = this + url = url.replace(/\{([\w-]+)\}/g, function (fullMatch, key) { + var value + if (pathParams.hasOwnProperty(key)) { + value = _this.paramToString(pathParams[key]) + } else { + value = fullMatch + } + return encodeURIComponent(value) + }) + return url + } + + /** + * Checks whether the given content type represents JSON.
+ * JSON content type examples:
+ *
    + *
  • application/json
  • + *
  • application/json; charset=UTF8
  • + *
  • APPLICATION/JSON
  • + *
+ * @param {String} contentType The MIME content type to check. + * @returns {Boolean} true if contentType represents JSON, otherwise false. + */ + exports.prototype.isJsonMime = function (contentType) { + return Boolean(contentType != null && contentType.match(/^application\/json(;.*)?$/i)) + } + + /** + * Chooses a content type from the given array, with JSON preferred; i.e. return JSON if included, otherwise return the first. + * @param {Array.} contentTypes + * @returns {String} The chosen content type, preferring JSON. + */ + exports.prototype.jsonPreferredMime = function (contentTypes) { + for (var i = 0; i < contentTypes.length; i++) { + if (this.isJsonMime(contentTypes[i])) { + return contentTypes[i] + } + } + return contentTypes[0] + } + + /** + * Checks whether the given parameter value represents file-like content. + * @param param The parameter to check. + * @returns {Boolean} true if param represents a file. + */ + exports.prototype.isFileParam = function (param) { + // fs.ReadStream in Node.js and Electron (but not in runtime like browserify) + if (typeof require === 'function') { + var fs + try { + fs = require('fs') + } catch (err) {} + if (fs && fs.ReadStream && param instanceof fs.ReadStream) { + return true + } + } + // Buffer in Node.js + if (typeof Buffer === 'function' && param instanceof Buffer) { + return true + } + // Blob in browser + if (typeof Blob === 'function' && param instanceof Blob) { + return true + } + // File in browser (it seems File object is also instance of Blob, but keep this for safe) + if (typeof File === 'function' && param instanceof File) { + return true + } + return false + } + + /** + * Normalizes parameter values: + *
    + *
  • remove nils
  • + *
  • keep files and arrays
  • + *
  • format to string with `paramToString` for other cases
  • + *
+ * @param {Object.} params The parameters as object properties. + * @returns {Object.} normalized parameters. + */ + exports.prototype.normalizeParams = function (params) { + var newParams = {} + for (var key in params) { + if (params.hasOwnProperty(key) && params[key] != undefined && params[key] != null) { + var value = params[key] + if (this.isFileParam(value) || Array.isArray(value)) { + newParams[key] = value + } else { + newParams[key] = this.paramToString(value) + } + } + } + return newParams + } + + /** + * Enumeration of collection format separator strategies. + * @enum {String} + * @readonly + */ + exports.CollectionFormatEnum = { + /** + * Comma-separated values. Value: csv + * @const + */ + CSV: ',', + /** + * Space-separated values. Value: ssv + * @const + */ + SSV: ' ', + /** + * Tab-separated values. Value: tsv + * @const + */ + TSV: '\t', + /** + * Pipe(|)-separated values. Value: pipes + * @const + */ + PIPES: '|', + /** + * Native array. Value: multi + * @const + */ + MULTI: 'multi', + } + + /** + * Builds a string representation of an array-type actual parameter, according to the given collection format. + * @param {Array} param An array parameter. + * @param {module:ApiClient.CollectionFormatEnum} collectionFormat The array element separator strategy. + * @returns {String|Array} A string representation of the supplied collection, using the specified delimiter. Returns + * param as is if collectionFormat is multi. + */ + exports.prototype.buildCollectionParam = function buildCollectionParam(param, collectionFormat) { + if (param == null) { + return null + } + switch (collectionFormat) { + case 'csv': + return param.map(this.paramToString).join(',') + case 'ssv': + return param.map(this.paramToString).join(' ') + case 'tsv': + return param.map(this.paramToString).join('\t') + case 'pipes': + return param.map(this.paramToString).join('|') + case 'multi': + // return the array directly as SuperAgent will handle it as expected + return param.map(this.paramToString) + default: + throw new Error('Unknown collection format: ' + collectionFormat) + } + } + + /** + * Applies authentication headers to the request. + * @param {Object} request The request object created by a superagent() call. + * @param {Array.} authNames An array of authentication method names. + */ + exports.prototype.applyAuthToRequest = function (request, authNames) { + var _this = this + authNames.forEach(function (authName) { + var auth = _this.authentications[authName] + switch (auth.type) { + case 'basic': + if (auth.username || auth.password) { + request.auth(auth.username || '', auth.password || '') + } + break + case 'apiKey': + if (auth.apiKey) { + var data = {} + if (auth.apiKeyPrefix) { + data[auth.name] = auth.apiKeyPrefix + ' ' + auth.apiKey + } else { + data[auth.name] = auth.apiKey + } + if (auth['in'] === 'header') { + request.set(data) + } else { + request.query(data) + } + } + break + case 'oauth2': + if (auth.accessToken) { + request.set({ Authorization: 'Bearer ' + auth.accessToken }) + } + break + default: + throw new Error('Unknown authentication type: ' + auth.type) + } + }) + } + + /** + * Deserializes an HTTP response body into a value of the specified type. + * @param {Object} response A SuperAgent response object. + * @param {(String|Array.|Object.|Function)} returnType The type to return. Pass a string for simple types + * or the constructor function for a complex type. Pass an array containing the type name to return an array of that type. To + * return an object, pass an object with one property whose name is the key type and whose value is the corresponding value type: + * all properties on data will be converted to this type. + * @returns A value of the specified type. + */ + exports.prototype.deserialize = function deserialize(response, returnType) { + if (response == null || returnType == null || response.status == 204) { + return null + } + // Rely on SuperAgent for parsing response body. + // See http://visionmedia.github.io/superagent/#parsing-response-bodies + var data = response.body + if (data == null || (typeof data === 'object' && typeof data.length === 'undefined' && !Object.keys(data).length)) { + // SuperAgent does not always produce a body; use the unparsed response as a fallback + data = response.text + } + return exports.convertToType(data, returnType) + } + + /** + * Invokes the REST service using the supplied settings and parameters. + * @param {String} path The base URL to invoke. + * @param {String} httpMethod The HTTP method to use. + * @param {Object.} pathParams A map of path parameters and their values. + * @param {Object.} queryParams A map of query parameters and their values. + * @param {Object.} collectionQueryParams A map of collection query parameters and their values. + * @param {Object.} headerParams A map of header parameters and their values. + * @param {Object.} formParams A map of form parameters and their values. + * @param {Object} bodyParam The value to pass as the request body. + * @param {Array.} authNames An array of authentication type names. + * @param {Array.} contentTypes An array of request MIME types. + * @param {Array.} accepts An array of acceptable response MIME types. + * @param {(String|Array|ObjectFunction)} returnType The required type to return; can be a string for simple types or the + * constructor for a complex type. + * @returns {Promise} A {@link https://www.promisejs.org/|Promise} object. + */ + exports.prototype.callApi = function callApi(path, httpMethod, pathParams, queryParams, collectionQueryParams, headerParams, formParams, bodyParam, authNames, contentTypes, accepts, returnType) { + var _this = this + var url = this.buildUrl(path, pathParams) + var request = superagent(httpMethod, url) + + // apply authentications + this.applyAuthToRequest(request, authNames) + + // set collection query parameters + for (var key in collectionQueryParams) { + if (collectionQueryParams.hasOwnProperty(key)) { + var param = collectionQueryParams[key] + if (param.collectionFormat === 'csv') { + // SuperAgent normally percent-encodes all reserved characters in a query parameter. However, + // commas are used as delimiters for the 'csv' collectionFormat so they must not be encoded. We + // must therefore construct and encode 'csv' collection query parameters manually. + if (param.value != null) { + var value = param.value.map(this.paramToString).map(encodeURIComponent).join(',') + request.query(encodeURIComponent(key) + '=' + value) + } + } else { + // All other collection query parameters should be treated as ordinary query parameters. + queryParams[key] = this.buildCollectionParam(param.value, param.collectionFormat) + } + } + } + + // set query parameters + if (httpMethod.toUpperCase() === 'GET' && this.cache === false) { + queryParams['_'] = new Date().getTime() + } + request.query(this.normalizeParams(queryParams)) + + // set header parameters + request.set(this.defaultHeaders).set(this.normalizeParams(headerParams)) + + // set requestAgent if it is set by user + if (this.requestAgent) { + request.agent(this.requestAgent) + } + + // set request timeout + request.timeout(this.timeout) + + var contentType = this.jsonPreferredMime(contentTypes) + if (contentType) { + // Issue with superagent and multipart/form-data (https://github.com/visionmedia/superagent/issues/746) + if (contentType != 'multipart/form-data') { + request.type(contentType) + } + } else if (!request.header['Content-Type']) { + request.type('application/json') + } + + if (contentType === 'application/x-www-form-urlencoded') { + request.send(querystring.stringify(this.normalizeParams(formParams))) + } else if (contentType == 'multipart/form-data') { + var _formParams = this.normalizeParams(formParams) + for (var key in _formParams) { + if (_formParams.hasOwnProperty(key)) { + if (this.isFileParam(_formParams[key])) { + // file field + request.attach(key, _formParams[key]) + } else { + request.field(key, _formParams[key]) + } + } + } + } else if (bodyParam) { + request.send(bodyParam) + } + + var accept = this.jsonPreferredMime(accepts) + if (accept) { + request.accept(accept) + } + + if (returnType === 'Blob') { + request.responseType('blob') + } else if (returnType === 'String') { + request.responseType('string') + } + + // Attach previously saved cookies, if enabled + if (this.enableCookies) { + if (typeof window === 'undefined') { + this.agent.attachCookies(request) + } else { + request.withCredentials() + } + } + + return new Promise(function (resolve, reject) { + request.end(function (error, response) { + if (error) { + reject(error) + } else { + try { + var data = _this.deserialize(response, returnType) + if (_this.enableCookies && typeof window === 'undefined') { + _this.agent.saveCookies(response) + } + resolve({ data: data, response: response }) + } catch (err) { + reject(err) + } + } + }) + }) + } + + /** + * Parses an ISO-8601 string representation of a date value. + * @param {String} str The date value as a string. + * @returns {Date} The parsed date object. + */ + exports.parseDate = function (str) { + return new Date(str.replace(/T/i, ' ')) + } + + /** + * Converts a value to the specified type. + * @param {(String|Object)} data The data to convert, as a string or object. + * @param {(String|Array.|Object.|Function)} type The type to return. Pass a string for simple types + * or the constructor function for a complex type. Pass an array containing the type name to return an array of that type. To + * return an object, pass an object with one property whose name is the key type and whose value is the corresponding value type: + * all properties on data will be converted to this type. + * @returns An instance of the specified type or null or undefined if data is null or undefined. + */ + exports.convertToType = function (data, type) { + if (data === null || data === undefined) return data + + switch (type) { + case 'Boolean': + return Boolean(data) + case 'Integer': + return parseInt(data, 10) + case 'Number': + return parseFloat(data) + case 'String': + return String(data) + case 'Date': + return this.parseDate(String(data)) + case 'Blob': + return data + default: + if (type === Object) { + // generic object, return directly + return data + } else if (typeof type === 'function') { + // for model type like: User + return type.constructFromObject(data) + } else if (Array.isArray(type)) { + // for array type like: ['String'] + var itemType = type[0] + return data.map(function (item) { + return exports.convertToType(item, itemType) + }) + } else if (typeof type === 'object') { + // for plain object type like: {'String': 'Integer'} + var keyType, valueType + for (var k in type) { + if (type.hasOwnProperty(k)) { + keyType = k + valueType = type[k] + break + } + } + var result = {} + for (var k in data) { + if (data.hasOwnProperty(k)) { + var key = exports.convertToType(k, keyType) + var value = exports.convertToType(data[k], valueType) + result[key] = value + } + } + return result + } else { + // for unknown type, return the data directly + return data + } + } + } + + /** + * Constructs a new map or array model from REST data. + * @param data {Object|Array} The REST data. + * @param obj {Object|Array} The target object or array. + */ + exports.constructFromObject = function (data, obj, itemType) { + if (Array.isArray(data)) { + for (var i = 0; i < data.length; i++) { + if (data.hasOwnProperty(i)) obj[i] = exports.convertToType(data[i], itemType) + } + } else { + for (var k in data) { + if (data.hasOwnProperty(k)) obj[k] = exports.convertToType(data[k], itemType) + } + } + } + + /** + * The default API client implementation. + * @type {module:ApiClient} + */ + exports.instance = new exports() + + return exports +}) diff --git a/src/api/AccountApi.js b/src/api/AccountApi.js index fa21be0e..4811d475 100644 --- a/src/api/AccountApi.js +++ b/src/api/AccountApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/GetAccount')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.AccountApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetAccount); + root.PakatApiV3Sdk.AccountApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetAccount); } }(this, function(ApiClient, GetAccount) { 'use strict'; diff --git a/src/api/AttributesApi.js b/src/api/AttributesApi.js index 614beae0..cd6c178a 100644 --- a/src/api/AttributesApi.js +++ b/src/api/AttributesApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/CreateAttribute'), require('../model/ErrorModel'), require('../model/GetAttributes'), require('../model/UpdateAttribute')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.AttributesApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateAttribute, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetAttributes, root.SibApiV3Sdk.UpdateAttribute); + root.PakatApiV3Sdk.AttributesApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateAttribute, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetAttributes, root.PakatApiV3Sdk.UpdateAttribute); } }(this, function(ApiClient, CreateAttribute, ErrorModel, GetAttributes, UpdateAttribute) { 'use strict'; diff --git a/src/api/ContactsApi.js b/src/api/ContactsApi.js index d96f7cf0..59b0261a 100644 --- a/src/api/ContactsApi.js +++ b/src/api/ContactsApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/AddContactToList'), require('../model/CreateAttribute'), require('../model/CreateContact'), require('../model/CreateDoiContact'), require('../model/CreateList'), require('../model/CreateModel'), require('../model/CreateUpdateContactModel'), require('../model/CreateUpdateFolder'), require('../model/CreatedProcessId'), require('../model/ErrorModel'), require('../model/GetAttributes'), require('../model/GetContactCampaignStats'), require('../model/GetContacts'), require('../model/GetExtendedContactDetails'), require('../model/GetExtendedList'), require('../model/GetFolder'), require('../model/GetFolderLists'), require('../model/GetFolders'), require('../model/GetLists'), require('../model/PostContactInfo'), require('../model/RemoveContactFromList'), require('../model/RequestContactExport'), require('../model/RequestContactImport'), require('../model/UpdateAttribute'), require('../model/UpdateContact'), require('../model/UpdateList')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.ContactsApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.AddContactToList, root.SibApiV3Sdk.CreateAttribute, root.SibApiV3Sdk.CreateContact, root.SibApiV3Sdk.CreateDoiContact, root.SibApiV3Sdk.CreateList, root.SibApiV3Sdk.CreateModel, root.SibApiV3Sdk.CreateUpdateContactModel, root.SibApiV3Sdk.CreateUpdateFolder, root.SibApiV3Sdk.CreatedProcessId, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetAttributes, root.SibApiV3Sdk.GetContactCampaignStats, root.SibApiV3Sdk.GetContacts, root.SibApiV3Sdk.GetExtendedContactDetails, root.SibApiV3Sdk.GetExtendedList, root.SibApiV3Sdk.GetFolder, root.SibApiV3Sdk.GetFolderLists, root.SibApiV3Sdk.GetFolders, root.SibApiV3Sdk.GetLists, root.SibApiV3Sdk.PostContactInfo, root.SibApiV3Sdk.RemoveContactFromList, root.SibApiV3Sdk.RequestContactExport, root.SibApiV3Sdk.RequestContactImport, root.SibApiV3Sdk.UpdateAttribute, root.SibApiV3Sdk.UpdateContact, root.SibApiV3Sdk.UpdateList); + root.PakatApiV3Sdk.ContactsApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.AddContactToList, root.PakatApiV3Sdk.CreateAttribute, root.PakatApiV3Sdk.CreateContact, root.PakatApiV3Sdk.CreateDoiContact, root.PakatApiV3Sdk.CreateList, root.PakatApiV3Sdk.CreateModel, root.PakatApiV3Sdk.CreateUpdateContactModel, root.PakatApiV3Sdk.CreateUpdateFolder, root.PakatApiV3Sdk.CreatedProcessId, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetAttributes, root.PakatApiV3Sdk.GetContactCampaignStats, root.PakatApiV3Sdk.GetContacts, root.PakatApiV3Sdk.GetExtendedContactDetails, root.PakatApiV3Sdk.GetExtendedList, root.PakatApiV3Sdk.GetFolder, root.PakatApiV3Sdk.GetFolderLists, root.PakatApiV3Sdk.GetFolders, root.PakatApiV3Sdk.GetLists, root.PakatApiV3Sdk.PostContactInfo, root.PakatApiV3Sdk.RemoveContactFromList, root.PakatApiV3Sdk.RequestContactExport, root.PakatApiV3Sdk.RequestContactImport, root.PakatApiV3Sdk.UpdateAttribute, root.PakatApiV3Sdk.UpdateContact, root.PakatApiV3Sdk.UpdateList); } }(this, function(ApiClient, AddContactToList, CreateAttribute, CreateContact, CreateDoiContact, CreateList, CreateModel, CreateUpdateContactModel, CreateUpdateFolder, CreatedProcessId, ErrorModel, GetAttributes, GetContactCampaignStats, GetContacts, GetExtendedContactDetails, GetExtendedList, GetFolder, GetFolderLists, GetFolders, GetLists, PostContactInfo, RemoveContactFromList, RequestContactExport, RequestContactImport, UpdateAttribute, UpdateContact, UpdateList) { 'use strict'; diff --git a/src/api/EmailCampaignsApi.js b/src/api/EmailCampaignsApi.js index 7c3fad8d..8b68bdbf 100644 --- a/src/api/EmailCampaignsApi.js +++ b/src/api/EmailCampaignsApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/AbTestCampaignResult'), require('../model/CreateEmailCampaign'), require('../model/CreateModel'), require('../model/CreatedProcessId'), require('../model/EmailExportRecipients'), require('../model/ErrorModel'), require('../model/GetEmailCampaign'), require('../model/GetEmailCampaigns'), require('../model/GetSharedTemplateUrl'), require('../model/PostSendFailed'), require('../model/SendReport'), require('../model/SendTestEmail'), require('../model/UpdateCampaignStatus'), require('../model/UpdateEmailCampaign'), require('../model/UploadImageToGallery')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.EmailCampaignsApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.AbTestCampaignResult, root.SibApiV3Sdk.CreateEmailCampaign, root.SibApiV3Sdk.CreateModel, root.SibApiV3Sdk.CreatedProcessId, root.SibApiV3Sdk.EmailExportRecipients, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetEmailCampaign, root.SibApiV3Sdk.GetEmailCampaigns, root.SibApiV3Sdk.GetSharedTemplateUrl, root.SibApiV3Sdk.PostSendFailed, root.SibApiV3Sdk.SendReport, root.SibApiV3Sdk.SendTestEmail, root.SibApiV3Sdk.UpdateCampaignStatus, root.SibApiV3Sdk.UpdateEmailCampaign, root.SibApiV3Sdk.UploadImageToGallery); + root.PakatApiV3Sdk.EmailCampaignsApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.AbTestCampaignResult, root.PakatApiV3Sdk.CreateEmailCampaign, root.PakatApiV3Sdk.CreateModel, root.PakatApiV3Sdk.CreatedProcessId, root.PakatApiV3Sdk.EmailExportRecipients, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetEmailCampaign, root.PakatApiV3Sdk.GetEmailCampaigns, root.PakatApiV3Sdk.GetSharedTemplateUrl, root.PakatApiV3Sdk.PostSendFailed, root.PakatApiV3Sdk.SendReport, root.PakatApiV3Sdk.SendTestEmail, root.PakatApiV3Sdk.UpdateCampaignStatus, root.PakatApiV3Sdk.UpdateEmailCampaign, root.PakatApiV3Sdk.UploadImageToGallery); } }(this, function(ApiClient, AbTestCampaignResult, CreateEmailCampaign, CreateModel, CreatedProcessId, EmailExportRecipients, ErrorModel, GetEmailCampaign, GetEmailCampaigns, GetSharedTemplateUrl, PostSendFailed, SendReport, SendTestEmail, UpdateCampaignStatus, UpdateEmailCampaign, UploadImageToGallery) { 'use strict'; diff --git a/src/api/FoldersApi.js b/src/api/FoldersApi.js index 284482ae..85e7db4f 100644 --- a/src/api/FoldersApi.js +++ b/src/api/FoldersApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/CreateModel'), require('../model/CreateUpdateFolder'), require('../model/ErrorModel'), require('../model/GetFolder'), require('../model/GetFolderLists'), require('../model/GetFolders')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.FoldersApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateModel, root.SibApiV3Sdk.CreateUpdateFolder, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetFolder, root.SibApiV3Sdk.GetFolderLists, root.SibApiV3Sdk.GetFolders); + root.PakatApiV3Sdk.FoldersApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateModel, root.PakatApiV3Sdk.CreateUpdateFolder, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetFolder, root.PakatApiV3Sdk.GetFolderLists, root.PakatApiV3Sdk.GetFolders); } }(this, function(ApiClient, CreateModel, CreateUpdateFolder, ErrorModel, GetFolder, GetFolderLists, GetFolders) { 'use strict'; diff --git a/src/api/ListsApi.js b/src/api/ListsApi.js index d6f7c11e..466dad47 100644 --- a/src/api/ListsApi.js +++ b/src/api/ListsApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/AddContactToList'), require('../model/CreateList'), require('../model/CreateModel'), require('../model/ErrorModel'), require('../model/GetContacts'), require('../model/GetExtendedList'), require('../model/GetFolderLists'), require('../model/GetLists'), require('../model/PostContactInfo'), require('../model/RemoveContactFromList'), require('../model/UpdateList')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.ListsApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.AddContactToList, root.SibApiV3Sdk.CreateList, root.SibApiV3Sdk.CreateModel, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetContacts, root.SibApiV3Sdk.GetExtendedList, root.SibApiV3Sdk.GetFolderLists, root.SibApiV3Sdk.GetLists, root.SibApiV3Sdk.PostContactInfo, root.SibApiV3Sdk.RemoveContactFromList, root.SibApiV3Sdk.UpdateList); + root.PakatApiV3Sdk.ListsApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.AddContactToList, root.PakatApiV3Sdk.CreateList, root.PakatApiV3Sdk.CreateModel, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetContacts, root.PakatApiV3Sdk.GetExtendedList, root.PakatApiV3Sdk.GetFolderLists, root.PakatApiV3Sdk.GetLists, root.PakatApiV3Sdk.PostContactInfo, root.PakatApiV3Sdk.RemoveContactFromList, root.PakatApiV3Sdk.UpdateList); } }(this, function(ApiClient, AddContactToList, CreateList, CreateModel, ErrorModel, GetContacts, GetExtendedList, GetFolderLists, GetLists, PostContactInfo, RemoveContactFromList, UpdateList) { 'use strict'; diff --git a/src/api/ProcessApi.js b/src/api/ProcessApi.js index 2304d31f..191d434f 100644 --- a/src/api/ProcessApi.js +++ b/src/api/ProcessApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/ErrorModel'), require('../model/GetProcess'), require('../model/GetProcesses')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.ProcessApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetProcess, root.SibApiV3Sdk.GetProcesses); + root.PakatApiV3Sdk.ProcessApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetProcess, root.PakatApiV3Sdk.GetProcesses); } }(this, function(ApiClient, ErrorModel, GetProcess, GetProcesses) { 'use strict'; diff --git a/src/api/ResellerApi.js b/src/api/ResellerApi.js index 76ec5fff..be85d5f1 100644 --- a/src/api/ResellerApi.js +++ b/src/api/ResellerApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/AddChildDomain'), require('../model/AddCredits'), require('../model/CreateChild'), require('../model/CreateReseller'), require('../model/ErrorModel'), require('../model/GetChildAccountCreationStatus'), require('../model/GetChildDomains'), require('../model/GetChildInfo'), require('../model/GetChildrenList'), require('../model/GetSsoToken'), require('../model/ManageIp'), require('../model/RemainingCreditModel'), require('../model/RemoveCredits'), require('../model/UpdateChild'), require('../model/UpdateChildAccountStatus'), require('../model/UpdateChildDomain')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.ResellerApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.AddChildDomain, root.SibApiV3Sdk.AddCredits, root.SibApiV3Sdk.CreateChild, root.SibApiV3Sdk.CreateReseller, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetChildAccountCreationStatus, root.SibApiV3Sdk.GetChildDomains, root.SibApiV3Sdk.GetChildInfo, root.SibApiV3Sdk.GetChildrenList, root.SibApiV3Sdk.GetSsoToken, root.SibApiV3Sdk.ManageIp, root.SibApiV3Sdk.RemainingCreditModel, root.SibApiV3Sdk.RemoveCredits, root.SibApiV3Sdk.UpdateChild, root.SibApiV3Sdk.UpdateChildAccountStatus, root.SibApiV3Sdk.UpdateChildDomain); + root.PakatApiV3Sdk.ResellerApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.AddChildDomain, root.PakatApiV3Sdk.AddCredits, root.PakatApiV3Sdk.CreateChild, root.PakatApiV3Sdk.CreateReseller, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetChildAccountCreationStatus, root.PakatApiV3Sdk.GetChildDomains, root.PakatApiV3Sdk.GetChildInfo, root.PakatApiV3Sdk.GetChildrenList, root.PakatApiV3Sdk.GetSsoToken, root.PakatApiV3Sdk.ManageIp, root.PakatApiV3Sdk.RemainingCreditModel, root.PakatApiV3Sdk.RemoveCredits, root.PakatApiV3Sdk.UpdateChild, root.PakatApiV3Sdk.UpdateChildAccountStatus, root.PakatApiV3Sdk.UpdateChildDomain); } }(this, function(ApiClient, AddChildDomain, AddCredits, CreateChild, CreateReseller, ErrorModel, GetChildAccountCreationStatus, GetChildDomains, GetChildInfo, GetChildrenList, GetSsoToken, ManageIp, RemainingCreditModel, RemoveCredits, UpdateChild, UpdateChildAccountStatus, UpdateChildDomain) { 'use strict'; diff --git a/src/api/SMSCampaignsApi.js b/src/api/SMSCampaignsApi.js index 765e1c70..da8f36c8 100644 --- a/src/api/SMSCampaignsApi.js +++ b/src/api/SMSCampaignsApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/CreateModel'), require('../model/CreateSmsCampaign'), require('../model/CreatedProcessId'), require('../model/ErrorModel'), require('../model/GetSmsCampaign'), require('../model/GetSmsCampaigns'), require('../model/PostSendSmsTestFailed'), require('../model/RequestSmsRecipientExport'), require('../model/SendReport'), require('../model/SendTestSms'), require('../model/UpdateCampaignStatus'), require('../model/UpdateSmsCampaign')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.SMSCampaignsApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateModel, root.SibApiV3Sdk.CreateSmsCampaign, root.SibApiV3Sdk.CreatedProcessId, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetSmsCampaign, root.SibApiV3Sdk.GetSmsCampaigns, root.SibApiV3Sdk.PostSendSmsTestFailed, root.SibApiV3Sdk.RequestSmsRecipientExport, root.SibApiV3Sdk.SendReport, root.SibApiV3Sdk.SendTestSms, root.SibApiV3Sdk.UpdateCampaignStatus, root.SibApiV3Sdk.UpdateSmsCampaign); + root.PakatApiV3Sdk.SMSCampaignsApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateModel, root.PakatApiV3Sdk.CreateSmsCampaign, root.PakatApiV3Sdk.CreatedProcessId, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetSmsCampaign, root.PakatApiV3Sdk.GetSmsCampaigns, root.PakatApiV3Sdk.PostSendSmsTestFailed, root.PakatApiV3Sdk.RequestSmsRecipientExport, root.PakatApiV3Sdk.SendReport, root.PakatApiV3Sdk.SendTestSms, root.PakatApiV3Sdk.UpdateCampaignStatus, root.PakatApiV3Sdk.UpdateSmsCampaign); } }(this, function(ApiClient, CreateModel, CreateSmsCampaign, CreatedProcessId, ErrorModel, GetSmsCampaign, GetSmsCampaigns, PostSendSmsTestFailed, RequestSmsRecipientExport, SendReport, SendTestSms, UpdateCampaignStatus, UpdateSmsCampaign) { 'use strict'; diff --git a/src/api/SendersApi.js b/src/api/SendersApi.js index d8092833..91ddff7a 100644 --- a/src/api/SendersApi.js +++ b/src/api/SendersApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/CreateSender'), require('../model/CreateSenderModel'), require('../model/ErrorModel'), require('../model/GetIps'), require('../model/GetIpsFromSender'), require('../model/GetSendersList'), require('../model/UpdateSender')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.SendersApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateSender, root.SibApiV3Sdk.CreateSenderModel, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetIps, root.SibApiV3Sdk.GetIpsFromSender, root.SibApiV3Sdk.GetSendersList, root.SibApiV3Sdk.UpdateSender); + root.PakatApiV3Sdk.SendersApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateSender, root.PakatApiV3Sdk.CreateSenderModel, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetIps, root.PakatApiV3Sdk.GetIpsFromSender, root.PakatApiV3Sdk.GetSendersList, root.PakatApiV3Sdk.UpdateSender); } }(this, function(ApiClient, CreateSender, CreateSenderModel, ErrorModel, GetIps, GetIpsFromSender, GetSendersList, UpdateSender) { 'use strict'; diff --git a/src/api/TransactionalEmailsApi.js b/src/api/TransactionalEmailsApi.js index 4247b5bb..5e8b3d0d 100644 --- a/src/api/TransactionalEmailsApi.js +++ b/src/api/TransactionalEmailsApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/CreateModel'), require('../model/CreateSmtpEmail'), require('../model/CreateSmtpTemplate'), require('../model/DeleteHardbounces'), require('../model/ErrorModel'), require('../model/GetAggregatedReport'), require('../model/GetEmailEventReport'), require('../model/GetReports'), require('../model/GetSmtpTemplateOverview'), require('../model/GetSmtpTemplates'), require('../model/GetTransacBlockedContacts'), require('../model/GetTransacEmailContent'), require('../model/GetTransacEmailsList'), require('../model/PostSendFailed'), require('../model/SendEmail'), require('../model/SendSmtpEmail'), require('../model/SendTemplateEmail'), require('../model/SendTestEmail'), require('../model/UpdateSmtpTemplate')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.TransactionalEmailsApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateModel, root.SibApiV3Sdk.CreateSmtpEmail, root.SibApiV3Sdk.CreateSmtpTemplate, root.SibApiV3Sdk.DeleteHardbounces, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetAggregatedReport, root.SibApiV3Sdk.GetEmailEventReport, root.SibApiV3Sdk.GetReports, root.SibApiV3Sdk.GetSmtpTemplateOverview, root.SibApiV3Sdk.GetSmtpTemplates, root.SibApiV3Sdk.GetTransacBlockedContacts, root.SibApiV3Sdk.GetTransacEmailContent, root.SibApiV3Sdk.GetTransacEmailsList, root.SibApiV3Sdk.PostSendFailed, root.SibApiV3Sdk.SendEmail, root.SibApiV3Sdk.SendSmtpEmail, root.SibApiV3Sdk.SendTemplateEmail, root.SibApiV3Sdk.SendTestEmail, root.SibApiV3Sdk.UpdateSmtpTemplate); + root.PakatApiV3Sdk.TransactionalEmailsApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateModel, root.PakatApiV3Sdk.CreateSmtpEmail, root.PakatApiV3Sdk.CreateSmtpTemplate, root.PakatApiV3Sdk.DeleteHardbounces, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetAggregatedReport, root.PakatApiV3Sdk.GetEmailEventReport, root.PakatApiV3Sdk.GetReports, root.PakatApiV3Sdk.GetSmtpTemplateOverview, root.PakatApiV3Sdk.GetSmtpTemplates, root.PakatApiV3Sdk.GetTransacBlockedContacts, root.PakatApiV3Sdk.GetTransacEmailContent, root.PakatApiV3Sdk.GetTransacEmailsList, root.PakatApiV3Sdk.PostSendFailed, root.PakatApiV3Sdk.SendEmail, root.PakatApiV3Sdk.SendSmtpEmail, root.PakatApiV3Sdk.SendTemplateEmail, root.PakatApiV3Sdk.SendTestEmail, root.PakatApiV3Sdk.UpdateSmtpTemplate); } }(this, function(ApiClient, CreateModel, CreateSmtpEmail, CreateSmtpTemplate, DeleteHardbounces, ErrorModel, GetAggregatedReport, GetEmailEventReport, GetReports, GetSmtpTemplateOverview, GetSmtpTemplates, GetTransacBlockedContacts, GetTransacEmailContent, GetTransacEmailsList, PostSendFailed, SendEmail, SendSmtpEmail, SendTemplateEmail, SendTestEmail, UpdateSmtpTemplate) { 'use strict'; diff --git a/src/api/TransactionalSMSApi.js b/src/api/TransactionalSMSApi.js index 28a40734..c11c3c00 100644 --- a/src/api/TransactionalSMSApi.js +++ b/src/api/TransactionalSMSApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/ErrorModel'), require('../model/GetSmsEventReport'), require('../model/GetTransacAggregatedSmsReport'), require('../model/GetTransacSmsReport'), require('../model/SendSms'), require('../model/SendTransacSms')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.TransactionalSMSApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetSmsEventReport, root.SibApiV3Sdk.GetTransacAggregatedSmsReport, root.SibApiV3Sdk.GetTransacSmsReport, root.SibApiV3Sdk.SendSms, root.SibApiV3Sdk.SendTransacSms); + root.PakatApiV3Sdk.TransactionalSMSApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetSmsEventReport, root.PakatApiV3Sdk.GetTransacAggregatedSmsReport, root.PakatApiV3Sdk.GetTransacSmsReport, root.PakatApiV3Sdk.SendSms, root.PakatApiV3Sdk.SendTransacSms); } }(this, function(ApiClient, ErrorModel, GetSmsEventReport, GetTransacAggregatedSmsReport, GetTransacSmsReport, SendSms, SendTransacSms) { 'use strict'; diff --git a/src/api/WebhooksApi.js b/src/api/WebhooksApi.js index 8bbc8df0..20e49c34 100644 --- a/src/api/WebhooksApi.js +++ b/src/api/WebhooksApi.js @@ -23,10 +23,10 @@ module.exports = factory(require('../ApiClient'), require('../model/CreateModel'), require('../model/CreateWebhook'), require('../model/ErrorModel'), require('../model/GetWebhook'), require('../model/GetWebhooks'), require('../model/UpdateWebhook')); } else { // Browser globals (root is window) - if (!root.SibApiV3Sdk) { - root.SibApiV3Sdk = {}; + if (!root.PakatApiV3Sdk) { + root.PakatApiV3Sdk = {}; } - root.SibApiV3Sdk.WebhooksApi = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateModel, root.SibApiV3Sdk.CreateWebhook, root.SibApiV3Sdk.ErrorModel, root.SibApiV3Sdk.GetWebhook, root.SibApiV3Sdk.GetWebhooks, root.SibApiV3Sdk.UpdateWebhook); + root.PakatApiV3Sdk.WebhooksApi = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateModel, root.PakatApiV3Sdk.CreateWebhook, root.PakatApiV3Sdk.ErrorModel, root.PakatApiV3Sdk.GetWebhook, root.PakatApiV3Sdk.GetWebhooks, root.PakatApiV3Sdk.UpdateWebhook); } }(this, function(ApiClient, CreateModel, CreateWebhook, ErrorModel, GetWebhook, GetWebhooks, UpdateWebhook) { 'use strict'; diff --git a/src/index.js b/src/index.js index a89d4a9e..05e6a05b 100644 --- a/src/index.js +++ b/src/index.js @@ -31,9 +31,9 @@ *

* An AMD (recommended!) or CommonJS application will generally do something equivalent to the following: *

-   * var SibApiV3Sdk = require('index'); // See note below*.
-   * var xxxSvc = new SibApiV3Sdk.XxxApi(); // Allocate the API class we're going to use.
-   * var yyyModel = new SibApiV3Sdk.Yyy(); // Construct a model instance.
+   * var PakatApiV3Sdk = require('index'); // See note below*.
+   * var xxxSvc = new PakatApiV3Sdk.XxxApi(); // Allocate the API class we're going to use.
+   * var yyyModel = new PakatApiV3Sdk.Yyy(); // Construct a model instance.
    * yyyModel.someProperty = 'someValue';
    * ...
    * var zzz = xxxSvc.doSomething(yyyModel); // Invoke the service.
@@ -45,8 +45,8 @@
    * 

* A non-AMD browser application (discouraged) might do something like this: *

-   * var xxxSvc = new SibApiV3Sdk.XxxApi(); // Allocate the API class we're going to use.
-   * var yyy = new SibApiV3Sdk.Yyy(); // Construct a model instance.
+   * var xxxSvc = new PakatApiV3Sdk.XxxApi(); // Allocate the API class we're going to use.
+   * var yyy = new PakatApiV3Sdk.Yyy(); // Construct a model instance.
    * yyyModel.someProperty = 'someValue';
    * ...
    * var zzz = xxxSvc.doSomething(yyyModel); // Invoke the service.
diff --git a/src/model/AbTestCampaignResult.js b/src/model/AbTestCampaignResult.js
index 37b7e670..b7a63e28 100644
--- a/src/model/AbTestCampaignResult.js
+++ b/src/model/AbTestCampaignResult.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./AbTestCampaignResultClickedLinks'), require('./AbTestCampaignResultStatistics'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.AbTestCampaignResult = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.AbTestCampaignResultClickedLinks, root.SibApiV3Sdk.AbTestCampaignResultStatistics);
+    root.PakatApiV3Sdk.AbTestCampaignResult = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.AbTestCampaignResultClickedLinks, root.PakatApiV3Sdk.AbTestCampaignResultStatistics);
   }
 }(this, function(ApiClient, AbTestCampaignResultClickedLinks, AbTestCampaignResultStatistics) {
   'use strict';
diff --git a/src/model/AbTestCampaignResultClickedLinks.js b/src/model/AbTestCampaignResultClickedLinks.js
index 23eca47d..75e26e49 100644
--- a/src/model/AbTestCampaignResultClickedLinks.js
+++ b/src/model/AbTestCampaignResultClickedLinks.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./AbTestVersionClicks'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.AbTestCampaignResultClickedLinks = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.AbTestVersionClicks);
+    root.PakatApiV3Sdk.AbTestCampaignResultClickedLinks = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.AbTestVersionClicks);
   }
 }(this, function(ApiClient, AbTestVersionClicks) {
   'use strict';
diff --git a/src/model/AbTestCampaignResultStatistics.js b/src/model/AbTestCampaignResultStatistics.js
index 66c44f82..4adef0ac 100644
--- a/src/model/AbTestCampaignResultStatistics.js
+++ b/src/model/AbTestCampaignResultStatistics.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./AbTestVersionStats'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.AbTestCampaignResultStatistics = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.AbTestVersionStats);
+    root.PakatApiV3Sdk.AbTestCampaignResultStatistics = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.AbTestVersionStats);
   }
 }(this, function(ApiClient, AbTestVersionStats) {
   'use strict';
diff --git a/src/model/AbTestVersionClicks.js b/src/model/AbTestVersionClicks.js
index 1728039e..4ddcdfc9 100644
--- a/src/model/AbTestVersionClicks.js
+++ b/src/model/AbTestVersionClicks.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./AbTestVersionClicksInner'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.AbTestVersionClicks = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.AbTestVersionClicksInner);
+    root.PakatApiV3Sdk.AbTestVersionClicks = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.AbTestVersionClicksInner);
   }
 }(this, function(ApiClient, AbTestVersionClicksInner) {
   'use strict';
diff --git a/src/model/AbTestVersionClicksInner.js b/src/model/AbTestVersionClicksInner.js
index dd81ddc0..5a3c7425 100644
--- a/src/model/AbTestVersionClicksInner.js
+++ b/src/model/AbTestVersionClicksInner.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.AbTestVersionClicksInner = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.AbTestVersionClicksInner = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/AbTestVersionStats.js b/src/model/AbTestVersionStats.js
index 0d171126..1a9fa433 100644
--- a/src/model/AbTestVersionStats.js
+++ b/src/model/AbTestVersionStats.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.AbTestVersionStats = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.AbTestVersionStats = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/AddChildDomain.js b/src/model/AddChildDomain.js
index 04e537b5..414d80d7 100644
--- a/src/model/AddChildDomain.js
+++ b/src/model/AddChildDomain.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.AddChildDomain = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.AddChildDomain = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/AddContactToList.js b/src/model/AddContactToList.js
index 68250335..5de5c2af 100644
--- a/src/model/AddContactToList.js
+++ b/src/model/AddContactToList.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.AddContactToList = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.AddContactToList = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/AddCredits.js b/src/model/AddCredits.js
index 800a894e..5d487851 100644
--- a/src/model/AddCredits.js
+++ b/src/model/AddCredits.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.AddCredits = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.AddCredits = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateAttribute.js b/src/model/CreateAttribute.js
index 1bf34b11..d76b0823 100644
--- a/src/model/CreateAttribute.js
+++ b/src/model/CreateAttribute.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./CreateAttributeEnumeration'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateAttribute = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateAttributeEnumeration);
+    root.PakatApiV3Sdk.CreateAttribute = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateAttributeEnumeration);
   }
 }(this, function(ApiClient, CreateAttributeEnumeration) {
   'use strict';
diff --git a/src/model/CreateAttributeEnumeration.js b/src/model/CreateAttributeEnumeration.js
index 890a2c5d..78c4bcd3 100644
--- a/src/model/CreateAttributeEnumeration.js
+++ b/src/model/CreateAttributeEnumeration.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateAttributeEnumeration = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateAttributeEnumeration = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateChild.js b/src/model/CreateChild.js
index 2aa8385f..cf56b1d7 100644
--- a/src/model/CreateChild.js
+++ b/src/model/CreateChild.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateChild = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateChild = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateContact.js b/src/model/CreateContact.js
index 8a9e2654..1ece26b0 100644
--- a/src/model/CreateContact.js
+++ b/src/model/CreateContact.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateContact = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateContact = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateDoiContact.js b/src/model/CreateDoiContact.js
index a3ffec5f..8801ce74 100644
--- a/src/model/CreateDoiContact.js
+++ b/src/model/CreateDoiContact.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateDoiContact = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateDoiContact = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateEmailCampaign.js b/src/model/CreateEmailCampaign.js
index 7c225c19..d2cf3829 100644
--- a/src/model/CreateEmailCampaign.js
+++ b/src/model/CreateEmailCampaign.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./CreateEmailCampaignRecipients'), require('./CreateEmailCampaignSender'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateEmailCampaign = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateEmailCampaignRecipients, root.SibApiV3Sdk.CreateEmailCampaignSender);
+    root.PakatApiV3Sdk.CreateEmailCampaign = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateEmailCampaignRecipients, root.PakatApiV3Sdk.CreateEmailCampaignSender);
   }
 }(this, function(ApiClient, CreateEmailCampaignRecipients, CreateEmailCampaignSender) {
   'use strict';
diff --git a/src/model/CreateEmailCampaignRecipients.js b/src/model/CreateEmailCampaignRecipients.js
index e87e67ed..a24a414b 100644
--- a/src/model/CreateEmailCampaignRecipients.js
+++ b/src/model/CreateEmailCampaignRecipients.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateEmailCampaignRecipients = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateEmailCampaignRecipients = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateEmailCampaignSender.js b/src/model/CreateEmailCampaignSender.js
index 4e041fcb..dc804390 100644
--- a/src/model/CreateEmailCampaignSender.js
+++ b/src/model/CreateEmailCampaignSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateEmailCampaignSender = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateEmailCampaignSender = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateList.js b/src/model/CreateList.js
index a9f7624e..3659c50c 100644
--- a/src/model/CreateList.js
+++ b/src/model/CreateList.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateList = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateList = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateModel.js b/src/model/CreateModel.js
index 294021db..3a2951e8 100644
--- a/src/model/CreateModel.js
+++ b/src/model/CreateModel.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateModel = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateModel = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateReseller.js b/src/model/CreateReseller.js
index fcd51eae..879c879d 100644
--- a/src/model/CreateReseller.js
+++ b/src/model/CreateReseller.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateReseller = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateReseller = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateSender.js b/src/model/CreateSender.js
index 0ececb35..46314daf 100644
--- a/src/model/CreateSender.js
+++ b/src/model/CreateSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./CreateSenderIps'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateSender = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateSenderIps);
+    root.PakatApiV3Sdk.CreateSender = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateSenderIps);
   }
 }(this, function(ApiClient, CreateSenderIps) {
   'use strict';
diff --git a/src/model/CreateSenderIps.js b/src/model/CreateSenderIps.js
index bd33d3ca..22ee066d 100644
--- a/src/model/CreateSenderIps.js
+++ b/src/model/CreateSenderIps.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateSenderIps = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateSenderIps = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateSenderModel.js b/src/model/CreateSenderModel.js
index 8bc79ffa..b2a740b1 100644
--- a/src/model/CreateSenderModel.js
+++ b/src/model/CreateSenderModel.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateSenderModel = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateSenderModel = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateSmsCampaign.js b/src/model/CreateSmsCampaign.js
index 11db109d..74739ec0 100644
--- a/src/model/CreateSmsCampaign.js
+++ b/src/model/CreateSmsCampaign.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./CreateSmsCampaignRecipients'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateSmsCampaign = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateSmsCampaignRecipients);
+    root.PakatApiV3Sdk.CreateSmsCampaign = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateSmsCampaignRecipients);
   }
 }(this, function(ApiClient, CreateSmsCampaignRecipients) {
   'use strict';
diff --git a/src/model/CreateSmsCampaignRecipients.js b/src/model/CreateSmsCampaignRecipients.js
index 36b7f050..d0fda2e2 100644
--- a/src/model/CreateSmsCampaignRecipients.js
+++ b/src/model/CreateSmsCampaignRecipients.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateSmsCampaignRecipients = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateSmsCampaignRecipients = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateSmtpEmail.js b/src/model/CreateSmtpEmail.js
index 546923ff..6d36dc9f 100644
--- a/src/model/CreateSmtpEmail.js
+++ b/src/model/CreateSmtpEmail.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateSmtpEmail = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateSmtpEmail = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateSmtpTemplate.js b/src/model/CreateSmtpTemplate.js
index b13e3e64..ef364478 100644
--- a/src/model/CreateSmtpTemplate.js
+++ b/src/model/CreateSmtpTemplate.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./CreateSmtpTemplateSender'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateSmtpTemplate = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateSmtpTemplateSender);
+    root.PakatApiV3Sdk.CreateSmtpTemplate = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateSmtpTemplateSender);
   }
 }(this, function(ApiClient, CreateSmtpTemplateSender) {
   'use strict';
diff --git a/src/model/CreateSmtpTemplateSender.js b/src/model/CreateSmtpTemplateSender.js
index 80390177..10d4136a 100644
--- a/src/model/CreateSmtpTemplateSender.js
+++ b/src/model/CreateSmtpTemplateSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateSmtpTemplateSender = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateSmtpTemplateSender = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateUpdateContactModel.js b/src/model/CreateUpdateContactModel.js
index eaa63a12..db203172 100644
--- a/src/model/CreateUpdateContactModel.js
+++ b/src/model/CreateUpdateContactModel.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateUpdateContactModel = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateUpdateContactModel = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateUpdateFolder.js b/src/model/CreateUpdateFolder.js
index 1d8499d4..c5ecce97 100644
--- a/src/model/CreateUpdateFolder.js
+++ b/src/model/CreateUpdateFolder.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateUpdateFolder = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateUpdateFolder = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreateWebhook.js b/src/model/CreateWebhook.js
index 3b19e65e..cd5625dc 100644
--- a/src/model/CreateWebhook.js
+++ b/src/model/CreateWebhook.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreateWebhook = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreateWebhook = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/CreatedProcessId.js b/src/model/CreatedProcessId.js
index 183d2d71..46fbef23 100644
--- a/src/model/CreatedProcessId.js
+++ b/src/model/CreatedProcessId.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.CreatedProcessId = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.CreatedProcessId = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/DeleteHardbounces.js b/src/model/DeleteHardbounces.js
index 196575e8..14b2fcdd 100644
--- a/src/model/DeleteHardbounces.js
+++ b/src/model/DeleteHardbounces.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.DeleteHardbounces = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.DeleteHardbounces = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/EmailExportRecipients.js b/src/model/EmailExportRecipients.js
index 851e61a2..0d9fffef 100644
--- a/src/model/EmailExportRecipients.js
+++ b/src/model/EmailExportRecipients.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.EmailExportRecipients = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.EmailExportRecipients = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/ErrorModel.js b/src/model/ErrorModel.js
index 083301ab..d576e051 100644
--- a/src/model/ErrorModel.js
+++ b/src/model/ErrorModel.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.ErrorModel = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.ErrorModel = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetAccount.js b/src/model/GetAccount.js
index 3295faf7..9ca45022 100644
--- a/src/model/GetAccount.js
+++ b/src/model/GetAccount.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetAccountMarketingAutomation'), require('./GetAccountPlan'), require('./GetAccountRelay'), require('./GetExtendedClient'), require('./GetExtendedClientAddress'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetAccount = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetAccountMarketingAutomation, root.SibApiV3Sdk.GetAccountPlan, root.SibApiV3Sdk.GetAccountRelay, root.SibApiV3Sdk.GetExtendedClient, root.SibApiV3Sdk.GetExtendedClientAddress);
+    root.PakatApiV3Sdk.GetAccount = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetAccountMarketingAutomation, root.PakatApiV3Sdk.GetAccountPlan, root.PakatApiV3Sdk.GetAccountRelay, root.PakatApiV3Sdk.GetExtendedClient, root.PakatApiV3Sdk.GetExtendedClientAddress);
   }
 }(this, function(ApiClient, GetAccountMarketingAutomation, GetAccountPlan, GetAccountRelay, GetExtendedClient, GetExtendedClientAddress) {
   'use strict';
diff --git a/src/model/GetAccountMarketingAutomation.js b/src/model/GetAccountMarketingAutomation.js
index 8bee9eaa..f0890cd6 100644
--- a/src/model/GetAccountMarketingAutomation.js
+++ b/src/model/GetAccountMarketingAutomation.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetAccountMarketingAutomation = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetAccountMarketingAutomation = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetAccountPlan.js b/src/model/GetAccountPlan.js
index 82f54f11..b0ce7c9c 100644
--- a/src/model/GetAccountPlan.js
+++ b/src/model/GetAccountPlan.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetAccountPlan = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetAccountPlan = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetAccountRelay.js b/src/model/GetAccountRelay.js
index 8c55d3a4..3fb08dfa 100644
--- a/src/model/GetAccountRelay.js
+++ b/src/model/GetAccountRelay.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetAccountRelayData'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetAccountRelay = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetAccountRelayData);
+    root.PakatApiV3Sdk.GetAccountRelay = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetAccountRelayData);
   }
 }(this, function(ApiClient, GetAccountRelayData) {
   'use strict';
diff --git a/src/model/GetAccountRelayData.js b/src/model/GetAccountRelayData.js
index 2c8b742d..942e2e30 100644
--- a/src/model/GetAccountRelayData.js
+++ b/src/model/GetAccountRelayData.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetAccountRelayData = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetAccountRelayData = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetAggregatedReport.js b/src/model/GetAggregatedReport.js
index 6141719a..b905b0aa 100644
--- a/src/model/GetAggregatedReport.js
+++ b/src/model/GetAggregatedReport.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetAggregatedReport = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetAggregatedReport = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetAttributes.js b/src/model/GetAttributes.js
index 35e06cd4..dd032a18 100644
--- a/src/model/GetAttributes.js
+++ b/src/model/GetAttributes.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetAttributesAttributes'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetAttributes = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetAttributesAttributes);
+    root.PakatApiV3Sdk.GetAttributes = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetAttributesAttributes);
   }
 }(this, function(ApiClient, GetAttributesAttributes) {
   'use strict';
diff --git a/src/model/GetAttributesAttributes.js b/src/model/GetAttributesAttributes.js
index d4f0b5a1..a2e2575a 100644
--- a/src/model/GetAttributesAttributes.js
+++ b/src/model/GetAttributesAttributes.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetAttributesEnumeration'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetAttributesAttributes = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetAttributesEnumeration);
+    root.PakatApiV3Sdk.GetAttributesAttributes = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetAttributesEnumeration);
   }
 }(this, function(ApiClient, GetAttributesEnumeration) {
   'use strict';
diff --git a/src/model/GetAttributesEnumeration.js b/src/model/GetAttributesEnumeration.js
index e76d032e..7ab0b2e9 100644
--- a/src/model/GetAttributesEnumeration.js
+++ b/src/model/GetAttributesEnumeration.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetAttributesEnumeration = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetAttributesEnumeration = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetCampaignOverview.js b/src/model/GetCampaignOverview.js
index 4f2721d9..ce565f2d 100644
--- a/src/model/GetCampaignOverview.js
+++ b/src/model/GetCampaignOverview.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetCampaignOverview = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetCampaignOverview = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetCampaignRecipients.js b/src/model/GetCampaignRecipients.js
index b0b2c8a9..6367291e 100644
--- a/src/model/GetCampaignRecipients.js
+++ b/src/model/GetCampaignRecipients.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetCampaignRecipients = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetCampaignRecipients = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetCampaignStats.js b/src/model/GetCampaignStats.js
index acc7c8b4..8a38cdef 100644
--- a/src/model/GetCampaignStats.js
+++ b/src/model/GetCampaignStats.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetCampaignStats = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetCampaignStats = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetChildAccountCreationStatus.js b/src/model/GetChildAccountCreationStatus.js
index 22c42533..21dc2b1b 100644
--- a/src/model/GetChildAccountCreationStatus.js
+++ b/src/model/GetChildAccountCreationStatus.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetChildAccountCreationStatus = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetChildAccountCreationStatus = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetChildDomain.js b/src/model/GetChildDomain.js
index 127f7959..b60b4b72 100644
--- a/src/model/GetChildDomain.js
+++ b/src/model/GetChildDomain.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetChildDomain = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetChildDomain = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetChildDomains.js b/src/model/GetChildDomains.js
index 00c8a4a2..f1877f2e 100644
--- a/src/model/GetChildDomains.js
+++ b/src/model/GetChildDomains.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetChildDomains = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetChildDomains = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetChildInfo.js b/src/model/GetChildInfo.js
index b5f55b4e..4a179e81 100644
--- a/src/model/GetChildInfo.js
+++ b/src/model/GetChildInfo.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetChildInfoApiKeys'), require('./GetChildInfoCredits'), require('./GetChildInfoStatistics'), require('./GetClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetChildInfo = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetChildInfoApiKeys, root.SibApiV3Sdk.GetChildInfoCredits, root.SibApiV3Sdk.GetChildInfoStatistics, root.SibApiV3Sdk.GetClient);
+    root.PakatApiV3Sdk.GetChildInfo = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetChildInfoApiKeys, root.PakatApiV3Sdk.GetChildInfoCredits, root.PakatApiV3Sdk.GetChildInfoStatistics, root.PakatApiV3Sdk.GetClient);
   }
 }(this, function(ApiClient, GetChildInfoApiKeys, GetChildInfoCredits, GetChildInfoStatistics, GetClient) {
   'use strict';
diff --git a/src/model/GetChildInfoApiKeys.js b/src/model/GetChildInfoApiKeys.js
index bc2ceb05..4a1e75da 100644
--- a/src/model/GetChildInfoApiKeys.js
+++ b/src/model/GetChildInfoApiKeys.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetChildInfoApiKeysV2'), require('./GetChildInfoApiKeysV3'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetChildInfoApiKeys = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetChildInfoApiKeysV2, root.SibApiV3Sdk.GetChildInfoApiKeysV3);
+    root.PakatApiV3Sdk.GetChildInfoApiKeys = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetChildInfoApiKeysV2, root.PakatApiV3Sdk.GetChildInfoApiKeysV3);
   }
 }(this, function(ApiClient, GetChildInfoApiKeysV2, GetChildInfoApiKeysV3) {
   'use strict';
diff --git a/src/model/GetChildInfoApiKeysV2.js b/src/model/GetChildInfoApiKeysV2.js
index edcb0861..1ac41e27 100644
--- a/src/model/GetChildInfoApiKeysV2.js
+++ b/src/model/GetChildInfoApiKeysV2.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetChildInfoApiKeysV2 = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetChildInfoApiKeysV2 = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetChildInfoApiKeysV3.js b/src/model/GetChildInfoApiKeysV3.js
index e6df0b1a..a67faf5c 100644
--- a/src/model/GetChildInfoApiKeysV3.js
+++ b/src/model/GetChildInfoApiKeysV3.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetChildInfoApiKeysV3 = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetChildInfoApiKeysV3 = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetChildInfoCredits.js b/src/model/GetChildInfoCredits.js
index ffdbaa8d..bb66f128 100644
--- a/src/model/GetChildInfoCredits.js
+++ b/src/model/GetChildInfoCredits.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetChildInfoCredits = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetChildInfoCredits = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetChildInfoStatistics.js b/src/model/GetChildInfoStatistics.js
index e583a8b3..3f672449 100644
--- a/src/model/GetChildInfoStatistics.js
+++ b/src/model/GetChildInfoStatistics.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetChildInfoStatistics = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetChildInfoStatistics = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetChildrenList.js b/src/model/GetChildrenList.js
index eef5bcfe..59c2af59 100644
--- a/src/model/GetChildrenList.js
+++ b/src/model/GetChildrenList.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetChildrenList = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetChildrenList = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetClient.js b/src/model/GetClient.js
index b261d898..96959be2 100644
--- a/src/model/GetClient.js
+++ b/src/model/GetClient.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetClient = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetClient = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetContactCampaignStats.js b/src/model/GetContactCampaignStats.js
index 26cddd41..d75d0bcf 100644
--- a/src/model/GetContactCampaignStats.js
+++ b/src/model/GetContactCampaignStats.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetContactCampaignStatsClicked'), require('./GetContactCampaignStatsOpened'), require('./GetContactCampaignStatsTransacAttributes'), require('./GetContactCampaignStatsUnsubscriptions'), require('./GetExtendedContactDetailsStatisticsMessagesSent'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetContactCampaignStats = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetContactCampaignStatsClicked, root.SibApiV3Sdk.GetContactCampaignStatsOpened, root.SibApiV3Sdk.GetContactCampaignStatsTransacAttributes, root.SibApiV3Sdk.GetContactCampaignStatsUnsubscriptions, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent);
+    root.PakatApiV3Sdk.GetContactCampaignStats = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetContactCampaignStatsClicked, root.PakatApiV3Sdk.GetContactCampaignStatsOpened, root.PakatApiV3Sdk.GetContactCampaignStatsTransacAttributes, root.PakatApiV3Sdk.GetContactCampaignStatsUnsubscriptions, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent);
   }
 }(this, function(ApiClient, GetContactCampaignStatsClicked, GetContactCampaignStatsOpened, GetContactCampaignStatsTransacAttributes, GetContactCampaignStatsUnsubscriptions, GetExtendedContactDetailsStatisticsMessagesSent) {
   'use strict';
diff --git a/src/model/GetContactCampaignStatsClicked.js b/src/model/GetContactCampaignStatsClicked.js
index 59081d6f..eacbdb45 100644
--- a/src/model/GetContactCampaignStatsClicked.js
+++ b/src/model/GetContactCampaignStatsClicked.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetExtendedContactDetailsStatisticsLinks'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetContactCampaignStatsClicked = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks);
+    root.PakatApiV3Sdk.GetContactCampaignStatsClicked = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks);
   }
 }(this, function(ApiClient, GetExtendedContactDetailsStatisticsLinks) {
   'use strict';
diff --git a/src/model/GetContactCampaignStatsOpened.js b/src/model/GetContactCampaignStatsOpened.js
index 3e64d1d1..4bbfffea 100644
--- a/src/model/GetContactCampaignStatsOpened.js
+++ b/src/model/GetContactCampaignStatsOpened.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetContactCampaignStatsOpened = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetContactCampaignStatsOpened = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetContactCampaignStatsTransacAttributes.js b/src/model/GetContactCampaignStatsTransacAttributes.js
index 9ff757e7..a8f1ef92 100644
--- a/src/model/GetContactCampaignStatsTransacAttributes.js
+++ b/src/model/GetContactCampaignStatsTransacAttributes.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetContactCampaignStatsTransacAttributes = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetContactCampaignStatsTransacAttributes = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetContactCampaignStatsUnsubscriptions.js b/src/model/GetContactCampaignStatsUnsubscriptions.js
index 0c2e2c2e..adc4d85b 100644
--- a/src/model/GetContactCampaignStatsUnsubscriptions.js
+++ b/src/model/GetContactCampaignStatsUnsubscriptions.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription'), require('./GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetContactCampaignStatsUnsubscriptions = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription);
+    root.PakatApiV3Sdk.GetContactCampaignStatsUnsubscriptions = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription);
   }
 }(this, function(ApiClient, GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription, GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription) {
   'use strict';
diff --git a/src/model/GetContactDetails.js b/src/model/GetContactDetails.js
index d371f73b..c9e8f64d 100644
--- a/src/model/GetContactDetails.js
+++ b/src/model/GetContactDetails.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetContactDetails = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetContactDetails = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetContacts.js b/src/model/GetContacts.js
index a8c72b6b..0807392c 100644
--- a/src/model/GetContacts.js
+++ b/src/model/GetContacts.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetContacts = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetContacts = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetDeviceBrowserStats.js b/src/model/GetDeviceBrowserStats.js
index 0377aa9d..db3c729e 100644
--- a/src/model/GetDeviceBrowserStats.js
+++ b/src/model/GetDeviceBrowserStats.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetDeviceBrowserStats = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetDeviceBrowserStats = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetEmailCampaign.js b/src/model/GetEmailCampaign.js
index 676fbe75..c1adfe7e 100644
--- a/src/model/GetEmailCampaign.js
+++ b/src/model/GetEmailCampaign.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetExtendedCampaignOverview'), require('./GetExtendedCampaignOverviewSender'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetEmailCampaign = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetExtendedCampaignOverview, root.SibApiV3Sdk.GetExtendedCampaignOverviewSender);
+    root.PakatApiV3Sdk.GetEmailCampaign = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetExtendedCampaignOverview, root.PakatApiV3Sdk.GetExtendedCampaignOverviewSender);
   }
 }(this, function(ApiClient, GetExtendedCampaignOverview, GetExtendedCampaignOverviewSender) {
   'use strict';
diff --git a/src/model/GetEmailCampaigns.js b/src/model/GetEmailCampaigns.js
index f794b9aa..163264f8 100644
--- a/src/model/GetEmailCampaigns.js
+++ b/src/model/GetEmailCampaigns.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetEmailCampaigns = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetEmailCampaigns = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetEmailEventReport.js b/src/model/GetEmailEventReport.js
index 8c2039c2..3e3197e8 100644
--- a/src/model/GetEmailEventReport.js
+++ b/src/model/GetEmailEventReport.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetEmailEventReportEvents'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetEmailEventReport = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetEmailEventReportEvents);
+    root.PakatApiV3Sdk.GetEmailEventReport = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetEmailEventReportEvents);
   }
 }(this, function(ApiClient, GetEmailEventReportEvents) {
   'use strict';
diff --git a/src/model/GetEmailEventReportEvents.js b/src/model/GetEmailEventReportEvents.js
index 08c47f73..123f052b 100644
--- a/src/model/GetEmailEventReportEvents.js
+++ b/src/model/GetEmailEventReportEvents.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetEmailEventReportEvents = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetEmailEventReportEvents = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetExtendedCampaignOverview.js b/src/model/GetExtendedCampaignOverview.js
index 742a1cbe..7677a5fe 100644
--- a/src/model/GetExtendedCampaignOverview.js
+++ b/src/model/GetExtendedCampaignOverview.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetCampaignOverview'), require('./GetExtendedCampaignOverviewSender'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedCampaignOverview = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetCampaignOverview, root.SibApiV3Sdk.GetExtendedCampaignOverviewSender);
+    root.PakatApiV3Sdk.GetExtendedCampaignOverview = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetCampaignOverview, root.PakatApiV3Sdk.GetExtendedCampaignOverviewSender);
   }
 }(this, function(ApiClient, GetCampaignOverview, GetExtendedCampaignOverviewSender) {
   'use strict';
diff --git a/src/model/GetExtendedCampaignOverviewSender.js b/src/model/GetExtendedCampaignOverviewSender.js
index c68facc9..2d97e636 100644
--- a/src/model/GetExtendedCampaignOverviewSender.js
+++ b/src/model/GetExtendedCampaignOverviewSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedCampaignOverviewSender = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetExtendedCampaignOverviewSender = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetExtendedCampaignStats.js b/src/model/GetExtendedCampaignStats.js
index 16432fd2..af14703a 100644
--- a/src/model/GetExtendedCampaignStats.js
+++ b/src/model/GetExtendedCampaignStats.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetStatsByBrowser'), require('./GetStatsByDevice'), require('./GetStatsByDomain'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedCampaignStats = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetStatsByBrowser, root.SibApiV3Sdk.GetStatsByDevice, root.SibApiV3Sdk.GetStatsByDomain);
+    root.PakatApiV3Sdk.GetExtendedCampaignStats = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetStatsByBrowser, root.PakatApiV3Sdk.GetStatsByDevice, root.PakatApiV3Sdk.GetStatsByDomain);
   }
 }(this, function(ApiClient, GetStatsByBrowser, GetStatsByDevice, GetStatsByDomain) {
   'use strict';
diff --git a/src/model/GetExtendedClient.js b/src/model/GetExtendedClient.js
index 2875677f..8ade7e45 100644
--- a/src/model/GetExtendedClient.js
+++ b/src/model/GetExtendedClient.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetClient'), require('./GetExtendedClientAddress'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedClient = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetClient, root.SibApiV3Sdk.GetExtendedClientAddress);
+    root.PakatApiV3Sdk.GetExtendedClient = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetClient, root.PakatApiV3Sdk.GetExtendedClientAddress);
   }
 }(this, function(ApiClient, GetClient, GetExtendedClientAddress) {
   'use strict';
diff --git a/src/model/GetExtendedClientAddress.js b/src/model/GetExtendedClientAddress.js
index a2c17ab3..87a093b1 100644
--- a/src/model/GetExtendedClientAddress.js
+++ b/src/model/GetExtendedClientAddress.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedClientAddress = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetExtendedClientAddress = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetExtendedContactDetails.js b/src/model/GetExtendedContactDetails.js
index 805987f8..aa2684ab 100644
--- a/src/model/GetExtendedContactDetails.js
+++ b/src/model/GetExtendedContactDetails.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetContactDetails'), require('./GetExtendedContactDetailsStatistics'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedContactDetails = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetContactDetails, root.SibApiV3Sdk.GetExtendedContactDetailsStatistics);
+    root.PakatApiV3Sdk.GetExtendedContactDetails = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetContactDetails, root.PakatApiV3Sdk.GetExtendedContactDetailsStatistics);
   }
 }(this, function(ApiClient, GetContactDetails, GetExtendedContactDetailsStatistics) {
   'use strict';
diff --git a/src/model/GetExtendedContactDetailsStatistics.js b/src/model/GetExtendedContactDetailsStatistics.js
index 8d9ca9c8..45e2a2fc 100644
--- a/src/model/GetExtendedContactDetailsStatistics.js
+++ b/src/model/GetExtendedContactDetailsStatistics.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetExtendedContactDetailsStatisticsClicked'), require('./GetExtendedContactDetailsStatisticsMessagesSent'), require('./GetExtendedContactDetailsStatisticsOpened'), require('./GetExtendedContactDetailsStatisticsUnsubscriptions'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedContactDetailsStatistics = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsClicked, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions);
+    root.PakatApiV3Sdk.GetExtendedContactDetailsStatistics = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsClicked, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions);
   }
 }(this, function(ApiClient, GetExtendedContactDetailsStatisticsClicked, GetExtendedContactDetailsStatisticsMessagesSent, GetExtendedContactDetailsStatisticsOpened, GetExtendedContactDetailsStatisticsUnsubscriptions) {
   'use strict';
diff --git a/src/model/GetExtendedContactDetailsStatisticsClicked.js b/src/model/GetExtendedContactDetailsStatisticsClicked.js
index 96c064d1..ea7f1a54 100644
--- a/src/model/GetExtendedContactDetailsStatisticsClicked.js
+++ b/src/model/GetExtendedContactDetailsStatisticsClicked.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetExtendedContactDetailsStatisticsLinks'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsClicked = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks);
+    root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsClicked = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks);
   }
 }(this, function(ApiClient, GetExtendedContactDetailsStatisticsLinks) {
   'use strict';
diff --git a/src/model/GetExtendedContactDetailsStatisticsLinks.js b/src/model/GetExtendedContactDetailsStatisticsLinks.js
index f622a529..636a39ea 100644
--- a/src/model/GetExtendedContactDetailsStatisticsLinks.js
+++ b/src/model/GetExtendedContactDetailsStatisticsLinks.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetExtendedContactDetailsStatisticsMessagesSent.js b/src/model/GetExtendedContactDetailsStatisticsMessagesSent.js
index 3edbc1bd..b232092c 100644
--- a/src/model/GetExtendedContactDetailsStatisticsMessagesSent.js
+++ b/src/model/GetExtendedContactDetailsStatisticsMessagesSent.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetExtendedContactDetailsStatisticsOpened.js b/src/model/GetExtendedContactDetailsStatisticsOpened.js
index 215ec61c..b8765e68 100644
--- a/src/model/GetExtendedContactDetailsStatisticsOpened.js
+++ b/src/model/GetExtendedContactDetailsStatisticsOpened.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetExtendedContactDetailsStatisticsUnsubscriptions.js b/src/model/GetExtendedContactDetailsStatisticsUnsubscriptions.js
index 492c404d..fcf0461f 100644
--- a/src/model/GetExtendedContactDetailsStatisticsUnsubscriptions.js
+++ b/src/model/GetExtendedContactDetailsStatisticsUnsubscriptions.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription'), require('./GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription, root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription);
+    root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription, root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription);
   }
 }(this, function(ApiClient, GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription, GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription) {
   'use strict';
diff --git a/src/model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.js b/src/model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.js
index c12bd9fb..6e671662 100644
--- a/src/model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.js
+++ b/src/model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.js b/src/model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.js
index 17595fea..6d376b0b 100644
--- a/src/model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.js
+++ b/src/model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetExtendedList.js b/src/model/GetExtendedList.js
index e3e6dc4e..99449995 100644
--- a/src/model/GetExtendedList.js
+++ b/src/model/GetExtendedList.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetExtendedListCampaignStats'), require('./GetList'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedList = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetExtendedListCampaignStats, root.SibApiV3Sdk.GetList);
+    root.PakatApiV3Sdk.GetExtendedList = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetExtendedListCampaignStats, root.PakatApiV3Sdk.GetList);
   }
 }(this, function(ApiClient, GetExtendedListCampaignStats, GetList) {
   'use strict';
diff --git a/src/model/GetExtendedListCampaignStats.js b/src/model/GetExtendedListCampaignStats.js
index 97895be9..510f87b9 100644
--- a/src/model/GetExtendedListCampaignStats.js
+++ b/src/model/GetExtendedListCampaignStats.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetCampaignStats'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetExtendedListCampaignStats = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetCampaignStats);
+    root.PakatApiV3Sdk.GetExtendedListCampaignStats = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetCampaignStats);
   }
 }(this, function(ApiClient, GetCampaignStats) {
   'use strict';
diff --git a/src/model/GetFolder.js b/src/model/GetFolder.js
index 29eff7f7..7669b759 100644
--- a/src/model/GetFolder.js
+++ b/src/model/GetFolder.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetFolder = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetFolder = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetFolderLists.js b/src/model/GetFolderLists.js
index 35684868..1888deed 100644
--- a/src/model/GetFolderLists.js
+++ b/src/model/GetFolderLists.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetFolderLists = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetFolderLists = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetFolders.js b/src/model/GetFolders.js
index 2731bd65..68f65794 100644
--- a/src/model/GetFolders.js
+++ b/src/model/GetFolders.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetFolders = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetFolders = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetIp.js b/src/model/GetIp.js
index bff87998..c1337687 100644
--- a/src/model/GetIp.js
+++ b/src/model/GetIp.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetIp = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetIp = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetIpFromSender.js b/src/model/GetIpFromSender.js
index aa38b5f6..90d2e54d 100644
--- a/src/model/GetIpFromSender.js
+++ b/src/model/GetIpFromSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetIpFromSender = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetIpFromSender = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetIps.js b/src/model/GetIps.js
index 9ba789c6..6d92b49e 100644
--- a/src/model/GetIps.js
+++ b/src/model/GetIps.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetIp'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetIps = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetIp);
+    root.PakatApiV3Sdk.GetIps = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetIp);
   }
 }(this, function(ApiClient, GetIp) {
   'use strict';
diff --git a/src/model/GetIpsFromSender.js b/src/model/GetIpsFromSender.js
index 38ec8d69..69391e91 100644
--- a/src/model/GetIpsFromSender.js
+++ b/src/model/GetIpsFromSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetIpFromSender'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetIpsFromSender = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetIpFromSender);
+    root.PakatApiV3Sdk.GetIpsFromSender = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetIpFromSender);
   }
 }(this, function(ApiClient, GetIpFromSender) {
   'use strict';
diff --git a/src/model/GetList.js b/src/model/GetList.js
index fc310112..38d47d04 100644
--- a/src/model/GetList.js
+++ b/src/model/GetList.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetList = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetList = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetLists.js b/src/model/GetLists.js
index 40f80963..7db59ddc 100644
--- a/src/model/GetLists.js
+++ b/src/model/GetLists.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetLists = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetLists = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetProcess.js b/src/model/GetProcess.js
index c3eb89c5..527f4109 100644
--- a/src/model/GetProcess.js
+++ b/src/model/GetProcess.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetProcess = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetProcess = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetProcesses.js b/src/model/GetProcesses.js
index 9601589c..6f51179b 100644
--- a/src/model/GetProcesses.js
+++ b/src/model/GetProcesses.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetProcess'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetProcesses = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetProcess);
+    root.PakatApiV3Sdk.GetProcesses = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetProcess);
   }
 }(this, function(ApiClient, GetProcess) {
   'use strict';
diff --git a/src/model/GetReports.js b/src/model/GetReports.js
index 8516ab09..59ccbb1e 100644
--- a/src/model/GetReports.js
+++ b/src/model/GetReports.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetReportsReports'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetReports = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetReportsReports);
+    root.PakatApiV3Sdk.GetReports = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetReportsReports);
   }
 }(this, function(ApiClient, GetReportsReports) {
   'use strict';
diff --git a/src/model/GetReportsReports.js b/src/model/GetReportsReports.js
index fff3890b..a46af981 100644
--- a/src/model/GetReportsReports.js
+++ b/src/model/GetReportsReports.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetReportsReports = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetReportsReports = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetSendersList.js b/src/model/GetSendersList.js
index c5c15fba..046c9e9e 100644
--- a/src/model/GetSendersList.js
+++ b/src/model/GetSendersList.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetSendersListSenders'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSendersList = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetSendersListSenders);
+    root.PakatApiV3Sdk.GetSendersList = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetSendersListSenders);
   }
 }(this, function(ApiClient, GetSendersListSenders) {
   'use strict';
diff --git a/src/model/GetSendersListIps.js b/src/model/GetSendersListIps.js
index e63239ae..24588ebe 100644
--- a/src/model/GetSendersListIps.js
+++ b/src/model/GetSendersListIps.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSendersListIps = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetSendersListIps = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetSendersListSenders.js b/src/model/GetSendersListSenders.js
index 65325565..f0f1de6c 100644
--- a/src/model/GetSendersListSenders.js
+++ b/src/model/GetSendersListSenders.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetSendersListIps'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSendersListSenders = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetSendersListIps);
+    root.PakatApiV3Sdk.GetSendersListSenders = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetSendersListIps);
   }
 }(this, function(ApiClient, GetSendersListIps) {
   'use strict';
diff --git a/src/model/GetSharedTemplateUrl.js b/src/model/GetSharedTemplateUrl.js
index ab7ed4fb..777dbfa7 100644
--- a/src/model/GetSharedTemplateUrl.js
+++ b/src/model/GetSharedTemplateUrl.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSharedTemplateUrl = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetSharedTemplateUrl = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetSmsCampaign.js b/src/model/GetSmsCampaign.js
index 5c3b8869..c984a881 100644
--- a/src/model/GetSmsCampaign.js
+++ b/src/model/GetSmsCampaign.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetSmsCampaignOverview'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSmsCampaign = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetSmsCampaignOverview);
+    root.PakatApiV3Sdk.GetSmsCampaign = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetSmsCampaignOverview);
   }
 }(this, function(ApiClient, GetSmsCampaignOverview) {
   'use strict';
diff --git a/src/model/GetSmsCampaignOverview.js b/src/model/GetSmsCampaignOverview.js
index 551f33d0..c14a2417 100644
--- a/src/model/GetSmsCampaignOverview.js
+++ b/src/model/GetSmsCampaignOverview.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSmsCampaignOverview = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetSmsCampaignOverview = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetSmsCampaignStats.js b/src/model/GetSmsCampaignStats.js
index fbbc86d9..328efe48 100644
--- a/src/model/GetSmsCampaignStats.js
+++ b/src/model/GetSmsCampaignStats.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSmsCampaignStats = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetSmsCampaignStats = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetSmsCampaigns.js b/src/model/GetSmsCampaigns.js
index 9d1abb0b..bf76b581 100644
--- a/src/model/GetSmsCampaigns.js
+++ b/src/model/GetSmsCampaigns.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSmsCampaigns = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetSmsCampaigns = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetSmsEventReport.js b/src/model/GetSmsEventReport.js
index afe8ea3a..ec085e88 100644
--- a/src/model/GetSmsEventReport.js
+++ b/src/model/GetSmsEventReport.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetSmsEventReportEvents'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSmsEventReport = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetSmsEventReportEvents);
+    root.PakatApiV3Sdk.GetSmsEventReport = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetSmsEventReportEvents);
   }
 }(this, function(ApiClient, GetSmsEventReportEvents) {
   'use strict';
diff --git a/src/model/GetSmsEventReportEvents.js b/src/model/GetSmsEventReportEvents.js
index 4b7b0d34..15f86f7b 100644
--- a/src/model/GetSmsEventReportEvents.js
+++ b/src/model/GetSmsEventReportEvents.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSmsEventReportEvents = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetSmsEventReportEvents = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetSmtpTemplateOverview.js b/src/model/GetSmtpTemplateOverview.js
index 6495762d..e29fb622 100644
--- a/src/model/GetSmtpTemplateOverview.js
+++ b/src/model/GetSmtpTemplateOverview.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetSmtpTemplateOverviewSender'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSmtpTemplateOverview = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetSmtpTemplateOverviewSender);
+    root.PakatApiV3Sdk.GetSmtpTemplateOverview = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetSmtpTemplateOverviewSender);
   }
 }(this, function(ApiClient, GetSmtpTemplateOverviewSender) {
   'use strict';
diff --git a/src/model/GetSmtpTemplateOverviewSender.js b/src/model/GetSmtpTemplateOverviewSender.js
index f45e2656..f6a1d3d8 100644
--- a/src/model/GetSmtpTemplateOverviewSender.js
+++ b/src/model/GetSmtpTemplateOverviewSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSmtpTemplateOverviewSender = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetSmtpTemplateOverviewSender = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetSmtpTemplates.js b/src/model/GetSmtpTemplates.js
index 5cfb9af1..102dbcd9 100644
--- a/src/model/GetSmtpTemplates.js
+++ b/src/model/GetSmtpTemplates.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetSmtpTemplateOverview'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSmtpTemplates = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetSmtpTemplateOverview);
+    root.PakatApiV3Sdk.GetSmtpTemplates = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetSmtpTemplateOverview);
   }
 }(this, function(ApiClient, GetSmtpTemplateOverview) {
   'use strict';
diff --git a/src/model/GetSsoToken.js b/src/model/GetSsoToken.js
index 929a44c5..90205eee 100644
--- a/src/model/GetSsoToken.js
+++ b/src/model/GetSsoToken.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetSsoToken = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetSsoToken = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetStatsByBrowser.js b/src/model/GetStatsByBrowser.js
index 7e214788..ec529516 100644
--- a/src/model/GetStatsByBrowser.js
+++ b/src/model/GetStatsByBrowser.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetDeviceBrowserStats'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetStatsByBrowser = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetDeviceBrowserStats);
+    root.PakatApiV3Sdk.GetStatsByBrowser = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetDeviceBrowserStats);
   }
 }(this, function(ApiClient, GetDeviceBrowserStats) {
   'use strict';
diff --git a/src/model/GetStatsByDevice.js b/src/model/GetStatsByDevice.js
index c1a76354..ff04f9a4 100644
--- a/src/model/GetStatsByDevice.js
+++ b/src/model/GetStatsByDevice.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetDeviceBrowserStats'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetStatsByDevice = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetDeviceBrowserStats);
+    root.PakatApiV3Sdk.GetStatsByDevice = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetDeviceBrowserStats);
   }
 }(this, function(ApiClient, GetDeviceBrowserStats) {
   'use strict';
diff --git a/src/model/GetStatsByDomain.js b/src/model/GetStatsByDomain.js
index e5ffda13..aaeefce8 100644
--- a/src/model/GetStatsByDomain.js
+++ b/src/model/GetStatsByDomain.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetCampaignStats'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetStatsByDomain = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetCampaignStats);
+    root.PakatApiV3Sdk.GetStatsByDomain = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetCampaignStats);
   }
 }(this, function(ApiClient, GetCampaignStats) {
   'use strict';
diff --git a/src/model/GetTransacAggregatedSmsReport.js b/src/model/GetTransacAggregatedSmsReport.js
index 203394df..cdf920ce 100644
--- a/src/model/GetTransacAggregatedSmsReport.js
+++ b/src/model/GetTransacAggregatedSmsReport.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetTransacAggregatedSmsReport = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetTransacAggregatedSmsReport = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetTransacBlockedContacts.js b/src/model/GetTransacBlockedContacts.js
index 8fd9df4b..d28b0921 100644
--- a/src/model/GetTransacBlockedContacts.js
+++ b/src/model/GetTransacBlockedContacts.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetTransacBlockedContactsContacts'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetTransacBlockedContacts = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetTransacBlockedContactsContacts);
+    root.PakatApiV3Sdk.GetTransacBlockedContacts = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetTransacBlockedContactsContacts);
   }
 }(this, function(ApiClient, GetTransacBlockedContactsContacts) {
   'use strict';
diff --git a/src/model/GetTransacBlockedContactsContacts.js b/src/model/GetTransacBlockedContactsContacts.js
index 3019de6c..a8e89310 100644
--- a/src/model/GetTransacBlockedContactsContacts.js
+++ b/src/model/GetTransacBlockedContactsContacts.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetTransacBlockedContactsReason'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetTransacBlockedContactsContacts = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetTransacBlockedContactsReason);
+    root.PakatApiV3Sdk.GetTransacBlockedContactsContacts = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetTransacBlockedContactsReason);
   }
 }(this, function(ApiClient, GetTransacBlockedContactsReason) {
   'use strict';
diff --git a/src/model/GetTransacBlockedContactsReason.js b/src/model/GetTransacBlockedContactsReason.js
index c93cde44..bd85ec4c 100644
--- a/src/model/GetTransacBlockedContactsReason.js
+++ b/src/model/GetTransacBlockedContactsReason.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetTransacBlockedContactsReason = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetTransacBlockedContactsReason = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetTransacEmailContent.js b/src/model/GetTransacEmailContent.js
index 914addac..db66b637 100644
--- a/src/model/GetTransacEmailContent.js
+++ b/src/model/GetTransacEmailContent.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetTransacEmailContentEvents'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetTransacEmailContent = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetTransacEmailContentEvents);
+    root.PakatApiV3Sdk.GetTransacEmailContent = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetTransacEmailContentEvents);
   }
 }(this, function(ApiClient, GetTransacEmailContentEvents) {
   'use strict';
diff --git a/src/model/GetTransacEmailContentEvents.js b/src/model/GetTransacEmailContentEvents.js
index 4dfd9e4b..116d934c 100644
--- a/src/model/GetTransacEmailContentEvents.js
+++ b/src/model/GetTransacEmailContentEvents.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetTransacEmailContentEvents = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetTransacEmailContentEvents = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetTransacEmailsList.js b/src/model/GetTransacEmailsList.js
index 1b93b423..04459096 100644
--- a/src/model/GetTransacEmailsList.js
+++ b/src/model/GetTransacEmailsList.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetTransacEmailsListTransactionalEmails'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetTransacEmailsList = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetTransacEmailsListTransactionalEmails);
+    root.PakatApiV3Sdk.GetTransacEmailsList = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails);
   }
 }(this, function(ApiClient, GetTransacEmailsListTransactionalEmails) {
   'use strict';
diff --git a/src/model/GetTransacEmailsListTransactionalEmails.js b/src/model/GetTransacEmailsListTransactionalEmails.js
index 5821be71..857cb94c 100644
--- a/src/model/GetTransacEmailsListTransactionalEmails.js
+++ b/src/model/GetTransacEmailsListTransactionalEmails.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetTransacEmailsListTransactionalEmails = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetTransacSmsReport.js b/src/model/GetTransacSmsReport.js
index 4f78c395..3acf67c3 100644
--- a/src/model/GetTransacSmsReport.js
+++ b/src/model/GetTransacSmsReport.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./GetTransacSmsReportReports'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetTransacSmsReport = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.GetTransacSmsReportReports);
+    root.PakatApiV3Sdk.GetTransacSmsReport = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.GetTransacSmsReportReports);
   }
 }(this, function(ApiClient, GetTransacSmsReportReports) {
   'use strict';
diff --git a/src/model/GetTransacSmsReportReports.js b/src/model/GetTransacSmsReportReports.js
index d2321c5b..269ffde1 100644
--- a/src/model/GetTransacSmsReportReports.js
+++ b/src/model/GetTransacSmsReportReports.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetTransacSmsReportReports = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetTransacSmsReportReports = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetWebhook.js b/src/model/GetWebhook.js
index fba47303..988be666 100644
--- a/src/model/GetWebhook.js
+++ b/src/model/GetWebhook.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetWebhook = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetWebhook = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/GetWebhooks.js b/src/model/GetWebhooks.js
index 66246c40..b5b23f16 100644
--- a/src/model/GetWebhooks.js
+++ b/src/model/GetWebhooks.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.GetWebhooks = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.GetWebhooks = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/ManageIp.js b/src/model/ManageIp.js
index 8fd81b5b..193209e5 100644
--- a/src/model/ManageIp.js
+++ b/src/model/ManageIp.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.ManageIp = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.ManageIp = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/PostContactInfo.js b/src/model/PostContactInfo.js
index 605f12c8..fadab0b9 100644
--- a/src/model/PostContactInfo.js
+++ b/src/model/PostContactInfo.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./PostContactInfoContacts'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.PostContactInfo = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.PostContactInfoContacts);
+    root.PakatApiV3Sdk.PostContactInfo = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.PostContactInfoContacts);
   }
 }(this, function(ApiClient, PostContactInfoContacts) {
   'use strict';
diff --git a/src/model/PostContactInfoContacts.js b/src/model/PostContactInfoContacts.js
index c4e9c09c..c2d76c0e 100644
--- a/src/model/PostContactInfoContacts.js
+++ b/src/model/PostContactInfoContacts.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.PostContactInfoContacts = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.PostContactInfoContacts = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/PostSendFailed.js b/src/model/PostSendFailed.js
index 5b945798..f6d719c4 100644
--- a/src/model/PostSendFailed.js
+++ b/src/model/PostSendFailed.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.PostSendFailed = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.PostSendFailed = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/PostSendSmsTestFailed.js b/src/model/PostSendSmsTestFailed.js
index 94524f3f..9e86c1a1 100644
--- a/src/model/PostSendSmsTestFailed.js
+++ b/src/model/PostSendSmsTestFailed.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.PostSendSmsTestFailed = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.PostSendSmsTestFailed = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/RemainingCreditModel.js b/src/model/RemainingCreditModel.js
index cc67b711..e29f0f5f 100644
--- a/src/model/RemainingCreditModel.js
+++ b/src/model/RemainingCreditModel.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./RemainingCreditModelChild'), require('./RemainingCreditModelReseller'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.RemainingCreditModel = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.RemainingCreditModelChild, root.SibApiV3Sdk.RemainingCreditModelReseller);
+    root.PakatApiV3Sdk.RemainingCreditModel = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.RemainingCreditModelChild, root.PakatApiV3Sdk.RemainingCreditModelReseller);
   }
 }(this, function(ApiClient, RemainingCreditModelChild, RemainingCreditModelReseller) {
   'use strict';
diff --git a/src/model/RemainingCreditModelChild.js b/src/model/RemainingCreditModelChild.js
index 6a6c7f10..ef5e1f85 100644
--- a/src/model/RemainingCreditModelChild.js
+++ b/src/model/RemainingCreditModelChild.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.RemainingCreditModelChild = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.RemainingCreditModelChild = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/RemainingCreditModelReseller.js b/src/model/RemainingCreditModelReseller.js
index 3004bcde..1cbc2da8 100644
--- a/src/model/RemainingCreditModelReseller.js
+++ b/src/model/RemainingCreditModelReseller.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.RemainingCreditModelReseller = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.RemainingCreditModelReseller = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/RemoveContactFromList.js b/src/model/RemoveContactFromList.js
index 72d387e0..54bb2002 100644
--- a/src/model/RemoveContactFromList.js
+++ b/src/model/RemoveContactFromList.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.RemoveContactFromList = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.RemoveContactFromList = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/RemoveCredits.js b/src/model/RemoveCredits.js
index 40a91737..e3e2a0bb 100644
--- a/src/model/RemoveCredits.js
+++ b/src/model/RemoveCredits.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.RemoveCredits = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.RemoveCredits = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/RequestContactExport.js b/src/model/RequestContactExport.js
index 267d6f83..2f1a4671 100644
--- a/src/model/RequestContactExport.js
+++ b/src/model/RequestContactExport.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./RequestContactExportCustomContactFilter'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.RequestContactExport = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.RequestContactExportCustomContactFilter);
+    root.PakatApiV3Sdk.RequestContactExport = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.RequestContactExportCustomContactFilter);
   }
 }(this, function(ApiClient, RequestContactExportCustomContactFilter) {
   'use strict';
diff --git a/src/model/RequestContactExportCustomContactFilter.js b/src/model/RequestContactExportCustomContactFilter.js
index 06e70695..b5e76475 100644
--- a/src/model/RequestContactExportCustomContactFilter.js
+++ b/src/model/RequestContactExportCustomContactFilter.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.RequestContactExportCustomContactFilter = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.RequestContactExportCustomContactFilter = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/RequestContactImport.js b/src/model/RequestContactImport.js
index c0e79fc6..2fd39da4 100644
--- a/src/model/RequestContactImport.js
+++ b/src/model/RequestContactImport.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./RequestContactImportNewList'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.RequestContactImport = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.RequestContactImportNewList);
+    root.PakatApiV3Sdk.RequestContactImport = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.RequestContactImportNewList);
   }
 }(this, function(ApiClient, RequestContactImportNewList) {
   'use strict';
diff --git a/src/model/RequestContactImportNewList.js b/src/model/RequestContactImportNewList.js
index 34d00362..496351c4 100644
--- a/src/model/RequestContactImportNewList.js
+++ b/src/model/RequestContactImportNewList.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.RequestContactImportNewList = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.RequestContactImportNewList = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/RequestSmsRecipientExport.js b/src/model/RequestSmsRecipientExport.js
index e0793f81..b7b71a9b 100644
--- a/src/model/RequestSmsRecipientExport.js
+++ b/src/model/RequestSmsRecipientExport.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.RequestSmsRecipientExport = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.RequestSmsRecipientExport = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendEmail.js b/src/model/SendEmail.js
index 96495804..561aca16 100644
--- a/src/model/SendEmail.js
+++ b/src/model/SendEmail.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./SendEmailAttachment'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendEmail = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.SendEmailAttachment);
+    root.PakatApiV3Sdk.SendEmail = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.SendEmailAttachment);
   }
 }(this, function(ApiClient, SendEmailAttachment) {
   'use strict';
diff --git a/src/model/SendEmailAttachment.js b/src/model/SendEmailAttachment.js
index 0253b44e..d7511eea 100644
--- a/src/model/SendEmailAttachment.js
+++ b/src/model/SendEmailAttachment.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendEmailAttachment = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendEmailAttachment = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendReport.js b/src/model/SendReport.js
index a65eea44..7f9549a4 100644
--- a/src/model/SendReport.js
+++ b/src/model/SendReport.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./SendReportEmail'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendReport = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.SendReportEmail);
+    root.PakatApiV3Sdk.SendReport = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.SendReportEmail);
   }
 }(this, function(ApiClient, SendReportEmail) {
   'use strict';
diff --git a/src/model/SendReportEmail.js b/src/model/SendReportEmail.js
index 720a012d..709e0ff5 100644
--- a/src/model/SendReportEmail.js
+++ b/src/model/SendReportEmail.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendReportEmail = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendReportEmail = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendSms.js b/src/model/SendSms.js
index abbd8125..3d1fa891 100644
--- a/src/model/SendSms.js
+++ b/src/model/SendSms.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendSms = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendSms = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendSmtpEmail.js b/src/model/SendSmtpEmail.js
index 050c49bc..e18f1dea 100644
--- a/src/model/SendSmtpEmail.js
+++ b/src/model/SendSmtpEmail.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./SendSmtpEmailAttachment'), require('./SendSmtpEmailBcc'), require('./SendSmtpEmailCc'), require('./SendSmtpEmailReplyTo'), require('./SendSmtpEmailSender'), require('./SendSmtpEmailTo'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendSmtpEmail = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.SendSmtpEmailAttachment, root.SibApiV3Sdk.SendSmtpEmailBcc, root.SibApiV3Sdk.SendSmtpEmailCc, root.SibApiV3Sdk.SendSmtpEmailReplyTo, root.SibApiV3Sdk.SendSmtpEmailSender, root.SibApiV3Sdk.SendSmtpEmailTo);
+    root.PakatApiV3Sdk.SendSmtpEmail = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.SendSmtpEmailAttachment, root.PakatApiV3Sdk.SendSmtpEmailBcc, root.PakatApiV3Sdk.SendSmtpEmailCc, root.PakatApiV3Sdk.SendSmtpEmailReplyTo, root.PakatApiV3Sdk.SendSmtpEmailSender, root.PakatApiV3Sdk.SendSmtpEmailTo);
   }
 }(this, function(ApiClient, SendSmtpEmailAttachment, SendSmtpEmailBcc, SendSmtpEmailCc, SendSmtpEmailReplyTo, SendSmtpEmailSender, SendSmtpEmailTo) {
   'use strict';
diff --git a/src/model/SendSmtpEmailAttachment.js b/src/model/SendSmtpEmailAttachment.js
index d3f35b92..6881d5ec 100644
--- a/src/model/SendSmtpEmailAttachment.js
+++ b/src/model/SendSmtpEmailAttachment.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendSmtpEmailAttachment = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendSmtpEmailAttachment = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendSmtpEmailBcc.js b/src/model/SendSmtpEmailBcc.js
index c71dbcc8..d572a226 100644
--- a/src/model/SendSmtpEmailBcc.js
+++ b/src/model/SendSmtpEmailBcc.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendSmtpEmailBcc = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendSmtpEmailBcc = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendSmtpEmailCc.js b/src/model/SendSmtpEmailCc.js
index c734f004..fb3526fa 100644
--- a/src/model/SendSmtpEmailCc.js
+++ b/src/model/SendSmtpEmailCc.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendSmtpEmailCc = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendSmtpEmailCc = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendSmtpEmailReplyTo.js b/src/model/SendSmtpEmailReplyTo.js
index a53ca7ea..fc909efa 100644
--- a/src/model/SendSmtpEmailReplyTo.js
+++ b/src/model/SendSmtpEmailReplyTo.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendSmtpEmailReplyTo = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendSmtpEmailReplyTo = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendSmtpEmailSender.js b/src/model/SendSmtpEmailSender.js
index 7bccc38b..e7efb978 100644
--- a/src/model/SendSmtpEmailSender.js
+++ b/src/model/SendSmtpEmailSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendSmtpEmailSender = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendSmtpEmailSender = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendSmtpEmailTo.js b/src/model/SendSmtpEmailTo.js
index f50c3483..7a66fe72 100644
--- a/src/model/SendSmtpEmailTo.js
+++ b/src/model/SendSmtpEmailTo.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendSmtpEmailTo = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendSmtpEmailTo = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendTemplateEmail.js b/src/model/SendTemplateEmail.js
index 8edc6e3c..354f452c 100644
--- a/src/model/SendTemplateEmail.js
+++ b/src/model/SendTemplateEmail.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendTemplateEmail = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendTemplateEmail = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendTestEmail.js b/src/model/SendTestEmail.js
index ecb1ce45..678d259b 100644
--- a/src/model/SendTestEmail.js
+++ b/src/model/SendTestEmail.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendTestEmail = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendTestEmail = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendTestSms.js b/src/model/SendTestSms.js
index 2ad4a4f9..f39ef44c 100644
--- a/src/model/SendTestSms.js
+++ b/src/model/SendTestSms.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendTestSms = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendTestSms = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/SendTransacSms.js b/src/model/SendTransacSms.js
index 15893283..bbcc40c5 100644
--- a/src/model/SendTransacSms.js
+++ b/src/model/SendTransacSms.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.SendTransacSms = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.SendTransacSms = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateAttribute.js b/src/model/UpdateAttribute.js
index de3de494..0deb1ec3 100644
--- a/src/model/UpdateAttribute.js
+++ b/src/model/UpdateAttribute.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./UpdateAttributeEnumeration'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateAttribute = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.UpdateAttributeEnumeration);
+    root.PakatApiV3Sdk.UpdateAttribute = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.UpdateAttributeEnumeration);
   }
 }(this, function(ApiClient, UpdateAttributeEnumeration) {
   'use strict';
diff --git a/src/model/UpdateAttributeEnumeration.js b/src/model/UpdateAttributeEnumeration.js
index dd172c06..8d615788 100644
--- a/src/model/UpdateAttributeEnumeration.js
+++ b/src/model/UpdateAttributeEnumeration.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateAttributeEnumeration = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateAttributeEnumeration = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateCampaignStatus.js b/src/model/UpdateCampaignStatus.js
index c190ae33..12c32bee 100644
--- a/src/model/UpdateCampaignStatus.js
+++ b/src/model/UpdateCampaignStatus.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateCampaignStatus = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateCampaignStatus = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateChild.js b/src/model/UpdateChild.js
index 1322a23c..c5f59a99 100644
--- a/src/model/UpdateChild.js
+++ b/src/model/UpdateChild.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateChild = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateChild = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateChildAccountStatus.js b/src/model/UpdateChildAccountStatus.js
index 06313b38..b4805a01 100644
--- a/src/model/UpdateChildAccountStatus.js
+++ b/src/model/UpdateChildAccountStatus.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateChildAccountStatus = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateChildAccountStatus = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateChildDomain.js b/src/model/UpdateChildDomain.js
index e560323b..4259ae70 100644
--- a/src/model/UpdateChildDomain.js
+++ b/src/model/UpdateChildDomain.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateChildDomain = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateChildDomain = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateContact.js b/src/model/UpdateContact.js
index cf343848..e5645734 100644
--- a/src/model/UpdateContact.js
+++ b/src/model/UpdateContact.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateContact = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateContact = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateEmailCampaign.js b/src/model/UpdateEmailCampaign.js
index 7bf36d42..a15af864 100644
--- a/src/model/UpdateEmailCampaign.js
+++ b/src/model/UpdateEmailCampaign.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./UpdateEmailCampaignRecipients'), require('./UpdateEmailCampaignSender'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateEmailCampaign = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.UpdateEmailCampaignRecipients, root.SibApiV3Sdk.UpdateEmailCampaignSender);
+    root.PakatApiV3Sdk.UpdateEmailCampaign = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.UpdateEmailCampaignRecipients, root.PakatApiV3Sdk.UpdateEmailCampaignSender);
   }
 }(this, function(ApiClient, UpdateEmailCampaignRecipients, UpdateEmailCampaignSender) {
   'use strict';
diff --git a/src/model/UpdateEmailCampaignRecipients.js b/src/model/UpdateEmailCampaignRecipients.js
index d0f295b1..8a755ea7 100644
--- a/src/model/UpdateEmailCampaignRecipients.js
+++ b/src/model/UpdateEmailCampaignRecipients.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateEmailCampaignRecipients = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateEmailCampaignRecipients = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateEmailCampaignSender.js b/src/model/UpdateEmailCampaignSender.js
index 9bc945fb..68b357fc 100644
--- a/src/model/UpdateEmailCampaignSender.js
+++ b/src/model/UpdateEmailCampaignSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateEmailCampaignSender = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateEmailCampaignSender = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateList.js b/src/model/UpdateList.js
index 6dd1f8cd..e061b119 100644
--- a/src/model/UpdateList.js
+++ b/src/model/UpdateList.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateList = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateList = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateSender.js b/src/model/UpdateSender.js
index fda39adf..a3373101 100644
--- a/src/model/UpdateSender.js
+++ b/src/model/UpdateSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./CreateSenderIps'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateSender = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateSenderIps);
+    root.PakatApiV3Sdk.UpdateSender = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateSenderIps);
   }
 }(this, function(ApiClient, CreateSenderIps) {
   'use strict';
diff --git a/src/model/UpdateSmsCampaign.js b/src/model/UpdateSmsCampaign.js
index b48eaaaf..4eaef912 100644
--- a/src/model/UpdateSmsCampaign.js
+++ b/src/model/UpdateSmsCampaign.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./CreateSmsCampaignRecipients'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateSmsCampaign = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.CreateSmsCampaignRecipients);
+    root.PakatApiV3Sdk.UpdateSmsCampaign = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.CreateSmsCampaignRecipients);
   }
 }(this, function(ApiClient, CreateSmsCampaignRecipients) {
   'use strict';
diff --git a/src/model/UpdateSmtpTemplate.js b/src/model/UpdateSmtpTemplate.js
index 4eed2af5..9438b4d3 100644
--- a/src/model/UpdateSmtpTemplate.js
+++ b/src/model/UpdateSmtpTemplate.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'), require('./UpdateSmtpTemplateSender'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateSmtpTemplate = factory(root.SibApiV3Sdk.ApiClient, root.SibApiV3Sdk.UpdateSmtpTemplateSender);
+    root.PakatApiV3Sdk.UpdateSmtpTemplate = factory(root.PakatApiV3Sdk.ApiClient, root.PakatApiV3Sdk.UpdateSmtpTemplateSender);
   }
 }(this, function(ApiClient, UpdateSmtpTemplateSender) {
   'use strict';
diff --git a/src/model/UpdateSmtpTemplateSender.js b/src/model/UpdateSmtpTemplateSender.js
index 3a65ae99..886a6b97 100644
--- a/src/model/UpdateSmtpTemplateSender.js
+++ b/src/model/UpdateSmtpTemplateSender.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateSmtpTemplateSender = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateSmtpTemplateSender = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UpdateWebhook.js b/src/model/UpdateWebhook.js
index ab81d4d8..643ba66a 100644
--- a/src/model/UpdateWebhook.js
+++ b/src/model/UpdateWebhook.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UpdateWebhook = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UpdateWebhook = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/src/model/UploadImageToGallery.js b/src/model/UploadImageToGallery.js
index 364b56f1..59fea003 100644
--- a/src/model/UploadImageToGallery.js
+++ b/src/model/UploadImageToGallery.js
@@ -23,10 +23,10 @@
     module.exports = factory(require('../ApiClient'));
   } else {
     // Browser globals (root is window)
-    if (!root.SibApiV3Sdk) {
-      root.SibApiV3Sdk = {};
+    if (!root.PakatApiV3Sdk) {
+      root.PakatApiV3Sdk = {};
     }
-    root.SibApiV3Sdk.UploadImageToGallery = factory(root.SibApiV3Sdk.ApiClient);
+    root.PakatApiV3Sdk.UploadImageToGallery = factory(root.PakatApiV3Sdk.ApiClient);
   }
 }(this, function(ApiClient) {
   'use strict';
diff --git a/test/api/AccountApi.spec.js b/test/api/AccountApi.spec.js
index 33e2df69..5e017704 100644
--- a/test/api/AccountApi.spec.js
+++ b/test/api/AccountApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AccountApi();
+    instance = new PakatApiV3Sdk.AccountApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/AttributesApi.spec.js b/test/api/AttributesApi.spec.js
index 216597b9..7c751c7d 100644
--- a/test/api/AttributesApi.spec.js
+++ b/test/api/AttributesApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AttributesApi();
+    instance = new PakatApiV3Sdk.AttributesApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/ContactsApi.spec.js b/test/api/ContactsApi.spec.js
index 9b6c9ed9..bed32c1c 100644
--- a/test/api/ContactsApi.spec.js
+++ b/test/api/ContactsApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.ContactsApi();
+    instance = new PakatApiV3Sdk.ContactsApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/EmailCampaignsApi.spec.js b/test/api/EmailCampaignsApi.spec.js
index fabb83ad..8b4269e5 100644
--- a/test/api/EmailCampaignsApi.spec.js
+++ b/test/api/EmailCampaignsApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.EmailCampaignsApi();
+    instance = new PakatApiV3Sdk.EmailCampaignsApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/FoldersApi.spec.js b/test/api/FoldersApi.spec.js
index f1ebcdcb..72704999 100644
--- a/test/api/FoldersApi.spec.js
+++ b/test/api/FoldersApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.FoldersApi();
+    instance = new PakatApiV3Sdk.FoldersApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/ListsApi.spec.js b/test/api/ListsApi.spec.js
index 7356aefc..053f352e 100644
--- a/test/api/ListsApi.spec.js
+++ b/test/api/ListsApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.ListsApi();
+    instance = new PakatApiV3Sdk.ListsApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/ProcessApi.spec.js b/test/api/ProcessApi.spec.js
index 52a5bbe0..7db15e22 100644
--- a/test/api/ProcessApi.spec.js
+++ b/test/api/ProcessApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.ProcessApi();
+    instance = new PakatApiV3Sdk.ProcessApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/ResellerApi.spec.js b/test/api/ResellerApi.spec.js
index 1f9a044a..ebb7317c 100644
--- a/test/api/ResellerApi.spec.js
+++ b/test/api/ResellerApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.ResellerApi();
+    instance = new PakatApiV3Sdk.ResellerApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/SMSCampaignsApi.spec.js b/test/api/SMSCampaignsApi.spec.js
index fe05fbcf..82a624e5 100644
--- a/test/api/SMSCampaignsApi.spec.js
+++ b/test/api/SMSCampaignsApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SMSCampaignsApi();
+    instance = new PakatApiV3Sdk.SMSCampaignsApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/SendersApi.spec.js b/test/api/SendersApi.spec.js
index 9d5b2369..14c374fe 100644
--- a/test/api/SendersApi.spec.js
+++ b/test/api/SendersApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendersApi();
+    instance = new PakatApiV3Sdk.SendersApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/TransactionalEmailsApi.spec.js b/test/api/TransactionalEmailsApi.spec.js
index bfe843ff..f5cc2503 100644
--- a/test/api/TransactionalEmailsApi.spec.js
+++ b/test/api/TransactionalEmailsApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.TransactionalEmailsApi();
+    instance = new PakatApiV3Sdk.TransactionalEmailsApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/TransactionalSMSApi.spec.js b/test/api/TransactionalSMSApi.spec.js
index b6fe33c0..8a094bd2 100644
--- a/test/api/TransactionalSMSApi.spec.js
+++ b/test/api/TransactionalSMSApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.TransactionalSMSApi();
+    instance = new PakatApiV3Sdk.TransactionalSMSApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/api/WebhooksApi.spec.js b/test/api/WebhooksApi.spec.js
index 14a219f6..585b059d 100644
--- a/test/api/WebhooksApi.spec.js
+++ b/test/api/WebhooksApi.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.WebhooksApi();
+    instance = new PakatApiV3Sdk.WebhooksApi();
   });
 
   var getProperty = function(object, getter, property) {
diff --git a/test/model/AbTestCampaignResult.spec.js b/test/model/AbTestCampaignResult.spec.js
index 922681ed..fb1aac15 100644
--- a/test/model/AbTestCampaignResult.spec.js
+++ b/test/model/AbTestCampaignResult.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AbTestCampaignResult();
+    instance = new PakatApiV3Sdk.AbTestCampaignResult();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,55 +53,55 @@
   describe('AbTestCampaignResult', function() {
     it('should create an instance of AbTestCampaignResult', function() {
       // uncomment below and update the code to test AbTestCampaignResult
-      //var instane = new SibApiV3Sdk.AbTestCampaignResult();
-      //expect(instance).to.be.a(SibApiV3Sdk.AbTestCampaignResult);
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResult();
+      //expect(instance).to.be.a(PakatApiV3Sdk.AbTestCampaignResult);
     });
 
     it('should have the property winningVersion (base name: "winningVersion")', function() {
       // uncomment below and update the code to test the property winningVersion
-      //var instane = new SibApiV3Sdk.AbTestCampaignResult();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResult();
       //expect(instance).to.be();
     });
 
     it('should have the property winningCriteria (base name: "winningCriteria")', function() {
       // uncomment below and update the code to test the property winningCriteria
-      //var instane = new SibApiV3Sdk.AbTestCampaignResult();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResult();
       //expect(instance).to.be();
     });
 
     it('should have the property winningSubjectLine (base name: "winningSubjectLine")', function() {
       // uncomment below and update the code to test the property winningSubjectLine
-      //var instane = new SibApiV3Sdk.AbTestCampaignResult();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResult();
       //expect(instance).to.be();
     });
 
     it('should have the property openRate (base name: "openRate")', function() {
       // uncomment below and update the code to test the property openRate
-      //var instane = new SibApiV3Sdk.AbTestCampaignResult();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResult();
       //expect(instance).to.be();
     });
 
     it('should have the property clickRate (base name: "clickRate")', function() {
       // uncomment below and update the code to test the property clickRate
-      //var instane = new SibApiV3Sdk.AbTestCampaignResult();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResult();
       //expect(instance).to.be();
     });
 
     it('should have the property winningVersionRate (base name: "winningVersionRate")', function() {
       // uncomment below and update the code to test the property winningVersionRate
-      //var instane = new SibApiV3Sdk.AbTestCampaignResult();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResult();
       //expect(instance).to.be();
     });
 
     it('should have the property statistics (base name: "statistics")', function() {
       // uncomment below and update the code to test the property statistics
-      //var instane = new SibApiV3Sdk.AbTestCampaignResult();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResult();
       //expect(instance).to.be();
     });
 
     it('should have the property clickedLinks (base name: "clickedLinks")', function() {
       // uncomment below and update the code to test the property clickedLinks
-      //var instane = new SibApiV3Sdk.AbTestCampaignResult();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResult();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/AbTestCampaignResultClickedLinks.spec.js b/test/model/AbTestCampaignResultClickedLinks.spec.js
index a358e2c2..4f066526 100644
--- a/test/model/AbTestCampaignResultClickedLinks.spec.js
+++ b/test/model/AbTestCampaignResultClickedLinks.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AbTestCampaignResultClickedLinks();
+    instance = new PakatApiV3Sdk.AbTestCampaignResultClickedLinks();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('AbTestCampaignResultClickedLinks', function() {
     it('should create an instance of AbTestCampaignResultClickedLinks', function() {
       // uncomment below and update the code to test AbTestCampaignResultClickedLinks
-      //var instane = new SibApiV3Sdk.AbTestCampaignResultClickedLinks();
-      //expect(instance).to.be.a(SibApiV3Sdk.AbTestCampaignResultClickedLinks);
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResultClickedLinks();
+      //expect(instance).to.be.a(PakatApiV3Sdk.AbTestCampaignResultClickedLinks);
     });
 
     it('should have the property versionA (base name: "Version A")', function() {
       // uncomment below and update the code to test the property versionA
-      //var instane = new SibApiV3Sdk.AbTestCampaignResultClickedLinks();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResultClickedLinks();
       //expect(instance).to.be();
     });
 
     it('should have the property versionB (base name: "Version B")', function() {
       // uncomment below and update the code to test the property versionB
-      //var instane = new SibApiV3Sdk.AbTestCampaignResultClickedLinks();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResultClickedLinks();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/AbTestCampaignResultStatistics.spec.js b/test/model/AbTestCampaignResultStatistics.spec.js
index d5cba762..9f8bf974 100644
--- a/test/model/AbTestCampaignResultStatistics.spec.js
+++ b/test/model/AbTestCampaignResultStatistics.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AbTestCampaignResultStatistics();
+    instance = new PakatApiV3Sdk.AbTestCampaignResultStatistics();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,43 +53,43 @@
   describe('AbTestCampaignResultStatistics', function() {
     it('should create an instance of AbTestCampaignResultStatistics', function() {
       // uncomment below and update the code to test AbTestCampaignResultStatistics
-      //var instane = new SibApiV3Sdk.AbTestCampaignResultStatistics();
-      //expect(instance).to.be.a(SibApiV3Sdk.AbTestCampaignResultStatistics);
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResultStatistics();
+      //expect(instance).to.be.a(PakatApiV3Sdk.AbTestCampaignResultStatistics);
     });
 
     it('should have the property openers (base name: "openers")', function() {
       // uncomment below and update the code to test the property openers
-      //var instane = new SibApiV3Sdk.AbTestCampaignResultStatistics();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResultStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property clicks (base name: "clicks")', function() {
       // uncomment below and update the code to test the property clicks
-      //var instane = new SibApiV3Sdk.AbTestCampaignResultStatistics();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResultStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property unsubscribed (base name: "unsubscribed")', function() {
       // uncomment below and update the code to test the property unsubscribed
-      //var instane = new SibApiV3Sdk.AbTestCampaignResultStatistics();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResultStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property hardBounces (base name: "hardBounces")', function() {
       // uncomment below and update the code to test the property hardBounces
-      //var instane = new SibApiV3Sdk.AbTestCampaignResultStatistics();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResultStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property softBounces (base name: "softBounces")', function() {
       // uncomment below and update the code to test the property softBounces
-      //var instane = new SibApiV3Sdk.AbTestCampaignResultStatistics();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResultStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property complaints (base name: "complaints")', function() {
       // uncomment below and update the code to test the property complaints
-      //var instane = new SibApiV3Sdk.AbTestCampaignResultStatistics();
+      //var instane = new PakatApiV3Sdk.AbTestCampaignResultStatistics();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/AbTestVersionClicks.spec.js b/test/model/AbTestVersionClicks.spec.js
index 0ec03ad5..5098da5a 100644
--- a/test/model/AbTestVersionClicks.spec.js
+++ b/test/model/AbTestVersionClicks.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AbTestVersionClicks();
+    instance = new PakatApiV3Sdk.AbTestVersionClicks();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,8 +53,8 @@
   describe('AbTestVersionClicks', function() {
     it('should create an instance of AbTestVersionClicks', function() {
       // uncomment below and update the code to test AbTestVersionClicks
-      //var instane = new SibApiV3Sdk.AbTestVersionClicks();
-      //expect(instance).to.be.a(SibApiV3Sdk.AbTestVersionClicks);
+      //var instane = new PakatApiV3Sdk.AbTestVersionClicks();
+      //expect(instance).to.be.a(PakatApiV3Sdk.AbTestVersionClicks);
     });
 
   });
diff --git a/test/model/AbTestVersionClicksInner.spec.js b/test/model/AbTestVersionClicksInner.spec.js
index 2cad8ea6..b235c512 100644
--- a/test/model/AbTestVersionClicksInner.spec.js
+++ b/test/model/AbTestVersionClicksInner.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AbTestVersionClicksInner();
+    instance = new PakatApiV3Sdk.AbTestVersionClicksInner();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('AbTestVersionClicksInner', function() {
     it('should create an instance of AbTestVersionClicksInner', function() {
       // uncomment below and update the code to test AbTestVersionClicksInner
-      //var instane = new SibApiV3Sdk.AbTestVersionClicksInner();
-      //expect(instance).to.be.a(SibApiV3Sdk.AbTestVersionClicksInner);
+      //var instane = new PakatApiV3Sdk.AbTestVersionClicksInner();
+      //expect(instance).to.be.a(PakatApiV3Sdk.AbTestVersionClicksInner);
     });
 
     it('should have the property link (base name: "link")', function() {
       // uncomment below and update the code to test the property link
-      //var instane = new SibApiV3Sdk.AbTestVersionClicksInner();
+      //var instane = new PakatApiV3Sdk.AbTestVersionClicksInner();
       //expect(instance).to.be();
     });
 
     it('should have the property clicksCount (base name: "clicksCount")', function() {
       // uncomment below and update the code to test the property clicksCount
-      //var instane = new SibApiV3Sdk.AbTestVersionClicksInner();
+      //var instane = new PakatApiV3Sdk.AbTestVersionClicksInner();
       //expect(instance).to.be();
     });
 
     it('should have the property clickRate (base name: "clickRate")', function() {
       // uncomment below and update the code to test the property clickRate
-      //var instane = new SibApiV3Sdk.AbTestVersionClicksInner();
+      //var instane = new PakatApiV3Sdk.AbTestVersionClicksInner();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/AbTestVersionStats.spec.js b/test/model/AbTestVersionStats.spec.js
index 6395c934..0d75e903 100644
--- a/test/model/AbTestVersionStats.spec.js
+++ b/test/model/AbTestVersionStats.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AbTestVersionStats();
+    instance = new PakatApiV3Sdk.AbTestVersionStats();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('AbTestVersionStats', function() {
     it('should create an instance of AbTestVersionStats', function() {
       // uncomment below and update the code to test AbTestVersionStats
-      //var instane = new SibApiV3Sdk.AbTestVersionStats();
-      //expect(instance).to.be.a(SibApiV3Sdk.AbTestVersionStats);
+      //var instane = new PakatApiV3Sdk.AbTestVersionStats();
+      //expect(instance).to.be.a(PakatApiV3Sdk.AbTestVersionStats);
     });
 
     it('should have the property versionA (base name: "Version A")', function() {
       // uncomment below and update the code to test the property versionA
-      //var instane = new SibApiV3Sdk.AbTestVersionStats();
+      //var instane = new PakatApiV3Sdk.AbTestVersionStats();
       //expect(instance).to.be();
     });
 
     it('should have the property versionB (base name: "Version B")', function() {
       // uncomment below and update the code to test the property versionB
-      //var instane = new SibApiV3Sdk.AbTestVersionStats();
+      //var instane = new PakatApiV3Sdk.AbTestVersionStats();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/AddChildDomain.spec.js b/test/model/AddChildDomain.spec.js
index 2c47a588..1a3c2a6a 100644
--- a/test/model/AddChildDomain.spec.js
+++ b/test/model/AddChildDomain.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AddChildDomain();
+    instance = new PakatApiV3Sdk.AddChildDomain();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('AddChildDomain', function() {
     it('should create an instance of AddChildDomain', function() {
       // uncomment below and update the code to test AddChildDomain
-      //var instane = new SibApiV3Sdk.AddChildDomain();
-      //expect(instance).to.be.a(SibApiV3Sdk.AddChildDomain);
+      //var instane = new PakatApiV3Sdk.AddChildDomain();
+      //expect(instance).to.be.a(PakatApiV3Sdk.AddChildDomain);
     });
 
     it('should have the property domain (base name: "domain")', function() {
       // uncomment below and update the code to test the property domain
-      //var instane = new SibApiV3Sdk.AddChildDomain();
+      //var instane = new PakatApiV3Sdk.AddChildDomain();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/AddContactToList.spec.js b/test/model/AddContactToList.spec.js
index 04585771..10bfcc99 100644
--- a/test/model/AddContactToList.spec.js
+++ b/test/model/AddContactToList.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AddContactToList();
+    instance = new PakatApiV3Sdk.AddContactToList();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('AddContactToList', function() {
     it('should create an instance of AddContactToList', function() {
       // uncomment below and update the code to test AddContactToList
-      //var instane = new SibApiV3Sdk.AddContactToList();
-      //expect(instance).to.be.a(SibApiV3Sdk.AddContactToList);
+      //var instane = new PakatApiV3Sdk.AddContactToList();
+      //expect(instance).to.be.a(PakatApiV3Sdk.AddContactToList);
     });
 
     it('should have the property emails (base name: "emails")', function() {
       // uncomment below and update the code to test the property emails
-      //var instane = new SibApiV3Sdk.AddContactToList();
+      //var instane = new PakatApiV3Sdk.AddContactToList();
       //expect(instance).to.be();
     });
 
     it('should have the property ids (base name: "ids")', function() {
       // uncomment below and update the code to test the property ids
-      //var instane = new SibApiV3Sdk.AddContactToList();
+      //var instane = new PakatApiV3Sdk.AddContactToList();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/AddCredits.spec.js b/test/model/AddCredits.spec.js
index 1e16dde1..3a54e3b3 100644
--- a/test/model/AddCredits.spec.js
+++ b/test/model/AddCredits.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.AddCredits();
+    instance = new PakatApiV3Sdk.AddCredits();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('AddCredits', function() {
     it('should create an instance of AddCredits', function() {
       // uncomment below and update the code to test AddCredits
-      //var instane = new SibApiV3Sdk.AddCredits();
-      //expect(instance).to.be.a(SibApiV3Sdk.AddCredits);
+      //var instane = new PakatApiV3Sdk.AddCredits();
+      //expect(instance).to.be.a(PakatApiV3Sdk.AddCredits);
     });
 
     it('should have the property sms (base name: "sms")', function() {
       // uncomment below and update the code to test the property sms
-      //var instane = new SibApiV3Sdk.AddCredits();
+      //var instane = new PakatApiV3Sdk.AddCredits();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.AddCredits();
+      //var instane = new PakatApiV3Sdk.AddCredits();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateAttribute.spec.js b/test/model/CreateAttribute.spec.js
index 949806a5..5ac123e9 100644
--- a/test/model/CreateAttribute.spec.js
+++ b/test/model/CreateAttribute.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateAttribute();
+    instance = new PakatApiV3Sdk.CreateAttribute();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('CreateAttribute', function() {
     it('should create an instance of CreateAttribute', function() {
       // uncomment below and update the code to test CreateAttribute
-      //var instane = new SibApiV3Sdk.CreateAttribute();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateAttribute);
+      //var instane = new PakatApiV3Sdk.CreateAttribute();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateAttribute);
     });
 
     it('should have the property value (base name: "value")', function() {
       // uncomment below and update the code to test the property value
-      //var instane = new SibApiV3Sdk.CreateAttribute();
+      //var instane = new PakatApiV3Sdk.CreateAttribute();
       //expect(instance).to.be();
     });
 
     it('should have the property enumeration (base name: "enumeration")', function() {
       // uncomment below and update the code to test the property enumeration
-      //var instane = new SibApiV3Sdk.CreateAttribute();
+      //var instane = new PakatApiV3Sdk.CreateAttribute();
       //expect(instance).to.be();
     });
 
     it('should have the property type (base name: "type")', function() {
       // uncomment below and update the code to test the property type
-      //var instane = new SibApiV3Sdk.CreateAttribute();
+      //var instane = new PakatApiV3Sdk.CreateAttribute();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateAttributeEnumeration.spec.js b/test/model/CreateAttributeEnumeration.spec.js
index 61f89f78..9070d5bc 100644
--- a/test/model/CreateAttributeEnumeration.spec.js
+++ b/test/model/CreateAttributeEnumeration.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateAttributeEnumeration();
+    instance = new PakatApiV3Sdk.CreateAttributeEnumeration();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('CreateAttributeEnumeration', function() {
     it('should create an instance of CreateAttributeEnumeration', function() {
       // uncomment below and update the code to test CreateAttributeEnumeration
-      //var instane = new SibApiV3Sdk.CreateAttributeEnumeration();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateAttributeEnumeration);
+      //var instane = new PakatApiV3Sdk.CreateAttributeEnumeration();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateAttributeEnumeration);
     });
 
     it('should have the property value (base name: "value")', function() {
       // uncomment below and update the code to test the property value
-      //var instane = new SibApiV3Sdk.CreateAttributeEnumeration();
+      //var instane = new PakatApiV3Sdk.CreateAttributeEnumeration();
       //expect(instance).to.be();
     });
 
     it('should have the property label (base name: "label")', function() {
       // uncomment below and update the code to test the property label
-      //var instane = new SibApiV3Sdk.CreateAttributeEnumeration();
+      //var instane = new PakatApiV3Sdk.CreateAttributeEnumeration();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateChild.spec.js b/test/model/CreateChild.spec.js
index 20a1fb8c..7c665b29 100644
--- a/test/model/CreateChild.spec.js
+++ b/test/model/CreateChild.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateChild();
+    instance = new PakatApiV3Sdk.CreateChild();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,43 +53,43 @@
   describe('CreateChild', function() {
     it('should create an instance of CreateChild', function() {
       // uncomment below and update the code to test CreateChild
-      //var instane = new SibApiV3Sdk.CreateChild();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateChild);
+      //var instane = new PakatApiV3Sdk.CreateChild();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateChild);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.CreateChild();
+      //var instane = new PakatApiV3Sdk.CreateChild();
       //expect(instance).to.be();
     });
 
     it('should have the property firstName (base name: "firstName")', function() {
       // uncomment below and update the code to test the property firstName
-      //var instane = new SibApiV3Sdk.CreateChild();
+      //var instane = new PakatApiV3Sdk.CreateChild();
       //expect(instance).to.be();
     });
 
     it('should have the property lastName (base name: "lastName")', function() {
       // uncomment below and update the code to test the property lastName
-      //var instane = new SibApiV3Sdk.CreateChild();
+      //var instane = new PakatApiV3Sdk.CreateChild();
       //expect(instance).to.be();
     });
 
     it('should have the property companyName (base name: "companyName")', function() {
       // uncomment below and update the code to test the property companyName
-      //var instane = new SibApiV3Sdk.CreateChild();
+      //var instane = new PakatApiV3Sdk.CreateChild();
       //expect(instance).to.be();
     });
 
     it('should have the property password (base name: "password")', function() {
       // uncomment below and update the code to test the property password
-      //var instane = new SibApiV3Sdk.CreateChild();
+      //var instane = new PakatApiV3Sdk.CreateChild();
       //expect(instance).to.be();
     });
 
     it('should have the property language (base name: "language")', function() {
       // uncomment below and update the code to test the property language
-      //var instane = new SibApiV3Sdk.CreateChild();
+      //var instane = new PakatApiV3Sdk.CreateChild();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateContact.spec.js b/test/model/CreateContact.spec.js
index 2497d901..c1ea1db7 100644
--- a/test/model/CreateContact.spec.js
+++ b/test/model/CreateContact.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateContact();
+    instance = new PakatApiV3Sdk.CreateContact();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,49 +53,49 @@
   describe('CreateContact', function() {
     it('should create an instance of CreateContact', function() {
       // uncomment below and update the code to test CreateContact
-      //var instane = new SibApiV3Sdk.CreateContact();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateContact);
+      //var instane = new PakatApiV3Sdk.CreateContact();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateContact);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.CreateContact();
+      //var instane = new PakatApiV3Sdk.CreateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property attributes (base name: "attributes")', function() {
       // uncomment below and update the code to test the property attributes
-      //var instane = new SibApiV3Sdk.CreateContact();
+      //var instane = new PakatApiV3Sdk.CreateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property emailBlacklisted (base name: "emailBlacklisted")', function() {
       // uncomment below and update the code to test the property emailBlacklisted
-      //var instane = new SibApiV3Sdk.CreateContact();
+      //var instane = new PakatApiV3Sdk.CreateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property smsBlacklisted (base name: "smsBlacklisted")', function() {
       // uncomment below and update the code to test the property smsBlacklisted
-      //var instane = new SibApiV3Sdk.CreateContact();
+      //var instane = new PakatApiV3Sdk.CreateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property listIds (base name: "listIds")', function() {
       // uncomment below and update the code to test the property listIds
-      //var instane = new SibApiV3Sdk.CreateContact();
+      //var instane = new PakatApiV3Sdk.CreateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property updateEnabled (base name: "updateEnabled")', function() {
       // uncomment below and update the code to test the property updateEnabled
-      //var instane = new SibApiV3Sdk.CreateContact();
+      //var instane = new PakatApiV3Sdk.CreateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property smtpBlacklistSender (base name: "smtpBlacklistSender")', function() {
       // uncomment below and update the code to test the property smtpBlacklistSender
-      //var instane = new SibApiV3Sdk.CreateContact();
+      //var instane = new PakatApiV3Sdk.CreateContact();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateDoiContact.spec.js b/test/model/CreateDoiContact.spec.js
index 2be9d197..e6f69f52 100644
--- a/test/model/CreateDoiContact.spec.js
+++ b/test/model/CreateDoiContact.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateDoiContact();
+    instance = new PakatApiV3Sdk.CreateDoiContact();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,43 +53,43 @@
   describe('CreateDoiContact', function() {
     it('should create an instance of CreateDoiContact', function() {
       // uncomment below and update the code to test CreateDoiContact
-      //var instane = new SibApiV3Sdk.CreateDoiContact();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateDoiContact);
+      //var instane = new PakatApiV3Sdk.CreateDoiContact();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateDoiContact);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.CreateDoiContact();
+      //var instane = new PakatApiV3Sdk.CreateDoiContact();
       //expect(instance).to.be();
     });
 
     it('should have the property attributes (base name: "attributes")', function() {
       // uncomment below and update the code to test the property attributes
-      //var instane = new SibApiV3Sdk.CreateDoiContact();
+      //var instane = new PakatApiV3Sdk.CreateDoiContact();
       //expect(instance).to.be();
     });
 
     it('should have the property includeListIds (base name: "includeListIds")', function() {
       // uncomment below and update the code to test the property includeListIds
-      //var instane = new SibApiV3Sdk.CreateDoiContact();
+      //var instane = new PakatApiV3Sdk.CreateDoiContact();
       //expect(instance).to.be();
     });
 
     it('should have the property excludeListIds (base name: "excludeListIds")', function() {
       // uncomment below and update the code to test the property excludeListIds
-      //var instane = new SibApiV3Sdk.CreateDoiContact();
+      //var instane = new PakatApiV3Sdk.CreateDoiContact();
       //expect(instance).to.be();
     });
 
     it('should have the property templateId (base name: "templateId")', function() {
       // uncomment below and update the code to test the property templateId
-      //var instane = new SibApiV3Sdk.CreateDoiContact();
+      //var instane = new PakatApiV3Sdk.CreateDoiContact();
       //expect(instance).to.be();
     });
 
     it('should have the property redirectionUrl (base name: "redirectionUrl")', function() {
       // uncomment below and update the code to test the property redirectionUrl
-      //var instane = new SibApiV3Sdk.CreateDoiContact();
+      //var instane = new PakatApiV3Sdk.CreateDoiContact();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateEmailCampaign.spec.js b/test/model/CreateEmailCampaign.spec.js
index b8d474ba..1ed2613c 100644
--- a/test/model/CreateEmailCampaign.spec.js
+++ b/test/model/CreateEmailCampaign.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateEmailCampaign();
+    instance = new PakatApiV3Sdk.CreateEmailCampaign();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,175 +53,175 @@
   describe('CreateEmailCampaign', function() {
     it('should create an instance of CreateEmailCampaign', function() {
       // uncomment below and update the code to test CreateEmailCampaign
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateEmailCampaign);
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateEmailCampaign);
     });
 
     it('should have the property tag (base name: "tag")', function() {
       // uncomment below and update the code to test the property tag
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlContent (base name: "htmlContent")', function() {
       // uncomment below and update the code to test the property htmlContent
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlUrl (base name: "htmlUrl")', function() {
       // uncomment below and update the code to test the property htmlUrl
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property templateId (base name: "templateId")', function() {
       // uncomment below and update the code to test the property templateId
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property scheduledAt (base name: "scheduledAt")', function() {
       // uncomment below and update the code to test the property scheduledAt
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property replyTo (base name: "replyTo")', function() {
       // uncomment below and update the code to test the property replyTo
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property toField (base name: "toField")', function() {
       // uncomment below and update the code to test the property toField
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property recipients (base name: "recipients")', function() {
       // uncomment below and update the code to test the property recipients
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property attachmentUrl (base name: "attachmentUrl")', function() {
       // uncomment below and update the code to test the property attachmentUrl
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property inlineImageActivation (base name: "inlineImageActivation")', function() {
       // uncomment below and update the code to test the property inlineImageActivation
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property mirrorActive (base name: "mirrorActive")', function() {
       // uncomment below and update the code to test the property mirrorActive
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property footer (base name: "footer")', function() {
       // uncomment below and update the code to test the property footer
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property header (base name: "header")', function() {
       // uncomment below and update the code to test the property header
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property utmCampaign (base name: "utmCampaign")', function() {
       // uncomment below and update the code to test the property utmCampaign
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property params (base name: "params")', function() {
       // uncomment below and update the code to test the property params
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property sendAtBestTime (base name: "sendAtBestTime")', function() {
       // uncomment below and update the code to test the property sendAtBestTime
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property abTesting (base name: "abTesting")', function() {
       // uncomment below and update the code to test the property abTesting
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property subjectA (base name: "subjectA")', function() {
       // uncomment below and update the code to test the property subjectA
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property subjectB (base name: "subjectB")', function() {
       // uncomment below and update the code to test the property subjectB
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property splitRule (base name: "splitRule")', function() {
       // uncomment below and update the code to test the property splitRule
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property winnerCriteria (base name: "winnerCriteria")', function() {
       // uncomment below and update the code to test the property winnerCriteria
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property winnerDelay (base name: "winnerDelay")', function() {
       // uncomment below and update the code to test the property winnerDelay
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property ipWarmupEnable (base name: "ipWarmupEnable")', function() {
       // uncomment below and update the code to test the property ipWarmupEnable
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property initialQuota (base name: "initialQuota")', function() {
       // uncomment below and update the code to test the property initialQuota
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property increaseRate (base name: "increaseRate")', function() {
       // uncomment below and update the code to test the property increaseRate
-      //var instane = new SibApiV3Sdk.CreateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaign();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateEmailCampaignRecipients.spec.js b/test/model/CreateEmailCampaignRecipients.spec.js
index 14191594..43cd441c 100644
--- a/test/model/CreateEmailCampaignRecipients.spec.js
+++ b/test/model/CreateEmailCampaignRecipients.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateEmailCampaignRecipients();
+    instance = new PakatApiV3Sdk.CreateEmailCampaignRecipients();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('CreateEmailCampaignRecipients', function() {
     it('should create an instance of CreateEmailCampaignRecipients', function() {
       // uncomment below and update the code to test CreateEmailCampaignRecipients
-      //var instane = new SibApiV3Sdk.CreateEmailCampaignRecipients();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateEmailCampaignRecipients);
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaignRecipients();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateEmailCampaignRecipients);
     });
 
     it('should have the property exclusionListIds (base name: "exclusionListIds")', function() {
       // uncomment below and update the code to test the property exclusionListIds
-      //var instane = new SibApiV3Sdk.CreateEmailCampaignRecipients();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaignRecipients();
       //expect(instance).to.be();
     });
 
     it('should have the property listIds (base name: "listIds")', function() {
       // uncomment below and update the code to test the property listIds
-      //var instane = new SibApiV3Sdk.CreateEmailCampaignRecipients();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaignRecipients();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateEmailCampaignSender.spec.js b/test/model/CreateEmailCampaignSender.spec.js
index cb5c56d3..da5446de 100644
--- a/test/model/CreateEmailCampaignSender.spec.js
+++ b/test/model/CreateEmailCampaignSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateEmailCampaignSender();
+    instance = new PakatApiV3Sdk.CreateEmailCampaignSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('CreateEmailCampaignSender', function() {
     it('should create an instance of CreateEmailCampaignSender', function() {
       // uncomment below and update the code to test CreateEmailCampaignSender
-      //var instane = new SibApiV3Sdk.CreateEmailCampaignSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateEmailCampaignSender);
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaignSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateEmailCampaignSender);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.CreateEmailCampaignSender();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaignSender();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.CreateEmailCampaignSender();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaignSender();
       //expect(instance).to.be();
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.CreateEmailCampaignSender();
+      //var instane = new PakatApiV3Sdk.CreateEmailCampaignSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateList.spec.js b/test/model/CreateList.spec.js
index 3aa79ebd..0965853f 100644
--- a/test/model/CreateList.spec.js
+++ b/test/model/CreateList.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateList();
+    instance = new PakatApiV3Sdk.CreateList();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('CreateList', function() {
     it('should create an instance of CreateList', function() {
       // uncomment below and update the code to test CreateList
-      //var instane = new SibApiV3Sdk.CreateList();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateList);
+      //var instane = new PakatApiV3Sdk.CreateList();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateList);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.CreateList();
+      //var instane = new PakatApiV3Sdk.CreateList();
       //expect(instance).to.be();
     });
 
     it('should have the property folderId (base name: "folderId")', function() {
       // uncomment below and update the code to test the property folderId
-      //var instane = new SibApiV3Sdk.CreateList();
+      //var instane = new PakatApiV3Sdk.CreateList();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateModel.spec.js b/test/model/CreateModel.spec.js
index cce6fdcb..d0bb1959 100644
--- a/test/model/CreateModel.spec.js
+++ b/test/model/CreateModel.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateModel();
+    instance = new PakatApiV3Sdk.CreateModel();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('CreateModel', function() {
     it('should create an instance of CreateModel', function() {
       // uncomment below and update the code to test CreateModel
-      //var instane = new SibApiV3Sdk.CreateModel();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateModel);
+      //var instane = new PakatApiV3Sdk.CreateModel();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateModel);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.CreateModel();
+      //var instane = new PakatApiV3Sdk.CreateModel();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateReseller.spec.js b/test/model/CreateReseller.spec.js
index db2d1e87..def04f3c 100644
--- a/test/model/CreateReseller.spec.js
+++ b/test/model/CreateReseller.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateReseller();
+    instance = new PakatApiV3Sdk.CreateReseller();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('CreateReseller', function() {
     it('should create an instance of CreateReseller', function() {
       // uncomment below and update the code to test CreateReseller
-      //var instane = new SibApiV3Sdk.CreateReseller();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateReseller);
+      //var instane = new PakatApiV3Sdk.CreateReseller();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateReseller);
     });
 
     it('should have the property authKey (base name: "authKey")', function() {
       // uncomment below and update the code to test the property authKey
-      //var instane = new SibApiV3Sdk.CreateReseller();
+      //var instane = new PakatApiV3Sdk.CreateReseller();
       //expect(instance).to.be();
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.CreateReseller();
+      //var instane = new PakatApiV3Sdk.CreateReseller();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateSender.spec.js b/test/model/CreateSender.spec.js
index c14c361d..4a20ce71 100644
--- a/test/model/CreateSender.spec.js
+++ b/test/model/CreateSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateSender();
+    instance = new PakatApiV3Sdk.CreateSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('CreateSender', function() {
     it('should create an instance of CreateSender', function() {
       // uncomment below and update the code to test CreateSender
-      //var instane = new SibApiV3Sdk.CreateSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateSender);
+      //var instane = new PakatApiV3Sdk.CreateSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateSender);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.CreateSender();
+      //var instane = new PakatApiV3Sdk.CreateSender();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.CreateSender();
+      //var instane = new PakatApiV3Sdk.CreateSender();
       //expect(instance).to.be();
     });
 
     it('should have the property ips (base name: "ips")', function() {
       // uncomment below and update the code to test the property ips
-      //var instane = new SibApiV3Sdk.CreateSender();
+      //var instane = new PakatApiV3Sdk.CreateSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateSenderIps.spec.js b/test/model/CreateSenderIps.spec.js
index fc997324..1212e719 100644
--- a/test/model/CreateSenderIps.spec.js
+++ b/test/model/CreateSenderIps.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateSenderIps();
+    instance = new PakatApiV3Sdk.CreateSenderIps();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('CreateSenderIps', function() {
     it('should create an instance of CreateSenderIps', function() {
       // uncomment below and update the code to test CreateSenderIps
-      //var instane = new SibApiV3Sdk.CreateSenderIps();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateSenderIps);
+      //var instane = new PakatApiV3Sdk.CreateSenderIps();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateSenderIps);
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.CreateSenderIps();
+      //var instane = new PakatApiV3Sdk.CreateSenderIps();
       //expect(instance).to.be();
     });
 
     it('should have the property domain (base name: "domain")', function() {
       // uncomment below and update the code to test the property domain
-      //var instane = new SibApiV3Sdk.CreateSenderIps();
+      //var instane = new PakatApiV3Sdk.CreateSenderIps();
       //expect(instance).to.be();
     });
 
     it('should have the property weight (base name: "weight")', function() {
       // uncomment below and update the code to test the property weight
-      //var instane = new SibApiV3Sdk.CreateSenderIps();
+      //var instane = new PakatApiV3Sdk.CreateSenderIps();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateSenderModel.spec.js b/test/model/CreateSenderModel.spec.js
index 33da9a0c..5e5ab9bf 100644
--- a/test/model/CreateSenderModel.spec.js
+++ b/test/model/CreateSenderModel.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateSenderModel();
+    instance = new PakatApiV3Sdk.CreateSenderModel();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('CreateSenderModel', function() {
     it('should create an instance of CreateSenderModel', function() {
       // uncomment below and update the code to test CreateSenderModel
-      //var instane = new SibApiV3Sdk.CreateSenderModel();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateSenderModel);
+      //var instane = new PakatApiV3Sdk.CreateSenderModel();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateSenderModel);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.CreateSenderModel();
+      //var instane = new PakatApiV3Sdk.CreateSenderModel();
       //expect(instance).to.be();
     });
 
     it('should have the property spfError (base name: "spfError")', function() {
       // uncomment below and update the code to test the property spfError
-      //var instane = new SibApiV3Sdk.CreateSenderModel();
+      //var instane = new PakatApiV3Sdk.CreateSenderModel();
       //expect(instance).to.be();
     });
 
     it('should have the property dkimError (base name: "dkimError")', function() {
       // uncomment below and update the code to test the property dkimError
-      //var instane = new SibApiV3Sdk.CreateSenderModel();
+      //var instane = new PakatApiV3Sdk.CreateSenderModel();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateSmsCampaign.spec.js b/test/model/CreateSmsCampaign.spec.js
index 56763d4c..067581e5 100644
--- a/test/model/CreateSmsCampaign.spec.js
+++ b/test/model/CreateSmsCampaign.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateSmsCampaign();
+    instance = new PakatApiV3Sdk.CreateSmsCampaign();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,37 +53,37 @@
   describe('CreateSmsCampaign', function() {
     it('should create an instance of CreateSmsCampaign', function() {
       // uncomment below and update the code to test CreateSmsCampaign
-      //var instane = new SibApiV3Sdk.CreateSmsCampaign();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateSmsCampaign);
+      //var instane = new PakatApiV3Sdk.CreateSmsCampaign();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateSmsCampaign);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.CreateSmsCampaign();
+      //var instane = new PakatApiV3Sdk.CreateSmsCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.CreateSmsCampaign();
+      //var instane = new PakatApiV3Sdk.CreateSmsCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property content (base name: "content")', function() {
       // uncomment below and update the code to test the property content
-      //var instane = new SibApiV3Sdk.CreateSmsCampaign();
+      //var instane = new PakatApiV3Sdk.CreateSmsCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property recipients (base name: "recipients")', function() {
       // uncomment below and update the code to test the property recipients
-      //var instane = new SibApiV3Sdk.CreateSmsCampaign();
+      //var instane = new PakatApiV3Sdk.CreateSmsCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property scheduledAt (base name: "scheduledAt")', function() {
       // uncomment below and update the code to test the property scheduledAt
-      //var instane = new SibApiV3Sdk.CreateSmsCampaign();
+      //var instane = new PakatApiV3Sdk.CreateSmsCampaign();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateSmsCampaignRecipients.spec.js b/test/model/CreateSmsCampaignRecipients.spec.js
index f94036b5..9a4c5343 100644
--- a/test/model/CreateSmsCampaignRecipients.spec.js
+++ b/test/model/CreateSmsCampaignRecipients.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateSmsCampaignRecipients();
+    instance = new PakatApiV3Sdk.CreateSmsCampaignRecipients();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('CreateSmsCampaignRecipients', function() {
     it('should create an instance of CreateSmsCampaignRecipients', function() {
       // uncomment below and update the code to test CreateSmsCampaignRecipients
-      //var instane = new SibApiV3Sdk.CreateSmsCampaignRecipients();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateSmsCampaignRecipients);
+      //var instane = new PakatApiV3Sdk.CreateSmsCampaignRecipients();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateSmsCampaignRecipients);
     });
 
     it('should have the property listIds (base name: "listIds")', function() {
       // uncomment below and update the code to test the property listIds
-      //var instane = new SibApiV3Sdk.CreateSmsCampaignRecipients();
+      //var instane = new PakatApiV3Sdk.CreateSmsCampaignRecipients();
       //expect(instance).to.be();
     });
 
     it('should have the property exclusionListIds (base name: "exclusionListIds")', function() {
       // uncomment below and update the code to test the property exclusionListIds
-      //var instane = new SibApiV3Sdk.CreateSmsCampaignRecipients();
+      //var instane = new PakatApiV3Sdk.CreateSmsCampaignRecipients();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateSmtpEmail.spec.js b/test/model/CreateSmtpEmail.spec.js
index b4a06053..3a6ee502 100644
--- a/test/model/CreateSmtpEmail.spec.js
+++ b/test/model/CreateSmtpEmail.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateSmtpEmail();
+    instance = new PakatApiV3Sdk.CreateSmtpEmail();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('CreateSmtpEmail', function() {
     it('should create an instance of CreateSmtpEmail', function() {
       // uncomment below and update the code to test CreateSmtpEmail
-      //var instane = new SibApiV3Sdk.CreateSmtpEmail();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateSmtpEmail);
+      //var instane = new PakatApiV3Sdk.CreateSmtpEmail();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateSmtpEmail);
     });
 
     it('should have the property messageId (base name: "messageId")', function() {
       // uncomment below and update the code to test the property messageId
-      //var instane = new SibApiV3Sdk.CreateSmtpEmail();
+      //var instane = new PakatApiV3Sdk.CreateSmtpEmail();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateSmtpTemplate.spec.js b/test/model/CreateSmtpTemplate.spec.js
index ba508eba..33158503 100644
--- a/test/model/CreateSmtpTemplate.spec.js
+++ b/test/model/CreateSmtpTemplate.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateSmtpTemplate();
+    instance = new PakatApiV3Sdk.CreateSmtpTemplate();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,67 +53,67 @@
   describe('CreateSmtpTemplate', function() {
     it('should create an instance of CreateSmtpTemplate', function() {
       // uncomment below and update the code to test CreateSmtpTemplate
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateSmtpTemplate);
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateSmtpTemplate);
     });
 
     it('should have the property tag (base name: "tag")', function() {
       // uncomment below and update the code to test the property tag
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property templateName (base name: "templateName")', function() {
       // uncomment below and update the code to test the property templateName
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlContent (base name: "htmlContent")', function() {
       // uncomment below and update the code to test the property htmlContent
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlUrl (base name: "htmlUrl")', function() {
       // uncomment below and update the code to test the property htmlUrl
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property replyTo (base name: "replyTo")', function() {
       // uncomment below and update the code to test the property replyTo
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property toField (base name: "toField")', function() {
       // uncomment below and update the code to test the property toField
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property attachmentUrl (base name: "attachmentUrl")', function() {
       // uncomment below and update the code to test the property attachmentUrl
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property isActive (base name: "isActive")', function() {
       // uncomment below and update the code to test the property isActive
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplate();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateSmtpTemplateSender.spec.js b/test/model/CreateSmtpTemplateSender.spec.js
index ed6d8154..45d4bf6d 100644
--- a/test/model/CreateSmtpTemplateSender.spec.js
+++ b/test/model/CreateSmtpTemplateSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateSmtpTemplateSender();
+    instance = new PakatApiV3Sdk.CreateSmtpTemplateSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('CreateSmtpTemplateSender', function() {
     it('should create an instance of CreateSmtpTemplateSender', function() {
       // uncomment below and update the code to test CreateSmtpTemplateSender
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplateSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateSmtpTemplateSender);
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplateSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateSmtpTemplateSender);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplateSender();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplateSender();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplateSender();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplateSender();
       //expect(instance).to.be();
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.CreateSmtpTemplateSender();
+      //var instane = new PakatApiV3Sdk.CreateSmtpTemplateSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateUpdateContactModel.spec.js b/test/model/CreateUpdateContactModel.spec.js
index 28073457..6675ed8f 100644
--- a/test/model/CreateUpdateContactModel.spec.js
+++ b/test/model/CreateUpdateContactModel.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateUpdateContactModel();
+    instance = new PakatApiV3Sdk.CreateUpdateContactModel();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('CreateUpdateContactModel', function() {
     it('should create an instance of CreateUpdateContactModel', function() {
       // uncomment below and update the code to test CreateUpdateContactModel
-      //var instane = new SibApiV3Sdk.CreateUpdateContactModel();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateUpdateContactModel);
+      //var instane = new PakatApiV3Sdk.CreateUpdateContactModel();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateUpdateContactModel);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.CreateUpdateContactModel();
+      //var instane = new PakatApiV3Sdk.CreateUpdateContactModel();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateUpdateFolder.spec.js b/test/model/CreateUpdateFolder.spec.js
index 1accd553..310d0e1a 100644
--- a/test/model/CreateUpdateFolder.spec.js
+++ b/test/model/CreateUpdateFolder.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateUpdateFolder();
+    instance = new PakatApiV3Sdk.CreateUpdateFolder();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('CreateUpdateFolder', function() {
     it('should create an instance of CreateUpdateFolder', function() {
       // uncomment below and update the code to test CreateUpdateFolder
-      //var instane = new SibApiV3Sdk.CreateUpdateFolder();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateUpdateFolder);
+      //var instane = new PakatApiV3Sdk.CreateUpdateFolder();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateUpdateFolder);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.CreateUpdateFolder();
+      //var instane = new PakatApiV3Sdk.CreateUpdateFolder();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreateWebhook.spec.js b/test/model/CreateWebhook.spec.js
index ca86fcea..54f740c3 100644
--- a/test/model/CreateWebhook.spec.js
+++ b/test/model/CreateWebhook.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreateWebhook();
+    instance = new PakatApiV3Sdk.CreateWebhook();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('CreateWebhook', function() {
     it('should create an instance of CreateWebhook', function() {
       // uncomment below and update the code to test CreateWebhook
-      //var instane = new SibApiV3Sdk.CreateWebhook();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreateWebhook);
+      //var instane = new PakatApiV3Sdk.CreateWebhook();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreateWebhook);
     });
 
     it('should have the property url (base name: "url")', function() {
       // uncomment below and update the code to test the property url
-      //var instane = new SibApiV3Sdk.CreateWebhook();
+      //var instane = new PakatApiV3Sdk.CreateWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property description (base name: "description")', function() {
       // uncomment below and update the code to test the property description
-      //var instane = new SibApiV3Sdk.CreateWebhook();
+      //var instane = new PakatApiV3Sdk.CreateWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property events (base name: "events")', function() {
       // uncomment below and update the code to test the property events
-      //var instane = new SibApiV3Sdk.CreateWebhook();
+      //var instane = new PakatApiV3Sdk.CreateWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property type (base name: "type")', function() {
       // uncomment below and update the code to test the property type
-      //var instane = new SibApiV3Sdk.CreateWebhook();
+      //var instane = new PakatApiV3Sdk.CreateWebhook();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/CreatedProcessId.spec.js b/test/model/CreatedProcessId.spec.js
index 95d45730..0f0e6e7a 100644
--- a/test/model/CreatedProcessId.spec.js
+++ b/test/model/CreatedProcessId.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.CreatedProcessId();
+    instance = new PakatApiV3Sdk.CreatedProcessId();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('CreatedProcessId', function() {
     it('should create an instance of CreatedProcessId', function() {
       // uncomment below and update the code to test CreatedProcessId
-      //var instane = new SibApiV3Sdk.CreatedProcessId();
-      //expect(instance).to.be.a(SibApiV3Sdk.CreatedProcessId);
+      //var instane = new PakatApiV3Sdk.CreatedProcessId();
+      //expect(instance).to.be.a(PakatApiV3Sdk.CreatedProcessId);
     });
 
     it('should have the property processId (base name: "processId")', function() {
       // uncomment below and update the code to test the property processId
-      //var instane = new SibApiV3Sdk.CreatedProcessId();
+      //var instane = new PakatApiV3Sdk.CreatedProcessId();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/DeleteHardbounces.spec.js b/test/model/DeleteHardbounces.spec.js
index c3dfb816..1d94946d 100644
--- a/test/model/DeleteHardbounces.spec.js
+++ b/test/model/DeleteHardbounces.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.DeleteHardbounces();
+    instance = new PakatApiV3Sdk.DeleteHardbounces();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('DeleteHardbounces', function() {
     it('should create an instance of DeleteHardbounces', function() {
       // uncomment below and update the code to test DeleteHardbounces
-      //var instane = new SibApiV3Sdk.DeleteHardbounces();
-      //expect(instance).to.be.a(SibApiV3Sdk.DeleteHardbounces);
+      //var instane = new PakatApiV3Sdk.DeleteHardbounces();
+      //expect(instance).to.be.a(PakatApiV3Sdk.DeleteHardbounces);
     });
 
     it('should have the property startDate (base name: "startDate")', function() {
       // uncomment below and update the code to test the property startDate
-      //var instane = new SibApiV3Sdk.DeleteHardbounces();
+      //var instane = new PakatApiV3Sdk.DeleteHardbounces();
       //expect(instance).to.be();
     });
 
     it('should have the property endDate (base name: "endDate")', function() {
       // uncomment below and update the code to test the property endDate
-      //var instane = new SibApiV3Sdk.DeleteHardbounces();
+      //var instane = new PakatApiV3Sdk.DeleteHardbounces();
       //expect(instance).to.be();
     });
 
     it('should have the property contactEmail (base name: "contactEmail")', function() {
       // uncomment below and update the code to test the property contactEmail
-      //var instane = new SibApiV3Sdk.DeleteHardbounces();
+      //var instane = new PakatApiV3Sdk.DeleteHardbounces();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/EmailExportRecipients.spec.js b/test/model/EmailExportRecipients.spec.js
index 58fac5e3..3aae2c25 100644
--- a/test/model/EmailExportRecipients.spec.js
+++ b/test/model/EmailExportRecipients.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.EmailExportRecipients();
+    instance = new PakatApiV3Sdk.EmailExportRecipients();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('EmailExportRecipients', function() {
     it('should create an instance of EmailExportRecipients', function() {
       // uncomment below and update the code to test EmailExportRecipients
-      //var instane = new SibApiV3Sdk.EmailExportRecipients();
-      //expect(instance).to.be.a(SibApiV3Sdk.EmailExportRecipients);
+      //var instane = new PakatApiV3Sdk.EmailExportRecipients();
+      //expect(instance).to.be.a(PakatApiV3Sdk.EmailExportRecipients);
     });
 
     it('should have the property notifyURL (base name: "notifyURL")', function() {
       // uncomment below and update the code to test the property notifyURL
-      //var instane = new SibApiV3Sdk.EmailExportRecipients();
+      //var instane = new PakatApiV3Sdk.EmailExportRecipients();
       //expect(instance).to.be();
     });
 
     it('should have the property recipientsType (base name: "recipientsType")', function() {
       // uncomment below and update the code to test the property recipientsType
-      //var instane = new SibApiV3Sdk.EmailExportRecipients();
+      //var instane = new PakatApiV3Sdk.EmailExportRecipients();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/ErrorModel.spec.js b/test/model/ErrorModel.spec.js
index adb97ddb..87802f35 100644
--- a/test/model/ErrorModel.spec.js
+++ b/test/model/ErrorModel.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.ErrorModel();
+    instance = new PakatApiV3Sdk.ErrorModel();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('ErrorModel', function() {
     it('should create an instance of ErrorModel', function() {
       // uncomment below and update the code to test ErrorModel
-      //var instane = new SibApiV3Sdk.ErrorModel();
-      //expect(instance).to.be.a(SibApiV3Sdk.ErrorModel);
+      //var instane = new PakatApiV3Sdk.ErrorModel();
+      //expect(instance).to.be.a(PakatApiV3Sdk.ErrorModel);
     });
 
     it('should have the property code (base name: "code")', function() {
       // uncomment below and update the code to test the property code
-      //var instane = new SibApiV3Sdk.ErrorModel();
+      //var instane = new PakatApiV3Sdk.ErrorModel();
       //expect(instance).to.be();
     });
 
     it('should have the property message (base name: "message")', function() {
       // uncomment below and update the code to test the property message
-      //var instane = new SibApiV3Sdk.ErrorModel();
+      //var instane = new PakatApiV3Sdk.ErrorModel();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetAccount.spec.js b/test/model/GetAccount.spec.js
index 96fa709f..fdf9aa5d 100644
--- a/test/model/GetAccount.spec.js
+++ b/test/model/GetAccount.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetAccount();
+    instance = new PakatApiV3Sdk.GetAccount();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('GetAccount', function() {
     it('should create an instance of GetAccount', function() {
       // uncomment below and update the code to test GetAccount
-      //var instane = new SibApiV3Sdk.GetAccount();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetAccount);
+      //var instane = new PakatApiV3Sdk.GetAccount();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetAccount);
     });
 
     it('should have the property plan (base name: "plan")', function() {
       // uncomment below and update the code to test the property plan
-      //var instane = new SibApiV3Sdk.GetAccount();
+      //var instane = new PakatApiV3Sdk.GetAccount();
       //expect(instance).to.be();
     });
 
     it('should have the property relay (base name: "relay")', function() {
       // uncomment below and update the code to test the property relay
-      //var instane = new SibApiV3Sdk.GetAccount();
+      //var instane = new PakatApiV3Sdk.GetAccount();
       //expect(instance).to.be();
     });
 
     it('should have the property marketingAutomation (base name: "marketingAutomation")', function() {
       // uncomment below and update the code to test the property marketingAutomation
-      //var instane = new SibApiV3Sdk.GetAccount();
+      //var instane = new PakatApiV3Sdk.GetAccount();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetAccountMarketingAutomation.spec.js b/test/model/GetAccountMarketingAutomation.spec.js
index 04fdd882..b51ce41d 100644
--- a/test/model/GetAccountMarketingAutomation.spec.js
+++ b/test/model/GetAccountMarketingAutomation.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetAccountMarketingAutomation();
+    instance = new PakatApiV3Sdk.GetAccountMarketingAutomation();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetAccountMarketingAutomation', function() {
     it('should create an instance of GetAccountMarketingAutomation', function() {
       // uncomment below and update the code to test GetAccountMarketingAutomation
-      //var instane = new SibApiV3Sdk.GetAccountMarketingAutomation();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetAccountMarketingAutomation);
+      //var instane = new PakatApiV3Sdk.GetAccountMarketingAutomation();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetAccountMarketingAutomation);
     });
 
     it('should have the property key (base name: "key")', function() {
       // uncomment below and update the code to test the property key
-      //var instane = new SibApiV3Sdk.GetAccountMarketingAutomation();
+      //var instane = new PakatApiV3Sdk.GetAccountMarketingAutomation();
       //expect(instance).to.be();
     });
 
     it('should have the property enabled (base name: "enabled")', function() {
       // uncomment below and update the code to test the property enabled
-      //var instane = new SibApiV3Sdk.GetAccountMarketingAutomation();
+      //var instane = new PakatApiV3Sdk.GetAccountMarketingAutomation();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetAccountPlan.spec.js b/test/model/GetAccountPlan.spec.js
index 0ed8a9a3..e48d736b 100644
--- a/test/model/GetAccountPlan.spec.js
+++ b/test/model/GetAccountPlan.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetAccountPlan();
+    instance = new PakatApiV3Sdk.GetAccountPlan();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,43 +53,43 @@
   describe('GetAccountPlan', function() {
     it('should create an instance of GetAccountPlan', function() {
       // uncomment below and update the code to test GetAccountPlan
-      //var instane = new SibApiV3Sdk.GetAccountPlan();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetAccountPlan);
+      //var instane = new PakatApiV3Sdk.GetAccountPlan();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetAccountPlan);
     });
 
     it('should have the property type (base name: "type")', function() {
       // uncomment below and update the code to test the property type
-      //var instane = new SibApiV3Sdk.GetAccountPlan();
+      //var instane = new PakatApiV3Sdk.GetAccountPlan();
       //expect(instance).to.be();
     });
 
     it('should have the property creditsType (base name: "creditsType")', function() {
       // uncomment below and update the code to test the property creditsType
-      //var instane = new SibApiV3Sdk.GetAccountPlan();
+      //var instane = new PakatApiV3Sdk.GetAccountPlan();
       //expect(instance).to.be();
     });
 
     it('should have the property credits (base name: "credits")', function() {
       // uncomment below and update the code to test the property credits
-      //var instane = new SibApiV3Sdk.GetAccountPlan();
+      //var instane = new PakatApiV3Sdk.GetAccountPlan();
       //expect(instance).to.be();
     });
 
     it('should have the property startDate (base name: "startDate")', function() {
       // uncomment below and update the code to test the property startDate
-      //var instane = new SibApiV3Sdk.GetAccountPlan();
+      //var instane = new PakatApiV3Sdk.GetAccountPlan();
       //expect(instance).to.be();
     });
 
     it('should have the property endDate (base name: "endDate")', function() {
       // uncomment below and update the code to test the property endDate
-      //var instane = new SibApiV3Sdk.GetAccountPlan();
+      //var instane = new PakatApiV3Sdk.GetAccountPlan();
       //expect(instance).to.be();
     });
 
     it('should have the property userLimit (base name: "userLimit")', function() {
       // uncomment below and update the code to test the property userLimit
-      //var instane = new SibApiV3Sdk.GetAccountPlan();
+      //var instane = new PakatApiV3Sdk.GetAccountPlan();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetAccountRelay.spec.js b/test/model/GetAccountRelay.spec.js
index abbf8b8a..b1784475 100644
--- a/test/model/GetAccountRelay.spec.js
+++ b/test/model/GetAccountRelay.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetAccountRelay();
+    instance = new PakatApiV3Sdk.GetAccountRelay();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetAccountRelay', function() {
     it('should create an instance of GetAccountRelay', function() {
       // uncomment below and update the code to test GetAccountRelay
-      //var instane = new SibApiV3Sdk.GetAccountRelay();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetAccountRelay);
+      //var instane = new PakatApiV3Sdk.GetAccountRelay();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetAccountRelay);
     });
 
     it('should have the property enabled (base name: "enabled")', function() {
       // uncomment below and update the code to test the property enabled
-      //var instane = new SibApiV3Sdk.GetAccountRelay();
+      //var instane = new PakatApiV3Sdk.GetAccountRelay();
       //expect(instance).to.be();
     });
 
     it('should have the property data (base name: "data")', function() {
       // uncomment below and update the code to test the property data
-      //var instane = new SibApiV3Sdk.GetAccountRelay();
+      //var instane = new PakatApiV3Sdk.GetAccountRelay();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetAccountRelayData.spec.js b/test/model/GetAccountRelayData.spec.js
index e5c70167..a920cb4a 100644
--- a/test/model/GetAccountRelayData.spec.js
+++ b/test/model/GetAccountRelayData.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetAccountRelayData();
+    instance = new PakatApiV3Sdk.GetAccountRelayData();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('GetAccountRelayData', function() {
     it('should create an instance of GetAccountRelayData', function() {
       // uncomment below and update the code to test GetAccountRelayData
-      //var instane = new SibApiV3Sdk.GetAccountRelayData();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetAccountRelayData);
+      //var instane = new PakatApiV3Sdk.GetAccountRelayData();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetAccountRelayData);
     });
 
     it('should have the property userName (base name: "userName")', function() {
       // uncomment below and update the code to test the property userName
-      //var instane = new SibApiV3Sdk.GetAccountRelayData();
+      //var instane = new PakatApiV3Sdk.GetAccountRelayData();
       //expect(instance).to.be();
     });
 
     it('should have the property relay (base name: "relay")', function() {
       // uncomment below and update the code to test the property relay
-      //var instane = new SibApiV3Sdk.GetAccountRelayData();
+      //var instane = new PakatApiV3Sdk.GetAccountRelayData();
       //expect(instance).to.be();
     });
 
     it('should have the property port (base name: "port")', function() {
       // uncomment below and update the code to test the property port
-      //var instane = new SibApiV3Sdk.GetAccountRelayData();
+      //var instane = new PakatApiV3Sdk.GetAccountRelayData();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetAggregatedReport.spec.js b/test/model/GetAggregatedReport.spec.js
index 82304e95..33b361cf 100644
--- a/test/model/GetAggregatedReport.spec.js
+++ b/test/model/GetAggregatedReport.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetAggregatedReport();
+    instance = new PakatApiV3Sdk.GetAggregatedReport();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,85 +53,85 @@
   describe('GetAggregatedReport', function() {
     it('should create an instance of GetAggregatedReport', function() {
       // uncomment below and update the code to test GetAggregatedReport
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetAggregatedReport);
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetAggregatedReport);
     });
 
     it('should have the property range (base name: "range")', function() {
       // uncomment below and update the code to test the property range
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property requests (base name: "requests")', function() {
       // uncomment below and update the code to test the property requests
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property delivered (base name: "delivered")', function() {
       // uncomment below and update the code to test the property delivered
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property hardBounces (base name: "hardBounces")', function() {
       // uncomment below and update the code to test the property hardBounces
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property softBounces (base name: "softBounces")', function() {
       // uncomment below and update the code to test the property softBounces
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property clicks (base name: "clicks")', function() {
       // uncomment below and update the code to test the property clicks
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property uniqueClicks (base name: "uniqueClicks")', function() {
       // uncomment below and update the code to test the property uniqueClicks
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property opens (base name: "opens")', function() {
       // uncomment below and update the code to test the property opens
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property uniqueOpens (base name: "uniqueOpens")', function() {
       // uncomment below and update the code to test the property uniqueOpens
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property spamReports (base name: "spamReports")', function() {
       // uncomment below and update the code to test the property spamReports
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property blocked (base name: "blocked")', function() {
       // uncomment below and update the code to test the property blocked
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property invalid (base name: "invalid")', function() {
       // uncomment below and update the code to test the property invalid
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
     it('should have the property unsubscribed (base name: "unsubscribed")', function() {
       // uncomment below and update the code to test the property unsubscribed
-      //var instane = new SibApiV3Sdk.GetAggregatedReport();
+      //var instane = new PakatApiV3Sdk.GetAggregatedReport();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetAttributes.spec.js b/test/model/GetAttributes.spec.js
index 5ca4ca98..7608ea08 100644
--- a/test/model/GetAttributes.spec.js
+++ b/test/model/GetAttributes.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetAttributes();
+    instance = new PakatApiV3Sdk.GetAttributes();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetAttributes', function() {
     it('should create an instance of GetAttributes', function() {
       // uncomment below and update the code to test GetAttributes
-      //var instane = new SibApiV3Sdk.GetAttributes();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetAttributes);
+      //var instane = new PakatApiV3Sdk.GetAttributes();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetAttributes);
     });
 
     it('should have the property attributes (base name: "attributes")', function() {
       // uncomment below and update the code to test the property attributes
-      //var instane = new SibApiV3Sdk.GetAttributes();
+      //var instane = new PakatApiV3Sdk.GetAttributes();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetAttributesAttributes.spec.js b/test/model/GetAttributesAttributes.spec.js
index 7b7b3187..4a2cd49d 100644
--- a/test/model/GetAttributesAttributes.spec.js
+++ b/test/model/GetAttributesAttributes.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetAttributesAttributes();
+    instance = new PakatApiV3Sdk.GetAttributesAttributes();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,37 +53,37 @@
   describe('GetAttributesAttributes', function() {
     it('should create an instance of GetAttributesAttributes', function() {
       // uncomment below and update the code to test GetAttributesAttributes
-      //var instane = new SibApiV3Sdk.GetAttributesAttributes();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetAttributesAttributes);
+      //var instane = new PakatApiV3Sdk.GetAttributesAttributes();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetAttributesAttributes);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetAttributesAttributes();
+      //var instane = new PakatApiV3Sdk.GetAttributesAttributes();
       //expect(instance).to.be();
     });
 
     it('should have the property category (base name: "category")', function() {
       // uncomment below and update the code to test the property category
-      //var instane = new SibApiV3Sdk.GetAttributesAttributes();
+      //var instane = new PakatApiV3Sdk.GetAttributesAttributes();
       //expect(instance).to.be();
     });
 
     it('should have the property type (base name: "type")', function() {
       // uncomment below and update the code to test the property type
-      //var instane = new SibApiV3Sdk.GetAttributesAttributes();
+      //var instane = new PakatApiV3Sdk.GetAttributesAttributes();
       //expect(instance).to.be();
     });
 
     it('should have the property enumeration (base name: "enumeration")', function() {
       // uncomment below and update the code to test the property enumeration
-      //var instane = new SibApiV3Sdk.GetAttributesAttributes();
+      //var instane = new PakatApiV3Sdk.GetAttributesAttributes();
       //expect(instance).to.be();
     });
 
     it('should have the property calculatedValue (base name: "calculatedValue")', function() {
       // uncomment below and update the code to test the property calculatedValue
-      //var instane = new SibApiV3Sdk.GetAttributesAttributes();
+      //var instane = new PakatApiV3Sdk.GetAttributesAttributes();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetAttributesEnumeration.spec.js b/test/model/GetAttributesEnumeration.spec.js
index 2368fb67..c892905f 100644
--- a/test/model/GetAttributesEnumeration.spec.js
+++ b/test/model/GetAttributesEnumeration.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetAttributesEnumeration();
+    instance = new PakatApiV3Sdk.GetAttributesEnumeration();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetAttributesEnumeration', function() {
     it('should create an instance of GetAttributesEnumeration', function() {
       // uncomment below and update the code to test GetAttributesEnumeration
-      //var instane = new SibApiV3Sdk.GetAttributesEnumeration();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetAttributesEnumeration);
+      //var instane = new PakatApiV3Sdk.GetAttributesEnumeration();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetAttributesEnumeration);
     });
 
     it('should have the property value (base name: "value")', function() {
       // uncomment below and update the code to test the property value
-      //var instane = new SibApiV3Sdk.GetAttributesEnumeration();
+      //var instane = new PakatApiV3Sdk.GetAttributesEnumeration();
       //expect(instance).to.be();
     });
 
     it('should have the property label (base name: "label")', function() {
       // uncomment below and update the code to test the property label
-      //var instane = new SibApiV3Sdk.GetAttributesEnumeration();
+      //var instane = new PakatApiV3Sdk.GetAttributesEnumeration();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetCampaignOverview.spec.js b/test/model/GetCampaignOverview.spec.js
index 67567dd2..522f4b9b 100644
--- a/test/model/GetCampaignOverview.spec.js
+++ b/test/model/GetCampaignOverview.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetCampaignOverview();
+    instance = new PakatApiV3Sdk.GetCampaignOverview();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,85 +53,85 @@
   describe('GetCampaignOverview', function() {
     it('should create an instance of GetCampaignOverview', function() {
       // uncomment below and update the code to test GetCampaignOverview
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetCampaignOverview);
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetCampaignOverview);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property type (base name: "type")', function() {
       // uncomment below and update the code to test the property type
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property status (base name: "status")', function() {
       // uncomment below and update the code to test the property status
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property scheduledAt (base name: "scheduledAt")', function() {
       // uncomment below and update the code to test the property scheduledAt
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property abTesting (base name: "abTesting")', function() {
       // uncomment below and update the code to test the property abTesting
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property subjectA (base name: "subjectA")', function() {
       // uncomment below and update the code to test the property subjectA
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property subjectB (base name: "subjectB")', function() {
       // uncomment below and update the code to test the property subjectB
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property splitRule (base name: "splitRule")', function() {
       // uncomment below and update the code to test the property splitRule
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property winnerCriteria (base name: "winnerCriteria")', function() {
       // uncomment below and update the code to test the property winnerCriteria
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property winnerDelay (base name: "winnerDelay")', function() {
       // uncomment below and update the code to test the property winnerDelay
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property sendAtBestTime (base name: "sendAtBestTime")', function() {
       // uncomment below and update the code to test the property sendAtBestTime
-      //var instane = new SibApiV3Sdk.GetCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetCampaignOverview();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetCampaignRecipients.spec.js b/test/model/GetCampaignRecipients.spec.js
index 0540f3b8..dcb996b0 100644
--- a/test/model/GetCampaignRecipients.spec.js
+++ b/test/model/GetCampaignRecipients.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetCampaignRecipients();
+    instance = new PakatApiV3Sdk.GetCampaignRecipients();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetCampaignRecipients', function() {
     it('should create an instance of GetCampaignRecipients', function() {
       // uncomment below and update the code to test GetCampaignRecipients
-      //var instane = new SibApiV3Sdk.GetCampaignRecipients();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetCampaignRecipients);
+      //var instane = new PakatApiV3Sdk.GetCampaignRecipients();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetCampaignRecipients);
     });
 
     it('should have the property lists (base name: "lists")', function() {
       // uncomment below and update the code to test the property lists
-      //var instane = new SibApiV3Sdk.GetCampaignRecipients();
+      //var instane = new PakatApiV3Sdk.GetCampaignRecipients();
       //expect(instance).to.be();
     });
 
     it('should have the property exclusionLists (base name: "exclusionLists")', function() {
       // uncomment below and update the code to test the property exclusionLists
-      //var instane = new SibApiV3Sdk.GetCampaignRecipients();
+      //var instane = new PakatApiV3Sdk.GetCampaignRecipients();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetCampaignStats.spec.js b/test/model/GetCampaignStats.spec.js
index 417773df..9601eeaf 100644
--- a/test/model/GetCampaignStats.spec.js
+++ b/test/model/GetCampaignStats.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetCampaignStats();
+    instance = new PakatApiV3Sdk.GetCampaignStats();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,85 +53,85 @@
   describe('GetCampaignStats', function() {
     it('should create an instance of GetCampaignStats', function() {
       // uncomment below and update the code to test GetCampaignStats
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetCampaignStats);
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetCampaignStats);
     });
 
     it('should have the property listId (base name: "listId")', function() {
       // uncomment below and update the code to test the property listId
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property uniqueClicks (base name: "uniqueClicks")', function() {
       // uncomment below and update the code to test the property uniqueClicks
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property clickers (base name: "clickers")', function() {
       // uncomment below and update the code to test the property clickers
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property complaints (base name: "complaints")', function() {
       // uncomment below and update the code to test the property complaints
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property delivered (base name: "delivered")', function() {
       // uncomment below and update the code to test the property delivered
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property sent (base name: "sent")', function() {
       // uncomment below and update the code to test the property sent
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property softBounces (base name: "softBounces")', function() {
       // uncomment below and update the code to test the property softBounces
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property hardBounces (base name: "hardBounces")', function() {
       // uncomment below and update the code to test the property hardBounces
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property uniqueViews (base name: "uniqueViews")', function() {
       // uncomment below and update the code to test the property uniqueViews
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property unsubscriptions (base name: "unsubscriptions")', function() {
       // uncomment below and update the code to test the property unsubscriptions
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property viewed (base name: "viewed")', function() {
       // uncomment below and update the code to test the property viewed
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property deferred (base name: "deferred")', function() {
       // uncomment below and update the code to test the property deferred
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property returnBounce (base name: "returnBounce")', function() {
       // uncomment below and update the code to test the property returnBounce
-      //var instane = new SibApiV3Sdk.GetCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetCampaignStats();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetChildAccountCreationStatus.spec.js b/test/model/GetChildAccountCreationStatus.spec.js
index 2b796540..49020309 100644
--- a/test/model/GetChildAccountCreationStatus.spec.js
+++ b/test/model/GetChildAccountCreationStatus.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetChildAccountCreationStatus();
+    instance = new PakatApiV3Sdk.GetChildAccountCreationStatus();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetChildAccountCreationStatus', function() {
     it('should create an instance of GetChildAccountCreationStatus', function() {
       // uncomment below and update the code to test GetChildAccountCreationStatus
-      //var instane = new SibApiV3Sdk.GetChildAccountCreationStatus();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetChildAccountCreationStatus);
+      //var instane = new PakatApiV3Sdk.GetChildAccountCreationStatus();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetChildAccountCreationStatus);
     });
 
     it('should have the property childAccountCreated (base name: "childAccountCreated")', function() {
       // uncomment below and update the code to test the property childAccountCreated
-      //var instane = new SibApiV3Sdk.GetChildAccountCreationStatus();
+      //var instane = new PakatApiV3Sdk.GetChildAccountCreationStatus();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetChildDomain.spec.js b/test/model/GetChildDomain.spec.js
index 8c250118..f727cc42 100644
--- a/test/model/GetChildDomain.spec.js
+++ b/test/model/GetChildDomain.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetChildDomain();
+    instance = new PakatApiV3Sdk.GetChildDomain();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetChildDomain', function() {
     it('should create an instance of GetChildDomain', function() {
       // uncomment below and update the code to test GetChildDomain
-      //var instane = new SibApiV3Sdk.GetChildDomain();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetChildDomain);
+      //var instane = new PakatApiV3Sdk.GetChildDomain();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetChildDomain);
     });
 
     it('should have the property domain (base name: "domain")', function() {
       // uncomment below and update the code to test the property domain
-      //var instane = new SibApiV3Sdk.GetChildDomain();
+      //var instane = new PakatApiV3Sdk.GetChildDomain();
       //expect(instance).to.be();
     });
 
     it('should have the property active (base name: "active")', function() {
       // uncomment below and update the code to test the property active
-      //var instane = new SibApiV3Sdk.GetChildDomain();
+      //var instane = new PakatApiV3Sdk.GetChildDomain();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetChildDomains.spec.js b/test/model/GetChildDomains.spec.js
index 4bb47e76..6d65503b 100644
--- a/test/model/GetChildDomains.spec.js
+++ b/test/model/GetChildDomains.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetChildDomains();
+    instance = new PakatApiV3Sdk.GetChildDomains();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,8 +53,8 @@
   describe('GetChildDomains', function() {
     it('should create an instance of GetChildDomains', function() {
       // uncomment below and update the code to test GetChildDomains
-      //var instane = new SibApiV3Sdk.GetChildDomains();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetChildDomains);
+      //var instane = new PakatApiV3Sdk.GetChildDomains();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetChildDomains);
     });
 
   });
diff --git a/test/model/GetChildInfo.spec.js b/test/model/GetChildInfo.spec.js
index 33a0a182..09fd0fa4 100644
--- a/test/model/GetChildInfo.spec.js
+++ b/test/model/GetChildInfo.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetChildInfo();
+    instance = new PakatApiV3Sdk.GetChildInfo();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,37 +53,37 @@
   describe('GetChildInfo', function() {
     it('should create an instance of GetChildInfo', function() {
       // uncomment below and update the code to test GetChildInfo
-      //var instane = new SibApiV3Sdk.GetChildInfo();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetChildInfo);
+      //var instane = new PakatApiV3Sdk.GetChildInfo();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetChildInfo);
     });
 
     it('should have the property credits (base name: "credits")', function() {
       // uncomment below and update the code to test the property credits
-      //var instane = new SibApiV3Sdk.GetChildInfo();
+      //var instane = new PakatApiV3Sdk.GetChildInfo();
       //expect(instance).to.be();
     });
 
     it('should have the property statistics (base name: "statistics")', function() {
       // uncomment below and update the code to test the property statistics
-      //var instane = new SibApiV3Sdk.GetChildInfo();
+      //var instane = new PakatApiV3Sdk.GetChildInfo();
       //expect(instance).to.be();
     });
 
     it('should have the property password (base name: "password")', function() {
       // uncomment below and update the code to test the property password
-      //var instane = new SibApiV3Sdk.GetChildInfo();
+      //var instane = new PakatApiV3Sdk.GetChildInfo();
       //expect(instance).to.be();
     });
 
     it('should have the property ips (base name: "ips")', function() {
       // uncomment below and update the code to test the property ips
-      //var instane = new SibApiV3Sdk.GetChildInfo();
+      //var instane = new PakatApiV3Sdk.GetChildInfo();
       //expect(instance).to.be();
     });
 
     it('should have the property apiKeys (base name: "apiKeys")', function() {
       // uncomment below and update the code to test the property apiKeys
-      //var instane = new SibApiV3Sdk.GetChildInfo();
+      //var instane = new PakatApiV3Sdk.GetChildInfo();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetChildInfoApiKeys.spec.js b/test/model/GetChildInfoApiKeys.spec.js
index e9dab07e..a3b75440 100644
--- a/test/model/GetChildInfoApiKeys.spec.js
+++ b/test/model/GetChildInfoApiKeys.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetChildInfoApiKeys();
+    instance = new PakatApiV3Sdk.GetChildInfoApiKeys();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetChildInfoApiKeys', function() {
     it('should create an instance of GetChildInfoApiKeys', function() {
       // uncomment below and update the code to test GetChildInfoApiKeys
-      //var instane = new SibApiV3Sdk.GetChildInfoApiKeys();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetChildInfoApiKeys);
+      //var instane = new PakatApiV3Sdk.GetChildInfoApiKeys();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetChildInfoApiKeys);
     });
 
     it('should have the property v2 (base name: "v2")', function() {
       // uncomment below and update the code to test the property v2
-      //var instane = new SibApiV3Sdk.GetChildInfoApiKeys();
+      //var instane = new PakatApiV3Sdk.GetChildInfoApiKeys();
       //expect(instance).to.be();
     });
 
     it('should have the property v3 (base name: "v3")', function() {
       // uncomment below and update the code to test the property v3
-      //var instane = new SibApiV3Sdk.GetChildInfoApiKeys();
+      //var instane = new PakatApiV3Sdk.GetChildInfoApiKeys();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetChildInfoApiKeysV2.spec.js b/test/model/GetChildInfoApiKeysV2.spec.js
index 932c4348..f6397965 100644
--- a/test/model/GetChildInfoApiKeysV2.spec.js
+++ b/test/model/GetChildInfoApiKeysV2.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetChildInfoApiKeysV2();
+    instance = new PakatApiV3Sdk.GetChildInfoApiKeysV2();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetChildInfoApiKeysV2', function() {
     it('should create an instance of GetChildInfoApiKeysV2', function() {
       // uncomment below and update the code to test GetChildInfoApiKeysV2
-      //var instane = new SibApiV3Sdk.GetChildInfoApiKeysV2();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetChildInfoApiKeysV2);
+      //var instane = new PakatApiV3Sdk.GetChildInfoApiKeysV2();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetChildInfoApiKeysV2);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetChildInfoApiKeysV2();
+      //var instane = new PakatApiV3Sdk.GetChildInfoApiKeysV2();
       //expect(instance).to.be();
     });
 
     it('should have the property key (base name: "key")', function() {
       // uncomment below and update the code to test the property key
-      //var instane = new SibApiV3Sdk.GetChildInfoApiKeysV2();
+      //var instane = new PakatApiV3Sdk.GetChildInfoApiKeysV2();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetChildInfoApiKeysV3.spec.js b/test/model/GetChildInfoApiKeysV3.spec.js
index b1e7f95a..ee6ed9c4 100644
--- a/test/model/GetChildInfoApiKeysV3.spec.js
+++ b/test/model/GetChildInfoApiKeysV3.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetChildInfoApiKeysV3();
+    instance = new PakatApiV3Sdk.GetChildInfoApiKeysV3();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetChildInfoApiKeysV3', function() {
     it('should create an instance of GetChildInfoApiKeysV3', function() {
       // uncomment below and update the code to test GetChildInfoApiKeysV3
-      //var instane = new SibApiV3Sdk.GetChildInfoApiKeysV3();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetChildInfoApiKeysV3);
+      //var instane = new PakatApiV3Sdk.GetChildInfoApiKeysV3();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetChildInfoApiKeysV3);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetChildInfoApiKeysV3();
+      //var instane = new PakatApiV3Sdk.GetChildInfoApiKeysV3();
       //expect(instance).to.be();
     });
 
     it('should have the property key (base name: "key")', function() {
       // uncomment below and update the code to test the property key
-      //var instane = new SibApiV3Sdk.GetChildInfoApiKeysV3();
+      //var instane = new PakatApiV3Sdk.GetChildInfoApiKeysV3();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetChildInfoCredits.spec.js b/test/model/GetChildInfoCredits.spec.js
index 08bae6a9..9b375bb3 100644
--- a/test/model/GetChildInfoCredits.spec.js
+++ b/test/model/GetChildInfoCredits.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetChildInfoCredits();
+    instance = new PakatApiV3Sdk.GetChildInfoCredits();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetChildInfoCredits', function() {
     it('should create an instance of GetChildInfoCredits', function() {
       // uncomment below and update the code to test GetChildInfoCredits
-      //var instane = new SibApiV3Sdk.GetChildInfoCredits();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetChildInfoCredits);
+      //var instane = new PakatApiV3Sdk.GetChildInfoCredits();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetChildInfoCredits);
     });
 
     it('should have the property emailCredits (base name: "emailCredits")', function() {
       // uncomment below and update the code to test the property emailCredits
-      //var instane = new SibApiV3Sdk.GetChildInfoCredits();
+      //var instane = new PakatApiV3Sdk.GetChildInfoCredits();
       //expect(instance).to.be();
     });
 
     it('should have the property smsCredits (base name: "smsCredits")', function() {
       // uncomment below and update the code to test the property smsCredits
-      //var instane = new SibApiV3Sdk.GetChildInfoCredits();
+      //var instane = new PakatApiV3Sdk.GetChildInfoCredits();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetChildInfoStatistics.spec.js b/test/model/GetChildInfoStatistics.spec.js
index f56ee55b..741c3fca 100644
--- a/test/model/GetChildInfoStatistics.spec.js
+++ b/test/model/GetChildInfoStatistics.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetChildInfoStatistics();
+    instance = new PakatApiV3Sdk.GetChildInfoStatistics();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('GetChildInfoStatistics', function() {
     it('should create an instance of GetChildInfoStatistics', function() {
       // uncomment below and update the code to test GetChildInfoStatistics
-      //var instane = new SibApiV3Sdk.GetChildInfoStatistics();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetChildInfoStatistics);
+      //var instane = new PakatApiV3Sdk.GetChildInfoStatistics();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetChildInfoStatistics);
     });
 
     it('should have the property previousMonthTotalSent (base name: "previousMonthTotalSent")', function() {
       // uncomment below and update the code to test the property previousMonthTotalSent
-      //var instane = new SibApiV3Sdk.GetChildInfoStatistics();
+      //var instane = new PakatApiV3Sdk.GetChildInfoStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property currentMonthTotalSent (base name: "currentMonthTotalSent")', function() {
       // uncomment below and update the code to test the property currentMonthTotalSent
-      //var instane = new SibApiV3Sdk.GetChildInfoStatistics();
+      //var instane = new PakatApiV3Sdk.GetChildInfoStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property totalSent (base name: "totalSent")', function() {
       // uncomment below and update the code to test the property totalSent
-      //var instane = new SibApiV3Sdk.GetChildInfoStatistics();
+      //var instane = new PakatApiV3Sdk.GetChildInfoStatistics();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetChildrenList.spec.js b/test/model/GetChildrenList.spec.js
index da30c458..eaacd1ce 100644
--- a/test/model/GetChildrenList.spec.js
+++ b/test/model/GetChildrenList.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetChildrenList();
+    instance = new PakatApiV3Sdk.GetChildrenList();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetChildrenList', function() {
     it('should create an instance of GetChildrenList', function() {
       // uncomment below and update the code to test GetChildrenList
-      //var instane = new SibApiV3Sdk.GetChildrenList();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetChildrenList);
+      //var instane = new PakatApiV3Sdk.GetChildrenList();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetChildrenList);
     });
 
     it('should have the property children (base name: "children")', function() {
       // uncomment below and update the code to test the property children
-      //var instane = new SibApiV3Sdk.GetChildrenList();
+      //var instane = new PakatApiV3Sdk.GetChildrenList();
       //expect(instance).to.be();
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetChildrenList();
+      //var instane = new PakatApiV3Sdk.GetChildrenList();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetClient.spec.js b/test/model/GetClient.spec.js
index b7b23a20..4fcedf87 100644
--- a/test/model/GetClient.spec.js
+++ b/test/model/GetClient.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetClient();
+    instance = new PakatApiV3Sdk.GetClient();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetClient', function() {
     it('should create an instance of GetClient', function() {
       // uncomment below and update the code to test GetClient
-      //var instane = new SibApiV3Sdk.GetClient();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetClient);
+      //var instane = new PakatApiV3Sdk.GetClient();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetClient);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.GetClient();
+      //var instane = new PakatApiV3Sdk.GetClient();
       //expect(instance).to.be();
     });
 
     it('should have the property firstName (base name: "firstName")', function() {
       // uncomment below and update the code to test the property firstName
-      //var instane = new SibApiV3Sdk.GetClient();
+      //var instane = new PakatApiV3Sdk.GetClient();
       //expect(instance).to.be();
     });
 
     it('should have the property lastName (base name: "lastName")', function() {
       // uncomment below and update the code to test the property lastName
-      //var instane = new SibApiV3Sdk.GetClient();
+      //var instane = new PakatApiV3Sdk.GetClient();
       //expect(instance).to.be();
     });
 
     it('should have the property companyName (base name: "companyName")', function() {
       // uncomment below and update the code to test the property companyName
-      //var instane = new SibApiV3Sdk.GetClient();
+      //var instane = new PakatApiV3Sdk.GetClient();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetContactCampaignStats.spec.js b/test/model/GetContactCampaignStats.spec.js
index 64befe31..e9ccf191 100644
--- a/test/model/GetContactCampaignStats.spec.js
+++ b/test/model/GetContactCampaignStats.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetContactCampaignStats();
+    instance = new PakatApiV3Sdk.GetContactCampaignStats();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,55 +53,55 @@
   describe('GetContactCampaignStats', function() {
     it('should create an instance of GetContactCampaignStats', function() {
       // uncomment below and update the code to test GetContactCampaignStats
-      //var instane = new SibApiV3Sdk.GetContactCampaignStats();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetContactCampaignStats);
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStats();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetContactCampaignStats);
     });
 
     it('should have the property messagesSent (base name: "messagesSent")', function() {
       // uncomment below and update the code to test the property messagesSent
-      //var instane = new SibApiV3Sdk.GetContactCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property hardBounces (base name: "hardBounces")', function() {
       // uncomment below and update the code to test the property hardBounces
-      //var instane = new SibApiV3Sdk.GetContactCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property softBounces (base name: "softBounces")', function() {
       // uncomment below and update the code to test the property softBounces
-      //var instane = new SibApiV3Sdk.GetContactCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property complaints (base name: "complaints")', function() {
       // uncomment below and update the code to test the property complaints
-      //var instane = new SibApiV3Sdk.GetContactCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property unsubscriptions (base name: "unsubscriptions")', function() {
       // uncomment below and update the code to test the property unsubscriptions
-      //var instane = new SibApiV3Sdk.GetContactCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property opened (base name: "opened")', function() {
       // uncomment below and update the code to test the property opened
-      //var instane = new SibApiV3Sdk.GetContactCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property clicked (base name: "clicked")', function() {
       // uncomment below and update the code to test the property clicked
-      //var instane = new SibApiV3Sdk.GetContactCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property transacAttributes (base name: "transacAttributes")', function() {
       // uncomment below and update the code to test the property transacAttributes
-      //var instane = new SibApiV3Sdk.GetContactCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStats();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetContactCampaignStatsClicked.spec.js b/test/model/GetContactCampaignStatsClicked.spec.js
index 8b0b37c3..9e608683 100644
--- a/test/model/GetContactCampaignStatsClicked.spec.js
+++ b/test/model/GetContactCampaignStatsClicked.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetContactCampaignStatsClicked();
+    instance = new PakatApiV3Sdk.GetContactCampaignStatsClicked();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetContactCampaignStatsClicked', function() {
     it('should create an instance of GetContactCampaignStatsClicked', function() {
       // uncomment below and update the code to test GetContactCampaignStatsClicked
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsClicked();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetContactCampaignStatsClicked);
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsClicked();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetContactCampaignStatsClicked);
     });
 
     it('should have the property campaignId (base name: "campaignId")', function() {
       // uncomment below and update the code to test the property campaignId
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsClicked();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsClicked();
       //expect(instance).to.be();
     });
 
     it('should have the property links (base name: "links")', function() {
       // uncomment below and update the code to test the property links
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsClicked();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsClicked();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetContactCampaignStatsOpened.spec.js b/test/model/GetContactCampaignStatsOpened.spec.js
index af67640c..866aa041 100644
--- a/test/model/GetContactCampaignStatsOpened.spec.js
+++ b/test/model/GetContactCampaignStatsOpened.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetContactCampaignStatsOpened();
+    instance = new PakatApiV3Sdk.GetContactCampaignStatsOpened();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetContactCampaignStatsOpened', function() {
     it('should create an instance of GetContactCampaignStatsOpened', function() {
       // uncomment below and update the code to test GetContactCampaignStatsOpened
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsOpened();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetContactCampaignStatsOpened);
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsOpened();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetContactCampaignStatsOpened);
     });
 
     it('should have the property campaignId (base name: "campaignId")', function() {
       // uncomment below and update the code to test the property campaignId
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsOpened();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsOpened();
       //expect(instance).to.be();
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsOpened();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsOpened();
       //expect(instance).to.be();
     });
 
     it('should have the property eventTime (base name: "eventTime")', function() {
       // uncomment below and update the code to test the property eventTime
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsOpened();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsOpened();
       //expect(instance).to.be();
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsOpened();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsOpened();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetContactCampaignStatsTransacAttributes.spec.js b/test/model/GetContactCampaignStatsTransacAttributes.spec.js
index c6019bfc..d391f706 100644
--- a/test/model/GetContactCampaignStatsTransacAttributes.spec.js
+++ b/test/model/GetContactCampaignStatsTransacAttributes.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetContactCampaignStatsTransacAttributes();
+    instance = new PakatApiV3Sdk.GetContactCampaignStatsTransacAttributes();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('GetContactCampaignStatsTransacAttributes', function() {
     it('should create an instance of GetContactCampaignStatsTransacAttributes', function() {
       // uncomment below and update the code to test GetContactCampaignStatsTransacAttributes
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsTransacAttributes();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetContactCampaignStatsTransacAttributes);
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsTransacAttributes();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetContactCampaignStatsTransacAttributes);
     });
 
     it('should have the property orderDate (base name: "orderDate")', function() {
       // uncomment below and update the code to test the property orderDate
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsTransacAttributes();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsTransacAttributes();
       //expect(instance).to.be();
     });
 
     it('should have the property orderPrice (base name: "orderPrice")', function() {
       // uncomment below and update the code to test the property orderPrice
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsTransacAttributes();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsTransacAttributes();
       //expect(instance).to.be();
     });
 
     it('should have the property orderId (base name: "orderId")', function() {
       // uncomment below and update the code to test the property orderId
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsTransacAttributes();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsTransacAttributes();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetContactCampaignStatsUnsubscriptions.spec.js b/test/model/GetContactCampaignStatsUnsubscriptions.spec.js
index 87d8a48d..e214d53b 100644
--- a/test/model/GetContactCampaignStatsUnsubscriptions.spec.js
+++ b/test/model/GetContactCampaignStatsUnsubscriptions.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetContactCampaignStatsUnsubscriptions();
+    instance = new PakatApiV3Sdk.GetContactCampaignStatsUnsubscriptions();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetContactCampaignStatsUnsubscriptions', function() {
     it('should create an instance of GetContactCampaignStatsUnsubscriptions', function() {
       // uncomment below and update the code to test GetContactCampaignStatsUnsubscriptions
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsUnsubscriptions();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetContactCampaignStatsUnsubscriptions);
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsUnsubscriptions();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetContactCampaignStatsUnsubscriptions);
     });
 
     it('should have the property userUnsubscription (base name: "userUnsubscription")', function() {
       // uncomment below and update the code to test the property userUnsubscription
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsUnsubscriptions();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsUnsubscriptions();
       //expect(instance).to.be();
     });
 
     it('should have the property adminUnsubscription (base name: "adminUnsubscription")', function() {
       // uncomment below and update the code to test the property adminUnsubscription
-      //var instane = new SibApiV3Sdk.GetContactCampaignStatsUnsubscriptions();
+      //var instane = new PakatApiV3Sdk.GetContactCampaignStatsUnsubscriptions();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetContactDetails.spec.js b/test/model/GetContactDetails.spec.js
index 869722df..7d9b2606 100644
--- a/test/model/GetContactDetails.spec.js
+++ b/test/model/GetContactDetails.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetContactDetails();
+    instance = new PakatApiV3Sdk.GetContactDetails();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,61 +53,61 @@
   describe('GetContactDetails', function() {
     it('should create an instance of GetContactDetails', function() {
       // uncomment below and update the code to test GetContactDetails
-      //var instane = new SibApiV3Sdk.GetContactDetails();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetContactDetails);
+      //var instane = new PakatApiV3Sdk.GetContactDetails();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetContactDetails);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.GetContactDetails();
+      //var instane = new PakatApiV3Sdk.GetContactDetails();
       //expect(instance).to.be();
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetContactDetails();
+      //var instane = new PakatApiV3Sdk.GetContactDetails();
       //expect(instance).to.be();
     });
 
     it('should have the property emailBlacklisted (base name: "emailBlacklisted")', function() {
       // uncomment below and update the code to test the property emailBlacklisted
-      //var instane = new SibApiV3Sdk.GetContactDetails();
+      //var instane = new PakatApiV3Sdk.GetContactDetails();
       //expect(instance).to.be();
     });
 
     it('should have the property smsBlacklisted (base name: "smsBlacklisted")', function() {
       // uncomment below and update the code to test the property smsBlacklisted
-      //var instane = new SibApiV3Sdk.GetContactDetails();
+      //var instane = new PakatApiV3Sdk.GetContactDetails();
       //expect(instance).to.be();
     });
 
     it('should have the property createdAt (base name: "createdAt")', function() {
       // uncomment below and update the code to test the property createdAt
-      //var instane = new SibApiV3Sdk.GetContactDetails();
+      //var instane = new PakatApiV3Sdk.GetContactDetails();
       //expect(instance).to.be();
     });
 
     it('should have the property modifiedAt (base name: "modifiedAt")', function() {
       // uncomment below and update the code to test the property modifiedAt
-      //var instane = new SibApiV3Sdk.GetContactDetails();
+      //var instane = new PakatApiV3Sdk.GetContactDetails();
       //expect(instance).to.be();
     });
 
     it('should have the property listIds (base name: "listIds")', function() {
       // uncomment below and update the code to test the property listIds
-      //var instane = new SibApiV3Sdk.GetContactDetails();
+      //var instane = new PakatApiV3Sdk.GetContactDetails();
       //expect(instance).to.be();
     });
 
     it('should have the property listUnsubscribed (base name: "listUnsubscribed")', function() {
       // uncomment below and update the code to test the property listUnsubscribed
-      //var instane = new SibApiV3Sdk.GetContactDetails();
+      //var instane = new PakatApiV3Sdk.GetContactDetails();
       //expect(instance).to.be();
     });
 
     it('should have the property attributes (base name: "attributes")', function() {
       // uncomment below and update the code to test the property attributes
-      //var instane = new SibApiV3Sdk.GetContactDetails();
+      //var instane = new PakatApiV3Sdk.GetContactDetails();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetContacts.spec.js b/test/model/GetContacts.spec.js
index feff10ae..5e3996a3 100644
--- a/test/model/GetContacts.spec.js
+++ b/test/model/GetContacts.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetContacts();
+    instance = new PakatApiV3Sdk.GetContacts();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetContacts', function() {
     it('should create an instance of GetContacts', function() {
       // uncomment below and update the code to test GetContacts
-      //var instane = new SibApiV3Sdk.GetContacts();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetContacts);
+      //var instane = new PakatApiV3Sdk.GetContacts();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetContacts);
     });
 
     it('should have the property contacts (base name: "contacts")', function() {
       // uncomment below and update the code to test the property contacts
-      //var instane = new SibApiV3Sdk.GetContacts();
+      //var instane = new PakatApiV3Sdk.GetContacts();
       //expect(instance).to.be();
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetContacts();
+      //var instane = new PakatApiV3Sdk.GetContacts();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetDeviceBrowserStats.spec.js b/test/model/GetDeviceBrowserStats.spec.js
index a763a5e4..7381d9f1 100644
--- a/test/model/GetDeviceBrowserStats.spec.js
+++ b/test/model/GetDeviceBrowserStats.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetDeviceBrowserStats();
+    instance = new PakatApiV3Sdk.GetDeviceBrowserStats();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetDeviceBrowserStats', function() {
     it('should create an instance of GetDeviceBrowserStats', function() {
       // uncomment below and update the code to test GetDeviceBrowserStats
-      //var instane = new SibApiV3Sdk.GetDeviceBrowserStats();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetDeviceBrowserStats);
+      //var instane = new PakatApiV3Sdk.GetDeviceBrowserStats();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetDeviceBrowserStats);
     });
 
     it('should have the property clickers (base name: "clickers")', function() {
       // uncomment below and update the code to test the property clickers
-      //var instane = new SibApiV3Sdk.GetDeviceBrowserStats();
+      //var instane = new PakatApiV3Sdk.GetDeviceBrowserStats();
       //expect(instance).to.be();
     });
 
     it('should have the property uniqueClicks (base name: "uniqueClicks")', function() {
       // uncomment below and update the code to test the property uniqueClicks
-      //var instane = new SibApiV3Sdk.GetDeviceBrowserStats();
+      //var instane = new PakatApiV3Sdk.GetDeviceBrowserStats();
       //expect(instance).to.be();
     });
 
     it('should have the property viewed (base name: "viewed")', function() {
       // uncomment below and update the code to test the property viewed
-      //var instane = new SibApiV3Sdk.GetDeviceBrowserStats();
+      //var instane = new PakatApiV3Sdk.GetDeviceBrowserStats();
       //expect(instance).to.be();
     });
 
     it('should have the property uniqueViews (base name: "uniqueViews")', function() {
       // uncomment below and update the code to test the property uniqueViews
-      //var instane = new SibApiV3Sdk.GetDeviceBrowserStats();
+      //var instane = new PakatApiV3Sdk.GetDeviceBrowserStats();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetEmailCampaign.spec.js b/test/model/GetEmailCampaign.spec.js
index 85c7670b..a3bba208 100644
--- a/test/model/GetEmailCampaign.spec.js
+++ b/test/model/GetEmailCampaign.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetEmailCampaign();
+    instance = new PakatApiV3Sdk.GetEmailCampaign();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetEmailCampaign', function() {
     it('should create an instance of GetEmailCampaign', function() {
       // uncomment below and update the code to test GetEmailCampaign
-      //var instane = new SibApiV3Sdk.GetEmailCampaign();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetEmailCampaign);
+      //var instane = new PakatApiV3Sdk.GetEmailCampaign();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetEmailCampaign);
     });
 
     it('should have the property recipients (base name: "recipients")', function() {
       // uncomment below and update the code to test the property recipients
-      //var instane = new SibApiV3Sdk.GetEmailCampaign();
+      //var instane = new PakatApiV3Sdk.GetEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property statistics (base name: "statistics")', function() {
       // uncomment below and update the code to test the property statistics
-      //var instane = new SibApiV3Sdk.GetEmailCampaign();
+      //var instane = new PakatApiV3Sdk.GetEmailCampaign();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetEmailCampaigns.spec.js b/test/model/GetEmailCampaigns.spec.js
index 4a71d89d..9e8aa8a6 100644
--- a/test/model/GetEmailCampaigns.spec.js
+++ b/test/model/GetEmailCampaigns.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetEmailCampaigns();
+    instance = new PakatApiV3Sdk.GetEmailCampaigns();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetEmailCampaigns', function() {
     it('should create an instance of GetEmailCampaigns', function() {
       // uncomment below and update the code to test GetEmailCampaigns
-      //var instane = new SibApiV3Sdk.GetEmailCampaigns();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetEmailCampaigns);
+      //var instane = new PakatApiV3Sdk.GetEmailCampaigns();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetEmailCampaigns);
     });
 
     it('should have the property campaigns (base name: "campaigns")', function() {
       // uncomment below and update the code to test the property campaigns
-      //var instane = new SibApiV3Sdk.GetEmailCampaigns();
+      //var instane = new PakatApiV3Sdk.GetEmailCampaigns();
       //expect(instance).to.be();
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetEmailCampaigns();
+      //var instane = new PakatApiV3Sdk.GetEmailCampaigns();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetEmailEventReport.spec.js b/test/model/GetEmailEventReport.spec.js
index 9008d029..254a4aed 100644
--- a/test/model/GetEmailEventReport.spec.js
+++ b/test/model/GetEmailEventReport.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetEmailEventReport();
+    instance = new PakatApiV3Sdk.GetEmailEventReport();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetEmailEventReport', function() {
     it('should create an instance of GetEmailEventReport', function() {
       // uncomment below and update the code to test GetEmailEventReport
-      //var instane = new SibApiV3Sdk.GetEmailEventReport();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetEmailEventReport);
+      //var instane = new PakatApiV3Sdk.GetEmailEventReport();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetEmailEventReport);
     });
 
     it('should have the property events (base name: "events")', function() {
       // uncomment below and update the code to test the property events
-      //var instane = new SibApiV3Sdk.GetEmailEventReport();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReport();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetEmailEventReportEvents.spec.js b/test/model/GetEmailEventReportEvents.spec.js
index 594aaf14..951acc2d 100644
--- a/test/model/GetEmailEventReportEvents.spec.js
+++ b/test/model/GetEmailEventReportEvents.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetEmailEventReportEvents();
+    instance = new PakatApiV3Sdk.GetEmailEventReportEvents();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,67 +53,67 @@
   describe('GetEmailEventReportEvents', function() {
     it('should create an instance of GetEmailEventReportEvents', function() {
       // uncomment below and update the code to test GetEmailEventReportEvents
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetEmailEventReportEvents);
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetEmailEventReportEvents);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property _date (base name: "date")', function() {
       // uncomment below and update the code to test the property _date
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property messageId (base name: "messageId")', function() {
       // uncomment below and update the code to test the property messageId
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property event (base name: "event")', function() {
       // uncomment below and update the code to test the property event
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property reason (base name: "reason")', function() {
       // uncomment below and update the code to test the property reason
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property tag (base name: "tag")', function() {
       // uncomment below and update the code to test the property tag
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property link (base name: "link")', function() {
       // uncomment below and update the code to test the property link
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property from (base name: "from")', function() {
       // uncomment below and update the code to test the property from
-      //var instane = new SibApiV3Sdk.GetEmailEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetEmailEventReportEvents();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedCampaignOverview.spec.js b/test/model/GetExtendedCampaignOverview.spec.js
index 7c4a6ac3..faf3f1c9 100644
--- a/test/model/GetExtendedCampaignOverview.spec.js
+++ b/test/model/GetExtendedCampaignOverview.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedCampaignOverview();
+    instance = new PakatApiV3Sdk.GetExtendedCampaignOverview();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,103 +53,103 @@
   describe('GetExtendedCampaignOverview', function() {
     it('should create an instance of GetExtendedCampaignOverview', function() {
       // uncomment below and update the code to test GetExtendedCampaignOverview
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedCampaignOverview);
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedCampaignOverview);
     });
 
     it('should have the property testSent (base name: "testSent")', function() {
       // uncomment below and update the code to test the property testSent
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property header (base name: "header")', function() {
       // uncomment below and update the code to test the property header
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property footer (base name: "footer")', function() {
       // uncomment below and update the code to test the property footer
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property replyTo (base name: "replyTo")', function() {
       // uncomment below and update the code to test the property replyTo
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property toField (base name: "toField")', function() {
       // uncomment below and update the code to test the property toField
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlContent (base name: "htmlContent")', function() {
       // uncomment below and update the code to test the property htmlContent
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property shareLink (base name: "shareLink")', function() {
       // uncomment below and update the code to test the property shareLink
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property tag (base name: "tag")', function() {
       // uncomment below and update the code to test the property tag
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property createdAt (base name: "createdAt")', function() {
       // uncomment below and update the code to test the property createdAt
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property modifiedAt (base name: "modifiedAt")', function() {
       // uncomment below and update the code to test the property modifiedAt
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property inlineImageActivation (base name: "inlineImageActivation")', function() {
       // uncomment below and update the code to test the property inlineImageActivation
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property mirrorActive (base name: "mirrorActive")', function() {
       // uncomment below and update the code to test the property mirrorActive
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property recurring (base name: "recurring")', function() {
       // uncomment below and update the code to test the property recurring
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property sentDate (base name: "sentDate")', function() {
       // uncomment below and update the code to test the property sentDate
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property returnBounce (base name: "returnBounce")', function() {
       // uncomment below and update the code to test the property returnBounce
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverview();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedCampaignOverviewSender.spec.js b/test/model/GetExtendedCampaignOverviewSender.spec.js
index 199fe665..b5d73f56 100644
--- a/test/model/GetExtendedCampaignOverviewSender.spec.js
+++ b/test/model/GetExtendedCampaignOverviewSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedCampaignOverviewSender();
+    instance = new PakatApiV3Sdk.GetExtendedCampaignOverviewSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('GetExtendedCampaignOverviewSender', function() {
     it('should create an instance of GetExtendedCampaignOverviewSender', function() {
       // uncomment below and update the code to test GetExtendedCampaignOverviewSender
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverviewSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedCampaignOverviewSender);
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverviewSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedCampaignOverviewSender);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverviewSender();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverviewSender();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverviewSender();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverviewSender();
       //expect(instance).to.be();
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignOverviewSender();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignOverviewSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedCampaignStats.spec.js b/test/model/GetExtendedCampaignStats.spec.js
index 09bd444c..3403ede2 100644
--- a/test/model/GetExtendedCampaignStats.spec.js
+++ b/test/model/GetExtendedCampaignStats.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedCampaignStats();
+    instance = new PakatApiV3Sdk.GetExtendedCampaignStats();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,55 +53,55 @@
   describe('GetExtendedCampaignStats', function() {
     it('should create an instance of GetExtendedCampaignStats', function() {
       // uncomment below and update the code to test GetExtendedCampaignStats
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignStats();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedCampaignStats);
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignStats();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedCampaignStats);
     });
 
     it('should have the property globalStats (base name: "globalStats")', function() {
       // uncomment below and update the code to test the property globalStats
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property campaignStats (base name: "campaignStats")', function() {
       // uncomment below and update the code to test the property campaignStats
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property mirrorClick (base name: "mirrorClick")', function() {
       // uncomment below and update the code to test the property mirrorClick
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property remaining (base name: "remaining")', function() {
       // uncomment below and update the code to test the property remaining
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property linksStats (base name: "linksStats")', function() {
       // uncomment below and update the code to test the property linksStats
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property statsByDomain (base name: "statsByDomain")', function() {
       // uncomment below and update the code to test the property statsByDomain
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property statsByDevice (base name: "statsByDevice")', function() {
       // uncomment below and update the code to test the property statsByDevice
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property statsByBrowser (base name: "statsByBrowser")', function() {
       // uncomment below and update the code to test the property statsByBrowser
-      //var instane = new SibApiV3Sdk.GetExtendedCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetExtendedCampaignStats();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedClient.spec.js b/test/model/GetExtendedClient.spec.js
index c099d536..44f7000a 100644
--- a/test/model/GetExtendedClient.spec.js
+++ b/test/model/GetExtendedClient.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedClient();
+    instance = new PakatApiV3Sdk.GetExtendedClient();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetExtendedClient', function() {
     it('should create an instance of GetExtendedClient', function() {
       // uncomment below and update the code to test GetExtendedClient
-      //var instane = new SibApiV3Sdk.GetExtendedClient();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedClient);
+      //var instane = new PakatApiV3Sdk.GetExtendedClient();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedClient);
     });
 
     it('should have the property address (base name: "address")', function() {
       // uncomment below and update the code to test the property address
-      //var instane = new SibApiV3Sdk.GetExtendedClient();
+      //var instane = new PakatApiV3Sdk.GetExtendedClient();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedClientAddress.spec.js b/test/model/GetExtendedClientAddress.spec.js
index bbaad892..54aa4a69 100644
--- a/test/model/GetExtendedClientAddress.spec.js
+++ b/test/model/GetExtendedClientAddress.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedClientAddress();
+    instance = new PakatApiV3Sdk.GetExtendedClientAddress();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetExtendedClientAddress', function() {
     it('should create an instance of GetExtendedClientAddress', function() {
       // uncomment below and update the code to test GetExtendedClientAddress
-      //var instane = new SibApiV3Sdk.GetExtendedClientAddress();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedClientAddress);
+      //var instane = new PakatApiV3Sdk.GetExtendedClientAddress();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedClientAddress);
     });
 
     it('should have the property street (base name: "street")', function() {
       // uncomment below and update the code to test the property street
-      //var instane = new SibApiV3Sdk.GetExtendedClientAddress();
+      //var instane = new PakatApiV3Sdk.GetExtendedClientAddress();
       //expect(instance).to.be();
     });
 
     it('should have the property city (base name: "city")', function() {
       // uncomment below and update the code to test the property city
-      //var instane = new SibApiV3Sdk.GetExtendedClientAddress();
+      //var instane = new PakatApiV3Sdk.GetExtendedClientAddress();
       //expect(instance).to.be();
     });
 
     it('should have the property zipCode (base name: "zipCode")', function() {
       // uncomment below and update the code to test the property zipCode
-      //var instane = new SibApiV3Sdk.GetExtendedClientAddress();
+      //var instane = new PakatApiV3Sdk.GetExtendedClientAddress();
       //expect(instance).to.be();
     });
 
     it('should have the property country (base name: "country")', function() {
       // uncomment below and update the code to test the property country
-      //var instane = new SibApiV3Sdk.GetExtendedClientAddress();
+      //var instane = new PakatApiV3Sdk.GetExtendedClientAddress();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedContactDetails.spec.js b/test/model/GetExtendedContactDetails.spec.js
index 7bb5c23c..c503bacc 100644
--- a/test/model/GetExtendedContactDetails.spec.js
+++ b/test/model/GetExtendedContactDetails.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedContactDetails();
+    instance = new PakatApiV3Sdk.GetExtendedContactDetails();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetExtendedContactDetails', function() {
     it('should create an instance of GetExtendedContactDetails', function() {
       // uncomment below and update the code to test GetExtendedContactDetails
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetails();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedContactDetails);
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetails();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedContactDetails);
     });
 
     it('should have the property statistics (base name: "statistics")', function() {
       // uncomment below and update the code to test the property statistics
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetails();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetails();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedContactDetailsStatistics.spec.js b/test/model/GetExtendedContactDetailsStatistics.spec.js
index 01519b2c..e5ef5ff2 100644
--- a/test/model/GetExtendedContactDetailsStatistics.spec.js
+++ b/test/model/GetExtendedContactDetailsStatistics.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedContactDetailsStatistics();
+    instance = new PakatApiV3Sdk.GetExtendedContactDetailsStatistics();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,55 +53,55 @@
   describe('GetExtendedContactDetailsStatistics', function() {
     it('should create an instance of GetExtendedContactDetailsStatistics', function() {
       // uncomment below and update the code to test GetExtendedContactDetailsStatistics
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatistics();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedContactDetailsStatistics);
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatistics();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedContactDetailsStatistics);
     });
 
     it('should have the property messagesSent (base name: "messagesSent")', function() {
       // uncomment below and update the code to test the property messagesSent
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatistics();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property hardBounces (base name: "hardBounces")', function() {
       // uncomment below and update the code to test the property hardBounces
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatistics();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property softBounces (base name: "softBounces")', function() {
       // uncomment below and update the code to test the property softBounces
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatistics();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property complaints (base name: "complaints")', function() {
       // uncomment below and update the code to test the property complaints
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatistics();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property unsubscriptions (base name: "unsubscriptions")', function() {
       // uncomment below and update the code to test the property unsubscriptions
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatistics();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property opened (base name: "opened")', function() {
       // uncomment below and update the code to test the property opened
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatistics();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property clicked (base name: "clicked")', function() {
       // uncomment below and update the code to test the property clicked
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatistics();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatistics();
       //expect(instance).to.be();
     });
 
     it('should have the property transacAttributes (base name: "transacAttributes")', function() {
       // uncomment below and update the code to test the property transacAttributes
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatistics();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatistics();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedContactDetailsStatisticsClicked.spec.js b/test/model/GetExtendedContactDetailsStatisticsClicked.spec.js
index 78eff699..1386847e 100644
--- a/test/model/GetExtendedContactDetailsStatisticsClicked.spec.js
+++ b/test/model/GetExtendedContactDetailsStatisticsClicked.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsClicked();
+    instance = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsClicked();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetExtendedContactDetailsStatisticsClicked', function() {
     it('should create an instance of GetExtendedContactDetailsStatisticsClicked', function() {
       // uncomment below and update the code to test GetExtendedContactDetailsStatisticsClicked
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsClicked();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedContactDetailsStatisticsClicked);
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsClicked();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedContactDetailsStatisticsClicked);
     });
 
     it('should have the property campaignId (base name: "campaignId")', function() {
       // uncomment below and update the code to test the property campaignId
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsClicked();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsClicked();
       //expect(instance).to.be();
     });
 
     it('should have the property links (base name: "links")', function() {
       // uncomment below and update the code to test the property links
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsClicked();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsClicked();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedContactDetailsStatisticsLinks.spec.js b/test/model/GetExtendedContactDetailsStatisticsLinks.spec.js
index 6acda699..35ee9993 100644
--- a/test/model/GetExtendedContactDetailsStatisticsLinks.spec.js
+++ b/test/model/GetExtendedContactDetailsStatisticsLinks.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
+    instance = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetExtendedContactDetailsStatisticsLinks', function() {
     it('should create an instance of GetExtendedContactDetailsStatisticsLinks', function() {
       // uncomment below and update the code to test GetExtendedContactDetailsStatisticsLinks
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks);
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks);
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
       //expect(instance).to.be();
     });
 
     it('should have the property eventTime (base name: "eventTime")', function() {
       // uncomment below and update the code to test the property eventTime
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
       //expect(instance).to.be();
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
       //expect(instance).to.be();
     });
 
     it('should have the property url (base name: "url")', function() {
       // uncomment below and update the code to test the property url
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsLinks();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedContactDetailsStatisticsMessagesSent.spec.js b/test/model/GetExtendedContactDetailsStatisticsMessagesSent.spec.js
index 46648a7c..0d626e45 100644
--- a/test/model/GetExtendedContactDetailsStatisticsMessagesSent.spec.js
+++ b/test/model/GetExtendedContactDetailsStatisticsMessagesSent.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent();
+    instance = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetExtendedContactDetailsStatisticsMessagesSent', function() {
     it('should create an instance of GetExtendedContactDetailsStatisticsMessagesSent', function() {
       // uncomment below and update the code to test GetExtendedContactDetailsStatisticsMessagesSent
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent);
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent);
     });
 
     it('should have the property campaignId (base name: "campaignId")', function() {
       // uncomment below and update the code to test the property campaignId
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent();
       //expect(instance).to.be();
     });
 
     it('should have the property eventTime (base name: "eventTime")', function() {
       // uncomment below and update the code to test the property eventTime
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsMessagesSent();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedContactDetailsStatisticsOpened.spec.js b/test/model/GetExtendedContactDetailsStatisticsOpened.spec.js
index 6d11f7bb..6b471b7b 100644
--- a/test/model/GetExtendedContactDetailsStatisticsOpened.spec.js
+++ b/test/model/GetExtendedContactDetailsStatisticsOpened.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
+    instance = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetExtendedContactDetailsStatisticsOpened', function() {
     it('should create an instance of GetExtendedContactDetailsStatisticsOpened', function() {
       // uncomment below and update the code to test GetExtendedContactDetailsStatisticsOpened
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened);
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened);
     });
 
     it('should have the property campaignId (base name: "campaignId")', function() {
       // uncomment below and update the code to test the property campaignId
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
       //expect(instance).to.be();
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
       //expect(instance).to.be();
     });
 
     it('should have the property eventTime (base name: "eventTime")', function() {
       // uncomment below and update the code to test the property eventTime
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
       //expect(instance).to.be();
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsOpened();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedContactDetailsStatisticsUnsubscriptions.spec.js b/test/model/GetExtendedContactDetailsStatisticsUnsubscriptions.spec.js
index 089f9e73..82be9e49 100644
--- a/test/model/GetExtendedContactDetailsStatisticsUnsubscriptions.spec.js
+++ b/test/model/GetExtendedContactDetailsStatisticsUnsubscriptions.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions();
+    instance = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetExtendedContactDetailsStatisticsUnsubscriptions', function() {
     it('should create an instance of GetExtendedContactDetailsStatisticsUnsubscriptions', function() {
       // uncomment below and update the code to test GetExtendedContactDetailsStatisticsUnsubscriptions
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions);
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions);
     });
 
     it('should have the property userUnsubscription (base name: "userUnsubscription")', function() {
       // uncomment below and update the code to test the property userUnsubscription
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions();
       //expect(instance).to.be();
     });
 
     it('should have the property adminUnsubscription (base name: "adminUnsubscription")', function() {
       // uncomment below and update the code to test the property adminUnsubscription
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptions();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.spec.js b/test/model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.spec.js
index b9163b5a..afcc6c3b 100644
--- a/test/model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.spec.js
+++ b/test/model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription();
+    instance = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription', function() {
     it('should create an instance of GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription', function() {
       // uncomment below and update the code to test GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription);
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription);
     });
 
     it('should have the property eventTime (base name: "eventTime")', function() {
       // uncomment below and update the code to test the property eventTime
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription();
       //expect(instance).to.be();
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.spec.js b/test/model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.spec.js
index e6ec2c0f..5eb93005 100644
--- a/test/model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.spec.js
+++ b/test/model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription();
+    instance = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription', function() {
     it('should create an instance of GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription', function() {
       // uncomment below and update the code to test GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription);
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription);
     });
 
     it('should have the property campaignId (base name: "campaignId")', function() {
       // uncomment below and update the code to test the property campaignId
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription();
       //expect(instance).to.be();
     });
 
     it('should have the property eventTime (base name: "eventTime")', function() {
       // uncomment below and update the code to test the property eventTime
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription();
       //expect(instance).to.be();
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription();
+      //var instane = new PakatApiV3Sdk.GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedList.spec.js b/test/model/GetExtendedList.spec.js
index da9e67f4..c9001568 100644
--- a/test/model/GetExtendedList.spec.js
+++ b/test/model/GetExtendedList.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedList();
+    instance = new PakatApiV3Sdk.GetExtendedList();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetExtendedList', function() {
     it('should create an instance of GetExtendedList', function() {
       // uncomment below and update the code to test GetExtendedList
-      //var instane = new SibApiV3Sdk.GetExtendedList();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedList);
+      //var instane = new PakatApiV3Sdk.GetExtendedList();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedList);
     });
 
     it('should have the property folderId (base name: "folderId")', function() {
       // uncomment below and update the code to test the property folderId
-      //var instane = new SibApiV3Sdk.GetExtendedList();
+      //var instane = new PakatApiV3Sdk.GetExtendedList();
       //expect(instance).to.be();
     });
 
     it('should have the property createdAt (base name: "createdAt")', function() {
       // uncomment below and update the code to test the property createdAt
-      //var instane = new SibApiV3Sdk.GetExtendedList();
+      //var instane = new PakatApiV3Sdk.GetExtendedList();
       //expect(instance).to.be();
     });
 
     it('should have the property campaignStats (base name: "campaignStats")', function() {
       // uncomment below and update the code to test the property campaignStats
-      //var instane = new SibApiV3Sdk.GetExtendedList();
+      //var instane = new PakatApiV3Sdk.GetExtendedList();
       //expect(instance).to.be();
     });
 
     it('should have the property dynamicList (base name: "dynamicList")', function() {
       // uncomment below and update the code to test the property dynamicList
-      //var instane = new SibApiV3Sdk.GetExtendedList();
+      //var instane = new PakatApiV3Sdk.GetExtendedList();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetExtendedListCampaignStats.spec.js b/test/model/GetExtendedListCampaignStats.spec.js
index 76a10a8f..0914d3c3 100644
--- a/test/model/GetExtendedListCampaignStats.spec.js
+++ b/test/model/GetExtendedListCampaignStats.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetExtendedListCampaignStats();
+    instance = new PakatApiV3Sdk.GetExtendedListCampaignStats();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetExtendedListCampaignStats', function() {
     it('should create an instance of GetExtendedListCampaignStats', function() {
       // uncomment below and update the code to test GetExtendedListCampaignStats
-      //var instane = new SibApiV3Sdk.GetExtendedListCampaignStats();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetExtendedListCampaignStats);
+      //var instane = new PakatApiV3Sdk.GetExtendedListCampaignStats();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetExtendedListCampaignStats);
     });
 
     it('should have the property campaignId (base name: "campaignId")', function() {
       // uncomment below and update the code to test the property campaignId
-      //var instane = new SibApiV3Sdk.GetExtendedListCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetExtendedListCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property stats (base name: "stats")', function() {
       // uncomment below and update the code to test the property stats
-      //var instane = new SibApiV3Sdk.GetExtendedListCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetExtendedListCampaignStats();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetFolder.spec.js b/test/model/GetFolder.spec.js
index 5676d151..4fe07c26 100644
--- a/test/model/GetFolder.spec.js
+++ b/test/model/GetFolder.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetFolder();
+    instance = new PakatApiV3Sdk.GetFolder();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,37 +53,37 @@
   describe('GetFolder', function() {
     it('should create an instance of GetFolder', function() {
       // uncomment below and update the code to test GetFolder
-      //var instane = new SibApiV3Sdk.GetFolder();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetFolder);
+      //var instane = new PakatApiV3Sdk.GetFolder();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetFolder);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetFolder();
+      //var instane = new PakatApiV3Sdk.GetFolder();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetFolder();
+      //var instane = new PakatApiV3Sdk.GetFolder();
       //expect(instance).to.be();
     });
 
     it('should have the property totalBlacklisted (base name: "totalBlacklisted")', function() {
       // uncomment below and update the code to test the property totalBlacklisted
-      //var instane = new SibApiV3Sdk.GetFolder();
+      //var instane = new PakatApiV3Sdk.GetFolder();
       //expect(instance).to.be();
     });
 
     it('should have the property totalSubscribers (base name: "totalSubscribers")', function() {
       // uncomment below and update the code to test the property totalSubscribers
-      //var instane = new SibApiV3Sdk.GetFolder();
+      //var instane = new PakatApiV3Sdk.GetFolder();
       //expect(instance).to.be();
     });
 
     it('should have the property uniqueSubscribers (base name: "uniqueSubscribers")', function() {
       // uncomment below and update the code to test the property uniqueSubscribers
-      //var instane = new SibApiV3Sdk.GetFolder();
+      //var instane = new PakatApiV3Sdk.GetFolder();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetFolderLists.spec.js b/test/model/GetFolderLists.spec.js
index 9c694696..5c41d363 100644
--- a/test/model/GetFolderLists.spec.js
+++ b/test/model/GetFolderLists.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetFolderLists();
+    instance = new PakatApiV3Sdk.GetFolderLists();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetFolderLists', function() {
     it('should create an instance of GetFolderLists', function() {
       // uncomment below and update the code to test GetFolderLists
-      //var instane = new SibApiV3Sdk.GetFolderLists();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetFolderLists);
+      //var instane = new PakatApiV3Sdk.GetFolderLists();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetFolderLists);
     });
 
     it('should have the property lists (base name: "lists")', function() {
       // uncomment below and update the code to test the property lists
-      //var instane = new SibApiV3Sdk.GetFolderLists();
+      //var instane = new PakatApiV3Sdk.GetFolderLists();
       //expect(instance).to.be();
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetFolderLists();
+      //var instane = new PakatApiV3Sdk.GetFolderLists();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetFolders.spec.js b/test/model/GetFolders.spec.js
index 03eefe62..74675c7d 100644
--- a/test/model/GetFolders.spec.js
+++ b/test/model/GetFolders.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetFolders();
+    instance = new PakatApiV3Sdk.GetFolders();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetFolders', function() {
     it('should create an instance of GetFolders', function() {
       // uncomment below and update the code to test GetFolders
-      //var instane = new SibApiV3Sdk.GetFolders();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetFolders);
+      //var instane = new PakatApiV3Sdk.GetFolders();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetFolders);
     });
 
     it('should have the property folders (base name: "folders")', function() {
       // uncomment below and update the code to test the property folders
-      //var instane = new SibApiV3Sdk.GetFolders();
+      //var instane = new PakatApiV3Sdk.GetFolders();
       //expect(instance).to.be();
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetFolders();
+      //var instane = new PakatApiV3Sdk.GetFolders();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetIp.spec.js b/test/model/GetIp.spec.js
index e927cc2d..b7f96947 100644
--- a/test/model/GetIp.spec.js
+++ b/test/model/GetIp.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetIp();
+    instance = new PakatApiV3Sdk.GetIp();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetIp', function() {
     it('should create an instance of GetIp', function() {
       // uncomment below and update the code to test GetIp
-      //var instane = new SibApiV3Sdk.GetIp();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetIp);
+      //var instane = new PakatApiV3Sdk.GetIp();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetIp);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetIp();
+      //var instane = new PakatApiV3Sdk.GetIp();
       //expect(instance).to.be();
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.GetIp();
+      //var instane = new PakatApiV3Sdk.GetIp();
       //expect(instance).to.be();
     });
 
     it('should have the property active (base name: "active")', function() {
       // uncomment below and update the code to test the property active
-      //var instane = new SibApiV3Sdk.GetIp();
+      //var instane = new PakatApiV3Sdk.GetIp();
       //expect(instance).to.be();
     });
 
     it('should have the property domain (base name: "domain")', function() {
       // uncomment below and update the code to test the property domain
-      //var instane = new SibApiV3Sdk.GetIp();
+      //var instane = new PakatApiV3Sdk.GetIp();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetIpFromSender.spec.js b/test/model/GetIpFromSender.spec.js
index 1766b2db..fe8de44d 100644
--- a/test/model/GetIpFromSender.spec.js
+++ b/test/model/GetIpFromSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetIpFromSender();
+    instance = new PakatApiV3Sdk.GetIpFromSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetIpFromSender', function() {
     it('should create an instance of GetIpFromSender', function() {
       // uncomment below and update the code to test GetIpFromSender
-      //var instane = new SibApiV3Sdk.GetIpFromSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetIpFromSender);
+      //var instane = new PakatApiV3Sdk.GetIpFromSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetIpFromSender);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetIpFromSender();
+      //var instane = new PakatApiV3Sdk.GetIpFromSender();
       //expect(instance).to.be();
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.GetIpFromSender();
+      //var instane = new PakatApiV3Sdk.GetIpFromSender();
       //expect(instance).to.be();
     });
 
     it('should have the property domain (base name: "domain")', function() {
       // uncomment below and update the code to test the property domain
-      //var instane = new SibApiV3Sdk.GetIpFromSender();
+      //var instane = new PakatApiV3Sdk.GetIpFromSender();
       //expect(instance).to.be();
     });
 
     it('should have the property weight (base name: "weight")', function() {
       // uncomment below and update the code to test the property weight
-      //var instane = new SibApiV3Sdk.GetIpFromSender();
+      //var instane = new PakatApiV3Sdk.GetIpFromSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetIps.spec.js b/test/model/GetIps.spec.js
index 30557ef7..ba302545 100644
--- a/test/model/GetIps.spec.js
+++ b/test/model/GetIps.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetIps();
+    instance = new PakatApiV3Sdk.GetIps();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetIps', function() {
     it('should create an instance of GetIps', function() {
       // uncomment below and update the code to test GetIps
-      //var instane = new SibApiV3Sdk.GetIps();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetIps);
+      //var instane = new PakatApiV3Sdk.GetIps();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetIps);
     });
 
     it('should have the property ips (base name: "ips")', function() {
       // uncomment below and update the code to test the property ips
-      //var instane = new SibApiV3Sdk.GetIps();
+      //var instane = new PakatApiV3Sdk.GetIps();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetIpsFromSender.spec.js b/test/model/GetIpsFromSender.spec.js
index 60bc82fc..0901fcc9 100644
--- a/test/model/GetIpsFromSender.spec.js
+++ b/test/model/GetIpsFromSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetIpsFromSender();
+    instance = new PakatApiV3Sdk.GetIpsFromSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetIpsFromSender', function() {
     it('should create an instance of GetIpsFromSender', function() {
       // uncomment below and update the code to test GetIpsFromSender
-      //var instane = new SibApiV3Sdk.GetIpsFromSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetIpsFromSender);
+      //var instane = new PakatApiV3Sdk.GetIpsFromSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetIpsFromSender);
     });
 
     it('should have the property ips (base name: "ips")', function() {
       // uncomment below and update the code to test the property ips
-      //var instane = new SibApiV3Sdk.GetIpsFromSender();
+      //var instane = new PakatApiV3Sdk.GetIpsFromSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetList.spec.js b/test/model/GetList.spec.js
index 676a59fb..4da7e4c2 100644
--- a/test/model/GetList.spec.js
+++ b/test/model/GetList.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetList();
+    instance = new PakatApiV3Sdk.GetList();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetList', function() {
     it('should create an instance of GetList', function() {
       // uncomment below and update the code to test GetList
-      //var instane = new SibApiV3Sdk.GetList();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetList);
+      //var instane = new PakatApiV3Sdk.GetList();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetList);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetList();
+      //var instane = new PakatApiV3Sdk.GetList();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetList();
+      //var instane = new PakatApiV3Sdk.GetList();
       //expect(instance).to.be();
     });
 
     it('should have the property totalBlacklisted (base name: "totalBlacklisted")', function() {
       // uncomment below and update the code to test the property totalBlacklisted
-      //var instane = new SibApiV3Sdk.GetList();
+      //var instane = new PakatApiV3Sdk.GetList();
       //expect(instance).to.be();
     });
 
     it('should have the property totalSubscribers (base name: "totalSubscribers")', function() {
       // uncomment below and update the code to test the property totalSubscribers
-      //var instane = new SibApiV3Sdk.GetList();
+      //var instane = new PakatApiV3Sdk.GetList();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetLists.spec.js b/test/model/GetLists.spec.js
index 6aeeda07..6d74da87 100644
--- a/test/model/GetLists.spec.js
+++ b/test/model/GetLists.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetLists();
+    instance = new PakatApiV3Sdk.GetLists();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetLists', function() {
     it('should create an instance of GetLists', function() {
       // uncomment below and update the code to test GetLists
-      //var instane = new SibApiV3Sdk.GetLists();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetLists);
+      //var instane = new PakatApiV3Sdk.GetLists();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetLists);
     });
 
     it('should have the property lists (base name: "lists")', function() {
       // uncomment below and update the code to test the property lists
-      //var instane = new SibApiV3Sdk.GetLists();
+      //var instane = new PakatApiV3Sdk.GetLists();
       //expect(instance).to.be();
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetLists();
+      //var instane = new PakatApiV3Sdk.GetLists();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetProcess.spec.js b/test/model/GetProcess.spec.js
index 9d7a4e88..c860bf35 100644
--- a/test/model/GetProcess.spec.js
+++ b/test/model/GetProcess.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetProcess();
+    instance = new PakatApiV3Sdk.GetProcess();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetProcess', function() {
     it('should create an instance of GetProcess', function() {
       // uncomment below and update the code to test GetProcess
-      //var instane = new SibApiV3Sdk.GetProcess();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetProcess);
+      //var instane = new PakatApiV3Sdk.GetProcess();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetProcess);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetProcess();
+      //var instane = new PakatApiV3Sdk.GetProcess();
       //expect(instance).to.be();
     });
 
     it('should have the property status (base name: "status")', function() {
       // uncomment below and update the code to test the property status
-      //var instane = new SibApiV3Sdk.GetProcess();
+      //var instane = new PakatApiV3Sdk.GetProcess();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetProcess();
+      //var instane = new PakatApiV3Sdk.GetProcess();
       //expect(instance).to.be();
     });
 
     it('should have the property exportUrl (base name: "export_url")', function() {
       // uncomment below and update the code to test the property exportUrl
-      //var instane = new SibApiV3Sdk.GetProcess();
+      //var instane = new PakatApiV3Sdk.GetProcess();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetProcesses.spec.js b/test/model/GetProcesses.spec.js
index 4ea0e5e1..2bf90318 100644
--- a/test/model/GetProcesses.spec.js
+++ b/test/model/GetProcesses.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetProcesses();
+    instance = new PakatApiV3Sdk.GetProcesses();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetProcesses', function() {
     it('should create an instance of GetProcesses', function() {
       // uncomment below and update the code to test GetProcesses
-      //var instane = new SibApiV3Sdk.GetProcesses();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetProcesses);
+      //var instane = new PakatApiV3Sdk.GetProcesses();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetProcesses);
     });
 
     it('should have the property processes (base name: "processes")', function() {
       // uncomment below and update the code to test the property processes
-      //var instane = new SibApiV3Sdk.GetProcesses();
+      //var instane = new PakatApiV3Sdk.GetProcesses();
       //expect(instance).to.be();
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetProcesses();
+      //var instane = new PakatApiV3Sdk.GetProcesses();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetReports.spec.js b/test/model/GetReports.spec.js
index 7057f7b2..c1a9fec3 100644
--- a/test/model/GetReports.spec.js
+++ b/test/model/GetReports.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetReports();
+    instance = new PakatApiV3Sdk.GetReports();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetReports', function() {
     it('should create an instance of GetReports', function() {
       // uncomment below and update the code to test GetReports
-      //var instane = new SibApiV3Sdk.GetReports();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetReports);
+      //var instane = new PakatApiV3Sdk.GetReports();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetReports);
     });
 
     it('should have the property reports (base name: "reports")', function() {
       // uncomment below and update the code to test the property reports
-      //var instane = new SibApiV3Sdk.GetReports();
+      //var instane = new PakatApiV3Sdk.GetReports();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetReportsReports.spec.js b/test/model/GetReportsReports.spec.js
index 4273447b..06194c57 100644
--- a/test/model/GetReportsReports.spec.js
+++ b/test/model/GetReportsReports.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetReportsReports();
+    instance = new PakatApiV3Sdk.GetReportsReports();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,85 +53,85 @@
   describe('GetReportsReports', function() {
     it('should create an instance of GetReportsReports', function() {
       // uncomment below and update the code to test GetReportsReports
-      //var instane = new SibApiV3Sdk.GetReportsReports();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetReportsReports);
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetReportsReports);
     });
 
     it('should have the property _date (base name: "date")', function() {
       // uncomment below and update the code to test the property _date
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property requests (base name: "requests")', function() {
       // uncomment below and update the code to test the property requests
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property delivered (base name: "delivered")', function() {
       // uncomment below and update the code to test the property delivered
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property hardBounces (base name: "hardBounces")', function() {
       // uncomment below and update the code to test the property hardBounces
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property softBounces (base name: "softBounces")', function() {
       // uncomment below and update the code to test the property softBounces
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property clicks (base name: "clicks")', function() {
       // uncomment below and update the code to test the property clicks
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property uniqueClicks (base name: "uniqueClicks")', function() {
       // uncomment below and update the code to test the property uniqueClicks
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property opens (base name: "opens")', function() {
       // uncomment below and update the code to test the property opens
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property uniqueOpens (base name: "uniqueOpens")', function() {
       // uncomment below and update the code to test the property uniqueOpens
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property spamReports (base name: "spamReports")', function() {
       // uncomment below and update the code to test the property spamReports
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property blocked (base name: "blocked")', function() {
       // uncomment below and update the code to test the property blocked
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property invalid (base name: "invalid")', function() {
       // uncomment below and update the code to test the property invalid
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
     it('should have the property unsubscribed (base name: "unsubscribed")', function() {
       // uncomment below and update the code to test the property unsubscribed
-      //var instane = new SibApiV3Sdk.GetReportsReports();
+      //var instane = new PakatApiV3Sdk.GetReportsReports();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSendersList.spec.js b/test/model/GetSendersList.spec.js
index 644ac7e1..5c24788e 100644
--- a/test/model/GetSendersList.spec.js
+++ b/test/model/GetSendersList.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSendersList();
+    instance = new PakatApiV3Sdk.GetSendersList();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetSendersList', function() {
     it('should create an instance of GetSendersList', function() {
       // uncomment below and update the code to test GetSendersList
-      //var instane = new SibApiV3Sdk.GetSendersList();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSendersList);
+      //var instane = new PakatApiV3Sdk.GetSendersList();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSendersList);
     });
 
     it('should have the property senders (base name: "senders")', function() {
       // uncomment below and update the code to test the property senders
-      //var instane = new SibApiV3Sdk.GetSendersList();
+      //var instane = new PakatApiV3Sdk.GetSendersList();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSendersListIps.spec.js b/test/model/GetSendersListIps.spec.js
index 629019c4..0f2ce260 100644
--- a/test/model/GetSendersListIps.spec.js
+++ b/test/model/GetSendersListIps.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSendersListIps();
+    instance = new PakatApiV3Sdk.GetSendersListIps();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('GetSendersListIps', function() {
     it('should create an instance of GetSendersListIps', function() {
       // uncomment below and update the code to test GetSendersListIps
-      //var instane = new SibApiV3Sdk.GetSendersListIps();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSendersListIps);
+      //var instane = new PakatApiV3Sdk.GetSendersListIps();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSendersListIps);
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.GetSendersListIps();
+      //var instane = new PakatApiV3Sdk.GetSendersListIps();
       //expect(instance).to.be();
     });
 
     it('should have the property domain (base name: "domain")', function() {
       // uncomment below and update the code to test the property domain
-      //var instane = new SibApiV3Sdk.GetSendersListIps();
+      //var instane = new PakatApiV3Sdk.GetSendersListIps();
       //expect(instance).to.be();
     });
 
     it('should have the property weight (base name: "weight")', function() {
       // uncomment below and update the code to test the property weight
-      //var instane = new SibApiV3Sdk.GetSendersListIps();
+      //var instane = new PakatApiV3Sdk.GetSendersListIps();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSendersListSenders.spec.js b/test/model/GetSendersListSenders.spec.js
index 9dee8338..9b471e3e 100644
--- a/test/model/GetSendersListSenders.spec.js
+++ b/test/model/GetSendersListSenders.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSendersListSenders();
+    instance = new PakatApiV3Sdk.GetSendersListSenders();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,37 +53,37 @@
   describe('GetSendersListSenders', function() {
     it('should create an instance of GetSendersListSenders', function() {
       // uncomment below and update the code to test GetSendersListSenders
-      //var instane = new SibApiV3Sdk.GetSendersListSenders();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSendersListSenders);
+      //var instane = new PakatApiV3Sdk.GetSendersListSenders();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSendersListSenders);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetSendersListSenders();
+      //var instane = new PakatApiV3Sdk.GetSendersListSenders();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetSendersListSenders();
+      //var instane = new PakatApiV3Sdk.GetSendersListSenders();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.GetSendersListSenders();
+      //var instane = new PakatApiV3Sdk.GetSendersListSenders();
       //expect(instance).to.be();
     });
 
     it('should have the property active (base name: "active")', function() {
       // uncomment below and update the code to test the property active
-      //var instane = new SibApiV3Sdk.GetSendersListSenders();
+      //var instane = new PakatApiV3Sdk.GetSendersListSenders();
       //expect(instance).to.be();
     });
 
     it('should have the property ips (base name: "ips")', function() {
       // uncomment below and update the code to test the property ips
-      //var instane = new SibApiV3Sdk.GetSendersListSenders();
+      //var instane = new PakatApiV3Sdk.GetSendersListSenders();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSharedTemplateUrl.spec.js b/test/model/GetSharedTemplateUrl.spec.js
index fadf0c7e..62082089 100644
--- a/test/model/GetSharedTemplateUrl.spec.js
+++ b/test/model/GetSharedTemplateUrl.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSharedTemplateUrl();
+    instance = new PakatApiV3Sdk.GetSharedTemplateUrl();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetSharedTemplateUrl', function() {
     it('should create an instance of GetSharedTemplateUrl', function() {
       // uncomment below and update the code to test GetSharedTemplateUrl
-      //var instane = new SibApiV3Sdk.GetSharedTemplateUrl();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSharedTemplateUrl);
+      //var instane = new PakatApiV3Sdk.GetSharedTemplateUrl();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSharedTemplateUrl);
     });
 
     it('should have the property sharedUrl (base name: "sharedUrl")', function() {
       // uncomment below and update the code to test the property sharedUrl
-      //var instane = new SibApiV3Sdk.GetSharedTemplateUrl();
+      //var instane = new PakatApiV3Sdk.GetSharedTemplateUrl();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSmsCampaign.spec.js b/test/model/GetSmsCampaign.spec.js
index f941eda7..a1a99fe1 100644
--- a/test/model/GetSmsCampaign.spec.js
+++ b/test/model/GetSmsCampaign.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSmsCampaign();
+    instance = new PakatApiV3Sdk.GetSmsCampaign();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetSmsCampaign', function() {
     it('should create an instance of GetSmsCampaign', function() {
       // uncomment below and update the code to test GetSmsCampaign
-      //var instane = new SibApiV3Sdk.GetSmsCampaign();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSmsCampaign);
+      //var instane = new PakatApiV3Sdk.GetSmsCampaign();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSmsCampaign);
     });
 
     it('should have the property recipients (base name: "recipients")', function() {
       // uncomment below and update the code to test the property recipients
-      //var instane = new SibApiV3Sdk.GetSmsCampaign();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property statistics (base name: "statistics")', function() {
       // uncomment below and update the code to test the property statistics
-      //var instane = new SibApiV3Sdk.GetSmsCampaign();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaign();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSmsCampaignOverview.spec.js b/test/model/GetSmsCampaignOverview.spec.js
index 9a608660..e9e8afe9 100644
--- a/test/model/GetSmsCampaignOverview.spec.js
+++ b/test/model/GetSmsCampaignOverview.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSmsCampaignOverview();
+    instance = new PakatApiV3Sdk.GetSmsCampaignOverview();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,55 +53,55 @@
   describe('GetSmsCampaignOverview', function() {
     it('should create an instance of GetSmsCampaignOverview', function() {
       // uncomment below and update the code to test GetSmsCampaignOverview
-      //var instane = new SibApiV3Sdk.GetSmsCampaignOverview();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSmsCampaignOverview);
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignOverview();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSmsCampaignOverview);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetSmsCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetSmsCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property status (base name: "status")', function() {
       // uncomment below and update the code to test the property status
-      //var instane = new SibApiV3Sdk.GetSmsCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property content (base name: "content")', function() {
       // uncomment below and update the code to test the property content
-      //var instane = new SibApiV3Sdk.GetSmsCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property scheduledAt (base name: "scheduledAt")', function() {
       // uncomment below and update the code to test the property scheduledAt
-      //var instane = new SibApiV3Sdk.GetSmsCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.GetSmsCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property createdAt (base name: "createdAt")', function() {
       // uncomment below and update the code to test the property createdAt
-      //var instane = new SibApiV3Sdk.GetSmsCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property modifiedAt (base name: "modifiedAt")', function() {
       // uncomment below and update the code to test the property modifiedAt
-      //var instane = new SibApiV3Sdk.GetSmsCampaignOverview();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignOverview();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSmsCampaignStats.spec.js b/test/model/GetSmsCampaignStats.spec.js
index 76c33b3e..1b5f12f2 100644
--- a/test/model/GetSmsCampaignStats.spec.js
+++ b/test/model/GetSmsCampaignStats.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSmsCampaignStats();
+    instance = new PakatApiV3Sdk.GetSmsCampaignStats();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,49 +53,49 @@
   describe('GetSmsCampaignStats', function() {
     it('should create an instance of GetSmsCampaignStats', function() {
       // uncomment below and update the code to test GetSmsCampaignStats
-      //var instane = new SibApiV3Sdk.GetSmsCampaignStats();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSmsCampaignStats);
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignStats();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSmsCampaignStats);
     });
 
     it('should have the property delivered (base name: "delivered")', function() {
       // uncomment below and update the code to test the property delivered
-      //var instane = new SibApiV3Sdk.GetSmsCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property sent (base name: "sent")', function() {
       // uncomment below and update the code to test the property sent
-      //var instane = new SibApiV3Sdk.GetSmsCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property processing (base name: "processing")', function() {
       // uncomment below and update the code to test the property processing
-      //var instane = new SibApiV3Sdk.GetSmsCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property softBounces (base name: "softBounces")', function() {
       // uncomment below and update the code to test the property softBounces
-      //var instane = new SibApiV3Sdk.GetSmsCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property hardBounces (base name: "hardBounces")', function() {
       // uncomment below and update the code to test the property hardBounces
-      //var instane = new SibApiV3Sdk.GetSmsCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property unsubscriptions (base name: "unsubscriptions")', function() {
       // uncomment below and update the code to test the property unsubscriptions
-      //var instane = new SibApiV3Sdk.GetSmsCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignStats();
       //expect(instance).to.be();
     });
 
     it('should have the property answered (base name: "answered")', function() {
       // uncomment below and update the code to test the property answered
-      //var instane = new SibApiV3Sdk.GetSmsCampaignStats();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaignStats();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSmsCampaigns.spec.js b/test/model/GetSmsCampaigns.spec.js
index 11fb6cdd..c171f9da 100644
--- a/test/model/GetSmsCampaigns.spec.js
+++ b/test/model/GetSmsCampaigns.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSmsCampaigns();
+    instance = new PakatApiV3Sdk.GetSmsCampaigns();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetSmsCampaigns', function() {
     it('should create an instance of GetSmsCampaigns', function() {
       // uncomment below and update the code to test GetSmsCampaigns
-      //var instane = new SibApiV3Sdk.GetSmsCampaigns();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSmsCampaigns);
+      //var instane = new PakatApiV3Sdk.GetSmsCampaigns();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSmsCampaigns);
     });
 
     it('should have the property campaigns (base name: "campaigns")', function() {
       // uncomment below and update the code to test the property campaigns
-      //var instane = new SibApiV3Sdk.GetSmsCampaigns();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaigns();
       //expect(instance).to.be();
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetSmsCampaigns();
+      //var instane = new PakatApiV3Sdk.GetSmsCampaigns();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSmsEventReport.spec.js b/test/model/GetSmsEventReport.spec.js
index 7acb7efd..d132ffc0 100644
--- a/test/model/GetSmsEventReport.spec.js
+++ b/test/model/GetSmsEventReport.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSmsEventReport();
+    instance = new PakatApiV3Sdk.GetSmsEventReport();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetSmsEventReport', function() {
     it('should create an instance of GetSmsEventReport', function() {
       // uncomment below and update the code to test GetSmsEventReport
-      //var instane = new SibApiV3Sdk.GetSmsEventReport();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSmsEventReport);
+      //var instane = new PakatApiV3Sdk.GetSmsEventReport();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSmsEventReport);
     });
 
     it('should have the property events (base name: "events")', function() {
       // uncomment below and update the code to test the property events
-      //var instane = new SibApiV3Sdk.GetSmsEventReport();
+      //var instane = new PakatApiV3Sdk.GetSmsEventReport();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSmsEventReportEvents.spec.js b/test/model/GetSmsEventReportEvents.spec.js
index 08ae4706..e9636abc 100644
--- a/test/model/GetSmsEventReportEvents.spec.js
+++ b/test/model/GetSmsEventReportEvents.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSmsEventReportEvents();
+    instance = new PakatApiV3Sdk.GetSmsEventReportEvents();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,49 +53,49 @@
   describe('GetSmsEventReportEvents', function() {
     it('should create an instance of GetSmsEventReportEvents', function() {
       // uncomment below and update the code to test GetSmsEventReportEvents
-      //var instane = new SibApiV3Sdk.GetSmsEventReportEvents();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSmsEventReportEvents);
+      //var instane = new PakatApiV3Sdk.GetSmsEventReportEvents();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSmsEventReportEvents);
     });
 
     it('should have the property phoneNumber (base name: "phoneNumber")', function() {
       // uncomment below and update the code to test the property phoneNumber
-      //var instane = new SibApiV3Sdk.GetSmsEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetSmsEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property _date (base name: "date")', function() {
       // uncomment below and update the code to test the property _date
-      //var instane = new SibApiV3Sdk.GetSmsEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetSmsEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property messageId (base name: "messageId")', function() {
       // uncomment below and update the code to test the property messageId
-      //var instane = new SibApiV3Sdk.GetSmsEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetSmsEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property event (base name: "event")', function() {
       // uncomment below and update the code to test the property event
-      //var instane = new SibApiV3Sdk.GetSmsEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetSmsEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property reason (base name: "reason")', function() {
       // uncomment below and update the code to test the property reason
-      //var instane = new SibApiV3Sdk.GetSmsEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetSmsEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property reply (base name: "reply")', function() {
       // uncomment below and update the code to test the property reply
-      //var instane = new SibApiV3Sdk.GetSmsEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetSmsEventReportEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property tag (base name: "tag")', function() {
       // uncomment below and update the code to test the property tag
-      //var instane = new SibApiV3Sdk.GetSmsEventReportEvents();
+      //var instane = new PakatApiV3Sdk.GetSmsEventReportEvents();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSmtpTemplateOverview.spec.js b/test/model/GetSmtpTemplateOverview.spec.js
index c3c96a83..7e04835f 100644
--- a/test/model/GetSmtpTemplateOverview.spec.js
+++ b/test/model/GetSmtpTemplateOverview.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSmtpTemplateOverview();
+    instance = new PakatApiV3Sdk.GetSmtpTemplateOverview();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,85 +53,85 @@
   describe('GetSmtpTemplateOverview', function() {
     it('should create an instance of GetSmtpTemplateOverview', function() {
       // uncomment below and update the code to test GetSmtpTemplateOverview
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSmtpTemplateOverview);
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSmtpTemplateOverview);
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property isActive (base name: "isActive")', function() {
       // uncomment below and update the code to test the property isActive
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property testSent (base name: "testSent")', function() {
       // uncomment below and update the code to test the property testSent
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property replyTo (base name: "replyTo")', function() {
       // uncomment below and update the code to test the property replyTo
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property toField (base name: "toField")', function() {
       // uncomment below and update the code to test the property toField
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property tag (base name: "tag")', function() {
       // uncomment below and update the code to test the property tag
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlContent (base name: "htmlContent")', function() {
       // uncomment below and update the code to test the property htmlContent
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property createdAt (base name: "createdAt")', function() {
       // uncomment below and update the code to test the property createdAt
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property modifiedAt (base name: "modifiedAt")', function() {
       // uncomment below and update the code to test the property modifiedAt
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
     it('should have the property doiTemplate (base name: "doiTemplate")', function() {
       // uncomment below and update the code to test the property doiTemplate
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverview();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverview();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSmtpTemplateOverviewSender.spec.js b/test/model/GetSmtpTemplateOverviewSender.spec.js
index ca40bf5c..af86c537 100644
--- a/test/model/GetSmtpTemplateOverviewSender.spec.js
+++ b/test/model/GetSmtpTemplateOverviewSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSmtpTemplateOverviewSender();
+    instance = new PakatApiV3Sdk.GetSmtpTemplateOverviewSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('GetSmtpTemplateOverviewSender', function() {
     it('should create an instance of GetSmtpTemplateOverviewSender', function() {
       // uncomment below and update the code to test GetSmtpTemplateOverviewSender
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverviewSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSmtpTemplateOverviewSender);
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverviewSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSmtpTemplateOverviewSender);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverviewSender();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverviewSender();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverviewSender();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverviewSender();
       //expect(instance).to.be();
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetSmtpTemplateOverviewSender();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplateOverviewSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSmtpTemplates.spec.js b/test/model/GetSmtpTemplates.spec.js
index 251b4163..048092d9 100644
--- a/test/model/GetSmtpTemplates.spec.js
+++ b/test/model/GetSmtpTemplates.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSmtpTemplates();
+    instance = new PakatApiV3Sdk.GetSmtpTemplates();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetSmtpTemplates', function() {
     it('should create an instance of GetSmtpTemplates', function() {
       // uncomment below and update the code to test GetSmtpTemplates
-      //var instane = new SibApiV3Sdk.GetSmtpTemplates();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSmtpTemplates);
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplates();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSmtpTemplates);
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetSmtpTemplates();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplates();
       //expect(instance).to.be();
     });
 
     it('should have the property templates (base name: "templates")', function() {
       // uncomment below and update the code to test the property templates
-      //var instane = new SibApiV3Sdk.GetSmtpTemplates();
+      //var instane = new PakatApiV3Sdk.GetSmtpTemplates();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetSsoToken.spec.js b/test/model/GetSsoToken.spec.js
index 1a6960bc..b8efe641 100644
--- a/test/model/GetSsoToken.spec.js
+++ b/test/model/GetSsoToken.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetSsoToken();
+    instance = new PakatApiV3Sdk.GetSsoToken();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetSsoToken', function() {
     it('should create an instance of GetSsoToken', function() {
       // uncomment below and update the code to test GetSsoToken
-      //var instane = new SibApiV3Sdk.GetSsoToken();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetSsoToken);
+      //var instane = new PakatApiV3Sdk.GetSsoToken();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetSsoToken);
     });
 
     it('should have the property token (base name: "token")', function() {
       // uncomment below and update the code to test the property token
-      //var instane = new SibApiV3Sdk.GetSsoToken();
+      //var instane = new PakatApiV3Sdk.GetSsoToken();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetStatsByBrowser.spec.js b/test/model/GetStatsByBrowser.spec.js
index 27cffbee..efb336b1 100644
--- a/test/model/GetStatsByBrowser.spec.js
+++ b/test/model/GetStatsByBrowser.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetStatsByBrowser();
+    instance = new PakatApiV3Sdk.GetStatsByBrowser();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,8 +53,8 @@
   describe('GetStatsByBrowser', function() {
     it('should create an instance of GetStatsByBrowser', function() {
       // uncomment below and update the code to test GetStatsByBrowser
-      //var instane = new SibApiV3Sdk.GetStatsByBrowser();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetStatsByBrowser);
+      //var instane = new PakatApiV3Sdk.GetStatsByBrowser();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetStatsByBrowser);
     });
 
   });
diff --git a/test/model/GetStatsByDevice.spec.js b/test/model/GetStatsByDevice.spec.js
index 1b242dcc..167cbf84 100644
--- a/test/model/GetStatsByDevice.spec.js
+++ b/test/model/GetStatsByDevice.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetStatsByDevice();
+    instance = new PakatApiV3Sdk.GetStatsByDevice();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetStatsByDevice', function() {
     it('should create an instance of GetStatsByDevice', function() {
       // uncomment below and update the code to test GetStatsByDevice
-      //var instane = new SibApiV3Sdk.GetStatsByDevice();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetStatsByDevice);
+      //var instane = new PakatApiV3Sdk.GetStatsByDevice();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetStatsByDevice);
     });
 
     it('should have the property desktop (base name: "desktop")', function() {
       // uncomment below and update the code to test the property desktop
-      //var instane = new SibApiV3Sdk.GetStatsByDevice();
+      //var instane = new PakatApiV3Sdk.GetStatsByDevice();
       //expect(instance).to.be();
     });
 
     it('should have the property mobile (base name: "mobile")', function() {
       // uncomment below and update the code to test the property mobile
-      //var instane = new SibApiV3Sdk.GetStatsByDevice();
+      //var instane = new PakatApiV3Sdk.GetStatsByDevice();
       //expect(instance).to.be();
     });
 
     it('should have the property tablet (base name: "tablet")', function() {
       // uncomment below and update the code to test the property tablet
-      //var instane = new SibApiV3Sdk.GetStatsByDevice();
+      //var instane = new PakatApiV3Sdk.GetStatsByDevice();
       //expect(instance).to.be();
     });
 
     it('should have the property unknown (base name: "unknown")', function() {
       // uncomment below and update the code to test the property unknown
-      //var instane = new SibApiV3Sdk.GetStatsByDevice();
+      //var instane = new PakatApiV3Sdk.GetStatsByDevice();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetStatsByDomain.spec.js b/test/model/GetStatsByDomain.spec.js
index 639e006d..34eb7dae 100644
--- a/test/model/GetStatsByDomain.spec.js
+++ b/test/model/GetStatsByDomain.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetStatsByDomain();
+    instance = new PakatApiV3Sdk.GetStatsByDomain();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,8 +53,8 @@
   describe('GetStatsByDomain', function() {
     it('should create an instance of GetStatsByDomain', function() {
       // uncomment below and update the code to test GetStatsByDomain
-      //var instane = new SibApiV3Sdk.GetStatsByDomain();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetStatsByDomain);
+      //var instane = new PakatApiV3Sdk.GetStatsByDomain();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetStatsByDomain);
     });
 
   });
diff --git a/test/model/GetTransacAggregatedSmsReport.spec.js b/test/model/GetTransacAggregatedSmsReport.spec.js
index fc847fec..e17f54dc 100644
--- a/test/model/GetTransacAggregatedSmsReport.spec.js
+++ b/test/model/GetTransacAggregatedSmsReport.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+    instance = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,67 +53,67 @@
   describe('GetTransacAggregatedSmsReport', function() {
     it('should create an instance of GetTransacAggregatedSmsReport', function() {
       // uncomment below and update the code to test GetTransacAggregatedSmsReport
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetTransacAggregatedSmsReport);
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetTransacAggregatedSmsReport);
     });
 
     it('should have the property range (base name: "range")', function() {
       // uncomment below and update the code to test the property range
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
       //expect(instance).to.be();
     });
 
     it('should have the property requests (base name: "requests")', function() {
       // uncomment below and update the code to test the property requests
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
       //expect(instance).to.be();
     });
 
     it('should have the property delivered (base name: "delivered")', function() {
       // uncomment below and update the code to test the property delivered
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
       //expect(instance).to.be();
     });
 
     it('should have the property hardBounces (base name: "hardBounces")', function() {
       // uncomment below and update the code to test the property hardBounces
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
       //expect(instance).to.be();
     });
 
     it('should have the property softBounces (base name: "softBounces")', function() {
       // uncomment below and update the code to test the property softBounces
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
       //expect(instance).to.be();
     });
 
     it('should have the property blocked (base name: "blocked")', function() {
       // uncomment below and update the code to test the property blocked
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
       //expect(instance).to.be();
     });
 
     it('should have the property unsubscribed (base name: "unsubscribed")', function() {
       // uncomment below and update the code to test the property unsubscribed
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
       //expect(instance).to.be();
     });
 
     it('should have the property replied (base name: "replied")', function() {
       // uncomment below and update the code to test the property replied
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
       //expect(instance).to.be();
     });
 
     it('should have the property accepted (base name: "accepted")', function() {
       // uncomment below and update the code to test the property accepted
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
       //expect(instance).to.be();
     });
 
     it('should have the property rejected (base name: "rejected")', function() {
       // uncomment below and update the code to test the property rejected
-      //var instane = new SibApiV3Sdk.GetTransacAggregatedSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacAggregatedSmsReport();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetTransacBlockedContacts.spec.js b/test/model/GetTransacBlockedContacts.spec.js
index 05a7e230..b12abe79 100644
--- a/test/model/GetTransacBlockedContacts.spec.js
+++ b/test/model/GetTransacBlockedContacts.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetTransacBlockedContacts();
+    instance = new PakatApiV3Sdk.GetTransacBlockedContacts();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetTransacBlockedContacts', function() {
     it('should create an instance of GetTransacBlockedContacts', function() {
       // uncomment below and update the code to test GetTransacBlockedContacts
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContacts();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetTransacBlockedContacts);
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContacts();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetTransacBlockedContacts);
     });
 
     it('should have the property count (base name: "count")', function() {
       // uncomment below and update the code to test the property count
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContacts();
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContacts();
       //expect(instance).to.be();
     });
 
     it('should have the property contacts (base name: "contacts")', function() {
       // uncomment below and update the code to test the property contacts
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContacts();
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContacts();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetTransacBlockedContactsContacts.spec.js b/test/model/GetTransacBlockedContactsContacts.spec.js
index 561c548e..7e15d67e 100644
--- a/test/model/GetTransacBlockedContactsContacts.spec.js
+++ b/test/model/GetTransacBlockedContactsContacts.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetTransacBlockedContactsContacts();
+    instance = new PakatApiV3Sdk.GetTransacBlockedContactsContacts();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('GetTransacBlockedContactsContacts', function() {
     it('should create an instance of GetTransacBlockedContactsContacts', function() {
       // uncomment below and update the code to test GetTransacBlockedContactsContacts
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContactsContacts();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetTransacBlockedContactsContacts);
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContactsContacts();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetTransacBlockedContactsContacts);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContactsContacts();
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContactsContacts();
       //expect(instance).to.be();
     });
 
     it('should have the property senderEmail (base name: "senderEmail")', function() {
       // uncomment below and update the code to test the property senderEmail
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContactsContacts();
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContactsContacts();
       //expect(instance).to.be();
     });
 
     it('should have the property reason (base name: "reason")', function() {
       // uncomment below and update the code to test the property reason
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContactsContacts();
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContactsContacts();
       //expect(instance).to.be();
     });
 
     it('should have the property blockedAt (base name: "blockedAt")', function() {
       // uncomment below and update the code to test the property blockedAt
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContactsContacts();
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContactsContacts();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetTransacBlockedContactsReason.spec.js b/test/model/GetTransacBlockedContactsReason.spec.js
index cdcb7e33..5ad37182 100644
--- a/test/model/GetTransacBlockedContactsReason.spec.js
+++ b/test/model/GetTransacBlockedContactsReason.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetTransacBlockedContactsReason();
+    instance = new PakatApiV3Sdk.GetTransacBlockedContactsReason();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetTransacBlockedContactsReason', function() {
     it('should create an instance of GetTransacBlockedContactsReason', function() {
       // uncomment below and update the code to test GetTransacBlockedContactsReason
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContactsReason();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetTransacBlockedContactsReason);
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContactsReason();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetTransacBlockedContactsReason);
     });
 
     it('should have the property code (base name: "code")', function() {
       // uncomment below and update the code to test the property code
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContactsReason();
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContactsReason();
       //expect(instance).to.be();
     });
 
     it('should have the property message (base name: "message")', function() {
       // uncomment below and update the code to test the property message
-      //var instane = new SibApiV3Sdk.GetTransacBlockedContactsReason();
+      //var instane = new PakatApiV3Sdk.GetTransacBlockedContactsReason();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetTransacEmailContent.spec.js b/test/model/GetTransacEmailContent.spec.js
index 311a5a0c..b879c162 100644
--- a/test/model/GetTransacEmailContent.spec.js
+++ b/test/model/GetTransacEmailContent.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetTransacEmailContent();
+    instance = new PakatApiV3Sdk.GetTransacEmailContent();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,49 +53,49 @@
   describe('GetTransacEmailContent', function() {
     it('should create an instance of GetTransacEmailContent', function() {
       // uncomment below and update the code to test GetTransacEmailContent
-      //var instane = new SibApiV3Sdk.GetTransacEmailContent();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetTransacEmailContent);
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContent();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetTransacEmailContent);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.GetTransacEmailContent();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContent();
       //expect(instance).to.be();
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.GetTransacEmailContent();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContent();
       //expect(instance).to.be();
     });
 
     it('should have the property templateId (base name: "templateId")', function() {
       // uncomment below and update the code to test the property templateId
-      //var instane = new SibApiV3Sdk.GetTransacEmailContent();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContent();
       //expect(instance).to.be();
     });
 
     it('should have the property _date (base name: "date")', function() {
       // uncomment below and update the code to test the property _date
-      //var instane = new SibApiV3Sdk.GetTransacEmailContent();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContent();
       //expect(instance).to.be();
     });
 
     it('should have the property events (base name: "events")', function() {
       // uncomment below and update the code to test the property events
-      //var instane = new SibApiV3Sdk.GetTransacEmailContent();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContent();
       //expect(instance).to.be();
     });
 
     it('should have the property body (base name: "body")', function() {
       // uncomment below and update the code to test the property body
-      //var instane = new SibApiV3Sdk.GetTransacEmailContent();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContent();
       //expect(instance).to.be();
     });
 
     it('should have the property attachmentCount (base name: "attachmentCount")', function() {
       // uncomment below and update the code to test the property attachmentCount
-      //var instane = new SibApiV3Sdk.GetTransacEmailContent();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContent();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetTransacEmailContentEvents.spec.js b/test/model/GetTransacEmailContentEvents.spec.js
index 763f2ae9..4b4e8fa1 100644
--- a/test/model/GetTransacEmailContentEvents.spec.js
+++ b/test/model/GetTransacEmailContentEvents.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetTransacEmailContentEvents();
+    instance = new PakatApiV3Sdk.GetTransacEmailContentEvents();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('GetTransacEmailContentEvents', function() {
     it('should create an instance of GetTransacEmailContentEvents', function() {
       // uncomment below and update the code to test GetTransacEmailContentEvents
-      //var instane = new SibApiV3Sdk.GetTransacEmailContentEvents();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetTransacEmailContentEvents);
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContentEvents();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetTransacEmailContentEvents);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.GetTransacEmailContentEvents();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContentEvents();
       //expect(instance).to.be();
     });
 
     it('should have the property time (base name: "time")', function() {
       // uncomment below and update the code to test the property time
-      //var instane = new SibApiV3Sdk.GetTransacEmailContentEvents();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailContentEvents();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetTransacEmailsList.spec.js b/test/model/GetTransacEmailsList.spec.js
index e6939a7b..31284a74 100644
--- a/test/model/GetTransacEmailsList.spec.js
+++ b/test/model/GetTransacEmailsList.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetTransacEmailsList();
+    instance = new PakatApiV3Sdk.GetTransacEmailsList();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetTransacEmailsList', function() {
     it('should create an instance of GetTransacEmailsList', function() {
       // uncomment below and update the code to test GetTransacEmailsList
-      //var instane = new SibApiV3Sdk.GetTransacEmailsList();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetTransacEmailsList);
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsList();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetTransacEmailsList);
     });
 
     it('should have the property transactionalEmails (base name: "transactionalEmails")', function() {
       // uncomment below and update the code to test the property transactionalEmails
-      //var instane = new SibApiV3Sdk.GetTransacEmailsList();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsList();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetTransacEmailsListTransactionalEmails.spec.js b/test/model/GetTransacEmailsListTransactionalEmails.spec.js
index f19ef1c0..130fbf0b 100644
--- a/test/model/GetTransacEmailsListTransactionalEmails.spec.js
+++ b/test/model/GetTransacEmailsListTransactionalEmails.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetTransacEmailsListTransactionalEmails();
+    instance = new PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,55 +53,55 @@
   describe('GetTransacEmailsListTransactionalEmails', function() {
     it('should create an instance of GetTransacEmailsListTransactionalEmails', function() {
       // uncomment below and update the code to test GetTransacEmailsListTransactionalEmails
-      //var instane = new SibApiV3Sdk.GetTransacEmailsListTransactionalEmails();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetTransacEmailsListTransactionalEmails);
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.GetTransacEmailsListTransactionalEmails();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails();
       //expect(instance).to.be();
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.GetTransacEmailsListTransactionalEmails();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails();
       //expect(instance).to.be();
     });
 
     it('should have the property templateId (base name: "templateId")', function() {
       // uncomment below and update the code to test the property templateId
-      //var instane = new SibApiV3Sdk.GetTransacEmailsListTransactionalEmails();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails();
       //expect(instance).to.be();
     });
 
     it('should have the property messageId (base name: "messageId")', function() {
       // uncomment below and update the code to test the property messageId
-      //var instane = new SibApiV3Sdk.GetTransacEmailsListTransactionalEmails();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails();
       //expect(instance).to.be();
     });
 
     it('should have the property uuid (base name: "uuid")', function() {
       // uncomment below and update the code to test the property uuid
-      //var instane = new SibApiV3Sdk.GetTransacEmailsListTransactionalEmails();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails();
       //expect(instance).to.be();
     });
 
     it('should have the property _date (base name: "date")', function() {
       // uncomment below and update the code to test the property _date
-      //var instane = new SibApiV3Sdk.GetTransacEmailsListTransactionalEmails();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails();
       //expect(instance).to.be();
     });
 
     it('should have the property from (base name: "from")', function() {
       // uncomment below and update the code to test the property from
-      //var instane = new SibApiV3Sdk.GetTransacEmailsListTransactionalEmails();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails();
       //expect(instance).to.be();
     });
 
     it('should have the property tags (base name: "tags")', function() {
       // uncomment below and update the code to test the property tags
-      //var instane = new SibApiV3Sdk.GetTransacEmailsListTransactionalEmails();
+      //var instane = new PakatApiV3Sdk.GetTransacEmailsListTransactionalEmails();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetTransacSmsReport.spec.js b/test/model/GetTransacSmsReport.spec.js
index 8a19e981..ec2a7316 100644
--- a/test/model/GetTransacSmsReport.spec.js
+++ b/test/model/GetTransacSmsReport.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetTransacSmsReport();
+    instance = new PakatApiV3Sdk.GetTransacSmsReport();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetTransacSmsReport', function() {
     it('should create an instance of GetTransacSmsReport', function() {
       // uncomment below and update the code to test GetTransacSmsReport
-      //var instane = new SibApiV3Sdk.GetTransacSmsReport();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetTransacSmsReport);
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReport();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetTransacSmsReport);
     });
 
     it('should have the property reports (base name: "reports")', function() {
       // uncomment below and update the code to test the property reports
-      //var instane = new SibApiV3Sdk.GetTransacSmsReport();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReport();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetTransacSmsReportReports.spec.js b/test/model/GetTransacSmsReportReports.spec.js
index 1ecf7a45..7c8bba04 100644
--- a/test/model/GetTransacSmsReportReports.spec.js
+++ b/test/model/GetTransacSmsReportReports.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetTransacSmsReportReports();
+    instance = new PakatApiV3Sdk.GetTransacSmsReportReports();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,67 +53,67 @@
   describe('GetTransacSmsReportReports', function() {
     it('should create an instance of GetTransacSmsReportReports', function() {
       // uncomment below and update the code to test GetTransacSmsReportReports
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetTransacSmsReportReports);
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetTransacSmsReportReports);
     });
 
     it('should have the property _date (base name: "date")', function() {
       // uncomment below and update the code to test the property _date
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
       //expect(instance).to.be();
     });
 
     it('should have the property requests (base name: "requests")', function() {
       // uncomment below and update the code to test the property requests
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
       //expect(instance).to.be();
     });
 
     it('should have the property delivered (base name: "delivered")', function() {
       // uncomment below and update the code to test the property delivered
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
       //expect(instance).to.be();
     });
 
     it('should have the property hardBounces (base name: "hardBounces")', function() {
       // uncomment below and update the code to test the property hardBounces
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
       //expect(instance).to.be();
     });
 
     it('should have the property softBounces (base name: "softBounces")', function() {
       // uncomment below and update the code to test the property softBounces
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
       //expect(instance).to.be();
     });
 
     it('should have the property blocked (base name: "blocked")', function() {
       // uncomment below and update the code to test the property blocked
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
       //expect(instance).to.be();
     });
 
     it('should have the property unsubscribed (base name: "unsubscribed")', function() {
       // uncomment below and update the code to test the property unsubscribed
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
       //expect(instance).to.be();
     });
 
     it('should have the property replied (base name: "replied")', function() {
       // uncomment below and update the code to test the property replied
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
       //expect(instance).to.be();
     });
 
     it('should have the property accepted (base name: "accepted")', function() {
       // uncomment below and update the code to test the property accepted
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
       //expect(instance).to.be();
     });
 
     it('should have the property rejected (base name: "rejected")', function() {
       // uncomment below and update the code to test the property rejected
-      //var instane = new SibApiV3Sdk.GetTransacSmsReportReports();
+      //var instane = new PakatApiV3Sdk.GetTransacSmsReportReports();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetWebhook.spec.js b/test/model/GetWebhook.spec.js
index 4eee1ed4..565a887e 100644
--- a/test/model/GetWebhook.spec.js
+++ b/test/model/GetWebhook.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetWebhook();
+    instance = new PakatApiV3Sdk.GetWebhook();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,49 +53,49 @@
   describe('GetWebhook', function() {
     it('should create an instance of GetWebhook', function() {
       // uncomment below and update the code to test GetWebhook
-      //var instane = new SibApiV3Sdk.GetWebhook();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetWebhook);
+      //var instane = new PakatApiV3Sdk.GetWebhook();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetWebhook);
     });
 
     it('should have the property url (base name: "url")', function() {
       // uncomment below and update the code to test the property url
-      //var instane = new SibApiV3Sdk.GetWebhook();
+      //var instane = new PakatApiV3Sdk.GetWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.GetWebhook();
+      //var instane = new PakatApiV3Sdk.GetWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property description (base name: "description")', function() {
       // uncomment below and update the code to test the property description
-      //var instane = new SibApiV3Sdk.GetWebhook();
+      //var instane = new PakatApiV3Sdk.GetWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property events (base name: "events")', function() {
       // uncomment below and update the code to test the property events
-      //var instane = new SibApiV3Sdk.GetWebhook();
+      //var instane = new PakatApiV3Sdk.GetWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property type (base name: "type")', function() {
       // uncomment below and update the code to test the property type
-      //var instane = new SibApiV3Sdk.GetWebhook();
+      //var instane = new PakatApiV3Sdk.GetWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property createdAt (base name: "createdAt")', function() {
       // uncomment below and update the code to test the property createdAt
-      //var instane = new SibApiV3Sdk.GetWebhook();
+      //var instane = new PakatApiV3Sdk.GetWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property modifiedAt (base name: "modifiedAt")', function() {
       // uncomment below and update the code to test the property modifiedAt
-      //var instane = new SibApiV3Sdk.GetWebhook();
+      //var instane = new PakatApiV3Sdk.GetWebhook();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/GetWebhooks.spec.js b/test/model/GetWebhooks.spec.js
index 44bc430c..09f0f0b6 100644
--- a/test/model/GetWebhooks.spec.js
+++ b/test/model/GetWebhooks.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.GetWebhooks();
+    instance = new PakatApiV3Sdk.GetWebhooks();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('GetWebhooks', function() {
     it('should create an instance of GetWebhooks', function() {
       // uncomment below and update the code to test GetWebhooks
-      //var instane = new SibApiV3Sdk.GetWebhooks();
-      //expect(instance).to.be.a(SibApiV3Sdk.GetWebhooks);
+      //var instane = new PakatApiV3Sdk.GetWebhooks();
+      //expect(instance).to.be.a(PakatApiV3Sdk.GetWebhooks);
     });
 
     it('should have the property webhooks (base name: "webhooks")', function() {
       // uncomment below and update the code to test the property webhooks
-      //var instane = new SibApiV3Sdk.GetWebhooks();
+      //var instane = new PakatApiV3Sdk.GetWebhooks();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/ManageIp.spec.js b/test/model/ManageIp.spec.js
index fc4d8d72..92236f25 100644
--- a/test/model/ManageIp.spec.js
+++ b/test/model/ManageIp.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.ManageIp();
+    instance = new PakatApiV3Sdk.ManageIp();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('ManageIp', function() {
     it('should create an instance of ManageIp', function() {
       // uncomment below and update the code to test ManageIp
-      //var instane = new SibApiV3Sdk.ManageIp();
-      //expect(instance).to.be.a(SibApiV3Sdk.ManageIp);
+      //var instane = new PakatApiV3Sdk.ManageIp();
+      //expect(instance).to.be.a(PakatApiV3Sdk.ManageIp);
     });
 
     it('should have the property ip (base name: "ip")', function() {
       // uncomment below and update the code to test the property ip
-      //var instane = new SibApiV3Sdk.ManageIp();
+      //var instane = new PakatApiV3Sdk.ManageIp();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/PostContactInfo.spec.js b/test/model/PostContactInfo.spec.js
index 2e31e669..b8b22b63 100644
--- a/test/model/PostContactInfo.spec.js
+++ b/test/model/PostContactInfo.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.PostContactInfo();
+    instance = new PakatApiV3Sdk.PostContactInfo();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('PostContactInfo', function() {
     it('should create an instance of PostContactInfo', function() {
       // uncomment below and update the code to test PostContactInfo
-      //var instane = new SibApiV3Sdk.PostContactInfo();
-      //expect(instance).to.be.a(SibApiV3Sdk.PostContactInfo);
+      //var instane = new PakatApiV3Sdk.PostContactInfo();
+      //expect(instance).to.be.a(PakatApiV3Sdk.PostContactInfo);
     });
 
     it('should have the property contacts (base name: "contacts")', function() {
       // uncomment below and update the code to test the property contacts
-      //var instane = new SibApiV3Sdk.PostContactInfo();
+      //var instane = new PakatApiV3Sdk.PostContactInfo();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/PostContactInfoContacts.spec.js b/test/model/PostContactInfoContacts.spec.js
index 145f6514..8fff1200 100644
--- a/test/model/PostContactInfoContacts.spec.js
+++ b/test/model/PostContactInfoContacts.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.PostContactInfoContacts();
+    instance = new PakatApiV3Sdk.PostContactInfoContacts();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('PostContactInfoContacts', function() {
     it('should create an instance of PostContactInfoContacts', function() {
       // uncomment below and update the code to test PostContactInfoContacts
-      //var instane = new SibApiV3Sdk.PostContactInfoContacts();
-      //expect(instance).to.be.a(SibApiV3Sdk.PostContactInfoContacts);
+      //var instane = new PakatApiV3Sdk.PostContactInfoContacts();
+      //expect(instance).to.be.a(PakatApiV3Sdk.PostContactInfoContacts);
     });
 
     it('should have the property success (base name: "success")', function() {
       // uncomment below and update the code to test the property success
-      //var instane = new SibApiV3Sdk.PostContactInfoContacts();
+      //var instane = new PakatApiV3Sdk.PostContactInfoContacts();
       //expect(instance).to.be();
     });
 
     it('should have the property failure (base name: "failure")', function() {
       // uncomment below and update the code to test the property failure
-      //var instane = new SibApiV3Sdk.PostContactInfoContacts();
+      //var instane = new PakatApiV3Sdk.PostContactInfoContacts();
       //expect(instance).to.be();
     });
 
     it('should have the property total (base name: "total")', function() {
       // uncomment below and update the code to test the property total
-      //var instane = new SibApiV3Sdk.PostContactInfoContacts();
+      //var instane = new PakatApiV3Sdk.PostContactInfoContacts();
       //expect(instance).to.be();
     });
 
     it('should have the property processId (base name: "processId")', function() {
       // uncomment below and update the code to test the property processId
-      //var instane = new SibApiV3Sdk.PostContactInfoContacts();
+      //var instane = new PakatApiV3Sdk.PostContactInfoContacts();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/PostSendFailed.spec.js b/test/model/PostSendFailed.spec.js
index 67090ce7..83bf9bd0 100644
--- a/test/model/PostSendFailed.spec.js
+++ b/test/model/PostSendFailed.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.PostSendFailed();
+    instance = new PakatApiV3Sdk.PostSendFailed();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,37 +53,37 @@
   describe('PostSendFailed', function() {
     it('should create an instance of PostSendFailed', function() {
       // uncomment below and update the code to test PostSendFailed
-      //var instane = new SibApiV3Sdk.PostSendFailed();
-      //expect(instance).to.be.a(SibApiV3Sdk.PostSendFailed);
+      //var instane = new PakatApiV3Sdk.PostSendFailed();
+      //expect(instance).to.be.a(PakatApiV3Sdk.PostSendFailed);
     });
 
     it('should have the property code (base name: "code")', function() {
       // uncomment below and update the code to test the property code
-      //var instane = new SibApiV3Sdk.PostSendFailed();
+      //var instane = new PakatApiV3Sdk.PostSendFailed();
       //expect(instance).to.be();
     });
 
     it('should have the property message (base name: "message")', function() {
       // uncomment below and update the code to test the property message
-      //var instane = new SibApiV3Sdk.PostSendFailed();
+      //var instane = new PakatApiV3Sdk.PostSendFailed();
       //expect(instance).to.be();
     });
 
     it('should have the property unexistingEmails (base name: "unexistingEmails")', function() {
       // uncomment below and update the code to test the property unexistingEmails
-      //var instane = new SibApiV3Sdk.PostSendFailed();
+      //var instane = new PakatApiV3Sdk.PostSendFailed();
       //expect(instance).to.be();
     });
 
     it('should have the property withoutListEmails (base name: "withoutListEmails")', function() {
       // uncomment below and update the code to test the property withoutListEmails
-      //var instane = new SibApiV3Sdk.PostSendFailed();
+      //var instane = new PakatApiV3Sdk.PostSendFailed();
       //expect(instance).to.be();
     });
 
     it('should have the property blackListedEmails (base name: "blackListedEmails")', function() {
       // uncomment below and update the code to test the property blackListedEmails
-      //var instane = new SibApiV3Sdk.PostSendFailed();
+      //var instane = new PakatApiV3Sdk.PostSendFailed();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/PostSendSmsTestFailed.spec.js b/test/model/PostSendSmsTestFailed.spec.js
index d413c2f2..935e1af8 100644
--- a/test/model/PostSendSmsTestFailed.spec.js
+++ b/test/model/PostSendSmsTestFailed.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.PostSendSmsTestFailed();
+    instance = new PakatApiV3Sdk.PostSendSmsTestFailed();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('PostSendSmsTestFailed', function() {
     it('should create an instance of PostSendSmsTestFailed', function() {
       // uncomment below and update the code to test PostSendSmsTestFailed
-      //var instane = new SibApiV3Sdk.PostSendSmsTestFailed();
-      //expect(instance).to.be.a(SibApiV3Sdk.PostSendSmsTestFailed);
+      //var instane = new PakatApiV3Sdk.PostSendSmsTestFailed();
+      //expect(instance).to.be.a(PakatApiV3Sdk.PostSendSmsTestFailed);
     });
 
     it('should have the property code (base name: "code")', function() {
       // uncomment below and update the code to test the property code
-      //var instane = new SibApiV3Sdk.PostSendSmsTestFailed();
+      //var instane = new PakatApiV3Sdk.PostSendSmsTestFailed();
       //expect(instance).to.be();
     });
 
     it('should have the property message (base name: "message")', function() {
       // uncomment below and update the code to test the property message
-      //var instane = new SibApiV3Sdk.PostSendSmsTestFailed();
+      //var instane = new PakatApiV3Sdk.PostSendSmsTestFailed();
       //expect(instance).to.be();
     });
 
     it('should have the property unexistingSms (base name: "unexistingSms")', function() {
       // uncomment below and update the code to test the property unexistingSms
-      //var instane = new SibApiV3Sdk.PostSendSmsTestFailed();
+      //var instane = new PakatApiV3Sdk.PostSendSmsTestFailed();
       //expect(instance).to.be();
     });
 
     it('should have the property withoutListSms (base name: "withoutListSms")', function() {
       // uncomment below and update the code to test the property withoutListSms
-      //var instane = new SibApiV3Sdk.PostSendSmsTestFailed();
+      //var instane = new PakatApiV3Sdk.PostSendSmsTestFailed();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/RemainingCreditModel.spec.js b/test/model/RemainingCreditModel.spec.js
index 0fd63765..37cb93aa 100644
--- a/test/model/RemainingCreditModel.spec.js
+++ b/test/model/RemainingCreditModel.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.RemainingCreditModel();
+    instance = new PakatApiV3Sdk.RemainingCreditModel();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('RemainingCreditModel', function() {
     it('should create an instance of RemainingCreditModel', function() {
       // uncomment below and update the code to test RemainingCreditModel
-      //var instane = new SibApiV3Sdk.RemainingCreditModel();
-      //expect(instance).to.be.a(SibApiV3Sdk.RemainingCreditModel);
+      //var instane = new PakatApiV3Sdk.RemainingCreditModel();
+      //expect(instance).to.be.a(PakatApiV3Sdk.RemainingCreditModel);
     });
 
     it('should have the property child (base name: "child")', function() {
       // uncomment below and update the code to test the property child
-      //var instane = new SibApiV3Sdk.RemainingCreditModel();
+      //var instane = new PakatApiV3Sdk.RemainingCreditModel();
       //expect(instance).to.be();
     });
 
     it('should have the property reseller (base name: "reseller")', function() {
       // uncomment below and update the code to test the property reseller
-      //var instane = new SibApiV3Sdk.RemainingCreditModel();
+      //var instane = new PakatApiV3Sdk.RemainingCreditModel();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/RemainingCreditModelChild.spec.js b/test/model/RemainingCreditModelChild.spec.js
index c06bf73a..b64fcfd3 100644
--- a/test/model/RemainingCreditModelChild.spec.js
+++ b/test/model/RemainingCreditModelChild.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.RemainingCreditModelChild();
+    instance = new PakatApiV3Sdk.RemainingCreditModelChild();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('RemainingCreditModelChild', function() {
     it('should create an instance of RemainingCreditModelChild', function() {
       // uncomment below and update the code to test RemainingCreditModelChild
-      //var instane = new SibApiV3Sdk.RemainingCreditModelChild();
-      //expect(instance).to.be.a(SibApiV3Sdk.RemainingCreditModelChild);
+      //var instane = new PakatApiV3Sdk.RemainingCreditModelChild();
+      //expect(instance).to.be.a(PakatApiV3Sdk.RemainingCreditModelChild);
     });
 
     it('should have the property sms (base name: "sms")', function() {
       // uncomment below and update the code to test the property sms
-      //var instane = new SibApiV3Sdk.RemainingCreditModelChild();
+      //var instane = new PakatApiV3Sdk.RemainingCreditModelChild();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.RemainingCreditModelChild();
+      //var instane = new PakatApiV3Sdk.RemainingCreditModelChild();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/RemainingCreditModelReseller.spec.js b/test/model/RemainingCreditModelReseller.spec.js
index 3ca8ed13..52acb21f 100644
--- a/test/model/RemainingCreditModelReseller.spec.js
+++ b/test/model/RemainingCreditModelReseller.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.RemainingCreditModelReseller();
+    instance = new PakatApiV3Sdk.RemainingCreditModelReseller();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('RemainingCreditModelReseller', function() {
     it('should create an instance of RemainingCreditModelReseller', function() {
       // uncomment below and update the code to test RemainingCreditModelReseller
-      //var instane = new SibApiV3Sdk.RemainingCreditModelReseller();
-      //expect(instance).to.be.a(SibApiV3Sdk.RemainingCreditModelReseller);
+      //var instane = new PakatApiV3Sdk.RemainingCreditModelReseller();
+      //expect(instance).to.be.a(PakatApiV3Sdk.RemainingCreditModelReseller);
     });
 
     it('should have the property sms (base name: "sms")', function() {
       // uncomment below and update the code to test the property sms
-      //var instane = new SibApiV3Sdk.RemainingCreditModelReseller();
+      //var instane = new PakatApiV3Sdk.RemainingCreditModelReseller();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.RemainingCreditModelReseller();
+      //var instane = new PakatApiV3Sdk.RemainingCreditModelReseller();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/RemoveContactFromList.spec.js b/test/model/RemoveContactFromList.spec.js
index e26fd7f8..2a6d1b70 100644
--- a/test/model/RemoveContactFromList.spec.js
+++ b/test/model/RemoveContactFromList.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.RemoveContactFromList();
+    instance = new PakatApiV3Sdk.RemoveContactFromList();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('RemoveContactFromList', function() {
     it('should create an instance of RemoveContactFromList', function() {
       // uncomment below and update the code to test RemoveContactFromList
-      //var instane = new SibApiV3Sdk.RemoveContactFromList();
-      //expect(instance).to.be.a(SibApiV3Sdk.RemoveContactFromList);
+      //var instane = new PakatApiV3Sdk.RemoveContactFromList();
+      //expect(instance).to.be.a(PakatApiV3Sdk.RemoveContactFromList);
     });
 
     it('should have the property emails (base name: "emails")', function() {
       // uncomment below and update the code to test the property emails
-      //var instane = new SibApiV3Sdk.RemoveContactFromList();
+      //var instane = new PakatApiV3Sdk.RemoveContactFromList();
       //expect(instance).to.be();
     });
 
     it('should have the property ids (base name: "ids")', function() {
       // uncomment below and update the code to test the property ids
-      //var instane = new SibApiV3Sdk.RemoveContactFromList();
+      //var instane = new PakatApiV3Sdk.RemoveContactFromList();
       //expect(instance).to.be();
     });
 
     it('should have the property all (base name: "all")', function() {
       // uncomment below and update the code to test the property all
-      //var instane = new SibApiV3Sdk.RemoveContactFromList();
+      //var instane = new PakatApiV3Sdk.RemoveContactFromList();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/RemoveCredits.spec.js b/test/model/RemoveCredits.spec.js
index 03c0d206..91cfb8e8 100644
--- a/test/model/RemoveCredits.spec.js
+++ b/test/model/RemoveCredits.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.RemoveCredits();
+    instance = new PakatApiV3Sdk.RemoveCredits();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('RemoveCredits', function() {
     it('should create an instance of RemoveCredits', function() {
       // uncomment below and update the code to test RemoveCredits
-      //var instane = new SibApiV3Sdk.RemoveCredits();
-      //expect(instance).to.be.a(SibApiV3Sdk.RemoveCredits);
+      //var instane = new PakatApiV3Sdk.RemoveCredits();
+      //expect(instance).to.be.a(PakatApiV3Sdk.RemoveCredits);
     });
 
     it('should have the property sms (base name: "sms")', function() {
       // uncomment below and update the code to test the property sms
-      //var instane = new SibApiV3Sdk.RemoveCredits();
+      //var instane = new PakatApiV3Sdk.RemoveCredits();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.RemoveCredits();
+      //var instane = new PakatApiV3Sdk.RemoveCredits();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/RequestContactExport.spec.js b/test/model/RequestContactExport.spec.js
index 9785e9de..c34e9567 100644
--- a/test/model/RequestContactExport.spec.js
+++ b/test/model/RequestContactExport.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.RequestContactExport();
+    instance = new PakatApiV3Sdk.RequestContactExport();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('RequestContactExport', function() {
     it('should create an instance of RequestContactExport', function() {
       // uncomment below and update the code to test RequestContactExport
-      //var instane = new SibApiV3Sdk.RequestContactExport();
-      //expect(instance).to.be.a(SibApiV3Sdk.RequestContactExport);
+      //var instane = new PakatApiV3Sdk.RequestContactExport();
+      //expect(instance).to.be.a(PakatApiV3Sdk.RequestContactExport);
     });
 
     it('should have the property exportAttributes (base name: "exportAttributes")', function() {
       // uncomment below and update the code to test the property exportAttributes
-      //var instane = new SibApiV3Sdk.RequestContactExport();
+      //var instane = new PakatApiV3Sdk.RequestContactExport();
       //expect(instance).to.be();
     });
 
     it('should have the property contactFilter (base name: "contactFilter")', function() {
       // uncomment below and update the code to test the property contactFilter
-      //var instane = new SibApiV3Sdk.RequestContactExport();
+      //var instane = new PakatApiV3Sdk.RequestContactExport();
       //expect(instance).to.be();
     });
 
     it('should have the property customContactFilter (base name: "customContactFilter")', function() {
       // uncomment below and update the code to test the property customContactFilter
-      //var instane = new SibApiV3Sdk.RequestContactExport();
+      //var instane = new PakatApiV3Sdk.RequestContactExport();
       //expect(instance).to.be();
     });
 
     it('should have the property notifyUrl (base name: "notifyUrl")', function() {
       // uncomment below and update the code to test the property notifyUrl
-      //var instane = new SibApiV3Sdk.RequestContactExport();
+      //var instane = new PakatApiV3Sdk.RequestContactExport();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/RequestContactExportCustomContactFilter.spec.js b/test/model/RequestContactExportCustomContactFilter.spec.js
index 5b91b130..6569c2e9 100644
--- a/test/model/RequestContactExportCustomContactFilter.spec.js
+++ b/test/model/RequestContactExportCustomContactFilter.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.RequestContactExportCustomContactFilter();
+    instance = new PakatApiV3Sdk.RequestContactExportCustomContactFilter();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,43 +53,43 @@
   describe('RequestContactExportCustomContactFilter', function() {
     it('should create an instance of RequestContactExportCustomContactFilter', function() {
       // uncomment below and update the code to test RequestContactExportCustomContactFilter
-      //var instane = new SibApiV3Sdk.RequestContactExportCustomContactFilter();
-      //expect(instance).to.be.a(SibApiV3Sdk.RequestContactExportCustomContactFilter);
+      //var instane = new PakatApiV3Sdk.RequestContactExportCustomContactFilter();
+      //expect(instance).to.be.a(PakatApiV3Sdk.RequestContactExportCustomContactFilter);
     });
 
     it('should have the property actionForContacts (base name: "actionForContacts")', function() {
       // uncomment below and update the code to test the property actionForContacts
-      //var instane = new SibApiV3Sdk.RequestContactExportCustomContactFilter();
+      //var instane = new PakatApiV3Sdk.RequestContactExportCustomContactFilter();
       //expect(instance).to.be();
     });
 
     it('should have the property actionForEmailCampaigns (base name: "actionForEmailCampaigns")', function() {
       // uncomment below and update the code to test the property actionForEmailCampaigns
-      //var instane = new SibApiV3Sdk.RequestContactExportCustomContactFilter();
+      //var instane = new PakatApiV3Sdk.RequestContactExportCustomContactFilter();
       //expect(instance).to.be();
     });
 
     it('should have the property actionForSmsCampaigns (base name: "actionForSmsCampaigns")', function() {
       // uncomment below and update the code to test the property actionForSmsCampaigns
-      //var instane = new SibApiV3Sdk.RequestContactExportCustomContactFilter();
+      //var instane = new PakatApiV3Sdk.RequestContactExportCustomContactFilter();
       //expect(instance).to.be();
     });
 
     it('should have the property listId (base name: "listId")', function() {
       // uncomment below and update the code to test the property listId
-      //var instane = new SibApiV3Sdk.RequestContactExportCustomContactFilter();
+      //var instane = new PakatApiV3Sdk.RequestContactExportCustomContactFilter();
       //expect(instance).to.be();
     });
 
     it('should have the property emailCampaignId (base name: "emailCampaignId")', function() {
       // uncomment below and update the code to test the property emailCampaignId
-      //var instane = new SibApiV3Sdk.RequestContactExportCustomContactFilter();
+      //var instane = new PakatApiV3Sdk.RequestContactExportCustomContactFilter();
       //expect(instance).to.be();
     });
 
     it('should have the property smsCampaignId (base name: "smsCampaignId")', function() {
       // uncomment below and update the code to test the property smsCampaignId
-      //var instane = new SibApiV3Sdk.RequestContactExportCustomContactFilter();
+      //var instane = new PakatApiV3Sdk.RequestContactExportCustomContactFilter();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/RequestContactImport.spec.js b/test/model/RequestContactImport.spec.js
index 4b1e014b..3c950198 100644
--- a/test/model/RequestContactImport.spec.js
+++ b/test/model/RequestContactImport.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.RequestContactImport();
+    instance = new PakatApiV3Sdk.RequestContactImport();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,61 +53,61 @@
   describe('RequestContactImport', function() {
     it('should create an instance of RequestContactImport', function() {
       // uncomment below and update the code to test RequestContactImport
-      //var instane = new SibApiV3Sdk.RequestContactImport();
-      //expect(instance).to.be.a(SibApiV3Sdk.RequestContactImport);
+      //var instane = new PakatApiV3Sdk.RequestContactImport();
+      //expect(instance).to.be.a(PakatApiV3Sdk.RequestContactImport);
     });
 
     it('should have the property fileUrl (base name: "fileUrl")', function() {
       // uncomment below and update the code to test the property fileUrl
-      //var instane = new SibApiV3Sdk.RequestContactImport();
+      //var instane = new PakatApiV3Sdk.RequestContactImport();
       //expect(instance).to.be();
     });
 
     it('should have the property fileBody (base name: "fileBody")', function() {
       // uncomment below and update the code to test the property fileBody
-      //var instane = new SibApiV3Sdk.RequestContactImport();
+      //var instane = new PakatApiV3Sdk.RequestContactImport();
       //expect(instance).to.be();
     });
 
     it('should have the property listIds (base name: "listIds")', function() {
       // uncomment below and update the code to test the property listIds
-      //var instane = new SibApiV3Sdk.RequestContactImport();
+      //var instane = new PakatApiV3Sdk.RequestContactImport();
       //expect(instance).to.be();
     });
 
     it('should have the property notifyUrl (base name: "notifyUrl")', function() {
       // uncomment below and update the code to test the property notifyUrl
-      //var instane = new SibApiV3Sdk.RequestContactImport();
+      //var instane = new PakatApiV3Sdk.RequestContactImport();
       //expect(instance).to.be();
     });
 
     it('should have the property newList (base name: "newList")', function() {
       // uncomment below and update the code to test the property newList
-      //var instane = new SibApiV3Sdk.RequestContactImport();
+      //var instane = new PakatApiV3Sdk.RequestContactImport();
       //expect(instance).to.be();
     });
 
     it('should have the property emailBlacklist (base name: "emailBlacklist")', function() {
       // uncomment below and update the code to test the property emailBlacklist
-      //var instane = new SibApiV3Sdk.RequestContactImport();
+      //var instane = new PakatApiV3Sdk.RequestContactImport();
       //expect(instance).to.be();
     });
 
     it('should have the property smsBlacklist (base name: "smsBlacklist")', function() {
       // uncomment below and update the code to test the property smsBlacklist
-      //var instane = new SibApiV3Sdk.RequestContactImport();
+      //var instane = new PakatApiV3Sdk.RequestContactImport();
       //expect(instance).to.be();
     });
 
     it('should have the property updateExistingContacts (base name: "updateExistingContacts")', function() {
       // uncomment below and update the code to test the property updateExistingContacts
-      //var instane = new SibApiV3Sdk.RequestContactImport();
+      //var instane = new PakatApiV3Sdk.RequestContactImport();
       //expect(instance).to.be();
     });
 
     it('should have the property emptyContactsAttributes (base name: "emptyContactsAttributes")', function() {
       // uncomment below and update the code to test the property emptyContactsAttributes
-      //var instane = new SibApiV3Sdk.RequestContactImport();
+      //var instane = new PakatApiV3Sdk.RequestContactImport();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/RequestContactImportNewList.spec.js b/test/model/RequestContactImportNewList.spec.js
index 5a513d2e..c95c5765 100644
--- a/test/model/RequestContactImportNewList.spec.js
+++ b/test/model/RequestContactImportNewList.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.RequestContactImportNewList();
+    instance = new PakatApiV3Sdk.RequestContactImportNewList();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('RequestContactImportNewList', function() {
     it('should create an instance of RequestContactImportNewList', function() {
       // uncomment below and update the code to test RequestContactImportNewList
-      //var instane = new SibApiV3Sdk.RequestContactImportNewList();
-      //expect(instance).to.be.a(SibApiV3Sdk.RequestContactImportNewList);
+      //var instane = new PakatApiV3Sdk.RequestContactImportNewList();
+      //expect(instance).to.be.a(PakatApiV3Sdk.RequestContactImportNewList);
     });
 
     it('should have the property listName (base name: "listName")', function() {
       // uncomment below and update the code to test the property listName
-      //var instane = new SibApiV3Sdk.RequestContactImportNewList();
+      //var instane = new PakatApiV3Sdk.RequestContactImportNewList();
       //expect(instance).to.be();
     });
 
     it('should have the property folderId (base name: "folderId")', function() {
       // uncomment below and update the code to test the property folderId
-      //var instane = new SibApiV3Sdk.RequestContactImportNewList();
+      //var instane = new PakatApiV3Sdk.RequestContactImportNewList();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/RequestSmsRecipientExport.spec.js b/test/model/RequestSmsRecipientExport.spec.js
index 775b8950..201227c4 100644
--- a/test/model/RequestSmsRecipientExport.spec.js
+++ b/test/model/RequestSmsRecipientExport.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.RequestSmsRecipientExport();
+    instance = new PakatApiV3Sdk.RequestSmsRecipientExport();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('RequestSmsRecipientExport', function() {
     it('should create an instance of RequestSmsRecipientExport', function() {
       // uncomment below and update the code to test RequestSmsRecipientExport
-      //var instane = new SibApiV3Sdk.RequestSmsRecipientExport();
-      //expect(instance).to.be.a(SibApiV3Sdk.RequestSmsRecipientExport);
+      //var instane = new PakatApiV3Sdk.RequestSmsRecipientExport();
+      //expect(instance).to.be.a(PakatApiV3Sdk.RequestSmsRecipientExport);
     });
 
     it('should have the property notifyURL (base name: "notifyURL")', function() {
       // uncomment below and update the code to test the property notifyURL
-      //var instane = new SibApiV3Sdk.RequestSmsRecipientExport();
+      //var instane = new PakatApiV3Sdk.RequestSmsRecipientExport();
       //expect(instance).to.be();
     });
 
     it('should have the property recipientsType (base name: "recipientsType")', function() {
       // uncomment below and update the code to test the property recipientsType
-      //var instane = new SibApiV3Sdk.RequestSmsRecipientExport();
+      //var instane = new PakatApiV3Sdk.RequestSmsRecipientExport();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendEmail.spec.js b/test/model/SendEmail.spec.js
index 4ecbb738..e65ce9c3 100644
--- a/test/model/SendEmail.spec.js
+++ b/test/model/SendEmail.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendEmail();
+    instance = new PakatApiV3Sdk.SendEmail();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,61 +53,61 @@
   describe('SendEmail', function() {
     it('should create an instance of SendEmail', function() {
       // uncomment below and update the code to test SendEmail
-      //var instane = new SibApiV3Sdk.SendEmail();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendEmail);
+      //var instane = new PakatApiV3Sdk.SendEmail();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendEmail);
     });
 
     it('should have the property emailTo (base name: "emailTo")', function() {
       // uncomment below and update the code to test the property emailTo
-      //var instane = new SibApiV3Sdk.SendEmail();
+      //var instane = new PakatApiV3Sdk.SendEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property emailBcc (base name: "emailBcc")', function() {
       // uncomment below and update the code to test the property emailBcc
-      //var instane = new SibApiV3Sdk.SendEmail();
+      //var instane = new PakatApiV3Sdk.SendEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property emailCc (base name: "emailCc")', function() {
       // uncomment below and update the code to test the property emailCc
-      //var instane = new SibApiV3Sdk.SendEmail();
+      //var instane = new PakatApiV3Sdk.SendEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property replyTo (base name: "replyTo")', function() {
       // uncomment below and update the code to test the property replyTo
-      //var instane = new SibApiV3Sdk.SendEmail();
+      //var instane = new PakatApiV3Sdk.SendEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property attachmentUrl (base name: "attachmentUrl")', function() {
       // uncomment below and update the code to test the property attachmentUrl
-      //var instane = new SibApiV3Sdk.SendEmail();
+      //var instane = new PakatApiV3Sdk.SendEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property attachment (base name: "attachment")', function() {
       // uncomment below and update the code to test the property attachment
-      //var instane = new SibApiV3Sdk.SendEmail();
+      //var instane = new PakatApiV3Sdk.SendEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property headers (base name: "headers")', function() {
       // uncomment below and update the code to test the property headers
-      //var instane = new SibApiV3Sdk.SendEmail();
+      //var instane = new PakatApiV3Sdk.SendEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property attributes (base name: "attributes")', function() {
       // uncomment below and update the code to test the property attributes
-      //var instane = new SibApiV3Sdk.SendEmail();
+      //var instane = new PakatApiV3Sdk.SendEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property tags (base name: "tags")', function() {
       // uncomment below and update the code to test the property tags
-      //var instane = new SibApiV3Sdk.SendEmail();
+      //var instane = new PakatApiV3Sdk.SendEmail();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendEmailAttachment.spec.js b/test/model/SendEmailAttachment.spec.js
index 9e6a5c6c..5cec120d 100644
--- a/test/model/SendEmailAttachment.spec.js
+++ b/test/model/SendEmailAttachment.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendEmailAttachment();
+    instance = new PakatApiV3Sdk.SendEmailAttachment();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('SendEmailAttachment', function() {
     it('should create an instance of SendEmailAttachment', function() {
       // uncomment below and update the code to test SendEmailAttachment
-      //var instane = new SibApiV3Sdk.SendEmailAttachment();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendEmailAttachment);
+      //var instane = new PakatApiV3Sdk.SendEmailAttachment();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendEmailAttachment);
     });
 
     it('should have the property content (base name: "content")', function() {
       // uncomment below and update the code to test the property content
-      //var instane = new SibApiV3Sdk.SendEmailAttachment();
+      //var instane = new PakatApiV3Sdk.SendEmailAttachment();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.SendEmailAttachment();
+      //var instane = new PakatApiV3Sdk.SendEmailAttachment();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendReport.spec.js b/test/model/SendReport.spec.js
index 12df0fd1..da629008 100644
--- a/test/model/SendReport.spec.js
+++ b/test/model/SendReport.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendReport();
+    instance = new PakatApiV3Sdk.SendReport();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('SendReport', function() {
     it('should create an instance of SendReport', function() {
       // uncomment below and update the code to test SendReport
-      //var instane = new SibApiV3Sdk.SendReport();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendReport);
+      //var instane = new PakatApiV3Sdk.SendReport();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendReport);
     });
 
     it('should have the property language (base name: "language")', function() {
       // uncomment below and update the code to test the property language
-      //var instane = new SibApiV3Sdk.SendReport();
+      //var instane = new PakatApiV3Sdk.SendReport();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.SendReport();
+      //var instane = new PakatApiV3Sdk.SendReport();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendReportEmail.spec.js b/test/model/SendReportEmail.spec.js
index 9a0de045..477d514a 100644
--- a/test/model/SendReportEmail.spec.js
+++ b/test/model/SendReportEmail.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendReportEmail();
+    instance = new PakatApiV3Sdk.SendReportEmail();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,43 +53,43 @@
   describe('SendReportEmail', function() {
     it('should create an instance of SendReportEmail', function() {
       // uncomment below and update the code to test SendReportEmail
-      //var instane = new SibApiV3Sdk.SendReportEmail();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendReportEmail);
+      //var instane = new PakatApiV3Sdk.SendReportEmail();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendReportEmail);
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.SendReportEmail();
+      //var instane = new PakatApiV3Sdk.SendReportEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property to (base name: "to")', function() {
       // uncomment below and update the code to test the property to
-      //var instane = new SibApiV3Sdk.SendReportEmail();
+      //var instane = new PakatApiV3Sdk.SendReportEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property contentType (base name: "contentType")', function() {
       // uncomment below and update the code to test the property contentType
-      //var instane = new SibApiV3Sdk.SendReportEmail();
+      //var instane = new PakatApiV3Sdk.SendReportEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property bcc (base name: "bcc")', function() {
       // uncomment below and update the code to test the property bcc
-      //var instane = new SibApiV3Sdk.SendReportEmail();
+      //var instane = new PakatApiV3Sdk.SendReportEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property cc (base name: "cc")', function() {
       // uncomment below and update the code to test the property cc
-      //var instane = new SibApiV3Sdk.SendReportEmail();
+      //var instane = new PakatApiV3Sdk.SendReportEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property body (base name: "body")', function() {
       // uncomment below and update the code to test the property body
-      //var instane = new SibApiV3Sdk.SendReportEmail();
+      //var instane = new PakatApiV3Sdk.SendReportEmail();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendSms.spec.js b/test/model/SendSms.spec.js
index 483a9a6e..164e6df0 100644
--- a/test/model/SendSms.spec.js
+++ b/test/model/SendSms.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendSms();
+    instance = new PakatApiV3Sdk.SendSms();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,37 +53,37 @@
   describe('SendSms', function() {
     it('should create an instance of SendSms', function() {
       // uncomment below and update the code to test SendSms
-      //var instane = new SibApiV3Sdk.SendSms();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendSms);
+      //var instane = new PakatApiV3Sdk.SendSms();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendSms);
     });
 
     it('should have the property reference (base name: "reference")', function() {
       // uncomment below and update the code to test the property reference
-      //var instane = new SibApiV3Sdk.SendSms();
+      //var instane = new PakatApiV3Sdk.SendSms();
       //expect(instance).to.be();
     });
 
     it('should have the property messageId (base name: "messageId")', function() {
       // uncomment below and update the code to test the property messageId
-      //var instane = new SibApiV3Sdk.SendSms();
+      //var instane = new PakatApiV3Sdk.SendSms();
       //expect(instance).to.be();
     });
 
     it('should have the property smsCount (base name: "smsCount")', function() {
       // uncomment below and update the code to test the property smsCount
-      //var instane = new SibApiV3Sdk.SendSms();
+      //var instane = new PakatApiV3Sdk.SendSms();
       //expect(instance).to.be();
     });
 
     it('should have the property usedCredits (base name: "usedCredits")', function() {
       // uncomment below and update the code to test the property usedCredits
-      //var instane = new SibApiV3Sdk.SendSms();
+      //var instane = new PakatApiV3Sdk.SendSms();
       //expect(instance).to.be();
     });
 
     it('should have the property remainingCredits (base name: "remainingCredits")', function() {
       // uncomment below and update the code to test the property remainingCredits
-      //var instane = new SibApiV3Sdk.SendSms();
+      //var instane = new PakatApiV3Sdk.SendSms();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendSmtpEmail.spec.js b/test/model/SendSmtpEmail.spec.js
index 1dd51d60..17a017fa 100644
--- a/test/model/SendSmtpEmail.spec.js
+++ b/test/model/SendSmtpEmail.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendSmtpEmail();
+    instance = new PakatApiV3Sdk.SendSmtpEmail();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,85 +53,85 @@
   describe('SendSmtpEmail', function() {
     it('should create an instance of SendSmtpEmail', function() {
       // uncomment below and update the code to test SendSmtpEmail
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendSmtpEmail);
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendSmtpEmail);
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property to (base name: "to")', function() {
       // uncomment below and update the code to test the property to
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property bcc (base name: "bcc")', function() {
       // uncomment below and update the code to test the property bcc
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property cc (base name: "cc")', function() {
       // uncomment below and update the code to test the property cc
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlContent (base name: "htmlContent")', function() {
       // uncomment below and update the code to test the property htmlContent
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property textContent (base name: "textContent")', function() {
       // uncomment below and update the code to test the property textContent
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property replyTo (base name: "replyTo")', function() {
       // uncomment below and update the code to test the property replyTo
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property attachment (base name: "attachment")', function() {
       // uncomment below and update the code to test the property attachment
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property headers (base name: "headers")', function() {
       // uncomment below and update the code to test the property headers
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property templateId (base name: "templateId")', function() {
       // uncomment below and update the code to test the property templateId
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property params (base name: "params")', function() {
       // uncomment below and update the code to test the property params
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
     it('should have the property tags (base name: "tags")', function() {
       // uncomment below and update the code to test the property tags
-      //var instane = new SibApiV3Sdk.SendSmtpEmail();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmail();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendSmtpEmailAttachment.spec.js b/test/model/SendSmtpEmailAttachment.spec.js
index 3fd8aa5e..12fe7abd 100644
--- a/test/model/SendSmtpEmailAttachment.spec.js
+++ b/test/model/SendSmtpEmailAttachment.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendSmtpEmailAttachment();
+    instance = new PakatApiV3Sdk.SendSmtpEmailAttachment();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('SendSmtpEmailAttachment', function() {
     it('should create an instance of SendSmtpEmailAttachment', function() {
       // uncomment below and update the code to test SendSmtpEmailAttachment
-      //var instane = new SibApiV3Sdk.SendSmtpEmailAttachment();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendSmtpEmailAttachment);
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailAttachment();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendSmtpEmailAttachment);
     });
 
     it('should have the property url (base name: "url")', function() {
       // uncomment below and update the code to test the property url
-      //var instane = new SibApiV3Sdk.SendSmtpEmailAttachment();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailAttachment();
       //expect(instance).to.be();
     });
 
     it('should have the property content (base name: "content")', function() {
       // uncomment below and update the code to test the property content
-      //var instane = new SibApiV3Sdk.SendSmtpEmailAttachment();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailAttachment();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.SendSmtpEmailAttachment();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailAttachment();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendSmtpEmailBcc.spec.js b/test/model/SendSmtpEmailBcc.spec.js
index d5809560..43aa2327 100644
--- a/test/model/SendSmtpEmailBcc.spec.js
+++ b/test/model/SendSmtpEmailBcc.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendSmtpEmailBcc();
+    instance = new PakatApiV3Sdk.SendSmtpEmailBcc();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('SendSmtpEmailBcc', function() {
     it('should create an instance of SendSmtpEmailBcc', function() {
       // uncomment below and update the code to test SendSmtpEmailBcc
-      //var instane = new SibApiV3Sdk.SendSmtpEmailBcc();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendSmtpEmailBcc);
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailBcc();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendSmtpEmailBcc);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.SendSmtpEmailBcc();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailBcc();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.SendSmtpEmailBcc();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailBcc();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendSmtpEmailCc.spec.js b/test/model/SendSmtpEmailCc.spec.js
index 406ceb28..21241c6c 100644
--- a/test/model/SendSmtpEmailCc.spec.js
+++ b/test/model/SendSmtpEmailCc.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendSmtpEmailCc();
+    instance = new PakatApiV3Sdk.SendSmtpEmailCc();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('SendSmtpEmailCc', function() {
     it('should create an instance of SendSmtpEmailCc', function() {
       // uncomment below and update the code to test SendSmtpEmailCc
-      //var instane = new SibApiV3Sdk.SendSmtpEmailCc();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendSmtpEmailCc);
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailCc();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendSmtpEmailCc);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.SendSmtpEmailCc();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailCc();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.SendSmtpEmailCc();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailCc();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendSmtpEmailReplyTo.spec.js b/test/model/SendSmtpEmailReplyTo.spec.js
index e5e4bb17..643b58ca 100644
--- a/test/model/SendSmtpEmailReplyTo.spec.js
+++ b/test/model/SendSmtpEmailReplyTo.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendSmtpEmailReplyTo();
+    instance = new PakatApiV3Sdk.SendSmtpEmailReplyTo();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('SendSmtpEmailReplyTo', function() {
     it('should create an instance of SendSmtpEmailReplyTo', function() {
       // uncomment below and update the code to test SendSmtpEmailReplyTo
-      //var instane = new SibApiV3Sdk.SendSmtpEmailReplyTo();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendSmtpEmailReplyTo);
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailReplyTo();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendSmtpEmailReplyTo);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.SendSmtpEmailReplyTo();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailReplyTo();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.SendSmtpEmailReplyTo();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailReplyTo();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendSmtpEmailSender.spec.js b/test/model/SendSmtpEmailSender.spec.js
index 34000fad..565f8d36 100644
--- a/test/model/SendSmtpEmailSender.spec.js
+++ b/test/model/SendSmtpEmailSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendSmtpEmailSender();
+    instance = new PakatApiV3Sdk.SendSmtpEmailSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('SendSmtpEmailSender', function() {
     it('should create an instance of SendSmtpEmailSender', function() {
       // uncomment below and update the code to test SendSmtpEmailSender
-      //var instane = new SibApiV3Sdk.SendSmtpEmailSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendSmtpEmailSender);
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendSmtpEmailSender);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.SendSmtpEmailSender();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailSender();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.SendSmtpEmailSender();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailSender();
       //expect(instance).to.be();
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.SendSmtpEmailSender();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendSmtpEmailTo.spec.js b/test/model/SendSmtpEmailTo.spec.js
index 0b023a63..e97fdb02 100644
--- a/test/model/SendSmtpEmailTo.spec.js
+++ b/test/model/SendSmtpEmailTo.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendSmtpEmailTo();
+    instance = new PakatApiV3Sdk.SendSmtpEmailTo();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('SendSmtpEmailTo', function() {
     it('should create an instance of SendSmtpEmailTo', function() {
       // uncomment below and update the code to test SendSmtpEmailTo
-      //var instane = new SibApiV3Sdk.SendSmtpEmailTo();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendSmtpEmailTo);
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailTo();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendSmtpEmailTo);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.SendSmtpEmailTo();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailTo();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.SendSmtpEmailTo();
+      //var instane = new PakatApiV3Sdk.SendSmtpEmailTo();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendTemplateEmail.spec.js b/test/model/SendTemplateEmail.spec.js
index 6b4e8560..4f8c72a5 100644
--- a/test/model/SendTemplateEmail.spec.js
+++ b/test/model/SendTemplateEmail.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendTemplateEmail();
+    instance = new PakatApiV3Sdk.SendTemplateEmail();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('SendTemplateEmail', function() {
     it('should create an instance of SendTemplateEmail', function() {
       // uncomment below and update the code to test SendTemplateEmail
-      //var instane = new SibApiV3Sdk.SendTemplateEmail();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendTemplateEmail);
+      //var instane = new PakatApiV3Sdk.SendTemplateEmail();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendTemplateEmail);
     });
 
     it('should have the property messageId (base name: "messageId")', function() {
       // uncomment below and update the code to test the property messageId
-      //var instane = new SibApiV3Sdk.SendTemplateEmail();
+      //var instane = new PakatApiV3Sdk.SendTemplateEmail();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendTestEmail.spec.js b/test/model/SendTestEmail.spec.js
index 82e67736..8362c12a 100644
--- a/test/model/SendTestEmail.spec.js
+++ b/test/model/SendTestEmail.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendTestEmail();
+    instance = new PakatApiV3Sdk.SendTestEmail();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('SendTestEmail', function() {
     it('should create an instance of SendTestEmail', function() {
       // uncomment below and update the code to test SendTestEmail
-      //var instane = new SibApiV3Sdk.SendTestEmail();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendTestEmail);
+      //var instane = new PakatApiV3Sdk.SendTestEmail();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendTestEmail);
     });
 
     it('should have the property emailTo (base name: "emailTo")', function() {
       // uncomment below and update the code to test the property emailTo
-      //var instane = new SibApiV3Sdk.SendTestEmail();
+      //var instane = new PakatApiV3Sdk.SendTestEmail();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendTestSms.spec.js b/test/model/SendTestSms.spec.js
index 4e9b8fc3..62db10a5 100644
--- a/test/model/SendTestSms.spec.js
+++ b/test/model/SendTestSms.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendTestSms();
+    instance = new PakatApiV3Sdk.SendTestSms();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('SendTestSms', function() {
     it('should create an instance of SendTestSms', function() {
       // uncomment below and update the code to test SendTestSms
-      //var instane = new SibApiV3Sdk.SendTestSms();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendTestSms);
+      //var instane = new PakatApiV3Sdk.SendTestSms();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendTestSms);
     });
 
     it('should have the property phoneNumber (base name: "phoneNumber")', function() {
       // uncomment below and update the code to test the property phoneNumber
-      //var instane = new SibApiV3Sdk.SendTestSms();
+      //var instane = new PakatApiV3Sdk.SendTestSms();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/SendTransacSms.spec.js b/test/model/SendTransacSms.spec.js
index 4f4e2b8d..3cede158 100644
--- a/test/model/SendTransacSms.spec.js
+++ b/test/model/SendTransacSms.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.SendTransacSms();
+    instance = new PakatApiV3Sdk.SendTransacSms();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,43 +53,43 @@
   describe('SendTransacSms', function() {
     it('should create an instance of SendTransacSms', function() {
       // uncomment below and update the code to test SendTransacSms
-      //var instane = new SibApiV3Sdk.SendTransacSms();
-      //expect(instance).to.be.a(SibApiV3Sdk.SendTransacSms);
+      //var instane = new PakatApiV3Sdk.SendTransacSms();
+      //expect(instance).to.be.a(PakatApiV3Sdk.SendTransacSms);
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.SendTransacSms();
+      //var instane = new PakatApiV3Sdk.SendTransacSms();
       //expect(instance).to.be();
     });
 
     it('should have the property recipient (base name: "recipient")', function() {
       // uncomment below and update the code to test the property recipient
-      //var instane = new SibApiV3Sdk.SendTransacSms();
+      //var instane = new PakatApiV3Sdk.SendTransacSms();
       //expect(instance).to.be();
     });
 
     it('should have the property content (base name: "content")', function() {
       // uncomment below and update the code to test the property content
-      //var instane = new SibApiV3Sdk.SendTransacSms();
+      //var instane = new PakatApiV3Sdk.SendTransacSms();
       //expect(instance).to.be();
     });
 
     it('should have the property type (base name: "type")', function() {
       // uncomment below and update the code to test the property type
-      //var instane = new SibApiV3Sdk.SendTransacSms();
+      //var instane = new PakatApiV3Sdk.SendTransacSms();
       //expect(instance).to.be();
     });
 
     it('should have the property tag (base name: "tag")', function() {
       // uncomment below and update the code to test the property tag
-      //var instane = new SibApiV3Sdk.SendTransacSms();
+      //var instane = new PakatApiV3Sdk.SendTransacSms();
       //expect(instance).to.be();
     });
 
     it('should have the property webUrl (base name: "webUrl")', function() {
       // uncomment below and update the code to test the property webUrl
-      //var instane = new SibApiV3Sdk.SendTransacSms();
+      //var instane = new PakatApiV3Sdk.SendTransacSms();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateAttribute.spec.js b/test/model/UpdateAttribute.spec.js
index 438d2e0f..23ee51c9 100644
--- a/test/model/UpdateAttribute.spec.js
+++ b/test/model/UpdateAttribute.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateAttribute();
+    instance = new PakatApiV3Sdk.UpdateAttribute();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('UpdateAttribute', function() {
     it('should create an instance of UpdateAttribute', function() {
       // uncomment below and update the code to test UpdateAttribute
-      //var instane = new SibApiV3Sdk.UpdateAttribute();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateAttribute);
+      //var instane = new PakatApiV3Sdk.UpdateAttribute();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateAttribute);
     });
 
     it('should have the property value (base name: "value")', function() {
       // uncomment below and update the code to test the property value
-      //var instane = new SibApiV3Sdk.UpdateAttribute();
+      //var instane = new PakatApiV3Sdk.UpdateAttribute();
       //expect(instance).to.be();
     });
 
     it('should have the property enumeration (base name: "enumeration")', function() {
       // uncomment below and update the code to test the property enumeration
-      //var instane = new SibApiV3Sdk.UpdateAttribute();
+      //var instane = new PakatApiV3Sdk.UpdateAttribute();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateAttributeEnumeration.spec.js b/test/model/UpdateAttributeEnumeration.spec.js
index 8ca7b151..439e0404 100644
--- a/test/model/UpdateAttributeEnumeration.spec.js
+++ b/test/model/UpdateAttributeEnumeration.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateAttributeEnumeration();
+    instance = new PakatApiV3Sdk.UpdateAttributeEnumeration();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('UpdateAttributeEnumeration', function() {
     it('should create an instance of UpdateAttributeEnumeration', function() {
       // uncomment below and update the code to test UpdateAttributeEnumeration
-      //var instane = new SibApiV3Sdk.UpdateAttributeEnumeration();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateAttributeEnumeration);
+      //var instane = new PakatApiV3Sdk.UpdateAttributeEnumeration();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateAttributeEnumeration);
     });
 
     it('should have the property value (base name: "value")', function() {
       // uncomment below and update the code to test the property value
-      //var instane = new SibApiV3Sdk.UpdateAttributeEnumeration();
+      //var instane = new PakatApiV3Sdk.UpdateAttributeEnumeration();
       //expect(instance).to.be();
     });
 
     it('should have the property label (base name: "label")', function() {
       // uncomment below and update the code to test the property label
-      //var instane = new SibApiV3Sdk.UpdateAttributeEnumeration();
+      //var instane = new PakatApiV3Sdk.UpdateAttributeEnumeration();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateCampaignStatus.spec.js b/test/model/UpdateCampaignStatus.spec.js
index 704a94a5..7d18e869 100644
--- a/test/model/UpdateCampaignStatus.spec.js
+++ b/test/model/UpdateCampaignStatus.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateCampaignStatus();
+    instance = new PakatApiV3Sdk.UpdateCampaignStatus();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('UpdateCampaignStatus', function() {
     it('should create an instance of UpdateCampaignStatus', function() {
       // uncomment below and update the code to test UpdateCampaignStatus
-      //var instane = new SibApiV3Sdk.UpdateCampaignStatus();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateCampaignStatus);
+      //var instane = new PakatApiV3Sdk.UpdateCampaignStatus();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateCampaignStatus);
     });
 
     it('should have the property status (base name: "status")', function() {
       // uncomment below and update the code to test the property status
-      //var instane = new SibApiV3Sdk.UpdateCampaignStatus();
+      //var instane = new PakatApiV3Sdk.UpdateCampaignStatus();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateChild.spec.js b/test/model/UpdateChild.spec.js
index 97ddb47d..e4f3d1c1 100644
--- a/test/model/UpdateChild.spec.js
+++ b/test/model/UpdateChild.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateChild();
+    instance = new PakatApiV3Sdk.UpdateChild();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,37 +53,37 @@
   describe('UpdateChild', function() {
     it('should create an instance of UpdateChild', function() {
       // uncomment below and update the code to test UpdateChild
-      //var instane = new SibApiV3Sdk.UpdateChild();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateChild);
+      //var instane = new PakatApiV3Sdk.UpdateChild();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateChild);
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.UpdateChild();
+      //var instane = new PakatApiV3Sdk.UpdateChild();
       //expect(instance).to.be();
     });
 
     it('should have the property firstName (base name: "firstName")', function() {
       // uncomment below and update the code to test the property firstName
-      //var instane = new SibApiV3Sdk.UpdateChild();
+      //var instane = new PakatApiV3Sdk.UpdateChild();
       //expect(instance).to.be();
     });
 
     it('should have the property lastName (base name: "lastName")', function() {
       // uncomment below and update the code to test the property lastName
-      //var instane = new SibApiV3Sdk.UpdateChild();
+      //var instane = new PakatApiV3Sdk.UpdateChild();
       //expect(instance).to.be();
     });
 
     it('should have the property companyName (base name: "companyName")', function() {
       // uncomment below and update the code to test the property companyName
-      //var instane = new SibApiV3Sdk.UpdateChild();
+      //var instane = new PakatApiV3Sdk.UpdateChild();
       //expect(instance).to.be();
     });
 
     it('should have the property password (base name: "password")', function() {
       // uncomment below and update the code to test the property password
-      //var instane = new SibApiV3Sdk.UpdateChild();
+      //var instane = new PakatApiV3Sdk.UpdateChild();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateChildAccountStatus.spec.js b/test/model/UpdateChildAccountStatus.spec.js
index 99b0faae..22ed9241 100644
--- a/test/model/UpdateChildAccountStatus.spec.js
+++ b/test/model/UpdateChildAccountStatus.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateChildAccountStatus();
+    instance = new PakatApiV3Sdk.UpdateChildAccountStatus();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,31 +53,31 @@
   describe('UpdateChildAccountStatus', function() {
     it('should create an instance of UpdateChildAccountStatus', function() {
       // uncomment below and update the code to test UpdateChildAccountStatus
-      //var instane = new SibApiV3Sdk.UpdateChildAccountStatus();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateChildAccountStatus);
+      //var instane = new PakatApiV3Sdk.UpdateChildAccountStatus();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateChildAccountStatus);
     });
 
     it('should have the property transactionalEmail (base name: "transactionalEmail")', function() {
       // uncomment below and update the code to test the property transactionalEmail
-      //var instane = new SibApiV3Sdk.UpdateChildAccountStatus();
+      //var instane = new PakatApiV3Sdk.UpdateChildAccountStatus();
       //expect(instance).to.be();
     });
 
     it('should have the property transactionalSms (base name: "transactionalSms")', function() {
       // uncomment below and update the code to test the property transactionalSms
-      //var instane = new SibApiV3Sdk.UpdateChildAccountStatus();
+      //var instane = new PakatApiV3Sdk.UpdateChildAccountStatus();
       //expect(instance).to.be();
     });
 
     it('should have the property marketingAutomation (base name: "marketingAutomation")', function() {
       // uncomment below and update the code to test the property marketingAutomation
-      //var instane = new SibApiV3Sdk.UpdateChildAccountStatus();
+      //var instane = new PakatApiV3Sdk.UpdateChildAccountStatus();
       //expect(instance).to.be();
     });
 
     it('should have the property smsCampaign (base name: "smsCampaign")', function() {
       // uncomment below and update the code to test the property smsCampaign
-      //var instane = new SibApiV3Sdk.UpdateChildAccountStatus();
+      //var instane = new PakatApiV3Sdk.UpdateChildAccountStatus();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateChildDomain.spec.js b/test/model/UpdateChildDomain.spec.js
index 6a59c538..1ba2c040 100644
--- a/test/model/UpdateChildDomain.spec.js
+++ b/test/model/UpdateChildDomain.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateChildDomain();
+    instance = new PakatApiV3Sdk.UpdateChildDomain();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,13 +53,13 @@
   describe('UpdateChildDomain', function() {
     it('should create an instance of UpdateChildDomain', function() {
       // uncomment below and update the code to test UpdateChildDomain
-      //var instane = new SibApiV3Sdk.UpdateChildDomain();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateChildDomain);
+      //var instane = new PakatApiV3Sdk.UpdateChildDomain();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateChildDomain);
     });
 
     it('should have the property domain (base name: "domain")', function() {
       // uncomment below and update the code to test the property domain
-      //var instane = new SibApiV3Sdk.UpdateChildDomain();
+      //var instane = new PakatApiV3Sdk.UpdateChildDomain();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateContact.spec.js b/test/model/UpdateContact.spec.js
index 0736cbba..71c4a198 100644
--- a/test/model/UpdateContact.spec.js
+++ b/test/model/UpdateContact.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateContact();
+    instance = new PakatApiV3Sdk.UpdateContact();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,43 +53,43 @@
   describe('UpdateContact', function() {
     it('should create an instance of UpdateContact', function() {
       // uncomment below and update the code to test UpdateContact
-      //var instane = new SibApiV3Sdk.UpdateContact();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateContact);
+      //var instane = new PakatApiV3Sdk.UpdateContact();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateContact);
     });
 
     it('should have the property attributes (base name: "attributes")', function() {
       // uncomment below and update the code to test the property attributes
-      //var instane = new SibApiV3Sdk.UpdateContact();
+      //var instane = new PakatApiV3Sdk.UpdateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property emailBlacklisted (base name: "emailBlacklisted")', function() {
       // uncomment below and update the code to test the property emailBlacklisted
-      //var instane = new SibApiV3Sdk.UpdateContact();
+      //var instane = new PakatApiV3Sdk.UpdateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property smsBlacklisted (base name: "smsBlacklisted")', function() {
       // uncomment below and update the code to test the property smsBlacklisted
-      //var instane = new SibApiV3Sdk.UpdateContact();
+      //var instane = new PakatApiV3Sdk.UpdateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property listIds (base name: "listIds")', function() {
       // uncomment below and update the code to test the property listIds
-      //var instane = new SibApiV3Sdk.UpdateContact();
+      //var instane = new PakatApiV3Sdk.UpdateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property unlinkListIds (base name: "unlinkListIds")', function() {
       // uncomment below and update the code to test the property unlinkListIds
-      //var instane = new SibApiV3Sdk.UpdateContact();
+      //var instane = new PakatApiV3Sdk.UpdateContact();
       //expect(instance).to.be();
     });
 
     it('should have the property smtpBlacklistSender (base name: "smtpBlacklistSender")', function() {
       // uncomment below and update the code to test the property smtpBlacklistSender
-      //var instane = new SibApiV3Sdk.UpdateContact();
+      //var instane = new PakatApiV3Sdk.UpdateContact();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateEmailCampaign.spec.js b/test/model/UpdateEmailCampaign.spec.js
index a238f6f3..a07ba0f3 100644
--- a/test/model/UpdateEmailCampaign.spec.js
+++ b/test/model/UpdateEmailCampaign.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateEmailCampaign();
+    instance = new PakatApiV3Sdk.UpdateEmailCampaign();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,175 +53,175 @@
   describe('UpdateEmailCampaign', function() {
     it('should create an instance of UpdateEmailCampaign', function() {
       // uncomment below and update the code to test UpdateEmailCampaign
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateEmailCampaign);
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateEmailCampaign);
     });
 
     it('should have the property tag (base name: "tag")', function() {
       // uncomment below and update the code to test the property tag
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlContent (base name: "htmlContent")', function() {
       // uncomment below and update the code to test the property htmlContent
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlUrl (base name: "htmlUrl")', function() {
       // uncomment below and update the code to test the property htmlUrl
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property scheduledAt (base name: "scheduledAt")', function() {
       // uncomment below and update the code to test the property scheduledAt
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property replyTo (base name: "replyTo")', function() {
       // uncomment below and update the code to test the property replyTo
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property toField (base name: "toField")', function() {
       // uncomment below and update the code to test the property toField
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property recipients (base name: "recipients")', function() {
       // uncomment below and update the code to test the property recipients
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property attachmentUrl (base name: "attachmentUrl")', function() {
       // uncomment below and update the code to test the property attachmentUrl
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property inlineImageActivation (base name: "inlineImageActivation")', function() {
       // uncomment below and update the code to test the property inlineImageActivation
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property mirrorActive (base name: "mirrorActive")', function() {
       // uncomment below and update the code to test the property mirrorActive
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property recurring (base name: "recurring")', function() {
       // uncomment below and update the code to test the property recurring
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property footer (base name: "footer")', function() {
       // uncomment below and update the code to test the property footer
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property header (base name: "header")', function() {
       // uncomment below and update the code to test the property header
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property utmCampaign (base name: "utmCampaign")', function() {
       // uncomment below and update the code to test the property utmCampaign
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property params (base name: "params")', function() {
       // uncomment below and update the code to test the property params
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property sendAtBestTime (base name: "sendAtBestTime")', function() {
       // uncomment below and update the code to test the property sendAtBestTime
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property abTesting (base name: "abTesting")', function() {
       // uncomment below and update the code to test the property abTesting
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property subjectA (base name: "subjectA")', function() {
       // uncomment below and update the code to test the property subjectA
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property subjectB (base name: "subjectB")', function() {
       // uncomment below and update the code to test the property subjectB
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property splitRule (base name: "splitRule")', function() {
       // uncomment below and update the code to test the property splitRule
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property winnerCriteria (base name: "winnerCriteria")', function() {
       // uncomment below and update the code to test the property winnerCriteria
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property winnerDelay (base name: "winnerDelay")', function() {
       // uncomment below and update the code to test the property winnerDelay
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property ipWarmupEnable (base name: "ipWarmupEnable")', function() {
       // uncomment below and update the code to test the property ipWarmupEnable
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property initialQuota (base name: "initialQuota")', function() {
       // uncomment below and update the code to test the property initialQuota
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property increaseRate (base name: "increaseRate")', function() {
       // uncomment below and update the code to test the property increaseRate
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaign();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateEmailCampaignRecipients.spec.js b/test/model/UpdateEmailCampaignRecipients.spec.js
index a2f64900..9e4b97d0 100644
--- a/test/model/UpdateEmailCampaignRecipients.spec.js
+++ b/test/model/UpdateEmailCampaignRecipients.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateEmailCampaignRecipients();
+    instance = new PakatApiV3Sdk.UpdateEmailCampaignRecipients();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('UpdateEmailCampaignRecipients', function() {
     it('should create an instance of UpdateEmailCampaignRecipients', function() {
       // uncomment below and update the code to test UpdateEmailCampaignRecipients
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaignRecipients();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateEmailCampaignRecipients);
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaignRecipients();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateEmailCampaignRecipients);
     });
 
     it('should have the property exclusionListIds (base name: "exclusionListIds")', function() {
       // uncomment below and update the code to test the property exclusionListIds
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaignRecipients();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaignRecipients();
       //expect(instance).to.be();
     });
 
     it('should have the property listIds (base name: "listIds")', function() {
       // uncomment below and update the code to test the property listIds
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaignRecipients();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaignRecipients();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateEmailCampaignSender.spec.js b/test/model/UpdateEmailCampaignSender.spec.js
index 171f35db..962f92da 100644
--- a/test/model/UpdateEmailCampaignSender.spec.js
+++ b/test/model/UpdateEmailCampaignSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateEmailCampaignSender();
+    instance = new PakatApiV3Sdk.UpdateEmailCampaignSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('UpdateEmailCampaignSender', function() {
     it('should create an instance of UpdateEmailCampaignSender', function() {
       // uncomment below and update the code to test UpdateEmailCampaignSender
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaignSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateEmailCampaignSender);
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaignSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateEmailCampaignSender);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaignSender();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaignSender();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaignSender();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaignSender();
       //expect(instance).to.be();
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.UpdateEmailCampaignSender();
+      //var instane = new PakatApiV3Sdk.UpdateEmailCampaignSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateList.spec.js b/test/model/UpdateList.spec.js
index 2f4ef082..e6edce0f 100644
--- a/test/model/UpdateList.spec.js
+++ b/test/model/UpdateList.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateList();
+    instance = new PakatApiV3Sdk.UpdateList();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('UpdateList', function() {
     it('should create an instance of UpdateList', function() {
       // uncomment below and update the code to test UpdateList
-      //var instane = new SibApiV3Sdk.UpdateList();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateList);
+      //var instane = new PakatApiV3Sdk.UpdateList();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateList);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.UpdateList();
+      //var instane = new PakatApiV3Sdk.UpdateList();
       //expect(instance).to.be();
     });
 
     it('should have the property folderId (base name: "folderId")', function() {
       // uncomment below and update the code to test the property folderId
-      //var instane = new SibApiV3Sdk.UpdateList();
+      //var instane = new PakatApiV3Sdk.UpdateList();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateSender.spec.js b/test/model/UpdateSender.spec.js
index 95912fb0..551db693 100644
--- a/test/model/UpdateSender.spec.js
+++ b/test/model/UpdateSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateSender();
+    instance = new PakatApiV3Sdk.UpdateSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('UpdateSender', function() {
     it('should create an instance of UpdateSender', function() {
       // uncomment below and update the code to test UpdateSender
-      //var instane = new SibApiV3Sdk.UpdateSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateSender);
+      //var instane = new PakatApiV3Sdk.UpdateSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateSender);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.UpdateSender();
+      //var instane = new PakatApiV3Sdk.UpdateSender();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.UpdateSender();
+      //var instane = new PakatApiV3Sdk.UpdateSender();
       //expect(instance).to.be();
     });
 
     it('should have the property ips (base name: "ips")', function() {
       // uncomment below and update the code to test the property ips
-      //var instane = new SibApiV3Sdk.UpdateSender();
+      //var instane = new PakatApiV3Sdk.UpdateSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateSmsCampaign.spec.js b/test/model/UpdateSmsCampaign.spec.js
index ad8453cf..ea924b58 100644
--- a/test/model/UpdateSmsCampaign.spec.js
+++ b/test/model/UpdateSmsCampaign.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateSmsCampaign();
+    instance = new PakatApiV3Sdk.UpdateSmsCampaign();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,37 +53,37 @@
   describe('UpdateSmsCampaign', function() {
     it('should create an instance of UpdateSmsCampaign', function() {
       // uncomment below and update the code to test UpdateSmsCampaign
-      //var instane = new SibApiV3Sdk.UpdateSmsCampaign();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateSmsCampaign);
+      //var instane = new PakatApiV3Sdk.UpdateSmsCampaign();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateSmsCampaign);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.UpdateSmsCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateSmsCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.UpdateSmsCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateSmsCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property content (base name: "content")', function() {
       // uncomment below and update the code to test the property content
-      //var instane = new SibApiV3Sdk.UpdateSmsCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateSmsCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property recipients (base name: "recipients")', function() {
       // uncomment below and update the code to test the property recipients
-      //var instane = new SibApiV3Sdk.UpdateSmsCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateSmsCampaign();
       //expect(instance).to.be();
     });
 
     it('should have the property scheduledAt (base name: "scheduledAt")', function() {
       // uncomment below and update the code to test the property scheduledAt
-      //var instane = new SibApiV3Sdk.UpdateSmsCampaign();
+      //var instane = new PakatApiV3Sdk.UpdateSmsCampaign();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateSmtpTemplate.spec.js b/test/model/UpdateSmtpTemplate.spec.js
index 2a3db89b..4b40c612 100644
--- a/test/model/UpdateSmtpTemplate.spec.js
+++ b/test/model/UpdateSmtpTemplate.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateSmtpTemplate();
+    instance = new PakatApiV3Sdk.UpdateSmtpTemplate();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,67 +53,67 @@
   describe('UpdateSmtpTemplate', function() {
     it('should create an instance of UpdateSmtpTemplate', function() {
       // uncomment below and update the code to test UpdateSmtpTemplate
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateSmtpTemplate);
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateSmtpTemplate);
     });
 
     it('should have the property tag (base name: "tag")', function() {
       // uncomment below and update the code to test the property tag
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property sender (base name: "sender")', function() {
       // uncomment below and update the code to test the property sender
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property templateName (base name: "templateName")', function() {
       // uncomment below and update the code to test the property templateName
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlContent (base name: "htmlContent")', function() {
       // uncomment below and update the code to test the property htmlContent
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property htmlUrl (base name: "htmlUrl")', function() {
       // uncomment below and update the code to test the property htmlUrl
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property subject (base name: "subject")', function() {
       // uncomment below and update the code to test the property subject
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property replyTo (base name: "replyTo")', function() {
       // uncomment below and update the code to test the property replyTo
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property toField (base name: "toField")', function() {
       // uncomment below and update the code to test the property toField
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property attachmentUrl (base name: "attachmentUrl")', function() {
       // uncomment below and update the code to test the property attachmentUrl
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
       //expect(instance).to.be();
     });
 
     it('should have the property isActive (base name: "isActive")', function() {
       // uncomment below and update the code to test the property isActive
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplate();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplate();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateSmtpTemplateSender.spec.js b/test/model/UpdateSmtpTemplateSender.spec.js
index d60b33d5..f312da72 100644
--- a/test/model/UpdateSmtpTemplateSender.spec.js
+++ b/test/model/UpdateSmtpTemplateSender.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateSmtpTemplateSender();
+    instance = new PakatApiV3Sdk.UpdateSmtpTemplateSender();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('UpdateSmtpTemplateSender', function() {
     it('should create an instance of UpdateSmtpTemplateSender', function() {
       // uncomment below and update the code to test UpdateSmtpTemplateSender
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplateSender();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateSmtpTemplateSender);
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplateSender();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateSmtpTemplateSender);
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplateSender();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplateSender();
       //expect(instance).to.be();
     });
 
     it('should have the property email (base name: "email")', function() {
       // uncomment below and update the code to test the property email
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplateSender();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplateSender();
       //expect(instance).to.be();
     });
 
     it('should have the property id (base name: "id")', function() {
       // uncomment below and update the code to test the property id
-      //var instane = new SibApiV3Sdk.UpdateSmtpTemplateSender();
+      //var instane = new PakatApiV3Sdk.UpdateSmtpTemplateSender();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UpdateWebhook.spec.js b/test/model/UpdateWebhook.spec.js
index 078284de..0fdf7c97 100644
--- a/test/model/UpdateWebhook.spec.js
+++ b/test/model/UpdateWebhook.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UpdateWebhook();
+    instance = new PakatApiV3Sdk.UpdateWebhook();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,25 +53,25 @@
   describe('UpdateWebhook', function() {
     it('should create an instance of UpdateWebhook', function() {
       // uncomment below and update the code to test UpdateWebhook
-      //var instane = new SibApiV3Sdk.UpdateWebhook();
-      //expect(instance).to.be.a(SibApiV3Sdk.UpdateWebhook);
+      //var instane = new PakatApiV3Sdk.UpdateWebhook();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UpdateWebhook);
     });
 
     it('should have the property url (base name: "url")', function() {
       // uncomment below and update the code to test the property url
-      //var instane = new SibApiV3Sdk.UpdateWebhook();
+      //var instane = new PakatApiV3Sdk.UpdateWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property description (base name: "description")', function() {
       // uncomment below and update the code to test the property description
-      //var instane = new SibApiV3Sdk.UpdateWebhook();
+      //var instane = new PakatApiV3Sdk.UpdateWebhook();
       //expect(instance).to.be();
     });
 
     it('should have the property events (base name: "events")', function() {
       // uncomment below and update the code to test the property events
-      //var instane = new SibApiV3Sdk.UpdateWebhook();
+      //var instane = new PakatApiV3Sdk.UpdateWebhook();
       //expect(instance).to.be();
     });
 
diff --git a/test/model/UploadImageToGallery.spec.js b/test/model/UploadImageToGallery.spec.js
index 5d948125..bc970fe5 100644
--- a/test/model/UploadImageToGallery.spec.js
+++ b/test/model/UploadImageToGallery.spec.js
@@ -23,15 +23,15 @@
     factory(require('expect.js'), require('../../src/index'));
   } else {
     // Browser globals (root is window)
-    factory(root.expect, root.SibApiV3Sdk);
+    factory(root.expect, root.PakatApiV3Sdk);
   }
-}(this, function(expect, SibApiV3Sdk) {
+}(this, function(expect, PakatApiV3Sdk) {
   'use strict';
 
   var instance;
 
   beforeEach(function() {
-    instance = new SibApiV3Sdk.UploadImageToGallery();
+    instance = new PakatApiV3Sdk.UploadImageToGallery();
   });
 
   var getProperty = function(object, getter, property) {
@@ -53,19 +53,19 @@
   describe('UploadImageToGallery', function() {
     it('should create an instance of UploadImageToGallery', function() {
       // uncomment below and update the code to test UploadImageToGallery
-      //var instane = new SibApiV3Sdk.UploadImageToGallery();
-      //expect(instance).to.be.a(SibApiV3Sdk.UploadImageToGallery);
+      //var instane = new PakatApiV3Sdk.UploadImageToGallery();
+      //expect(instance).to.be.a(PakatApiV3Sdk.UploadImageToGallery);
     });
 
     it('should have the property imageUrl (base name: "imageUrl")', function() {
       // uncomment below and update the code to test the property imageUrl
-      //var instane = new SibApiV3Sdk.UploadImageToGallery();
+      //var instane = new PakatApiV3Sdk.UploadImageToGallery();
       //expect(instance).to.be();
     });
 
     it('should have the property name (base name: "name")', function() {
       // uncomment below and update the code to test the property name
-      //var instane = new SibApiV3Sdk.UploadImageToGallery();
+      //var instane = new PakatApiV3Sdk.UploadImageToGallery();
       //expect(instance).to.be();
     });