@erp-galoper/types 1.0.1864 → 1.0.1866

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 +34 -15
  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}
@@ -40488,7 +40496,7 @@ export interface components {
40488
40496
  * Format: uuid
40489
40497
  */
40490
40498
  id: string;
40491
- item: components["schemas"]["ItemMinimalSchema"] | null;
40499
+ item: components["schemas"]["ItemSchema"] | null;
40492
40500
  /** Itemtext */
40493
40501
  itemText: string | null;
40494
40502
  itemType: components["schemas"]["NonInventoryItemType"] | null;
@@ -40859,7 +40867,7 @@ export interface components {
40859
40867
  * Format: uuid
40860
40868
  */
40861
40869
  id: string;
40862
- item: components["schemas"]["ItemMinimalSchema"] | null;
40870
+ item: components["schemas"]["ItemSchema"] | null;
40863
40871
  /** Itemtext */
40864
40872
  itemText: string | null;
40865
40873
  itemType: components["schemas"]["NonInventoryItemType"] | null;
@@ -41623,7 +41631,7 @@ export interface components {
41623
41631
  * Format: uuid
41624
41632
  */
41625
41633
  id: string;
41626
- item: components["schemas"]["ItemMinimalSchema"] | null;
41634
+ item: components["schemas"]["ItemSchema"] | null;
41627
41635
  /**
41628
41636
  * Itemname
41629
41637
  * @description Item name if inventory is off
@@ -42460,7 +42468,7 @@ export interface components {
42460
42468
  * Format: uuid
42461
42469
  */
42462
42470
  id: string;
42463
- item: components["schemas"]["ItemMinimalSchema"] | null;
42471
+ item: components["schemas"]["ItemSchema"] | null;
42464
42472
  /** Itemname */
42465
42473
  itemName?: string | null;
42466
42474
  itemType: components["schemas"]["NonInventoryItemType"] | null;
@@ -50038,7 +50046,7 @@ export interface components {
50038
50046
  * Format: uuid
50039
50047
  */
50040
50048
  id: string;
50041
- item: components["schemas"]["ItemMinimalSchema"] | null;
50049
+ item: components["schemas"]["ItemSchema"] | null;
50042
50050
  /** Itemname */
50043
50051
  itemName: string | null;
50044
50052
  itemType: components["schemas"]["NonInventoryItemType"] | null;
@@ -52378,7 +52386,7 @@ export interface components {
52378
52386
  * Format: uuid
52379
52387
  */
52380
52388
  id: string;
52381
- item: components["schemas"]["ItemMinimalSchema"] | null;
52389
+ item: components["schemas"]["ItemSchema"] | null;
52382
52390
  /** Itemname */
52383
52391
  itemName?: string | null;
52384
52392
  itemType: components["schemas"]["NonInventoryItemType"] | null;
@@ -54424,7 +54432,7 @@ export interface components {
54424
54432
  * Format: uuid
54425
54433
  */
54426
54434
  id: string;
54427
- item: components["schemas"]["ItemMinimalSchema"] | null;
54435
+ item: components["schemas"]["ItemSchema"] | null;
54428
54436
  /** Itemname */
54429
54437
  itemName?: string | null;
54430
54438
  itemType: components["schemas"]["NonInventoryItemType"] | null;
@@ -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.1866",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],