arky-sdk 0.7.3 → 0.7.5
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 +0 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +0 -3
- package/dist/index.d.ts +0 -3
- package/dist/index.js +0 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -240,9 +240,6 @@ declare function createArkySDK(config: HttpClientConfig & {
|
|
|
240
240
|
audiences: {
|
|
241
241
|
create(params: CreateAudienceParams, options?: RequestOptions): Promise<any>;
|
|
242
242
|
update(params: UpdateAudienceParams, options?: RequestOptions): Promise<any>;
|
|
243
|
-
delete(params: {
|
|
244
|
-
id: string;
|
|
245
|
-
}, options?: RequestOptions): Promise<any>;
|
|
246
243
|
get(params: GetAudienceParams, options?: RequestOptions): Promise<any>;
|
|
247
244
|
find(params: GetAudiencesParams, options?: RequestOptions): Promise<any>;
|
|
248
245
|
subscribe(params: SubscribeAudienceParams, options?: RequestOptions): Promise<any>;
|
package/dist/index.d.ts
CHANGED
|
@@ -240,9 +240,6 @@ declare function createArkySDK(config: HttpClientConfig & {
|
|
|
240
240
|
audiences: {
|
|
241
241
|
create(params: CreateAudienceParams, options?: RequestOptions): Promise<any>;
|
|
242
242
|
update(params: UpdateAudienceParams, options?: RequestOptions): Promise<any>;
|
|
243
|
-
delete(params: {
|
|
244
|
-
id: string;
|
|
245
|
-
}, options?: RequestOptions): Promise<any>;
|
|
246
243
|
get(params: GetAudienceParams, options?: RequestOptions): Promise<any>;
|
|
247
244
|
find(params: GetAudiencesParams, options?: RequestOptions): Promise<any>;
|
|
248
245
|
subscribe(params: SubscribeAudienceParams, options?: RequestOptions): Promise<any>;
|
package/dist/index.js
CHANGED
|
@@ -1215,12 +1215,6 @@ var createCustomerApi = (apiConfig) => {
|
|
|
1215
1215
|
options
|
|
1216
1216
|
);
|
|
1217
1217
|
},
|
|
1218
|
-
async delete(params, options) {
|
|
1219
|
-
return apiConfig.httpClient.delete(
|
|
1220
|
-
`/v1/businesses/${apiConfig.businessId}/audiences/${params.id}`,
|
|
1221
|
-
options
|
|
1222
|
-
);
|
|
1223
|
-
},
|
|
1224
1218
|
async get(params, options) {
|
|
1225
1219
|
let identifier;
|
|
1226
1220
|
if (params.id) {
|