pyrus-api 3.3.0 → 3.3.1
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/build/types/index.d.ts +3 -3
- package/package.json +1 -1
package/build/types/index.d.ts
CHANGED
|
@@ -398,10 +398,10 @@ declare module "pyrus-api" {
|
|
|
398
398
|
};
|
|
399
399
|
export type FormFieldCatalog = FormFieldBase & {
|
|
400
400
|
type?: typeof FormFieldType.Catalog;
|
|
401
|
-
value?:
|
|
401
|
+
value?: CatalogValue;
|
|
402
402
|
};
|
|
403
|
-
export type
|
|
404
|
-
item_id
|
|
403
|
+
export type CatalogValue = {
|
|
404
|
+
item_id?: number;
|
|
405
405
|
item_ids?: number[];
|
|
406
406
|
item_names?: string[];
|
|
407
407
|
headers?: string[];
|