@erp-galoper/types 1.0.774 → 1.0.775
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 +44 -4
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -36712,6 +36712,46 @@ export interface components {
|
|
|
36712
36712
|
* @enum {string}
|
|
36713
36713
|
*/
|
|
36714
36714
|
AppliesToSchema: "customer" | "customerGroup";
|
|
36715
|
+
/** ContactSegmentationDetailSchemaInOffersAndPromotions */
|
|
36716
|
+
ContactSegmentationDetailSchemaInOffersAndPromotions: {
|
|
36717
|
+
/**
|
|
36718
|
+
* Id
|
|
36719
|
+
* Format: uuid
|
|
36720
|
+
*/
|
|
36721
|
+
id: string;
|
|
36722
|
+
/** Name */
|
|
36723
|
+
name: string;
|
|
36724
|
+
/**
|
|
36725
|
+
* Canremove
|
|
36726
|
+
* @description used to determine if customer group can be removed or not from selected groups in offers and promotions
|
|
36727
|
+
* @default true
|
|
36728
|
+
*/
|
|
36729
|
+
canRemove: boolean;
|
|
36730
|
+
};
|
|
36731
|
+
/** CustomerDetailSchemaInOfferAndPromotions */
|
|
36732
|
+
CustomerDetailSchemaInOfferAndPromotions: {
|
|
36733
|
+
/** Id */
|
|
36734
|
+
id: number;
|
|
36735
|
+
/** Name */
|
|
36736
|
+
name: string;
|
|
36737
|
+
/** Accountnumber */
|
|
36738
|
+
accountNumber: string;
|
|
36739
|
+
/** Phone */
|
|
36740
|
+
phone?: string | null;
|
|
36741
|
+
type: components["schemas"]["TypeOfCustomerValue"];
|
|
36742
|
+
currency: components["schemas"]["CurrencySummaryInfo"] | null;
|
|
36743
|
+
/**
|
|
36744
|
+
* Currencies
|
|
36745
|
+
* @default []
|
|
36746
|
+
*/
|
|
36747
|
+
currencies: components["schemas"]["CurrencySummaryInfo"][];
|
|
36748
|
+
/**
|
|
36749
|
+
* Canremove
|
|
36750
|
+
* @description used to determine if customer can be removed or not from selected customers in offers and promotions
|
|
36751
|
+
* @default true
|
|
36752
|
+
*/
|
|
36753
|
+
canRemove: boolean;
|
|
36754
|
+
};
|
|
36715
36755
|
/** ItemPackageSharedSchema */
|
|
36716
36756
|
ItemPackageSharedSchema: {
|
|
36717
36757
|
/**
|
|
@@ -36826,12 +36866,12 @@ export interface components {
|
|
|
36826
36866
|
* Customers
|
|
36827
36867
|
* @default []
|
|
36828
36868
|
*/
|
|
36829
|
-
customers: components["schemas"]["
|
|
36869
|
+
customers: components["schemas"]["CustomerDetailSchemaInOfferAndPromotions"][];
|
|
36830
36870
|
/**
|
|
36831
36871
|
* Customergroups
|
|
36832
36872
|
* @default []
|
|
36833
36873
|
*/
|
|
36834
|
-
customerGroups: components["schemas"]["
|
|
36874
|
+
customerGroups: components["schemas"]["ContactSegmentationDetailSchemaInOffersAndPromotions"][];
|
|
36835
36875
|
/** Offerandpromotionitems */
|
|
36836
36876
|
OfferAndPromotionItems: components["schemas"]["OfferAndPromotionItemDetailSchema"][];
|
|
36837
36877
|
};
|
|
@@ -37146,12 +37186,12 @@ export interface components {
|
|
|
37146
37186
|
* Customers
|
|
37147
37187
|
* @default []
|
|
37148
37188
|
*/
|
|
37149
|
-
customers: components["schemas"]["
|
|
37189
|
+
customers: components["schemas"]["CustomerDetailSchemaInOfferAndPromotions"][];
|
|
37150
37190
|
/**
|
|
37151
37191
|
* Customergroups
|
|
37152
37192
|
* @default []
|
|
37153
37193
|
*/
|
|
37154
|
-
customerGroups: components["schemas"]["
|
|
37194
|
+
customerGroups: components["schemas"]["ContactSegmentationDetailSchemaInOffersAndPromotions"][];
|
|
37155
37195
|
};
|
|
37156
37196
|
/** OfferAndPromotionItemUpdateSchema */
|
|
37157
37197
|
OfferAndPromotionItemUpdateSchema: {
|