@maxim_mazurok/gapi.client.authorizedbuyersmarketplace-v1alpha 0.1.20251027 → 0.1.20251030
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +62 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://authorizedbuyersmarketplace.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251030
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -664,6 +664,64 @@ declare namespace gapi.client {
|
|
|
664
664
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
665
665
|
uploadType?: string;
|
|
666
666
|
}): Request<ListFinalizedDealsResponse>;
|
|
667
|
+
/** Sets the given finalized deal as ready to serve. By default, deals are set as ready to serve as soon as they're finalized. If you want to opt out of the default behavior, and manually indicate that deals are ready to serve, ask your Technical Account Manager to add you to the allowlist. If you choose to use this method, finalized deals belonging to the bidder and its child seats don't start serving until after you call `setReadyToServe`, and after the deals become active. For example, you can use this method to delay receiving bid requests until your creative is ready. In addition, bidders can use the URL path "/v1alpha/bidders/{accountId}/finalizedDeals/{dealId}" to set ready to serve for the finalized deals belong to itself, its child seats and all their clients. This method only applies to programmatic guaranteed deals. */
|
|
668
|
+
setReadyToServe(request: {
|
|
669
|
+
/** V1 error format. */
|
|
670
|
+
'$.xgafv'?: string;
|
|
671
|
+
/** OAuth access token. */
|
|
672
|
+
access_token?: string;
|
|
673
|
+
/** Data format for response. */
|
|
674
|
+
alt?: string;
|
|
675
|
+
/** JSONP */
|
|
676
|
+
callback?: string;
|
|
677
|
+
/** Required. Format: `buyers/{accountId}/finalizedDeals/{dealId}` or `bidders/{accountId}/finalizedDeals/{dealId}` */
|
|
678
|
+
deal: string;
|
|
679
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
680
|
+
fields?: string;
|
|
681
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
682
|
+
key?: string;
|
|
683
|
+
/** OAuth 2.0 token for the current user. */
|
|
684
|
+
oauth_token?: string;
|
|
685
|
+
/** Returns response with indentations and line breaks. */
|
|
686
|
+
prettyPrint?: boolean;
|
|
687
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
688
|
+
quotaUser?: string;
|
|
689
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
690
|
+
upload_protocol?: string;
|
|
691
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
692
|
+
uploadType?: string;
|
|
693
|
+
/** Request body */
|
|
694
|
+
resource: SetReadyToServeRequest;
|
|
695
|
+
}): Request<FinalizedDeal>;
|
|
696
|
+
setReadyToServe(
|
|
697
|
+
request: {
|
|
698
|
+
/** V1 error format. */
|
|
699
|
+
'$.xgafv'?: string;
|
|
700
|
+
/** OAuth access token. */
|
|
701
|
+
access_token?: string;
|
|
702
|
+
/** Data format for response. */
|
|
703
|
+
alt?: string;
|
|
704
|
+
/** JSONP */
|
|
705
|
+
callback?: string;
|
|
706
|
+
/** Required. Format: `buyers/{accountId}/finalizedDeals/{dealId}` or `bidders/{accountId}/finalizedDeals/{dealId}` */
|
|
707
|
+
deal: string;
|
|
708
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
709
|
+
fields?: string;
|
|
710
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
711
|
+
key?: string;
|
|
712
|
+
/** OAuth 2.0 token for the current user. */
|
|
713
|
+
oauth_token?: string;
|
|
714
|
+
/** Returns response with indentations and line breaks. */
|
|
715
|
+
prettyPrint?: boolean;
|
|
716
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
717
|
+
quotaUser?: string;
|
|
718
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
719
|
+
upload_protocol?: string;
|
|
720
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
721
|
+
uploadType?: string;
|
|
722
|
+
},
|
|
723
|
+
body: SetReadyToServeRequest,
|
|
724
|
+
): Request<FinalizedDeal>;
|
|
667
725
|
}
|
|
668
726
|
interface BiddersResource {
|
|
669
727
|
auctionPackages: AuctionPackagesResource;
|
|
@@ -2058,7 +2116,7 @@ declare namespace gapi.client {
|
|
|
2058
2116
|
},
|
|
2059
2117
|
body: ResumeFinalizedDealRequest,
|
|
2060
2118
|
): Request<FinalizedDeal>;
|
|
2061
|
-
/** Sets the given finalized deal as ready to serve. By default, deals are set as ready to serve as soon as they're finalized. If you want to opt out of the default behavior, and manually indicate that deals are ready to serve, ask your Technical Account Manager to add you to the allowlist. If you choose to use this method, finalized deals belonging to the bidder and its child seats don't start serving until after you call `setReadyToServe`, and after the deals become active. For example, you can use this method to delay receiving bid requests until your creative is ready. This method only applies to programmatic guaranteed deals. */
|
|
2119
|
+
/** Sets the given finalized deal as ready to serve. By default, deals are set as ready to serve as soon as they're finalized. If you want to opt out of the default behavior, and manually indicate that deals are ready to serve, ask your Technical Account Manager to add you to the allowlist. If you choose to use this method, finalized deals belonging to the bidder and its child seats don't start serving until after you call `setReadyToServe`, and after the deals become active. For example, you can use this method to delay receiving bid requests until your creative is ready. In addition, bidders can use the URL path "/v1alpha/bidders/{accountId}/finalizedDeals/{dealId}" to set ready to serve for the finalized deals belong to itself, its child seats and all their clients. This method only applies to programmatic guaranteed deals. */
|
|
2062
2120
|
setReadyToServe(request: {
|
|
2063
2121
|
/** V1 error format. */
|
|
2064
2122
|
'$.xgafv'?: string;
|
|
@@ -2068,7 +2126,7 @@ declare namespace gapi.client {
|
|
|
2068
2126
|
alt?: string;
|
|
2069
2127
|
/** JSONP */
|
|
2070
2128
|
callback?: string;
|
|
2071
|
-
/** Required. Format: `buyers/{accountId}/finalizedDeals/{dealId}` */
|
|
2129
|
+
/** Required. Format: `buyers/{accountId}/finalizedDeals/{dealId}` or `bidders/{accountId}/finalizedDeals/{dealId}` */
|
|
2072
2130
|
deal: string;
|
|
2073
2131
|
/** Selector specifying which fields to include in a partial response. */
|
|
2074
2132
|
fields?: string;
|
|
@@ -2097,7 +2155,7 @@ declare namespace gapi.client {
|
|
|
2097
2155
|
alt?: string;
|
|
2098
2156
|
/** JSONP */
|
|
2099
2157
|
callback?: string;
|
|
2100
|
-
/** Required. Format: `buyers/{accountId}/finalizedDeals/{dealId}` */
|
|
2158
|
+
/** Required. Format: `buyers/{accountId}/finalizedDeals/{dealId}` or `bidders/{accountId}/finalizedDeals/{dealId}` */
|
|
2101
2159
|
deal: string;
|
|
2102
2160
|
/** Selector specifying which fields to include in a partial response. */
|
|
2103
2161
|
fields?: string;
|
package/package.json
CHANGED