@erp-galoper/types 1.0.660 → 1.0.662
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.
- package/openapi.ts +87 -80
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -25400,6 +25400,15 @@ export interface components {
|
|
|
25400
25400
|
* @enum {string}
|
|
25401
25401
|
*/
|
|
25402
25402
|
typeCustomers: "parents" | "children";
|
|
25403
|
+
/** CommonCity */
|
|
25404
|
+
CommonCity: {
|
|
25405
|
+
/** Id */
|
|
25406
|
+
id: number;
|
|
25407
|
+
/** Name */
|
|
25408
|
+
name: string;
|
|
25409
|
+
/** Code */
|
|
25410
|
+
code?: string | null;
|
|
25411
|
+
};
|
|
25403
25412
|
/** CommonCurrency */
|
|
25404
25413
|
CommonCurrency: {
|
|
25405
25414
|
/** Id */
|
|
@@ -25409,6 +25418,43 @@ export interface components {
|
|
|
25409
25418
|
/** Code */
|
|
25410
25419
|
code?: string | null;
|
|
25411
25420
|
};
|
|
25421
|
+
/** CompanyCustomerBranchSchema */
|
|
25422
|
+
CompanyCustomerBranchSchema: {
|
|
25423
|
+
/** Id */
|
|
25424
|
+
id: number;
|
|
25425
|
+
/** Name */
|
|
25426
|
+
name: string;
|
|
25427
|
+
/** Phone1 */
|
|
25428
|
+
phone1: string;
|
|
25429
|
+
/**
|
|
25430
|
+
* Postal Code
|
|
25431
|
+
* @default
|
|
25432
|
+
*/
|
|
25433
|
+
postal_code: string | null;
|
|
25434
|
+
/** Address */
|
|
25435
|
+
address: string;
|
|
25436
|
+
region: components["schemas"]["RegionCommonSchema"];
|
|
25437
|
+
/**
|
|
25438
|
+
* Shipmentinformation
|
|
25439
|
+
* @default []
|
|
25440
|
+
*/
|
|
25441
|
+
shipmentInformation: components["schemas"]["CustomerShippingAddressSchema"][];
|
|
25442
|
+
/** Contacts */
|
|
25443
|
+
contacts: components["schemas"]["CustomerContactSchema"][];
|
|
25444
|
+
/** Banks */
|
|
25445
|
+
banks: components["schemas"]["CustomerBankSchema"][];
|
|
25446
|
+
/** Default */
|
|
25447
|
+
default?: boolean;
|
|
25448
|
+
};
|
|
25449
|
+
/** CustomerBankSchema */
|
|
25450
|
+
CustomerBankSchema: {
|
|
25451
|
+
/** Id */
|
|
25452
|
+
id: number;
|
|
25453
|
+
/** Name */
|
|
25454
|
+
name: string;
|
|
25455
|
+
/** Accountnumber */
|
|
25456
|
+
accountNumber: string;
|
|
25457
|
+
};
|
|
25412
25458
|
/** CustomerChildDetailSchema */
|
|
25413
25459
|
CustomerChildDetailSchema: {
|
|
25414
25460
|
/** Id */
|
|
@@ -25422,6 +25468,19 @@ export interface components {
|
|
|
25422
25468
|
/** Secondarybalance */
|
|
25423
25469
|
secondaryBalance: number;
|
|
25424
25470
|
};
|
|
25471
|
+
/** CustomerContactSchema */
|
|
25472
|
+
CustomerContactSchema: {
|
|
25473
|
+
/** Id */
|
|
25474
|
+
id: number;
|
|
25475
|
+
/** Firstname */
|
|
25476
|
+
firstName: string;
|
|
25477
|
+
/** Lastname */
|
|
25478
|
+
lastName: string;
|
|
25479
|
+
/** Phone1 */
|
|
25480
|
+
phone1: string;
|
|
25481
|
+
/** Email */
|
|
25482
|
+
email?: string | null;
|
|
25483
|
+
};
|
|
25425
25484
|
/** CustomerForListSchema */
|
|
25426
25485
|
CustomerForListSchema: {
|
|
25427
25486
|
/** Isactive */
|
|
@@ -25459,6 +25518,11 @@ export interface components {
|
|
|
25459
25518
|
* @description visible when customer type is company
|
|
25460
25519
|
*/
|
|
25461
25520
|
financialNumber: string | null;
|
|
25521
|
+
/**
|
|
25522
|
+
* Branches
|
|
25523
|
+
* @default []
|
|
25524
|
+
*/
|
|
25525
|
+
branches: components["schemas"]["CompanyCustomerBranchSchema"][];
|
|
25462
25526
|
};
|
|
25463
25527
|
/** CustomerGroupInfoSchema */
|
|
25464
25528
|
CustomerGroupInfoSchema: {
|
|
@@ -25476,6 +25540,27 @@ export interface components {
|
|
|
25476
25540
|
/** Results */
|
|
25477
25541
|
results: components["schemas"]["CustomerForListSchema"][];
|
|
25478
25542
|
};
|
|
25543
|
+
/** CustomerShippingAddressSchema */
|
|
25544
|
+
CustomerShippingAddressSchema: {
|
|
25545
|
+
/** Id */
|
|
25546
|
+
id: number;
|
|
25547
|
+
/** Country */
|
|
25548
|
+
country: string;
|
|
25549
|
+
city: components["schemas"]["CommonCity"];
|
|
25550
|
+
/** Address */
|
|
25551
|
+
address: string;
|
|
25552
|
+
/**
|
|
25553
|
+
* Postalcode
|
|
25554
|
+
* @default
|
|
25555
|
+
*/
|
|
25556
|
+
postalCode: string | null;
|
|
25557
|
+
/** Fax */
|
|
25558
|
+
fax?: string | null;
|
|
25559
|
+
/** Phone1 */
|
|
25560
|
+
phone1?: string | null;
|
|
25561
|
+
/** Phone2 */
|
|
25562
|
+
phone2?: string | null;
|
|
25563
|
+
};
|
|
25479
25564
|
/**
|
|
25480
25565
|
* TypeOfCustomer
|
|
25481
25566
|
* @enum {string}
|
|
@@ -25505,15 +25590,6 @@ export interface components {
|
|
|
25505
25590
|
paymentInAdvanceAccountResident: components["schemas"]["AccountInfoSchema"] | null;
|
|
25506
25591
|
paymentInAdvanceAccountNonResident: components["schemas"]["AccountInfoSchema"] | null;
|
|
25507
25592
|
};
|
|
25508
|
-
/** CommonCity */
|
|
25509
|
-
CommonCity: {
|
|
25510
|
-
/** Id */
|
|
25511
|
-
id: number;
|
|
25512
|
-
/** Name */
|
|
25513
|
-
name: string;
|
|
25514
|
-
/** Code */
|
|
25515
|
-
code?: string | null;
|
|
25516
|
-
};
|
|
25517
25593
|
/** CommonPriceListSchema */
|
|
25518
25594
|
CommonPriceListSchema: {
|
|
25519
25595
|
/** Id */
|
|
@@ -25521,36 +25597,6 @@ export interface components {
|
|
|
25521
25597
|
/** Name */
|
|
25522
25598
|
name: string;
|
|
25523
25599
|
};
|
|
25524
|
-
/** CustomerBankSchema */
|
|
25525
|
-
CustomerBankSchema: {
|
|
25526
|
-
/** Id */
|
|
25527
|
-
id: number;
|
|
25528
|
-
/** Name */
|
|
25529
|
-
name: string;
|
|
25530
|
-
/** Accountnumber */
|
|
25531
|
-
accountNumber: string;
|
|
25532
|
-
};
|
|
25533
|
-
/** CustomerShippingAddressSchema */
|
|
25534
|
-
CustomerShippingAddressSchema: {
|
|
25535
|
-
/** Id */
|
|
25536
|
-
id: number;
|
|
25537
|
-
/** Country */
|
|
25538
|
-
country: string;
|
|
25539
|
-
city: components["schemas"]["CommonCity"];
|
|
25540
|
-
/** Address */
|
|
25541
|
-
address: string;
|
|
25542
|
-
/**
|
|
25543
|
-
* Postalcode
|
|
25544
|
-
* @default
|
|
25545
|
-
*/
|
|
25546
|
-
postalCode: string | null;
|
|
25547
|
-
/** Fax */
|
|
25548
|
-
fax?: string | null;
|
|
25549
|
-
/** Phone1 */
|
|
25550
|
-
phone1?: string | null;
|
|
25551
|
-
/** Phone2 */
|
|
25552
|
-
phone2?: string | null;
|
|
25553
|
-
};
|
|
25554
25600
|
/** IndividualCustomerSchema */
|
|
25555
25601
|
IndividualCustomerSchema: {
|
|
25556
25602
|
/** Phone1 */
|
|
@@ -25788,32 +25834,6 @@ export interface components {
|
|
|
25788
25834
|
/** Delete */
|
|
25789
25835
|
delete: components["schemas"]["DeleteCustomerBankSchema"][];
|
|
25790
25836
|
};
|
|
25791
|
-
/** CompanyCustomerBranchSchema */
|
|
25792
|
-
CompanyCustomerBranchSchema: {
|
|
25793
|
-
/** Id */
|
|
25794
|
-
id: number;
|
|
25795
|
-
/** Name */
|
|
25796
|
-
name: string;
|
|
25797
|
-
/** Phone1 */
|
|
25798
|
-
phone1: string;
|
|
25799
|
-
/**
|
|
25800
|
-
* Postal Code
|
|
25801
|
-
* @default
|
|
25802
|
-
*/
|
|
25803
|
-
postal_code: string | null;
|
|
25804
|
-
/** Address */
|
|
25805
|
-
address: string;
|
|
25806
|
-
region: components["schemas"]["RegionCommonSchema"];
|
|
25807
|
-
/**
|
|
25808
|
-
* Shipmentinformation
|
|
25809
|
-
* @default []
|
|
25810
|
-
*/
|
|
25811
|
-
shipmentInformation: components["schemas"]["CustomerShippingAddressSchema"][];
|
|
25812
|
-
/** Contacts */
|
|
25813
|
-
contacts: components["schemas"]["CustomerContactSchema"][];
|
|
25814
|
-
/** Banks */
|
|
25815
|
-
banks: components["schemas"]["CustomerBankSchema"][];
|
|
25816
|
-
};
|
|
25817
25837
|
/** CompanyCustomerSchema */
|
|
25818
25838
|
CompanyCustomerSchema: {
|
|
25819
25839
|
/** Phone1 */
|
|
@@ -25878,19 +25898,6 @@ export interface components {
|
|
|
25878
25898
|
*/
|
|
25879
25899
|
attachments: string[];
|
|
25880
25900
|
};
|
|
25881
|
-
/** CustomerContactSchema */
|
|
25882
|
-
CustomerContactSchema: {
|
|
25883
|
-
/** Id */
|
|
25884
|
-
id: number;
|
|
25885
|
-
/** Firstname */
|
|
25886
|
-
firstName: string;
|
|
25887
|
-
/** Lastname */
|
|
25888
|
-
lastName: string;
|
|
25889
|
-
/** Phone1 */
|
|
25890
|
-
phone1: string;
|
|
25891
|
-
/** Email */
|
|
25892
|
-
email?: string | null;
|
|
25893
|
-
};
|
|
25894
25901
|
/** ChangeCustomerBranchSchema */
|
|
25895
25902
|
ChangeCustomerBranchSchema: {
|
|
25896
25903
|
/** Index */
|
|
@@ -27537,7 +27544,7 @@ export interface components {
|
|
|
27537
27544
|
/**
|
|
27538
27545
|
* Id
|
|
27539
27546
|
* Format: uuid
|
|
27540
|
-
* @example
|
|
27547
|
+
* @example c77aa39f-86b2-4202-82c7-580476d1db2c
|
|
27541
27548
|
*/
|
|
27542
27549
|
id: string;
|
|
27543
27550
|
/**
|
|
@@ -43656,7 +43663,7 @@ export interface components {
|
|
|
43656
43663
|
customer?: number;
|
|
43657
43664
|
/**
|
|
43658
43665
|
* Customerbranch
|
|
43659
|
-
* @description This field is required when the customer is a company
|
|
43666
|
+
* @description This field is required when the customer is a company, set default value from the data of selected customer and filter branches by default=True
|
|
43660
43667
|
*/
|
|
43661
43668
|
customerBranch?: number;
|
|
43662
43669
|
/**
|