connectbase-client 0.6.24 → 0.6.25

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.mts CHANGED
@@ -509,19 +509,19 @@ interface AtomicOperator {
509
509
  }
510
510
  interface BatchOperation {
511
511
  type: 'create' | 'update' | 'delete';
512
- table: string;
512
+ table_id: string;
513
513
  doc_id?: string;
514
514
  data?: Record<string, unknown>;
515
515
  operators?: Record<string, AtomicOperator>;
516
516
  }
517
517
  interface TransactionRead {
518
- table: string;
518
+ table_id: string;
519
519
  doc_id: string;
520
520
  alias?: string;
521
521
  }
522
522
  interface TransactionWrite {
523
523
  type: 'create' | 'update' | 'delete';
524
- table: string;
524
+ table_id: string;
525
525
  doc_id?: string;
526
526
  data?: Record<string, unknown>;
527
527
  operators?: Record<string, AtomicOperator>;
package/dist/index.d.ts CHANGED
@@ -509,19 +509,19 @@ interface AtomicOperator {
509
509
  }
510
510
  interface BatchOperation {
511
511
  type: 'create' | 'update' | 'delete';
512
- table: string;
512
+ table_id: string;
513
513
  doc_id?: string;
514
514
  data?: Record<string, unknown>;
515
515
  operators?: Record<string, AtomicOperator>;
516
516
  }
517
517
  interface TransactionRead {
518
- table: string;
518
+ table_id: string;
519
519
  doc_id: string;
520
520
  alias?: string;
521
521
  }
522
522
  interface TransactionWrite {
523
523
  type: 'create' | 'update' | 'delete';
524
- table: string;
524
+ table_id: string;
525
525
  doc_id?: string;
526
526
  data?: Record<string, unknown>;
527
527
  operators?: Record<string, AtomicOperator>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "connectbase-client",
3
- "version": "0.6.24",
3
+ "version": "0.6.25",
4
4
  "description": "Connect Base JavaScript/TypeScript SDK for browser and Node.js",
5
5
  "repository": {
6
6
  "type": "git",