@player-tools/xlr 0.4.0-next.0 → 0.4.0-next.2
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.ts +2 -0
- package/package.json +1 -1
- package/src/utility.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -182,6 +182,8 @@ interface Manifest {
|
|
|
182
182
|
pluginName: string;
|
|
183
183
|
/** Map of capabilities provided by the plugin to the name of the XLR for the capabilities */
|
|
184
184
|
capabilities?: Map<string, Array<string>>;
|
|
185
|
+
/** CustomPrimitives that are the most basic types in the Payer Ecosystem */
|
|
186
|
+
customPrimitives?: Array<string>;
|
|
185
187
|
}
|
|
186
188
|
interface TSManifest {
|
|
187
189
|
/** Name of the plugin */
|
package/package.json
CHANGED
package/src/utility.ts
CHANGED
|
@@ -17,6 +17,8 @@ export interface Manifest {
|
|
|
17
17
|
pluginName: string;
|
|
18
18
|
/** Map of capabilities provided by the plugin to the name of the XLR for the capabilities */
|
|
19
19
|
capabilities?: Map<string, Array<string>>;
|
|
20
|
+
/** CustomPrimitives that are the most basic types in the Payer Ecosystem */
|
|
21
|
+
customPrimitives?: Array<string>;
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
export interface TSManifest {
|