deepline 0.2.26 → 0.2.27

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.
@@ -912,6 +912,10 @@ export type BillingInvoiceEntry = {
912
912
  url: string | null;
913
913
  /** Direct PDF when Stripe provides one (invoices only). */
914
914
  pdf_url: string | null;
915
+ /** Stripe-hosted invoice page when this purchase has an invoice. */
916
+ invoice_url?: string | null;
917
+ /** Stripe-hosted card receipt when this purchase has one. */
918
+ receipt_url?: string | null;
915
919
  };
916
920
 
917
921
  export type BillingInvoicesResult = {
@@ -160,7 +160,7 @@ export const SDK_RELEASE = {
160
160
  // 0.2.0 makes Dataset Handles uniformly async-only after 0.1.320 briefly
161
161
  // exposed storage-dependent synchronous access. This deliberate minor
162
162
  // release keeps lazy paging semantics independent of row residency.
163
- version: '0.2.26',
163
+ version: '0.2.27',
164
164
  contracts: {
165
165
  api: {
166
166
  name: 'sdk-http-api',
package/dist/cli/index.js CHANGED
@@ -1044,7 +1044,7 @@ var SDK_RELEASE = {
1044
1044
  // 0.2.0 makes Dataset Handles uniformly async-only after 0.1.320 briefly
1045
1045
  // exposed storage-dependent synchronous access. This deliberate minor
1046
1046
  // release keeps lazy paging semantics independent of row residency.
1047
- version: "0.2.26",
1047
+ version: "0.2.27",
1048
1048
  contracts: {
1049
1049
  api: {
1050
1050
  name: "sdk-http-api",
@@ -1030,7 +1030,7 @@ var SDK_RELEASE = {
1030
1030
  // 0.2.0 makes Dataset Handles uniformly async-only after 0.1.320 briefly
1031
1031
  // exposed storage-dependent synchronous access. This deliberate minor
1032
1032
  // release keeps lazy paging semantics independent of row residency.
1033
- version: "0.2.26",
1033
+ version: "0.2.27",
1034
1034
  contracts: {
1035
1035
  api: {
1036
1036
  name: "sdk-http-api",
package/dist/index.d.mts CHANGED
@@ -2189,6 +2189,10 @@ type BillingInvoiceEntry = {
2189
2189
  url: string | null;
2190
2190
  /** Direct PDF when Stripe provides one (invoices only). */
2191
2191
  pdf_url: string | null;
2192
+ /** Stripe-hosted invoice page when this purchase has an invoice. */
2193
+ invoice_url?: string | null;
2194
+ /** Stripe-hosted card receipt when this purchase has one. */
2195
+ receipt_url?: string | null;
2192
2196
  };
2193
2197
  type BillingInvoicesResult = {
2194
2198
  org_id: string;
package/dist/index.d.ts CHANGED
@@ -2189,6 +2189,10 @@ type BillingInvoiceEntry = {
2189
2189
  url: string | null;
2190
2190
  /** Direct PDF when Stripe provides one (invoices only). */
2191
2191
  pdf_url: string | null;
2192
+ /** Stripe-hosted invoice page when this purchase has an invoice. */
2193
+ invoice_url?: string | null;
2194
+ /** Stripe-hosted card receipt when this purchase has one. */
2195
+ receipt_url?: string | null;
2192
2196
  };
2193
2197
  type BillingInvoicesResult = {
2194
2198
  org_id: string;
package/dist/index.js CHANGED
@@ -763,7 +763,7 @@ var SDK_RELEASE = {
763
763
  // 0.2.0 makes Dataset Handles uniformly async-only after 0.1.320 briefly
764
764
  // exposed storage-dependent synchronous access. This deliberate minor
765
765
  // release keeps lazy paging semantics independent of row residency.
766
- version: "0.2.26",
766
+ version: "0.2.27",
767
767
  contracts: {
768
768
  api: {
769
769
  name: "sdk-http-api",
package/dist/index.mjs CHANGED
@@ -689,7 +689,7 @@ var SDK_RELEASE = {
689
689
  // 0.2.0 makes Dataset Handles uniformly async-only after 0.1.320 briefly
690
690
  // exposed storage-dependent synchronous access. This deliberate minor
691
691
  // release keeps lazy paging semantics independent of row residency.
692
- version: "0.2.26",
692
+ version: "0.2.27",
693
693
  contracts: {
694
694
  api: {
695
695
  name: "sdk-http-api",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.2.26",
3
+ "version": "0.2.27",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {