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.
@@ -398,10 +398,10 @@ declare module "pyrus-api" {
398
398
  };
399
399
  export type FormFieldCatalog = FormFieldBase & {
400
400
  type?: typeof FormFieldType.Catalog;
401
- value?: Catalog;
401
+ value?: CatalogValue;
402
402
  };
403
- export type Catalog = {
404
- item_id: number;
403
+ export type CatalogValue = {
404
+ item_id?: number;
405
405
  item_ids?: number[];
406
406
  item_names?: string[];
407
407
  headers?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyrus-api",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "Pyrus API client for TypeScript",
5
5
  "repository": {
6
6
  "type": "git",