windmill-client 1.179.1 → 1.180.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.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '/api',
6
- VERSION: '1.179.1',
6
+ VERSION: '1.180.0',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -32,6 +32,17 @@ export declare class AppService {
32
32
  value: any;
33
33
  };
34
34
  }>;
35
+ /**
36
+ * list apps for search
37
+ * @returns any app list
38
+ * @throws ApiError
39
+ */
40
+ static listSearchApp({ workspace, }: {
41
+ workspace: string;
42
+ }): CancelablePromise<Array<{
43
+ path: string;
44
+ value: any;
45
+ }>>;
35
46
  /**
36
47
  * list all available apps
37
48
  * @returns ListableApp All available apps
@@ -29,6 +29,20 @@ class AppService {
29
29
  },
30
30
  });
31
31
  }
32
+ /**
33
+ * list apps for search
34
+ * @returns any app list
35
+ * @throws ApiError
36
+ */
37
+ static listSearchApp({ workspace, }) {
38
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
39
+ method: 'GET',
40
+ url: '/w/{workspace}/apps/list_search',
41
+ path: {
42
+ 'workspace': workspace,
43
+ },
44
+ });
45
+ }
32
46
  /**
33
47
  * list all available apps
34
48
  * @returns ListableApp All available apps
@@ -37,6 +37,17 @@ export declare class FlowService {
37
37
  static listFlowPaths({ workspace, }: {
38
38
  workspace: string;
39
39
  }): CancelablePromise<Array<string>>;
40
+ /**
41
+ * list flows for search
42
+ * @returns any flow list
43
+ * @throws ApiError
44
+ */
45
+ static listSearchFlow({ workspace, }: {
46
+ workspace: string;
47
+ }): CancelablePromise<Array<{
48
+ path: string;
49
+ value: any;
50
+ }>>;
40
51
  /**
41
52
  * list all available flows
42
53
  * @returns any All available flow
@@ -43,6 +43,20 @@ class FlowService {
43
43
  },
44
44
  });
45
45
  }
46
+ /**
47
+ * list flows for search
48
+ * @returns any flow list
49
+ * @throws ApiError
50
+ */
51
+ static listSearchFlow({ workspace, }) {
52
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
53
+ method: 'GET',
54
+ url: '/w/{workspace}/flows/list_search',
55
+ path: {
56
+ 'workspace': workspace,
57
+ },
58
+ });
59
+ }
46
60
  /**
47
61
  * list all available flows
48
62
  * @returns any All available flow
@@ -116,6 +116,17 @@ export declare class ResourceService {
116
116
  */
117
117
  resourceTypeExclude?: string;
118
118
  }): CancelablePromise<Array<ListableResource>>;
119
+ /**
120
+ * list resources for search
121
+ * @returns any resource list
122
+ * @throws ApiError
123
+ */
124
+ static listSearchResource({ workspace, }: {
125
+ workspace: string;
126
+ }): CancelablePromise<Array<{
127
+ path: string;
128
+ value: any;
129
+ }>>;
119
130
  /**
120
131
  * list resource names
121
132
  * @returns any resource list names
@@ -152,6 +152,20 @@ class ResourceService {
152
152
  },
153
153
  });
154
154
  }
155
+ /**
156
+ * list resources for search
157
+ * @returns any resource list
158
+ * @throws ApiError
159
+ */
160
+ static listSearchResource({ workspace, }) {
161
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
162
+ method: 'GET',
163
+ url: '/w/{workspace}/resources/list_search',
164
+ path: {
165
+ 'workspace': workspace,
166
+ },
167
+ });
168
+ }
155
169
  /**
156
170
  * list resource names
157
171
  * @returns any resource list names
@@ -63,6 +63,17 @@ export declare class ScriptService {
63
63
  }): CancelablePromise<Array<{
64
64
  id: string;
65
65
  }>>;
66
+ /**
67
+ * list scripts for search
68
+ * @returns any script list
69
+ * @throws ApiError
70
+ */
71
+ static listSearchScript({ workspace, }: {
72
+ workspace: string;
73
+ }): CancelablePromise<Array<{
74
+ path: string;
75
+ content: string;
76
+ }>>;
66
77
  /**
67
78
  * list all available scripts
68
79
  * @returns Script All available scripts
@@ -59,6 +59,20 @@ class ScriptService {
59
59
  },
60
60
  });
61
61
  }
62
+ /**
63
+ * list scripts for search
64
+ * @returns any script list
65
+ * @throws ApiError
66
+ */
67
+ static listSearchScript({ workspace, }) {
68
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
69
+ method: 'GET',
70
+ url: '/w/{workspace}/scripts/list_search',
71
+ path: {
72
+ 'workspace': workspace,
73
+ },
74
+ });
75
+ }
62
76
  /**
63
77
  * list all available scripts
64
78
  * @returns Script All available scripts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.179.1",
4
+ "version": "1.180.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {