Skip to content
New issue

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

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

Already on GitHub? # to your account

Add v22.0.0 support #29

Merged
merged 1 commit into from
Oct 8, 2023
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
425 changes: 2 additions & 423 deletions google-stubs/ads/googleads/client.pyi

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions google-stubs/ads/googleads/errors.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ from typing import Union

import grpc

from google.ads.googleads.v12 import GoogleAdsFailure as GoogleAdsFailureV12
from google.ads.googleads.v13 import GoogleAdsFailure as GoogleAdsFailureV13
from google.ads.googleads.v14 import GoogleAdsFailure as GoogleAdsFailureV14

GoogleAdsFailure = Union[GoogleAdsFailureV12, GoogleAdsFailureV13, GoogleAdsFailureV14]
GoogleAdsFailure = Union[GoogleAdsFailureV13, GoogleAdsFailureV14]

class GoogleAdsException(Exception):
error: grpc.RpcError = ...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@ from typing import Callable, TypeVar

import grpc

from google.ads.googleads import v12, v13, v14
from google.ads.googleads import v13, v14

from .interceptor import Interceptor

_Request = TypeVar(
"_Request",
v12.SearchGoogleAdsRequest,
v12.SearchGoogleAdsStreamRequest,
v13.SearchGoogleAdsRequest,
v13.SearchGoogleAdsStreamRequest,
v14.SearchGoogleAdsRequest,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ from typing import Callable, TypeVar
import grpc
from google.protobuf.message import Message

from google.ads.googleads import v12, v13, v14
from google.ads.googleads import v13, v14

from .interceptor import Interceptor

_Request = TypeVar(
"_Request",
v12.SearchGoogleAdsRequest,
v12.SearchGoogleAdsStreamRequest,
v13.SearchGoogleAdsRequest,
v13.SearchGoogleAdsStreamRequest,
v14.SearchGoogleAdsRequest,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@ from typing import Callable, Tuple, TypeVar

import grpc

from google.ads.googleads import v12, v13, v14
from google.ads.googleads import v13, v14

from .interceptor import Interceptor

_Request = TypeVar(
"_Request",
v12.SearchGoogleAdsRequest,
v12.SearchGoogleAdsStreamRequest,
v13.SearchGoogleAdsRequest,
v13.SearchGoogleAdsStreamRequest,
v14.SearchGoogleAdsRequest,
Expand Down
Loading