@uniformdev/assets 19.61.1 → 19.62.1-alpha.9
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 +23 -9
- package/dist/index.d.ts +23 -9
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -81,7 +81,8 @@ interface paths {
|
|
|
81
81
|
* @description The project ID to upsert the asset to
|
|
82
82
|
*/
|
|
83
83
|
projectId: string;
|
|
84
|
-
asset
|
|
84
|
+
asset?: components["schemas"]["AssetInput"];
|
|
85
|
+
assets?: components["schemas"]["AssetInput"][];
|
|
85
86
|
};
|
|
86
87
|
};
|
|
87
88
|
};
|
|
@@ -717,15 +718,8 @@ interface external {
|
|
|
717
718
|
allowedOnComponents?: string[];
|
|
718
719
|
/** @description Resource path, appended to the data source's baseUrl (e.g. baseUrl = https://base.url, path = /v1/endpoint -> final URL https://base.url/v1/endpoint). Must have leading slash. */
|
|
719
720
|
path: string;
|
|
720
|
-
/** @description Time-to-live (in seconds) for the
|
|
721
|
+
/** @description Time-to-live (in seconds) for the resource data cache. */
|
|
721
722
|
ttl?: number;
|
|
722
|
-
/** @description Long term data resource cache configuration. */
|
|
723
|
-
longTermCache?: {
|
|
724
|
-
/** @description A flag to turn the long term cache on. */
|
|
725
|
-
enabled: boolean;
|
|
726
|
-
/** @description Time-to-live (in hours) for the long term resource data cache. */
|
|
727
|
-
ttlInHours?: number;
|
|
728
|
-
};
|
|
729
723
|
/** @description A key for the resource data cache purging. */
|
|
730
724
|
purgeKey?: string;
|
|
731
725
|
/** @description URL to a custom badge icon for the Uniform dashboard for this data type. If not set falls back to the data connector or integration icons. */
|
|
@@ -835,6 +829,26 @@ interface external {
|
|
|
835
829
|
*/
|
|
836
830
|
projectMapId: string;
|
|
837
831
|
};
|
|
832
|
+
/** @description AI Prompt definition. */
|
|
833
|
+
Prompt: {
|
|
834
|
+
/**
|
|
835
|
+
* Format: uuid
|
|
836
|
+
* @description Unique identifier for the prompt
|
|
837
|
+
*/
|
|
838
|
+
id: string;
|
|
839
|
+
/** @description Unique identifier for the integration that this prompt belongs to. */
|
|
840
|
+
integrationType: string;
|
|
841
|
+
/** @description Name for the prompt */
|
|
842
|
+
promptName?: string | null;
|
|
843
|
+
/** @description Text for the prompt */
|
|
844
|
+
promptText?: string | null;
|
|
845
|
+
/** @description Data for the prompt */
|
|
846
|
+
promptData?: string | null;
|
|
847
|
+
/** @description Turn off/on prompt */
|
|
848
|
+
enabled?: boolean | null;
|
|
849
|
+
/** @description Integration default prompt */
|
|
850
|
+
builtIn?: boolean | null;
|
|
851
|
+
};
|
|
838
852
|
};
|
|
839
853
|
};
|
|
840
854
|
operations: {};
|
package/dist/index.d.ts
CHANGED
|
@@ -81,7 +81,8 @@ interface paths {
|
|
|
81
81
|
* @description The project ID to upsert the asset to
|
|
82
82
|
*/
|
|
83
83
|
projectId: string;
|
|
84
|
-
asset
|
|
84
|
+
asset?: components["schemas"]["AssetInput"];
|
|
85
|
+
assets?: components["schemas"]["AssetInput"][];
|
|
85
86
|
};
|
|
86
87
|
};
|
|
87
88
|
};
|
|
@@ -717,15 +718,8 @@ interface external {
|
|
|
717
718
|
allowedOnComponents?: string[];
|
|
718
719
|
/** @description Resource path, appended to the data source's baseUrl (e.g. baseUrl = https://base.url, path = /v1/endpoint -> final URL https://base.url/v1/endpoint). Must have leading slash. */
|
|
719
720
|
path: string;
|
|
720
|
-
/** @description Time-to-live (in seconds) for the
|
|
721
|
+
/** @description Time-to-live (in seconds) for the resource data cache. */
|
|
721
722
|
ttl?: number;
|
|
722
|
-
/** @description Long term data resource cache configuration. */
|
|
723
|
-
longTermCache?: {
|
|
724
|
-
/** @description A flag to turn the long term cache on. */
|
|
725
|
-
enabled: boolean;
|
|
726
|
-
/** @description Time-to-live (in hours) for the long term resource data cache. */
|
|
727
|
-
ttlInHours?: number;
|
|
728
|
-
};
|
|
729
723
|
/** @description A key for the resource data cache purging. */
|
|
730
724
|
purgeKey?: string;
|
|
731
725
|
/** @description URL to a custom badge icon for the Uniform dashboard for this data type. If not set falls back to the data connector or integration icons. */
|
|
@@ -835,6 +829,26 @@ interface external {
|
|
|
835
829
|
*/
|
|
836
830
|
projectMapId: string;
|
|
837
831
|
};
|
|
832
|
+
/** @description AI Prompt definition. */
|
|
833
|
+
Prompt: {
|
|
834
|
+
/**
|
|
835
|
+
* Format: uuid
|
|
836
|
+
* @description Unique identifier for the prompt
|
|
837
|
+
*/
|
|
838
|
+
id: string;
|
|
839
|
+
/** @description Unique identifier for the integration that this prompt belongs to. */
|
|
840
|
+
integrationType: string;
|
|
841
|
+
/** @description Name for the prompt */
|
|
842
|
+
promptName?: string | null;
|
|
843
|
+
/** @description Text for the prompt */
|
|
844
|
+
promptText?: string | null;
|
|
845
|
+
/** @description Data for the prompt */
|
|
846
|
+
promptData?: string | null;
|
|
847
|
+
/** @description Turn off/on prompt */
|
|
848
|
+
enabled?: boolean | null;
|
|
849
|
+
/** @description Integration default prompt */
|
|
850
|
+
builtIn?: boolean | null;
|
|
851
|
+
};
|
|
838
852
|
};
|
|
839
853
|
};
|
|
840
854
|
operations: {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.62.1-alpha.9+0d26126b8",
|
|
4
4
|
"description": "Uniform Assets",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@uniformdev/context": "19.
|
|
39
|
+
"@uniformdev/context": "19.62.1-alpha.9+0d26126b8"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "0d26126b85eaff4639e87677b802bd8cb5e4a1c4"
|
|
42
42
|
}
|