Skip to content

Commit 686f554

Browse files
committed
Update since versions.
1 parent 58107f4 commit 686f554

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

includes/API/AdPartner/AdPartnerApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class AdPartnerApi {
120120
/**
121121
* Handles Profiles operations.
122122
*
123-
* @since x.x.x
123+
* @since 1.0.3
124124
* @var ProfilesApi
125125
*/
126126
public ProfilesApi $profiles;

includes/API/AdPartner/CampaignApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function create() {
8484
* This method builds and submits the campaign updating request using the
8585
* campaign ID.
8686
*
87-
* @since x.x.x
87+
* @since 1.0.3
8888
*
8989
* @param string $campaign_id The campaign ID.
9090
* @param array $update_data The data to update the campaign with.

includes/API/AdPartner/CatalogApi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public function delete( $catalog_id ) {
117117
*
118118
* It returns a {@see WP_REST_Response} on success or a {@see WP_Error} on failure.
119119
*
120-
* @since x.x.x
120+
* @since 1.0.3
121121
*
122122
* @return \WP_REST_Response|WP_Error REST response from WCS or error if inputs are missing.
123123
*/
@@ -144,7 +144,7 @@ public function list() {
144144
*
145145
* It returns a {@see WP_REST_Response} on success or a {@see WP_Error} on failure.
146146
*
147-
* @since x.x.x
147+
* @since 1.0.3
148148
*
149149
* @param string $catalog_id The ID of the catalog to get.
150150
* @return \WP_REST_Response|WP_Error REST response from WCS or error if inputs are missing.

includes/API/AdPartner/ProfilesApi.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Requests are proxied through WCS, which manages authentication and
1010
* secure communication with the Ad Partner's remote API.
1111
*
12-
* @since x.x.x
12+
* @since 1.0.3
1313
* @package RedditForWooCommerce\API\AdPartner
1414
*/
1515

@@ -27,7 +27,7 @@
2727
* associated with the currently configured business. Profiles are used
2828
* for ad targeting and campaign management within the Ad Partner’s platform.
2929
*
30-
* @since x.x.x
30+
* @since 1.0.3
3131
*/
3232
class ProfilesApi extends BaseAdPartnerApi {
3333

@@ -40,7 +40,7 @@ class ProfilesApi extends BaseAdPartnerApi {
4040
*
4141
* If no business ID is set, a {@see WP_Error} is returned.
4242
*
43-
* @since x.x.x
43+
* @since 1.0.3
4444
*
4545
* @return \WP_REST_Response|WP_Error REST response containing the list of profiles
4646
* or error if the business ID is not configured.

includes/API/Site/Controllers/OnboardingController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function get_setup_state(): WP_REST_Response {
8686
/**
8787
* Completes the onboarding setup.
8888
*
89-
* @since x.x.x
89+
* @since 1.0.3
9090
*
9191
* @return WP_REST_Response
9292
*/
@@ -104,7 +104,7 @@ public function complete_setup(): WP_REST_Response {
104104
/**
105105
* Triggers when the Reddit onboarding process is completed.
106106
*
107-
* @since x.x.x
107+
* @since 1.0.3
108108
*/
109109
do_action( Helper::with_prefix( 'onboarding_complete' ) );
110110

includes/API/Site/Controllers/RedditConnectionController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ public function do_config( WP_REST_Request $request ) {
454454
/**
455455
* Triggers when the Reddit ad account and pixel id are connected.
456456
*
457-
* @since x.x.x
457+
* @since 1.0.3
458458
*/
459459
do_action( Helper::with_prefix( 'ad_account_connected' ) );
460460

includes/Connection/WcsClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function proxy_post( string $path, $body, bool $requires_auth = true, arr
8585
/**
8686
* Sends a proxy PATCH request to an arbitrary WCS endpoint.
8787
*
88-
* @since x.x.x
88+
* @since 1.0.3
8989
*
9090
* @param string $path Path within the WCS API (relative to service base).
9191
* @param mixed $body Body payload to send in JSON format.

includes/CsvExporter/ProductExportService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ public function check_export_status() {
414414
* It is triggered automatically after the final export batch has finished and the
415415
* CSV feed file has been successfully written.
416416
*
417-
* @since x.x.x
417+
* @since 1.0.3
418418
*/
419419
public function maybe_create_catalog() {
420420
$catalog_id = Options::get( OptionDefaults::CATALOG_ID );
@@ -603,7 +603,7 @@ public function create_catalog_manually(): void {
603603
*
604604
* This method deletes the existing catalog which is associated with the current pixel to allow the creation of a new catalog.
605605
*
606-
* @since x.x.x
606+
* @since 1.0.3
607607
*
608608
* @param string $pixel_id The ID of the pixel to delete the catalog for.
609609
*

0 commit comments

Comments
 (0)