@marteye/studiojs 1.1.26 → 1.1.27
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/dist/index.d.ts +2 -2
- package/dist/index.esm.js +4 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/resources/{applications.d.ts → bidderApplications.d.ts} +3 -0
- package/dist/resources.d.ts +4 -4
- package/dist/studio.d.ts +4 -4
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1399,7 +1399,7 @@ declare function resources(httpClient: HttpClient): {
|
|
|
1399
1399
|
actions: {
|
|
1400
1400
|
constructAction: (bodyAsBuffer: Buffer, signature: string, endpointSecret: string) => Promise<any>;
|
|
1401
1401
|
};
|
|
1402
|
-
|
|
1402
|
+
bidderApplications: {
|
|
1403
1403
|
list: (marketId: string, options?: ListApplicationsOptions) => Promise<ListApplicationsResponse>;
|
|
1404
1404
|
get: (marketId: string, applicationId: string) => Promise<Application>;
|
|
1405
1405
|
create: (marketId: string, applicationData: CreateApplicationPayload) => Promise<Application>;
|
|
@@ -1591,7 +1591,7 @@ declare function Studio(info?: {
|
|
|
1591
1591
|
actions: {
|
|
1592
1592
|
constructAction: (bodyAsBuffer: Buffer, signature: string, endpointSecret: string) => Promise<any>;
|
|
1593
1593
|
};
|
|
1594
|
-
|
|
1594
|
+
bidderApplications: {
|
|
1595
1595
|
list: (marketId: string, options?: ListApplicationsOptions) => Promise<ListApplicationsResponse>;
|
|
1596
1596
|
get: (marketId: string, applicationId: string) => Promise<Application>;
|
|
1597
1597
|
create: (marketId: string, applicationData: CreateApplicationPayload) => Promise<Application>;
|
package/dist/index.esm.js
CHANGED
|
@@ -108,6 +108,9 @@ function create$c(httpClient) {
|
|
|
108
108
|
};
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
+
/***
|
|
112
|
+
* Bidder applications
|
|
113
|
+
*/
|
|
111
114
|
function create$b(httpClient) {
|
|
112
115
|
let applications = {
|
|
113
116
|
/**
|
|
@@ -5178,7 +5181,7 @@ function resources(httpClient) {
|
|
|
5178
5181
|
lotitems: create$8(httpClient),
|
|
5179
5182
|
webhooks: create(),
|
|
5180
5183
|
actions: create$d(),
|
|
5181
|
-
|
|
5184
|
+
bidderApplications: create$b(httpClient),
|
|
5182
5185
|
settings: create$2(httpClient),
|
|
5183
5186
|
adjustments: create$c(httpClient),
|
|
5184
5187
|
productCodes: create$5(httpClient),
|