@samet-it/be-couchbase-common 1.1.9 → 1.1.10
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/repo/index.types.d.ts +3 -27
- package/package.json +1 -1
|
@@ -28,21 +28,15 @@ export interface CbRepoLike<ENT extends Entity<ID>, ID extends KeyValue = KeyVal
|
|
|
28
28
|
* */
|
|
29
29
|
get cluster(): Cluster;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
* @type {Bucket}
|
|
31
|
+
* Shortcut to {@link CbRepoProps#bucket}
|
|
34
32
|
* */
|
|
35
33
|
get bucket(): Bucket & CbRepoPropsPart<BucketSettings>;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
* @type {Scope}
|
|
35
|
+
* Shortcut to {@link CbRepoProps#scope}
|
|
40
36
|
* */
|
|
41
37
|
get scope(): Scope & CbRepoPropsPart<ScopeSpec>;
|
|
42
38
|
/**
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
* @type {Collection}
|
|
39
|
+
* Shortcut to {@link CbRepoProps#collection}
|
|
46
40
|
* */
|
|
47
41
|
get collection(): Collection & CbRepoPropsPart<CollectionSpec>;
|
|
48
42
|
/**
|
|
@@ -108,24 +102,6 @@ export interface CbRepoOpt<ENT extends Entity<ID>, ID extends KeyValue = KeyValu
|
|
|
108
102
|
* @type {string}
|
|
109
103
|
* */
|
|
110
104
|
collectionName?: string;
|
|
111
|
-
/**
|
|
112
|
-
* Bucket instance
|
|
113
|
-
*
|
|
114
|
-
* @type {Bucket}
|
|
115
|
-
* */
|
|
116
|
-
bucket: Bucket & CbRepoPropsPart<BucketSettings>;
|
|
117
|
-
/**
|
|
118
|
-
* Scope instance
|
|
119
|
-
*
|
|
120
|
-
* @type {Scope}
|
|
121
|
-
* */
|
|
122
|
-
scope: Scope & CbRepoPropsPart<ScopeSpec>;
|
|
123
|
-
/**
|
|
124
|
-
* Collection instance
|
|
125
|
-
*
|
|
126
|
-
* @type {Collection}
|
|
127
|
-
* */
|
|
128
|
-
collection: Collection & CbRepoPropsPart<CollectionSpec>;
|
|
129
105
|
/**
|
|
130
106
|
* Create indices when it's started
|
|
131
107
|
*
|