@epilot/erp-integration-client 0.30.0 → 0.31.0

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/dist/openapi.d.ts CHANGED
@@ -370,6 +370,10 @@ declare namespace Components {
370
370
  * If true, integration is displayed in read-only mode in the UI to discourage changes
371
371
  */
372
372
  protected?: boolean;
373
+ /**
374
+ * The manifest IDs associated with this integration
375
+ */
376
+ _manifest?: string[];
373
377
  }
374
378
  export interface CreateManagedCallUseCaseRequest {
375
379
  /**
@@ -1563,6 +1567,10 @@ declare namespace Components {
1563
1567
  * If true, integration is displayed in read-only mode in the UI to discourage changes
1564
1568
  */
1565
1569
  protected?: boolean;
1570
+ /**
1571
+ * The manifest IDs associated with this integration
1572
+ */
1573
+ _manifest?: string[];
1566
1574
  }
1567
1575
  export interface IntegrationAppMapping {
1568
1576
  /**
@@ -1630,6 +1638,10 @@ declare namespace Components {
1630
1638
  * If true, integration is displayed in read-only mode in the UI to discourage changes
1631
1639
  */
1632
1640
  protected?: boolean;
1641
+ /**
1642
+ * The manifest IDs associated with this integration
1643
+ */
1644
+ _manifest?: string[];
1633
1645
  }
1634
1646
  export interface IntegrationEntity {
1635
1647
  /**
@@ -1840,6 +1852,10 @@ declare namespace Components {
1840
1852
  * If true, integration is displayed in read-only mode in the UI to discourage changes
1841
1853
  */
1842
1854
  protected?: boolean;
1855
+ /**
1856
+ * The manifest IDs associated with this integration
1857
+ */
1858
+ _manifest?: string[];
1843
1859
  /**
1844
1860
  * All use cases belonging to this integration
1845
1861
  */
@@ -1962,9 +1978,15 @@ declare namespace Components {
1962
1978
  * URL path template with {{variable}} interpolation
1963
1979
  */
1964
1980
  path: string;
1981
+ /**
1982
+ * Custom HTTP headers for the request. Values support {{variable}} interpolation from the request payload and {{env.VAR}} references for environment variables.
1983
+ */
1965
1984
  headers?: {
1966
1985
  [name: string]: string;
1967
1986
  };
1987
+ /**
1988
+ * Query parameters for the request. Values support {{variable}} interpolation from the request payload.
1989
+ */
1968
1990
  query_params?: {
1969
1991
  [name: string]: string;
1970
1992
  };
@@ -3720,6 +3742,10 @@ declare namespace Components {
3720
3742
  * If true, integration is displayed in read-only mode in the UI to discourage changes
3721
3743
  */
3722
3744
  protected?: boolean;
3745
+ /**
3746
+ * The manifest IDs associated with this integration
3747
+ */
3748
+ _manifest?: string[];
3723
3749
  /**
3724
3750
  * Full list of use cases (declarative). This replaces ALL existing use cases.
3725
3751
  * - Use cases with an `id` field matching an existing use case will be updated
package/dist/openapi.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
4
  "title": "ERP Integration API",
5
- "version": "0.56.0",
5
+ "version": "0.58.0",
6
6
  "description": "API for integrating with ERP systems, handling tracking acknowledgments, triggering ERP processes, and processing ERP updates."
7
7
  },
8
8
  "tags": [
@@ -3196,6 +3196,13 @@
3196
3196
  "protected": {
3197
3197
  "type": "boolean",
3198
3198
  "description": "If true, integration is displayed in read-only mode in the UI to discourage changes"
3199
+ },
3200
+ "_manifest": {
3201
+ "type": "array",
3202
+ "description": "The manifest IDs associated with this integration",
3203
+ "items": {
3204
+ "type": "string"
3205
+ }
3199
3206
  }
3200
3207
  }
3201
3208
  },
@@ -5097,12 +5104,14 @@
5097
5104
  },
5098
5105
  "headers": {
5099
5106
  "type": "object",
5107
+ "description": "Custom HTTP headers for the request. Values support {{variable}} interpolation from the request payload and {{env.VAR}} references for environment variables.",
5100
5108
  "additionalProperties": {
5101
5109
  "type": "string"
5102
5110
  }
5103
5111
  },
5104
5112
  "query_params": {
5105
5113
  "type": "object",
5114
+ "description": "Query parameters for the request. Values support {{variable}} interpolation from the request payload.",
5106
5115
  "additionalProperties": {
5107
5116
  "type": "string"
5108
5117
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/erp-integration-client",
3
- "version": "0.30.0",
3
+ "version": "0.31.0",
4
4
  "description": "Client library for ePilot ERP Integration API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,7 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(pnpm install:*)"
5
- ]
6
- }
7
- }