arky-sdk 0.4.1 → 0.4.2

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/index.cjs CHANGED
@@ -1427,6 +1427,18 @@ var createAudienceApi = (apiConfig) => {
1427
1427
  `/v1/businesses/${apiConfig.businessId}/audiences/${params.id}/access`,
1428
1428
  options
1429
1429
  );
1430
+ },
1431
+ async getSubscribers(params, options) {
1432
+ return apiConfig.httpClient.get(
1433
+ `/v1/businesses/${apiConfig.businessId}/audiences/${params.id}/subscribers`,
1434
+ {
1435
+ ...options,
1436
+ params: {
1437
+ limit: params.limit,
1438
+ cursor: params.cursor
1439
+ }
1440
+ }
1441
+ );
1430
1442
  }
1431
1443
  };
1432
1444
  };