Skip to content

Commit 6e20347

Browse files
committed
V26.4.1 - 2026-04-21
1 parent 8837176 commit 6e20347

53 files changed

Lines changed: 2825 additions & 161 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
5+
namespace PHPFUI\ConstantContact\Definition;
6+
7+
/**
8+
* @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
14+
*/
15+
class AccountInfoDto extends \PHPFUI\ConstantContact\Definition\Base
16+
{
17+
protected static array $fields = [
18+
'account_url' => 'string',
19+
'display_name' => 'string',
20+
'image_url' => 'string',
21+
'network' => 'string',
22+
'network_account_id' => 'string',
23+
'username' => 'string',
24+
25+
];
26+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
5+
namespace PHPFUI\ConstantContact\Definition;
6+
7+
/**
8+
* @property string $id The unique identifier for the automation campaign workflow.
9+
* @property string $name The name of the automation campaign.
10+
* @property string $description The description of the automation campaign.
11+
* @property array<\PHPFUI\ConstantContact\Definition\AutomationStructuredTag> $structured_tags
12+
* @property \PHPFUI\ConstantContact\Definition\AutomationWorkflowDefinition $active_definition
13+
* @property \PHPFUI\ConstantContact\Definition\AutomationWorkflowDefinition $draft_definition
14+
* @property bool $is_name_explicitly_set Indicates whether the automation campaign name was explicitly set.
15+
*/
16+
class AutomationCampaign extends \PHPFUI\ConstantContact\Definition\Base
17+
{
18+
protected static array $fields = [
19+
'id' => 'string',
20+
'name' => 'string',
21+
'description' => 'string',
22+
'structured_tags' => 'array<\PHPFUI\ConstantContact\Definition\AutomationStructuredTag>',
23+
'active_definition' => '\PHPFUI\ConstantContact\Definition\AutomationWorkflowDefinition',
24+
'draft_definition' => '\PHPFUI\ConstantContact\Definition\AutomationWorkflowDefinition',
25+
'is_name_explicitly_set' => 'bool',
26+
27+
];
28+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
5+
namespace PHPFUI\ConstantContact\Definition;
6+
7+
/**
8+
* @property \PHPFUI\ConstantContact\Definition\AutomationWorkflowDef $workflow_def
9+
*/
10+
class AutomationFlow extends \PHPFUI\ConstantContact\Definition\Base
11+
{
12+
protected static array $fields = [
13+
'workflow_def' => '\PHPFUI\ConstantContact\Definition\AutomationWorkflowDef',
14+
15+
];
16+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
5+
namespace PHPFUI\ConstantContact\Definition;
6+
7+
/**
8+
* @property string $key
9+
* @property string $value
10+
* @property string $display_value
11+
*/
12+
class AutomationStructuredTag extends \PHPFUI\ConstantContact\Definition\Base
13+
{
14+
protected static array $fields = [
15+
'key' => 'string',
16+
'value' => 'string',
17+
'display_value' => 'string',
18+
19+
];
20+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
5+
namespace PHPFUI\ConstantContact\Definition;
6+
7+
/**
8+
* @property array $tasks
9+
* @property string $status
10+
* @property string $namespace
11+
* @property \PHPFUI\ConstantContact\Definition\Metadata $metadata
12+
* @property \PHPFUI\ConstantContact\Definition\Timeout $timeout
13+
* @property bool $upgradable
14+
*/
15+
class AutomationWorkflowDef extends \PHPFUI\ConstantContact\Definition\Base
16+
{
17+
protected static array $fields = [
18+
'tasks' => 'array',
19+
'status' => 'string',
20+
'namespace' => 'string',
21+
'metadata' => '\PHPFUI\ConstantContact\Definition\Metadata',
22+
'timeout' => '\PHPFUI\ConstantContact\Definition\Timeout',
23+
'upgradable' => 'bool',
24+
25+
];
26+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
5+
namespace PHPFUI\ConstantContact\Definition;
6+
7+
/**
8+
* @property string $state The current state of the workflow definition (e.g. DRAFT, ACTIVE).
9+
* @property \PHPFUI\ConstantContact\Definition\Trigger $trigger The trigger configuration for the automation workflow.
10+
* @property \PHPFUI\ConstantContact\Definition\AutomationFlow $workflow
11+
*/
12+
class AutomationWorkflowDefinition extends \PHPFUI\ConstantContact\Definition\Base
13+
{
14+
protected static array $fields = [
15+
'state' => 'string',
16+
'trigger' => '\PHPFUI\ConstantContact\Definition\Trigger',
17+
'workflow' => '\PHPFUI\ConstantContact\Definition\AutomationFlow',
18+
19+
];
20+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
5+
namespace PHPFUI\ConstantContact\Definition;
6+
7+
class CampaignProperties extends \PHPFUI\ConstantContact\Definition\Base
8+
{ }
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
5+
namespace PHPFUI\ConstantContact\Definition;
6+
7+
/**
8+
* @property array<\PHPFUI\ConstantContact\Definition\ConnectionV2Dto> $connections
9+
*/
10+
class ConnectionResponseDto extends \PHPFUI\ConstantContact\Definition\Base
11+
{
12+
protected static array $fields = [
13+
'connections' => 'array<\PHPFUI\ConstantContact\Definition\ConnectionV2Dto>',
14+
15+
];
16+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
5+
namespace PHPFUI\ConstantContact\Definition;
6+
7+
/**
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
15+
*/
16+
class ConnectionStatusDto extends \PHPFUI\ConstantContact\Definition\Base
17+
{
18+
protected static array $fields = [
19+
'error' => 'string',
20+
'has_token' => 'bool',
21+
'is_active_user' => 'bool',
22+
'rate_limited' => 'bool',
23+
'status' => 'int',
24+
'token_has_scopes' => 'bool',
25+
'token_is_valid' => 'bool',
26+
27+
];
28+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
5+
namespace PHPFUI\ConstantContact\Definition;
6+
7+
/**
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
10+
*/
11+
class ConnectionV2Dto extends \PHPFUI\ConstantContact\Definition\Base
12+
{
13+
protected static array $fields = [
14+
'account_info' => '\PHPFUI\ConstantContact\Definition\AccountInfoDto',
15+
'connection_status' => '\PHPFUI\ConstantContact\Definition\ConnectionStatusDto',
16+
17+
];
18+
}

0 commit comments

Comments
 (0)