arky-sdk 0.9.11 → 0.9.12

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/admin.cjs CHANGED
@@ -1632,6 +1632,52 @@ function supportConversationQuery(params) {
1632
1632
  function createAdminSupportApi(config) {
1633
1633
  const { httpClient } = config;
1634
1634
  return {
1635
+ channel: {
1636
+ async create(params, opts) {
1637
+ return httpClient.post(
1638
+ `/v1/stores/${params.store_id}/support/channels`,
1639
+ params,
1640
+ opts
1641
+ );
1642
+ },
1643
+ async get(params, opts) {
1644
+ return httpClient.get(
1645
+ `/v1/stores/${params.store_id}/support/channels/${params.id}?store_id=${params.store_id}`,
1646
+ opts
1647
+ );
1648
+ },
1649
+ async find(params, opts) {
1650
+ const qs = new URLSearchParams({ store_id: params.store_id });
1651
+ if (params.status) qs.set("status", params.status);
1652
+ if (params.channel_type) qs.set("channel_type", params.channel_type);
1653
+ if (params.limit) qs.set("limit", String(params.limit));
1654
+ if (params.cursor) qs.set("cursor", params.cursor);
1655
+ return httpClient.get(
1656
+ `/v1/stores/${params.store_id}/support/channels?${qs}`,
1657
+ opts
1658
+ );
1659
+ },
1660
+ async update(params, opts) {
1661
+ return httpClient.put(
1662
+ `/v1/stores/${params.store_id}/support/channels/${params.id}`,
1663
+ params,
1664
+ opts
1665
+ );
1666
+ },
1667
+ async delete(params, opts) {
1668
+ return httpClient.delete(
1669
+ `/v1/stores/${params.store_id}/support/channels/${params.id}?store_id=${params.store_id}`,
1670
+ opts
1671
+ );
1672
+ },
1673
+ async receiveMessage(params, opts) {
1674
+ return httpClient.post(
1675
+ `/v1/stores/${params.store_id}/support/channels/${params.channel_id}/messages`,
1676
+ params,
1677
+ opts
1678
+ );
1679
+ }
1680
+ },
1635
1681
  agent: {
1636
1682
  async create(params, opts) {
1637
1683
  return httpClient.post(
@@ -1675,6 +1721,8 @@ function createAdminSupportApi(config) {
1675
1721
  const qs = new URLSearchParams({ store_id: params.store_id });
1676
1722
  if (params.status) qs.set("status", params.status);
1677
1723
  if (params.agent_id) qs.set("agent_id", params.agent_id);
1724
+ if (params.channel_id) qs.set("channel_id", params.channel_id);
1725
+ if (params.channel_type) qs.set("channel_type", params.channel_type);
1678
1726
  if (params.query) qs.set("query", params.query);
1679
1727
  if (params.limit) qs.set("limit", String(params.limit));
1680
1728
  if (params.cursor) qs.set("cursor", params.cursor);
@@ -2137,6 +2185,14 @@ var createShippingApi = (apiConfig) => {
2137
2185
  payload,
2138
2186
  options
2139
2187
  );
2188
+ },
2189
+ async refundLabel(params, options) {
2190
+ const { order_id, shipment_id } = params;
2191
+ return apiConfig.httpClient.post(
2192
+ `/v1/stores/${apiConfig.storeId}/orders/${order_id}/shipments/${shipment_id}/label/refund`,
2193
+ {},
2194
+ options
2195
+ );
2140
2196
  }
2141
2197
  };
2142
2198
  };
@@ -3129,7 +3185,8 @@ function createAdmin(config) {
3129
3185
  processRefund: eshopApi.processRefund,
3130
3186
  downloadDigitalAccess: eshopApi.downloadDigitalAccess,
3131
3187
  getShippingRates: shippingApi.getRates,
3132
- ship: shippingApi.ship
3188
+ ship: shippingApi.ship,
3189
+ refundShippingLabel: shippingApi.refundLabel
3133
3190
  },
3134
3191
  cart: {
3135
3192
  create: eshopApi.createCart,
@@ -3198,6 +3255,12 @@ function createAdmin(config) {
3198
3255
  automation: {
3199
3256
  workflow: workflowPublicApi,
3200
3257
  support: {
3258
+ createChannel: supportApi.channel.create,
3259
+ getChannel: supportApi.channel.get,
3260
+ findChannels: supportApi.channel.find,
3261
+ updateChannel: supportApi.channel.update,
3262
+ deleteChannel: supportApi.channel.delete,
3263
+ receiveChannelMessage: supportApi.channel.receiveMessage,
3201
3264
  createAgent: supportApi.agent.create,
3202
3265
  getAgent: supportApi.agent.get,
3203
3266
  findAgents: supportApi.agent.find,