@erp-galoper/types 1.0.645 → 1.0.646

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 +8 -101
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -9289,9 +9289,9 @@ export interface paths {
9289
9289
  * - itemIsRequired
9290
9290
  * - unitOfMeasureIsRequired
9291
9291
  * - itemRequired
9292
- * - supplierMissMatch
9293
9292
  * - departmentMissMatch
9294
9293
  * - DueDateShouldBeGreaterThanOrEqualDocumentDate
9294
+ * - requisitionShouldBeSubmitted
9295
9295
  * - 403:
9296
9296
  * - permissionDenied
9297
9297
  * - noBranchAccess
@@ -9452,37 +9452,6 @@ export interface paths {
9452
9452
  patch?: never;
9453
9453
  trace?: never;
9454
9454
  };
9455
- "/api/v1/purchase/request-for-quotations/{id}/submit/": {
9456
- parameters: {
9457
- query?: never;
9458
- header?: never;
9459
- path?: never;
9460
- cookie?: never;
9461
- };
9462
- get?: never;
9463
- put?: never;
9464
- /**
9465
- * Submit Request For Quotation
9466
- * @description Endpoint for submit request for quotation
9467
- * Possible Responses:
9468
- * - 404:
9469
- * - requestForQuotationDoesNotExist
9470
- * - 403:
9471
- * - permissionDenied
9472
- * - noBranchAccess
9473
- * - requestForQuotationShouldBeDraft
9474
- * - cantMakeActionOnLockedDocument
9475
- * - noModuleAccess
9476
- * - 500:
9477
- * - internalServerError
9478
- */
9479
- post: operations["purchase_request_for_quotation_views_submit_request_for_quotation"];
9480
- delete?: never;
9481
- options?: never;
9482
- head?: never;
9483
- patch?: never;
9484
- trace?: never;
9485
- };
9486
9455
  "/api/v1/purchase/advance-payments/{id}/export-excel/": {
9487
9456
  parameters: {
9488
9457
  query?: never;
@@ -27696,7 +27665,7 @@ export interface components {
27696
27665
  /**
27697
27666
  * Id
27698
27667
  * Format: uuid
27699
- * @example a41a14e0-cf04-4e5b-b88a-80071c04a328
27668
+ * @example c510e741-da8a-47f2-98ab-5413f125d8e1
27700
27669
  */
27701
27670
  id: string;
27702
27671
  /**
@@ -32281,7 +32250,7 @@ export interface components {
32281
32250
  * Fromrequisition
32282
32251
  * @description To get requisitions use route /purchase/requisitions/ where type is requestForQuotation
32283
32252
  */
32284
- fromRequisition: string | null;
32253
+ fromRequisition?: string | null;
32285
32254
  status: components["schemas"]["InternalStatusChoices"];
32286
32255
  /**
32287
32256
  * Project
@@ -32322,7 +32291,7 @@ export interface components {
32322
32291
  * - input should be disabled, get unit of measure from itemPackage
32323
32292
  *
32324
32293
  */
32325
- unitOfMeasure: number | null;
32294
+ unitOfMeasure?: number | null;
32326
32295
  /**
32327
32296
  * Itempackage
32328
32297
  * @description choose from the item's itemPackage
@@ -32332,7 +32301,7 @@ export interface components {
32332
32301
  * Unitpackage
32333
32302
  * @description This field is required when the package is selected
32334
32303
  */
32335
- unitPackage: number | null;
32304
+ unitPackage?: number | null;
32336
32305
  };
32337
32306
  /** ListRequestForQuotations */
32338
32307
  ListRequestForQuotations: {
@@ -32416,7 +32385,7 @@ export interface components {
32416
32385
  * - input should be disabled, get unit of measure from itemPackage
32417
32386
  *
32418
32387
  */
32419
- unitOfMeasure: number | null;
32388
+ unitOfMeasure?: number | null;
32420
32389
  /**
32421
32390
  * Itempackage
32422
32391
  * @description choose from the item's itemPackage
@@ -32426,7 +32395,7 @@ export interface components {
32426
32395
  * Unitpackage
32427
32396
  * @description This field is required when the package is selected
32428
32397
  */
32429
- unitPackage: number | null;
32398
+ unitPackage?: number | null;
32430
32399
  /**
32431
32400
  * Id
32432
32401
  * Format: uuid
@@ -32472,7 +32441,7 @@ export interface components {
32472
32441
  * Fromrequisition
32473
32442
  * @description To get requisitions use route /purchase/requisitions/ where type is requestForQuotation
32474
32443
  */
32475
- fromRequisition: string | null;
32444
+ fromRequisition?: string | null;
32476
32445
  status: components["schemas"]["InternalStatusChoices"];
32477
32446
  /**
32478
32447
  * Project
@@ -66896,68 +66865,6 @@ export interface operations {
66896
66865
  };
66897
66866
  };
66898
66867
  };
66899
- purchase_request_for_quotation_views_submit_request_for_quotation: {
66900
- parameters: {
66901
- query?: never;
66902
- header?: never;
66903
- path: {
66904
- id: string;
66905
- };
66906
- cookie?: never;
66907
- };
66908
- requestBody: {
66909
- content: {
66910
- "application/json": components["schemas"]["ActionOnRequestForQuotationSchema"];
66911
- };
66912
- };
66913
- responses: {
66914
- /** @description OK */
66915
- 200: {
66916
- headers: {
66917
- [name: string]: unknown;
66918
- };
66919
- content: {
66920
- "application/json": components["schemas"]["RequestForQuotationResponse"];
66921
- };
66922
- };
66923
- /** @description Bad Request */
66924
- 400: {
66925
- headers: {
66926
- [name: string]: unknown;
66927
- };
66928
- content: {
66929
- "application/json": components["schemas"]["ErrorMessages"];
66930
- };
66931
- };
66932
- /** @description Forbidden */
66933
- 403: {
66934
- headers: {
66935
- [name: string]: unknown;
66936
- };
66937
- content: {
66938
- "application/json": components["schemas"]["MessageResponse"];
66939
- };
66940
- };
66941
- /** @description Not Found */
66942
- 404: {
66943
- headers: {
66944
- [name: string]: unknown;
66945
- };
66946
- content: {
66947
- "application/json": components["schemas"]["MessageResponse"];
66948
- };
66949
- };
66950
- /** @description Internal Server Error */
66951
- 500: {
66952
- headers: {
66953
- [name: string]: unknown;
66954
- };
66955
- content: {
66956
- "application/json": components["schemas"]["MessageResponse"];
66957
- };
66958
- };
66959
- };
66960
- };
66961
66868
  purchase_advance_payment_views_export_advance_payment: {
66962
66869
  parameters: {
66963
66870
  query: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.645",
3
+ "version": "1.0.646",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],