windmill-client 1.760.0 → 1.760.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.
- package/dist/core/OpenAPI.mjs +1 -1
- package/dist/index.js +31 -7
- package/dist/services.gen.d.ts +12 -0
- package/dist/services.gen.mjs +30 -6
- package/dist/types.gen.d.ts +104 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -126,7 +126,7 @@ const OpenAPI = {
|
|
|
126
126
|
PASSWORD: void 0,
|
|
127
127
|
TOKEN: getEnv$1("WM_TOKEN"),
|
|
128
128
|
USERNAME: void 0,
|
|
129
|
-
VERSION: "1.760.
|
|
129
|
+
VERSION: "1.760.1",
|
|
130
130
|
WITH_CREDENTIALS: true,
|
|
131
131
|
interceptors: {
|
|
132
132
|
request: new Interceptors(),
|
|
@@ -6510,6 +6510,8 @@ var AppService = class {
|
|
|
6510
6510
|
* @param data.path
|
|
6511
6511
|
* @param data.fileKey
|
|
6512
6512
|
* @param data.storage
|
|
6513
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6514
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6513
6515
|
* @returns WindmillFileMetadata FileMetadata
|
|
6514
6516
|
* @throws ApiError
|
|
6515
6517
|
*/
|
|
@@ -6523,7 +6525,9 @@ var AppService = class {
|
|
|
6523
6525
|
},
|
|
6524
6526
|
query: {
|
|
6525
6527
|
file_key: data.fileKey,
|
|
6526
|
-
storage: data.storage
|
|
6528
|
+
storage: data.storage,
|
|
6529
|
+
sig: data.sig,
|
|
6530
|
+
exp: data.exp
|
|
6527
6531
|
}
|
|
6528
6532
|
});
|
|
6529
6533
|
}
|
|
@@ -6540,6 +6544,8 @@ var AppService = class {
|
|
|
6540
6544
|
* @param data.csvSeparator
|
|
6541
6545
|
* @param data.csvHasHeader
|
|
6542
6546
|
* @param data.storage
|
|
6547
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6548
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6543
6549
|
* @returns WindmillFilePreview FilePreview
|
|
6544
6550
|
* @throws ApiError
|
|
6545
6551
|
*/
|
|
@@ -6559,7 +6565,9 @@ var AppService = class {
|
|
|
6559
6565
|
csv_has_header: data.csvHasHeader,
|
|
6560
6566
|
read_bytes_from: data.readBytesFrom,
|
|
6561
6567
|
read_bytes_length: data.readBytesLength,
|
|
6562
|
-
storage: data.storage
|
|
6568
|
+
storage: data.storage,
|
|
6569
|
+
sig: data.sig,
|
|
6570
|
+
exp: data.exp
|
|
6563
6571
|
}
|
|
6564
6572
|
});
|
|
6565
6573
|
}
|
|
@@ -6576,6 +6584,8 @@ var AppService = class {
|
|
|
6576
6584
|
* @param data.searchCol
|
|
6577
6585
|
* @param data.searchTerm
|
|
6578
6586
|
* @param data.storage
|
|
6587
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6588
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6579
6589
|
* @returns unknown Parquet Preview
|
|
6580
6590
|
* @throws ApiError
|
|
6581
6591
|
*/
|
|
@@ -6595,7 +6605,9 @@ var AppService = class {
|
|
|
6595
6605
|
sort_desc: data.sortDesc,
|
|
6596
6606
|
search_col: data.searchCol,
|
|
6597
6607
|
search_term: data.searchTerm,
|
|
6598
|
-
storage: data.storage
|
|
6608
|
+
storage: data.storage,
|
|
6609
|
+
sig: data.sig,
|
|
6610
|
+
exp: data.exp
|
|
6599
6611
|
}
|
|
6600
6612
|
});
|
|
6601
6613
|
}
|
|
@@ -6613,6 +6625,8 @@ var AppService = class {
|
|
|
6613
6625
|
* @param data.searchTerm
|
|
6614
6626
|
* @param data.storage
|
|
6615
6627
|
* @param data.csvSeparator
|
|
6628
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6629
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6616
6630
|
* @returns unknown Csv Preview
|
|
6617
6631
|
* @throws ApiError
|
|
6618
6632
|
*/
|
|
@@ -6633,7 +6647,9 @@ var AppService = class {
|
|
|
6633
6647
|
search_col: data.searchCol,
|
|
6634
6648
|
search_term: data.searchTerm,
|
|
6635
6649
|
storage: data.storage,
|
|
6636
|
-
csv_separator: data.csvSeparator
|
|
6650
|
+
csv_separator: data.csvSeparator,
|
|
6651
|
+
sig: data.sig,
|
|
6652
|
+
exp: data.exp
|
|
6637
6653
|
}
|
|
6638
6654
|
});
|
|
6639
6655
|
}
|
|
@@ -6646,6 +6662,8 @@ var AppService = class {
|
|
|
6646
6662
|
* @param data.searchCol
|
|
6647
6663
|
* @param data.searchTerm
|
|
6648
6664
|
* @param data.storage
|
|
6665
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6666
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6649
6667
|
* @returns unknown Table count
|
|
6650
6668
|
* @throws ApiError
|
|
6651
6669
|
*/
|
|
@@ -6661,7 +6679,9 @@ var AppService = class {
|
|
|
6661
6679
|
file_key: data.fileKey,
|
|
6662
6680
|
search_col: data.searchCol,
|
|
6663
6681
|
search_term: data.searchTerm,
|
|
6664
|
-
storage: data.storage
|
|
6682
|
+
storage: data.storage,
|
|
6683
|
+
sig: data.sig,
|
|
6684
|
+
exp: data.exp
|
|
6665
6685
|
}
|
|
6666
6686
|
});
|
|
6667
6687
|
}
|
|
@@ -6672,6 +6692,8 @@ var AppService = class {
|
|
|
6672
6692
|
* @param data.path
|
|
6673
6693
|
* @param data.fileKey
|
|
6674
6694
|
* @param data.storage
|
|
6695
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6696
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6675
6697
|
* @returns string The downloaded file
|
|
6676
6698
|
* @throws ApiError
|
|
6677
6699
|
*/
|
|
@@ -6685,7 +6707,9 @@ var AppService = class {
|
|
|
6685
6707
|
},
|
|
6686
6708
|
query: {
|
|
6687
6709
|
file_key: data.fileKey,
|
|
6688
|
-
storage: data.storage
|
|
6710
|
+
storage: data.storage,
|
|
6711
|
+
sig: data.sig,
|
|
6712
|
+
exp: data.exp
|
|
6689
6713
|
}
|
|
6690
6714
|
});
|
|
6691
6715
|
}
|
package/dist/services.gen.d.ts
CHANGED
|
@@ -3274,6 +3274,8 @@ export declare class AppService {
|
|
|
3274
3274
|
* @param data.path
|
|
3275
3275
|
* @param data.fileKey
|
|
3276
3276
|
* @param data.storage
|
|
3277
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
3278
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
3277
3279
|
* @returns WindmillFileMetadata FileMetadata
|
|
3278
3280
|
* @throws ApiError
|
|
3279
3281
|
*/
|
|
@@ -3291,6 +3293,8 @@ export declare class AppService {
|
|
|
3291
3293
|
* @param data.csvSeparator
|
|
3292
3294
|
* @param data.csvHasHeader
|
|
3293
3295
|
* @param data.storage
|
|
3296
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
3297
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
3294
3298
|
* @returns WindmillFilePreview FilePreview
|
|
3295
3299
|
* @throws ApiError
|
|
3296
3300
|
*/
|
|
@@ -3308,6 +3312,8 @@ export declare class AppService {
|
|
|
3308
3312
|
* @param data.searchCol
|
|
3309
3313
|
* @param data.searchTerm
|
|
3310
3314
|
* @param data.storage
|
|
3315
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
3316
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
3311
3317
|
* @returns unknown Parquet Preview
|
|
3312
3318
|
* @throws ApiError
|
|
3313
3319
|
*/
|
|
@@ -3326,6 +3332,8 @@ export declare class AppService {
|
|
|
3326
3332
|
* @param data.searchTerm
|
|
3327
3333
|
* @param data.storage
|
|
3328
3334
|
* @param data.csvSeparator
|
|
3335
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
3336
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
3329
3337
|
* @returns unknown Csv Preview
|
|
3330
3338
|
* @throws ApiError
|
|
3331
3339
|
*/
|
|
@@ -3339,6 +3347,8 @@ export declare class AppService {
|
|
|
3339
3347
|
* @param data.searchCol
|
|
3340
3348
|
* @param data.searchTerm
|
|
3341
3349
|
* @param data.storage
|
|
3350
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
3351
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
3342
3352
|
* @returns unknown Table count
|
|
3343
3353
|
* @throws ApiError
|
|
3344
3354
|
*/
|
|
@@ -3350,6 +3360,8 @@ export declare class AppService {
|
|
|
3350
3360
|
* @param data.path
|
|
3351
3361
|
* @param data.fileKey
|
|
3352
3362
|
* @param data.storage
|
|
3363
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
3364
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
3353
3365
|
* @returns string The downloaded file
|
|
3354
3366
|
* @throws ApiError
|
|
3355
3367
|
*/
|
package/dist/services.gen.mjs
CHANGED
|
@@ -6142,6 +6142,8 @@ var AppService = class {
|
|
|
6142
6142
|
* @param data.path
|
|
6143
6143
|
* @param data.fileKey
|
|
6144
6144
|
* @param data.storage
|
|
6145
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6146
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6145
6147
|
* @returns WindmillFileMetadata FileMetadata
|
|
6146
6148
|
* @throws ApiError
|
|
6147
6149
|
*/
|
|
@@ -6155,7 +6157,9 @@ var AppService = class {
|
|
|
6155
6157
|
},
|
|
6156
6158
|
query: {
|
|
6157
6159
|
file_key: data.fileKey,
|
|
6158
|
-
storage: data.storage
|
|
6160
|
+
storage: data.storage,
|
|
6161
|
+
sig: data.sig,
|
|
6162
|
+
exp: data.exp
|
|
6159
6163
|
}
|
|
6160
6164
|
});
|
|
6161
6165
|
}
|
|
@@ -6172,6 +6176,8 @@ var AppService = class {
|
|
|
6172
6176
|
* @param data.csvSeparator
|
|
6173
6177
|
* @param data.csvHasHeader
|
|
6174
6178
|
* @param data.storage
|
|
6179
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6180
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6175
6181
|
* @returns WindmillFilePreview FilePreview
|
|
6176
6182
|
* @throws ApiError
|
|
6177
6183
|
*/
|
|
@@ -6191,7 +6197,9 @@ var AppService = class {
|
|
|
6191
6197
|
csv_has_header: data.csvHasHeader,
|
|
6192
6198
|
read_bytes_from: data.readBytesFrom,
|
|
6193
6199
|
read_bytes_length: data.readBytesLength,
|
|
6194
|
-
storage: data.storage
|
|
6200
|
+
storage: data.storage,
|
|
6201
|
+
sig: data.sig,
|
|
6202
|
+
exp: data.exp
|
|
6195
6203
|
}
|
|
6196
6204
|
});
|
|
6197
6205
|
}
|
|
@@ -6208,6 +6216,8 @@ var AppService = class {
|
|
|
6208
6216
|
* @param data.searchCol
|
|
6209
6217
|
* @param data.searchTerm
|
|
6210
6218
|
* @param data.storage
|
|
6219
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6220
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6211
6221
|
* @returns unknown Parquet Preview
|
|
6212
6222
|
* @throws ApiError
|
|
6213
6223
|
*/
|
|
@@ -6227,7 +6237,9 @@ var AppService = class {
|
|
|
6227
6237
|
sort_desc: data.sortDesc,
|
|
6228
6238
|
search_col: data.searchCol,
|
|
6229
6239
|
search_term: data.searchTerm,
|
|
6230
|
-
storage: data.storage
|
|
6240
|
+
storage: data.storage,
|
|
6241
|
+
sig: data.sig,
|
|
6242
|
+
exp: data.exp
|
|
6231
6243
|
}
|
|
6232
6244
|
});
|
|
6233
6245
|
}
|
|
@@ -6245,6 +6257,8 @@ var AppService = class {
|
|
|
6245
6257
|
* @param data.searchTerm
|
|
6246
6258
|
* @param data.storage
|
|
6247
6259
|
* @param data.csvSeparator
|
|
6260
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6261
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6248
6262
|
* @returns unknown Csv Preview
|
|
6249
6263
|
* @throws ApiError
|
|
6250
6264
|
*/
|
|
@@ -6265,7 +6279,9 @@ var AppService = class {
|
|
|
6265
6279
|
search_col: data.searchCol,
|
|
6266
6280
|
search_term: data.searchTerm,
|
|
6267
6281
|
storage: data.storage,
|
|
6268
|
-
csv_separator: data.csvSeparator
|
|
6282
|
+
csv_separator: data.csvSeparator,
|
|
6283
|
+
sig: data.sig,
|
|
6284
|
+
exp: data.exp
|
|
6269
6285
|
}
|
|
6270
6286
|
});
|
|
6271
6287
|
}
|
|
@@ -6278,6 +6294,8 @@ var AppService = class {
|
|
|
6278
6294
|
* @param data.searchCol
|
|
6279
6295
|
* @param data.searchTerm
|
|
6280
6296
|
* @param data.storage
|
|
6297
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6298
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6281
6299
|
* @returns unknown Table count
|
|
6282
6300
|
* @throws ApiError
|
|
6283
6301
|
*/
|
|
@@ -6293,7 +6311,9 @@ var AppService = class {
|
|
|
6293
6311
|
file_key: data.fileKey,
|
|
6294
6312
|
search_col: data.searchCol,
|
|
6295
6313
|
search_term: data.searchTerm,
|
|
6296
|
-
storage: data.storage
|
|
6314
|
+
storage: data.storage,
|
|
6315
|
+
sig: data.sig,
|
|
6316
|
+
exp: data.exp
|
|
6297
6317
|
}
|
|
6298
6318
|
});
|
|
6299
6319
|
}
|
|
@@ -6304,6 +6324,8 @@ var AppService = class {
|
|
|
6304
6324
|
* @param data.path
|
|
6305
6325
|
* @param data.fileKey
|
|
6306
6326
|
* @param data.storage
|
|
6327
|
+
* @param data.sig HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
6328
|
+
* @param data.exp Expiry timestamp of a presigned S3 object signature
|
|
6307
6329
|
* @returns string The downloaded file
|
|
6308
6330
|
* @throws ApiError
|
|
6309
6331
|
*/
|
|
@@ -6317,7 +6339,9 @@ var AppService = class {
|
|
|
6317
6339
|
},
|
|
6318
6340
|
query: {
|
|
6319
6341
|
file_key: data.fileKey,
|
|
6320
|
-
storage: data.storage
|
|
6342
|
+
storage: data.storage,
|
|
6343
|
+
sig: data.sig,
|
|
6344
|
+
exp: data.exp
|
|
6321
6345
|
}
|
|
6322
6346
|
});
|
|
6323
6347
|
}
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -5879,6 +5879,14 @@ export type ParameterScriptPath = string;
|
|
|
5879
5879
|
export type ParameterScriptHash = string;
|
|
5880
5880
|
export type ParameterJobId = string;
|
|
5881
5881
|
export type ParameterPath = string;
|
|
5882
|
+
/**
|
|
5883
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
5884
|
+
*/
|
|
5885
|
+
export type ParameterS3Sig = string;
|
|
5886
|
+
/**
|
|
5887
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
5888
|
+
*/
|
|
5889
|
+
export type ParameterS3Exp = string;
|
|
5882
5890
|
export type ParameterCustomPath = string;
|
|
5883
5891
|
export type ParameterPathId = number;
|
|
5884
5892
|
export type ParameterPathVersion = number;
|
|
@@ -9422,8 +9430,16 @@ export type DeleteS3FileFromAppData = {
|
|
|
9422
9430
|
};
|
|
9423
9431
|
export type DeleteS3FileFromAppResponse = string;
|
|
9424
9432
|
export type AppLoadFileMetadataData = {
|
|
9433
|
+
/**
|
|
9434
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
9435
|
+
*/
|
|
9436
|
+
exp?: string;
|
|
9425
9437
|
fileKey: string;
|
|
9426
9438
|
path: string;
|
|
9439
|
+
/**
|
|
9440
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
9441
|
+
*/
|
|
9442
|
+
sig?: string;
|
|
9427
9443
|
storage?: string;
|
|
9428
9444
|
workspace: string;
|
|
9429
9445
|
};
|
|
@@ -9431,23 +9447,39 @@ export type AppLoadFileMetadataResponse = WindmillFileMetadata;
|
|
|
9431
9447
|
export type AppLoadFilePreviewData = {
|
|
9432
9448
|
csvHasHeader?: boolean;
|
|
9433
9449
|
csvSeparator?: string;
|
|
9450
|
+
/**
|
|
9451
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
9452
|
+
*/
|
|
9453
|
+
exp?: string;
|
|
9434
9454
|
fileKey: string;
|
|
9435
9455
|
fileMimeType?: string;
|
|
9436
9456
|
fileSizeInBytes?: number;
|
|
9437
9457
|
path: string;
|
|
9438
9458
|
readBytesFrom: number;
|
|
9439
9459
|
readBytesLength: number;
|
|
9460
|
+
/**
|
|
9461
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
9462
|
+
*/
|
|
9463
|
+
sig?: string;
|
|
9440
9464
|
storage?: string;
|
|
9441
9465
|
workspace: string;
|
|
9442
9466
|
};
|
|
9443
9467
|
export type AppLoadFilePreviewResponse = WindmillFilePreview;
|
|
9444
9468
|
export type AppLoadParquetPreviewData = {
|
|
9469
|
+
/**
|
|
9470
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
9471
|
+
*/
|
|
9472
|
+
exp?: string;
|
|
9445
9473
|
fileKey: string;
|
|
9446
9474
|
limit?: number;
|
|
9447
9475
|
offset?: number;
|
|
9448
9476
|
path: string;
|
|
9449
9477
|
searchCol?: string;
|
|
9450
9478
|
searchTerm?: string;
|
|
9479
|
+
/**
|
|
9480
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
9481
|
+
*/
|
|
9482
|
+
sig?: string;
|
|
9451
9483
|
sortCol?: string;
|
|
9452
9484
|
sortDesc?: boolean;
|
|
9453
9485
|
storage?: string;
|
|
@@ -9456,12 +9488,20 @@ export type AppLoadParquetPreviewData = {
|
|
|
9456
9488
|
export type AppLoadParquetPreviewResponse = unknown;
|
|
9457
9489
|
export type AppLoadCsvPreviewData = {
|
|
9458
9490
|
csvSeparator?: string;
|
|
9491
|
+
/**
|
|
9492
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
9493
|
+
*/
|
|
9494
|
+
exp?: string;
|
|
9459
9495
|
fileKey: string;
|
|
9460
9496
|
limit?: number;
|
|
9461
9497
|
offset?: number;
|
|
9462
9498
|
path: string;
|
|
9463
9499
|
searchCol?: string;
|
|
9464
9500
|
searchTerm?: string;
|
|
9501
|
+
/**
|
|
9502
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
9503
|
+
*/
|
|
9504
|
+
sig?: string;
|
|
9465
9505
|
sortCol?: string;
|
|
9466
9506
|
sortDesc?: boolean;
|
|
9467
9507
|
storage?: string;
|
|
@@ -9469,10 +9509,18 @@ export type AppLoadCsvPreviewData = {
|
|
|
9469
9509
|
};
|
|
9470
9510
|
export type AppLoadCsvPreviewResponse = unknown;
|
|
9471
9511
|
export type AppLoadTableCountData = {
|
|
9512
|
+
/**
|
|
9513
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
9514
|
+
*/
|
|
9515
|
+
exp?: string;
|
|
9472
9516
|
fileKey: string;
|
|
9473
9517
|
path: string;
|
|
9474
9518
|
searchCol?: string;
|
|
9475
9519
|
searchTerm?: string;
|
|
9520
|
+
/**
|
|
9521
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
9522
|
+
*/
|
|
9523
|
+
sig?: string;
|
|
9476
9524
|
storage?: string;
|
|
9477
9525
|
workspace: string;
|
|
9478
9526
|
};
|
|
@@ -9480,8 +9528,16 @@ export type AppLoadTableCountResponse = {
|
|
|
9480
9528
|
count?: number;
|
|
9481
9529
|
};
|
|
9482
9530
|
export type AppDownloadS3ParquetFileAsCsvData = {
|
|
9531
|
+
/**
|
|
9532
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
9533
|
+
*/
|
|
9534
|
+
exp?: string;
|
|
9483
9535
|
fileKey: string;
|
|
9484
9536
|
path: string;
|
|
9537
|
+
/**
|
|
9538
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
9539
|
+
*/
|
|
9540
|
+
sig?: string;
|
|
9485
9541
|
storage?: string;
|
|
9486
9542
|
workspace: string;
|
|
9487
9543
|
};
|
|
@@ -21909,8 +21965,16 @@ export type $OpenApiTs = {
|
|
|
21909
21965
|
'/w/{workspace}/apps_u/load_file_metadata/{path}': {
|
|
21910
21966
|
get: {
|
|
21911
21967
|
req: {
|
|
21968
|
+
/**
|
|
21969
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
21970
|
+
*/
|
|
21971
|
+
exp?: string;
|
|
21912
21972
|
fileKey: string;
|
|
21913
21973
|
path: string;
|
|
21974
|
+
/**
|
|
21975
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
21976
|
+
*/
|
|
21977
|
+
sig?: string;
|
|
21914
21978
|
storage?: string;
|
|
21915
21979
|
workspace: string;
|
|
21916
21980
|
};
|
|
@@ -21927,12 +21991,20 @@ export type $OpenApiTs = {
|
|
|
21927
21991
|
req: {
|
|
21928
21992
|
csvHasHeader?: boolean;
|
|
21929
21993
|
csvSeparator?: string;
|
|
21994
|
+
/**
|
|
21995
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
21996
|
+
*/
|
|
21997
|
+
exp?: string;
|
|
21930
21998
|
fileKey: string;
|
|
21931
21999
|
fileMimeType?: string;
|
|
21932
22000
|
fileSizeInBytes?: number;
|
|
21933
22001
|
path: string;
|
|
21934
22002
|
readBytesFrom: number;
|
|
21935
22003
|
readBytesLength: number;
|
|
22004
|
+
/**
|
|
22005
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
22006
|
+
*/
|
|
22007
|
+
sig?: string;
|
|
21936
22008
|
storage?: string;
|
|
21937
22009
|
workspace: string;
|
|
21938
22010
|
};
|
|
@@ -21947,12 +22019,20 @@ export type $OpenApiTs = {
|
|
|
21947
22019
|
'/w/{workspace}/apps_u/load_parquet_preview/{path}': {
|
|
21948
22020
|
get: {
|
|
21949
22021
|
req: {
|
|
22022
|
+
/**
|
|
22023
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
22024
|
+
*/
|
|
22025
|
+
exp?: string;
|
|
21950
22026
|
fileKey: string;
|
|
21951
22027
|
limit?: number;
|
|
21952
22028
|
offset?: number;
|
|
21953
22029
|
path: string;
|
|
21954
22030
|
searchCol?: string;
|
|
21955
22031
|
searchTerm?: string;
|
|
22032
|
+
/**
|
|
22033
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
22034
|
+
*/
|
|
22035
|
+
sig?: string;
|
|
21956
22036
|
sortCol?: string;
|
|
21957
22037
|
sortDesc?: boolean;
|
|
21958
22038
|
storage?: string;
|
|
@@ -21970,12 +22050,20 @@ export type $OpenApiTs = {
|
|
|
21970
22050
|
get: {
|
|
21971
22051
|
req: {
|
|
21972
22052
|
csvSeparator?: string;
|
|
22053
|
+
/**
|
|
22054
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
22055
|
+
*/
|
|
22056
|
+
exp?: string;
|
|
21973
22057
|
fileKey: string;
|
|
21974
22058
|
limit?: number;
|
|
21975
22059
|
offset?: number;
|
|
21976
22060
|
path: string;
|
|
21977
22061
|
searchCol?: string;
|
|
21978
22062
|
searchTerm?: string;
|
|
22063
|
+
/**
|
|
22064
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
22065
|
+
*/
|
|
22066
|
+
sig?: string;
|
|
21979
22067
|
sortCol?: string;
|
|
21980
22068
|
sortDesc?: boolean;
|
|
21981
22069
|
storage?: string;
|
|
@@ -21992,10 +22080,18 @@ export type $OpenApiTs = {
|
|
|
21992
22080
|
'/w/{workspace}/apps_u/load_table_count/{path}': {
|
|
21993
22081
|
get: {
|
|
21994
22082
|
req: {
|
|
22083
|
+
/**
|
|
22084
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
22085
|
+
*/
|
|
22086
|
+
exp?: string;
|
|
21995
22087
|
fileKey: string;
|
|
21996
22088
|
path: string;
|
|
21997
22089
|
searchCol?: string;
|
|
21998
22090
|
searchTerm?: string;
|
|
22091
|
+
/**
|
|
22092
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
22093
|
+
*/
|
|
22094
|
+
sig?: string;
|
|
21999
22095
|
storage?: string;
|
|
22000
22096
|
workspace: string;
|
|
22001
22097
|
};
|
|
@@ -22012,8 +22108,16 @@ export type $OpenApiTs = {
|
|
|
22012
22108
|
'/w/{workspace}/apps_u/download_s3_parquet_file_as_csv/{path}': {
|
|
22013
22109
|
get: {
|
|
22014
22110
|
req: {
|
|
22111
|
+
/**
|
|
22112
|
+
* Expiry timestamp of a presigned S3 object signature
|
|
22113
|
+
*/
|
|
22114
|
+
exp?: string;
|
|
22015
22115
|
fileKey: string;
|
|
22016
22116
|
path: string;
|
|
22117
|
+
/**
|
|
22118
|
+
* HMAC signature of a presigned S3 object (bypasses the app provenance gate)
|
|
22119
|
+
*/
|
|
22120
|
+
sig?: string;
|
|
22017
22121
|
storage?: string;
|
|
22018
22122
|
workspace: string;
|
|
22019
22123
|
};
|
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.760.
|
|
4
|
+
"version": "1.760.1",
|
|
5
5
|
"author": "Ruben Fiszel",
|
|
6
6
|
"license": "Apache 2.0",
|
|
7
7
|
"homepage": "https://github.com/windmill-labs/windmill/tree/main/typescript-client#readme",
|