@uniformdev/assets 20.50.2-alpha.117 → 20.50.2-alpha.149
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 +20 -1
- package/dist/index.d.ts +20 -1
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -605,6 +605,14 @@ interface components$1 {
|
|
|
605
605
|
variants?: {
|
|
606
606
|
unpublished?: components$1["schemas"]["AlternativeDataSourceData"];
|
|
607
607
|
};
|
|
608
|
+
/** @description Created date of the data source in ISO 8601 format (ignored for writes) */
|
|
609
|
+
created?: string;
|
|
610
|
+
/** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
|
|
611
|
+
modified?: string;
|
|
612
|
+
/** @description User or API key ID that created the data source (ignored for writes) */
|
|
613
|
+
createdBy?: string;
|
|
614
|
+
/** @description User or API key ID that last modified the data source (ignored for writes) */
|
|
615
|
+
modifiedBy?: string;
|
|
608
616
|
};
|
|
609
617
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
|
610
618
|
DataType: {
|
|
@@ -656,6 +664,14 @@ interface components$1 {
|
|
|
656
664
|
custom?: {
|
|
657
665
|
[key: string]: unknown;
|
|
658
666
|
};
|
|
667
|
+
/** @description Created date of the data type in ISO 8601 format (ignored for writes) */
|
|
668
|
+
created?: string;
|
|
669
|
+
/** @description Last modified date of the data type in ISO 8601 format (ignored for writes) */
|
|
670
|
+
modified?: string;
|
|
671
|
+
/** @description User or API key ID that created the data type (ignored for writes) */
|
|
672
|
+
createdBy?: string;
|
|
673
|
+
/** @description User or API key ID that last modified the data type (ignored for writes) */
|
|
674
|
+
modifiedBy?: string;
|
|
659
675
|
};
|
|
660
676
|
/** @description Defines the shape of a data variable on a Data Source or Data Type */
|
|
661
677
|
DataVariableDefinition: {
|
|
@@ -728,9 +744,12 @@ interface components$1 {
|
|
|
728
744
|
versionId: string;
|
|
729
745
|
/** @description The timestamp when the version was created in epoch milliseconds */
|
|
730
746
|
timestamp: number;
|
|
731
|
-
/** @description The name (full name) of the user who created the version */
|
|
747
|
+
/** @description The name (full name) of the user who created the version, or "Unknown user" if the author can no longer be resolved */
|
|
732
748
|
authorName: string;
|
|
733
749
|
authorIsApiKey: boolean;
|
|
750
|
+
/** @description The identity who created the version; absent on old history entries.
|
|
751
|
+
* */
|
|
752
|
+
authorSubject?: string;
|
|
734
753
|
/** @description The state of the entity when the history entry was made */
|
|
735
754
|
state: number;
|
|
736
755
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -605,6 +605,14 @@ interface components$1 {
|
|
|
605
605
|
variants?: {
|
|
606
606
|
unpublished?: components$1["schemas"]["AlternativeDataSourceData"];
|
|
607
607
|
};
|
|
608
|
+
/** @description Created date of the data source in ISO 8601 format (ignored for writes) */
|
|
609
|
+
created?: string;
|
|
610
|
+
/** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
|
|
611
|
+
modified?: string;
|
|
612
|
+
/** @description User or API key ID that created the data source (ignored for writes) */
|
|
613
|
+
createdBy?: string;
|
|
614
|
+
/** @description User or API key ID that last modified the data source (ignored for writes) */
|
|
615
|
+
modifiedBy?: string;
|
|
608
616
|
};
|
|
609
617
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
|
610
618
|
DataType: {
|
|
@@ -656,6 +664,14 @@ interface components$1 {
|
|
|
656
664
|
custom?: {
|
|
657
665
|
[key: string]: unknown;
|
|
658
666
|
};
|
|
667
|
+
/** @description Created date of the data type in ISO 8601 format (ignored for writes) */
|
|
668
|
+
created?: string;
|
|
669
|
+
/** @description Last modified date of the data type in ISO 8601 format (ignored for writes) */
|
|
670
|
+
modified?: string;
|
|
671
|
+
/** @description User or API key ID that created the data type (ignored for writes) */
|
|
672
|
+
createdBy?: string;
|
|
673
|
+
/** @description User or API key ID that last modified the data type (ignored for writes) */
|
|
674
|
+
modifiedBy?: string;
|
|
659
675
|
};
|
|
660
676
|
/** @description Defines the shape of a data variable on a Data Source or Data Type */
|
|
661
677
|
DataVariableDefinition: {
|
|
@@ -728,9 +744,12 @@ interface components$1 {
|
|
|
728
744
|
versionId: string;
|
|
729
745
|
/** @description The timestamp when the version was created in epoch milliseconds */
|
|
730
746
|
timestamp: number;
|
|
731
|
-
/** @description The name (full name) of the user who created the version */
|
|
747
|
+
/** @description The name (full name) of the user who created the version, or "Unknown user" if the author can no longer be resolved */
|
|
732
748
|
authorName: string;
|
|
733
749
|
authorIsApiKey: boolean;
|
|
750
|
+
/** @description The identity who created the version; absent on old history entries.
|
|
751
|
+
* */
|
|
752
|
+
authorSubject?: string;
|
|
734
753
|
/** @description The state of the entity when the history entry was made */
|
|
735
754
|
state: number;
|
|
736
755
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "20.50.2-alpha.
|
|
3
|
+
"version": "20.50.2-alpha.149+913f0b7b57",
|
|
4
4
|
"description": "Uniform Assets",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@uniformdev/context": "20.50.2-alpha.
|
|
40
|
-
"@uniformdev/files": "20.50.2-alpha.
|
|
39
|
+
"@uniformdev/context": "20.50.2-alpha.149+913f0b7b57",
|
|
40
|
+
"@uniformdev/files": "20.50.2-alpha.149+913f0b7b57"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"ts-xor": "^1.3.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "913f0b7b57295ca79575810663c56a7a5deea9e4"
|
|
46
46
|
}
|