windmill-cli 1.754.0 → 1.755.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.
Files changed (2) hide show
  1. package/esm/main.js +113 -2
  2. package/package.json +1 -1
package/esm/main.js CHANGED
@@ -16784,7 +16784,7 @@ var init_OpenAPI = __esm(() => {
16784
16784
  PASSWORD: undefined,
16785
16785
  TOKEN: getEnv3("WM_TOKEN"),
16786
16786
  USERNAME: undefined,
16787
- VERSION: "1.754.0",
16787
+ VERSION: "1.755.0",
16788
16788
  WITH_CREDENTIALS: true,
16789
16789
  interceptors: {
16790
16790
  request: new Interceptors,
@@ -17810,6 +17810,12 @@ __export(exports_services_gen, {
17810
17810
  archiveScriptByPath: () => archiveScriptByPath,
17811
17811
  archiveScriptByHash: () => archiveScriptByHash,
17812
17812
  archiveFlowByPath: () => archiveFlowByPath,
17813
+ appLoadTableCount: () => appLoadTableCount,
17814
+ appLoadParquetPreview: () => appLoadParquetPreview,
17815
+ appLoadFilePreview: () => appLoadFilePreview,
17816
+ appLoadFileMetadata: () => appLoadFileMetadata,
17817
+ appLoadCsvPreview: () => appLoadCsvPreview,
17818
+ appDownloadS3ParquetFileAsCsv: () => appDownloadS3ParquetFileAsCsv,
17813
17819
  addUserToInstanceGroup: () => addUserToInstanceGroup,
17814
17820
  addUserToGroup: () => addUserToGroup,
17815
17821
  addUser: () => addUser,
@@ -21876,6 +21882,105 @@ var backendVersion = () => {
21876
21882
  delete_token: data3.deleteToken
21877
21883
  }
21878
21884
  });
21885
+ }, appLoadFileMetadata = (data3) => {
21886
+ return request(OpenAPI, {
21887
+ method: "GET",
21888
+ url: "/w/{workspace}/apps_u/load_file_metadata/{path}",
21889
+ path: {
21890
+ workspace: data3.workspace,
21891
+ path: data3.path
21892
+ },
21893
+ query: {
21894
+ file_key: data3.fileKey,
21895
+ storage: data3.storage
21896
+ }
21897
+ });
21898
+ }, appLoadFilePreview = (data3) => {
21899
+ return request(OpenAPI, {
21900
+ method: "GET",
21901
+ url: "/w/{workspace}/apps_u/load_file_preview/{path}",
21902
+ path: {
21903
+ workspace: data3.workspace,
21904
+ path: data3.path
21905
+ },
21906
+ query: {
21907
+ file_key: data3.fileKey,
21908
+ file_size_in_bytes: data3.fileSizeInBytes,
21909
+ file_mime_type: data3.fileMimeType,
21910
+ csv_separator: data3.csvSeparator,
21911
+ csv_has_header: data3.csvHasHeader,
21912
+ read_bytes_from: data3.readBytesFrom,
21913
+ read_bytes_length: data3.readBytesLength,
21914
+ storage: data3.storage
21915
+ }
21916
+ });
21917
+ }, appLoadParquetPreview = (data3) => {
21918
+ return request(OpenAPI, {
21919
+ method: "GET",
21920
+ url: "/w/{workspace}/apps_u/load_parquet_preview/{path}",
21921
+ path: {
21922
+ workspace: data3.workspace,
21923
+ path: data3.path
21924
+ },
21925
+ query: {
21926
+ file_key: data3.fileKey,
21927
+ offset: data3.offset,
21928
+ limit: data3.limit,
21929
+ sort_col: data3.sortCol,
21930
+ sort_desc: data3.sortDesc,
21931
+ search_col: data3.searchCol,
21932
+ search_term: data3.searchTerm,
21933
+ storage: data3.storage
21934
+ }
21935
+ });
21936
+ }, appLoadCsvPreview = (data3) => {
21937
+ return request(OpenAPI, {
21938
+ method: "GET",
21939
+ url: "/w/{workspace}/apps_u/load_csv_preview/{path}",
21940
+ path: {
21941
+ workspace: data3.workspace,
21942
+ path: data3.path
21943
+ },
21944
+ query: {
21945
+ file_key: data3.fileKey,
21946
+ offset: data3.offset,
21947
+ limit: data3.limit,
21948
+ sort_col: data3.sortCol,
21949
+ sort_desc: data3.sortDesc,
21950
+ search_col: data3.searchCol,
21951
+ search_term: data3.searchTerm,
21952
+ storage: data3.storage,
21953
+ csv_separator: data3.csvSeparator
21954
+ }
21955
+ });
21956
+ }, appLoadTableCount = (data3) => {
21957
+ return request(OpenAPI, {
21958
+ method: "GET",
21959
+ url: "/w/{workspace}/apps_u/load_table_count/{path}",
21960
+ path: {
21961
+ workspace: data3.workspace,
21962
+ path: data3.path
21963
+ },
21964
+ query: {
21965
+ file_key: data3.fileKey,
21966
+ search_col: data3.searchCol,
21967
+ search_term: data3.searchTerm,
21968
+ storage: data3.storage
21969
+ }
21970
+ });
21971
+ }, appDownloadS3ParquetFileAsCsv = (data3) => {
21972
+ return request(OpenAPI, {
21973
+ method: "GET",
21974
+ url: "/w/{workspace}/apps_u/download_s3_parquet_file_as_csv/{path}",
21975
+ path: {
21976
+ workspace: data3.workspace,
21977
+ path: data3.path
21978
+ },
21979
+ query: {
21980
+ file_key: data3.fileKey,
21981
+ storage: data3.storage
21982
+ }
21983
+ });
21879
21984
  }, runFlowByPath = (data3) => {
21880
21985
  return request(OpenAPI, {
21881
21986
  method: "POST",
@@ -26430,6 +26535,12 @@ __export(exports_gen, {
26430
26535
  archiveScriptByPath: () => archiveScriptByPath,
26431
26536
  archiveScriptByHash: () => archiveScriptByHash,
26432
26537
  archiveFlowByPath: () => archiveFlowByPath,
26538
+ appLoadTableCount: () => appLoadTableCount,
26539
+ appLoadParquetPreview: () => appLoadParquetPreview,
26540
+ appLoadFilePreview: () => appLoadFilePreview,
26541
+ appLoadFileMetadata: () => appLoadFileMetadata,
26542
+ appLoadCsvPreview: () => appLoadCsvPreview,
26543
+ appDownloadS3ParquetFileAsCsv: () => appDownloadS3ParquetFileAsCsv,
26433
26544
  addUserToInstanceGroup: () => addUserToInstanceGroup,
26434
26545
  addUserToGroup: () => addUserToGroup,
26435
26546
  addUser: () => addUser,
@@ -26555,7 +26666,7 @@ var init_auth = __esm(async () => {
26555
26666
  });
26556
26667
 
26557
26668
  // src/core/constants.ts
26558
- var WM_FORK_PREFIX = "wm-fork", VERSION = "1.754.0";
26669
+ var WM_FORK_PREFIX = "wm-fork", VERSION = "1.755.0";
26559
26670
 
26560
26671
  // src/utils/git.ts
26561
26672
  var exports_git = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.754.0",
3
+ "version": "1.755.0",
4
4
  "description": "CLI for Windmill",
5
5
  "license": "Apache 2.0",
6
6
  "type": "module",