pxengine 0.1.21 → 0.1.23
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.cjs +278 -134
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.mjs +272 -128
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +8 -3
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1776,7 +1776,7 @@ interface CampaignSeedCardProps extends Omit<FormCardProps, "fields"> {
|
|
|
1776
1776
|
*
|
|
1777
1777
|
* A domain-specific molecule for the Creator Discovery workflow.
|
|
1778
1778
|
* Encapsulates the specific brand info fields and selection status.
|
|
1779
|
-
*
|
|
1779
|
+
* Uses smart field generation with proper renderers for all nested data types.
|
|
1780
1780
|
*/
|
|
1781
1781
|
declare const CampaignSeedCard: React__default.NamedExoticComponent<CampaignSeedCardProps>;
|
|
1782
1782
|
|
|
@@ -1797,6 +1797,10 @@ interface SearchSpecCardProps extends Omit<FormCardProps, "fields"> {
|
|
|
1797
1797
|
* Optional field configuration to override dynamic generation
|
|
1798
1798
|
*/
|
|
1799
1799
|
fields?: FieldConfig[];
|
|
1800
|
+
/**
|
|
1801
|
+
* Alias for data — the agent schema uses specData as the prop name
|
|
1802
|
+
*/
|
|
1803
|
+
specData?: Record<string, any>;
|
|
1800
1804
|
}
|
|
1801
1805
|
|
|
1802
1806
|
/**
|
|
@@ -1804,7 +1808,7 @@ interface SearchSpecCardProps extends Omit<FormCardProps, "fields"> {
|
|
|
1804
1808
|
*
|
|
1805
1809
|
* A domain-specific molecule for the Creator Discovery workflow.
|
|
1806
1810
|
* Encapsulates search settings like platforms, ranges, and custom keyword bundles.
|
|
1807
|
-
*
|
|
1811
|
+
* Uses smart field generation with proper renderers for all nested data types.
|
|
1808
1812
|
*/
|
|
1809
1813
|
declare const SearchSpecCard: React__default.NamedExoticComponent<SearchSpecCardProps>;
|
|
1810
1814
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1776,7 +1776,7 @@ interface CampaignSeedCardProps extends Omit<FormCardProps, "fields"> {
|
|
|
1776
1776
|
*
|
|
1777
1777
|
* A domain-specific molecule for the Creator Discovery workflow.
|
|
1778
1778
|
* Encapsulates the specific brand info fields and selection status.
|
|
1779
|
-
*
|
|
1779
|
+
* Uses smart field generation with proper renderers for all nested data types.
|
|
1780
1780
|
*/
|
|
1781
1781
|
declare const CampaignSeedCard: React__default.NamedExoticComponent<CampaignSeedCardProps>;
|
|
1782
1782
|
|
|
@@ -1797,6 +1797,10 @@ interface SearchSpecCardProps extends Omit<FormCardProps, "fields"> {
|
|
|
1797
1797
|
* Optional field configuration to override dynamic generation
|
|
1798
1798
|
*/
|
|
1799
1799
|
fields?: FieldConfig[];
|
|
1800
|
+
/**
|
|
1801
|
+
* Alias for data — the agent schema uses specData as the prop name
|
|
1802
|
+
*/
|
|
1803
|
+
specData?: Record<string, any>;
|
|
1800
1804
|
}
|
|
1801
1805
|
|
|
1802
1806
|
/**
|
|
@@ -1804,7 +1808,7 @@ interface SearchSpecCardProps extends Omit<FormCardProps, "fields"> {
|
|
|
1804
1808
|
*
|
|
1805
1809
|
* A domain-specific molecule for the Creator Discovery workflow.
|
|
1806
1810
|
* Encapsulates search settings like platforms, ranges, and custom keyword bundles.
|
|
1807
|
-
*
|
|
1811
|
+
* Uses smart field generation with proper renderers for all nested data types.
|
|
1808
1812
|
*/
|
|
1809
1813
|
declare const SearchSpecCard: React__default.NamedExoticComponent<SearchSpecCardProps>;
|
|
1810
1814
|
|