@takaro/apiclient 0.0.0-dev.8ea579d → 0.0.0-dev.9efccf4
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/generated/api.d.ts +648 -3
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +536 -1
- package/dist/generated/api.js.map +1 -1
- package/dist/generated/base.d.ts +1 -1
- package/dist/generated/base.js +1 -1
- package/dist/generated/common.d.ts +1 -1
- package/dist/generated/common.js +1 -1
- package/dist/generated/configuration.d.ts +1 -1
- package/dist/generated/configuration.js +1 -1
- package/dist/generated/index.d.ts +1 -1
- package/dist/generated/index.js +1 -1
- package/dist/lib/client.d.ts +2 -1
- package/dist/lib/client.d.ts.map +1 -1
- package/dist/lib/client.js +6 -1
- package/dist/lib/client.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/api.ts +1093 -6
- package/src/generated/base.ts +1 -1
- package/src/generated/common.ts +1 -1
- package/src/generated/configuration.ts +1 -1
- package/src/generated/index.ts +1 -1
- package/src/lib/client.ts +11 -0
package/src/generated/base.ts
CHANGED
package/src/generated/common.ts
CHANGED
package/src/generated/index.ts
CHANGED
package/src/lib/client.ts
CHANGED
|
@@ -18,6 +18,7 @@ import {
|
|
|
18
18
|
ShopOrderApi,
|
|
19
19
|
ShopListingApi,
|
|
20
20
|
ShopCategoryApi,
|
|
21
|
+
ShopActionApi,
|
|
21
22
|
TrackingApi,
|
|
22
23
|
EntityApi,
|
|
23
24
|
AnalyticsApi,
|
|
@@ -266,6 +267,16 @@ export class Client extends BaseApiClient<IApiClientConfig> {
|
|
|
266
267
|
);
|
|
267
268
|
}
|
|
268
269
|
|
|
270
|
+
get shopAction() {
|
|
271
|
+
return new ShopActionApi(
|
|
272
|
+
{
|
|
273
|
+
isJsonMime: this.isJsonMime,
|
|
274
|
+
},
|
|
275
|
+
'',
|
|
276
|
+
this.axios,
|
|
277
|
+
);
|
|
278
|
+
}
|
|
279
|
+
|
|
269
280
|
get shopOrder() {
|
|
270
281
|
return new ShopOrderApi(
|
|
271
282
|
{
|