-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from Niurmiguel/development
[REF] perform actions implemented
- Loading branch information
Showing
125 changed files
with
1,215 additions
and
363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v16.14.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** | ||
* Represents the actions that can be performed on AdRule objects. | ||
*/ | ||
export abstract class AdRuleAction {} | ||
|
||
/** | ||
* The action used for resuming AdRule objects. | ||
*/ | ||
export class ActivateAdRules implements AdRuleAction {} | ||
|
||
/** | ||
* The action used for pausing AdRule objects. | ||
*/ | ||
export class DeactivateAdRules implements AdRuleAction {} | ||
|
||
/** | ||
* The action used for deleting AdRule objects. | ||
*/ | ||
export class DeleteAdRules implements AdRuleAction {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* Represents the actions that can be performed on ForecastAdjustment objects. | ||
*/ | ||
export abstract class ForecastAdjustmentAction {} | ||
|
||
/** | ||
* The action used for activating ForecastAdjustment objects. | ||
*/ | ||
export class ActivateForecastAdjustments implements ForecastAdjustmentAction {} | ||
|
||
/** | ||
* DeactivateForecastAdjustments | ||
*/ | ||
export class DeactivateForecastAdjustments implements ForecastAdjustmentAction {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
lib/client/services/audienceSegment/audienceSegment.action.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/** | ||
* Action that can be performed on {@link https://developers.google.com/ad-manager/api/reference/v202202/AudienceSegmentService.AudienceSegment AudienceSegment} objects. | ||
*/ | ||
export abstract class AudienceSegmentAction {} | ||
|
||
/** | ||
* Action that can be performed on {@link https://developers.google.com/ad-manager/api/reference/v202202/AudienceSegmentService.FirstPartyAudienceSegment FirstPartyAudienceSegment} objects to activate them. | ||
*/ | ||
export class ActivateAudienceSegments implements AudienceSegmentAction {} | ||
|
||
/** | ||
* Action that can be performed on {@link https://developers.google.com/ad-manager/api/reference/v202202/AudienceSegmentService.ThirdPartyAudienceSegment ThirdPartyAudienceSegment} objects to approve them. | ||
*/ | ||
export class ApproveAudienceSegments implements AudienceSegmentAction {} | ||
|
||
/** | ||
* Action that can be performed on {@link https://developers.google.com/ad-manager/api/reference/v202202/AudienceSegmentService.FirstPartyAudienceSegment FirstPartyAudienceSegment} objects to deactivate them. | ||
*/ | ||
export class DeactivateAudienceSegments implements AudienceSegmentAction {} | ||
|
||
/** | ||
* Action that can be performed on {@link https://developers.google.com/ad-manager/api/reference/v202202/AudienceSegmentService.FirstPartyAudienceSegment FirstPartyAudienceSegment} objects to populate them based on last 30 days of traffic. | ||
*/ | ||
export class PopulateAudienceSegments implements AudienceSegmentAction {} | ||
|
||
/** | ||
* Action that can be performed on {@link https://developers.google.com/ad-manager/api/reference/v202202/AudienceSegmentService.ThirdPartyAudienceSegment ThirdPartyAudienceSegment} objects to reject them. | ||
*/ | ||
export class RejectAudienceSegments implements AudienceSegmentAction {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
lib/client/services/audienceSegment/audienceSegmentService.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
lib/client/services/cdnConfiguration/cdnConfiguration.action.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* Represents the actions that can be performed on {@link https://developers.google.com/ad-manager/api/reference/v202202/CdnConfigurationService.CdnConfiguration CdnConfiguration} objects. | ||
*/ | ||
export abstract class CdnConfigurationAction {} | ||
|
||
/** | ||
* The action used for activating {@link https://developers.google.com/ad-manager/api/reference/v202202/CdnConfigurationService.CdnConfiguration CdnConfiguration} objects. | ||
*/ | ||
export class ActivateCdnConfigurations implements CdnConfigurationAction {} | ||
|
||
/** | ||
* The action used for archiving {@link https://developers.google.com/ad-manager/api/reference/v202202/CdnConfigurationService.CdnConfiguration CdnConfiguration} objects. | ||
*/ | ||
export class ArchiveCdnConfigurations implements CdnConfigurationAction {} |
3 changes: 2 additions & 1 deletion
3
lib/client/services/cdnConfiguration/cdnConfiguration.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** | ||
* Represents the actions that can be performed on | ||
* {@link https://developers.google.com/ad-manager/api/reference/v202202/CmsMetadataService.CmsMetadataKey CmsMetadataKey} objects. | ||
*/ | ||
export abstract class CmsMetadataKeyAction {} | ||
|
||
/** | ||
* The action used for activating {@link https://developers.google.com/ad-manager/api/reference/v202202/CmsMetadataService.CmsMetadataKey CmsMetadataKey} objects. | ||
*/ | ||
export class ActivateCmsMetadataKeys implements CmsMetadataKeyAction {} | ||
|
||
/** | ||
* The action used for deactivating {@link https://developers.google.com/ad-manager/api/reference/v202202/CmsMetadataService.CmsMetadataKey CmsMetadataKey} objects. | ||
*/ | ||
export class DeactivateCmsMetadataKeys implements CmsMetadataKeyAction {} | ||
|
||
/** | ||
* Represents the actions that can be performed on | ||
* {@link https://developers.google.com/ad-manager/api/reference/v202202/CmsMetadataService.CmsMetadataValue CmsMetadataValue} objects. | ||
*/ | ||
export abstract class CmsMetadataValueAction {} | ||
|
||
/** | ||
* The action used for activating {@link https://developers.google.com/ad-manager/api/reference/v202202/CmsMetadataService.CmsMetadataValue CmsMetadataValue} objects. | ||
*/ | ||
export class ActivateCmsMetadataValues implements CmsMetadataValueAction {} | ||
|
||
/** | ||
* The action used for deactivating {@link https://developers.google.com/ad-manager/api/reference/v202202/CmsMetadataService.CmsMetadataValue CmsMetadataValue} objects. | ||
*/ | ||
export class DeactivateCmsMetadataValues implements CmsMetadataValueAction {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 2 additions & 6 deletions
8
lib/client/services/cmsMetadata/cmsMetadataService.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.