Skip to content

Commit 281c019

Browse files
committed
V26.5.1 - 2026-05-05
1 parent f39f712 commit 281c019

29 files changed

Lines changed: 790 additions & 671 deletions

src/ConstantContact/Definition/AccountInfoDto.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
/**
88
* @property string $account_url The account URL of the connected user's profile. Note: Facebook & Instagram do not support this.
9-
* @property string $display_name Display name of the connected user
10-
* @property string $image_url URL of the connected user's avatar or image
11-
* @property string $network The social network this account belongs to
12-
* @property string $network_account_id The user identifier on the given network. Note: this is the network _account_ id not the _profile_ id.
13-
* @property string $username Username of the connected user on the social network
9+
* @property string $display_name Display name of the connected user.
10+
* @property string $image_url URL of the connected user's avatar or image.
11+
* @property string $network The social network this account belongs to.
12+
* @property string $network_account_id The user identifier on the given network. Note: this is the network <em>account</em> id, not the <em>profile</em> id.
13+
* @property string $username Username of the connected user on the social network.
1414
*/
1515
class AccountInfoDto extends \PHPFUI\ConstantContact\Definition\Base
1616
{

src/ConstantContact/Definition/CampaignProperties.php

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/ConstantContact/Definition/ConnectionV2Dto.php renamed to src/ConstantContact/Definition/ConnectionDto.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @property \PHPFUI\ConstantContact\Definition\AccountInfoDto $account_info DTO containing account info for the connection
9-
* @property \PHPFUI\ConstantContact\Definition\ConnectionStatusDto $connection_status DTO containing connection information for the connection
8+
* @property \PHPFUI\ConstantContact\Definition\AccountInfoDto $account_info Account information for this connection.
9+
* @property \PHPFUI\ConstantContact\Definition\ConnectionStatusDto $connection_status Status details for this connection.
1010
*/
11-
class ConnectionV2Dto extends \PHPFUI\ConstantContact\Definition\Base
11+
class ConnectionDto extends \PHPFUI\ConstantContact\Definition\Base
1212
{
1313
protected static array $fields = [
1414
'account_info' => '\PHPFUI\ConstantContact\Definition\AccountInfoDto',

src/ConstantContact/Definition/ConnectionResponseDto.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @property array<\PHPFUI\ConstantContact\Definition\ConnectionV2Dto> $connections
8+
* @property array<\PHPFUI\ConstantContact\Definition\ConnectionDto> $connections List of established social network connections for the account.
99
*/
1010
class ConnectionResponseDto extends \PHPFUI\ConstantContact\Definition\Base
1111
{
1212
protected static array $fields = [
13-
'connections' => 'array<\PHPFUI\ConstantContact\Definition\ConnectionV2Dto>',
13+
'connections' => 'array<\PHPFUI\ConstantContact\Definition\ConnectionDto>',
1414

1515
];
1616
}

src/ConstantContact/Definition/ConnectionStatusDto.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @property string $error There was an unexpected error accessing the account.
9-
* @property bool $has_token True if there is a token for this network type in the token-svc db
10-
* @property bool $is_active_user At this time, a user is considered active if the user has any connected Profiles
11-
* @property bool $rate_limited Whether this account or our app is currently rate-limited
12-
* @property int $status The status returned from the given network's API when retrieving the account. Can also beour own internal error
13-
* @property bool $token_has_scopes Whether or not the token associated with this user has the scopes necessary to utilize social-reach-svc
14-
* @property bool $token_is_valid True if the token marked valid in token-svc and can be successfully used to fetch basic user data from the network
8+
* @property string $error A message indicating that there was an unexpected error accessing the social network account.
9+
* @property bool $has_token <code>true</code> if the integration has an authorization token for this social network account.
10+
* @property bool $is_active_user A user is considered active if the user has any connected profiles for the social network account.
11+
* @property bool $rate_limited Whether this social network account or the Constant Contact application is currently rate-limited by the social network provider.
12+
* @property int $status The status returned from the given network's API when retrieving the account. This is typically only set when <code>error</code> is set.
13+
* @property bool $token_has_scopes Whether the token associated with this user's social account integration has the scopes necessary to use Constant Contact social functionality.
14+
* @property bool $token_is_valid <code>true</code> if the token for this social network is currently valid and can be successfully used to fetch data from the network.
1515
*/
1616
class ConnectionStatusDto extends \PHPFUI\ConstantContact\Definition\Base
1717
{

src/ConstantContact/Definition/EmbeddedResources.php

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/ConstantContact/Definition/HashtagGroupDto.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @property string $hashtag_group_id The database id for this hashtag group.<p>This should always be <code>null</code> when creating a new hashtag group. When updating a hashtag group, this should either be set to <code>null</code>, or be the same value as when the group was retrieved.</p>
9-
* @property string $hashtag_group_name The human-readable name for this group.<p>This name will be sanitized before saving, which may include trimming whitespace, truncation, and/or removing invalid characters. If the sanitized name results in a blank string, it will not be able to be saved, and any create or update operation will fail.<br>The name is currently limited to a maximum of 150 "characters", but the effective length may be shorter, depending on whether some special characters, such as emoji, are used.</p>
10-
* @property array $hashtag_names The list of hashtag names for this group.<p>Hashtag <em>names</em> do not include any leading '#' character. They cannot consist of any characters other than alphanumeric characters and '_' (underscore). The hashtag name cannot begin or end with an underscore. Hashtag names may begin with a letter or a number, and may consist of only numbers. Hashtag names are currently limited to a maximum of 30 characters.<br>The list will maintain its order when persisted and retrieved. If duplicates exist in the list, they will be removed when saving, and the first of the duplicates will retain its position.</p>
8+
* @property string $hashtag_group_id Unique identifier for this hashtag group. Automatically generated on creation and returned in all responses.
9+
* @property string $hashtag_group_name The human-readable name for this group. <p>This name will be sanitized before saving, which may include trimming whitespace, truncation, and/or removing invalid characters. If the sanitized name results in a blank string, it will not be able to be saved, and any create or update operation will fail.</p><p>The name is currently limited to a maximum of 150 characters, but the effective length may be shorter, depending on whether special characters (such as emoji) are used.</p>
10+
* @property array $hashtag_names The list of hashtag names for this group. <p>Hashtag <em>names</em> do not include any leading '#' character. They can only consist of alphanumeric characters and '_' (underscore). The hashtag name cannot begin or end with an underscore. Hashtag names may begin with a letter or a number, and may consist of only numbers. Hashtag names are currently limited to a maximum of 30 characters.</p><p>The list order is preserved. If duplicates exist, they will be removed when saving, and the first occurrence will retain its position.</p>
1111
*/
1212
class HashtagGroupDto extends \PHPFUI\ConstantContact\Definition\Base
1313
{

src/ConstantContact/Definition/ImageDto.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @property string $image_id
9-
* @property string $url The url of the image. Each component of the image url must be appropriately encoded such that it does not include any illegal characters. Example: https://www.host.com/path+with%20space?q=query%20with+space#fragment+with%20space
8+
* @property string $image_id Unique identifier for this image. Generated by the server on creation.
9+
* @property string $url The URL of the image. Each component of the URL must be appropriately encoded to avoid illegal characters.
1010
*/
1111
class ImageDto extends \PHPFUI\ConstantContact\Definition\Base
1212
{

src/ConstantContact/Definition/LinkDto.php

Lines changed: 0 additions & 28 deletions
This file was deleted.

src/ConstantContact/Definition/LinkMetadata.php

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)