@pipe0/client 0.0.17 → 0.0.19

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @pipe0/client
2
2
 
3
+ ## 0.0.19
4
+
5
+ ### Patch Changes
6
+
7
+ - 1db65e6: Make configs optional
8
+
9
+ ## 0.0.18
10
+
11
+ ### Patch Changes
12
+
13
+ - Update pipe config
14
+
3
15
  ## 0.0.17
4
16
 
5
17
  ### Patch Changes
@@ -1141,7 +1141,7 @@ export interface components {
1141
1141
  connection: string;
1142
1142
  }[];
1143
1143
  } | null;
1144
- config: {
1144
+ config?: {
1145
1145
  input_fields?: {
1146
1146
  /**
1147
1147
  * @default {
@@ -2175,7 +2175,7 @@ export interface components {
2175
2175
  connection: string;
2176
2176
  }[];
2177
2177
  } | null;
2178
- config: {
2178
+ config?: {
2179
2179
  input_fields?: {
2180
2180
  /**
2181
2181
  * @default {
@@ -2799,7 +2799,7 @@ export interface components {
2799
2799
  connection: string;
2800
2800
  }[];
2801
2801
  } | null;
2802
- config: {
2802
+ config?: {
2803
2803
  limit: number;
2804
2804
  input_fields?: {
2805
2805
  /**
@@ -2865,7 +2865,7 @@ export interface components {
2865
2865
  connection: string;
2866
2866
  }[];
2867
2867
  } | null;
2868
- config: {
2868
+ config?: {
2869
2869
  input_fields?: {
2870
2870
  /**
2871
2871
  * @default {
@@ -3263,7 +3263,7 @@ export interface components {
3263
3263
  connection: string;
3264
3264
  }[];
3265
3265
  } | null;
3266
- config: {
3266
+ config?: {
3267
3267
  input_fields?: {
3268
3268
  /**
3269
3269
  * @default {
@@ -4261,7 +4261,7 @@ export interface components {
4261
4261
  connection: string;
4262
4262
  }[];
4263
4263
  } | null;
4264
- config: {
4264
+ config?: {
4265
4265
  input_fields?: {
4266
4266
  /**
4267
4267
  * @default {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipe0/client",
3
- "version": "0.0.17",
3
+ "version": "0.0.19",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "type": "module",