@ziggs-ai/contracts 0.7.5 → 0.7.6

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.
@@ -86,6 +86,7 @@ export type AgreementRead = {
86
86
  orgId: string | null;
87
87
  userOutcomeSatisfaction: "positive" | "negative" | null;
88
88
  approvals: Array<AgreementApproval>;
89
+ pendingApprovalPartyId?: string | null;
89
90
  userReports: Array<AgreementUserReport>;
90
91
  activationFailure: AgreementActivationFailure | null;
91
92
  providerPinned: boolean;
package/dist/inbox.d.ts CHANGED
@@ -44,6 +44,8 @@ export interface DecisionRef {
44
44
  amountCents: number | null;
45
45
  /** Present where the object expires on its own, e.g. a spend approval. */
46
46
  expiresAt: string | null;
47
+ /** Signed-in review page. Following it does not approve or mark anything seen. */
48
+ reviewUrl?: string;
47
49
  decideVia: DecideVia;
48
50
  }
49
51
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ziggs-ai/contracts",
3
- "version": "0.7.5",
3
+ "version": "0.7.6",
4
4
  "description": "Wire contracts for the Ziggs API — response shapes, error body, and socket events, shared by every client.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",