@teemill/product-catalog 1.86.0 → 1.87.0
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 +6 -2
- package/api.ts +266 -17
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +144 -11
- package/dist/api.js +178 -17
- 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 +144 -11
- package/dist/esm/api.js +172 -15
- 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/ProductAnalyticsApi.md +30 -6
- package/docs/ProductCreatorsApi.md +63 -0
- package/docs/UserList.md +20 -0
- package/docs/UserListCreatorsInner.md +24 -0
- package/docs/UserListCreatorsInnerAvatar.md +22 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.87.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1831,6 +1831,30 @@ export declare const UpdateProductsRequestProductsInnerVariantsInnerSalePriceCur
|
|
|
1831
1831
|
readonly Gbp: "GBP";
|
|
1832
1832
|
};
|
|
1833
1833
|
export type UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum = typeof UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum[keyof typeof UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum];
|
|
1834
|
+
export interface UserList {
|
|
1835
|
+
'creators': Array<UserListCreatorsInner>;
|
|
1836
|
+
}
|
|
1837
|
+
export interface UserListCreatorsInner {
|
|
1838
|
+
/**
|
|
1839
|
+
* Unique object identifier
|
|
1840
|
+
*/
|
|
1841
|
+
'id': string;
|
|
1842
|
+
/**
|
|
1843
|
+
* The username of the product creator
|
|
1844
|
+
*/
|
|
1845
|
+
'username': string;
|
|
1846
|
+
'avatar': UserListCreatorsInnerAvatar;
|
|
1847
|
+
}
|
|
1848
|
+
export interface UserListCreatorsInnerAvatar {
|
|
1849
|
+
/**
|
|
1850
|
+
* URL to the thumbnail version of the avatar
|
|
1851
|
+
*/
|
|
1852
|
+
'thumbnail': string | null;
|
|
1853
|
+
/**
|
|
1854
|
+
* URL to the original avatar image
|
|
1855
|
+
*/
|
|
1856
|
+
'original': string | null;
|
|
1857
|
+
}
|
|
1834
1858
|
export interface Variant {
|
|
1835
1859
|
/**
|
|
1836
1860
|
* Unique object identifier
|
|
@@ -2565,7 +2589,7 @@ export declare const ProductAnalyticsApiAxiosParamCreator: (configuration?: Conf
|
|
|
2565
2589
|
* @summary Export product analytics
|
|
2566
2590
|
* @param {string} project What project it is
|
|
2567
2591
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2568
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'
|
|
2592
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'productType:<id>\', \'Multiple filters can be combined with spaces and commas.\'
|
|
2569
2593
|
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
2570
2594
|
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
2571
2595
|
* @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
|
|
@@ -2576,10 +2600,14 @@ export declare const ProductAnalyticsApiAxiosParamCreator: (configuration?: Conf
|
|
|
2576
2600
|
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
2577
2601
|
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
2578
2602
|
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
2603
|
+
* @param {string} [createdBefore] Filter to only include products created before the given date
|
|
2604
|
+
* @param {string} [createdAfter] Filter to only include products created after the given date
|
|
2605
|
+
* @param {string} [updatedBefore] Filter to only include products updated before the given date
|
|
2606
|
+
* @param {string} [updatedAfter] Filter to only include products updated after the given date
|
|
2579
2607
|
* @param {*} [options] Override http request option.
|
|
2580
2608
|
* @throws {RequiredError}
|
|
2581
2609
|
*/
|
|
2582
|
-
exportProductAnalytics: (project: string, sortBy?: Array<string>, search?: string, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2610
|
+
exportProductAnalytics: (project: string, sortBy?: Array<string>, search?: string, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, createdBefore?: string, createdAfter?: string, updatedBefore?: string, updatedAfter?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2583
2611
|
/**
|
|
2584
2612
|
* Get the AI-generated summary of the product analytics for the given project.
|
|
2585
2613
|
* @summary Get product analytics summary
|
|
@@ -2594,7 +2622,7 @@ export declare const ProductAnalyticsApiAxiosParamCreator: (configuration?: Conf
|
|
|
2594
2622
|
* @param {string} project What project it is
|
|
2595
2623
|
* @param {number} [pageToken] Page reference token
|
|
2596
2624
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2597
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'
|
|
2625
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'productType:<id>\', \'Multiple filters can be combined with spaces and commas.\'
|
|
2598
2626
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2599
2627
|
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
2600
2628
|
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
@@ -2606,10 +2634,14 @@ export declare const ProductAnalyticsApiAxiosParamCreator: (configuration?: Conf
|
|
|
2606
2634
|
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
2607
2635
|
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
2608
2636
|
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
2637
|
+
* @param {string} [createdBefore] Filter to only include products created before the given date
|
|
2638
|
+
* @param {string} [createdAfter] Filter to only include products created after the given date
|
|
2639
|
+
* @param {string} [updatedBefore] Filter to only include products updated before the given date
|
|
2640
|
+
* @param {string} [updatedAfter] Filter to only include products updated after the given date
|
|
2609
2641
|
* @param {*} [options] Override http request option.
|
|
2610
2642
|
* @throws {RequiredError}
|
|
2611
2643
|
*/
|
|
2612
|
-
listProductAnalytics: (project: string, pageToken?: number, pageSize?: number, search?: string, sortBy?: Array<string>, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2644
|
+
listProductAnalytics: (project: string, pageToken?: number, pageSize?: number, search?: string, sortBy?: Array<string>, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, createdBefore?: string, createdAfter?: string, updatedBefore?: string, updatedAfter?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2613
2645
|
};
|
|
2614
2646
|
/**
|
|
2615
2647
|
* ProductAnalyticsApi - functional programming interface
|
|
@@ -2620,7 +2652,7 @@ export declare const ProductAnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
2620
2652
|
* @summary Export product analytics
|
|
2621
2653
|
* @param {string} project What project it is
|
|
2622
2654
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2623
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'
|
|
2655
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'productType:<id>\', \'Multiple filters can be combined with spaces and commas.\'
|
|
2624
2656
|
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
2625
2657
|
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
2626
2658
|
* @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
|
|
@@ -2631,10 +2663,14 @@ export declare const ProductAnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
2631
2663
|
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
2632
2664
|
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
2633
2665
|
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
2666
|
+
* @param {string} [createdBefore] Filter to only include products created before the given date
|
|
2667
|
+
* @param {string} [createdAfter] Filter to only include products created after the given date
|
|
2668
|
+
* @param {string} [updatedBefore] Filter to only include products updated before the given date
|
|
2669
|
+
* @param {string} [updatedAfter] Filter to only include products updated after the given date
|
|
2634
2670
|
* @param {*} [options] Override http request option.
|
|
2635
2671
|
* @throws {RequiredError}
|
|
2636
2672
|
*/
|
|
2637
|
-
exportProductAnalytics(project: string, sortBy?: Array<string>, search?: string, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
2673
|
+
exportProductAnalytics(project: string, sortBy?: Array<string>, search?: string, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, createdBefore?: string, createdAfter?: string, updatedBefore?: string, updatedAfter?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
2638
2674
|
/**
|
|
2639
2675
|
* Get the AI-generated summary of the product analytics for the given project.
|
|
2640
2676
|
* @summary Get product analytics summary
|
|
@@ -2649,7 +2685,7 @@ export declare const ProductAnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
2649
2685
|
* @param {string} project What project it is
|
|
2650
2686
|
* @param {number} [pageToken] Page reference token
|
|
2651
2687
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2652
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'
|
|
2688
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'productType:<id>\', \'Multiple filters can be combined with spaces and commas.\'
|
|
2653
2689
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2654
2690
|
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
2655
2691
|
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
@@ -2661,10 +2697,14 @@ export declare const ProductAnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
2661
2697
|
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
2662
2698
|
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
2663
2699
|
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
2700
|
+
* @param {string} [createdBefore] Filter to only include products created before the given date
|
|
2701
|
+
* @param {string} [createdAfter] Filter to only include products created after the given date
|
|
2702
|
+
* @param {string} [updatedBefore] Filter to only include products updated before the given date
|
|
2703
|
+
* @param {string} [updatedAfter] Filter to only include products updated after the given date
|
|
2664
2704
|
* @param {*} [options] Override http request option.
|
|
2665
2705
|
* @throws {RequiredError}
|
|
2666
2706
|
*/
|
|
2667
|
-
listProductAnalytics(project: string, pageToken?: number, pageSize?: number, search?: string, sortBy?: Array<string>, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductAnalyticsResponse>>;
|
|
2707
|
+
listProductAnalytics(project: string, pageToken?: number, pageSize?: number, search?: string, sortBy?: Array<string>, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, createdBefore?: string, createdAfter?: string, updatedBefore?: string, updatedAfter?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductAnalyticsResponse>>;
|
|
2668
2708
|
};
|
|
2669
2709
|
/**
|
|
2670
2710
|
* ProductAnalyticsApi - factory interface
|
|
@@ -2708,7 +2748,7 @@ export interface ProductAnalyticsApiExportProductAnalyticsRequest {
|
|
|
2708
2748
|
*/
|
|
2709
2749
|
readonly sortBy?: Array<string>;
|
|
2710
2750
|
/**
|
|
2711
|
-
* Search query string to filter results. Supports field-specific filters like: \'
|
|
2751
|
+
* Search query string to filter results. Supports field-specific filters like: \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'productType:<id>\', \'Multiple filters can be combined with spaces and commas.\'
|
|
2712
2752
|
*/
|
|
2713
2753
|
readonly search?: string;
|
|
2714
2754
|
/**
|
|
@@ -2751,6 +2791,22 @@ export interface ProductAnalyticsApiExportProductAnalyticsRequest {
|
|
|
2751
2791
|
* Filter to only include products with total traffic less than or equal to this number
|
|
2752
2792
|
*/
|
|
2753
2793
|
readonly maximumTraffic?: number;
|
|
2794
|
+
/**
|
|
2795
|
+
* Filter to only include products created before the given date
|
|
2796
|
+
*/
|
|
2797
|
+
readonly createdBefore?: string;
|
|
2798
|
+
/**
|
|
2799
|
+
* Filter to only include products created after the given date
|
|
2800
|
+
*/
|
|
2801
|
+
readonly createdAfter?: string;
|
|
2802
|
+
/**
|
|
2803
|
+
* Filter to only include products updated before the given date
|
|
2804
|
+
*/
|
|
2805
|
+
readonly updatedBefore?: string;
|
|
2806
|
+
/**
|
|
2807
|
+
* Filter to only include products updated after the given date
|
|
2808
|
+
*/
|
|
2809
|
+
readonly updatedAfter?: string;
|
|
2754
2810
|
}
|
|
2755
2811
|
/**
|
|
2756
2812
|
* Request parameters for getProductAnalyticsSummary operation in ProductAnalyticsApi.
|
|
@@ -2778,7 +2834,7 @@ export interface ProductAnalyticsApiListProductAnalyticsRequest {
|
|
|
2778
2834
|
*/
|
|
2779
2835
|
readonly pageSize?: number;
|
|
2780
2836
|
/**
|
|
2781
|
-
* Search query string to filter results. Supports field-specific filters like: \'
|
|
2837
|
+
* Search query string to filter results. Supports field-specific filters like: \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'productType:<id>\', \'Multiple filters can be combined with spaces and commas.\'
|
|
2782
2838
|
*/
|
|
2783
2839
|
readonly search?: string;
|
|
2784
2840
|
/**
|
|
@@ -2825,6 +2881,22 @@ export interface ProductAnalyticsApiListProductAnalyticsRequest {
|
|
|
2825
2881
|
* Filter to only include products with total traffic less than or equal to this number
|
|
2826
2882
|
*/
|
|
2827
2883
|
readonly maximumTraffic?: number;
|
|
2884
|
+
/**
|
|
2885
|
+
* Filter to only include products created before the given date
|
|
2886
|
+
*/
|
|
2887
|
+
readonly createdBefore?: string;
|
|
2888
|
+
/**
|
|
2889
|
+
* Filter to only include products created after the given date
|
|
2890
|
+
*/
|
|
2891
|
+
readonly createdAfter?: string;
|
|
2892
|
+
/**
|
|
2893
|
+
* Filter to only include products updated before the given date
|
|
2894
|
+
*/
|
|
2895
|
+
readonly updatedBefore?: string;
|
|
2896
|
+
/**
|
|
2897
|
+
* Filter to only include products updated after the given date
|
|
2898
|
+
*/
|
|
2899
|
+
readonly updatedAfter?: string;
|
|
2828
2900
|
}
|
|
2829
2901
|
/**
|
|
2830
2902
|
* ProductAnalyticsApi - object-oriented interface
|
|
@@ -2855,6 +2927,67 @@ export declare class ProductAnalyticsApi extends BaseAPI {
|
|
|
2855
2927
|
*/
|
|
2856
2928
|
listProductAnalytics(requestParameters: ProductAnalyticsApiListProductAnalyticsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductAnalyticsResponse, any, {}>>;
|
|
2857
2929
|
}
|
|
2930
|
+
/**
|
|
2931
|
+
* ProductCreatorsApi - axios parameter creator
|
|
2932
|
+
*/
|
|
2933
|
+
export declare const ProductCreatorsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2934
|
+
/**
|
|
2935
|
+
* Lists all the unique users that have created products for the given project.
|
|
2936
|
+
* @summary List product creators
|
|
2937
|
+
* @param {string} project What project it is
|
|
2938
|
+
* @param {*} [options] Override http request option.
|
|
2939
|
+
* @throws {RequiredError}
|
|
2940
|
+
*/
|
|
2941
|
+
listProductCreators: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2942
|
+
};
|
|
2943
|
+
/**
|
|
2944
|
+
* ProductCreatorsApi - functional programming interface
|
|
2945
|
+
*/
|
|
2946
|
+
export declare const ProductCreatorsApiFp: (configuration?: Configuration) => {
|
|
2947
|
+
/**
|
|
2948
|
+
* Lists all the unique users that have created products for the given project.
|
|
2949
|
+
* @summary List product creators
|
|
2950
|
+
* @param {string} project What project it is
|
|
2951
|
+
* @param {*} [options] Override http request option.
|
|
2952
|
+
* @throws {RequiredError}
|
|
2953
|
+
*/
|
|
2954
|
+
listProductCreators(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserList>>;
|
|
2955
|
+
};
|
|
2956
|
+
/**
|
|
2957
|
+
* ProductCreatorsApi - factory interface
|
|
2958
|
+
*/
|
|
2959
|
+
export declare const ProductCreatorsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2960
|
+
/**
|
|
2961
|
+
* Lists all the unique users that have created products for the given project.
|
|
2962
|
+
* @summary List product creators
|
|
2963
|
+
* @param {ProductCreatorsApiListProductCreatorsRequest} requestParameters Request parameters.
|
|
2964
|
+
* @param {*} [options] Override http request option.
|
|
2965
|
+
* @throws {RequiredError}
|
|
2966
|
+
*/
|
|
2967
|
+
listProductCreators(requestParameters: ProductCreatorsApiListProductCreatorsRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserList>;
|
|
2968
|
+
};
|
|
2969
|
+
/**
|
|
2970
|
+
* Request parameters for listProductCreators operation in ProductCreatorsApi.
|
|
2971
|
+
*/
|
|
2972
|
+
export interface ProductCreatorsApiListProductCreatorsRequest {
|
|
2973
|
+
/**
|
|
2974
|
+
* What project it is
|
|
2975
|
+
*/
|
|
2976
|
+
readonly project: string;
|
|
2977
|
+
}
|
|
2978
|
+
/**
|
|
2979
|
+
* ProductCreatorsApi - object-oriented interface
|
|
2980
|
+
*/
|
|
2981
|
+
export declare class ProductCreatorsApi extends BaseAPI {
|
|
2982
|
+
/**
|
|
2983
|
+
* Lists all the unique users that have created products for the given project.
|
|
2984
|
+
* @summary List product creators
|
|
2985
|
+
* @param {ProductCreatorsApiListProductCreatorsRequest} requestParameters Request parameters.
|
|
2986
|
+
* @param {*} [options] Override http request option.
|
|
2987
|
+
* @throws {RequiredError}
|
|
2988
|
+
*/
|
|
2989
|
+
listProductCreators(requestParameters: ProductCreatorsApiListProductCreatorsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserList, any, {}>>;
|
|
2990
|
+
}
|
|
2858
2991
|
/**
|
|
2859
2992
|
* ProductTypesApi - axios parameter creator
|
|
2860
2993
|
*/
|