@erp-galoper/types 1.0.204 → 1.0.206

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 +3 -96
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -11957,39 +11957,6 @@ export interface paths {
11957
11957
  patch?: never;
11958
11958
  trace?: never;
11959
11959
  };
11960
- "/api/v1/inventory/goods-receipt-note/{id}/submit/": {
11961
- parameters: {
11962
- query?: never;
11963
- header?: never;
11964
- path?: never;
11965
- cookie?: never;
11966
- };
11967
- get?: never;
11968
- put?: never;
11969
- /**
11970
- * Submit Goods Receipt Note
11971
- * @description Endpoint for submitting a goods receipt note
11972
- * Responses:
11973
- * - 200: GoodsReceiptNoteSchema
11974
- * - 403: "permissionDenied"
11975
- * - "noModuleAccess"
11976
- * - statusAlreadySubmitted
11977
- * - cantMakeActionOnLockedDocument
11978
- * - noBranchAccess
11979
- * - goodsReceiptNoteIsCanceled
11980
- * - statusAlreadySubmitted
11981
- * - 404: "goodsReceiptNoteDoesNotExist"
11982
- * - 500: "serverError"
11983
- *
11984
- * Permission key: `goodsreceiptnote = ['add']`
11985
- */
11986
- post: operations["inventory_receipt_note_views_submit_goods_receipt_note"];
11987
- delete?: never;
11988
- options?: never;
11989
- head?: never;
11990
- patch?: never;
11991
- trace?: never;
11992
- };
11993
11960
  "/api/v1/inventory/goods-receipt-note/{id}/cancel/": {
11994
11961
  parameters: {
11995
11962
  query?: never;
@@ -23004,6 +22971,8 @@ export interface components {
23004
22971
  defaultUnitOfMeasures?: boolean;
23005
22972
  /** Contactsegmentation */
23006
22973
  contactSegmentation?: boolean;
22974
+ /** Purchasesettings */
22975
+ purchaseSettings?: boolean;
23007
22976
  };
23008
22977
  /** CategoriesInDropdown */
23009
22978
  CategoriesInDropdown: {
@@ -26544,7 +26513,7 @@ export interface components {
26544
26513
  /**
26545
26514
  * Id
26546
26515
  * Format: uuid
26547
- * @example 2c3c9e6c-7b7a-4a53-863a-3ce5eb770479
26516
+ * @example a096b231-174a-4521-9041-c93ee6d39870
26548
26517
  */
26549
26518
  id: string;
26550
26519
  /**
@@ -68665,68 +68634,6 @@ export interface operations {
68665
68634
  };
68666
68635
  };
68667
68636
  };
68668
- inventory_receipt_note_views_submit_goods_receipt_note: {
68669
- parameters: {
68670
- query?: never;
68671
- header?: never;
68672
- path: {
68673
- id: string;
68674
- };
68675
- cookie?: never;
68676
- };
68677
- requestBody: {
68678
- content: {
68679
- "application/json": components["schemas"]["ActionsPayloadSchemas"];
68680
- };
68681
- };
68682
- responses: {
68683
- /** @description OK */
68684
- 200: {
68685
- headers: {
68686
- [name: string]: unknown;
68687
- };
68688
- content: {
68689
- "application/json": components["schemas"]["GoodsReceiptNoteSchema"];
68690
- };
68691
- };
68692
- /** @description Bad Request */
68693
- 400: {
68694
- headers: {
68695
- [name: string]: unknown;
68696
- };
68697
- content: {
68698
- "application/json": components["schemas"]["ErrorMessages"];
68699
- };
68700
- };
68701
- /** @description Forbidden */
68702
- 403: {
68703
- headers: {
68704
- [name: string]: unknown;
68705
- };
68706
- content: {
68707
- "application/json": components["schemas"]["MessageWithCode"];
68708
- };
68709
- };
68710
- /** @description Not Found */
68711
- 404: {
68712
- headers: {
68713
- [name: string]: unknown;
68714
- };
68715
- content: {
68716
- "application/json": components["schemas"]["MessageWithCode"];
68717
- };
68718
- };
68719
- /** @description Internal Server Error */
68720
- 500: {
68721
- headers: {
68722
- [name: string]: unknown;
68723
- };
68724
- content: {
68725
- "application/json": components["schemas"]["MessageWithCode"];
68726
- };
68727
- };
68728
- };
68729
- };
68730
68637
  inventory_receipt_note_views_cancel_goods_receipt_note: {
68731
68638
  parameters: {
68732
68639
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.204",
3
+ "version": "1.0.206",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],