@takaro/apiclient 0.3.1 → 0.3.3

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.
@@ -3647,6 +3647,19 @@ export declare const GameServerCreateDTOTypeEnum: {
3647
3647
  readonly Mock: "MOCK";
3648
3648
  };
3649
3649
  export type GameServerCreateDTOTypeEnum = (typeof GameServerCreateDTOTypeEnum)[keyof typeof GameServerCreateDTOTypeEnum];
3650
+ /**
3651
+ *
3652
+ * @export
3653
+ * @interface GameServerIdQueryParam
3654
+ */
3655
+ export interface GameServerIdQueryParam {
3656
+ /**
3657
+ *
3658
+ * @type {string}
3659
+ * @memberof GameServerIdQueryParam
3660
+ */
3661
+ gameServerId?: string;
3662
+ }
3650
3663
  /**
3651
3664
  *
3652
3665
  * @export
@@ -10250,6 +10263,12 @@ export interface ShopCategorySearchInputAllowedFilters {
10250
10263
  * @memberof ShopCategorySearchInputAllowedFilters
10251
10264
  */
10252
10265
  parentId?: Array<string>;
10266
+ /**
10267
+ *
10268
+ * @type {Array<string>}
10269
+ * @memberof ShopCategorySearchInputAllowedFilters
10270
+ */
10271
+ gameServerId?: Array<string>;
10253
10272
  }
10254
10273
  /**
10255
10274
  *
@@ -17784,18 +17803,20 @@ export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configur
17784
17803
  /**
17785
17804
  * Get all shop categories<br> OperationId: `ShopCategoryControllerGetAll`
17786
17805
  * @summary Get all
17806
+ * @param {string} [gameServerId]
17787
17807
  * @param {*} [options] Override http request option.
17788
17808
  * @throws {RequiredError}
17789
17809
  */
17790
- shopCategoryControllerGetAll: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17810
+ shopCategoryControllerGetAll: (gameServerId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17791
17811
  /**
17792
17812
  * Get a shop category by id<br> OperationId: `ShopCategoryControllerGetOne`
17793
17813
  * @summary Get one
17794
17814
  * @param {string} id
17815
+ * @param {string} [gameServerId]
17795
17816
  * @param {*} [options] Override http request option.
17796
17817
  * @throws {RequiredError}
17797
17818
  */
17798
- shopCategoryControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17819
+ shopCategoryControllerGetOne: (id: string, gameServerId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17799
17820
  /**
17800
17821
  * Move a shop category to a different parent Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerMove`
17801
17822
  * @summary Move
@@ -17855,18 +17876,20 @@ export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
17855
17876
  /**
17856
17877
  * Get all shop categories<br> OperationId: `ShopCategoryControllerGetAll`
17857
17878
  * @summary Get all
17879
+ * @param {string} [gameServerId]
17858
17880
  * @param {*} [options] Override http request option.
17859
17881
  * @throws {RequiredError}
17860
17882
  */
17861
- shopCategoryControllerGetAll(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopCategoryOutputArrayDTOAPI>>;
17883
+ shopCategoryControllerGetAll(gameServerId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopCategoryOutputArrayDTOAPI>>;
17862
17884
  /**
17863
17885
  * Get a shop category by id<br> OperationId: `ShopCategoryControllerGetOne`
17864
17886
  * @summary Get one
17865
17887
  * @param {string} id
17888
+ * @param {string} [gameServerId]
17866
17889
  * @param {*} [options] Override http request option.
17867
17890
  * @throws {RequiredError}
17868
17891
  */
17869
- shopCategoryControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopCategoryOutputDTOAPI>>;
17892
+ shopCategoryControllerGetOne(id: string, gameServerId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopCategoryOutputDTOAPI>>;
17870
17893
  /**
17871
17894
  * Move a shop category to a different parent Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerMove`
17872
17895
  * @summary Move
@@ -17926,18 +17949,20 @@ export declare const ShopCategoryApiFactory: (configuration?: Configuration, bas
17926
17949
  /**
17927
17950
  * Get all shop categories<br> OperationId: `ShopCategoryControllerGetAll`
17928
17951
  * @summary Get all
17952
+ * @param {string} [gameServerId]
17929
17953
  * @param {*} [options] Override http request option.
17930
17954
  * @throws {RequiredError}
17931
17955
  */
17932
- shopCategoryControllerGetAll(options?: RawAxiosRequestConfig): AxiosPromise<ShopCategoryOutputArrayDTOAPI>;
17956
+ shopCategoryControllerGetAll(gameServerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopCategoryOutputArrayDTOAPI>;
17933
17957
  /**
17934
17958
  * Get a shop category by id<br> OperationId: `ShopCategoryControllerGetOne`
17935
17959
  * @summary Get one
17936
17960
  * @param {string} id
17961
+ * @param {string} [gameServerId]
17937
17962
  * @param {*} [options] Override http request option.
17938
17963
  * @throws {RequiredError}
17939
17964
  */
17940
- shopCategoryControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopCategoryOutputDTOAPI>;
17965
+ shopCategoryControllerGetOne(id: string, gameServerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopCategoryOutputDTOAPI>;
17941
17966
  /**
17942
17967
  * Move a shop category to a different parent Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerMove`
17943
17968
  * @summary Move
@@ -18001,20 +18026,22 @@ export declare class ShopCategoryApi extends BaseAPI {
18001
18026
  /**
18002
18027
  * Get all shop categories<br> OperationId: `ShopCategoryControllerGetAll`
18003
18028
  * @summary Get all
18029
+ * @param {string} [gameServerId]
18004
18030
  * @param {*} [options] Override http request option.
18005
18031
  * @throws {RequiredError}
18006
18032
  * @memberof ShopCategoryApi
18007
18033
  */
18008
- shopCategoryControllerGetAll(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopCategoryOutputArrayDTOAPI, any>>;
18034
+ shopCategoryControllerGetAll(gameServerId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopCategoryOutputArrayDTOAPI, any>>;
18009
18035
  /**
18010
18036
  * Get a shop category by id<br> OperationId: `ShopCategoryControllerGetOne`
18011
18037
  * @summary Get one
18012
18038
  * @param {string} id
18039
+ * @param {string} [gameServerId]
18013
18040
  * @param {*} [options] Override http request option.
18014
18041
  * @throws {RequiredError}
18015
18042
  * @memberof ShopCategoryApi
18016
18043
  */
18017
- shopCategoryControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopCategoryOutputDTOAPI, any>>;
18044
+ shopCategoryControllerGetOne(id: string, gameServerId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopCategoryOutputDTOAPI, any>>;
18018
18045
  /**
18019
18046
  * Move a shop category to a different parent Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerMove`
18020
18047
  * @summary Move