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 +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
524
|
+
table_id: string;
|
|
525
525
|
doc_id?: string;
|
|
526
526
|
data?: Record<string, unknown>;
|
|
527
527
|
operators?: Record<string, AtomicOperator>;
|