@erp-galoper/types 1.0.1460 → 1.0.1462

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 +24 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -56264,7 +56264,7 @@ export interface components {
56264
56264
  * Defaultwarehouse
56265
56265
  * @description - Default warehouse ID for online store inventory operations
56266
56266
  * - This warehouse will receive the inventory effects from online store operations
56267
- * - Required when use_online_shop is true, and should be null if use_online_shop is false
56267
+ * - Required when use_online_shop is true
56268
56268
  * - MUST be one of the warehouses specified in the warehouses field
56269
56269
  * - Get warehouse using route /api/v1/inventory/warehouses/
56270
56270
  */
@@ -56725,7 +56725,7 @@ export interface components {
56725
56725
  /** Variablescount */
56726
56726
  variablesCount: number;
56727
56727
  /** Variablemappings */
56728
- variableMappings?: Record<string, never> | null;
56728
+ variableMappings?: components["schemas"]["VariableMappingResponseSchema"][] | null;
56729
56729
  /**
56730
56730
  * Mediaurl
56731
56731
  * @description Static media URL if template uses static media, null if dynamic
@@ -56741,6 +56741,27 @@ export interface components {
56741
56741
  * @enum {string}
56742
56742
  */
56743
56743
  TwilioContentType: "twilio/text" | "twilio/media";
56744
+ /**
56745
+ * VariableMappingResponseSchema
56746
+ * @description Schema for variable mapping in response (output with camelCase fieldPath).
56747
+ */
56748
+ VariableMappingResponseSchema: {
56749
+ /**
56750
+ * Position
56751
+ * @description Variable position (e.g., '1', '2', '3')
56752
+ */
56753
+ position: string;
56754
+ /**
56755
+ * Fieldpath
56756
+ * @description Field path in camelCase (e.g., 'customer.name', 'number', 'total')
56757
+ */
56758
+ fieldPath: string;
56759
+ /**
56760
+ * Label
56761
+ * @description Human-readable label for the variable
56762
+ */
56763
+ label?: string | null;
56764
+ };
56744
56765
  /**
56745
56766
  * WhatsAppLanguage
56746
56767
  * @description Enum for WhatsApp template supported languages
@@ -56790,7 +56811,7 @@ export interface components {
56790
56811
  };
56791
56812
  /**
56792
56813
  * VariableMappingSchema
56793
- * @description Schema for variable mapping definition.
56814
+ * @description Schema for variable mapping definition (input).
56794
56815
  */
56795
56816
  VariableMappingSchema: {
56796
56817
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1460",
3
+ "version": "1.0.1462",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],