windmill-client 1.270.3 → 1.271.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.270.3',
6
+ VERSION: '1.271.0',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -68,4 +68,15 @@ export declare class SettingService {
68
68
  * @throws ApiError
69
69
  */
70
70
  static sendStats(): CancelablePromise<string>;
71
+ /**
72
+ * test metadata
73
+ * @returns string status
74
+ * @throws ApiError
75
+ */
76
+ static testMetadata({ requestBody, }: {
77
+ /**
78
+ * test metadata
79
+ */
80
+ requestBody: string;
81
+ }): CancelablePromise<string>;
71
82
  }
@@ -82,5 +82,18 @@ class SettingService {
82
82
  url: '/settings/send_stats',
83
83
  });
84
84
  }
85
+ /**
86
+ * test metadata
87
+ * @returns string status
88
+ * @throws ApiError
89
+ */
90
+ static testMetadata({ requestBody, }) {
91
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
92
+ method: 'POST',
93
+ url: '/saml/test_metadata',
94
+ body: requestBody,
95
+ mediaType: 'application/json',
96
+ });
97
+ }
85
98
  }
86
99
  exports.SettingService = SettingService;
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.270.3",
4
+ "version": "1.271.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {