pollination-react-io 1.95.3 → 1.96.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.
package/build/index.js CHANGED
@@ -18560,7 +18560,7 @@ var base = createCommonjsModule(function (module, exports) {
18560
18560
  * pollination-server
18561
18561
  * Pollination Server OpenAPI Definition
18562
18562
  *
18563
- * The version of the OpenAPI document: 0.39.0
18563
+ * The version of the OpenAPI document: 0.40.0
18564
18564
  * Contact: info@pollination.cloud
18565
18565
  *
18566
18566
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18622,7 +18622,7 @@ var apitokensApi = createCommonjsModule(function (module, exports) {
18622
18622
  * pollination-server
18623
18623
  * Pollination Server OpenAPI Definition
18624
18624
  *
18625
- * The version of the OpenAPI document: 0.39.0
18625
+ * The version of the OpenAPI document: 0.40.0
18626
18626
  * Contact: info@pollination.cloud
18627
18627
  *
18628
18628
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19055,7 +19055,7 @@ var accountsApi = createCommonjsModule(function (module, exports) {
19055
19055
  * pollination-server
19056
19056
  * Pollination Server OpenAPI Definition
19057
19057
  *
19058
- * The version of the OpenAPI document: 0.39.0
19058
+ * The version of the OpenAPI document: 0.40.0
19059
19059
  * Contact: info@pollination.cloud
19060
19060
  *
19061
19061
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19504,7 +19504,7 @@ var applicationsApi = createCommonjsModule(function (module, exports) {
19504
19504
  * pollination-server
19505
19505
  * Pollination Server OpenAPI Definition
19506
19506
  *
19507
- * The version of the OpenAPI document: 0.39.0
19507
+ * The version of the OpenAPI document: 0.40.0
19508
19508
  * Contact: info@pollination.cloud
19509
19509
  *
19510
19510
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -20883,7 +20883,7 @@ var artifactsApi = createCommonjsModule(function (module, exports) {
20883
20883
  * pollination-server
20884
20884
  * Pollination Server OpenAPI Definition
20885
20885
  *
20886
- * The version of the OpenAPI document: 0.39.0
20886
+ * The version of the OpenAPI document: 0.40.0
20887
20887
  * Contact: info@pollination.cloud
20888
20888
  *
20889
20889
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21394,7 +21394,7 @@ var jobsApi = createCommonjsModule(function (module, exports) {
21394
21394
  * pollination-server
21395
21395
  * Pollination Server OpenAPI Definition
21396
21396
  *
21397
- * The version of the OpenAPI document: 0.39.0
21397
+ * The version of the OpenAPI document: 0.40.0
21398
21398
  * Contact: info@pollination.cloud
21399
21399
  *
21400
21400
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21836,6 +21836,71 @@ const JobsApiAxiosParamCreator = function (configuration) {
21836
21836
  options: localVarRequestOptions,
21837
21837
  };
21838
21838
  }),
21839
+ /**
21840
+ * Retry failed runs for a job.
21841
+ * @summary Retry failed runs for a Job
21842
+ * @param {string} owner
21843
+ * @param {string} name
21844
+ * @param {string} jobId
21845
+ * @param {*} [options] Override http request option.
21846
+ * @throws {RequiredError}
21847
+ */
21848
+ retryJob: (owner, name, jobId, options = {}) => __awaiter(this, void 0, void 0, function* () {
21849
+ // verify required parameter 'owner' is not null or undefined
21850
+ if (owner === null || owner === undefined) {
21851
+ throw new base.RequiredError('owner', 'Required parameter owner was null or undefined when calling retryJob.');
21852
+ }
21853
+ // verify required parameter 'name' is not null or undefined
21854
+ if (name === null || name === undefined) {
21855
+ throw new base.RequiredError('name', 'Required parameter name was null or undefined when calling retryJob.');
21856
+ }
21857
+ // verify required parameter 'jobId' is not null or undefined
21858
+ if (jobId === null || jobId === undefined) {
21859
+ throw new base.RequiredError('jobId', 'Required parameter jobId was null or undefined when calling retryJob.');
21860
+ }
21861
+ const localVarPath = `/projects/{owner}/{name}/jobs/{job_id}/retry`
21862
+ .replace(`{${"owner"}}`, encodeURIComponent(String(owner)))
21863
+ .replace(`{${"name"}}`, encodeURIComponent(String(name)))
21864
+ .replace(`{${"job_id"}}`, encodeURIComponent(String(jobId)));
21865
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
21866
+ const localVarUrlObj = new URL(localVarPath, 'https://example.com');
21867
+ let baseOptions;
21868
+ if (configuration) {
21869
+ baseOptions = configuration.baseOptions;
21870
+ }
21871
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
21872
+ const localVarHeaderParameter = {};
21873
+ const localVarQueryParameter = {};
21874
+ // authentication APIKeyAuth required
21875
+ if (configuration && configuration.apiKey) {
21876
+ const localVarApiKeyValue = typeof configuration.apiKey === 'function'
21877
+ ? yield configuration.apiKey("x-pollination-token")
21878
+ : yield configuration.apiKey;
21879
+ localVarHeaderParameter["x-pollination-token"] = localVarApiKeyValue;
21880
+ }
21881
+ // authentication JWTAuth required
21882
+ // http bearer authentication required
21883
+ if (configuration && configuration.accessToken) {
21884
+ const accessToken = typeof configuration.accessToken === 'function'
21885
+ ? yield configuration.accessToken()
21886
+ : yield configuration.accessToken;
21887
+ localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
21888
+ }
21889
+ const query = new URLSearchParams(localVarUrlObj.search);
21890
+ for (const key in localVarQueryParameter) {
21891
+ query.set(key, localVarQueryParameter[key]);
21892
+ }
21893
+ for (const key in options.query) {
21894
+ query.set(key, options.query[key]);
21895
+ }
21896
+ localVarUrlObj.search = (new URLSearchParams(query)).toString();
21897
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
21898
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
21899
+ return {
21900
+ url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
21901
+ options: localVarRequestOptions,
21902
+ };
21903
+ }),
21839
21904
  /**
21840
21905
  * Retrieve a list of artifacts in a job folder
21841
21906
  * @summary List files/folders in a job folder
@@ -22036,6 +22101,24 @@ const JobsApiFp = function (configuration) {
22036
22101
  };
22037
22102
  });
22038
22103
  },
22104
+ /**
22105
+ * Retry failed runs for a job.
22106
+ * @summary Retry failed runs for a Job
22107
+ * @param {string} owner
22108
+ * @param {string} name
22109
+ * @param {string} jobId
22110
+ * @param {*} [options] Override http request option.
22111
+ * @throws {RequiredError}
22112
+ */
22113
+ retryJob(owner, name, jobId, options) {
22114
+ return __awaiter(this, void 0, void 0, function* () {
22115
+ const localVarAxiosArgs = yield (0, exports.JobsApiAxiosParamCreator)(configuration).retryJob(owner, name, jobId, options);
22116
+ return (axios$1 = axios.default, basePath = base.BASE_PATH) => {
22117
+ const axiosRequestArgs = Object.assign(Object.assign({}, localVarAxiosArgs.options), { url: basePath + localVarAxiosArgs.url });
22118
+ return axios$1.request(axiosRequestArgs);
22119
+ };
22120
+ });
22121
+ },
22039
22122
  /**
22040
22123
  * Retrieve a list of artifacts in a job folder
22041
22124
  * @summary List files/folders in a job folder
@@ -22144,6 +22227,18 @@ const JobsApiFactory = function (configuration, basePath, axios) {
22144
22227
  listJobs(owner, name, ids, status, page, perPage, options) {
22145
22228
  return (0, exports.JobsApiFp)(configuration).listJobs(owner, name, ids, status, page, perPage, options).then((request) => request(axios, basePath));
22146
22229
  },
22230
+ /**
22231
+ * Retry failed runs for a job.
22232
+ * @summary Retry failed runs for a Job
22233
+ * @param {string} owner
22234
+ * @param {string} name
22235
+ * @param {string} jobId
22236
+ * @param {*} [options] Override http request option.
22237
+ * @throws {RequiredError}
22238
+ */
22239
+ retryJob(owner, name, jobId, options) {
22240
+ return (0, exports.JobsApiFp)(configuration).retryJob(owner, name, jobId, options).then((request) => request(axios, basePath));
22241
+ },
22147
22242
  /**
22148
22243
  * Retrieve a list of artifacts in a job folder
22149
22244
  * @summary List files/folders in a job folder
@@ -22235,6 +22330,17 @@ class JobsApi extends base.BaseAPI {
22235
22330
  listJobs(requestParameters, options) {
22236
22331
  return (0, exports.JobsApiFp)(this.configuration).listJobs(requestParameters.owner, requestParameters.name, requestParameters.ids, requestParameters.status, requestParameters.page, requestParameters.perPage, options).then((request) => request(this.axios, this.basePath));
22237
22332
  }
22333
+ /**
22334
+ * Retry failed runs for a job.
22335
+ * @summary Retry failed runs for a Job
22336
+ * @param {JobsApiRetryJobRequest} requestParameters Request parameters.
22337
+ * @param {*} [options] Override http request option.
22338
+ * @throws {RequiredError}
22339
+ * @memberof JobsApi
22340
+ */
22341
+ retryJob(requestParameters, options) {
22342
+ return (0, exports.JobsApiFp)(this.configuration).retryJob(requestParameters.owner, requestParameters.name, requestParameters.jobId, options).then((request) => request(this.axios, this.basePath));
22343
+ }
22238
22344
  /**
22239
22345
  * Retrieve a list of artifacts in a job folder
22240
22346
  * @summary List files/folders in a job folder
@@ -22257,7 +22363,7 @@ var licensesApi = createCommonjsModule(function (module, exports) {
22257
22363
  * pollination-server
22258
22364
  * Pollination Server OpenAPI Definition
22259
22365
  *
22260
- * The version of the OpenAPI document: 0.39.0
22366
+ * The version of the OpenAPI document: 0.40.0
22261
22367
  * Contact: info@pollination.cloud
22262
22368
  *
22263
22369
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23080,7 +23186,7 @@ var orgsApi = createCommonjsModule(function (module, exports) {
23080
23186
  * pollination-server
23081
23187
  * Pollination Server OpenAPI Definition
23082
23188
  *
23083
- * The version of the OpenAPI document: 0.39.0
23189
+ * The version of the OpenAPI document: 0.40.0
23084
23190
  * Contact: info@pollination.cloud
23085
23191
  *
23086
23192
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23910,7 +24016,7 @@ var pluginsApi = createCommonjsModule(function (module, exports) {
23910
24016
  * pollination-server
23911
24017
  * Pollination Server OpenAPI Definition
23912
24018
  *
23913
- * The version of the OpenAPI document: 0.39.0
24019
+ * The version of the OpenAPI document: 0.40.0
23914
24020
  * Contact: info@pollination.cloud
23915
24021
  *
23916
24022
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25197,7 +25303,7 @@ var projectsApi = createCommonjsModule(function (module, exports) {
25197
25303
  * pollination-server
25198
25304
  * Pollination Server OpenAPI Definition
25199
25305
  *
25200
- * The version of the OpenAPI document: 0.39.0
25306
+ * The version of the OpenAPI document: 0.40.0
25201
25307
  * Contact: info@pollination.cloud
25202
25308
  *
25203
25309
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26590,7 +26696,7 @@ var recipesApi = createCommonjsModule(function (module, exports) {
26590
26696
  * pollination-server
26591
26697
  * Pollination Server OpenAPI Definition
26592
26698
  *
26593
- * The version of the OpenAPI document: 0.39.0
26699
+ * The version of the OpenAPI document: 0.40.0
26594
26700
  * Contact: info@pollination.cloud
26595
26701
  *
26596
26702
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27877,7 +27983,7 @@ var registriesApi = createCommonjsModule(function (module, exports) {
27877
27983
  * pollination-server
27878
27984
  * Pollination Server OpenAPI Definition
27879
27985
  *
27880
- * The version of the OpenAPI document: 0.39.0
27986
+ * The version of the OpenAPI document: 0.40.0
27881
27987
  * Contact: info@pollination.cloud
27882
27988
  *
27883
27989
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28474,7 +28580,7 @@ var runsApi = createCommonjsModule(function (module, exports) {
28474
28580
  * pollination-server
28475
28581
  * Pollination Server OpenAPI Definition
28476
28582
  *
28477
- * The version of the OpenAPI document: 0.39.0
28583
+ * The version of the OpenAPI document: 0.40.0
28478
28584
  * Contact: info@pollination.cloud
28479
28585
  *
28480
28586
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29815,7 +29921,7 @@ var subscriptionPlansApi = createCommonjsModule(function (module, exports) {
29815
29921
  * pollination-server
29816
29922
  * Pollination Server OpenAPI Definition
29817
29923
  *
29818
- * The version of the OpenAPI document: 0.39.0
29924
+ * The version of the OpenAPI document: 0.40.0
29819
29925
  * Contact: info@pollination.cloud
29820
29926
  *
29821
29927
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29955,7 +30061,7 @@ var subscriptionsApi = createCommonjsModule(function (module, exports) {
29955
30061
  * pollination-server
29956
30062
  * Pollination Server OpenAPI Definition
29957
30063
  *
29958
- * The version of the OpenAPI document: 0.39.0
30064
+ * The version of the OpenAPI document: 0.40.0
29959
30065
  * Contact: info@pollination.cloud
29960
30066
  *
29961
30067
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30762,7 +30868,7 @@ var teamsApi = createCommonjsModule(function (module, exports) {
30762
30868
  * pollination-server
30763
30869
  * Pollination Server OpenAPI Definition
30764
30870
  *
30765
- * The version of the OpenAPI document: 0.39.0
30871
+ * The version of the OpenAPI document: 0.40.0
30766
30872
  * Contact: info@pollination.cloud
30767
30873
  *
30768
30874
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31626,7 +31732,7 @@ var userApi = createCommonjsModule(function (module, exports) {
31626
31732
  * pollination-server
31627
31733
  * Pollination Server OpenAPI Definition
31628
31734
  *
31629
- * The version of the OpenAPI document: 0.39.0
31735
+ * The version of the OpenAPI document: 0.40.0
31630
31736
  * Contact: info@pollination.cloud
31631
31737
  *
31632
31738
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32032,7 +32138,7 @@ var usersApi = createCommonjsModule(function (module, exports) {
32032
32138
  * pollination-server
32033
32139
  * Pollination Server OpenAPI Definition
32034
32140
  *
32035
- * The version of the OpenAPI document: 0.39.0
32141
+ * The version of the OpenAPI document: 0.40.0
32036
32142
  * Contact: info@pollination.cloud
32037
32143
  *
32038
32144
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32334,7 +32440,7 @@ var api = createCommonjsModule(function (module, exports) {
32334
32440
  * pollination-server
32335
32441
  * Pollination Server OpenAPI Definition
32336
32442
  *
32337
- * The version of the OpenAPI document: 0.39.0
32443
+ * The version of the OpenAPI document: 0.40.0
32338
32444
  * Contact: info@pollination.cloud
32339
32445
  *
32340
32446
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32382,7 +32488,7 @@ var configuration = createCommonjsModule(function (module, exports) {
32382
32488
  * pollination-server
32383
32489
  * Pollination Server OpenAPI Definition
32384
32490
  *
32385
- * The version of the OpenAPI document: 0.39.0
32491
+ * The version of the OpenAPI document: 0.40.0
32386
32492
  * Contact: info@pollination.cloud
32387
32493
  *
32388
32494
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32410,7 +32516,7 @@ exports.Configuration = Configuration;
32410
32516
  * pollination-server
32411
32517
  * Pollination Server OpenAPI Definition
32412
32518
  *
32413
- * The version of the OpenAPI document: 0.39.0
32519
+ * The version of the OpenAPI document: 0.40.0
32414
32520
  * Contact: info@pollination.cloud
32415
32521
  *
32416
32522
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32429,7 +32535,7 @@ var apitoken = /*#__PURE__*/Object.freeze({
32429
32535
  * pollination-server
32430
32536
  * Pollination Server OpenAPI Definition
32431
32537
  *
32432
- * The version of the OpenAPI document: 0.39.0
32538
+ * The version of the OpenAPI document: 0.40.0
32433
32539
  * Contact: info@pollination.cloud
32434
32540
  *
32435
32541
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32448,7 +32554,7 @@ var apitokenCreate = /*#__PURE__*/Object.freeze({
32448
32554
  * pollination-server
32449
32555
  * Pollination Server OpenAPI Definition
32450
32556
  *
32451
- * The version of the OpenAPI document: 0.39.0
32557
+ * The version of the OpenAPI document: 0.40.0
32452
32558
  * Contact: info@pollination.cloud
32453
32559
  *
32454
32560
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32467,7 +32573,7 @@ var apitokenList = /*#__PURE__*/Object.freeze({
32467
32573
  * pollination-server
32468
32574
  * Pollination Server OpenAPI Definition
32469
32575
  *
32470
- * The version of the OpenAPI document: 0.39.0
32576
+ * The version of the OpenAPI document: 0.40.0
32471
32577
  * Contact: info@pollination.cloud
32472
32578
  *
32473
32579
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32486,7 +32592,7 @@ var apitokenPrivate = /*#__PURE__*/Object.freeze({
32486
32592
  * pollination-server
32487
32593
  * Pollination Server OpenAPI Definition
32488
32594
  *
32489
- * The version of the OpenAPI document: 0.39.0
32595
+ * The version of the OpenAPI document: 0.40.0
32490
32596
  * Contact: info@pollination.cloud
32491
32597
  *
32492
32598
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32505,7 +32611,7 @@ var accessor = /*#__PURE__*/Object.freeze({
32505
32611
  * pollination-server
32506
32612
  * Pollination Server OpenAPI Definition
32507
32613
  *
32508
- * The version of the OpenAPI document: 0.39.0
32614
+ * The version of the OpenAPI document: 0.40.0
32509
32615
  * Contact: info@pollination.cloud
32510
32616
  *
32511
32617
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32525,7 +32631,7 @@ var accountType = createCommonjsModule(function (module, exports) {
32525
32631
  * pollination-server
32526
32632
  * Pollination Server OpenAPI Definition
32527
32633
  *
32528
- * The version of the OpenAPI document: 0.39.0
32634
+ * The version of the OpenAPI document: 0.40.0
32529
32635
  * Contact: info@pollination.cloud
32530
32636
  *
32531
32637
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32546,7 +32652,7 @@ exports.AccountType = void 0;
32546
32652
  * pollination-server
32547
32653
  * Pollination Server OpenAPI Definition
32548
32654
  *
32549
- * The version of the OpenAPI document: 0.39.0
32655
+ * The version of the OpenAPI document: 0.40.0
32550
32656
  * Contact: info@pollination.cloud
32551
32657
  *
32552
32658
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32565,7 +32671,7 @@ var activation = /*#__PURE__*/Object.freeze({
32565
32671
  * pollination-server
32566
32672
  * Pollination Server OpenAPI Definition
32567
32673
  *
32568
- * The version of the OpenAPI document: 0.39.0
32674
+ * The version of the OpenAPI document: 0.40.0
32569
32675
  * Contact: info@pollination.cloud
32570
32676
  *
32571
32677
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32584,7 +32690,7 @@ var activationList = /*#__PURE__*/Object.freeze({
32584
32690
  * pollination-server
32585
32691
  * Pollination Server OpenAPI Definition
32586
32692
  *
32587
- * The version of the OpenAPI document: 0.39.0
32693
+ * The version of the OpenAPI document: 0.40.0
32588
32694
  * Contact: info@pollination.cloud
32589
32695
  *
32590
32696
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32603,7 +32709,7 @@ var application = /*#__PURE__*/Object.freeze({
32603
32709
  * pollination-server
32604
32710
  * Pollination Server OpenAPI Definition
32605
32711
  *
32606
- * The version of the OpenAPI document: 0.39.0
32712
+ * The version of the OpenAPI document: 0.40.0
32607
32713
  * Contact: info@pollination.cloud
32608
32714
  *
32609
32715
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32622,7 +32728,7 @@ var applicationAccessPolicy = /*#__PURE__*/Object.freeze({
32622
32728
  * pollination-server
32623
32729
  * Pollination Server OpenAPI Definition
32624
32730
  *
32625
- * The version of the OpenAPI document: 0.39.0
32731
+ * The version of the OpenAPI document: 0.40.0
32626
32732
  * Contact: info@pollination.cloud
32627
32733
  *
32628
32734
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32641,7 +32747,7 @@ var applicationAccessPolicyList = /*#__PURE__*/Object.freeze({
32641
32747
  * pollination-server
32642
32748
  * Pollination Server OpenAPI Definition
32643
32749
  *
32644
- * The version of the OpenAPI document: 0.39.0
32750
+ * The version of the OpenAPI document: 0.40.0
32645
32751
  * Contact: info@pollination.cloud
32646
32752
  *
32647
32753
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32660,7 +32766,7 @@ var applicationCreate = /*#__PURE__*/Object.freeze({
32660
32766
  * pollination-server
32661
32767
  * Pollination Server OpenAPI Definition
32662
32768
  *
32663
- * The version of the OpenAPI document: 0.39.0
32769
+ * The version of the OpenAPI document: 0.40.0
32664
32770
  * Contact: info@pollination.cloud
32665
32771
  *
32666
32772
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32679,7 +32785,7 @@ var applicationDeployment = /*#__PURE__*/Object.freeze({
32679
32785
  * pollination-server
32680
32786
  * Pollination Server OpenAPI Definition
32681
32787
  *
32682
- * The version of the OpenAPI document: 0.39.0
32788
+ * The version of the OpenAPI document: 0.40.0
32683
32789
  * Contact: info@pollination.cloud
32684
32790
  *
32685
32791
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32698,7 +32804,7 @@ var applicationList = /*#__PURE__*/Object.freeze({
32698
32804
  * pollination-server
32699
32805
  * Pollination Server OpenAPI Definition
32700
32806
  *
32701
- * The version of the OpenAPI document: 0.39.0
32807
+ * The version of the OpenAPI document: 0.40.0
32702
32808
  * Contact: info@pollination.cloud
32703
32809
  *
32704
32810
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32718,7 +32824,7 @@ var applicationSortKey = createCommonjsModule(function (module, exports) {
32718
32824
  * pollination-server
32719
32825
  * Pollination Server OpenAPI Definition
32720
32826
  *
32721
- * The version of the OpenAPI document: 0.39.0
32827
+ * The version of the OpenAPI document: 0.40.0
32722
32828
  * Contact: info@pollination.cloud
32723
32829
  *
32724
32830
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32740,7 +32846,7 @@ exports.ApplicationSortKey = void 0;
32740
32846
  * pollination-server
32741
32847
  * Pollination Server OpenAPI Definition
32742
32848
  *
32743
- * The version of the OpenAPI document: 0.39.0
32849
+ * The version of the OpenAPI document: 0.40.0
32744
32850
  * Contact: info@pollination.cloud
32745
32851
  *
32746
32852
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32759,7 +32865,7 @@ var applicationUpdate = /*#__PURE__*/Object.freeze({
32759
32865
  * pollination-server
32760
32866
  * Pollination Server OpenAPI Definition
32761
32867
  *
32762
- * The version of the OpenAPI document: 0.39.0
32868
+ * The version of the OpenAPI document: 0.40.0
32763
32869
  * Contact: info@pollination.cloud
32764
32870
  *
32765
32871
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32778,7 +32884,7 @@ var applicationVersion = /*#__PURE__*/Object.freeze({
32778
32884
  * pollination-server
32779
32885
  * Pollination Server OpenAPI Definition
32780
32886
  *
32781
- * The version of the OpenAPI document: 0.39.0
32887
+ * The version of the OpenAPI document: 0.40.0
32782
32888
  * Contact: info@pollination.cloud
32783
32889
  *
32784
32890
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32797,7 +32903,7 @@ var applicationVersionList = /*#__PURE__*/Object.freeze({
32797
32903
  * pollination-server
32798
32904
  * Pollination Server OpenAPI Definition
32799
32905
  *
32800
- * The version of the OpenAPI document: 0.39.0
32906
+ * The version of the OpenAPI document: 0.40.0
32801
32907
  * Contact: info@pollination.cloud
32802
32908
  *
32803
32909
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32816,7 +32922,7 @@ var bakedRecipe = /*#__PURE__*/Object.freeze({
32816
32922
  * pollination-server
32817
32923
  * Pollination Server OpenAPI Definition
32818
32924
  *
32819
- * The version of the OpenAPI document: 0.39.0
32925
+ * The version of the OpenAPI document: 0.40.0
32820
32926
  * Contact: info@pollination.cloud
32821
32927
  *
32822
32928
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32835,7 +32941,7 @@ var billingInfo = /*#__PURE__*/Object.freeze({
32835
32941
  * pollination-server
32836
32942
  * Pollination Server OpenAPI Definition
32837
32943
  *
32838
- * The version of the OpenAPI document: 0.39.0
32944
+ * The version of the OpenAPI document: 0.40.0
32839
32945
  * Contact: info@pollination.cloud
32840
32946
  *
32841
32947
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32854,7 +32960,7 @@ var billingOption = /*#__PURE__*/Object.freeze({
32854
32960
  * pollination-server
32855
32961
  * Pollination Server OpenAPI Definition
32856
32962
  *
32857
- * The version of the OpenAPI document: 0.39.0
32963
+ * The version of the OpenAPI document: 0.40.0
32858
32964
  * Contact: info@pollination.cloud
32859
32965
  *
32860
32966
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32873,7 +32979,7 @@ var bodyCythonFunctionOrMethodOwnerPluginsPost = /*#__PURE__*/Object.freeze({
32873
32979
  * pollination-server
32874
32980
  * Pollination Server OpenAPI Definition
32875
32981
  *
32876
- * The version of the OpenAPI document: 0.39.0
32982
+ * The version of the OpenAPI document: 0.40.0
32877
32983
  * Contact: info@pollination.cloud
32878
32984
  *
32879
32985
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32892,7 +32998,7 @@ var bodyPostRecipeOwnerRecipesPost = /*#__PURE__*/Object.freeze({
32892
32998
  * pollination-server
32893
32999
  * Pollination Server OpenAPI Definition
32894
33000
  *
32895
- * The version of the OpenAPI document: 0.39.0
33001
+ * The version of the OpenAPI document: 0.40.0
32896
33002
  * Contact: info@pollination.cloud
32897
33003
  *
32898
33004
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32912,7 +33018,7 @@ var buildStatusEnum = createCommonjsModule(function (module, exports) {
32912
33018
  * pollination-server
32913
33019
  * Pollination Server OpenAPI Definition
32914
33020
  *
32915
- * The version of the OpenAPI document: 0.39.0
33021
+ * The version of the OpenAPI document: 0.40.0
32916
33022
  * Contact: info@pollination.cloud
32917
33023
  *
32918
33024
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32939,7 +33045,7 @@ var cardType = createCommonjsModule(function (module, exports) {
32939
33045
  * pollination-server
32940
33046
  * Pollination Server OpenAPI Definition
32941
33047
  *
32942
- * The version of the OpenAPI document: 0.39.0
33048
+ * The version of the OpenAPI document: 0.40.0
32943
33049
  * Contact: info@pollination.cloud
32944
33050
  *
32945
33051
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32967,7 +33073,7 @@ exports.CardType = void 0;
32967
33073
  * pollination-server
32968
33074
  * Pollination Server OpenAPI Definition
32969
33075
  *
32970
- * The version of the OpenAPI document: 0.39.0
33076
+ * The version of the OpenAPI document: 0.40.0
32971
33077
  * Contact: info@pollination.cloud
32972
33078
  *
32973
33079
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32986,7 +33092,7 @@ var cloudJob = /*#__PURE__*/Object.freeze({
32986
33092
  * pollination-server
32987
33093
  * Pollination Server OpenAPI Definition
32988
33094
  *
32989
- * The version of the OpenAPI document: 0.39.0
33095
+ * The version of the OpenAPI document: 0.40.0
32990
33096
  * Contact: info@pollination.cloud
32991
33097
  *
32992
33098
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33005,7 +33111,7 @@ var cloudJobList = /*#__PURE__*/Object.freeze({
33005
33111
  * pollination-server
33006
33112
  * Pollination Server OpenAPI Definition
33007
33113
  *
33008
- * The version of the OpenAPI document: 0.39.0
33114
+ * The version of the OpenAPI document: 0.40.0
33009
33115
  * Contact: info@pollination.cloud
33010
33116
  *
33011
33117
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33024,7 +33130,7 @@ var createdContent = /*#__PURE__*/Object.freeze({
33024
33130
  * pollination-server
33025
33131
  * Pollination Server OpenAPI Definition
33026
33132
  *
33027
- * The version of the OpenAPI document: 0.39.0
33133
+ * The version of the OpenAPI document: 0.40.0
33028
33134
  * Contact: info@pollination.cloud
33029
33135
  *
33030
33136
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33043,7 +33149,7 @@ var dag = /*#__PURE__*/Object.freeze({
33043
33149
  * pollination-server
33044
33150
  * Pollination Server OpenAPI Definition
33045
33151
  *
33046
- * The version of the OpenAPI document: 0.39.0
33152
+ * The version of the OpenAPI document: 0.40.0
33047
33153
  * Contact: info@pollination.cloud
33048
33154
  *
33049
33155
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33062,7 +33168,7 @@ var dagarrayInput = /*#__PURE__*/Object.freeze({
33062
33168
  * pollination-server
33063
33169
  * Pollination Server OpenAPI Definition
33064
33170
  *
33065
- * The version of the OpenAPI document: 0.39.0
33171
+ * The version of the OpenAPI document: 0.40.0
33066
33172
  * Contact: info@pollination.cloud
33067
33173
  *
33068
33174
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33081,7 +33187,7 @@ var dagarrayInputAlias = /*#__PURE__*/Object.freeze({
33081
33187
  * pollination-server
33082
33188
  * Pollination Server OpenAPI Definition
33083
33189
  *
33084
- * The version of the OpenAPI document: 0.39.0
33190
+ * The version of the OpenAPI document: 0.40.0
33085
33191
  * Contact: info@pollination.cloud
33086
33192
  *
33087
33193
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33100,7 +33206,7 @@ var dagarrayOutput = /*#__PURE__*/Object.freeze({
33100
33206
  * pollination-server
33101
33207
  * Pollination Server OpenAPI Definition
33102
33208
  *
33103
- * The version of the OpenAPI document: 0.39.0
33209
+ * The version of the OpenAPI document: 0.40.0
33104
33210
  * Contact: info@pollination.cloud
33105
33211
  *
33106
33212
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33119,7 +33225,7 @@ var dagarrayOutputAlias = /*#__PURE__*/Object.freeze({
33119
33225
  * pollination-server
33120
33226
  * Pollination Server OpenAPI Definition
33121
33227
  *
33122
- * The version of the OpenAPI document: 0.39.0
33228
+ * The version of the OpenAPI document: 0.40.0
33123
33229
  * Contact: info@pollination.cloud
33124
33230
  *
33125
33231
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33138,7 +33244,7 @@ var dagbooleanInput = /*#__PURE__*/Object.freeze({
33138
33244
  * pollination-server
33139
33245
  * Pollination Server OpenAPI Definition
33140
33246
  *
33141
- * The version of the OpenAPI document: 0.39.0
33247
+ * The version of the OpenAPI document: 0.40.0
33142
33248
  * Contact: info@pollination.cloud
33143
33249
  *
33144
33250
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33157,7 +33263,7 @@ var dagbooleanInputAlias = /*#__PURE__*/Object.freeze({
33157
33263
  * pollination-server
33158
33264
  * Pollination Server OpenAPI Definition
33159
33265
  *
33160
- * The version of the OpenAPI document: 0.39.0
33266
+ * The version of the OpenAPI document: 0.40.0
33161
33267
  * Contact: info@pollination.cloud
33162
33268
  *
33163
33269
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33176,7 +33282,7 @@ var dagbooleanOutput = /*#__PURE__*/Object.freeze({
33176
33282
  * pollination-server
33177
33283
  * Pollination Server OpenAPI Definition
33178
33284
  *
33179
- * The version of the OpenAPI document: 0.39.0
33285
+ * The version of the OpenAPI document: 0.40.0
33180
33286
  * Contact: info@pollination.cloud
33181
33287
  *
33182
33288
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33195,7 +33301,7 @@ var dagbooleanOutputAlias = /*#__PURE__*/Object.freeze({
33195
33301
  * pollination-server
33196
33302
  * Pollination Server OpenAPI Definition
33197
33303
  *
33198
- * The version of the OpenAPI document: 0.39.0
33304
+ * The version of the OpenAPI document: 0.40.0
33199
33305
  * Contact: info@pollination.cloud
33200
33306
  *
33201
33307
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33214,7 +33320,7 @@ var dagfileInput = /*#__PURE__*/Object.freeze({
33214
33320
  * pollination-server
33215
33321
  * Pollination Server OpenAPI Definition
33216
33322
  *
33217
- * The version of the OpenAPI document: 0.39.0
33323
+ * The version of the OpenAPI document: 0.40.0
33218
33324
  * Contact: info@pollination.cloud
33219
33325
  *
33220
33326
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33233,7 +33339,7 @@ var dagfileInputAlias = /*#__PURE__*/Object.freeze({
33233
33339
  * pollination-server
33234
33340
  * Pollination Server OpenAPI Definition
33235
33341
  *
33236
- * The version of the OpenAPI document: 0.39.0
33342
+ * The version of the OpenAPI document: 0.40.0
33237
33343
  * Contact: info@pollination.cloud
33238
33344
  *
33239
33345
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33252,7 +33358,7 @@ var dagfileOutput = /*#__PURE__*/Object.freeze({
33252
33358
  * pollination-server
33253
33359
  * Pollination Server OpenAPI Definition
33254
33360
  *
33255
- * The version of the OpenAPI document: 0.39.0
33361
+ * The version of the OpenAPI document: 0.40.0
33256
33362
  * Contact: info@pollination.cloud
33257
33363
  *
33258
33364
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33271,7 +33377,7 @@ var dagfileOutputAlias = /*#__PURE__*/Object.freeze({
33271
33377
  * pollination-server
33272
33378
  * Pollination Server OpenAPI Definition
33273
33379
  *
33274
- * The version of the OpenAPI document: 0.39.0
33380
+ * The version of the OpenAPI document: 0.40.0
33275
33381
  * Contact: info@pollination.cloud
33276
33382
  *
33277
33383
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33290,7 +33396,7 @@ var dagfolderInput = /*#__PURE__*/Object.freeze({
33290
33396
  * pollination-server
33291
33397
  * Pollination Server OpenAPI Definition
33292
33398
  *
33293
- * The version of the OpenAPI document: 0.39.0
33399
+ * The version of the OpenAPI document: 0.40.0
33294
33400
  * Contact: info@pollination.cloud
33295
33401
  *
33296
33402
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33309,7 +33415,7 @@ var dagfolderInputAlias = /*#__PURE__*/Object.freeze({
33309
33415
  * pollination-server
33310
33416
  * Pollination Server OpenAPI Definition
33311
33417
  *
33312
- * The version of the OpenAPI document: 0.39.0
33418
+ * The version of the OpenAPI document: 0.40.0
33313
33419
  * Contact: info@pollination.cloud
33314
33420
  *
33315
33421
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33328,7 +33434,7 @@ var dagfolderOutput = /*#__PURE__*/Object.freeze({
33328
33434
  * pollination-server
33329
33435
  * Pollination Server OpenAPI Definition
33330
33436
  *
33331
- * The version of the OpenAPI document: 0.39.0
33437
+ * The version of the OpenAPI document: 0.40.0
33332
33438
  * Contact: info@pollination.cloud
33333
33439
  *
33334
33440
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33347,7 +33453,7 @@ var dagfolderOutputAlias = /*#__PURE__*/Object.freeze({
33347
33453
  * pollination-server
33348
33454
  * Pollination Server OpenAPI Definition
33349
33455
  *
33350
- * The version of the OpenAPI document: 0.39.0
33456
+ * The version of the OpenAPI document: 0.40.0
33351
33457
  * Contact: info@pollination.cloud
33352
33458
  *
33353
33459
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33366,7 +33472,7 @@ var daggenericInput = /*#__PURE__*/Object.freeze({
33366
33472
  * pollination-server
33367
33473
  * Pollination Server OpenAPI Definition
33368
33474
  *
33369
- * The version of the OpenAPI document: 0.39.0
33475
+ * The version of the OpenAPI document: 0.40.0
33370
33476
  * Contact: info@pollination.cloud
33371
33477
  *
33372
33478
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33385,7 +33491,7 @@ var daggenericInputAlias = /*#__PURE__*/Object.freeze({
33385
33491
  * pollination-server
33386
33492
  * Pollination Server OpenAPI Definition
33387
33493
  *
33388
- * The version of the OpenAPI document: 0.39.0
33494
+ * The version of the OpenAPI document: 0.40.0
33389
33495
  * Contact: info@pollination.cloud
33390
33496
  *
33391
33497
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33404,7 +33510,7 @@ var daggenericOutput = /*#__PURE__*/Object.freeze({
33404
33510
  * pollination-server
33405
33511
  * Pollination Server OpenAPI Definition
33406
33512
  *
33407
- * The version of the OpenAPI document: 0.39.0
33513
+ * The version of the OpenAPI document: 0.40.0
33408
33514
  * Contact: info@pollination.cloud
33409
33515
  *
33410
33516
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33423,7 +33529,7 @@ var daggenericOutputAlias = /*#__PURE__*/Object.freeze({
33423
33529
  * pollination-server
33424
33530
  * Pollination Server OpenAPI Definition
33425
33531
  *
33426
- * The version of the OpenAPI document: 0.39.0
33532
+ * The version of the OpenAPI document: 0.40.0
33427
33533
  * Contact: info@pollination.cloud
33428
33534
  *
33429
33535
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33442,7 +33548,7 @@ var dagintegerInput = /*#__PURE__*/Object.freeze({
33442
33548
  * pollination-server
33443
33549
  * Pollination Server OpenAPI Definition
33444
33550
  *
33445
- * The version of the OpenAPI document: 0.39.0
33551
+ * The version of the OpenAPI document: 0.40.0
33446
33552
  * Contact: info@pollination.cloud
33447
33553
  *
33448
33554
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33461,7 +33567,7 @@ var dagintegerInputAlias = /*#__PURE__*/Object.freeze({
33461
33567
  * pollination-server
33462
33568
  * Pollination Server OpenAPI Definition
33463
33569
  *
33464
- * The version of the OpenAPI document: 0.39.0
33570
+ * The version of the OpenAPI document: 0.40.0
33465
33571
  * Contact: info@pollination.cloud
33466
33572
  *
33467
33573
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33480,7 +33586,7 @@ var dagintegerOutput = /*#__PURE__*/Object.freeze({
33480
33586
  * pollination-server
33481
33587
  * Pollination Server OpenAPI Definition
33482
33588
  *
33483
- * The version of the OpenAPI document: 0.39.0
33589
+ * The version of the OpenAPI document: 0.40.0
33484
33590
  * Contact: info@pollination.cloud
33485
33591
  *
33486
33592
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33499,7 +33605,7 @@ var dagintegerOutputAlias = /*#__PURE__*/Object.freeze({
33499
33605
  * pollination-server
33500
33606
  * Pollination Server OpenAPI Definition
33501
33607
  *
33502
- * The version of the OpenAPI document: 0.39.0
33608
+ * The version of the OpenAPI document: 0.40.0
33503
33609
  * Contact: info@pollination.cloud
33504
33610
  *
33505
33611
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33518,7 +33624,7 @@ var dagjsonobjectInput = /*#__PURE__*/Object.freeze({
33518
33624
  * pollination-server
33519
33625
  * Pollination Server OpenAPI Definition
33520
33626
  *
33521
- * The version of the OpenAPI document: 0.39.0
33627
+ * The version of the OpenAPI document: 0.40.0
33522
33628
  * Contact: info@pollination.cloud
33523
33629
  *
33524
33630
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33537,7 +33643,7 @@ var dagjsonobjectInputAlias = /*#__PURE__*/Object.freeze({
33537
33643
  * pollination-server
33538
33644
  * Pollination Server OpenAPI Definition
33539
33645
  *
33540
- * The version of the OpenAPI document: 0.39.0
33646
+ * The version of the OpenAPI document: 0.40.0
33541
33647
  * Contact: info@pollination.cloud
33542
33648
  *
33543
33649
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33556,7 +33662,7 @@ var dagjsonobjectOutput = /*#__PURE__*/Object.freeze({
33556
33662
  * pollination-server
33557
33663
  * Pollination Server OpenAPI Definition
33558
33664
  *
33559
- * The version of the OpenAPI document: 0.39.0
33665
+ * The version of the OpenAPI document: 0.40.0
33560
33666
  * Contact: info@pollination.cloud
33561
33667
  *
33562
33668
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33575,7 +33681,7 @@ var dagjsonobjectOutputAlias = /*#__PURE__*/Object.freeze({
33575
33681
  * pollination-server
33576
33682
  * Pollination Server OpenAPI Definition
33577
33683
  *
33578
- * The version of the OpenAPI document: 0.39.0
33684
+ * The version of the OpenAPI document: 0.40.0
33579
33685
  * Contact: info@pollination.cloud
33580
33686
  *
33581
33687
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33594,7 +33700,7 @@ var daglinkedInputAlias = /*#__PURE__*/Object.freeze({
33594
33700
  * pollination-server
33595
33701
  * Pollination Server OpenAPI Definition
33596
33702
  *
33597
- * The version of the OpenAPI document: 0.39.0
33703
+ * The version of the OpenAPI document: 0.40.0
33598
33704
  * Contact: info@pollination.cloud
33599
33705
  *
33600
33706
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33613,7 +33719,7 @@ var daglinkedOutputAlias = /*#__PURE__*/Object.freeze({
33613
33719
  * pollination-server
33614
33720
  * Pollination Server OpenAPI Definition
33615
33721
  *
33616
- * The version of the OpenAPI document: 0.39.0
33722
+ * The version of the OpenAPI document: 0.40.0
33617
33723
  * Contact: info@pollination.cloud
33618
33724
  *
33619
33725
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33632,7 +33738,7 @@ var dagnumberInput = /*#__PURE__*/Object.freeze({
33632
33738
  * pollination-server
33633
33739
  * Pollination Server OpenAPI Definition
33634
33740
  *
33635
- * The version of the OpenAPI document: 0.39.0
33741
+ * The version of the OpenAPI document: 0.40.0
33636
33742
  * Contact: info@pollination.cloud
33637
33743
  *
33638
33744
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33651,7 +33757,7 @@ var dagnumberInputAlias = /*#__PURE__*/Object.freeze({
33651
33757
  * pollination-server
33652
33758
  * Pollination Server OpenAPI Definition
33653
33759
  *
33654
- * The version of the OpenAPI document: 0.39.0
33760
+ * The version of the OpenAPI document: 0.40.0
33655
33761
  * Contact: info@pollination.cloud
33656
33762
  *
33657
33763
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33670,7 +33776,7 @@ var dagnumberOutput = /*#__PURE__*/Object.freeze({
33670
33776
  * pollination-server
33671
33777
  * Pollination Server OpenAPI Definition
33672
33778
  *
33673
- * The version of the OpenAPI document: 0.39.0
33779
+ * The version of the OpenAPI document: 0.40.0
33674
33780
  * Contact: info@pollination.cloud
33675
33781
  *
33676
33782
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33689,7 +33795,7 @@ var dagnumberOutputAlias = /*#__PURE__*/Object.freeze({
33689
33795
  * pollination-server
33690
33796
  * Pollination Server OpenAPI Definition
33691
33797
  *
33692
- * The version of the OpenAPI document: 0.39.0
33798
+ * The version of the OpenAPI document: 0.40.0
33693
33799
  * Contact: info@pollination.cloud
33694
33800
  *
33695
33801
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33708,7 +33814,7 @@ var dagpathInput = /*#__PURE__*/Object.freeze({
33708
33814
  * pollination-server
33709
33815
  * Pollination Server OpenAPI Definition
33710
33816
  *
33711
- * The version of the OpenAPI document: 0.39.0
33817
+ * The version of the OpenAPI document: 0.40.0
33712
33818
  * Contact: info@pollination.cloud
33713
33819
  *
33714
33820
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33727,7 +33833,7 @@ var dagpathInputAlias = /*#__PURE__*/Object.freeze({
33727
33833
  * pollination-server
33728
33834
  * Pollination Server OpenAPI Definition
33729
33835
  *
33730
- * The version of the OpenAPI document: 0.39.0
33836
+ * The version of the OpenAPI document: 0.40.0
33731
33837
  * Contact: info@pollination.cloud
33732
33838
  *
33733
33839
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33746,7 +33852,7 @@ var dagpathOutput = /*#__PURE__*/Object.freeze({
33746
33852
  * pollination-server
33747
33853
  * Pollination Server OpenAPI Definition
33748
33854
  *
33749
- * The version of the OpenAPI document: 0.39.0
33855
+ * The version of the OpenAPI document: 0.40.0
33750
33856
  * Contact: info@pollination.cloud
33751
33857
  *
33752
33858
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33765,7 +33871,7 @@ var dagpathOutputAlias = /*#__PURE__*/Object.freeze({
33765
33871
  * pollination-server
33766
33872
  * Pollination Server OpenAPI Definition
33767
33873
  *
33768
- * The version of the OpenAPI document: 0.39.0
33874
+ * The version of the OpenAPI document: 0.40.0
33769
33875
  * Contact: info@pollination.cloud
33770
33876
  *
33771
33877
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33784,7 +33890,7 @@ var dagstringInput = /*#__PURE__*/Object.freeze({
33784
33890
  * pollination-server
33785
33891
  * Pollination Server OpenAPI Definition
33786
33892
  *
33787
- * The version of the OpenAPI document: 0.39.0
33893
+ * The version of the OpenAPI document: 0.40.0
33788
33894
  * Contact: info@pollination.cloud
33789
33895
  *
33790
33896
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33803,7 +33909,7 @@ var dagstringInputAlias = /*#__PURE__*/Object.freeze({
33803
33909
  * pollination-server
33804
33910
  * Pollination Server OpenAPI Definition
33805
33911
  *
33806
- * The version of the OpenAPI document: 0.39.0
33912
+ * The version of the OpenAPI document: 0.40.0
33807
33913
  * Contact: info@pollination.cloud
33808
33914
  *
33809
33915
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33822,7 +33928,7 @@ var dagstringOutput = /*#__PURE__*/Object.freeze({
33822
33928
  * pollination-server
33823
33929
  * Pollination Server OpenAPI Definition
33824
33930
  *
33825
- * The version of the OpenAPI document: 0.39.0
33931
+ * The version of the OpenAPI document: 0.40.0
33826
33932
  * Contact: info@pollination.cloud
33827
33933
  *
33828
33934
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33841,7 +33947,7 @@ var dagstringOutputAlias = /*#__PURE__*/Object.freeze({
33841
33947
  * pollination-server
33842
33948
  * Pollination Server OpenAPI Definition
33843
33949
  *
33844
- * The version of the OpenAPI document: 0.39.0
33950
+ * The version of the OpenAPI document: 0.40.0
33845
33951
  * Contact: info@pollination.cloud
33846
33952
  *
33847
33953
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33860,7 +33966,7 @@ var dagtask = /*#__PURE__*/Object.freeze({
33860
33966
  * pollination-server
33861
33967
  * Pollination Server OpenAPI Definition
33862
33968
  *
33863
- * The version of the OpenAPI document: 0.39.0
33969
+ * The version of the OpenAPI document: 0.40.0
33864
33970
  * Contact: info@pollination.cloud
33865
33971
  *
33866
33972
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33879,7 +33985,7 @@ var dagtaskLoop = /*#__PURE__*/Object.freeze({
33879
33985
  * pollination-server
33880
33986
  * Pollination Server OpenAPI Definition
33881
33987
  *
33882
- * The version of the OpenAPI document: 0.39.0
33988
+ * The version of the OpenAPI document: 0.40.0
33883
33989
  * Contact: info@pollination.cloud
33884
33990
  *
33885
33991
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33898,7 +34004,7 @@ var dailyUsage = /*#__PURE__*/Object.freeze({
33898
34004
  * pollination-server
33899
34005
  * Pollination Server OpenAPI Definition
33900
34006
  *
33901
- * The version of the OpenAPI document: 0.39.0
34007
+ * The version of the OpenAPI document: 0.40.0
33902
34008
  * Contact: info@pollination.cloud
33903
34009
  *
33904
34010
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33918,7 +34024,7 @@ var dependencyKind = createCommonjsModule(function (module, exports) {
33918
34024
  * pollination-server
33919
34025
  * Pollination Server OpenAPI Definition
33920
34026
  *
33921
- * The version of the OpenAPI document: 0.39.0
34027
+ * The version of the OpenAPI document: 0.40.0
33922
34028
  * Contact: info@pollination.cloud
33923
34029
  *
33924
34030
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33939,7 +34045,7 @@ exports.DependencyKind = void 0;
33939
34045
  * pollination-server
33940
34046
  * Pollination Server OpenAPI Definition
33941
34047
  *
33942
- * The version of the OpenAPI document: 0.39.0
34048
+ * The version of the OpenAPI document: 0.40.0
33943
34049
  * Contact: info@pollination.cloud
33944
34050
  *
33945
34051
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33958,7 +34064,7 @@ var deploymentConfig = /*#__PURE__*/Object.freeze({
33958
34064
  * pollination-server
33959
34065
  * Pollination Server OpenAPI Definition
33960
34066
  *
33961
- * The version of the OpenAPI document: 0.39.0
34067
+ * The version of the OpenAPI document: 0.40.0
33962
34068
  * Contact: info@pollination.cloud
33963
34069
  *
33964
34070
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33977,7 +34083,7 @@ var dockerConfig = /*#__PURE__*/Object.freeze({
33977
34083
  * pollination-server
33978
34084
  * Pollination Server OpenAPI Definition
33979
34085
  *
33980
- * The version of the OpenAPI document: 0.39.0
34086
+ * The version of the OpenAPI document: 0.40.0
33981
34087
  * Contact: info@pollination.cloud
33982
34088
  *
33983
34089
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33996,7 +34102,7 @@ var fileMeta = /*#__PURE__*/Object.freeze({
33996
34102
  * pollination-server
33997
34103
  * Pollination Server OpenAPI Definition
33998
34104
  *
33999
- * The version of the OpenAPI document: 0.39.0
34105
+ * The version of the OpenAPI document: 0.40.0
34000
34106
  * Contact: info@pollination.cloud
34001
34107
  *
34002
34108
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34015,7 +34121,7 @@ var fileReference = /*#__PURE__*/Object.freeze({
34015
34121
  * pollination-server
34016
34122
  * Pollination Server OpenAPI Definition
34017
34123
  *
34018
- * The version of the OpenAPI document: 0.39.0
34124
+ * The version of the OpenAPI document: 0.40.0
34019
34125
  * Contact: info@pollination.cloud
34020
34126
  *
34021
34127
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34034,7 +34140,7 @@ var folderReference = /*#__PURE__*/Object.freeze({
34034
34140
  * pollination-server
34035
34141
  * Pollination Server OpenAPI Definition
34036
34142
  *
34037
- * The version of the OpenAPI document: 0.39.0
34143
+ * The version of the OpenAPI document: 0.40.0
34038
34144
  * Contact: info@pollination.cloud
34039
34145
  *
34040
34146
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34053,7 +34159,7 @@ var _function = /*#__PURE__*/Object.freeze({
34053
34159
  * pollination-server
34054
34160
  * Pollination Server OpenAPI Definition
34055
34161
  *
34056
- * The version of the OpenAPI document: 0.39.0
34162
+ * The version of the OpenAPI document: 0.40.0
34057
34163
  * Contact: info@pollination.cloud
34058
34164
  *
34059
34165
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34072,7 +34178,7 @@ var functionArrayInput = /*#__PURE__*/Object.freeze({
34072
34178
  * pollination-server
34073
34179
  * Pollination Server OpenAPI Definition
34074
34180
  *
34075
- * The version of the OpenAPI document: 0.39.0
34181
+ * The version of the OpenAPI document: 0.40.0
34076
34182
  * Contact: info@pollination.cloud
34077
34183
  *
34078
34184
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34091,7 +34197,7 @@ var functionArrayOutput = /*#__PURE__*/Object.freeze({
34091
34197
  * pollination-server
34092
34198
  * Pollination Server OpenAPI Definition
34093
34199
  *
34094
- * The version of the OpenAPI document: 0.39.0
34200
+ * The version of the OpenAPI document: 0.40.0
34095
34201
  * Contact: info@pollination.cloud
34096
34202
  *
34097
34203
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34110,7 +34216,7 @@ var functionBooleanInput = /*#__PURE__*/Object.freeze({
34110
34216
  * pollination-server
34111
34217
  * Pollination Server OpenAPI Definition
34112
34218
  *
34113
- * The version of the OpenAPI document: 0.39.0
34219
+ * The version of the OpenAPI document: 0.40.0
34114
34220
  * Contact: info@pollination.cloud
34115
34221
  *
34116
34222
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34129,7 +34235,7 @@ var functionBooleanOutput = /*#__PURE__*/Object.freeze({
34129
34235
  * pollination-server
34130
34236
  * Pollination Server OpenAPI Definition
34131
34237
  *
34132
- * The version of the OpenAPI document: 0.39.0
34238
+ * The version of the OpenAPI document: 0.40.0
34133
34239
  * Contact: info@pollination.cloud
34134
34240
  *
34135
34241
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34148,7 +34254,7 @@ var functionFileInput = /*#__PURE__*/Object.freeze({
34148
34254
  * pollination-server
34149
34255
  * Pollination Server OpenAPI Definition
34150
34256
  *
34151
- * The version of the OpenAPI document: 0.39.0
34257
+ * The version of the OpenAPI document: 0.40.0
34152
34258
  * Contact: info@pollination.cloud
34153
34259
  *
34154
34260
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34167,7 +34273,7 @@ var functionFileOutput = /*#__PURE__*/Object.freeze({
34167
34273
  * pollination-server
34168
34274
  * Pollination Server OpenAPI Definition
34169
34275
  *
34170
- * The version of the OpenAPI document: 0.39.0
34276
+ * The version of the OpenAPI document: 0.40.0
34171
34277
  * Contact: info@pollination.cloud
34172
34278
  *
34173
34279
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34186,7 +34292,7 @@ var functionFolderInput = /*#__PURE__*/Object.freeze({
34186
34292
  * pollination-server
34187
34293
  * Pollination Server OpenAPI Definition
34188
34294
  *
34189
- * The version of the OpenAPI document: 0.39.0
34295
+ * The version of the OpenAPI document: 0.40.0
34190
34296
  * Contact: info@pollination.cloud
34191
34297
  *
34192
34298
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34205,7 +34311,7 @@ var functionFolderOutput = /*#__PURE__*/Object.freeze({
34205
34311
  * pollination-server
34206
34312
  * Pollination Server OpenAPI Definition
34207
34313
  *
34208
- * The version of the OpenAPI document: 0.39.0
34314
+ * The version of the OpenAPI document: 0.40.0
34209
34315
  * Contact: info@pollination.cloud
34210
34316
  *
34211
34317
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34224,7 +34330,7 @@ var functionIntegerInput = /*#__PURE__*/Object.freeze({
34224
34330
  * pollination-server
34225
34331
  * Pollination Server OpenAPI Definition
34226
34332
  *
34227
- * The version of the OpenAPI document: 0.39.0
34333
+ * The version of the OpenAPI document: 0.40.0
34228
34334
  * Contact: info@pollination.cloud
34229
34335
  *
34230
34336
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34243,7 +34349,7 @@ var functionIntegerOutput = /*#__PURE__*/Object.freeze({
34243
34349
  * pollination-server
34244
34350
  * Pollination Server OpenAPI Definition
34245
34351
  *
34246
- * The version of the OpenAPI document: 0.39.0
34352
+ * The version of the OpenAPI document: 0.40.0
34247
34353
  * Contact: info@pollination.cloud
34248
34354
  *
34249
34355
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34262,7 +34368,7 @@ var functionJsonobjectInput = /*#__PURE__*/Object.freeze({
34262
34368
  * pollination-server
34263
34369
  * Pollination Server OpenAPI Definition
34264
34370
  *
34265
- * The version of the OpenAPI document: 0.39.0
34371
+ * The version of the OpenAPI document: 0.40.0
34266
34372
  * Contact: info@pollination.cloud
34267
34373
  *
34268
34374
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34281,7 +34387,7 @@ var functionJsonobjectOutput = /*#__PURE__*/Object.freeze({
34281
34387
  * pollination-server
34282
34388
  * Pollination Server OpenAPI Definition
34283
34389
  *
34284
- * The version of the OpenAPI document: 0.39.0
34390
+ * The version of the OpenAPI document: 0.40.0
34285
34391
  * Contact: info@pollination.cloud
34286
34392
  *
34287
34393
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34300,7 +34406,7 @@ var functionNumberInput = /*#__PURE__*/Object.freeze({
34300
34406
  * pollination-server
34301
34407
  * Pollination Server OpenAPI Definition
34302
34408
  *
34303
- * The version of the OpenAPI document: 0.39.0
34409
+ * The version of the OpenAPI document: 0.40.0
34304
34410
  * Contact: info@pollination.cloud
34305
34411
  *
34306
34412
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34319,7 +34425,7 @@ var functionNumberOutput = /*#__PURE__*/Object.freeze({
34319
34425
  * pollination-server
34320
34426
  * Pollination Server OpenAPI Definition
34321
34427
  *
34322
- * The version of the OpenAPI document: 0.39.0
34428
+ * The version of the OpenAPI document: 0.40.0
34323
34429
  * Contact: info@pollination.cloud
34324
34430
  *
34325
34431
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34338,7 +34444,7 @@ var functionPathInput = /*#__PURE__*/Object.freeze({
34338
34444
  * pollination-server
34339
34445
  * Pollination Server OpenAPI Definition
34340
34446
  *
34341
- * The version of the OpenAPI document: 0.39.0
34447
+ * The version of the OpenAPI document: 0.40.0
34342
34448
  * Contact: info@pollination.cloud
34343
34449
  *
34344
34450
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34357,7 +34463,7 @@ var functionPathOutput = /*#__PURE__*/Object.freeze({
34357
34463
  * pollination-server
34358
34464
  * Pollination Server OpenAPI Definition
34359
34465
  *
34360
- * The version of the OpenAPI document: 0.39.0
34466
+ * The version of the OpenAPI document: 0.40.0
34361
34467
  * Contact: info@pollination.cloud
34362
34468
  *
34363
34469
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34376,7 +34482,7 @@ var functionStringInput = /*#__PURE__*/Object.freeze({
34376
34482
  * pollination-server
34377
34483
  * Pollination Server OpenAPI Definition
34378
34484
  *
34379
- * The version of the OpenAPI document: 0.39.0
34485
+ * The version of the OpenAPI document: 0.40.0
34380
34486
  * Contact: info@pollination.cloud
34381
34487
  *
34382
34488
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34395,7 +34501,7 @@ var functionStringOutput = /*#__PURE__*/Object.freeze({
34395
34501
  * pollination-server
34396
34502
  * Pollination Server OpenAPI Definition
34397
34503
  *
34398
- * The version of the OpenAPI document: 0.39.0
34504
+ * The version of the OpenAPI document: 0.40.0
34399
34505
  * Contact: info@pollination.cloud
34400
34506
  *
34401
34507
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34414,7 +34520,7 @@ var http = /*#__PURE__*/Object.freeze({
34414
34520
  * pollination-server
34415
34521
  * Pollination Server OpenAPI Definition
34416
34522
  *
34417
- * The version of the OpenAPI document: 0.39.0
34523
+ * The version of the OpenAPI document: 0.40.0
34418
34524
  * Contact: info@pollination.cloud
34419
34525
  *
34420
34526
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34433,7 +34539,7 @@ var httpvalidationError = /*#__PURE__*/Object.freeze({
34433
34539
  * pollination-server
34434
34540
  * Pollination Server OpenAPI Definition
34435
34541
  *
34436
- * The version of the OpenAPI document: 0.39.0
34542
+ * The version of the OpenAPI document: 0.40.0
34437
34543
  * Contact: info@pollination.cloud
34438
34544
  *
34439
34545
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34452,7 +34558,7 @@ var ioaliasHandler = /*#__PURE__*/Object.freeze({
34452
34558
  * pollination-server
34453
34559
  * Pollination Server OpenAPI Definition
34454
34560
  *
34455
- * The version of the OpenAPI document: 0.39.0
34561
+ * The version of the OpenAPI document: 0.40.0
34456
34562
  * Contact: info@pollination.cloud
34457
34563
  *
34458
34564
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34471,7 +34577,7 @@ var inputFileReference = /*#__PURE__*/Object.freeze({
34471
34577
  * pollination-server
34472
34578
  * Pollination Server OpenAPI Definition
34473
34579
  *
34474
- * The version of the OpenAPI document: 0.39.0
34580
+ * The version of the OpenAPI document: 0.40.0
34475
34581
  * Contact: info@pollination.cloud
34476
34582
  *
34477
34583
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34490,7 +34596,7 @@ var inputFolderReference = /*#__PURE__*/Object.freeze({
34490
34596
  * pollination-server
34491
34597
  * Pollination Server OpenAPI Definition
34492
34598
  *
34493
- * The version of the OpenAPI document: 0.39.0
34599
+ * The version of the OpenAPI document: 0.40.0
34494
34600
  * Contact: info@pollination.cloud
34495
34601
  *
34496
34602
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34509,7 +34615,7 @@ var inputPathReference = /*#__PURE__*/Object.freeze({
34509
34615
  * pollination-server
34510
34616
  * Pollination Server OpenAPI Definition
34511
34617
  *
34512
- * The version of the OpenAPI document: 0.39.0
34618
+ * The version of the OpenAPI document: 0.40.0
34513
34619
  * Contact: info@pollination.cloud
34514
34620
  *
34515
34621
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34528,7 +34634,7 @@ var inputReference = /*#__PURE__*/Object.freeze({
34528
34634
  * pollination-server
34529
34635
  * Pollination Server OpenAPI Definition
34530
34636
  *
34531
- * The version of the OpenAPI document: 0.39.0
34637
+ * The version of the OpenAPI document: 0.40.0
34532
34638
  * Contact: info@pollination.cloud
34533
34639
  *
34534
34640
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34548,7 +34654,7 @@ var itemType = createCommonjsModule(function (module, exports) {
34548
34654
  * pollination-server
34549
34655
  * Pollination Server OpenAPI Definition
34550
34656
  *
34551
- * The version of the OpenAPI document: 0.39.0
34657
+ * The version of the OpenAPI document: 0.40.0
34552
34658
  * Contact: info@pollination.cloud
34553
34659
  *
34554
34660
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34574,7 +34680,7 @@ exports.ItemType = void 0;
34574
34680
  * pollination-server
34575
34681
  * Pollination Server OpenAPI Definition
34576
34682
  *
34577
- * The version of the OpenAPI document: 0.39.0
34683
+ * The version of the OpenAPI document: 0.40.0
34578
34684
  * Contact: info@pollination.cloud
34579
34685
  *
34580
34686
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34593,7 +34699,7 @@ var job = /*#__PURE__*/Object.freeze({
34593
34699
  * pollination-server
34594
34700
  * Pollination Server OpenAPI Definition
34595
34701
  *
34596
- * The version of the OpenAPI document: 0.39.0
34702
+ * The version of the OpenAPI document: 0.40.0
34597
34703
  * Contact: info@pollination.cloud
34598
34704
  *
34599
34705
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34612,7 +34718,7 @@ var jobArgument = /*#__PURE__*/Object.freeze({
34612
34718
  * pollination-server
34613
34719
  * Pollination Server OpenAPI Definition
34614
34720
  *
34615
- * The version of the OpenAPI document: 0.39.0
34721
+ * The version of the OpenAPI document: 0.40.0
34616
34722
  * Contact: info@pollination.cloud
34617
34723
  *
34618
34724
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34631,7 +34737,7 @@ var jobPathArgument = /*#__PURE__*/Object.freeze({
34631
34737
  * pollination-server
34632
34738
  * Pollination Server OpenAPI Definition
34633
34739
  *
34634
- * The version of the OpenAPI document: 0.39.0
34740
+ * The version of the OpenAPI document: 0.40.0
34635
34741
  * Contact: info@pollination.cloud
34636
34742
  *
34637
34743
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34651,7 +34757,7 @@ var jobStatusEnum = createCommonjsModule(function (module, exports) {
34651
34757
  * pollination-server
34652
34758
  * Pollination Server OpenAPI Definition
34653
34759
  *
34654
- * The version of the OpenAPI document: 0.39.0
34760
+ * The version of the OpenAPI document: 0.40.0
34655
34761
  * Contact: info@pollination.cloud
34656
34762
  *
34657
34763
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34677,7 +34783,7 @@ exports.JobStatusEnum = void 0;
34677
34783
  * pollination-server
34678
34784
  * Pollination Server OpenAPI Definition
34679
34785
  *
34680
- * The version of the OpenAPI document: 0.39.0
34786
+ * The version of the OpenAPI document: 0.40.0
34681
34787
  * Contact: info@pollination.cloud
34682
34788
  *
34683
34789
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34696,7 +34802,7 @@ var keyRequest = /*#__PURE__*/Object.freeze({
34696
34802
  * pollination-server
34697
34803
  * Pollination Server OpenAPI Definition
34698
34804
  *
34699
- * The version of the OpenAPI document: 0.39.0
34805
+ * The version of the OpenAPI document: 0.40.0
34700
34806
  * Contact: info@pollination.cloud
34701
34807
  *
34702
34808
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34715,7 +34821,7 @@ var license = /*#__PURE__*/Object.freeze({
34715
34821
  * pollination-server
34716
34822
  * Pollination Server OpenAPI Definition
34717
34823
  *
34718
- * The version of the OpenAPI document: 0.39.0
34824
+ * The version of the OpenAPI document: 0.40.0
34719
34825
  * Contact: info@pollination.cloud
34720
34826
  *
34721
34827
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34734,7 +34840,7 @@ var licensePoolAccessPolicy = /*#__PURE__*/Object.freeze({
34734
34840
  * pollination-server
34735
34841
  * Pollination Server OpenAPI Definition
34736
34842
  *
34737
- * The version of the OpenAPI document: 0.39.0
34843
+ * The version of the OpenAPI document: 0.40.0
34738
34844
  * Contact: info@pollination.cloud
34739
34845
  *
34740
34846
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34753,7 +34859,7 @@ var licensePoolAccessPolicyList = /*#__PURE__*/Object.freeze({
34753
34859
  * pollination-server
34754
34860
  * Pollination Server OpenAPI Definition
34755
34861
  *
34756
- * The version of the OpenAPI document: 0.39.0
34862
+ * The version of the OpenAPI document: 0.40.0
34757
34863
  * Contact: info@pollination.cloud
34758
34864
  *
34759
34865
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34772,7 +34878,7 @@ var licensePoolList = /*#__PURE__*/Object.freeze({
34772
34878
  * pollination-server
34773
34879
  * Pollination Server OpenAPI Definition
34774
34880
  *
34775
- * The version of the OpenAPI document: 0.39.0
34881
+ * The version of the OpenAPI document: 0.40.0
34776
34882
  * Contact: info@pollination.cloud
34777
34883
  *
34778
34884
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34791,7 +34897,7 @@ var licensePoolPolicySubject = /*#__PURE__*/Object.freeze({
34791
34897
  * pollination-server
34792
34898
  * Pollination Server OpenAPI Definition
34793
34899
  *
34794
- * The version of the OpenAPI document: 0.39.0
34900
+ * The version of the OpenAPI document: 0.40.0
34795
34901
  * Contact: info@pollination.cloud
34796
34902
  *
34797
34903
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34810,7 +34916,7 @@ var licensePoolPolicySubjectList = /*#__PURE__*/Object.freeze({
34810
34916
  * pollination-server
34811
34917
  * Pollination Server OpenAPI Definition
34812
34918
  *
34813
- * The version of the OpenAPI document: 0.39.0
34919
+ * The version of the OpenAPI document: 0.40.0
34814
34920
  * Contact: info@pollination.cloud
34815
34921
  *
34816
34922
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34829,7 +34935,7 @@ var licensePoolPublic = /*#__PURE__*/Object.freeze({
34829
34935
  * pollination-server
34830
34936
  * Pollination Server OpenAPI Definition
34831
34937
  *
34832
- * The version of the OpenAPI document: 0.39.0
34938
+ * The version of the OpenAPI document: 0.40.0
34833
34939
  * Contact: info@pollination.cloud
34834
34940
  *
34835
34941
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34848,7 +34954,7 @@ var licensePoolUpdate = /*#__PURE__*/Object.freeze({
34848
34954
  * pollination-server
34849
34955
  * Pollination Server OpenAPI Definition
34850
34956
  *
34851
- * The version of the OpenAPI document: 0.39.0
34957
+ * The version of the OpenAPI document: 0.40.0
34852
34958
  * Contact: info@pollination.cloud
34853
34959
  *
34854
34960
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34868,7 +34974,7 @@ var licenseType = createCommonjsModule(function (module, exports) {
34868
34974
  * pollination-server
34869
34975
  * Pollination Server OpenAPI Definition
34870
34976
  *
34871
- * The version of the OpenAPI document: 0.39.0
34977
+ * The version of the OpenAPI document: 0.40.0
34872
34978
  * Contact: info@pollination.cloud
34873
34979
  *
34874
34980
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34890,7 +34996,7 @@ exports.LicenseType = void 0;
34890
34996
  * pollination-server
34891
34997
  * Pollination Server OpenAPI Definition
34892
34998
  *
34893
- * The version of the OpenAPI document: 0.39.0
34999
+ * The version of the OpenAPI document: 0.40.0
34894
35000
  * Contact: info@pollination.cloud
34895
35001
  *
34896
35002
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34909,7 +35015,7 @@ var localConfig = /*#__PURE__*/Object.freeze({
34909
35015
  * pollination-server
34910
35016
  * Pollination Server OpenAPI Definition
34911
35017
  *
34912
- * The version of the OpenAPI document: 0.39.0
35018
+ * The version of the OpenAPI document: 0.40.0
34913
35019
  * Contact: info@pollination.cloud
34914
35020
  *
34915
35021
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34928,7 +35034,7 @@ var location = /*#__PURE__*/Object.freeze({
34928
35034
  * pollination-server
34929
35035
  * Pollination Server OpenAPI Definition
34930
35036
  *
34931
- * The version of the OpenAPI document: 0.39.0
35037
+ * The version of the OpenAPI document: 0.40.0
34932
35038
  * Contact: info@pollination.cloud
34933
35039
  *
34934
35040
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34947,7 +35053,7 @@ var maintainer = /*#__PURE__*/Object.freeze({
34947
35053
  * pollination-server
34948
35054
  * Pollination Server OpenAPI Definition
34949
35055
  *
34950
- * The version of the OpenAPI document: 0.39.0
35056
+ * The version of the OpenAPI document: 0.40.0
34951
35057
  * Contact: info@pollination.cloud
34952
35058
  *
34953
35059
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34966,7 +35072,7 @@ var metaData = /*#__PURE__*/Object.freeze({
34966
35072
  * pollination-server
34967
35073
  * Pollination Server OpenAPI Definition
34968
35074
  *
34969
- * The version of the OpenAPI document: 0.39.0
35075
+ * The version of the OpenAPI document: 0.40.0
34970
35076
  * Contact: info@pollination.cloud
34971
35077
  *
34972
35078
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34985,7 +35091,7 @@ var metadata = /*#__PURE__*/Object.freeze({
34985
35091
  * pollination-server
34986
35092
  * Pollination Server OpenAPI Definition
34987
35093
  *
34988
- * The version of the OpenAPI document: 0.39.0
35094
+ * The version of the OpenAPI document: 0.40.0
34989
35095
  * Contact: info@pollination.cloud
34990
35096
  *
34991
35097
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35004,7 +35110,7 @@ var newApplicationVersion = /*#__PURE__*/Object.freeze({
35004
35110
  * pollination-server
35005
35111
  * Pollination Server OpenAPI Definition
35006
35112
  *
35007
- * The version of the OpenAPI document: 0.39.0
35113
+ * The version of the OpenAPI document: 0.40.0
35008
35114
  * Contact: info@pollination.cloud
35009
35115
  *
35010
35116
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35023,7 +35129,7 @@ var newPluginPackage = /*#__PURE__*/Object.freeze({
35023
35129
  * pollination-server
35024
35130
  * Pollination Server OpenAPI Definition
35025
35131
  *
35026
- * The version of the OpenAPI document: 0.39.0
35132
+ * The version of the OpenAPI document: 0.40.0
35027
35133
  * Contact: info@pollination.cloud
35028
35134
  *
35029
35135
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35042,7 +35148,7 @@ var newRecipePackage = /*#__PURE__*/Object.freeze({
35042
35148
  * pollination-server
35043
35149
  * Pollination Server OpenAPI Definition
35044
35150
  *
35045
- * The version of the OpenAPI document: 0.39.0
35151
+ * The version of the OpenAPI document: 0.40.0
35046
35152
  * Contact: info@pollination.cloud
35047
35153
  *
35048
35154
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35061,7 +35167,7 @@ var organization = /*#__PURE__*/Object.freeze({
35061
35167
  * pollination-server
35062
35168
  * Pollination Server OpenAPI Definition
35063
35169
  *
35064
- * The version of the OpenAPI document: 0.39.0
35170
+ * The version of the OpenAPI document: 0.40.0
35065
35171
  * Contact: info@pollination.cloud
35066
35172
  *
35067
35173
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35080,7 +35186,7 @@ var organizationCreate = /*#__PURE__*/Object.freeze({
35080
35186
  * pollination-server
35081
35187
  * Pollination Server OpenAPI Definition
35082
35188
  *
35083
- * The version of the OpenAPI document: 0.39.0
35189
+ * The version of the OpenAPI document: 0.40.0
35084
35190
  * Contact: info@pollination.cloud
35085
35191
  *
35086
35192
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35099,7 +35205,7 @@ var organizationList = /*#__PURE__*/Object.freeze({
35099
35205
  * pollination-server
35100
35206
  * Pollination Server OpenAPI Definition
35101
35207
  *
35102
- * The version of the OpenAPI document: 0.39.0
35208
+ * The version of the OpenAPI document: 0.40.0
35103
35209
  * Contact: info@pollination.cloud
35104
35210
  *
35105
35211
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35118,7 +35224,7 @@ var organizationMember = /*#__PURE__*/Object.freeze({
35118
35224
  * pollination-server
35119
35225
  * Pollination Server OpenAPI Definition
35120
35226
  *
35121
- * The version of the OpenAPI document: 0.39.0
35227
+ * The version of the OpenAPI document: 0.40.0
35122
35228
  * Contact: info@pollination.cloud
35123
35229
  *
35124
35230
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35138,7 +35244,7 @@ var organizationRoleEnum = createCommonjsModule(function (module, exports) {
35138
35244
  * pollination-server
35139
35245
  * Pollination Server OpenAPI Definition
35140
35246
  *
35141
- * The version of the OpenAPI document: 0.39.0
35247
+ * The version of the OpenAPI document: 0.40.0
35142
35248
  * Contact: info@pollination.cloud
35143
35249
  *
35144
35250
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35159,7 +35265,7 @@ exports.OrganizationRoleEnum = void 0;
35159
35265
  * pollination-server
35160
35266
  * Pollination Server OpenAPI Definition
35161
35267
  *
35162
- * The version of the OpenAPI document: 0.39.0
35268
+ * The version of the OpenAPI document: 0.40.0
35163
35269
  * Contact: info@pollination.cloud
35164
35270
  *
35165
35271
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35179,7 +35285,7 @@ var packageSortKey = createCommonjsModule(function (module, exports) {
35179
35285
  * pollination-server
35180
35286
  * Pollination Server OpenAPI Definition
35181
35287
  *
35182
- * The version of the OpenAPI document: 0.39.0
35288
+ * The version of the OpenAPI document: 0.40.0
35183
35289
  * Contact: info@pollination.cloud
35184
35290
  *
35185
35291
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35201,7 +35307,7 @@ exports.PackageSortKey = void 0;
35201
35307
  * pollination-server
35202
35308
  * Pollination Server OpenAPI Definition
35203
35309
  *
35204
- * The version of the OpenAPI document: 0.39.0
35310
+ * The version of the OpenAPI document: 0.40.0
35205
35311
  * Contact: info@pollination.cloud
35206
35312
  *
35207
35313
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35221,7 +35327,7 @@ var pausedReason = createCommonjsModule(function (module, exports) {
35221
35327
  * pollination-server
35222
35328
  * Pollination Server OpenAPI Definition
35223
35329
  *
35224
- * The version of the OpenAPI document: 0.39.0
35330
+ * The version of the OpenAPI document: 0.40.0
35225
35331
  * Contact: info@pollination.cloud
35226
35332
  *
35227
35333
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35242,7 +35348,7 @@ exports.PausedReason = void 0;
35242
35348
  * pollination-server
35243
35349
  * Pollination Server OpenAPI Definition
35244
35350
  *
35245
- * The version of the OpenAPI document: 0.39.0
35351
+ * The version of the OpenAPI document: 0.40.0
35246
35352
  * Contact: info@pollination.cloud
35247
35353
  *
35248
35354
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35261,7 +35367,7 @@ var payLink = /*#__PURE__*/Object.freeze({
35261
35367
  * pollination-server
35262
35368
  * Pollination Server OpenAPI Definition
35263
35369
  *
35264
- * The version of the OpenAPI document: 0.39.0
35370
+ * The version of the OpenAPI document: 0.40.0
35265
35371
  * Contact: info@pollination.cloud
35266
35372
  *
35267
35373
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35280,7 +35386,7 @@ var payment = /*#__PURE__*/Object.freeze({
35280
35386
  * pollination-server
35281
35387
  * Pollination Server OpenAPI Definition
35282
35388
  *
35283
- * The version of the OpenAPI document: 0.39.0
35389
+ * The version of the OpenAPI document: 0.40.0
35284
35390
  * Contact: info@pollination.cloud
35285
35391
  *
35286
35392
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35300,7 +35406,7 @@ var paymentMethodEnum = createCommonjsModule(function (module, exports) {
35300
35406
  * pollination-server
35301
35407
  * Pollination Server OpenAPI Definition
35302
35408
  *
35303
- * The version of the OpenAPI document: 0.39.0
35409
+ * The version of the OpenAPI document: 0.40.0
35304
35410
  * Contact: info@pollination.cloud
35305
35411
  *
35306
35412
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35323,7 +35429,7 @@ var permission = createCommonjsModule(function (module, exports) {
35323
35429
  * pollination-server
35324
35430
  * Pollination Server OpenAPI Definition
35325
35431
  *
35326
- * The version of the OpenAPI document: 0.39.0
35432
+ * The version of the OpenAPI document: 0.40.0
35327
35433
  * Contact: info@pollination.cloud
35328
35434
  *
35329
35435
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35346,7 +35452,7 @@ var planType = createCommonjsModule(function (module, exports) {
35346
35452
  * pollination-server
35347
35453
  * Pollination Server OpenAPI Definition
35348
35454
  *
35349
- * The version of the OpenAPI document: 0.39.0
35455
+ * The version of the OpenAPI document: 0.40.0
35350
35456
  * Contact: info@pollination.cloud
35351
35457
  *
35352
35458
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35372,7 +35478,7 @@ exports.PlanType = void 0;
35372
35478
  * pollination-server
35373
35479
  * Pollination Server OpenAPI Definition
35374
35480
  *
35375
- * The version of the OpenAPI document: 0.39.0
35481
+ * The version of the OpenAPI document: 0.40.0
35376
35482
  * Contact: info@pollination.cloud
35377
35483
  *
35378
35484
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35391,7 +35497,7 @@ var plugin = /*#__PURE__*/Object.freeze({
35391
35497
  * pollination-server
35392
35498
  * Pollination Server OpenAPI Definition
35393
35499
  *
35394
- * The version of the OpenAPI document: 0.39.0
35500
+ * The version of the OpenAPI document: 0.40.0
35395
35501
  * Contact: info@pollination.cloud
35396
35502
  *
35397
35503
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35410,7 +35516,7 @@ var pluginConfig = /*#__PURE__*/Object.freeze({
35410
35516
  * pollination-server
35411
35517
  * Pollination Server OpenAPI Definition
35412
35518
  *
35413
- * The version of the OpenAPI document: 0.39.0
35519
+ * The version of the OpenAPI document: 0.40.0
35414
35520
  * Contact: info@pollination.cloud
35415
35521
  *
35416
35522
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35429,7 +35535,7 @@ var pluginPackage = /*#__PURE__*/Object.freeze({
35429
35535
  * pollination-server
35430
35536
  * Pollination Server OpenAPI Definition
35431
35537
  *
35432
- * The version of the OpenAPI document: 0.39.0
35538
+ * The version of the OpenAPI document: 0.40.0
35433
35539
  * Contact: info@pollination.cloud
35434
35540
  *
35435
35541
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35448,7 +35554,7 @@ var pluginPackageList = /*#__PURE__*/Object.freeze({
35448
35554
  * pollination-server
35449
35555
  * Pollination Server OpenAPI Definition
35450
35556
  *
35451
- * The version of the OpenAPI document: 0.39.0
35557
+ * The version of the OpenAPI document: 0.40.0
35452
35558
  * Contact: info@pollination.cloud
35453
35559
  *
35454
35560
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35467,7 +35573,7 @@ var policySubject = /*#__PURE__*/Object.freeze({
35467
35573
  * pollination-server
35468
35574
  * Pollination Server OpenAPI Definition
35469
35575
  *
35470
- * The version of the OpenAPI document: 0.39.0
35576
+ * The version of the OpenAPI document: 0.40.0
35471
35577
  * Contact: info@pollination.cloud
35472
35578
  *
35473
35579
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35486,7 +35592,7 @@ var project = /*#__PURE__*/Object.freeze({
35486
35592
  * pollination-server
35487
35593
  * Pollination Server OpenAPI Definition
35488
35594
  *
35489
- * The version of the OpenAPI document: 0.39.0
35595
+ * The version of the OpenAPI document: 0.40.0
35490
35596
  * Contact: info@pollination.cloud
35491
35597
  *
35492
35598
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35505,7 +35611,7 @@ var projectAccessPolicy = /*#__PURE__*/Object.freeze({
35505
35611
  * pollination-server
35506
35612
  * Pollination Server OpenAPI Definition
35507
35613
  *
35508
- * The version of the OpenAPI document: 0.39.0
35614
+ * The version of the OpenAPI document: 0.40.0
35509
35615
  * Contact: info@pollination.cloud
35510
35616
  *
35511
35617
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35524,7 +35630,7 @@ var projectAccessPolicyList = /*#__PURE__*/Object.freeze({
35524
35630
  * pollination-server
35525
35631
  * Pollination Server OpenAPI Definition
35526
35632
  *
35527
- * The version of the OpenAPI document: 0.39.0
35633
+ * The version of the OpenAPI document: 0.40.0
35528
35634
  * Contact: info@pollination.cloud
35529
35635
  *
35530
35636
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35543,7 +35649,7 @@ var projectCreate = /*#__PURE__*/Object.freeze({
35543
35649
  * pollination-server
35544
35650
  * Pollination Server OpenAPI Definition
35545
35651
  *
35546
- * The version of the OpenAPI document: 0.39.0
35652
+ * The version of the OpenAPI document: 0.40.0
35547
35653
  * Contact: info@pollination.cloud
35548
35654
  *
35549
35655
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35562,7 +35668,7 @@ var projectFolder = /*#__PURE__*/Object.freeze({
35562
35668
  * pollination-server
35563
35669
  * Pollination Server OpenAPI Definition
35564
35670
  *
35565
- * The version of the OpenAPI document: 0.39.0
35671
+ * The version of the OpenAPI document: 0.40.0
35566
35672
  * Contact: info@pollination.cloud
35567
35673
  *
35568
35674
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35581,7 +35687,7 @@ var projectList = /*#__PURE__*/Object.freeze({
35581
35687
  * pollination-server
35582
35688
  * Pollination Server OpenAPI Definition
35583
35689
  *
35584
- * The version of the OpenAPI document: 0.39.0
35690
+ * The version of the OpenAPI document: 0.40.0
35585
35691
  * Contact: info@pollination.cloud
35586
35692
  *
35587
35693
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35600,7 +35706,7 @@ var projectPolicySubject = /*#__PURE__*/Object.freeze({
35600
35706
  * pollination-server
35601
35707
  * Pollination Server OpenAPI Definition
35602
35708
  *
35603
- * The version of the OpenAPI document: 0.39.0
35709
+ * The version of the OpenAPI document: 0.40.0
35604
35710
  * Contact: info@pollination.cloud
35605
35711
  *
35606
35712
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35619,7 +35725,7 @@ var projectRecipeFilter = /*#__PURE__*/Object.freeze({
35619
35725
  * pollination-server
35620
35726
  * Pollination Server OpenAPI Definition
35621
35727
  *
35622
- * The version of the OpenAPI document: 0.39.0
35728
+ * The version of the OpenAPI document: 0.40.0
35623
35729
  * Contact: info@pollination.cloud
35624
35730
  *
35625
35731
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35639,7 +35745,7 @@ var projectSortKey = createCommonjsModule(function (module, exports) {
35639
35745
  * pollination-server
35640
35746
  * Pollination Server OpenAPI Definition
35641
35747
  *
35642
- * The version of the OpenAPI document: 0.39.0
35748
+ * The version of the OpenAPI document: 0.40.0
35643
35749
  * Contact: info@pollination.cloud
35644
35750
  *
35645
35751
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35661,7 +35767,7 @@ exports.ProjectSortKey = void 0;
35661
35767
  * pollination-server
35662
35768
  * Pollination Server OpenAPI Definition
35663
35769
  *
35664
- * The version of the OpenAPI document: 0.39.0
35770
+ * The version of the OpenAPI document: 0.40.0
35665
35771
  * Contact: info@pollination.cloud
35666
35772
  *
35667
35773
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35680,7 +35786,7 @@ var projectUpdate = /*#__PURE__*/Object.freeze({
35680
35786
  * pollination-server
35681
35787
  * Pollination Server OpenAPI Definition
35682
35788
  *
35683
- * The version of the OpenAPI document: 0.39.0
35789
+ * The version of the OpenAPI document: 0.40.0
35684
35790
  * Contact: info@pollination.cloud
35685
35791
  *
35686
35792
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35699,7 +35805,7 @@ var publicAccountList = /*#__PURE__*/Object.freeze({
35699
35805
  * pollination-server
35700
35806
  * Pollination Server OpenAPI Definition
35701
35807
  *
35702
- * The version of the OpenAPI document: 0.39.0
35808
+ * The version of the OpenAPI document: 0.40.0
35703
35809
  * Contact: info@pollination.cloud
35704
35810
  *
35705
35811
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35718,7 +35824,7 @@ var quota = /*#__PURE__*/Object.freeze({
35718
35824
  * pollination-server
35719
35825
  * Pollination Server OpenAPI Definition
35720
35826
  *
35721
- * The version of the OpenAPI document: 0.39.0
35827
+ * The version of the OpenAPI document: 0.40.0
35722
35828
  * Contact: info@pollination.cloud
35723
35829
  *
35724
35830
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35737,7 +35843,7 @@ var quotaList = /*#__PURE__*/Object.freeze({
35737
35843
  * pollination-server
35738
35844
  * Pollination Server OpenAPI Definition
35739
35845
  *
35740
- * The version of the OpenAPI document: 0.39.0
35846
+ * The version of the OpenAPI document: 0.40.0
35741
35847
  * Contact: info@pollination.cloud
35742
35848
  *
35743
35849
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35757,7 +35863,7 @@ var quotaType = createCommonjsModule(function (module, exports) {
35757
35863
  * pollination-server
35758
35864
  * Pollination Server OpenAPI Definition
35759
35865
  *
35760
- * The version of the OpenAPI document: 0.39.0
35866
+ * The version of the OpenAPI document: 0.40.0
35761
35867
  * Contact: info@pollination.cloud
35762
35868
  *
35763
35869
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35789,7 +35895,7 @@ exports.QuotaType = void 0;
35789
35895
  * pollination-server
35790
35896
  * Pollination Server OpenAPI Definition
35791
35897
  *
35792
- * The version of the OpenAPI document: 0.39.0
35898
+ * The version of the OpenAPI document: 0.40.0
35793
35899
  * Contact: info@pollination.cloud
35794
35900
  *
35795
35901
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35808,7 +35914,7 @@ var recipe = /*#__PURE__*/Object.freeze({
35808
35914
  * pollination-server
35809
35915
  * Pollination Server OpenAPI Definition
35810
35916
  *
35811
- * The version of the OpenAPI document: 0.39.0
35917
+ * The version of the OpenAPI document: 0.40.0
35812
35918
  * Contact: info@pollination.cloud
35813
35919
  *
35814
35920
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35827,7 +35933,7 @@ var recipeInterface = /*#__PURE__*/Object.freeze({
35827
35933
  * pollination-server
35828
35934
  * Pollination Server OpenAPI Definition
35829
35935
  *
35830
- * The version of the OpenAPI document: 0.39.0
35936
+ * The version of the OpenAPI document: 0.40.0
35831
35937
  * Contact: info@pollination.cloud
35832
35938
  *
35833
35939
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35846,7 +35952,7 @@ var recipeInterfaceList = /*#__PURE__*/Object.freeze({
35846
35952
  * pollination-server
35847
35953
  * Pollination Server OpenAPI Definition
35848
35954
  *
35849
- * The version of the OpenAPI document: 0.39.0
35955
+ * The version of the OpenAPI document: 0.40.0
35850
35956
  * Contact: info@pollination.cloud
35851
35957
  *
35852
35958
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35865,7 +35971,7 @@ var recipePackage = /*#__PURE__*/Object.freeze({
35865
35971
  * pollination-server
35866
35972
  * Pollination Server OpenAPI Definition
35867
35973
  *
35868
- * The version of the OpenAPI document: 0.39.0
35974
+ * The version of the OpenAPI document: 0.40.0
35869
35975
  * Contact: info@pollination.cloud
35870
35976
  *
35871
35977
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35884,7 +35990,7 @@ var recipePackageList = /*#__PURE__*/Object.freeze({
35884
35990
  * pollination-server
35885
35991
  * Pollination Server OpenAPI Definition
35886
35992
  *
35887
- * The version of the OpenAPI document: 0.39.0
35993
+ * The version of the OpenAPI document: 0.40.0
35888
35994
  * Contact: info@pollination.cloud
35889
35995
  *
35890
35996
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35903,7 +36009,7 @@ var repository = /*#__PURE__*/Object.freeze({
35903
36009
  * pollination-server
35904
36010
  * Pollination Server OpenAPI Definition
35905
36011
  *
35906
- * The version of the OpenAPI document: 0.39.0
36012
+ * The version of the OpenAPI document: 0.40.0
35907
36013
  * Contact: info@pollination.cloud
35908
36014
  *
35909
36015
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35922,7 +36028,7 @@ var repositoryAccessPolicy = /*#__PURE__*/Object.freeze({
35922
36028
  * pollination-server
35923
36029
  * Pollination Server OpenAPI Definition
35924
36030
  *
35925
- * The version of the OpenAPI document: 0.39.0
36031
+ * The version of the OpenAPI document: 0.40.0
35926
36032
  * Contact: info@pollination.cloud
35927
36033
  *
35928
36034
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35941,7 +36047,7 @@ var repositoryAccessPolicyList = /*#__PURE__*/Object.freeze({
35941
36047
  * pollination-server
35942
36048
  * Pollination Server OpenAPI Definition
35943
36049
  *
35944
- * The version of the OpenAPI document: 0.39.0
36050
+ * The version of the OpenAPI document: 0.40.0
35945
36051
  * Contact: info@pollination.cloud
35946
36052
  *
35947
36053
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35960,7 +36066,7 @@ var repositoryCreate = /*#__PURE__*/Object.freeze({
35960
36066
  * pollination-server
35961
36067
  * Pollination Server OpenAPI Definition
35962
36068
  *
35963
- * The version of the OpenAPI document: 0.39.0
36069
+ * The version of the OpenAPI document: 0.40.0
35964
36070
  * Contact: info@pollination.cloud
35965
36071
  *
35966
36072
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35979,7 +36085,7 @@ var repositoryIndex = /*#__PURE__*/Object.freeze({
35979
36085
  * pollination-server
35980
36086
  * Pollination Server OpenAPI Definition
35981
36087
  *
35982
- * The version of the OpenAPI document: 0.39.0
36088
+ * The version of the OpenAPI document: 0.40.0
35983
36089
  * Contact: info@pollination.cloud
35984
36090
  *
35985
36091
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35998,7 +36104,7 @@ var repositoryList = /*#__PURE__*/Object.freeze({
35998
36104
  * pollination-server
35999
36105
  * Pollination Server OpenAPI Definition
36000
36106
  *
36001
- * The version of the OpenAPI document: 0.39.0
36107
+ * The version of the OpenAPI document: 0.40.0
36002
36108
  * Contact: info@pollination.cloud
36003
36109
  *
36004
36110
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36017,7 +36123,7 @@ var repositoryMetadata = /*#__PURE__*/Object.freeze({
36017
36123
  * pollination-server
36018
36124
  * Pollination Server OpenAPI Definition
36019
36125
  *
36020
- * The version of the OpenAPI document: 0.39.0
36126
+ * The version of the OpenAPI document: 0.40.0
36021
36127
  * Contact: info@pollination.cloud
36022
36128
  *
36023
36129
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36037,7 +36143,7 @@ var repositorySortKey = createCommonjsModule(function (module, exports) {
36037
36143
  * pollination-server
36038
36144
  * Pollination Server OpenAPI Definition
36039
36145
  *
36040
- * The version of the OpenAPI document: 0.39.0
36146
+ * The version of the OpenAPI document: 0.40.0
36041
36147
  * Contact: info@pollination.cloud
36042
36148
  *
36043
36149
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36060,7 +36166,7 @@ exports.RepositorySortKey = void 0;
36060
36166
  * pollination-server
36061
36167
  * Pollination Server OpenAPI Definition
36062
36168
  *
36063
- * The version of the OpenAPI document: 0.39.0
36169
+ * The version of the OpenAPI document: 0.40.0
36064
36170
  * Contact: info@pollination.cloud
36065
36171
  *
36066
36172
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36079,7 +36185,7 @@ var repositoryUpdate = /*#__PURE__*/Object.freeze({
36079
36185
  * pollination-server
36080
36186
  * Pollination Server OpenAPI Definition
36081
36187
  *
36082
- * The version of the OpenAPI document: 0.39.0
36188
+ * The version of the OpenAPI document: 0.40.0
36083
36189
  * Contact: info@pollination.cloud
36084
36190
  *
36085
36191
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36098,7 +36204,7 @@ var repositoryUserPermissions = /*#__PURE__*/Object.freeze({
36098
36204
  * pollination-server
36099
36205
  * Pollination Server OpenAPI Definition
36100
36206
  *
36101
- * The version of the OpenAPI document: 0.39.0
36207
+ * The version of the OpenAPI document: 0.40.0
36102
36208
  * Contact: info@pollination.cloud
36103
36209
  *
36104
36210
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36118,7 +36224,7 @@ var roleEnum = createCommonjsModule(function (module, exports) {
36118
36224
  * pollination-server
36119
36225
  * Pollination Server OpenAPI Definition
36120
36226
  *
36121
- * The version of the OpenAPI document: 0.39.0
36227
+ * The version of the OpenAPI document: 0.40.0
36122
36228
  * Contact: info@pollination.cloud
36123
36229
  *
36124
36230
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36139,7 +36245,7 @@ exports.RoleEnum = void 0;
36139
36245
  * pollination-server
36140
36246
  * Pollination Server OpenAPI Definition
36141
36247
  *
36142
- * The version of the OpenAPI document: 0.39.0
36248
+ * The version of the OpenAPI document: 0.40.0
36143
36249
  * Contact: info@pollination.cloud
36144
36250
  *
36145
36251
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36158,7 +36264,7 @@ var run = /*#__PURE__*/Object.freeze({
36158
36264
  * pollination-server
36159
36265
  * Pollination Server OpenAPI Definition
36160
36266
  *
36161
- * The version of the OpenAPI document: 0.39.0
36267
+ * The version of the OpenAPI document: 0.40.0
36162
36268
  * Contact: info@pollination.cloud
36163
36269
  *
36164
36270
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36177,7 +36283,7 @@ var runList = /*#__PURE__*/Object.freeze({
36177
36283
  * pollination-server
36178
36284
  * Pollination Server OpenAPI Definition
36179
36285
  *
36180
- * The version of the OpenAPI document: 0.39.0
36286
+ * The version of the OpenAPI document: 0.40.0
36181
36287
  * Contact: info@pollination.cloud
36182
36288
  *
36183
36289
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36196,7 +36302,7 @@ var runMeta = /*#__PURE__*/Object.freeze({
36196
36302
  * pollination-server
36197
36303
  * Pollination Server OpenAPI Definition
36198
36304
  *
36199
- * The version of the OpenAPI document: 0.39.0
36305
+ * The version of the OpenAPI document: 0.40.0
36200
36306
  * Contact: info@pollination.cloud
36201
36307
  *
36202
36308
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36215,7 +36321,7 @@ var runProgress = /*#__PURE__*/Object.freeze({
36215
36321
  * pollination-server
36216
36322
  * Pollination Server OpenAPI Definition
36217
36323
  *
36218
- * The version of the OpenAPI document: 0.39.0
36324
+ * The version of the OpenAPI document: 0.40.0
36219
36325
  * Contact: info@pollination.cloud
36220
36326
  *
36221
36327
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36234,7 +36340,7 @@ var runResultList = /*#__PURE__*/Object.freeze({
36234
36340
  * pollination-server
36235
36341
  * Pollination Server OpenAPI Definition
36236
36342
  *
36237
- * The version of the OpenAPI document: 0.39.0
36343
+ * The version of the OpenAPI document: 0.40.0
36238
36344
  * Contact: info@pollination.cloud
36239
36345
  *
36240
36346
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36254,7 +36360,7 @@ var runStatusEnum = createCommonjsModule(function (module, exports) {
36254
36360
  * pollination-server
36255
36361
  * Pollination Server OpenAPI Definition
36256
36362
  *
36257
- * The version of the OpenAPI document: 0.39.0
36363
+ * The version of the OpenAPI document: 0.40.0
36258
36364
  * Contact: info@pollination.cloud
36259
36365
  *
36260
36366
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36281,7 +36387,7 @@ exports.RunStatusEnum = void 0;
36281
36387
  * pollination-server
36282
36388
  * Pollination Server OpenAPI Definition
36283
36389
  *
36284
- * The version of the OpenAPI document: 0.39.0
36390
+ * The version of the OpenAPI document: 0.40.0
36285
36391
  * Contact: info@pollination.cloud
36286
36392
  *
36287
36393
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36300,7 +36406,7 @@ var s3 = /*#__PURE__*/Object.freeze({
36300
36406
  * pollination-server
36301
36407
  * Pollination Server OpenAPI Definition
36302
36408
  *
36303
- * The version of the OpenAPI document: 0.39.0
36409
+ * The version of the OpenAPI document: 0.40.0
36304
36410
  * Contact: info@pollination.cloud
36305
36411
  *
36306
36412
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36320,7 +36426,7 @@ var sortEnum = createCommonjsModule(function (module, exports) {
36320
36426
  * pollination-server
36321
36427
  * Pollination Server OpenAPI Definition
36322
36428
  *
36323
- * The version of the OpenAPI document: 0.39.0
36429
+ * The version of the OpenAPI document: 0.40.0
36324
36430
  * Contact: info@pollination.cloud
36325
36431
  *
36326
36432
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36342,7 +36448,7 @@ var statusType = createCommonjsModule(function (module, exports) {
36342
36448
  * pollination-server
36343
36449
  * Pollination Server OpenAPI Definition
36344
36450
  *
36345
- * The version of the OpenAPI document: 0.39.0
36451
+ * The version of the OpenAPI document: 0.40.0
36346
36452
  * Contact: info@pollination.cloud
36347
36453
  *
36348
36454
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36366,7 +36472,7 @@ exports.StatusType = void 0;
36366
36472
  * pollination-server
36367
36473
  * Pollination Server OpenAPI Definition
36368
36474
  *
36369
- * The version of the OpenAPI document: 0.39.0
36475
+ * The version of the OpenAPI document: 0.40.0
36370
36476
  * Contact: info@pollination.cloud
36371
36477
  *
36372
36478
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36385,7 +36491,7 @@ var stepArrayInput = /*#__PURE__*/Object.freeze({
36385
36491
  * pollination-server
36386
36492
  * Pollination Server OpenAPI Definition
36387
36493
  *
36388
- * The version of the OpenAPI document: 0.39.0
36494
+ * The version of the OpenAPI document: 0.40.0
36389
36495
  * Contact: info@pollination.cloud
36390
36496
  *
36391
36497
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36404,7 +36510,7 @@ var stepArrayOutput = /*#__PURE__*/Object.freeze({
36404
36510
  * pollination-server
36405
36511
  * Pollination Server OpenAPI Definition
36406
36512
  *
36407
- * The version of the OpenAPI document: 0.39.0
36513
+ * The version of the OpenAPI document: 0.40.0
36408
36514
  * Contact: info@pollination.cloud
36409
36515
  *
36410
36516
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36423,7 +36529,7 @@ var stepBooleanInput = /*#__PURE__*/Object.freeze({
36423
36529
  * pollination-server
36424
36530
  * Pollination Server OpenAPI Definition
36425
36531
  *
36426
- * The version of the OpenAPI document: 0.39.0
36532
+ * The version of the OpenAPI document: 0.40.0
36427
36533
  * Contact: info@pollination.cloud
36428
36534
  *
36429
36535
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36442,7 +36548,7 @@ var stepBooleanOutput = /*#__PURE__*/Object.freeze({
36442
36548
  * pollination-server
36443
36549
  * Pollination Server OpenAPI Definition
36444
36550
  *
36445
- * The version of the OpenAPI document: 0.39.0
36551
+ * The version of the OpenAPI document: 0.40.0
36446
36552
  * Contact: info@pollination.cloud
36447
36553
  *
36448
36554
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36461,7 +36567,7 @@ var stepFileInput = /*#__PURE__*/Object.freeze({
36461
36567
  * pollination-server
36462
36568
  * Pollination Server OpenAPI Definition
36463
36569
  *
36464
- * The version of the OpenAPI document: 0.39.0
36570
+ * The version of the OpenAPI document: 0.40.0
36465
36571
  * Contact: info@pollination.cloud
36466
36572
  *
36467
36573
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36480,7 +36586,7 @@ var stepFileOutput = /*#__PURE__*/Object.freeze({
36480
36586
  * pollination-server
36481
36587
  * Pollination Server OpenAPI Definition
36482
36588
  *
36483
- * The version of the OpenAPI document: 0.39.0
36589
+ * The version of the OpenAPI document: 0.40.0
36484
36590
  * Contact: info@pollination.cloud
36485
36591
  *
36486
36592
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36499,7 +36605,7 @@ var stepFolderInput = /*#__PURE__*/Object.freeze({
36499
36605
  * pollination-server
36500
36606
  * Pollination Server OpenAPI Definition
36501
36607
  *
36502
- * The version of the OpenAPI document: 0.39.0
36608
+ * The version of the OpenAPI document: 0.40.0
36503
36609
  * Contact: info@pollination.cloud
36504
36610
  *
36505
36611
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36518,7 +36624,7 @@ var stepFolderOutput = /*#__PURE__*/Object.freeze({
36518
36624
  * pollination-server
36519
36625
  * Pollination Server OpenAPI Definition
36520
36626
  *
36521
- * The version of the OpenAPI document: 0.39.0
36627
+ * The version of the OpenAPI document: 0.40.0
36522
36628
  * Contact: info@pollination.cloud
36523
36629
  *
36524
36630
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36537,7 +36643,7 @@ var stepIntegerInput = /*#__PURE__*/Object.freeze({
36537
36643
  * pollination-server
36538
36644
  * Pollination Server OpenAPI Definition
36539
36645
  *
36540
- * The version of the OpenAPI document: 0.39.0
36646
+ * The version of the OpenAPI document: 0.40.0
36541
36647
  * Contact: info@pollination.cloud
36542
36648
  *
36543
36649
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36556,7 +36662,7 @@ var stepIntegerOutput = /*#__PURE__*/Object.freeze({
36556
36662
  * pollination-server
36557
36663
  * Pollination Server OpenAPI Definition
36558
36664
  *
36559
- * The version of the OpenAPI document: 0.39.0
36665
+ * The version of the OpenAPI document: 0.40.0
36560
36666
  * Contact: info@pollination.cloud
36561
36667
  *
36562
36668
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36575,7 +36681,7 @@ var stepJsonobjectInput = /*#__PURE__*/Object.freeze({
36575
36681
  * pollination-server
36576
36682
  * Pollination Server OpenAPI Definition
36577
36683
  *
36578
- * The version of the OpenAPI document: 0.39.0
36684
+ * The version of the OpenAPI document: 0.40.0
36579
36685
  * Contact: info@pollination.cloud
36580
36686
  *
36581
36687
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36594,7 +36700,7 @@ var stepJsonobjectOutput = /*#__PURE__*/Object.freeze({
36594
36700
  * pollination-server
36595
36701
  * Pollination Server OpenAPI Definition
36596
36702
  *
36597
- * The version of the OpenAPI document: 0.39.0
36703
+ * The version of the OpenAPI document: 0.40.0
36598
36704
  * Contact: info@pollination.cloud
36599
36705
  *
36600
36706
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36613,7 +36719,7 @@ var stepList = /*#__PURE__*/Object.freeze({
36613
36719
  * pollination-server
36614
36720
  * Pollination Server OpenAPI Definition
36615
36721
  *
36616
- * The version of the OpenAPI document: 0.39.0
36722
+ * The version of the OpenAPI document: 0.40.0
36617
36723
  * Contact: info@pollination.cloud
36618
36724
  *
36619
36725
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36632,7 +36738,7 @@ var stepNumberInput = /*#__PURE__*/Object.freeze({
36632
36738
  * pollination-server
36633
36739
  * Pollination Server OpenAPI Definition
36634
36740
  *
36635
- * The version of the OpenAPI document: 0.39.0
36741
+ * The version of the OpenAPI document: 0.40.0
36636
36742
  * Contact: info@pollination.cloud
36637
36743
  *
36638
36744
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36651,7 +36757,7 @@ var stepNumberOutput = /*#__PURE__*/Object.freeze({
36651
36757
  * pollination-server
36652
36758
  * Pollination Server OpenAPI Definition
36653
36759
  *
36654
- * The version of the OpenAPI document: 0.39.0
36760
+ * The version of the OpenAPI document: 0.40.0
36655
36761
  * Contact: info@pollination.cloud
36656
36762
  *
36657
36763
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36670,7 +36776,7 @@ var stepPathInput = /*#__PURE__*/Object.freeze({
36670
36776
  * pollination-server
36671
36777
  * Pollination Server OpenAPI Definition
36672
36778
  *
36673
- * The version of the OpenAPI document: 0.39.0
36779
+ * The version of the OpenAPI document: 0.40.0
36674
36780
  * Contact: info@pollination.cloud
36675
36781
  *
36676
36782
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36689,7 +36795,7 @@ var stepPathOutput = /*#__PURE__*/Object.freeze({
36689
36795
  * pollination-server
36690
36796
  * Pollination Server OpenAPI Definition
36691
36797
  *
36692
- * The version of the OpenAPI document: 0.39.0
36798
+ * The version of the OpenAPI document: 0.40.0
36693
36799
  * Contact: info@pollination.cloud
36694
36800
  *
36695
36801
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36709,7 +36815,7 @@ var stepStatusEnum = createCommonjsModule(function (module, exports) {
36709
36815
  * pollination-server
36710
36816
  * Pollination Server OpenAPI Definition
36711
36817
  *
36712
- * The version of the OpenAPI document: 0.39.0
36818
+ * The version of the OpenAPI document: 0.40.0
36713
36819
  * Contact: info@pollination.cloud
36714
36820
  *
36715
36821
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36734,7 +36840,7 @@ exports.StepStatusEnum = void 0;
36734
36840
  * pollination-server
36735
36841
  * Pollination Server OpenAPI Definition
36736
36842
  *
36737
- * The version of the OpenAPI document: 0.39.0
36843
+ * The version of the OpenAPI document: 0.40.0
36738
36844
  * Contact: info@pollination.cloud
36739
36845
  *
36740
36846
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36753,7 +36859,7 @@ var stepStringInput = /*#__PURE__*/Object.freeze({
36753
36859
  * pollination-server
36754
36860
  * Pollination Server OpenAPI Definition
36755
36861
  *
36756
- * The version of the OpenAPI document: 0.39.0
36862
+ * The version of the OpenAPI document: 0.40.0
36757
36863
  * Contact: info@pollination.cloud
36758
36864
  *
36759
36865
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36773,7 +36879,7 @@ var subjectType = createCommonjsModule(function (module, exports) {
36773
36879
  * pollination-server
36774
36880
  * Pollination Server OpenAPI Definition
36775
36881
  *
36776
- * The version of the OpenAPI document: 0.39.0
36882
+ * The version of the OpenAPI document: 0.40.0
36777
36883
  * Contact: info@pollination.cloud
36778
36884
  *
36779
36885
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36794,7 +36900,7 @@ exports.SubjectType = void 0;
36794
36900
  * pollination-server
36795
36901
  * Pollination Server OpenAPI Definition
36796
36902
  *
36797
- * The version of the OpenAPI document: 0.39.0
36903
+ * The version of the OpenAPI document: 0.40.0
36798
36904
  * Contact: info@pollination.cloud
36799
36905
  *
36800
36906
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36813,7 +36919,7 @@ var subscription = /*#__PURE__*/Object.freeze({
36813
36919
  * pollination-server
36814
36920
  * Pollination Server OpenAPI Definition
36815
36921
  *
36816
- * The version of the OpenAPI document: 0.39.0
36922
+ * The version of the OpenAPI document: 0.40.0
36817
36923
  * Contact: info@pollination.cloud
36818
36924
  *
36819
36925
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36832,7 +36938,7 @@ var subscriptionCreate = /*#__PURE__*/Object.freeze({
36832
36938
  * pollination-server
36833
36939
  * Pollination Server OpenAPI Definition
36834
36940
  *
36835
- * The version of the OpenAPI document: 0.39.0
36941
+ * The version of the OpenAPI document: 0.40.0
36836
36942
  * Contact: info@pollination.cloud
36837
36943
  *
36838
36944
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36851,7 +36957,7 @@ var subscriptionPayment = /*#__PURE__*/Object.freeze({
36851
36957
  * pollination-server
36852
36958
  * Pollination Server OpenAPI Definition
36853
36959
  *
36854
- * The version of the OpenAPI document: 0.39.0
36960
+ * The version of the OpenAPI document: 0.40.0
36855
36961
  * Contact: info@pollination.cloud
36856
36962
  *
36857
36963
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36870,7 +36976,7 @@ var subscriptionPlan = /*#__PURE__*/Object.freeze({
36870
36976
  * pollination-server
36871
36977
  * Pollination Server OpenAPI Definition
36872
36978
  *
36873
- * The version of the OpenAPI document: 0.39.0
36979
+ * The version of the OpenAPI document: 0.40.0
36874
36980
  * Contact: info@pollination.cloud
36875
36981
  *
36876
36982
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36889,7 +36995,7 @@ var subscriptionUpdate = /*#__PURE__*/Object.freeze({
36889
36995
  * pollination-server
36890
36996
  * Pollination Server OpenAPI Definition
36891
36997
  *
36892
- * The version of the OpenAPI document: 0.39.0
36998
+ * The version of the OpenAPI document: 0.40.0
36893
36999
  * Contact: info@pollination.cloud
36894
37000
  *
36895
37001
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36908,7 +37014,7 @@ var subscriptionUpdateDryRun = /*#__PURE__*/Object.freeze({
36908
37014
  * pollination-server
36909
37015
  * Pollination Server OpenAPI Definition
36910
37016
  *
36911
- * The version of the OpenAPI document: 0.39.0
37017
+ * The version of the OpenAPI document: 0.40.0
36912
37018
  * Contact: info@pollination.cloud
36913
37019
  *
36914
37020
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36927,7 +37033,7 @@ var taskArgument = /*#__PURE__*/Object.freeze({
36927
37033
  * pollination-server
36928
37034
  * Pollination Server OpenAPI Definition
36929
37035
  *
36930
- * The version of the OpenAPI document: 0.39.0
37036
+ * The version of the OpenAPI document: 0.40.0
36931
37037
  * Contact: info@pollination.cloud
36932
37038
  *
36933
37039
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36946,7 +37052,7 @@ var taskFileReference = /*#__PURE__*/Object.freeze({
36946
37052
  * pollination-server
36947
37053
  * Pollination Server OpenAPI Definition
36948
37054
  *
36949
- * The version of the OpenAPI document: 0.39.0
37055
+ * The version of the OpenAPI document: 0.40.0
36950
37056
  * Contact: info@pollination.cloud
36951
37057
  *
36952
37058
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36965,7 +37071,7 @@ var taskFolderReference = /*#__PURE__*/Object.freeze({
36965
37071
  * pollination-server
36966
37072
  * Pollination Server OpenAPI Definition
36967
37073
  *
36968
- * The version of the OpenAPI document: 0.39.0
37074
+ * The version of the OpenAPI document: 0.40.0
36969
37075
  * Contact: info@pollination.cloud
36970
37076
  *
36971
37077
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36984,7 +37090,7 @@ var taskPathArgument = /*#__PURE__*/Object.freeze({
36984
37090
  * pollination-server
36985
37091
  * Pollination Server OpenAPI Definition
36986
37092
  *
36987
- * The version of the OpenAPI document: 0.39.0
37093
+ * The version of the OpenAPI document: 0.40.0
36988
37094
  * Contact: info@pollination.cloud
36989
37095
  *
36990
37096
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37003,7 +37109,7 @@ var taskPathReference = /*#__PURE__*/Object.freeze({
37003
37109
  * pollination-server
37004
37110
  * Pollination Server OpenAPI Definition
37005
37111
  *
37006
- * The version of the OpenAPI document: 0.39.0
37112
+ * The version of the OpenAPI document: 0.40.0
37007
37113
  * Contact: info@pollination.cloud
37008
37114
  *
37009
37115
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37022,7 +37128,7 @@ var taskPathReturn = /*#__PURE__*/Object.freeze({
37022
37128
  * pollination-server
37023
37129
  * Pollination Server OpenAPI Definition
37024
37130
  *
37025
- * The version of the OpenAPI document: 0.39.0
37131
+ * The version of the OpenAPI document: 0.40.0
37026
37132
  * Contact: info@pollination.cloud
37027
37133
  *
37028
37134
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37041,7 +37147,7 @@ var taskReference = /*#__PURE__*/Object.freeze({
37041
37147
  * pollination-server
37042
37148
  * Pollination Server OpenAPI Definition
37043
37149
  *
37044
- * The version of the OpenAPI document: 0.39.0
37150
+ * The version of the OpenAPI document: 0.40.0
37045
37151
  * Contact: info@pollination.cloud
37046
37152
  *
37047
37153
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37060,7 +37166,7 @@ var taskReturn = /*#__PURE__*/Object.freeze({
37060
37166
  * pollination-server
37061
37167
  * Pollination Server OpenAPI Definition
37062
37168
  *
37063
- * The version of the OpenAPI document: 0.39.0
37169
+ * The version of the OpenAPI document: 0.40.0
37064
37170
  * Contact: info@pollination.cloud
37065
37171
  *
37066
37172
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37079,7 +37185,7 @@ var team = /*#__PURE__*/Object.freeze({
37079
37185
  * pollination-server
37080
37186
  * Pollination Server OpenAPI Definition
37081
37187
  *
37082
- * The version of the OpenAPI document: 0.39.0
37188
+ * The version of the OpenAPI document: 0.40.0
37083
37189
  * Contact: info@pollination.cloud
37084
37190
  *
37085
37191
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37098,7 +37204,7 @@ var teamCreate = /*#__PURE__*/Object.freeze({
37098
37204
  * pollination-server
37099
37205
  * Pollination Server OpenAPI Definition
37100
37206
  *
37101
- * The version of the OpenAPI document: 0.39.0
37207
+ * The version of the OpenAPI document: 0.40.0
37102
37208
  * Contact: info@pollination.cloud
37103
37209
  *
37104
37210
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37117,7 +37223,7 @@ var teamList = /*#__PURE__*/Object.freeze({
37117
37223
  * pollination-server
37118
37224
  * Pollination Server OpenAPI Definition
37119
37225
  *
37120
- * The version of the OpenAPI document: 0.39.0
37226
+ * The version of the OpenAPI document: 0.40.0
37121
37227
  * Contact: info@pollination.cloud
37122
37228
  *
37123
37229
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37136,7 +37242,7 @@ var teamMember = /*#__PURE__*/Object.freeze({
37136
37242
  * pollination-server
37137
37243
  * Pollination Server OpenAPI Definition
37138
37244
  *
37139
- * The version of the OpenAPI document: 0.39.0
37245
+ * The version of the OpenAPI document: 0.40.0
37140
37246
  * Contact: info@pollination.cloud
37141
37247
  *
37142
37248
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37156,7 +37262,7 @@ var teamRoleEnum = createCommonjsModule(function (module, exports) {
37156
37262
  * pollination-server
37157
37263
  * Pollination Server OpenAPI Definition
37158
37264
  *
37159
- * The version of the OpenAPI document: 0.39.0
37265
+ * The version of the OpenAPI document: 0.40.0
37160
37266
  * Contact: info@pollination.cloud
37161
37267
  *
37162
37268
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37177,7 +37283,7 @@ exports.TeamRoleEnum = void 0;
37177
37283
  * pollination-server
37178
37284
  * Pollination Server OpenAPI Definition
37179
37285
  *
37180
- * The version of the OpenAPI document: 0.39.0
37286
+ * The version of the OpenAPI document: 0.40.0
37181
37287
  * Contact: info@pollination.cloud
37182
37288
  *
37183
37289
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37196,7 +37302,7 @@ var teamUpdate = /*#__PURE__*/Object.freeze({
37196
37302
  * pollination-server
37197
37303
  * Pollination Server OpenAPI Definition
37198
37304
  *
37199
- * The version of the OpenAPI document: 0.39.0
37305
+ * The version of the OpenAPI document: 0.40.0
37200
37306
  * Contact: info@pollination.cloud
37201
37307
  *
37202
37308
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37215,7 +37321,7 @@ var templateFunction = /*#__PURE__*/Object.freeze({
37215
37321
  * pollination-server
37216
37322
  * Pollination Server OpenAPI Definition
37217
37323
  *
37218
- * The version of the OpenAPI document: 0.39.0
37324
+ * The version of the OpenAPI document: 0.40.0
37219
37325
  * Contact: info@pollination.cloud
37220
37326
  *
37221
37327
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37234,7 +37340,7 @@ var updateAccepted = /*#__PURE__*/Object.freeze({
37234
37340
  * pollination-server
37235
37341
  * Pollination Server OpenAPI Definition
37236
37342
  *
37237
- * The version of the OpenAPI document: 0.39.0
37343
+ * The version of the OpenAPI document: 0.40.0
37238
37344
  * Contact: info@pollination.cloud
37239
37345
  *
37240
37346
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37253,7 +37359,7 @@ var usage = /*#__PURE__*/Object.freeze({
37253
37359
  * pollination-server
37254
37360
  * Pollination Server OpenAPI Definition
37255
37361
  *
37256
- * The version of the OpenAPI document: 0.39.0
37362
+ * The version of the OpenAPI document: 0.40.0
37257
37363
  * Contact: info@pollination.cloud
37258
37364
  *
37259
37365
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37272,7 +37378,7 @@ var userCreate = /*#__PURE__*/Object.freeze({
37272
37378
  * pollination-server
37273
37379
  * Pollination Server OpenAPI Definition
37274
37380
  *
37275
- * The version of the OpenAPI document: 0.39.0
37381
+ * The version of the OpenAPI document: 0.40.0
37276
37382
  * Contact: info@pollination.cloud
37277
37383
  *
37278
37384
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37291,7 +37397,7 @@ var userPermission = /*#__PURE__*/Object.freeze({
37291
37397
  * pollination-server
37292
37398
  * Pollination Server OpenAPI Definition
37293
37399
  *
37294
- * The version of the OpenAPI document: 0.39.0
37400
+ * The version of the OpenAPI document: 0.40.0
37295
37401
  * Contact: info@pollination.cloud
37296
37402
  *
37297
37403
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37310,7 +37416,7 @@ var userPrivate = /*#__PURE__*/Object.freeze({
37310
37416
  * pollination-server
37311
37417
  * Pollination Server OpenAPI Definition
37312
37418
  *
37313
- * The version of the OpenAPI document: 0.39.0
37419
+ * The version of the OpenAPI document: 0.40.0
37314
37420
  * Contact: info@pollination.cloud
37315
37421
  *
37316
37422
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37329,7 +37435,7 @@ var userPublic = /*#__PURE__*/Object.freeze({
37329
37435
  * pollination-server
37330
37436
  * Pollination Server OpenAPI Definition
37331
37437
  *
37332
- * The version of the OpenAPI document: 0.39.0
37438
+ * The version of the OpenAPI document: 0.40.0
37333
37439
  * Contact: info@pollination.cloud
37334
37440
  *
37335
37441
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37348,7 +37454,7 @@ var userPublicList = /*#__PURE__*/Object.freeze({
37348
37454
  * pollination-server
37349
37455
  * Pollination Server OpenAPI Definition
37350
37456
  *
37351
- * The version of the OpenAPI document: 0.39.0
37457
+ * The version of the OpenAPI document: 0.40.0
37352
37458
  * Contact: info@pollination.cloud
37353
37459
  *
37354
37460
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37367,7 +37473,7 @@ var userUpdate = /*#__PURE__*/Object.freeze({
37367
37473
  * pollination-server
37368
37474
  * Pollination Server OpenAPI Definition
37369
37475
  *
37370
- * The version of the OpenAPI document: 0.39.0
37476
+ * The version of the OpenAPI document: 0.40.0
37371
37477
  * Contact: info@pollination.cloud
37372
37478
  *
37373
37479
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37386,7 +37492,7 @@ var validationError = /*#__PURE__*/Object.freeze({
37386
37492
  * pollination-server
37387
37493
  * Pollination Server OpenAPI Definition
37388
37494
  *
37389
- * The version of the OpenAPI document: 0.39.0
37495
+ * The version of the OpenAPI document: 0.40.0
37390
37496
  * Contact: info@pollination.cloud
37391
37497
  *
37392
37498
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37405,7 +37511,7 @@ var valueFileReference = /*#__PURE__*/Object.freeze({
37405
37511
  * pollination-server
37406
37512
  * Pollination Server OpenAPI Definition
37407
37513
  *
37408
- * The version of the OpenAPI document: 0.39.0
37514
+ * The version of the OpenAPI document: 0.40.0
37409
37515
  * Contact: info@pollination.cloud
37410
37516
  *
37411
37517
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37424,7 +37530,7 @@ var valueFolderReference = /*#__PURE__*/Object.freeze({
37424
37530
  * pollination-server
37425
37531
  * Pollination Server OpenAPI Definition
37426
37532
  *
37427
- * The version of the OpenAPI document: 0.39.0
37533
+ * The version of the OpenAPI document: 0.40.0
37428
37534
  * Contact: info@pollination.cloud
37429
37535
  *
37430
37536
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37443,7 +37549,7 @@ var valueListReference = /*#__PURE__*/Object.freeze({
37443
37549
  * pollination-server
37444
37550
  * Pollination Server OpenAPI Definition
37445
37551
  *
37446
- * The version of the OpenAPI document: 0.39.0
37552
+ * The version of the OpenAPI document: 0.40.0
37447
37553
  * Contact: info@pollination.cloud
37448
37554
  *
37449
37555
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38210,7 +38316,7 @@ var dist$1 = createCommonjsModule(function (module, exports) {
38210
38316
  * pollination-server
38211
38317
  * Pollination Server OpenAPI Definition
38212
38318
  *
38213
- * The version of the OpenAPI document: 0.39.0
38319
+ * The version of the OpenAPI document: 0.40.0
38214
38320
  * Contact: info@pollination.cloud
38215
38321
  *
38216
38322
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41236,11 +41342,26 @@ var useJobs = function (client) {
41236
41342
  return data;
41237
41343
  });
41238
41344
  }, [client]);
41345
+ var retryFailedRuns = React.useCallback(function (projectOwner, projectName, jobId) {
41346
+ if (!client || !client.jobs)
41347
+ return;
41348
+ return client.jobs
41349
+ .retryJob({
41350
+ owner: projectOwner,
41351
+ name: projectName,
41352
+ jobId: jobId
41353
+ })
41354
+ .then(function (_a) {
41355
+ var data = _a.data;
41356
+ return data;
41357
+ });
41358
+ }, [client]);
41239
41359
  return {
41240
41360
  listJobs: listJobs,
41241
41361
  fetchJob: fetchJob,
41242
41362
  deleteJob: deleteJob,
41243
41363
  cancelJob: cancelJob,
41364
+ retryFailedRuns: retryFailedRuns,
41244
41365
  statusMap: statusMap,
41245
41366
  getDuration: getDuration,
41246
41367
  };
@@ -56118,17 +56239,18 @@ var StudyCard = function (_a) {
56118
56239
  /**
56119
56240
  * Fetch hooks
56120
56241
  */
56121
- var _7 = useJobs(client), fetchJob = _7.fetchJob, getDuration = _7.getDuration, statusMap = _7.statusMap, deleteJob = _7.deleteJob, cancelJob = _7.cancelJob;
56242
+ var _7 = useJobs(client), fetchJob = _7.fetchJob, getDuration = _7.getDuration, statusMap = _7.statusMap, deleteJob = _7.deleteJob, cancelJob = _7.cancelJob, retryFailedRuns = _7.retryFailedRuns;
56122
56243
  var _8 = useRuns(client), listRuns = _8.listRuns, getTrigger = _8.getTrigger;
56123
- var _9 = useWindowDimensions(), width = _9.width; _9.height;
56124
- var _10 = React.useState(false), seeDescription = _10[0], setSeeDescription = _10[1];
56125
- var _11 = React.useState(false), seeAction = _11[0], setSeeAction = _11[1];
56126
- var _12 = React.useState(false), stopRefresh = _12[0], setStopRefresh = _12[1];
56127
- var _13 = React.useState(false), isReady = _13[0], setIsReady = _13[1];
56244
+ var width = useWindowDimensions().width;
56245
+ var _9 = React.useState(false), seeDescription = _9[0], setSeeDescription = _9[1];
56246
+ var _10 = React.useState(false), seeAction = _10[0], setSeeAction = _10[1];
56247
+ var _11 = React.useState(false), stopRefresh = _11[0], setStopRefresh = _11[1];
56248
+ var _12 = React.useState(false), isReady = _12[0], setIsReady = _12[1];
56249
+ var _13 = React.useState(false), retryLoading = _13[0], setRetryLoading = _13[1];
56128
56250
  /**
56129
56251
  * From job to run
56130
56252
  */
56131
- var _14 = useSWR(authUser && _study ? [projectOwner, projectName, _study.id] : undefined, fetchJob, {
56253
+ var study = useSWR(authUser && _study ? [projectOwner, projectName, _study.id] : undefined, fetchJob, {
56132
56254
  revalidateOnFocus: true,
56133
56255
  refreshWhenHidden: true,
56134
56256
  refreshInterval: stopRefresh ? undefined : interval,
@@ -56162,7 +56284,7 @@ var StudyCard = function (_a) {
56162
56284
  if (study.status.finished_at)
56163
56285
  setStopRefresh(true);
56164
56286
  }
56165
- }), study = _14.data; _14.error; _14.isValidating;
56287
+ }).data;
56166
56288
  var sendJob = React.useCallback(function (job) { return getValue(job); }, [study]);
56167
56289
  var total = React.useMemo(function () {
56168
56290
  if (!study)
@@ -56186,8 +56308,8 @@ var StudyCard = function (_a) {
56186
56308
  }
56187
56309
  return study.status.status.toLocaleLowerCase();
56188
56310
  }, [study]);
56189
- var _15 = React.useState(), run = _15[0], setRun = _15[1];
56190
- var _16 = React.useState(getDuration(study)), duration = _16[0], setDuration = _16[1];
56311
+ var _14 = React.useState(), run = _14[0], setRun = _14[1];
56312
+ var _15 = React.useState(getDuration(study)), duration = _15[0], setDuration = _15[1];
56191
56313
  React.useEffect(function () {
56192
56314
  setRun(undefined);
56193
56315
  if (!study)
@@ -56218,7 +56340,7 @@ var StudyCard = function (_a) {
56218
56340
  info: false,
56219
56341
  settings: false
56220
56342
  };
56221
- var _17 = React.useState(__assign(__assign({}, initialValues), (_b = {}, _b[defaultTab] = true, _b))), hover = _17[0], setHover = _17[1];
56343
+ var _16 = React.useState(__assign(__assign({}, initialValues), (_b = {}, _b[defaultTab] = true, _b))), hover = _16[0], setHover = _16[1];
56222
56344
  var toggleHover = React.useCallback(function (id, value) {
56223
56345
  if (value === void 0) { value = false; }
56224
56346
  setHover(function (prevHover) {
@@ -56403,7 +56525,39 @@ var StudyCard = function (_a) {
56403
56525
  .catch(function (e) { return console.log(e); });
56404
56526
  } },
56405
56527
  React__default["default"].createElement(XOctagon$1, { style: { display: 'inline', margin: '0 5px 0 0' } }),
56406
- " Cancel")))));
56528
+ " Cancel"),
56529
+ React__default["default"].createElement(Button, { style: (width > 600) ? { display: 'inline' } : { display: 'inline', float: 'left' }, disabled: !study || (study.status.runs_cancelled < 1 || study.status.runs_failed < 1), loading: retryLoading, onClick: function (e) {
56530
+ setRetryLoading(true);
56531
+ e.stopPropagation();
56532
+ if (!study)
56533
+ return;
56534
+ n$1.promise(retryFailedRuns(projectOwner, projectName, study.id), {
56535
+ loading: 'Retrying failed runs...',
56536
+ success: 'Retried failed runs',
56537
+ error: function (err) {
56538
+ console.log(err);
56539
+ return "Failed to retry failed run: ".concat(err);
56540
+ }
56541
+ }, {
56542
+ style: { minWidth: '300px', fontSize: '12px' },
56543
+ success: {
56544
+ duration: 5000,
56545
+ icon: '🔥',
56546
+ position: 'bottom-left'
56547
+ },
56548
+ error: {
56549
+ duration: 5000,
56550
+ position: 'bottom-left'
56551
+ },
56552
+ loading: {
56553
+ position: 'bottom-left'
56554
+ }
56555
+ }).finally(function () {
56556
+ setRetryLoading(false);
56557
+ });
56558
+ } },
56559
+ React__default["default"].createElement(Recycle$1, { style: { display: 'inline', margin: '0 5px 0 0' } }),
56560
+ " Retry Failed Runs")))));
56407
56561
  };
56408
56562
 
56409
56563
  var RunTabs;
@@ -56442,10 +56596,13 @@ var RunCard = function (_a) {
56442
56596
  var _8 = React.useState(false), stopRefresh = _8[0], setStopRefresh = _8[1];
56443
56597
  var _9 = React.useState(false), isReady = _9[0], setIsReady = _9[1];
56444
56598
  var _10 = React.useState(false), retryLoading = _10[0], setRetryLoading = _10[1];
56599
+ var swrKey = React.useMemo(function () {
56600
+ return authUser && _run ? (!localRun ? [projectOwner, projectName, _run.id] : [_run.id, _run['subfolder']]) : undefined;
56601
+ }, [authUser, _run, localRun, projectOwner, projectName]);
56445
56602
  /*
56446
56603
  * From run and stop when it is done
56447
56604
  */
56448
- var _11 = useSWR(authUser && _run ? (!localRun ? [projectOwner, projectName, _run.id] : [_run.id, _run['subfolder']]) : undefined, localRun ? fetchLocalRun : fetchRun, {
56605
+ var _11 = useSWR(swrKey, localRun ? fetchLocalRun : fetchRun, {
56449
56606
  revalidateOnFocus: true,
56450
56607
  refreshWhenHidden: true,
56451
56608
  refreshInterval: stopRefresh ? undefined : interval,
@@ -56748,7 +56905,9 @@ var RunCard = function (_a) {
56748
56905
  if (!run)
56749
56906
  return;
56750
56907
  cancelRun(projectOwner, projectName, run.id)
56751
- .then(function (d) { return console.log(d); })
56908
+ .then(function (d) {
56909
+ mutate(swrKey);
56910
+ })
56752
56911
  .catch(function (e) { return console.log(e); });
56753
56912
  } },
56754
56913
  React__default["default"].createElement(XOctagon$1, { style: { display: 'inline', margin: '0 5px 0 0' } }),
@@ -56762,14 +56921,15 @@ var RunCard = function (_a) {
56762
56921
  if (!run)
56763
56922
  return;
56764
56923
  n$1.promise(retryRun(projectOwner, projectName, run.id), {
56765
- loading: 'Loading',
56924
+ loading: 'Retrying run...',
56766
56925
  success: function (data) {
56767
56926
  setStopRefresh(false);
56927
+ mutate(swrKey);
56768
56928
  return 'Retry in progress. Please wait.';
56769
56929
  },
56770
56930
  error: function (err) {
56771
56931
  console.log(err);
56772
- return "This just happened: ".concat(err.toString());
56932
+ return "Failed to retry run: ".concat(err);
56773
56933
  },
56774
56934
  }, {
56775
56935
  style: { minWidth: '300px', fontSize: '12px' },