arky-sdk 0.7.41 → 0.7.43

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
@@ -25,14 +25,11 @@ interface ReactionTarget {
25
25
  type: ReactionTargetType;
26
26
  id: string;
27
27
  }
28
- interface ReactionCustomerInfo {
29
- id: string;
30
- verified: boolean;
31
- }
32
28
  interface Reaction {
33
29
  id: string;
34
30
  businessId: string;
35
- customerInfo: ReactionCustomerInfo;
31
+ customerId: string;
32
+ verified: boolean;
36
33
  target: ReactionTarget;
37
34
  parentId?: string | null;
38
35
  kind: string;
@@ -70,6 +67,7 @@ interface FindReactionsParams {
70
67
  kind?: string;
71
68
  status?: ReactionStatus;
72
69
  contentOnly?: boolean;
70
+ verified?: boolean;
73
71
  query?: string;
74
72
  limit?: number;
75
73
  cursor?: string;
package/dist/index.d.ts CHANGED
@@ -25,14 +25,11 @@ interface ReactionTarget {
25
25
  type: ReactionTargetType;
26
26
  id: string;
27
27
  }
28
- interface ReactionCustomerInfo {
29
- id: string;
30
- verified: boolean;
31
- }
32
28
  interface Reaction {
33
29
  id: string;
34
30
  businessId: string;
35
- customerInfo: ReactionCustomerInfo;
31
+ customerId: string;
32
+ verified: boolean;
36
33
  target: ReactionTarget;
37
34
  parentId?: string | null;
38
35
  kind: string;
@@ -70,6 +67,7 @@ interface FindReactionsParams {
70
67
  kind?: string;
71
68
  status?: ReactionStatus;
72
69
  contentOnly?: boolean;
70
+ verified?: boolean;
73
71
  query?: string;
74
72
  limit?: number;
75
73
  cursor?: string;
package/dist/index.js CHANGED
@@ -1455,6 +1455,8 @@ var createReactionApi = (apiConfig) => {
1455
1455
  if (params?.status) queryParams.status = params.status;
1456
1456
  if (params?.contentOnly !== void 0)
1457
1457
  queryParams.contentOnly = params.contentOnly;
1458
+ if (params?.verified !== void 0)
1459
+ queryParams.verified = params.verified;
1458
1460
  if (params?.query) queryParams.query = params.query;
1459
1461
  if (params?.limit !== void 0) queryParams.limit = params.limit;
1460
1462
  if (params?.cursor) queryParams.cursor = params.cursor;