@uniformdev/assets 19.63.2 → 19.65.1-alpha.4
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 +22 -0
- package/dist/index.d.ts +22 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -799,6 +799,28 @@ interface external {
|
|
|
799
799
|
DataResourceVariables: {
|
|
800
800
|
[key: string]: string;
|
|
801
801
|
};
|
|
802
|
+
HistoryApiResponse: {
|
|
803
|
+
/**
|
|
804
|
+
* @description If there are more results, this will be populated with a token to pass in the next request to get the next page of results.
|
|
805
|
+
* If this is undefined then no more results are available.
|
|
806
|
+
*/
|
|
807
|
+
cursor?: string;
|
|
808
|
+
/** @description If more history is available than your plan allows, and additional entries are available by upgrading, this will be true */
|
|
809
|
+
truncated?: boolean;
|
|
810
|
+
/** @description Version history entries. */
|
|
811
|
+
results?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["HistoryEntry"][];
|
|
812
|
+
};
|
|
813
|
+
HistoryEntry: {
|
|
814
|
+
/** @description The version ID of the entity. This can be used to fetch the version's data via the entity API. */
|
|
815
|
+
versionId: string;
|
|
816
|
+
/** @description The timestamp when the version was created in epoch milliseconds. */
|
|
817
|
+
timestamp: number;
|
|
818
|
+
/** @description The name (full name) of the user who created the version. */
|
|
819
|
+
authorName: string;
|
|
820
|
+
authorIsApiKey: boolean;
|
|
821
|
+
/** @description The state of the entity when the history entry was made. */
|
|
822
|
+
state: number;
|
|
823
|
+
};
|
|
802
824
|
/** @description Category for tagging canvas entities */
|
|
803
825
|
Category: {
|
|
804
826
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -799,6 +799,28 @@ interface external {
|
|
|
799
799
|
DataResourceVariables: {
|
|
800
800
|
[key: string]: string;
|
|
801
801
|
};
|
|
802
|
+
HistoryApiResponse: {
|
|
803
|
+
/**
|
|
804
|
+
* @description If there are more results, this will be populated with a token to pass in the next request to get the next page of results.
|
|
805
|
+
* If this is undefined then no more results are available.
|
|
806
|
+
*/
|
|
807
|
+
cursor?: string;
|
|
808
|
+
/** @description If more history is available than your plan allows, and additional entries are available by upgrading, this will be true */
|
|
809
|
+
truncated?: boolean;
|
|
810
|
+
/** @description Version history entries. */
|
|
811
|
+
results?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["HistoryEntry"][];
|
|
812
|
+
};
|
|
813
|
+
HistoryEntry: {
|
|
814
|
+
/** @description The version ID of the entity. This can be used to fetch the version's data via the entity API. */
|
|
815
|
+
versionId: string;
|
|
816
|
+
/** @description The timestamp when the version was created in epoch milliseconds. */
|
|
817
|
+
timestamp: number;
|
|
818
|
+
/** @description The name (full name) of the user who created the version. */
|
|
819
|
+
authorName: string;
|
|
820
|
+
authorIsApiKey: boolean;
|
|
821
|
+
/** @description The state of the entity when the history entry was made. */
|
|
822
|
+
state: number;
|
|
823
|
+
};
|
|
802
824
|
/** @description Category for tagging canvas entities */
|
|
803
825
|
Category: {
|
|
804
826
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.65.1-alpha.4+d9220a0f9",
|
|
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.65.1-alpha.4+d9220a0f9"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "d9220a0f9c51bae1ae6b97d356ae510ffc484394"
|
|
42
42
|
}
|