@teemill/platform 0.32.0 → 0.33.1
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/README.md +14 -2
- package/api.ts +894 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +573 -3
- package/dist/api.js +487 -2
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +573 -3
- package/dist/esm/api.js +482 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AmendOrderRequestAmendmentsInner.md +2 -0
- package/docs/AmendOrderRequestAmendmentsInnerReason.md +22 -0
- package/docs/CreatePixelRequest.md +24 -0
- package/docs/CreatePixelRequestFilters.md +24 -0
- package/docs/Pixel.md +26 -0
- package/docs/PixelsApi.md +341 -0
- package/docs/PixelsResponse.md +22 -0
- package/docs/ReturnOrderRequest.md +1 -1
- package/docs/ReturnOrderRequestReturnsInner.md +28 -0
- package/docs/ReturnOrderRequestReturnsInnerReason.md +22 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.33.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -111,12 +111,37 @@ export interface AmendOrderRequestAmendmentsInner {
|
|
|
111
111
|
* @memberof AmendOrderRequestAmendmentsInner
|
|
112
112
|
*/
|
|
113
113
|
'newVariantRef'?: string;
|
|
114
|
+
/**
|
|
115
|
+
*
|
|
116
|
+
* @type {AmendOrderRequestAmendmentsInnerReason}
|
|
117
|
+
* @memberof AmendOrderRequestAmendmentsInner
|
|
118
|
+
*/
|
|
119
|
+
'reason': AmendOrderRequestAmendmentsInnerReason;
|
|
114
120
|
}
|
|
115
121
|
export declare const AmendOrderRequestAmendmentsInnerActionEnum: {
|
|
116
122
|
readonly Refund: "refund";
|
|
117
123
|
readonly Exchange: "exchange";
|
|
118
124
|
};
|
|
119
125
|
export type AmendOrderRequestAmendmentsInnerActionEnum = typeof AmendOrderRequestAmendmentsInnerActionEnum[keyof typeof AmendOrderRequestAmendmentsInnerActionEnum];
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @export
|
|
129
|
+
* @interface AmendOrderRequestAmendmentsInnerReason
|
|
130
|
+
*/
|
|
131
|
+
export interface AmendOrderRequestAmendmentsInnerReason {
|
|
132
|
+
/**
|
|
133
|
+
* A reference to the resource location
|
|
134
|
+
* @type {string}
|
|
135
|
+
* @memberof AmendOrderRequestAmendmentsInnerReason
|
|
136
|
+
*/
|
|
137
|
+
'reasonRef': string;
|
|
138
|
+
/**
|
|
139
|
+
* Additional comments as to why the item is being returned or exchanged.
|
|
140
|
+
* @type {string}
|
|
141
|
+
* @memberof AmendOrderRequestAmendmentsInnerReason
|
|
142
|
+
*/
|
|
143
|
+
'additionalComments'?: string | null;
|
|
144
|
+
}
|
|
120
145
|
/**
|
|
121
146
|
*
|
|
122
147
|
* @export
|
|
@@ -418,6 +443,56 @@ export interface CreateOrderContactInformation {
|
|
|
418
443
|
*/
|
|
419
444
|
'phone'?: string | null;
|
|
420
445
|
}
|
|
446
|
+
/**
|
|
447
|
+
*
|
|
448
|
+
* @export
|
|
449
|
+
* @interface CreatePixelRequest
|
|
450
|
+
*/
|
|
451
|
+
export interface CreatePixelRequest {
|
|
452
|
+
/**
|
|
453
|
+
*
|
|
454
|
+
* @type {string}
|
|
455
|
+
* @memberof CreatePixelRequest
|
|
456
|
+
*/
|
|
457
|
+
'name': string;
|
|
458
|
+
/**
|
|
459
|
+
*
|
|
460
|
+
* @type {Array<string>}
|
|
461
|
+
* @memberof CreatePixelRequest
|
|
462
|
+
*/
|
|
463
|
+
'sourceProjects': Array<string>;
|
|
464
|
+
/**
|
|
465
|
+
*
|
|
466
|
+
* @type {CreatePixelRequestFilters}
|
|
467
|
+
* @memberof CreatePixelRequest
|
|
468
|
+
*/
|
|
469
|
+
'filters': CreatePixelRequestFilters;
|
|
470
|
+
}
|
|
471
|
+
/**
|
|
472
|
+
*
|
|
473
|
+
* @export
|
|
474
|
+
* @interface CreatePixelRequestFilters
|
|
475
|
+
*/
|
|
476
|
+
export interface CreatePixelRequestFilters {
|
|
477
|
+
/**
|
|
478
|
+
*
|
|
479
|
+
* @type {Array<string>}
|
|
480
|
+
* @memberof CreatePixelRequestFilters
|
|
481
|
+
*/
|
|
482
|
+
'projects': Array<string> | null;
|
|
483
|
+
/**
|
|
484
|
+
*
|
|
485
|
+
* @type {Array<string>}
|
|
486
|
+
* @memberof CreatePixelRequestFilters
|
|
487
|
+
*/
|
|
488
|
+
'demographics': Array<string> | null;
|
|
489
|
+
/**
|
|
490
|
+
*
|
|
491
|
+
* @type {Array<string>}
|
|
492
|
+
* @memberof CreatePixelRequestFilters
|
|
493
|
+
*/
|
|
494
|
+
'tags': Array<string> | null;
|
|
495
|
+
}
|
|
421
496
|
/**
|
|
422
497
|
* @type CreateReview201Response
|
|
423
498
|
* @export
|
|
@@ -1593,6 +1668,56 @@ export declare const PaymentAttemptStatusEnum: {
|
|
|
1593
1668
|
readonly Cancelled: "cancelled";
|
|
1594
1669
|
};
|
|
1595
1670
|
export type PaymentAttemptStatusEnum = typeof PaymentAttemptStatusEnum[keyof typeof PaymentAttemptStatusEnum];
|
|
1671
|
+
/**
|
|
1672
|
+
*
|
|
1673
|
+
* @export
|
|
1674
|
+
* @interface Pixel
|
|
1675
|
+
*/
|
|
1676
|
+
export interface Pixel {
|
|
1677
|
+
/**
|
|
1678
|
+
* Unique object identifier
|
|
1679
|
+
* @type {string}
|
|
1680
|
+
* @memberof Pixel
|
|
1681
|
+
*/
|
|
1682
|
+
'id': string;
|
|
1683
|
+
/**
|
|
1684
|
+
*
|
|
1685
|
+
* @type {string}
|
|
1686
|
+
* @memberof Pixel
|
|
1687
|
+
*/
|
|
1688
|
+
'name': string;
|
|
1689
|
+
/**
|
|
1690
|
+
*
|
|
1691
|
+
* @type {Array<string>}
|
|
1692
|
+
* @memberof Pixel
|
|
1693
|
+
*/
|
|
1694
|
+
'sourceProjects': Array<string>;
|
|
1695
|
+
/**
|
|
1696
|
+
*
|
|
1697
|
+
* @type {CreatePixelRequestFilters}
|
|
1698
|
+
* @memberof Pixel
|
|
1699
|
+
*/
|
|
1700
|
+
'filters': CreatePixelRequestFilters;
|
|
1701
|
+
}
|
|
1702
|
+
/**
|
|
1703
|
+
*
|
|
1704
|
+
* @export
|
|
1705
|
+
* @interface PixelsResponse
|
|
1706
|
+
*/
|
|
1707
|
+
export interface PixelsResponse {
|
|
1708
|
+
/**
|
|
1709
|
+
*
|
|
1710
|
+
* @type {Array<Pixel>}
|
|
1711
|
+
* @memberof PixelsResponse
|
|
1712
|
+
*/
|
|
1713
|
+
'pixels': Array<Pixel>;
|
|
1714
|
+
/**
|
|
1715
|
+
*
|
|
1716
|
+
* @type {number}
|
|
1717
|
+
* @memberof PixelsResponse
|
|
1718
|
+
*/
|
|
1719
|
+
'nextPageToken'?: number | null;
|
|
1720
|
+
}
|
|
1596
1721
|
/**
|
|
1597
1722
|
*
|
|
1598
1723
|
* @export
|
|
@@ -1727,10 +1852,71 @@ export interface Project {
|
|
|
1727
1852
|
export interface ReturnOrderRequest {
|
|
1728
1853
|
/**
|
|
1729
1854
|
*
|
|
1730
|
-
* @type {Array<
|
|
1855
|
+
* @type {Array<ReturnOrderRequestReturnsInner>}
|
|
1731
1856
|
* @memberof ReturnOrderRequest
|
|
1732
1857
|
*/
|
|
1733
|
-
'returns': Array<
|
|
1858
|
+
'returns': Array<ReturnOrderRequestReturnsInner>;
|
|
1859
|
+
}
|
|
1860
|
+
/**
|
|
1861
|
+
*
|
|
1862
|
+
* @export
|
|
1863
|
+
* @interface ReturnOrderRequestReturnsInner
|
|
1864
|
+
*/
|
|
1865
|
+
export interface ReturnOrderRequestReturnsInner {
|
|
1866
|
+
/**
|
|
1867
|
+
* Unique order item identifier
|
|
1868
|
+
* @type {string}
|
|
1869
|
+
* @memberof ReturnOrderRequestReturnsInner
|
|
1870
|
+
*/
|
|
1871
|
+
'id': string;
|
|
1872
|
+
/**
|
|
1873
|
+
*
|
|
1874
|
+
* @type {string}
|
|
1875
|
+
* @memberof ReturnOrderRequestReturnsInner
|
|
1876
|
+
*/
|
|
1877
|
+
'action': ReturnOrderRequestReturnsInnerActionEnum;
|
|
1878
|
+
/**
|
|
1879
|
+
* The quantity of the item to refund or exchange. This must be less than or equal to the quantity of the item in the order.
|
|
1880
|
+
* @type {number}
|
|
1881
|
+
* @memberof ReturnOrderRequestReturnsInner
|
|
1882
|
+
*/
|
|
1883
|
+
'quantity': number;
|
|
1884
|
+
/**
|
|
1885
|
+
* A reference to the variant being ordered
|
|
1886
|
+
* @type {string}
|
|
1887
|
+
* @memberof ReturnOrderRequestReturnsInner
|
|
1888
|
+
*/
|
|
1889
|
+
'newVariantRef'?: string;
|
|
1890
|
+
/**
|
|
1891
|
+
*
|
|
1892
|
+
* @type {ReturnOrderRequestReturnsInnerReason}
|
|
1893
|
+
* @memberof ReturnOrderRequestReturnsInner
|
|
1894
|
+
*/
|
|
1895
|
+
'reason': ReturnOrderRequestReturnsInnerReason;
|
|
1896
|
+
}
|
|
1897
|
+
export declare const ReturnOrderRequestReturnsInnerActionEnum: {
|
|
1898
|
+
readonly Refund: "refund";
|
|
1899
|
+
readonly Exchange: "exchange";
|
|
1900
|
+
};
|
|
1901
|
+
export type ReturnOrderRequestReturnsInnerActionEnum = typeof ReturnOrderRequestReturnsInnerActionEnum[keyof typeof ReturnOrderRequestReturnsInnerActionEnum];
|
|
1902
|
+
/**
|
|
1903
|
+
*
|
|
1904
|
+
* @export
|
|
1905
|
+
* @interface ReturnOrderRequestReturnsInnerReason
|
|
1906
|
+
*/
|
|
1907
|
+
export interface ReturnOrderRequestReturnsInnerReason {
|
|
1908
|
+
/**
|
|
1909
|
+
* A reference to the reason for the return or exchange.
|
|
1910
|
+
* @type {string}
|
|
1911
|
+
* @memberof ReturnOrderRequestReturnsInnerReason
|
|
1912
|
+
*/
|
|
1913
|
+
'reasonRef': string;
|
|
1914
|
+
/**
|
|
1915
|
+
* Additional comments as to why the item is being returned or exchanged.
|
|
1916
|
+
* @type {string}
|
|
1917
|
+
* @memberof ReturnOrderRequestReturnsInnerReason
|
|
1918
|
+
*/
|
|
1919
|
+
'additionalComments'?: string | null;
|
|
1734
1920
|
}
|
|
1735
1921
|
/**
|
|
1736
1922
|
*
|
|
@@ -4367,6 +4553,390 @@ export declare class PaymentApi extends BaseAPI {
|
|
|
4367
4553
|
*/
|
|
4368
4554
|
getStripePaymentAccount(requestParameters: PaymentApiGetStripePaymentAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentAccount, any>>;
|
|
4369
4555
|
}
|
|
4556
|
+
/**
|
|
4557
|
+
* PixelsApi - axios parameter creator
|
|
4558
|
+
* @export
|
|
4559
|
+
*/
|
|
4560
|
+
export declare const PixelsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4561
|
+
/**
|
|
4562
|
+
*
|
|
4563
|
+
* @summary Create a pixel
|
|
4564
|
+
* @param {string} project Project unique identifier
|
|
4565
|
+
* @param {string} platformId The platform identifier
|
|
4566
|
+
* @param {number} [pageToken] Page reference token
|
|
4567
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4568
|
+
* @param {string} [search] Search term to filter results
|
|
4569
|
+
* @param {CreatePixelRequest} [createPixelRequest]
|
|
4570
|
+
* @param {*} [options] Override http request option.
|
|
4571
|
+
* @throws {RequiredError}
|
|
4572
|
+
*/
|
|
4573
|
+
createPixel: (project: string, platformId: string, pageToken?: number, pageSize?: number, search?: string, createPixelRequest?: CreatePixelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4574
|
+
/**
|
|
4575
|
+
* Delete a pixel
|
|
4576
|
+
* @summary Delete a pixel
|
|
4577
|
+
* @param {string} project Project unique identifier
|
|
4578
|
+
* @param {string} platformId The platform identifier
|
|
4579
|
+
* @param {string} pixelId The pixel identifier
|
|
4580
|
+
* @param {*} [options] Override http request option.
|
|
4581
|
+
* @throws {RequiredError}
|
|
4582
|
+
*/
|
|
4583
|
+
deletePixel: (project: string, platformId: string, pixelId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4584
|
+
/**
|
|
4585
|
+
* Get a pixel for a platform by a given pixel ID.
|
|
4586
|
+
* @summary Get pixel
|
|
4587
|
+
* @param {string} project Project unique identifier
|
|
4588
|
+
* @param {string} platformId The platform identifier
|
|
4589
|
+
* @param {string} pixelId The pixel identifier
|
|
4590
|
+
* @param {*} [options] Override http request option.
|
|
4591
|
+
* @throws {RequiredError}
|
|
4592
|
+
*/
|
|
4593
|
+
getPixel: (project: string, platformId: string, pixelId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4594
|
+
/**
|
|
4595
|
+
* List pixels for a platform
|
|
4596
|
+
* @summary List pixels
|
|
4597
|
+
* @param {string} project Project unique identifier
|
|
4598
|
+
* @param {string} platformId The platform identifier
|
|
4599
|
+
* @param {number} [pageToken] Page reference token
|
|
4600
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4601
|
+
* @param {string} [search] Search term to filter results
|
|
4602
|
+
* @param {*} [options] Override http request option.
|
|
4603
|
+
* @throws {RequiredError}
|
|
4604
|
+
*/
|
|
4605
|
+
listPixels: (project: string, platformId: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4606
|
+
/**
|
|
4607
|
+
* Update a pixel
|
|
4608
|
+
* @summary Update a pixel
|
|
4609
|
+
* @param {string} project Project unique identifier
|
|
4610
|
+
* @param {string} platformId The platform identifier
|
|
4611
|
+
* @param {string} pixelId The pixel identifier
|
|
4612
|
+
* @param {CreatePixelRequest} [createPixelRequest]
|
|
4613
|
+
* @param {*} [options] Override http request option.
|
|
4614
|
+
* @throws {RequiredError}
|
|
4615
|
+
*/
|
|
4616
|
+
updatePixel: (project: string, platformId: string, pixelId: string, createPixelRequest?: CreatePixelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4617
|
+
};
|
|
4618
|
+
/**
|
|
4619
|
+
* PixelsApi - functional programming interface
|
|
4620
|
+
* @export
|
|
4621
|
+
*/
|
|
4622
|
+
export declare const PixelsApiFp: (configuration?: Configuration) => {
|
|
4623
|
+
/**
|
|
4624
|
+
*
|
|
4625
|
+
* @summary Create a pixel
|
|
4626
|
+
* @param {string} project Project unique identifier
|
|
4627
|
+
* @param {string} platformId The platform identifier
|
|
4628
|
+
* @param {number} [pageToken] Page reference token
|
|
4629
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4630
|
+
* @param {string} [search] Search term to filter results
|
|
4631
|
+
* @param {CreatePixelRequest} [createPixelRequest]
|
|
4632
|
+
* @param {*} [options] Override http request option.
|
|
4633
|
+
* @throws {RequiredError}
|
|
4634
|
+
*/
|
|
4635
|
+
createPixel(project: string, platformId: string, pageToken?: number, pageSize?: number, search?: string, createPixelRequest?: CreatePixelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pixel>>;
|
|
4636
|
+
/**
|
|
4637
|
+
* Delete a pixel
|
|
4638
|
+
* @summary Delete a pixel
|
|
4639
|
+
* @param {string} project Project unique identifier
|
|
4640
|
+
* @param {string} platformId The platform identifier
|
|
4641
|
+
* @param {string} pixelId The pixel identifier
|
|
4642
|
+
* @param {*} [options] Override http request option.
|
|
4643
|
+
* @throws {RequiredError}
|
|
4644
|
+
*/
|
|
4645
|
+
deletePixel(project: string, platformId: string, pixelId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4646
|
+
/**
|
|
4647
|
+
* Get a pixel for a platform by a given pixel ID.
|
|
4648
|
+
* @summary Get pixel
|
|
4649
|
+
* @param {string} project Project unique identifier
|
|
4650
|
+
* @param {string} platformId The platform identifier
|
|
4651
|
+
* @param {string} pixelId The pixel identifier
|
|
4652
|
+
* @param {*} [options] Override http request option.
|
|
4653
|
+
* @throws {RequiredError}
|
|
4654
|
+
*/
|
|
4655
|
+
getPixel(project: string, platformId: string, pixelId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pixel>>;
|
|
4656
|
+
/**
|
|
4657
|
+
* List pixels for a platform
|
|
4658
|
+
* @summary List pixels
|
|
4659
|
+
* @param {string} project Project unique identifier
|
|
4660
|
+
* @param {string} platformId The platform identifier
|
|
4661
|
+
* @param {number} [pageToken] Page reference token
|
|
4662
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4663
|
+
* @param {string} [search] Search term to filter results
|
|
4664
|
+
* @param {*} [options] Override http request option.
|
|
4665
|
+
* @throws {RequiredError}
|
|
4666
|
+
*/
|
|
4667
|
+
listPixels(project: string, platformId: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PixelsResponse>>;
|
|
4668
|
+
/**
|
|
4669
|
+
* Update a pixel
|
|
4670
|
+
* @summary Update a pixel
|
|
4671
|
+
* @param {string} project Project unique identifier
|
|
4672
|
+
* @param {string} platformId The platform identifier
|
|
4673
|
+
* @param {string} pixelId The pixel identifier
|
|
4674
|
+
* @param {CreatePixelRequest} [createPixelRequest]
|
|
4675
|
+
* @param {*} [options] Override http request option.
|
|
4676
|
+
* @throws {RequiredError}
|
|
4677
|
+
*/
|
|
4678
|
+
updatePixel(project: string, platformId: string, pixelId: string, createPixelRequest?: CreatePixelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pixel>>;
|
|
4679
|
+
};
|
|
4680
|
+
/**
|
|
4681
|
+
* PixelsApi - factory interface
|
|
4682
|
+
* @export
|
|
4683
|
+
*/
|
|
4684
|
+
export declare const PixelsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4685
|
+
/**
|
|
4686
|
+
*
|
|
4687
|
+
* @summary Create a pixel
|
|
4688
|
+
* @param {PixelsApiCreatePixelRequest} requestParameters Request parameters.
|
|
4689
|
+
* @param {*} [options] Override http request option.
|
|
4690
|
+
* @throws {RequiredError}
|
|
4691
|
+
*/
|
|
4692
|
+
createPixel(requestParameters: PixelsApiCreatePixelRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pixel>;
|
|
4693
|
+
/**
|
|
4694
|
+
* Delete a pixel
|
|
4695
|
+
* @summary Delete a pixel
|
|
4696
|
+
* @param {PixelsApiDeletePixelRequest} requestParameters Request parameters.
|
|
4697
|
+
* @param {*} [options] Override http request option.
|
|
4698
|
+
* @throws {RequiredError}
|
|
4699
|
+
*/
|
|
4700
|
+
deletePixel(requestParameters: PixelsApiDeletePixelRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4701
|
+
/**
|
|
4702
|
+
* Get a pixel for a platform by a given pixel ID.
|
|
4703
|
+
* @summary Get pixel
|
|
4704
|
+
* @param {PixelsApiGetPixelRequest} requestParameters Request parameters.
|
|
4705
|
+
* @param {*} [options] Override http request option.
|
|
4706
|
+
* @throws {RequiredError}
|
|
4707
|
+
*/
|
|
4708
|
+
getPixel(requestParameters: PixelsApiGetPixelRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pixel>;
|
|
4709
|
+
/**
|
|
4710
|
+
* List pixels for a platform
|
|
4711
|
+
* @summary List pixels
|
|
4712
|
+
* @param {PixelsApiListPixelsRequest} requestParameters Request parameters.
|
|
4713
|
+
* @param {*} [options] Override http request option.
|
|
4714
|
+
* @throws {RequiredError}
|
|
4715
|
+
*/
|
|
4716
|
+
listPixels(requestParameters: PixelsApiListPixelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<PixelsResponse>;
|
|
4717
|
+
/**
|
|
4718
|
+
* Update a pixel
|
|
4719
|
+
* @summary Update a pixel
|
|
4720
|
+
* @param {PixelsApiUpdatePixelRequest} requestParameters Request parameters.
|
|
4721
|
+
* @param {*} [options] Override http request option.
|
|
4722
|
+
* @throws {RequiredError}
|
|
4723
|
+
*/
|
|
4724
|
+
updatePixel(requestParameters: PixelsApiUpdatePixelRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pixel>;
|
|
4725
|
+
};
|
|
4726
|
+
/**
|
|
4727
|
+
* Request parameters for createPixel operation in PixelsApi.
|
|
4728
|
+
* @export
|
|
4729
|
+
* @interface PixelsApiCreatePixelRequest
|
|
4730
|
+
*/
|
|
4731
|
+
export interface PixelsApiCreatePixelRequest {
|
|
4732
|
+
/**
|
|
4733
|
+
* Project unique identifier
|
|
4734
|
+
* @type {string}
|
|
4735
|
+
* @memberof PixelsApiCreatePixel
|
|
4736
|
+
*/
|
|
4737
|
+
readonly project: string;
|
|
4738
|
+
/**
|
|
4739
|
+
* The platform identifier
|
|
4740
|
+
* @type {string}
|
|
4741
|
+
* @memberof PixelsApiCreatePixel
|
|
4742
|
+
*/
|
|
4743
|
+
readonly platformId: string;
|
|
4744
|
+
/**
|
|
4745
|
+
* Page reference token
|
|
4746
|
+
* @type {number}
|
|
4747
|
+
* @memberof PixelsApiCreatePixel
|
|
4748
|
+
*/
|
|
4749
|
+
readonly pageToken?: number;
|
|
4750
|
+
/**
|
|
4751
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4752
|
+
* @type {number}
|
|
4753
|
+
* @memberof PixelsApiCreatePixel
|
|
4754
|
+
*/
|
|
4755
|
+
readonly pageSize?: number;
|
|
4756
|
+
/**
|
|
4757
|
+
* Search term to filter results
|
|
4758
|
+
* @type {string}
|
|
4759
|
+
* @memberof PixelsApiCreatePixel
|
|
4760
|
+
*/
|
|
4761
|
+
readonly search?: string;
|
|
4762
|
+
/**
|
|
4763
|
+
*
|
|
4764
|
+
* @type {CreatePixelRequest}
|
|
4765
|
+
* @memberof PixelsApiCreatePixel
|
|
4766
|
+
*/
|
|
4767
|
+
readonly createPixelRequest?: CreatePixelRequest;
|
|
4768
|
+
}
|
|
4769
|
+
/**
|
|
4770
|
+
* Request parameters for deletePixel operation in PixelsApi.
|
|
4771
|
+
* @export
|
|
4772
|
+
* @interface PixelsApiDeletePixelRequest
|
|
4773
|
+
*/
|
|
4774
|
+
export interface PixelsApiDeletePixelRequest {
|
|
4775
|
+
/**
|
|
4776
|
+
* Project unique identifier
|
|
4777
|
+
* @type {string}
|
|
4778
|
+
* @memberof PixelsApiDeletePixel
|
|
4779
|
+
*/
|
|
4780
|
+
readonly project: string;
|
|
4781
|
+
/**
|
|
4782
|
+
* The platform identifier
|
|
4783
|
+
* @type {string}
|
|
4784
|
+
* @memberof PixelsApiDeletePixel
|
|
4785
|
+
*/
|
|
4786
|
+
readonly platformId: string;
|
|
4787
|
+
/**
|
|
4788
|
+
* The pixel identifier
|
|
4789
|
+
* @type {string}
|
|
4790
|
+
* @memberof PixelsApiDeletePixel
|
|
4791
|
+
*/
|
|
4792
|
+
readonly pixelId: string;
|
|
4793
|
+
}
|
|
4794
|
+
/**
|
|
4795
|
+
* Request parameters for getPixel operation in PixelsApi.
|
|
4796
|
+
* @export
|
|
4797
|
+
* @interface PixelsApiGetPixelRequest
|
|
4798
|
+
*/
|
|
4799
|
+
export interface PixelsApiGetPixelRequest {
|
|
4800
|
+
/**
|
|
4801
|
+
* Project unique identifier
|
|
4802
|
+
* @type {string}
|
|
4803
|
+
* @memberof PixelsApiGetPixel
|
|
4804
|
+
*/
|
|
4805
|
+
readonly project: string;
|
|
4806
|
+
/**
|
|
4807
|
+
* The platform identifier
|
|
4808
|
+
* @type {string}
|
|
4809
|
+
* @memberof PixelsApiGetPixel
|
|
4810
|
+
*/
|
|
4811
|
+
readonly platformId: string;
|
|
4812
|
+
/**
|
|
4813
|
+
* The pixel identifier
|
|
4814
|
+
* @type {string}
|
|
4815
|
+
* @memberof PixelsApiGetPixel
|
|
4816
|
+
*/
|
|
4817
|
+
readonly pixelId: string;
|
|
4818
|
+
}
|
|
4819
|
+
/**
|
|
4820
|
+
* Request parameters for listPixels operation in PixelsApi.
|
|
4821
|
+
* @export
|
|
4822
|
+
* @interface PixelsApiListPixelsRequest
|
|
4823
|
+
*/
|
|
4824
|
+
export interface PixelsApiListPixelsRequest {
|
|
4825
|
+
/**
|
|
4826
|
+
* Project unique identifier
|
|
4827
|
+
* @type {string}
|
|
4828
|
+
* @memberof PixelsApiListPixels
|
|
4829
|
+
*/
|
|
4830
|
+
readonly project: string;
|
|
4831
|
+
/**
|
|
4832
|
+
* The platform identifier
|
|
4833
|
+
* @type {string}
|
|
4834
|
+
* @memberof PixelsApiListPixels
|
|
4835
|
+
*/
|
|
4836
|
+
readonly platformId: string;
|
|
4837
|
+
/**
|
|
4838
|
+
* Page reference token
|
|
4839
|
+
* @type {number}
|
|
4840
|
+
* @memberof PixelsApiListPixels
|
|
4841
|
+
*/
|
|
4842
|
+
readonly pageToken?: number;
|
|
4843
|
+
/**
|
|
4844
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4845
|
+
* @type {number}
|
|
4846
|
+
* @memberof PixelsApiListPixels
|
|
4847
|
+
*/
|
|
4848
|
+
readonly pageSize?: number;
|
|
4849
|
+
/**
|
|
4850
|
+
* Search term to filter results
|
|
4851
|
+
* @type {string}
|
|
4852
|
+
* @memberof PixelsApiListPixels
|
|
4853
|
+
*/
|
|
4854
|
+
readonly search?: string;
|
|
4855
|
+
}
|
|
4856
|
+
/**
|
|
4857
|
+
* Request parameters for updatePixel operation in PixelsApi.
|
|
4858
|
+
* @export
|
|
4859
|
+
* @interface PixelsApiUpdatePixelRequest
|
|
4860
|
+
*/
|
|
4861
|
+
export interface PixelsApiUpdatePixelRequest {
|
|
4862
|
+
/**
|
|
4863
|
+
* Project unique identifier
|
|
4864
|
+
* @type {string}
|
|
4865
|
+
* @memberof PixelsApiUpdatePixel
|
|
4866
|
+
*/
|
|
4867
|
+
readonly project: string;
|
|
4868
|
+
/**
|
|
4869
|
+
* The platform identifier
|
|
4870
|
+
* @type {string}
|
|
4871
|
+
* @memberof PixelsApiUpdatePixel
|
|
4872
|
+
*/
|
|
4873
|
+
readonly platformId: string;
|
|
4874
|
+
/**
|
|
4875
|
+
* The pixel identifier
|
|
4876
|
+
* @type {string}
|
|
4877
|
+
* @memberof PixelsApiUpdatePixel
|
|
4878
|
+
*/
|
|
4879
|
+
readonly pixelId: string;
|
|
4880
|
+
/**
|
|
4881
|
+
*
|
|
4882
|
+
* @type {CreatePixelRequest}
|
|
4883
|
+
* @memberof PixelsApiUpdatePixel
|
|
4884
|
+
*/
|
|
4885
|
+
readonly createPixelRequest?: CreatePixelRequest;
|
|
4886
|
+
}
|
|
4887
|
+
/**
|
|
4888
|
+
* PixelsApi - object-oriented interface
|
|
4889
|
+
* @export
|
|
4890
|
+
* @class PixelsApi
|
|
4891
|
+
* @extends {BaseAPI}
|
|
4892
|
+
*/
|
|
4893
|
+
export declare class PixelsApi extends BaseAPI {
|
|
4894
|
+
/**
|
|
4895
|
+
*
|
|
4896
|
+
* @summary Create a pixel
|
|
4897
|
+
* @param {PixelsApiCreatePixelRequest} requestParameters Request parameters.
|
|
4898
|
+
* @param {*} [options] Override http request option.
|
|
4899
|
+
* @throws {RequiredError}
|
|
4900
|
+
* @memberof PixelsApi
|
|
4901
|
+
*/
|
|
4902
|
+
createPixel(requestParameters: PixelsApiCreatePixelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pixel, any>>;
|
|
4903
|
+
/**
|
|
4904
|
+
* Delete a pixel
|
|
4905
|
+
* @summary Delete a pixel
|
|
4906
|
+
* @param {PixelsApiDeletePixelRequest} requestParameters Request parameters.
|
|
4907
|
+
* @param {*} [options] Override http request option.
|
|
4908
|
+
* @throws {RequiredError}
|
|
4909
|
+
* @memberof PixelsApi
|
|
4910
|
+
*/
|
|
4911
|
+
deletePixel(requestParameters: PixelsApiDeletePixelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
4912
|
+
/**
|
|
4913
|
+
* Get a pixel for a platform by a given pixel ID.
|
|
4914
|
+
* @summary Get pixel
|
|
4915
|
+
* @param {PixelsApiGetPixelRequest} requestParameters Request parameters.
|
|
4916
|
+
* @param {*} [options] Override http request option.
|
|
4917
|
+
* @throws {RequiredError}
|
|
4918
|
+
* @memberof PixelsApi
|
|
4919
|
+
*/
|
|
4920
|
+
getPixel(requestParameters: PixelsApiGetPixelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pixel, any>>;
|
|
4921
|
+
/**
|
|
4922
|
+
* List pixels for a platform
|
|
4923
|
+
* @summary List pixels
|
|
4924
|
+
* @param {PixelsApiListPixelsRequest} requestParameters Request parameters.
|
|
4925
|
+
* @param {*} [options] Override http request option.
|
|
4926
|
+
* @throws {RequiredError}
|
|
4927
|
+
* @memberof PixelsApi
|
|
4928
|
+
*/
|
|
4929
|
+
listPixels(requestParameters: PixelsApiListPixelsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PixelsResponse, any>>;
|
|
4930
|
+
/**
|
|
4931
|
+
* Update a pixel
|
|
4932
|
+
* @summary Update a pixel
|
|
4933
|
+
* @param {PixelsApiUpdatePixelRequest} requestParameters Request parameters.
|
|
4934
|
+
* @param {*} [options] Override http request option.
|
|
4935
|
+
* @throws {RequiredError}
|
|
4936
|
+
* @memberof PixelsApi
|
|
4937
|
+
*/
|
|
4938
|
+
updatePixel(requestParameters: PixelsApiUpdatePixelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pixel, any>>;
|
|
4939
|
+
}
|
|
4370
4940
|
/**
|
|
4371
4941
|
* PlatformApi - axios parameter creator
|
|
4372
4942
|
* @export
|