@epilot/app-client 0.9.5 → 0.9.6

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
@@ -1229,11 +1229,15 @@ declare namespace Components {
1229
1229
  configuration: PortalExtensionConfig;
1230
1230
  }
1231
1231
  export interface PortalExtensionConfig {
1232
+ /**
1233
+ * Identifier of the extension. Should not change between updates.
1234
+ */
1235
+ id?: string; // ^[a-zA-Z0-9_-]+$
1232
1236
  hooks?: ({
1233
1237
  /**
1234
1238
  * Identifier of the hook. Should not change between updates.
1235
1239
  */
1236
- id?: string;
1240
+ id?: string; // ^[a-zA-Z0-9_-]+$
1237
1241
  name?: TranslatedString;
1238
1242
  } & (/**
1239
1243
  * Hook that replaces the built-in registration identifiers check. This hook makes a POST call whenever a user is trying to register to find the corresponding contact. The expected response to the call is:
@@ -1279,7 +1283,7 @@ declare namespace Components {
1279
1283
  /**
1280
1284
  * Identifier of the link. Should not change between updates.
1281
1285
  */
1282
- id: string;
1286
+ id: string; // ^[a-zA-Z0-9_-]+$
1283
1287
  name: TranslatedString;
1284
1288
  description?: TranslatedString;
1285
1289
  type: "seamless";
@@ -1308,7 +1312,7 @@ declare namespace Components {
1308
1312
  /**
1309
1313
  * Identifier of the hook. Should not change between updates.
1310
1314
  */
1311
- id?: string;
1315
+ id?: string; // ^[a-zA-Z0-9_-]+$
1312
1316
  name?: TranslatedString;
1313
1317
  }
1314
1318
  /**
@@ -1615,7 +1619,7 @@ declare namespace Components {
1615
1619
  /**
1616
1620
  * Identifier of the link. Should not change between updates.
1617
1621
  */
1618
- id: string;
1622
+ id: string; // ^[a-zA-Z0-9_-]+$
1619
1623
  name: TranslatedString;
1620
1624
  description?: TranslatedString;
1621
1625
  type: "seamless";
package/dist/openapi.json CHANGED
@@ -2105,6 +2105,11 @@
2105
2105
  "PortalExtensionConfig": {
2106
2106
  "type": "object",
2107
2107
  "properties": {
2108
+ "id": {
2109
+ "type": "string",
2110
+ "pattern": "^[a-zA-Z0-9_-]+$",
2111
+ "description": "Identifier of the extension. Should not change between updates."
2112
+ },
2108
2113
  "hooks": {
2109
2114
  "type": "array",
2110
2115
  "items": {
@@ -2155,6 +2160,7 @@
2155
2160
  "properties": {
2156
2161
  "id": {
2157
2162
  "type": "string",
2163
+ "pattern": "^[a-zA-Z0-9_-]+$",
2158
2164
  "description": "Identifier of the hook. Should not change between updates."
2159
2165
  },
2160
2166
  "name": {
@@ -2261,8 +2267,7 @@
2261
2267
  },
2262
2268
  "required": [
2263
2269
  "url",
2264
- "headers",
2265
- "result"
2270
+ "headers"
2266
2271
  ],
2267
2272
  "additionalProperties": false
2268
2273
  },
@@ -2655,6 +2660,7 @@
2655
2660
  "properties": {
2656
2661
  "id": {
2657
2662
  "type": "string",
2663
+ "pattern": "^[a-zA-Z0-9_-]+$",
2658
2664
  "description": "Identifier of the link. Should not change between updates."
2659
2665
  },
2660
2666
  "name": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/app-client",
3
- "version": "0.9.5",
3
+ "version": "0.9.6",
4
4
  "description": "JavaScript client library for the epilot App API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",