@uniformdev/assets 19.69.0 → 19.73.0

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
@@ -861,15 +861,19 @@ interface external {
861
861
  /** @description Unique identifier for the integration that this prompt belongs to. */
862
862
  integrationType: string;
863
863
  /** @description Name for the prompt */
864
- promptName?: string | null;
864
+ name?: string | null;
865
865
  /** @description Text for the prompt */
866
- promptText?: string | null;
866
+ text?: string | null;
867
867
  /** @description Data for the prompt */
868
- promptData?: string | null;
868
+ data?: {
869
+ [key: string]: unknown;
870
+ } | null;
869
871
  /** @description Turn off/on prompt */
870
872
  enabled?: boolean | null;
871
873
  /** @description Integration default prompt */
872
874
  builtIn?: boolean | null;
875
+ /** @description Supported parameter types */
876
+ parameterTypes?: string[] | null;
873
877
  };
874
878
  };
875
879
  };
package/dist/index.d.ts CHANGED
@@ -861,15 +861,19 @@ interface external {
861
861
  /** @description Unique identifier for the integration that this prompt belongs to. */
862
862
  integrationType: string;
863
863
  /** @description Name for the prompt */
864
- promptName?: string | null;
864
+ name?: string | null;
865
865
  /** @description Text for the prompt */
866
- promptText?: string | null;
866
+ text?: string | null;
867
867
  /** @description Data for the prompt */
868
- promptData?: string | null;
868
+ data?: {
869
+ [key: string]: unknown;
870
+ } | null;
869
871
  /** @description Turn off/on prompt */
870
872
  enabled?: boolean | null;
871
873
  /** @description Integration default prompt */
872
874
  builtIn?: boolean | null;
875
+ /** @description Supported parameter types */
876
+ parameterTypes?: string[] | null;
873
877
  };
874
878
  };
875
879
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/assets",
3
- "version": "19.69.0",
3
+ "version": "19.73.0",
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.69.0"
39
+ "@uniformdev/context": "19.73.0"
40
40
  },
41
- "gitHead": "327658d8c6e5735499845ebb29d74906f2a43dad"
41
+ "gitHead": "1376a707cf81b8ff1d032cfc5c927c8eb213e713"
42
42
  }