@squidcloud/client 1.0.58 → 1.0.59

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.
@@ -7,6 +7,8 @@ export type FieldType = PrimitiveFieldType | Array<FieldType> | {
7
7
  export type DocId = string;
8
8
  export type DocIdObj = Record<FieldName, any>;
9
9
  export type CollectionName = string;
10
+ /** The collection name with the db name or schema depends on the database type (e.g, mySchema.myTable) */
11
+ export type FullCollectionName = string;
10
12
  export type DocTimestamp = number;
11
13
  export interface SquidDocIdObj {
12
14
  collectionName: CollectionName;
@@ -13,6 +13,6 @@ export declare function msToDate(ms: number): Date;
13
13
  export declare function isoStringToDate(string: string): Date;
14
14
  export declare function base64ToString(string: string): string;
15
15
  export declare function base64ToBinary(string: string): string;
16
- export declare function debeziumStringToInterval(string: string): Record<string, number>;
16
+ export declare function kafkaConnectStringToInterval(string: string): Record<string, number>;
17
17
  export declare function msPastMidnightToTimeString(ms: number): string;
18
18
  export declare function dateToTimeString(date: Date): string;