Skip to content

Commit 26d2a3d

Browse files
authored
Add v29.1.0 support (#66)
1 parent 7ebd2e7 commit 26d2a3d

File tree

6 files changed

+128
-87
lines changed

6 files changed

+128
-87
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![PyPI version](https://badge.fury.io/py/google-ads-stubs.svg)](https://badge.fury.io/py/google-ads-stubs)
44

55
This package provides type stubs for the [Google Ads API Client Library for Python](https://github.com/googleads/google-ads-python).
6-
It's currently compatible with v29.0.0 of this library (v23.0 of the API). It allows you to type check usage of the library with e.g. [mypy](http://mypy-lang.org/) and will also improve autocomplete in many editors.
6+
It's currently compatible with v29.1.0 of this library (v23.0 of the API). It allows you to type check usage of the library with e.g. [mypy](http://mypy-lang.org/) and will also improve autocomplete in many editors.
77

88
**This is in no way affiliated with Google.**
99

google-stubs/ads/googleads/client.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,6 +1275,7 @@ class GoogleAdsClient:
12751275
http_proxy: str | None
12761276
use_proto_plus: bool
12771277
enums: _EnumGetter
1278+
gaada: str | None
12781279
@classmethod
12791280
def copy_from(
12801281
cls,
@@ -1307,6 +1308,7 @@ class GoogleAdsClient:
13071308
http_proxy: str | None = None,
13081309
use_proto_plus: bool = False,
13091310
use_cloud_org_for_api_access: bool | None = None,
1311+
gaada: str | None = None,
13101312
) -> None: ...
13111313
# Autogenerated get_type overload
13121314
def get_type(cls, name: str, version: _V = "v23") -> Any: ...

google-stubs/ads/googleads/config.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class _ConfigDataOptional(TypedDict, total=False):
99
endpoint: str
1010
http_proxy: str
1111
use_cloud_org_for_api_access: bool
12+
gaada: str
1213

1314
class _ConfigDataParsedOptional(_ConfigDataOptional, total=False):
1415
login_customer_id: str

google-stubs/ads/googleads/interceptors/metadata_interceptor.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ class MetadataInterceptor(
3333
developer_token_meta: tuple[str, str] = ...
3434
login_customer_id_meta: tuple[str, str] | None = ...
3535
linked_customer_id_meta: tuple[str, str] | None = ...
36+
gaada: str | None = ...
3637
use_cloud_org_for_api_access: bool | None = ...
3738
def __init__(
3839
self,
3940
developer_token: str,
4041
login_customer_id: str,
4142
linked_customer_id: str | None = None,
4243
use_cloud_org_for_api_access: bool | None = None,
44+
gaada: str | None = None,
4345
) -> None: ...
4446
def intercept_unary_unary(
4547
self,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ classifiers = [
1313
"Typing :: Stubs Only",
1414
]
1515
dependencies = [
16-
"google-ads>=29.0.0",
16+
"google-ads>=29.1.0",
1717
"google-auth-stubs>=0.1.0",
1818
"googleapis-common-protos-stubs>=2.0.0",
1919
"grpc-stubs>=1.24.7",

0 commit comments

Comments
 (0)