Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update SDK from api-definitions #687

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/long-news-refuse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@rebilly/client-php": patch
---

feat: Add transaction-processed to the list of supported tag/untag rules Rebilly/api-definitions#1871
4 changes: 2 additions & 2 deletions src/Model/EmailNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class EmailNotification implements JsonSerializable

public const EVENT_TYPE_GATEWAY_ACCOUNT_REQUESTED = 'gateway-account-requested';

public const EVENT_TYPE_HARD_USAGE_LIMIT_REACHED_YAML = 'hard-usage-limit-reached.yaml';
public const EVENT_TYPE_HARD_USAGE_LIMIT_REACHED = 'hard-usage-limit-reached';

public const EVENT_TYPE_INVOICE_ISSUED = 'invoice-issued';

Expand Down Expand Up @@ -147,7 +147,7 @@ class EmailNotification implements JsonSerializable

public const EVENT_TYPE_RISK_SCORE_CHANGED = 'risk-score-changed';

public const EVENT_TYPE_SOFT_USAGE_LIMIT_REACHED_YAML = 'soft-usage-limit-reached.yaml';
public const EVENT_TYPE_SOFT_USAGE_LIMIT_REACHED = 'soft-usage-limit-reached';

public const EVENT_TYPE_SUBSCRIPTION_ACTIVATED = 'subscription-activated';

Expand Down
4 changes: 2 additions & 2 deletions src/Model/GlobalWebhook.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@ class GlobalWebhook implements JsonSerializable

public const EVENTS_FILTER_SUBSCRIPTION_DOWNGRADED = 'subscription-downgraded';

public const EVENTS_FILTER_SUBSCRIPTION_ITEMS_CHANGED = 'subscription-items-changed';

public const EVENTS_FILTER_SUBSCRIPTION_PAUSED = 'subscription-paused';

public const EVENTS_FILTER_SUBSCRIPTION_REACTIVATED = 'subscription-reactivated';
Expand All @@ -143,6 +141,8 @@ class GlobalWebhook implements JsonSerializable

public const EVENTS_FILTER_TRANSACTION_DISCREPANCY_FOUND = 'transaction-discrepancy-found';

public const EVENTS_FILTER_TRANSACTION_PROCESSED = 'transaction-processed';

public const EVENTS_FILTER_ORDER_DELINQUENCY_REACHED = 'order-delinquency-reached';

public const STATUS_ACTIVE = 'active';
Expand Down
4 changes: 2 additions & 2 deletions src/Model/IntegrationConfigurations.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class IntegrationConfigurations implements JsonSerializable

public const EVENT_TYPE_GATEWAY_ACCOUNT_REQUESTED = 'gateway-account-requested';

public const EVENT_TYPE_HARD_USAGE_LIMIT_REACHED_YAML = 'hard-usage-limit-reached.yaml';
public const EVENT_TYPE_HARD_USAGE_LIMIT_REACHED = 'hard-usage-limit-reached';

public const EVENT_TYPE_INVOICE_ISSUED = 'invoice-issued';

Expand Down Expand Up @@ -147,7 +147,7 @@ class IntegrationConfigurations implements JsonSerializable

public const EVENT_TYPE_RISK_SCORE_CHANGED = 'risk-score-changed';

public const EVENT_TYPE_SOFT_USAGE_LIMIT_REACHED_YAML = 'soft-usage-limit-reached.yaml';
public const EVENT_TYPE_SOFT_USAGE_LIMIT_REACHED = 'soft-usage-limit-reached';

public const EVENT_TYPE_SUBSCRIPTION_ACTIVATED = 'subscription-activated';

Expand Down
4 changes: 2 additions & 2 deletions src/Model/SendThroughAttribution.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class SendThroughAttribution implements JsonSerializable

public const EVENT_TYPE_GATEWAY_ACCOUNT_REQUESTED = 'gateway-account-requested';

public const EVENT_TYPE_HARD_USAGE_LIMIT_REACHED_YAML = 'hard-usage-limit-reached.yaml';
public const EVENT_TYPE_HARD_USAGE_LIMIT_REACHED = 'hard-usage-limit-reached';

public const EVENT_TYPE_INVOICE_ISSUED = 'invoice-issued';

Expand Down Expand Up @@ -147,7 +147,7 @@ class SendThroughAttribution implements JsonSerializable

public const EVENT_TYPE_RISK_SCORE_CHANGED = 'risk-score-changed';

public const EVENT_TYPE_SOFT_USAGE_LIMIT_REACHED_YAML = 'soft-usage-limit-reached.yaml';
public const EVENT_TYPE_SOFT_USAGE_LIMIT_REACHED = 'soft-usage-limit-reached';

public const EVENT_TYPE_SUBSCRIPTION_ACTIVATED = 'subscription-activated';

Expand Down
4 changes: 2 additions & 2 deletions src/Model/SystemEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class SystemEvent implements JsonSerializable

public const EVENT_TYPE_GATEWAY_ACCOUNT_REQUESTED = 'gateway-account-requested';

public const EVENT_TYPE_HARD_USAGE_LIMIT_REACHED_YAML = 'hard-usage-limit-reached.yaml';
public const EVENT_TYPE_HARD_USAGE_LIMIT_REACHED = 'hard-usage-limit-reached';

public const EVENT_TYPE_INVOICE_ISSUED = 'invoice-issued';

Expand Down Expand Up @@ -147,7 +147,7 @@ class SystemEvent implements JsonSerializable

public const EVENT_TYPE_RISK_SCORE_CHANGED = 'risk-score-changed';

public const EVENT_TYPE_SOFT_USAGE_LIMIT_REACHED_YAML = 'soft-usage-limit-reached.yaml';
public const EVENT_TYPE_SOFT_USAGE_LIMIT_REACHED = 'soft-usage-limit-reached';

public const EVENT_TYPE_SUBSCRIPTION_ACTIVATED = 'subscription-activated';

Expand Down
4 changes: 2 additions & 2 deletions src/Model/TagUntagRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@ class TagUntagRule implements JsonSerializable

public const EVENT_TYPE_SUBSCRIPTION_DOWNGRADED = 'subscription-downgraded';

public const EVENT_TYPE_SUBSCRIPTION_ITEMS_CHANGED = 'subscription-items-changed';

public const EVENT_TYPE_SUBSCRIPTION_PAUSED = 'subscription-paused';

public const EVENT_TYPE_SUBSCRIPTION_REACTIVATED = 'subscription-reactivated';
Expand All @@ -143,6 +141,8 @@ class TagUntagRule implements JsonSerializable

public const EVENT_TYPE_TRANSACTION_DISCREPANCY_FOUND = 'transaction-discrepancy-found';

public const EVENT_TYPE_TRANSACTION_PROCESSED = 'transaction-processed';

public const EVENT_TYPE_ORDER_DELINQUENCY_REACHED = 'order-delinquency-reached';

public const STATUS_ACTIVE = 'active';
Expand Down
4 changes: 2 additions & 2 deletions src/Model/WebhookTracking.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class WebhookTracking implements JsonSerializable

public const EVENT_TYPE_GATEWAY_ACCOUNT_REQUESTED = 'gateway-account-requested';

public const EVENT_TYPE_HARD_USAGE_LIMIT_REACHED_YAML = 'hard-usage-limit-reached.yaml';
public const EVENT_TYPE_HARD_USAGE_LIMIT_REACHED = 'hard-usage-limit-reached';

public const EVENT_TYPE_INVOICE_ISSUED = 'invoice-issued';

Expand Down Expand Up @@ -149,7 +149,7 @@ class WebhookTracking implements JsonSerializable

public const EVENT_TYPE_RISK_SCORE_CHANGED = 'risk-score-changed';

public const EVENT_TYPE_SOFT_USAGE_LIMIT_REACHED_YAML = 'soft-usage-limit-reached.yaml';
public const EVENT_TYPE_SOFT_USAGE_LIMIT_REACHED = 'soft-usage-limit-reached';

public const EVENT_TYPE_SUBSCRIPTION_ACTIVATED = 'subscription-activated';

Expand Down
Loading