arky-sdk 0.7.28 → 0.7.30

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.d.cts CHANGED
@@ -33,8 +33,7 @@ interface Reaction {
33
33
  id: string;
34
34
  businessId: string;
35
35
  customerInfo: ReactionCustomerInfo;
36
- targetType: ReactionTargetType;
37
- targetId: string;
36
+ target: ReactionTarget;
38
37
  parentId?: string | null;
39
38
  kind: string;
40
39
  blocks: Block[];
package/dist/index.d.ts CHANGED
@@ -33,8 +33,7 @@ interface Reaction {
33
33
  id: string;
34
34
  businessId: string;
35
35
  customerInfo: ReactionCustomerInfo;
36
- targetType: ReactionTargetType;
37
- targetId: string;
36
+ target: ReactionTarget;
38
37
  parentId?: string | null;
39
38
  kind: string;
40
39
  blocks: Block[];
package/dist/index.js CHANGED
@@ -1112,9 +1112,6 @@ var createLocationApi = (apiConfig) => {
1112
1112
  options
1113
1113
  );
1114
1114
  },
1115
- // Business location CRUD. Locations are now first-class entities (their own
1116
- // table) and are no longer embedded in BusinessConfigs. Reads and writes go
1117
- // through these endpoints.
1118
1115
  async list(options) {
1119
1116
  return apiConfig.httpClient.get(
1120
1117
  `/v1/businesses/${apiConfig.businessId}/locations`,