digicust_types 1.7.452 → 1.7.453
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/lib/models/digicust/cache/cache.model.d.ts +16 -0
- package/lib/models/digicust/cache/cache.model.js +2 -0
- package/lib/models/digicust/cache/index.d.ts +1 -0
- package/lib/models/digicust/cache/index.js +17 -0
- package/lib/models/digicust/index.d.ts +1 -0
- package/lib/models/digicust/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AddressModel } from "../measures";
|
|
2
|
+
export interface CacheModel {
|
|
3
|
+
id?: string;
|
|
4
|
+
service?: "google-maps-geolocation" | "openai-gpt" | "amazon-maps" | "ec-eori-validation" | "ec-vat-validation";
|
|
5
|
+
/** The query sent to the service to retrieve a certain output. This is the 'cache key'.
|
|
6
|
+
* If query is an object, then JSON.stringify it.
|
|
7
|
+
*/
|
|
8
|
+
query?: string;
|
|
9
|
+
/** The output of the service */
|
|
10
|
+
value?: any;
|
|
11
|
+
}
|
|
12
|
+
export interface GoogleMapsGeolocationCacheModel extends CacheModel {
|
|
13
|
+
service?: "google-maps-geolocation";
|
|
14
|
+
query?: string;
|
|
15
|
+
value?: AddressModel;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./cache.model";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./cache.model"), exports);
|