@spaceinvoices/js-sdk 7.0.0 → 7.1.1

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.
@@ -10,4 +10,6 @@ export interface AccountInfo {
10
10
  id: string;
11
11
  name: string;
12
12
  role: AccountInfoRole;
13
+ /** Whether external analytics is enabled for this account. */
14
+ external_analytics?: boolean;
13
15
  }
@@ -10,4 +10,6 @@ export interface AccountInfo {
10
10
  id: string;
11
11
  name: string;
12
12
  role: AccountInfoRole;
13
+ /** Whether external analytics is enabled for this account. */
14
+ external_analytics?: boolean;
13
15
  }
@@ -200,8 +200,8 @@ export type deleteOrderResponse = (deleteOrderResponseSuccess | deleteOrderRespo
200
200
  export declare const getDeleteOrderUrl: (id: string) => string;
201
201
  export declare const deleteOrder: (id: string, options?: RequestInit) => Promise<deleteOrderResponse>;
202
202
  /**
203
- * Process a pending order: resolve or create customer, generate invoice, and optionally record payment.
204
- * @summary Process an order into an invoice
203
+ * Process a pending order or resume failed processing. For refunded orders, retry only reconciliation of the existing document; uncertain outcomes after the document was voided remain blocked for manual reconciliation.
204
+ * @summary Process or retry an order
205
205
  */
206
206
  export type processOrderResponse200 = {
207
207
  data: Order;
@@ -200,8 +200,8 @@ export type deleteOrderResponse = (deleteOrderResponseSuccess | deleteOrderRespo
200
200
  export declare const getDeleteOrderUrl: (id: string) => string;
201
201
  export declare const deleteOrder: (id: string, options?: RequestInit) => Promise<deleteOrderResponse>;
202
202
  /**
203
- * Process a pending order: resolve or create customer, generate invoice, and optionally record payment.
204
- * @summary Process an order into an invoice
203
+ * Process a pending order or resume failed processing. For refunded orders, retry only reconciliation of the existing document; uncertain outcomes after the document was voided remain blocked for manual reconciliation.
204
+ * @summary Process or retry an order
205
205
  */
206
206
  export type processOrderResponse200 = {
207
207
  data: Order;
@@ -696,8 +696,8 @@ export declare const DeleteOrderHeader: zod.ZodObject<{
696
696
  "x-entity-id": zod.ZodOptional<zod.ZodString>;
697
697
  }, zod.z.core.$strip>;
698
698
  /**
699
- * Process a pending order: resolve or create customer, generate invoice, and optionally record payment.
700
- * @summary Process an order into an invoice
699
+ * Process a pending order or resume failed processing. For refunded orders, retry only reconciliation of the existing document; uncertain outcomes after the document was voided remain blocked for manual reconciliation.
700
+ * @summary Process or retry an order
701
701
  */
702
702
  export declare const processOrderPathIdRegExp: RegExp;
703
703
  export declare const ProcessOrderParams: zod.ZodObject<{
@@ -696,8 +696,8 @@ export declare const DeleteOrderHeader: zod.ZodObject<{
696
696
  "x-entity-id": zod.ZodOptional<zod.ZodString>;
697
697
  }, zod.z.core.$strip>;
698
698
  /**
699
- * Process a pending order: resolve or create customer, generate invoice, and optionally record payment.
700
- * @summary Process an order into an invoice
699
+ * Process a pending order or resume failed processing. For refunded orders, retry only reconciliation of the existing document; uncertain outcomes after the document was voided remain blocked for manual reconciliation.
700
+ * @summary Process or retry an order
701
701
  */
702
702
  export declare const processOrderPathIdRegExp: RegExp;
703
703
  export declare const ProcessOrderParams: zod.ZodObject<{
@@ -97,6 +97,7 @@ export declare const ListMyAccountsResponse: zod.ZodObject<{
97
97
  admin: "admin";
98
98
  member: "member";
99
99
  }>;
100
+ external_analytics: zod.ZodOptional<zod.ZodBoolean>;
100
101
  }, zod.z.core.$strip>>;
101
102
  }, zod.z.core.$strip>;
102
103
  /**
@@ -97,6 +97,7 @@ export declare const ListMyAccountsResponse: zod.ZodObject<{
97
97
  admin: "admin";
98
98
  member: "member";
99
99
  }>;
100
+ external_analytics: zod.ZodOptional<zod.ZodBoolean>;
100
101
  }, zod.z.core.$strip>>;
101
102
  }, zod.z.core.$strip>;
102
103
  /**