@scaleway/sdk-searchdb 1.6.1 → 1.7.1

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.
@@ -233,11 +233,11 @@ export type CreateDeploymentRequest = {
233
233
  /**
234
234
  * @deprecated DEPRECATED: Use node_count instead. Number of nodes.
235
235
  */
236
- nodeAmount: number;
236
+ nodeAmount?: number;
237
237
  /**
238
238
  * Number of nodes.
239
239
  */
240
- nodeCount: number;
240
+ nodeCount?: number;
241
241
  /**
242
242
  * Node type.
243
243
  */
@@ -6,10 +6,12 @@ export declare const CreateDeploymentRequest: {
6
6
  };
7
7
  nodeAmount: {
8
8
  greaterThanOrEqual: number;
9
+ ignoreEmpty: boolean;
9
10
  lessThanOrEqual: number;
10
11
  };
11
12
  nodeCount: {
12
13
  greaterThanOrEqual: number;
14
+ ignoreEmpty: boolean;
13
15
  lessThanOrEqual: number;
14
16
  };
15
17
  nodeType: {
@@ -21,10 +21,12 @@ const CreateDeploymentRequest = {
21
21
  },
22
22
  nodeAmount: {
23
23
  greaterThanOrEqual: 1,
24
+ ignoreEmpty: true,
24
25
  lessThanOrEqual: 99
25
26
  },
26
27
  nodeCount: {
27
28
  greaterThanOrEqual: 1,
29
+ ignoreEmpty: true,
28
30
  lessThanOrEqual: 99
29
31
  },
30
32
  nodeType: {
@@ -61,7 +63,7 @@ const CreateUserRequest = {
61
63
  const DeleteUserRequest = { username: {
62
64
  maxLength: 63,
63
65
  minLength: 1,
64
- pattern: /^[a-zA-Z0-9_\-]*$/
66
+ pattern: /^[a-zA-Z0-9_$-]*$/
65
67
  } };
66
68
  const ListDeploymentsRequest = {
67
69
  name: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/sdk-searchdb",
3
- "version": "1.6.1",
3
+ "version": "1.7.1",
4
4
  "description": "Scaleway SDK searchdb",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {