@auxilium/datalynk-client 1.0.19 → 1.1.0-rc1

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/slice.d.ts CHANGED
@@ -1,38 +1,21 @@
1
1
  import { BehaviorSubject } from 'rxjs';
2
2
  import { Api, ApiRequestOptions } from './api';
3
+ import { Meta, SliceInfo } from './meta';
3
4
  import { Unsubscribe } from './socket';
4
- /**
5
- * An object to aid in constructing Datalynk requests
6
- */
7
- export declare class Slice<T = any> {
8
- private slice;
9
- private api;
10
- static api: Api;
5
+ export declare class ApiCall<T extends Meta = any> {
6
+ private readonly api;
7
+ readonly slice: number | string;
11
8
  private operation;
12
9
  private popField?;
13
10
  private request;
14
11
  /** Log response automatically */
15
12
  debugging?: boolean;
16
- /** Unsubscribe from changes, undefined if not subscribed */
17
- unsubscribe?: Unsubscribe | null;
18
- /** Cached slice data as an observable */
19
- private cache$;
20
- /** Cached slice data */
21
- private get cache();
22
- /** Set cached data & alert subscribers */
23
- private set cache(value);
24
13
  /** Get raw API request */
25
14
  get raw(): Partial<{
26
15
  [x: string]: any;
27
16
  $pop: string | undefined;
28
17
  }>;
29
- /**
30
- * An object to aid in constructing requests
31
- *
32
- * @param {number} slice Slice ID to interact with
33
- * @param {Api} api Api to send the requests through
34
- */
35
- constructor(slice: number | string, api: Api);
18
+ constructor(api: Api, slice: number | string);
36
19
  /**
37
20
  * Whitelist and alias fields. Alias of `fields()`
38
21
  * @example
@@ -44,10 +27,10 @@ export declare class Slice<T = any> {
44
27
  * @return {Slice<T>}
45
28
  */
46
29
  alias: {
47
- (whitelist: string[]): Slice<T>;
30
+ (whitelist: string[]): this;
48
31
  (alias: {
49
32
  [key: string]: string | object;
50
- }): Slice<T>;
33
+ }): this;
51
34
  };
52
35
  /**
53
36
  * Add an 'AND' condition inside the where argument
@@ -73,7 +56,7 @@ export declare class Slice<T = any> {
73
56
  * @param {object | string} arg Count argument
74
57
  * @return {Slice<T>}
75
58
  */
76
- count(arg?: object | string): Slice<T>;
59
+ count(arg?: object | string): this;
77
60
  /**
78
61
  * Output the formed request to the console for inspection
79
62
  * @param {boolean} enabled Enable/Disable console logging
@@ -89,7 +72,7 @@ export declare class Slice<T = any> {
89
72
  * @param {number | number[]} id ID(s) to delete
90
73
  * @return {Slice<T>}
91
74
  */
92
- delete(id?: number | number[]): Slice<T>;
75
+ delete(id?: number | number[]): this;
93
76
  /**
94
77
  * Filter rows from slice based on an excel expression
95
78
  * @example
@@ -101,7 +84,7 @@ export declare class Slice<T = any> {
101
84
  * @param formula Excel formula to use as where clause
102
85
  * @return {Slice<T>}
103
86
  */
104
- excel(formula: string): Slice<T>;
87
+ excel(formula: string): this;
105
88
  /**
106
89
  * Compile the request and send it
107
90
  * @param {ApiRequestOptions} options API Request options
@@ -118,15 +101,15 @@ export declare class Slice<T = any> {
118
101
  * @param {object} whitelist Either a list of keys to whitelist or a map of keys to rename
119
102
  * @return {Slice<T>}
120
103
  */
121
- fields(whitelist: string[]): Slice<T>;
104
+ fields(whitelist: string[]): this;
122
105
  fields(alias: {
123
106
  [key: string]: string | object;
124
- }): Slice<T>;
107
+ }): this;
125
108
  /**
126
109
  * Unwrap response returning the first ID
127
110
  * @return {Slice<T>}
128
111
  */
129
- id(): Slice<T>;
112
+ id(): this;
130
113
  /**
131
114
  * Set the request type to insert
132
115
  * @example
@@ -139,7 +122,7 @@ export declare class Slice<T = any> {
139
122
  * @param {T | T[]} rows Rows to be inserted into the slice
140
123
  * @return {Slice<T>}
141
124
  */
142
- insert(rows: T | T[]): Slice<T>;
125
+ insert(rows: T | T[]): this;
143
126
  /**
144
127
  * Limit number of rows returned
145
128
  * @example
@@ -177,29 +160,29 @@ export declare class Slice<T = any> {
177
160
  * @param {boolean} ascending Sort in ascending or descending order
178
161
  * @return {Slice<T>}
179
162
  */
180
- order(field: string, ascending?: boolean): Slice<T>;
163
+ order(field: string, ascending?: boolean): this;
181
164
  /**
182
165
  * Unwrap response, returning the field
183
166
  * @param {string} field Colon seperated path: `rows:0`
184
167
  * @return {Slice<T>}
185
168
  */
186
- pop(field: string | null): Slice<T>;
169
+ pop(field: string | null): this;
187
170
  /**
188
171
  * Unwrap response returning the first row
189
172
  * @return {Slice<T>}
190
173
  */
191
- row(): Slice<T>;
174
+ row(): this;
192
175
  /**
193
176
  * Unwrap response returning the rows
194
177
  * @return {Slice<T>}
195
178
  */
196
- rows(): Slice<T>;
179
+ rows(): this;
197
180
  /**
198
181
  * Save multiple rows to the slice, automatically inserts/updates
199
182
  * @param {T} rows Rows to add to slice
200
183
  * @returns {this<T>}
201
184
  */
202
- save(...rows: T[]): this;
185
+ save(rows: T | T[]): this;
203
186
  /**
204
187
  * Set the request type to select
205
188
  * @example
@@ -210,18 +193,7 @@ export declare class Slice<T = any> {
210
193
  * @param {number | number[]} id ID(s) to select, leaving blank will return all rows
211
194
  * @return {Slice<T>}
212
195
  */
213
- select(id?: number | number[]): Slice<T>;
214
- /**
215
- * Synchronize cache with server
216
- * @example
217
- * ```ts
218
- * const slice: Slice = new Slice<T>(Slices.Contact);
219
- * slice.sync().subscribe((rows: T[]) => {});
220
- * ```
221
- * @param {boolean} on Enable/disable events
222
- * @return {BehaviorSubject<T[]>} Cache which can be subscribed to
223
- */
224
- sync(on?: boolean): BehaviorSubject<T[]> | undefined;
196
+ select(id?: number | number[]): this;
225
197
  /**
226
198
  * Set the request type to update
227
199
  * @example
@@ -251,6 +223,77 @@ export declare class Slice<T = any> {
251
223
  * @param {any} value value to compare against
252
224
  * @return {Slice<T>}
253
225
  */
254
- where(field: string | object, operator?: string, value?: any): Slice<T>;
226
+ where(field: string | object, operator?: string, value?: any): this;
227
+ }
228
+ /**
229
+ * An object to aid in constructing Datalynk requests
230
+ */
231
+ export declare class Slice<T extends Meta = any> {
232
+ private slice;
233
+ private api;
234
+ private table?;
235
+ private info?;
236
+ private pendingInsert;
237
+ /** Unsubscribe from changes, undefined if not subscribed */
238
+ unsubscribe?: Unsubscribe | null;
239
+ /** Cached slice data as an observable */
240
+ cache$: BehaviorSubject<T[]>;
241
+ /** Cached slice data */
242
+ get cache(): T[];
243
+ /** Set cached data & alert subscribers */
244
+ private set cache(value);
245
+ /** Is slice offline support enabled */
246
+ get offlineEnabled(): boolean | undefined;
247
+ /**
248
+ * An object to aid in constructing requests
249
+ *
250
+ * @param {number} slice Slice ID to interact with
251
+ * @param {Api} api Api to send the requests through
252
+ */
253
+ constructor(slice: number | string, api: Api);
254
+ private fixIncrement;
255
+ private execWrapper;
256
+ pushChanges(): Promise<void>;
257
+ /**
258
+ * Get slice information
259
+ * @param reload Ignore cache & reload info
260
+ * @return {Promise<SliceInfo>}
261
+ */
262
+ getInfo(reload?: boolean): Promise<SliceInfo>;
263
+ /**
264
+ * Synchronize cache with server
265
+ * @example
266
+ * ```ts
267
+ * const slice: Slice = new Slice<T>(Slices.Contact);
268
+ * slice.sync().subscribe((rows: T[]) => {});
269
+ * ```
270
+ * @param {boolean} on Enable/disable events
271
+ * @return {BehaviorSubject<T[]>} Cache which can be subscribed to
272
+ */
273
+ sync(on?: boolean): BehaviorSubject<T[]> | undefined;
274
+ /**
275
+ * {@inheritDoc ApiCall.count}
276
+ */
277
+ count(arg?: object | string): ApiCall<T>;
278
+ /**
279
+ * {@inheritDoc ApiCall.delete}
280
+ */
281
+ delete(id: number | number[]): ApiCall<T>;
282
+ /**
283
+ * {@inheritDoc ApiCall.insert}
284
+ */
285
+ insert(rows: T | T[]): ApiCall<T>;
286
+ /**
287
+ * {@inheritDoc ApiCall.save}
288
+ */
289
+ save(rows: T | T[]): ApiCall<T>;
290
+ /**
291
+ * {@inheritDoc ApiCall.select}
292
+ */
293
+ select(id?: number | number[]): ApiCall<T>;
294
+ /**
295
+ * {@inheritDoc ApiCall.update}
296
+ */
297
+ update(rows: T | T[]): ApiCall<T>;
255
298
  }
256
299
  //# sourceMappingURL=slice.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"slice.d.ts","sourceRoot":"","sources":["../src/slice.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"slice.d.ts","sourceRoot":"","sources":["../src/slice.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,24 @@
1
+ export interface Theme {
2
+ /** Background image URL */
3
+ background?: string;
4
+ /** Background color as hex (overrides background image) */
5
+ backgroundColor?: string;
6
+ /** Primary color as hex: `#000000` */
7
+ color?: string;
8
+ /** Logo URL */
9
+ logo?: string;
10
+ /** Header string or HTML: <img alt="logo" src="...">*/
11
+ title?: string;
12
+ /** Color of headers & links */
13
+ textColor?: string;
14
+ }
15
+ /**
16
+ * Get the theme for a spoke
17
+ * @param {string} spoke Name of spoke
18
+ * @param {string} scope Apply sub-theme
19
+ * @returns {Promise<Theme>}
20
+ */
21
+ export declare function getTheme(spoke: string, scope?: string): Promise<Theme & {
22
+ found: boolean;
23
+ }>;
24
+ //# sourceMappingURL=themes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"themes.d.ts","sourceRoot":"","sources":["../src/themes.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;IACrB,2BAA2B;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,2DAA2D;IAC3D,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,sCAAsC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,eAAe;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,uDAAuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;;GAKG;AACH,wBAAsB,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,GAAG;IAAC,KAAK,EAAE,OAAO,CAAA;CAAC,CAAC,CAa/F"}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@auxilium/datalynk-client",
3
3
  "description": "Datalynk client library",
4
4
  "repository": "https://gitlab.auxiliumgroup.com/auxilium/datalynk/datalynk-client",
5
- "version": "1.0.19",
5
+ "version": "1.1.0-rc1",
6
6
  "author": "Zak Timson <zaktimson@gmail.com>",
7
7
  "private": false,
8
8
  "main": "./dist/index.cjs",
@@ -21,12 +21,12 @@
21
21
  "scripts": {
22
22
  "build": "tsc && npx vite build",
23
23
  "datalynk-models": "node --no-warnings ./bin/datalynk-models.mjs",
24
- "docs": "typedoc --cleanOutputDir false --out ./docs --entryPoints src/**/*.ts --readme none",
24
+ "docs": "typedoc --cleanOutputDir false --out ./docs --entryPoints src/**/*.ts --readme README.md",
25
25
  "watch": "vite build --watch"
26
26
  },
27
27
  "dependencies": {
28
28
  "@ztimson/node-utils": "1.0.2",
29
- "@ztimson/utils": "0.25.7",
29
+ "@ztimson/utils": "0.25.8",
30
30
  "rxjs": "^7.8.2"
31
31
  },
32
32
  "devDependencies": {