@erp-galoper/types 1.0.1335 → 1.0.1337

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 +25 -6
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -1845,6 +1845,7 @@ export interface paths {
1845
1845
  * - To get date range that user can select use route common/allowed_date_range
1846
1846
  * - To display accounts that should be selected in JV you should call common/posting_accounts/ with type accountType detail
1847
1847
  * - If no account is selected all movement fields should be disabled
1848
+ * - JV can be cloned from Template JVS, to allow user clone from template JV use route /api/v1/accounting/journal_vouchers/?branchId={branch-id} and filter by IsTemplate equals true
1848
1849
  */
1849
1850
  post: operations["accounting_journalvoucher_views_new_journal_voucher"];
1850
1851
  delete?: never;
@@ -1964,6 +1965,7 @@ export interface paths {
1964
1965
  * - internalServerError
1965
1966
  * - To make edit on journal voucher , the document should be draft , if document is submitted should be reset to draft
1966
1967
  * - We can only reset to draft journal voucher if status is submitted or posted
1968
+ * - JV can be cloned from Template JVS, to allow user clone from template JV use route /api/v1/accounting/journal_vouchers/?branchId={branch-id} and filter by IsTemplate equals true
1967
1969
  */
1968
1970
  patch: operations["accounting_journalvoucher_views_edit_journal_voucher"];
1969
1971
  trace?: never;
@@ -27452,8 +27454,10 @@ export interface components {
27452
27454
  startDate: string;
27453
27455
  /** Vatdate */
27454
27456
  vatDate?: string | null;
27455
- /** Mof */
27456
- mof: string;
27457
+ /** Financialnumber */
27458
+ FinancialNumber: string;
27459
+ /** Registrationnumber */
27460
+ registrationNumber: string;
27457
27461
  /** Email */
27458
27462
  email: string;
27459
27463
  country: components["schemas"]["CountryCodes"];
@@ -27499,8 +27503,10 @@ export interface components {
27499
27503
  startDate: string;
27500
27504
  /** Vatdate */
27501
27505
  vatDate: string | null;
27502
- /** Mof */
27503
- mof: string;
27506
+ /** Financialnumber */
27507
+ financialNumber: string;
27508
+ /** Registrationnumber */
27509
+ registrationNumber: string;
27504
27510
  /**
27505
27511
  * Email
27506
27512
  * Format: email
@@ -27526,8 +27532,10 @@ export interface components {
27526
27532
  startDate?: string;
27527
27533
  /** Vatdate */
27528
27534
  vatDate?: string | null;
27529
- /** Mof */
27530
- mof?: string;
27535
+ /** Financialnumber */
27536
+ financialNumber?: string;
27537
+ /** Registrationnumber */
27538
+ registrationNumber?: string;
27531
27539
  /**
27532
27540
  * Email
27533
27541
  * Format: email
@@ -28112,6 +28120,8 @@ export interface components {
28112
28120
  attachments: string[] | null;
28113
28121
  reversedIn: components["schemas"]["JournalVoucherSummaryInfo"] | null;
28114
28122
  reversalOf: components["schemas"]["JournalVoucherSummaryInfo"] | null;
28123
+ /** Istemplate */
28124
+ isTemplate: boolean;
28115
28125
  /** Journalitems */
28116
28126
  journalItems: components["schemas"]["RetrieveJournalVoucherItemsSchema"][];
28117
28127
  };
@@ -28231,6 +28241,11 @@ export interface components {
28231
28241
  status: components["schemas"]["InternalStatusChoices"];
28232
28242
  /** Attachments */
28233
28243
  attachments: string[];
28244
+ /**
28245
+ * Istemplate
28246
+ * @default false
28247
+ */
28248
+ isTemplate: boolean;
28234
28249
  /** Journalitems */
28235
28250
  journalItems: components["schemas"]["CreateJournalVoucherItemsSchema"][];
28236
28251
  };
@@ -28291,6 +28306,8 @@ export interface components {
28291
28306
  attachments: string[] | null;
28292
28307
  reversedIn: components["schemas"]["JournalVoucherSummaryInfo"] | null;
28293
28308
  reversalOf: components["schemas"]["JournalVoucherSummaryInfo"] | null;
28309
+ /** Istemplate */
28310
+ isTemplate: boolean;
28294
28311
  };
28295
28312
  /** ReverseJournalVoucherSchema */
28296
28313
  ReverseJournalVoucherSchema: {
@@ -28466,6 +28483,8 @@ export interface components {
28466
28483
  * @default []
28467
28484
  */
28468
28485
  attachments: string[];
28486
+ /** Istemplate */
28487
+ isTemplate?: boolean;
28469
28488
  status?: components["schemas"]["InternalStatusChoices"];
28470
28489
  journalItems: components["schemas"]["UpdateJournalItemsSchema"];
28471
28490
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1335",
3
+ "version": "1.0.1337",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],