@erp-galoper/types 1.0.1461 → 1.0.1463

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 +29 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -54849,6 +54849,11 @@ export interface components {
54849
54849
  /** MovementTransactionSchema */
54850
54850
  MovementTransactionSchema: {
54851
54851
  documentType?: components["schemas"]["CombinedModelName"] | null;
54852
+ /**
54853
+ * Documentid
54854
+ * @description ID of the source document (can be integer or UUID)
54855
+ */
54856
+ documentId?: number | string | null;
54852
54857
  /**
54853
54858
  * Movementdate
54854
54859
  * Format: date
@@ -56264,7 +56269,7 @@ export interface components {
56264
56269
  * Defaultwarehouse
56265
56270
  * @description - Default warehouse ID for online store inventory operations
56266
56271
  * - 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
56272
+ * - Required when use_online_shop is true
56268
56273
  * - MUST be one of the warehouses specified in the warehouses field
56269
56274
  * - Get warehouse using route /api/v1/inventory/warehouses/
56270
56275
  */
@@ -56725,7 +56730,7 @@ export interface components {
56725
56730
  /** Variablescount */
56726
56731
  variablesCount: number;
56727
56732
  /** Variablemappings */
56728
- variableMappings?: Record<string, never> | null;
56733
+ variableMappings?: components["schemas"]["VariableMappingResponseSchema"][] | null;
56729
56734
  /**
56730
56735
  * Mediaurl
56731
56736
  * @description Static media URL if template uses static media, null if dynamic
@@ -56741,6 +56746,27 @@ export interface components {
56741
56746
  * @enum {string}
56742
56747
  */
56743
56748
  TwilioContentType: "twilio/text" | "twilio/media";
56749
+ /**
56750
+ * VariableMappingResponseSchema
56751
+ * @description Schema for variable mapping in response (output with camelCase fieldPath).
56752
+ */
56753
+ VariableMappingResponseSchema: {
56754
+ /**
56755
+ * Position
56756
+ * @description Variable position (e.g., '1', '2', '3')
56757
+ */
56758
+ position: string;
56759
+ /**
56760
+ * Fieldpath
56761
+ * @description Field path in camelCase (e.g., 'customer.name', 'number', 'total')
56762
+ */
56763
+ fieldPath: string;
56764
+ /**
56765
+ * Label
56766
+ * @description Human-readable label for the variable
56767
+ */
56768
+ label?: string | null;
56769
+ };
56744
56770
  /**
56745
56771
  * WhatsAppLanguage
56746
56772
  * @description Enum for WhatsApp template supported languages
@@ -56790,7 +56816,7 @@ export interface components {
56790
56816
  };
56791
56817
  /**
56792
56818
  * VariableMappingSchema
56793
- * @description Schema for variable mapping definition.
56819
+ * @description Schema for variable mapping definition (input).
56794
56820
  */
56795
56821
  VariableMappingSchema: {
56796
56822
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1461",
3
+ "version": "1.0.1463",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],