@uniformdev/assets 19.177.2-alpha.18 → 19.178.2-alpha.25

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 CHANGED
@@ -789,35 +789,6 @@ interface external {
789
789
  * @enum {string}
790
790
  */
791
791
  OverrideOptions: "yes" | "no";
792
- /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
793
- AlternativeDataSourceData: {
794
- /** @description Base resource URL of the data source. No trailing slash */
795
- baseUrl: string;
796
- /** @description HTTP headers to pass with requests to the data source */
797
- headers?: {
798
- key: string;
799
- value: string;
800
- omitIfEmpty?: boolean;
801
- }[];
802
- /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
803
- parameters?: {
804
- key: string;
805
- value: string;
806
- omitIfEmpty?: boolean;
807
- }[];
808
- /** @description Variables needed to make calls to the data source */
809
- variables?: {
810
- [key: string]: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
811
- };
812
- /** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
813
- customPublic?: {
814
- [key: string]: unknown;
815
- };
816
- /** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
817
- custom?: {
818
- [key: string]: unknown;
819
- };
820
- };
821
792
  /**
822
793
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
823
794
  * These are created in the UI and shared across a whole project.
@@ -854,11 +825,6 @@ interface external {
854
825
  localeMapping?: {
855
826
  [key: string]: string;
856
827
  };
857
- /**
858
- * @description If true, data source will require additional credentials to access unpublished data.
859
- * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
860
- */
861
- enableUnpublishedMode?: boolean;
862
828
  /** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
863
829
  customPublic?: {
864
830
  [key: string]: unknown;
@@ -867,10 +833,6 @@ interface external {
867
833
  custom?: {
868
834
  [key: string]: unknown;
869
835
  };
870
- /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
871
- variants?: {
872
- unpublished?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
873
- };
874
836
  };
875
837
  /** @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 */
876
838
  DataType: {
@@ -969,12 +931,6 @@ interface external {
969
931
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
970
932
  */
971
933
  optionalPatternParameter?: boolean;
972
- /**
973
- * @description Resolve this data resource with draft mode content. TBD
974
- *
975
- * @enum {string}
976
- */
977
- dataSourceVariant?: "unpublished";
978
934
  variables?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
979
935
  };
980
936
  /** @description Variable values for a data resource */
package/dist/index.d.ts CHANGED
@@ -789,35 +789,6 @@ interface external {
789
789
  * @enum {string}
790
790
  */
791
791
  OverrideOptions: "yes" | "no";
792
- /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
793
- AlternativeDataSourceData: {
794
- /** @description Base resource URL of the data source. No trailing slash */
795
- baseUrl: string;
796
- /** @description HTTP headers to pass with requests to the data source */
797
- headers?: {
798
- key: string;
799
- value: string;
800
- omitIfEmpty?: boolean;
801
- }[];
802
- /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
803
- parameters?: {
804
- key: string;
805
- value: string;
806
- omitIfEmpty?: boolean;
807
- }[];
808
- /** @description Variables needed to make calls to the data source */
809
- variables?: {
810
- [key: string]: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
811
- };
812
- /** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
813
- customPublic?: {
814
- [key: string]: unknown;
815
- };
816
- /** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
817
- custom?: {
818
- [key: string]: unknown;
819
- };
820
- };
821
792
  /**
822
793
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
823
794
  * These are created in the UI and shared across a whole project.
@@ -854,11 +825,6 @@ interface external {
854
825
  localeMapping?: {
855
826
  [key: string]: string;
856
827
  };
857
- /**
858
- * @description If true, data source will require additional credentials to access unpublished data.
859
- * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
860
- */
861
- enableUnpublishedMode?: boolean;
862
828
  /** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
863
829
  customPublic?: {
864
830
  [key: string]: unknown;
@@ -867,10 +833,6 @@ interface external {
867
833
  custom?: {
868
834
  [key: string]: unknown;
869
835
  };
870
- /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
871
- variants?: {
872
- unpublished?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
873
- };
874
836
  };
875
837
  /** @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 */
876
838
  DataType: {
@@ -969,12 +931,6 @@ interface external {
969
931
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
970
932
  */
971
933
  optionalPatternParameter?: boolean;
972
- /**
973
- * @description Resolve this data resource with draft mode content. TBD
974
- *
975
- * @enum {string}
976
- */
977
- dataSourceVariant?: "unpublished";
978
934
  variables?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
979
935
  };
980
936
  /** @description Variable values for a data resource */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/assets",
3
- "version": "19.177.2-alpha.18+f0847a28d4",
3
+ "version": "19.178.2-alpha.25+0f7f53f560",
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.177.2-alpha.18+f0847a28d4"
39
+ "@uniformdev/context": "19.178.2-alpha.25+0f7f53f560"
40
40
  },
41
- "gitHead": "f0847a28d4ba83396723d0bb80311184a3143e00"
41
+ "gitHead": "0f7f53f56071a59cee38bf83c9f3bae541846de2"
42
42
  }