@erp-galoper/types 1.0.1864 → 1.0.1865

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.
Files changed (2) hide show
  1. package/openapi.ts +27 -8
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -30431,6 +30431,14 @@ export interface components {
30431
30431
  */
30432
30432
  documentContentTypes?: components["schemas"]["CombinedModelName"][];
30433
30433
  };
30434
+ /** MediaDocumentFilterSchema */
30435
+ MediaDocumentFilterSchema: {
30436
+ modelName: components["schemas"]["FileType"];
30437
+ /** Documentids */
30438
+ documentIds?: string[];
30439
+ /** Mimetypes */
30440
+ mimeTypes?: components["schemas"]["MimeType"][] | null;
30441
+ };
30434
30442
  /**
30435
30443
  * MimeType
30436
30444
  * @enum {string}
@@ -60209,10 +60217,19 @@ export interface components {
60209
60217
  /** Invoices */
60210
60218
  invoices: components["schemas"]["ReceivablesByCustomerRegionInvoiceSchema"][];
60211
60219
  };
60220
+ /** ReceivablesByCustomerRegionInvoiceRefSchema */
60221
+ ReceivablesByCustomerRegionInvoiceRefSchema: {
60222
+ /**
60223
+ * Id
60224
+ * Format: uuid
60225
+ */
60226
+ id: string;
60227
+ /** Serialnumber */
60228
+ serialNumber: string;
60229
+ };
60212
60230
  /** ReceivablesByCustomerRegionInvoiceSchema */
60213
60231
  ReceivablesByCustomerRegionInvoiceSchema: {
60214
- /** Id */
60215
- id: string;
60232
+ invoice: components["schemas"]["ReceivablesByCustomerRegionInvoiceRefSchema"];
60216
60233
  /**
60217
60234
  * Date
60218
60235
  * Format: date
@@ -67896,12 +67913,14 @@ export interface operations {
67896
67913
  common_views_list_media: {
67897
67914
  parameters: {
67898
67915
  query?: {
67899
- /** @description Filter by MIME types e.g. image/webp */
67900
- mimeTypes?: components["schemas"]["MimeType"][] | null;
67901
- /** @description Filter by related object type e.g. item, company */
67902
- modelNames?: components["schemas"]["FileType"][] | null;
67903
- /** @description Filter media by document id */
67904
- documentIds?: string[];
67916
+ /** @description Filter by modelName, documentIds, and mimeTypes. Pass one or more document filter objects. */
67917
+ documents?: {
67918
+ modelName: components["schemas"]["FileType"];
67919
+ /** Documentids */
67920
+ documentIds?: string[];
67921
+ /** Mimetypes */
67922
+ mimeTypes?: components["schemas"]["MimeType"][] | null;
67923
+ }[];
67905
67924
  };
67906
67925
  header?: never;
67907
67926
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1864",
3
+ "version": "1.0.1865",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],