pollination-react-io 1.95.3 → 1.96.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18533,7 +18533,7 @@ var base = createCommonjsModule(function (module, exports) {
18533
18533
  * pollination-server
18534
18534
  * Pollination Server OpenAPI Definition
18535
18535
  *
18536
- * The version of the OpenAPI document: 0.39.0
18536
+ * The version of the OpenAPI document: 0.40.0
18537
18537
  * Contact: info@pollination.cloud
18538
18538
  *
18539
18539
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18595,7 +18595,7 @@ var apitokensApi = createCommonjsModule(function (module, exports) {
18595
18595
  * pollination-server
18596
18596
  * Pollination Server OpenAPI Definition
18597
18597
  *
18598
- * The version of the OpenAPI document: 0.39.0
18598
+ * The version of the OpenAPI document: 0.40.0
18599
18599
  * Contact: info@pollination.cloud
18600
18600
  *
18601
18601
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19028,7 +19028,7 @@ var accountsApi = createCommonjsModule(function (module, exports) {
19028
19028
  * pollination-server
19029
19029
  * Pollination Server OpenAPI Definition
19030
19030
  *
19031
- * The version of the OpenAPI document: 0.39.0
19031
+ * The version of the OpenAPI document: 0.40.0
19032
19032
  * Contact: info@pollination.cloud
19033
19033
  *
19034
19034
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19477,7 +19477,7 @@ var applicationsApi = createCommonjsModule(function (module, exports) {
19477
19477
  * pollination-server
19478
19478
  * Pollination Server OpenAPI Definition
19479
19479
  *
19480
- * The version of the OpenAPI document: 0.39.0
19480
+ * The version of the OpenAPI document: 0.40.0
19481
19481
  * Contact: info@pollination.cloud
19482
19482
  *
19483
19483
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -20856,7 +20856,7 @@ var artifactsApi = createCommonjsModule(function (module, exports) {
20856
20856
  * pollination-server
20857
20857
  * Pollination Server OpenAPI Definition
20858
20858
  *
20859
- * The version of the OpenAPI document: 0.39.0
20859
+ * The version of the OpenAPI document: 0.40.0
20860
20860
  * Contact: info@pollination.cloud
20861
20861
  *
20862
20862
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21367,7 +21367,7 @@ var jobsApi = createCommonjsModule(function (module, exports) {
21367
21367
  * pollination-server
21368
21368
  * Pollination Server OpenAPI Definition
21369
21369
  *
21370
- * The version of the OpenAPI document: 0.39.0
21370
+ * The version of the OpenAPI document: 0.40.0
21371
21371
  * Contact: info@pollination.cloud
21372
21372
  *
21373
21373
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21809,6 +21809,71 @@ const JobsApiAxiosParamCreator = function (configuration) {
21809
21809
  options: localVarRequestOptions,
21810
21810
  };
21811
21811
  }),
21812
+ /**
21813
+ * Retry failed runs for a job.
21814
+ * @summary Retry failed runs for a Job
21815
+ * @param {string} owner
21816
+ * @param {string} name
21817
+ * @param {string} jobId
21818
+ * @param {*} [options] Override http request option.
21819
+ * @throws {RequiredError}
21820
+ */
21821
+ retryJob: (owner, name, jobId, options = {}) => __awaiter(this, void 0, void 0, function* () {
21822
+ // verify required parameter 'owner' is not null or undefined
21823
+ if (owner === null || owner === undefined) {
21824
+ throw new base.RequiredError('owner', 'Required parameter owner was null or undefined when calling retryJob.');
21825
+ }
21826
+ // verify required parameter 'name' is not null or undefined
21827
+ if (name === null || name === undefined) {
21828
+ throw new base.RequiredError('name', 'Required parameter name was null or undefined when calling retryJob.');
21829
+ }
21830
+ // verify required parameter 'jobId' is not null or undefined
21831
+ if (jobId === null || jobId === undefined) {
21832
+ throw new base.RequiredError('jobId', 'Required parameter jobId was null or undefined when calling retryJob.');
21833
+ }
21834
+ const localVarPath = `/projects/{owner}/{name}/jobs/{job_id}/retry`
21835
+ .replace(`{${"owner"}}`, encodeURIComponent(String(owner)))
21836
+ .replace(`{${"name"}}`, encodeURIComponent(String(name)))
21837
+ .replace(`{${"job_id"}}`, encodeURIComponent(String(jobId)));
21838
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
21839
+ const localVarUrlObj = new URL(localVarPath, 'https://example.com');
21840
+ let baseOptions;
21841
+ if (configuration) {
21842
+ baseOptions = configuration.baseOptions;
21843
+ }
21844
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
21845
+ const localVarHeaderParameter = {};
21846
+ const localVarQueryParameter = {};
21847
+ // authentication APIKeyAuth required
21848
+ if (configuration && configuration.apiKey) {
21849
+ const localVarApiKeyValue = typeof configuration.apiKey === 'function'
21850
+ ? yield configuration.apiKey("x-pollination-token")
21851
+ : yield configuration.apiKey;
21852
+ localVarHeaderParameter["x-pollination-token"] = localVarApiKeyValue;
21853
+ }
21854
+ // authentication JWTAuth required
21855
+ // http bearer authentication required
21856
+ if (configuration && configuration.accessToken) {
21857
+ const accessToken = typeof configuration.accessToken === 'function'
21858
+ ? yield configuration.accessToken()
21859
+ : yield configuration.accessToken;
21860
+ localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
21861
+ }
21862
+ const query = new URLSearchParams(localVarUrlObj.search);
21863
+ for (const key in localVarQueryParameter) {
21864
+ query.set(key, localVarQueryParameter[key]);
21865
+ }
21866
+ for (const key in options.query) {
21867
+ query.set(key, options.query[key]);
21868
+ }
21869
+ localVarUrlObj.search = (new URLSearchParams(query)).toString();
21870
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
21871
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
21872
+ return {
21873
+ url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
21874
+ options: localVarRequestOptions,
21875
+ };
21876
+ }),
21812
21877
  /**
21813
21878
  * Retrieve a list of artifacts in a job folder
21814
21879
  * @summary List files/folders in a job folder
@@ -22009,6 +22074,24 @@ const JobsApiFp = function (configuration) {
22009
22074
  };
22010
22075
  });
22011
22076
  },
22077
+ /**
22078
+ * Retry failed runs for a job.
22079
+ * @summary Retry failed runs for a Job
22080
+ * @param {string} owner
22081
+ * @param {string} name
22082
+ * @param {string} jobId
22083
+ * @param {*} [options] Override http request option.
22084
+ * @throws {RequiredError}
22085
+ */
22086
+ retryJob(owner, name, jobId, options) {
22087
+ return __awaiter(this, void 0, void 0, function* () {
22088
+ const localVarAxiosArgs = yield (0, exports.JobsApiAxiosParamCreator)(configuration).retryJob(owner, name, jobId, options);
22089
+ return (axios$1 = axios.default, basePath = base.BASE_PATH) => {
22090
+ const axiosRequestArgs = Object.assign(Object.assign({}, localVarAxiosArgs.options), { url: basePath + localVarAxiosArgs.url });
22091
+ return axios$1.request(axiosRequestArgs);
22092
+ };
22093
+ });
22094
+ },
22012
22095
  /**
22013
22096
  * Retrieve a list of artifacts in a job folder
22014
22097
  * @summary List files/folders in a job folder
@@ -22117,6 +22200,18 @@ const JobsApiFactory = function (configuration, basePath, axios) {
22117
22200
  listJobs(owner, name, ids, status, page, perPage, options) {
22118
22201
  return (0, exports.JobsApiFp)(configuration).listJobs(owner, name, ids, status, page, perPage, options).then((request) => request(axios, basePath));
22119
22202
  },
22203
+ /**
22204
+ * Retry failed runs for a job.
22205
+ * @summary Retry failed runs for a Job
22206
+ * @param {string} owner
22207
+ * @param {string} name
22208
+ * @param {string} jobId
22209
+ * @param {*} [options] Override http request option.
22210
+ * @throws {RequiredError}
22211
+ */
22212
+ retryJob(owner, name, jobId, options) {
22213
+ return (0, exports.JobsApiFp)(configuration).retryJob(owner, name, jobId, options).then((request) => request(axios, basePath));
22214
+ },
22120
22215
  /**
22121
22216
  * Retrieve a list of artifacts in a job folder
22122
22217
  * @summary List files/folders in a job folder
@@ -22208,6 +22303,17 @@ class JobsApi extends base.BaseAPI {
22208
22303
  listJobs(requestParameters, options) {
22209
22304
  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));
22210
22305
  }
22306
+ /**
22307
+ * Retry failed runs for a job.
22308
+ * @summary Retry failed runs for a Job
22309
+ * @param {JobsApiRetryJobRequest} requestParameters Request parameters.
22310
+ * @param {*} [options] Override http request option.
22311
+ * @throws {RequiredError}
22312
+ * @memberof JobsApi
22313
+ */
22314
+ retryJob(requestParameters, options) {
22315
+ return (0, exports.JobsApiFp)(this.configuration).retryJob(requestParameters.owner, requestParameters.name, requestParameters.jobId, options).then((request) => request(this.axios, this.basePath));
22316
+ }
22211
22317
  /**
22212
22318
  * Retrieve a list of artifacts in a job folder
22213
22319
  * @summary List files/folders in a job folder
@@ -22230,7 +22336,7 @@ var licensesApi = createCommonjsModule(function (module, exports) {
22230
22336
  * pollination-server
22231
22337
  * Pollination Server OpenAPI Definition
22232
22338
  *
22233
- * The version of the OpenAPI document: 0.39.0
22339
+ * The version of the OpenAPI document: 0.40.0
22234
22340
  * Contact: info@pollination.cloud
22235
22341
  *
22236
22342
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23053,7 +23159,7 @@ var orgsApi = createCommonjsModule(function (module, exports) {
23053
23159
  * pollination-server
23054
23160
  * Pollination Server OpenAPI Definition
23055
23161
  *
23056
- * The version of the OpenAPI document: 0.39.0
23162
+ * The version of the OpenAPI document: 0.40.0
23057
23163
  * Contact: info@pollination.cloud
23058
23164
  *
23059
23165
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23883,7 +23989,7 @@ var pluginsApi = createCommonjsModule(function (module, exports) {
23883
23989
  * pollination-server
23884
23990
  * Pollination Server OpenAPI Definition
23885
23991
  *
23886
- * The version of the OpenAPI document: 0.39.0
23992
+ * The version of the OpenAPI document: 0.40.0
23887
23993
  * Contact: info@pollination.cloud
23888
23994
  *
23889
23995
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25170,7 +25276,7 @@ var projectsApi = createCommonjsModule(function (module, exports) {
25170
25276
  * pollination-server
25171
25277
  * Pollination Server OpenAPI Definition
25172
25278
  *
25173
- * The version of the OpenAPI document: 0.39.0
25279
+ * The version of the OpenAPI document: 0.40.0
25174
25280
  * Contact: info@pollination.cloud
25175
25281
  *
25176
25282
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26563,7 +26669,7 @@ var recipesApi = createCommonjsModule(function (module, exports) {
26563
26669
  * pollination-server
26564
26670
  * Pollination Server OpenAPI Definition
26565
26671
  *
26566
- * The version of the OpenAPI document: 0.39.0
26672
+ * The version of the OpenAPI document: 0.40.0
26567
26673
  * Contact: info@pollination.cloud
26568
26674
  *
26569
26675
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27850,7 +27956,7 @@ var registriesApi = createCommonjsModule(function (module, exports) {
27850
27956
  * pollination-server
27851
27957
  * Pollination Server OpenAPI Definition
27852
27958
  *
27853
- * The version of the OpenAPI document: 0.39.0
27959
+ * The version of the OpenAPI document: 0.40.0
27854
27960
  * Contact: info@pollination.cloud
27855
27961
  *
27856
27962
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28447,7 +28553,7 @@ var runsApi = createCommonjsModule(function (module, exports) {
28447
28553
  * pollination-server
28448
28554
  * Pollination Server OpenAPI Definition
28449
28555
  *
28450
- * The version of the OpenAPI document: 0.39.0
28556
+ * The version of the OpenAPI document: 0.40.0
28451
28557
  * Contact: info@pollination.cloud
28452
28558
  *
28453
28559
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29788,7 +29894,7 @@ var subscriptionPlansApi = createCommonjsModule(function (module, exports) {
29788
29894
  * pollination-server
29789
29895
  * Pollination Server OpenAPI Definition
29790
29896
  *
29791
- * The version of the OpenAPI document: 0.39.0
29897
+ * The version of the OpenAPI document: 0.40.0
29792
29898
  * Contact: info@pollination.cloud
29793
29899
  *
29794
29900
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29928,7 +30034,7 @@ var subscriptionsApi = createCommonjsModule(function (module, exports) {
29928
30034
  * pollination-server
29929
30035
  * Pollination Server OpenAPI Definition
29930
30036
  *
29931
- * The version of the OpenAPI document: 0.39.0
30037
+ * The version of the OpenAPI document: 0.40.0
29932
30038
  * Contact: info@pollination.cloud
29933
30039
  *
29934
30040
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30735,7 +30841,7 @@ var teamsApi = createCommonjsModule(function (module, exports) {
30735
30841
  * pollination-server
30736
30842
  * Pollination Server OpenAPI Definition
30737
30843
  *
30738
- * The version of the OpenAPI document: 0.39.0
30844
+ * The version of the OpenAPI document: 0.40.0
30739
30845
  * Contact: info@pollination.cloud
30740
30846
  *
30741
30847
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31599,7 +31705,7 @@ var userApi = createCommonjsModule(function (module, exports) {
31599
31705
  * pollination-server
31600
31706
  * Pollination Server OpenAPI Definition
31601
31707
  *
31602
- * The version of the OpenAPI document: 0.39.0
31708
+ * The version of the OpenAPI document: 0.40.0
31603
31709
  * Contact: info@pollination.cloud
31604
31710
  *
31605
31711
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32005,7 +32111,7 @@ var usersApi = createCommonjsModule(function (module, exports) {
32005
32111
  * pollination-server
32006
32112
  * Pollination Server OpenAPI Definition
32007
32113
  *
32008
- * The version of the OpenAPI document: 0.39.0
32114
+ * The version of the OpenAPI document: 0.40.0
32009
32115
  * Contact: info@pollination.cloud
32010
32116
  *
32011
32117
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32307,7 +32413,7 @@ var api = createCommonjsModule(function (module, exports) {
32307
32413
  * pollination-server
32308
32414
  * Pollination Server OpenAPI Definition
32309
32415
  *
32310
- * The version of the OpenAPI document: 0.39.0
32416
+ * The version of the OpenAPI document: 0.40.0
32311
32417
  * Contact: info@pollination.cloud
32312
32418
  *
32313
32419
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32355,7 +32461,7 @@ var configuration = createCommonjsModule(function (module, exports) {
32355
32461
  * pollination-server
32356
32462
  * Pollination Server OpenAPI Definition
32357
32463
  *
32358
- * The version of the OpenAPI document: 0.39.0
32464
+ * The version of the OpenAPI document: 0.40.0
32359
32465
  * Contact: info@pollination.cloud
32360
32466
  *
32361
32467
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32383,7 +32489,7 @@ exports.Configuration = Configuration;
32383
32489
  * pollination-server
32384
32490
  * Pollination Server OpenAPI Definition
32385
32491
  *
32386
- * The version of the OpenAPI document: 0.39.0
32492
+ * The version of the OpenAPI document: 0.40.0
32387
32493
  * Contact: info@pollination.cloud
32388
32494
  *
32389
32495
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32402,7 +32508,7 @@ var apitoken = /*#__PURE__*/Object.freeze({
32402
32508
  * pollination-server
32403
32509
  * Pollination Server OpenAPI Definition
32404
32510
  *
32405
- * The version of the OpenAPI document: 0.39.0
32511
+ * The version of the OpenAPI document: 0.40.0
32406
32512
  * Contact: info@pollination.cloud
32407
32513
  *
32408
32514
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32421,7 +32527,7 @@ var apitokenCreate = /*#__PURE__*/Object.freeze({
32421
32527
  * pollination-server
32422
32528
  * Pollination Server OpenAPI Definition
32423
32529
  *
32424
- * The version of the OpenAPI document: 0.39.0
32530
+ * The version of the OpenAPI document: 0.40.0
32425
32531
  * Contact: info@pollination.cloud
32426
32532
  *
32427
32533
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32440,7 +32546,7 @@ var apitokenList = /*#__PURE__*/Object.freeze({
32440
32546
  * pollination-server
32441
32547
  * Pollination Server OpenAPI Definition
32442
32548
  *
32443
- * The version of the OpenAPI document: 0.39.0
32549
+ * The version of the OpenAPI document: 0.40.0
32444
32550
  * Contact: info@pollination.cloud
32445
32551
  *
32446
32552
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32459,7 +32565,7 @@ var apitokenPrivate = /*#__PURE__*/Object.freeze({
32459
32565
  * pollination-server
32460
32566
  * Pollination Server OpenAPI Definition
32461
32567
  *
32462
- * The version of the OpenAPI document: 0.39.0
32568
+ * The version of the OpenAPI document: 0.40.0
32463
32569
  * Contact: info@pollination.cloud
32464
32570
  *
32465
32571
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32478,7 +32584,7 @@ var accessor = /*#__PURE__*/Object.freeze({
32478
32584
  * pollination-server
32479
32585
  * Pollination Server OpenAPI Definition
32480
32586
  *
32481
- * The version of the OpenAPI document: 0.39.0
32587
+ * The version of the OpenAPI document: 0.40.0
32482
32588
  * Contact: info@pollination.cloud
32483
32589
  *
32484
32590
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32498,7 +32604,7 @@ var accountType = createCommonjsModule(function (module, exports) {
32498
32604
  * pollination-server
32499
32605
  * Pollination Server OpenAPI Definition
32500
32606
  *
32501
- * The version of the OpenAPI document: 0.39.0
32607
+ * The version of the OpenAPI document: 0.40.0
32502
32608
  * Contact: info@pollination.cloud
32503
32609
  *
32504
32610
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32519,7 +32625,7 @@ exports.AccountType = void 0;
32519
32625
  * pollination-server
32520
32626
  * Pollination Server OpenAPI Definition
32521
32627
  *
32522
- * The version of the OpenAPI document: 0.39.0
32628
+ * The version of the OpenAPI document: 0.40.0
32523
32629
  * Contact: info@pollination.cloud
32524
32630
  *
32525
32631
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32538,7 +32644,7 @@ var activation = /*#__PURE__*/Object.freeze({
32538
32644
  * pollination-server
32539
32645
  * Pollination Server OpenAPI Definition
32540
32646
  *
32541
- * The version of the OpenAPI document: 0.39.0
32647
+ * The version of the OpenAPI document: 0.40.0
32542
32648
  * Contact: info@pollination.cloud
32543
32649
  *
32544
32650
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32557,7 +32663,7 @@ var activationList = /*#__PURE__*/Object.freeze({
32557
32663
  * pollination-server
32558
32664
  * Pollination Server OpenAPI Definition
32559
32665
  *
32560
- * The version of the OpenAPI document: 0.39.0
32666
+ * The version of the OpenAPI document: 0.40.0
32561
32667
  * Contact: info@pollination.cloud
32562
32668
  *
32563
32669
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32576,7 +32682,7 @@ var application = /*#__PURE__*/Object.freeze({
32576
32682
  * pollination-server
32577
32683
  * Pollination Server OpenAPI Definition
32578
32684
  *
32579
- * The version of the OpenAPI document: 0.39.0
32685
+ * The version of the OpenAPI document: 0.40.0
32580
32686
  * Contact: info@pollination.cloud
32581
32687
  *
32582
32688
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32595,7 +32701,7 @@ var applicationAccessPolicy = /*#__PURE__*/Object.freeze({
32595
32701
  * pollination-server
32596
32702
  * Pollination Server OpenAPI Definition
32597
32703
  *
32598
- * The version of the OpenAPI document: 0.39.0
32704
+ * The version of the OpenAPI document: 0.40.0
32599
32705
  * Contact: info@pollination.cloud
32600
32706
  *
32601
32707
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32614,7 +32720,7 @@ var applicationAccessPolicyList = /*#__PURE__*/Object.freeze({
32614
32720
  * pollination-server
32615
32721
  * Pollination Server OpenAPI Definition
32616
32722
  *
32617
- * The version of the OpenAPI document: 0.39.0
32723
+ * The version of the OpenAPI document: 0.40.0
32618
32724
  * Contact: info@pollination.cloud
32619
32725
  *
32620
32726
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32633,7 +32739,7 @@ var applicationCreate = /*#__PURE__*/Object.freeze({
32633
32739
  * pollination-server
32634
32740
  * Pollination Server OpenAPI Definition
32635
32741
  *
32636
- * The version of the OpenAPI document: 0.39.0
32742
+ * The version of the OpenAPI document: 0.40.0
32637
32743
  * Contact: info@pollination.cloud
32638
32744
  *
32639
32745
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32652,7 +32758,7 @@ var applicationDeployment = /*#__PURE__*/Object.freeze({
32652
32758
  * pollination-server
32653
32759
  * Pollination Server OpenAPI Definition
32654
32760
  *
32655
- * The version of the OpenAPI document: 0.39.0
32761
+ * The version of the OpenAPI document: 0.40.0
32656
32762
  * Contact: info@pollination.cloud
32657
32763
  *
32658
32764
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32671,7 +32777,7 @@ var applicationList = /*#__PURE__*/Object.freeze({
32671
32777
  * pollination-server
32672
32778
  * Pollination Server OpenAPI Definition
32673
32779
  *
32674
- * The version of the OpenAPI document: 0.39.0
32780
+ * The version of the OpenAPI document: 0.40.0
32675
32781
  * Contact: info@pollination.cloud
32676
32782
  *
32677
32783
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32691,7 +32797,7 @@ var applicationSortKey = createCommonjsModule(function (module, exports) {
32691
32797
  * pollination-server
32692
32798
  * Pollination Server OpenAPI Definition
32693
32799
  *
32694
- * The version of the OpenAPI document: 0.39.0
32800
+ * The version of the OpenAPI document: 0.40.0
32695
32801
  * Contact: info@pollination.cloud
32696
32802
  *
32697
32803
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32713,7 +32819,7 @@ exports.ApplicationSortKey = void 0;
32713
32819
  * pollination-server
32714
32820
  * Pollination Server OpenAPI Definition
32715
32821
  *
32716
- * The version of the OpenAPI document: 0.39.0
32822
+ * The version of the OpenAPI document: 0.40.0
32717
32823
  * Contact: info@pollination.cloud
32718
32824
  *
32719
32825
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32732,7 +32838,7 @@ var applicationUpdate = /*#__PURE__*/Object.freeze({
32732
32838
  * pollination-server
32733
32839
  * Pollination Server OpenAPI Definition
32734
32840
  *
32735
- * The version of the OpenAPI document: 0.39.0
32841
+ * The version of the OpenAPI document: 0.40.0
32736
32842
  * Contact: info@pollination.cloud
32737
32843
  *
32738
32844
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32751,7 +32857,7 @@ var applicationVersion = /*#__PURE__*/Object.freeze({
32751
32857
  * pollination-server
32752
32858
  * Pollination Server OpenAPI Definition
32753
32859
  *
32754
- * The version of the OpenAPI document: 0.39.0
32860
+ * The version of the OpenAPI document: 0.40.0
32755
32861
  * Contact: info@pollination.cloud
32756
32862
  *
32757
32863
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32770,7 +32876,7 @@ var applicationVersionList = /*#__PURE__*/Object.freeze({
32770
32876
  * pollination-server
32771
32877
  * Pollination Server OpenAPI Definition
32772
32878
  *
32773
- * The version of the OpenAPI document: 0.39.0
32879
+ * The version of the OpenAPI document: 0.40.0
32774
32880
  * Contact: info@pollination.cloud
32775
32881
  *
32776
32882
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32789,7 +32895,7 @@ var bakedRecipe = /*#__PURE__*/Object.freeze({
32789
32895
  * pollination-server
32790
32896
  * Pollination Server OpenAPI Definition
32791
32897
  *
32792
- * The version of the OpenAPI document: 0.39.0
32898
+ * The version of the OpenAPI document: 0.40.0
32793
32899
  * Contact: info@pollination.cloud
32794
32900
  *
32795
32901
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32808,7 +32914,7 @@ var billingInfo = /*#__PURE__*/Object.freeze({
32808
32914
  * pollination-server
32809
32915
  * Pollination Server OpenAPI Definition
32810
32916
  *
32811
- * The version of the OpenAPI document: 0.39.0
32917
+ * The version of the OpenAPI document: 0.40.0
32812
32918
  * Contact: info@pollination.cloud
32813
32919
  *
32814
32920
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32827,7 +32933,7 @@ var billingOption = /*#__PURE__*/Object.freeze({
32827
32933
  * pollination-server
32828
32934
  * Pollination Server OpenAPI Definition
32829
32935
  *
32830
- * The version of the OpenAPI document: 0.39.0
32936
+ * The version of the OpenAPI document: 0.40.0
32831
32937
  * Contact: info@pollination.cloud
32832
32938
  *
32833
32939
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32846,7 +32952,7 @@ var bodyCythonFunctionOrMethodOwnerPluginsPost = /*#__PURE__*/Object.freeze({
32846
32952
  * pollination-server
32847
32953
  * Pollination Server OpenAPI Definition
32848
32954
  *
32849
- * The version of the OpenAPI document: 0.39.0
32955
+ * The version of the OpenAPI document: 0.40.0
32850
32956
  * Contact: info@pollination.cloud
32851
32957
  *
32852
32958
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32865,7 +32971,7 @@ var bodyPostRecipeOwnerRecipesPost = /*#__PURE__*/Object.freeze({
32865
32971
  * pollination-server
32866
32972
  * Pollination Server OpenAPI Definition
32867
32973
  *
32868
- * The version of the OpenAPI document: 0.39.0
32974
+ * The version of the OpenAPI document: 0.40.0
32869
32975
  * Contact: info@pollination.cloud
32870
32976
  *
32871
32977
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32885,7 +32991,7 @@ var buildStatusEnum = createCommonjsModule(function (module, exports) {
32885
32991
  * pollination-server
32886
32992
  * Pollination Server OpenAPI Definition
32887
32993
  *
32888
- * The version of the OpenAPI document: 0.39.0
32994
+ * The version of the OpenAPI document: 0.40.0
32889
32995
  * Contact: info@pollination.cloud
32890
32996
  *
32891
32997
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32912,7 +33018,7 @@ var cardType = 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).
@@ -32940,7 +33046,7 @@ exports.CardType = void 0;
32940
33046
  * pollination-server
32941
33047
  * Pollination Server OpenAPI Definition
32942
33048
  *
32943
- * The version of the OpenAPI document: 0.39.0
33049
+ * The version of the OpenAPI document: 0.40.0
32944
33050
  * Contact: info@pollination.cloud
32945
33051
  *
32946
33052
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32959,7 +33065,7 @@ var cloudJob = /*#__PURE__*/Object.freeze({
32959
33065
  * pollination-server
32960
33066
  * Pollination Server OpenAPI Definition
32961
33067
  *
32962
- * The version of the OpenAPI document: 0.39.0
33068
+ * The version of the OpenAPI document: 0.40.0
32963
33069
  * Contact: info@pollination.cloud
32964
33070
  *
32965
33071
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32978,7 +33084,7 @@ var cloudJobList = /*#__PURE__*/Object.freeze({
32978
33084
  * pollination-server
32979
33085
  * Pollination Server OpenAPI Definition
32980
33086
  *
32981
- * The version of the OpenAPI document: 0.39.0
33087
+ * The version of the OpenAPI document: 0.40.0
32982
33088
  * Contact: info@pollination.cloud
32983
33089
  *
32984
33090
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32997,7 +33103,7 @@ var createdContent = /*#__PURE__*/Object.freeze({
32997
33103
  * pollination-server
32998
33104
  * Pollination Server OpenAPI Definition
32999
33105
  *
33000
- * The version of the OpenAPI document: 0.39.0
33106
+ * The version of the OpenAPI document: 0.40.0
33001
33107
  * Contact: info@pollination.cloud
33002
33108
  *
33003
33109
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33016,7 +33122,7 @@ var dag = /*#__PURE__*/Object.freeze({
33016
33122
  * pollination-server
33017
33123
  * Pollination Server OpenAPI Definition
33018
33124
  *
33019
- * The version of the OpenAPI document: 0.39.0
33125
+ * The version of the OpenAPI document: 0.40.0
33020
33126
  * Contact: info@pollination.cloud
33021
33127
  *
33022
33128
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33035,7 +33141,7 @@ var dagarrayInput = /*#__PURE__*/Object.freeze({
33035
33141
  * pollination-server
33036
33142
  * Pollination Server OpenAPI Definition
33037
33143
  *
33038
- * The version of the OpenAPI document: 0.39.0
33144
+ * The version of the OpenAPI document: 0.40.0
33039
33145
  * Contact: info@pollination.cloud
33040
33146
  *
33041
33147
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33054,7 +33160,7 @@ var dagarrayInputAlias = /*#__PURE__*/Object.freeze({
33054
33160
  * pollination-server
33055
33161
  * Pollination Server OpenAPI Definition
33056
33162
  *
33057
- * The version of the OpenAPI document: 0.39.0
33163
+ * The version of the OpenAPI document: 0.40.0
33058
33164
  * Contact: info@pollination.cloud
33059
33165
  *
33060
33166
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33073,7 +33179,7 @@ var dagarrayOutput = /*#__PURE__*/Object.freeze({
33073
33179
  * pollination-server
33074
33180
  * Pollination Server OpenAPI Definition
33075
33181
  *
33076
- * The version of the OpenAPI document: 0.39.0
33182
+ * The version of the OpenAPI document: 0.40.0
33077
33183
  * Contact: info@pollination.cloud
33078
33184
  *
33079
33185
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33092,7 +33198,7 @@ var dagarrayOutputAlias = /*#__PURE__*/Object.freeze({
33092
33198
  * pollination-server
33093
33199
  * Pollination Server OpenAPI Definition
33094
33200
  *
33095
- * The version of the OpenAPI document: 0.39.0
33201
+ * The version of the OpenAPI document: 0.40.0
33096
33202
  * Contact: info@pollination.cloud
33097
33203
  *
33098
33204
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33111,7 +33217,7 @@ var dagbooleanInput = /*#__PURE__*/Object.freeze({
33111
33217
  * pollination-server
33112
33218
  * Pollination Server OpenAPI Definition
33113
33219
  *
33114
- * The version of the OpenAPI document: 0.39.0
33220
+ * The version of the OpenAPI document: 0.40.0
33115
33221
  * Contact: info@pollination.cloud
33116
33222
  *
33117
33223
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33130,7 +33236,7 @@ var dagbooleanInputAlias = /*#__PURE__*/Object.freeze({
33130
33236
  * pollination-server
33131
33237
  * Pollination Server OpenAPI Definition
33132
33238
  *
33133
- * The version of the OpenAPI document: 0.39.0
33239
+ * The version of the OpenAPI document: 0.40.0
33134
33240
  * Contact: info@pollination.cloud
33135
33241
  *
33136
33242
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33149,7 +33255,7 @@ var dagbooleanOutput = /*#__PURE__*/Object.freeze({
33149
33255
  * pollination-server
33150
33256
  * Pollination Server OpenAPI Definition
33151
33257
  *
33152
- * The version of the OpenAPI document: 0.39.0
33258
+ * The version of the OpenAPI document: 0.40.0
33153
33259
  * Contact: info@pollination.cloud
33154
33260
  *
33155
33261
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33168,7 +33274,7 @@ var dagbooleanOutputAlias = /*#__PURE__*/Object.freeze({
33168
33274
  * pollination-server
33169
33275
  * Pollination Server OpenAPI Definition
33170
33276
  *
33171
- * The version of the OpenAPI document: 0.39.0
33277
+ * The version of the OpenAPI document: 0.40.0
33172
33278
  * Contact: info@pollination.cloud
33173
33279
  *
33174
33280
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33187,7 +33293,7 @@ var dagfileInput = /*#__PURE__*/Object.freeze({
33187
33293
  * pollination-server
33188
33294
  * Pollination Server OpenAPI Definition
33189
33295
  *
33190
- * The version of the OpenAPI document: 0.39.0
33296
+ * The version of the OpenAPI document: 0.40.0
33191
33297
  * Contact: info@pollination.cloud
33192
33298
  *
33193
33299
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33206,7 +33312,7 @@ var dagfileInputAlias = /*#__PURE__*/Object.freeze({
33206
33312
  * pollination-server
33207
33313
  * Pollination Server OpenAPI Definition
33208
33314
  *
33209
- * The version of the OpenAPI document: 0.39.0
33315
+ * The version of the OpenAPI document: 0.40.0
33210
33316
  * Contact: info@pollination.cloud
33211
33317
  *
33212
33318
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33225,7 +33331,7 @@ var dagfileOutput = /*#__PURE__*/Object.freeze({
33225
33331
  * pollination-server
33226
33332
  * Pollination Server OpenAPI Definition
33227
33333
  *
33228
- * The version of the OpenAPI document: 0.39.0
33334
+ * The version of the OpenAPI document: 0.40.0
33229
33335
  * Contact: info@pollination.cloud
33230
33336
  *
33231
33337
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33244,7 +33350,7 @@ var dagfileOutputAlias = /*#__PURE__*/Object.freeze({
33244
33350
  * pollination-server
33245
33351
  * Pollination Server OpenAPI Definition
33246
33352
  *
33247
- * The version of the OpenAPI document: 0.39.0
33353
+ * The version of the OpenAPI document: 0.40.0
33248
33354
  * Contact: info@pollination.cloud
33249
33355
  *
33250
33356
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33263,7 +33369,7 @@ var dagfolderInput = /*#__PURE__*/Object.freeze({
33263
33369
  * pollination-server
33264
33370
  * Pollination Server OpenAPI Definition
33265
33371
  *
33266
- * The version of the OpenAPI document: 0.39.0
33372
+ * The version of the OpenAPI document: 0.40.0
33267
33373
  * Contact: info@pollination.cloud
33268
33374
  *
33269
33375
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33282,7 +33388,7 @@ var dagfolderInputAlias = /*#__PURE__*/Object.freeze({
33282
33388
  * pollination-server
33283
33389
  * Pollination Server OpenAPI Definition
33284
33390
  *
33285
- * The version of the OpenAPI document: 0.39.0
33391
+ * The version of the OpenAPI document: 0.40.0
33286
33392
  * Contact: info@pollination.cloud
33287
33393
  *
33288
33394
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33301,7 +33407,7 @@ var dagfolderOutput = /*#__PURE__*/Object.freeze({
33301
33407
  * pollination-server
33302
33408
  * Pollination Server OpenAPI Definition
33303
33409
  *
33304
- * The version of the OpenAPI document: 0.39.0
33410
+ * The version of the OpenAPI document: 0.40.0
33305
33411
  * Contact: info@pollination.cloud
33306
33412
  *
33307
33413
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33320,7 +33426,7 @@ var dagfolderOutputAlias = /*#__PURE__*/Object.freeze({
33320
33426
  * pollination-server
33321
33427
  * Pollination Server OpenAPI Definition
33322
33428
  *
33323
- * The version of the OpenAPI document: 0.39.0
33429
+ * The version of the OpenAPI document: 0.40.0
33324
33430
  * Contact: info@pollination.cloud
33325
33431
  *
33326
33432
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33339,7 +33445,7 @@ var daggenericInput = /*#__PURE__*/Object.freeze({
33339
33445
  * pollination-server
33340
33446
  * Pollination Server OpenAPI Definition
33341
33447
  *
33342
- * The version of the OpenAPI document: 0.39.0
33448
+ * The version of the OpenAPI document: 0.40.0
33343
33449
  * Contact: info@pollination.cloud
33344
33450
  *
33345
33451
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33358,7 +33464,7 @@ var daggenericInputAlias = /*#__PURE__*/Object.freeze({
33358
33464
  * pollination-server
33359
33465
  * Pollination Server OpenAPI Definition
33360
33466
  *
33361
- * The version of the OpenAPI document: 0.39.0
33467
+ * The version of the OpenAPI document: 0.40.0
33362
33468
  * Contact: info@pollination.cloud
33363
33469
  *
33364
33470
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33377,7 +33483,7 @@ var daggenericOutput = /*#__PURE__*/Object.freeze({
33377
33483
  * pollination-server
33378
33484
  * Pollination Server OpenAPI Definition
33379
33485
  *
33380
- * The version of the OpenAPI document: 0.39.0
33486
+ * The version of the OpenAPI document: 0.40.0
33381
33487
  * Contact: info@pollination.cloud
33382
33488
  *
33383
33489
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33396,7 +33502,7 @@ var daggenericOutputAlias = /*#__PURE__*/Object.freeze({
33396
33502
  * pollination-server
33397
33503
  * Pollination Server OpenAPI Definition
33398
33504
  *
33399
- * The version of the OpenAPI document: 0.39.0
33505
+ * The version of the OpenAPI document: 0.40.0
33400
33506
  * Contact: info@pollination.cloud
33401
33507
  *
33402
33508
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33415,7 +33521,7 @@ var dagintegerInput = /*#__PURE__*/Object.freeze({
33415
33521
  * pollination-server
33416
33522
  * Pollination Server OpenAPI Definition
33417
33523
  *
33418
- * The version of the OpenAPI document: 0.39.0
33524
+ * The version of the OpenAPI document: 0.40.0
33419
33525
  * Contact: info@pollination.cloud
33420
33526
  *
33421
33527
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33434,7 +33540,7 @@ var dagintegerInputAlias = /*#__PURE__*/Object.freeze({
33434
33540
  * pollination-server
33435
33541
  * Pollination Server OpenAPI Definition
33436
33542
  *
33437
- * The version of the OpenAPI document: 0.39.0
33543
+ * The version of the OpenAPI document: 0.40.0
33438
33544
  * Contact: info@pollination.cloud
33439
33545
  *
33440
33546
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33453,7 +33559,7 @@ var dagintegerOutput = /*#__PURE__*/Object.freeze({
33453
33559
  * pollination-server
33454
33560
  * Pollination Server OpenAPI Definition
33455
33561
  *
33456
- * The version of the OpenAPI document: 0.39.0
33562
+ * The version of the OpenAPI document: 0.40.0
33457
33563
  * Contact: info@pollination.cloud
33458
33564
  *
33459
33565
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33472,7 +33578,7 @@ var dagintegerOutputAlias = /*#__PURE__*/Object.freeze({
33472
33578
  * pollination-server
33473
33579
  * Pollination Server OpenAPI Definition
33474
33580
  *
33475
- * The version of the OpenAPI document: 0.39.0
33581
+ * The version of the OpenAPI document: 0.40.0
33476
33582
  * Contact: info@pollination.cloud
33477
33583
  *
33478
33584
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33491,7 +33597,7 @@ var dagjsonobjectInput = /*#__PURE__*/Object.freeze({
33491
33597
  * pollination-server
33492
33598
  * Pollination Server OpenAPI Definition
33493
33599
  *
33494
- * The version of the OpenAPI document: 0.39.0
33600
+ * The version of the OpenAPI document: 0.40.0
33495
33601
  * Contact: info@pollination.cloud
33496
33602
  *
33497
33603
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33510,7 +33616,7 @@ var dagjsonobjectInputAlias = /*#__PURE__*/Object.freeze({
33510
33616
  * pollination-server
33511
33617
  * Pollination Server OpenAPI Definition
33512
33618
  *
33513
- * The version of the OpenAPI document: 0.39.0
33619
+ * The version of the OpenAPI document: 0.40.0
33514
33620
  * Contact: info@pollination.cloud
33515
33621
  *
33516
33622
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33529,7 +33635,7 @@ var dagjsonobjectOutput = /*#__PURE__*/Object.freeze({
33529
33635
  * pollination-server
33530
33636
  * Pollination Server OpenAPI Definition
33531
33637
  *
33532
- * The version of the OpenAPI document: 0.39.0
33638
+ * The version of the OpenAPI document: 0.40.0
33533
33639
  * Contact: info@pollination.cloud
33534
33640
  *
33535
33641
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33548,7 +33654,7 @@ var dagjsonobjectOutputAlias = /*#__PURE__*/Object.freeze({
33548
33654
  * pollination-server
33549
33655
  * Pollination Server OpenAPI Definition
33550
33656
  *
33551
- * The version of the OpenAPI document: 0.39.0
33657
+ * The version of the OpenAPI document: 0.40.0
33552
33658
  * Contact: info@pollination.cloud
33553
33659
  *
33554
33660
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33567,7 +33673,7 @@ var daglinkedInputAlias = /*#__PURE__*/Object.freeze({
33567
33673
  * pollination-server
33568
33674
  * Pollination Server OpenAPI Definition
33569
33675
  *
33570
- * The version of the OpenAPI document: 0.39.0
33676
+ * The version of the OpenAPI document: 0.40.0
33571
33677
  * Contact: info@pollination.cloud
33572
33678
  *
33573
33679
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33586,7 +33692,7 @@ var daglinkedOutputAlias = /*#__PURE__*/Object.freeze({
33586
33692
  * pollination-server
33587
33693
  * Pollination Server OpenAPI Definition
33588
33694
  *
33589
- * The version of the OpenAPI document: 0.39.0
33695
+ * The version of the OpenAPI document: 0.40.0
33590
33696
  * Contact: info@pollination.cloud
33591
33697
  *
33592
33698
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33605,7 +33711,7 @@ var dagnumberInput = /*#__PURE__*/Object.freeze({
33605
33711
  * pollination-server
33606
33712
  * Pollination Server OpenAPI Definition
33607
33713
  *
33608
- * The version of the OpenAPI document: 0.39.0
33714
+ * The version of the OpenAPI document: 0.40.0
33609
33715
  * Contact: info@pollination.cloud
33610
33716
  *
33611
33717
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33624,7 +33730,7 @@ var dagnumberInputAlias = /*#__PURE__*/Object.freeze({
33624
33730
  * pollination-server
33625
33731
  * Pollination Server OpenAPI Definition
33626
33732
  *
33627
- * The version of the OpenAPI document: 0.39.0
33733
+ * The version of the OpenAPI document: 0.40.0
33628
33734
  * Contact: info@pollination.cloud
33629
33735
  *
33630
33736
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33643,7 +33749,7 @@ var dagnumberOutput = /*#__PURE__*/Object.freeze({
33643
33749
  * pollination-server
33644
33750
  * Pollination Server OpenAPI Definition
33645
33751
  *
33646
- * The version of the OpenAPI document: 0.39.0
33752
+ * The version of the OpenAPI document: 0.40.0
33647
33753
  * Contact: info@pollination.cloud
33648
33754
  *
33649
33755
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33662,7 +33768,7 @@ var dagnumberOutputAlias = /*#__PURE__*/Object.freeze({
33662
33768
  * pollination-server
33663
33769
  * Pollination Server OpenAPI Definition
33664
33770
  *
33665
- * The version of the OpenAPI document: 0.39.0
33771
+ * The version of the OpenAPI document: 0.40.0
33666
33772
  * Contact: info@pollination.cloud
33667
33773
  *
33668
33774
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33681,7 +33787,7 @@ var dagpathInput = /*#__PURE__*/Object.freeze({
33681
33787
  * pollination-server
33682
33788
  * Pollination Server OpenAPI Definition
33683
33789
  *
33684
- * The version of the OpenAPI document: 0.39.0
33790
+ * The version of the OpenAPI document: 0.40.0
33685
33791
  * Contact: info@pollination.cloud
33686
33792
  *
33687
33793
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33700,7 +33806,7 @@ var dagpathInputAlias = /*#__PURE__*/Object.freeze({
33700
33806
  * pollination-server
33701
33807
  * Pollination Server OpenAPI Definition
33702
33808
  *
33703
- * The version of the OpenAPI document: 0.39.0
33809
+ * The version of the OpenAPI document: 0.40.0
33704
33810
  * Contact: info@pollination.cloud
33705
33811
  *
33706
33812
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33719,7 +33825,7 @@ var dagpathOutput = /*#__PURE__*/Object.freeze({
33719
33825
  * pollination-server
33720
33826
  * Pollination Server OpenAPI Definition
33721
33827
  *
33722
- * The version of the OpenAPI document: 0.39.0
33828
+ * The version of the OpenAPI document: 0.40.0
33723
33829
  * Contact: info@pollination.cloud
33724
33830
  *
33725
33831
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33738,7 +33844,7 @@ var dagpathOutputAlias = /*#__PURE__*/Object.freeze({
33738
33844
  * pollination-server
33739
33845
  * Pollination Server OpenAPI Definition
33740
33846
  *
33741
- * The version of the OpenAPI document: 0.39.0
33847
+ * The version of the OpenAPI document: 0.40.0
33742
33848
  * Contact: info@pollination.cloud
33743
33849
  *
33744
33850
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33757,7 +33863,7 @@ var dagstringInput = /*#__PURE__*/Object.freeze({
33757
33863
  * pollination-server
33758
33864
  * Pollination Server OpenAPI Definition
33759
33865
  *
33760
- * The version of the OpenAPI document: 0.39.0
33866
+ * The version of the OpenAPI document: 0.40.0
33761
33867
  * Contact: info@pollination.cloud
33762
33868
  *
33763
33869
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33776,7 +33882,7 @@ var dagstringInputAlias = /*#__PURE__*/Object.freeze({
33776
33882
  * pollination-server
33777
33883
  * Pollination Server OpenAPI Definition
33778
33884
  *
33779
- * The version of the OpenAPI document: 0.39.0
33885
+ * The version of the OpenAPI document: 0.40.0
33780
33886
  * Contact: info@pollination.cloud
33781
33887
  *
33782
33888
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33795,7 +33901,7 @@ var dagstringOutput = /*#__PURE__*/Object.freeze({
33795
33901
  * pollination-server
33796
33902
  * Pollination Server OpenAPI Definition
33797
33903
  *
33798
- * The version of the OpenAPI document: 0.39.0
33904
+ * The version of the OpenAPI document: 0.40.0
33799
33905
  * Contact: info@pollination.cloud
33800
33906
  *
33801
33907
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33814,7 +33920,7 @@ var dagstringOutputAlias = /*#__PURE__*/Object.freeze({
33814
33920
  * pollination-server
33815
33921
  * Pollination Server OpenAPI Definition
33816
33922
  *
33817
- * The version of the OpenAPI document: 0.39.0
33923
+ * The version of the OpenAPI document: 0.40.0
33818
33924
  * Contact: info@pollination.cloud
33819
33925
  *
33820
33926
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33833,7 +33939,7 @@ var dagtask = /*#__PURE__*/Object.freeze({
33833
33939
  * pollination-server
33834
33940
  * Pollination Server OpenAPI Definition
33835
33941
  *
33836
- * The version of the OpenAPI document: 0.39.0
33942
+ * The version of the OpenAPI document: 0.40.0
33837
33943
  * Contact: info@pollination.cloud
33838
33944
  *
33839
33945
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33852,7 +33958,7 @@ var dagtaskLoop = /*#__PURE__*/Object.freeze({
33852
33958
  * pollination-server
33853
33959
  * Pollination Server OpenAPI Definition
33854
33960
  *
33855
- * The version of the OpenAPI document: 0.39.0
33961
+ * The version of the OpenAPI document: 0.40.0
33856
33962
  * Contact: info@pollination.cloud
33857
33963
  *
33858
33964
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33871,7 +33977,7 @@ var dailyUsage = /*#__PURE__*/Object.freeze({
33871
33977
  * pollination-server
33872
33978
  * Pollination Server OpenAPI Definition
33873
33979
  *
33874
- * The version of the OpenAPI document: 0.39.0
33980
+ * The version of the OpenAPI document: 0.40.0
33875
33981
  * Contact: info@pollination.cloud
33876
33982
  *
33877
33983
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33891,7 +33997,7 @@ var dependencyKind = createCommonjsModule(function (module, exports) {
33891
33997
  * pollination-server
33892
33998
  * Pollination Server OpenAPI Definition
33893
33999
  *
33894
- * The version of the OpenAPI document: 0.39.0
34000
+ * The version of the OpenAPI document: 0.40.0
33895
34001
  * Contact: info@pollination.cloud
33896
34002
  *
33897
34003
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33912,7 +34018,7 @@ exports.DependencyKind = void 0;
33912
34018
  * pollination-server
33913
34019
  * Pollination Server OpenAPI Definition
33914
34020
  *
33915
- * The version of the OpenAPI document: 0.39.0
34021
+ * The version of the OpenAPI document: 0.40.0
33916
34022
  * Contact: info@pollination.cloud
33917
34023
  *
33918
34024
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33931,7 +34037,7 @@ var deploymentConfig = /*#__PURE__*/Object.freeze({
33931
34037
  * pollination-server
33932
34038
  * Pollination Server OpenAPI Definition
33933
34039
  *
33934
- * The version of the OpenAPI document: 0.39.0
34040
+ * The version of the OpenAPI document: 0.40.0
33935
34041
  * Contact: info@pollination.cloud
33936
34042
  *
33937
34043
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33950,7 +34056,7 @@ var dockerConfig = /*#__PURE__*/Object.freeze({
33950
34056
  * pollination-server
33951
34057
  * Pollination Server OpenAPI Definition
33952
34058
  *
33953
- * The version of the OpenAPI document: 0.39.0
34059
+ * The version of the OpenAPI document: 0.40.0
33954
34060
  * Contact: info@pollination.cloud
33955
34061
  *
33956
34062
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33969,7 +34075,7 @@ var fileMeta = /*#__PURE__*/Object.freeze({
33969
34075
  * pollination-server
33970
34076
  * Pollination Server OpenAPI Definition
33971
34077
  *
33972
- * The version of the OpenAPI document: 0.39.0
34078
+ * The version of the OpenAPI document: 0.40.0
33973
34079
  * Contact: info@pollination.cloud
33974
34080
  *
33975
34081
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33988,7 +34094,7 @@ var fileReference = /*#__PURE__*/Object.freeze({
33988
34094
  * pollination-server
33989
34095
  * Pollination Server OpenAPI Definition
33990
34096
  *
33991
- * The version of the OpenAPI document: 0.39.0
34097
+ * The version of the OpenAPI document: 0.40.0
33992
34098
  * Contact: info@pollination.cloud
33993
34099
  *
33994
34100
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34007,7 +34113,7 @@ var folderReference = /*#__PURE__*/Object.freeze({
34007
34113
  * pollination-server
34008
34114
  * Pollination Server OpenAPI Definition
34009
34115
  *
34010
- * The version of the OpenAPI document: 0.39.0
34116
+ * The version of the OpenAPI document: 0.40.0
34011
34117
  * Contact: info@pollination.cloud
34012
34118
  *
34013
34119
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34026,7 +34132,7 @@ var _function = /*#__PURE__*/Object.freeze({
34026
34132
  * pollination-server
34027
34133
  * Pollination Server OpenAPI Definition
34028
34134
  *
34029
- * The version of the OpenAPI document: 0.39.0
34135
+ * The version of the OpenAPI document: 0.40.0
34030
34136
  * Contact: info@pollination.cloud
34031
34137
  *
34032
34138
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34045,7 +34151,7 @@ var functionArrayInput = /*#__PURE__*/Object.freeze({
34045
34151
  * pollination-server
34046
34152
  * Pollination Server OpenAPI Definition
34047
34153
  *
34048
- * The version of the OpenAPI document: 0.39.0
34154
+ * The version of the OpenAPI document: 0.40.0
34049
34155
  * Contact: info@pollination.cloud
34050
34156
  *
34051
34157
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34064,7 +34170,7 @@ var functionArrayOutput = /*#__PURE__*/Object.freeze({
34064
34170
  * pollination-server
34065
34171
  * Pollination Server OpenAPI Definition
34066
34172
  *
34067
- * The version of the OpenAPI document: 0.39.0
34173
+ * The version of the OpenAPI document: 0.40.0
34068
34174
  * Contact: info@pollination.cloud
34069
34175
  *
34070
34176
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34083,7 +34189,7 @@ var functionBooleanInput = /*#__PURE__*/Object.freeze({
34083
34189
  * pollination-server
34084
34190
  * Pollination Server OpenAPI Definition
34085
34191
  *
34086
- * The version of the OpenAPI document: 0.39.0
34192
+ * The version of the OpenAPI document: 0.40.0
34087
34193
  * Contact: info@pollination.cloud
34088
34194
  *
34089
34195
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34102,7 +34208,7 @@ var functionBooleanOutput = /*#__PURE__*/Object.freeze({
34102
34208
  * pollination-server
34103
34209
  * Pollination Server OpenAPI Definition
34104
34210
  *
34105
- * The version of the OpenAPI document: 0.39.0
34211
+ * The version of the OpenAPI document: 0.40.0
34106
34212
  * Contact: info@pollination.cloud
34107
34213
  *
34108
34214
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34121,7 +34227,7 @@ var functionFileInput = /*#__PURE__*/Object.freeze({
34121
34227
  * pollination-server
34122
34228
  * Pollination Server OpenAPI Definition
34123
34229
  *
34124
- * The version of the OpenAPI document: 0.39.0
34230
+ * The version of the OpenAPI document: 0.40.0
34125
34231
  * Contact: info@pollination.cloud
34126
34232
  *
34127
34233
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34140,7 +34246,7 @@ var functionFileOutput = /*#__PURE__*/Object.freeze({
34140
34246
  * pollination-server
34141
34247
  * Pollination Server OpenAPI Definition
34142
34248
  *
34143
- * The version of the OpenAPI document: 0.39.0
34249
+ * The version of the OpenAPI document: 0.40.0
34144
34250
  * Contact: info@pollination.cloud
34145
34251
  *
34146
34252
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34159,7 +34265,7 @@ var functionFolderInput = /*#__PURE__*/Object.freeze({
34159
34265
  * pollination-server
34160
34266
  * Pollination Server OpenAPI Definition
34161
34267
  *
34162
- * The version of the OpenAPI document: 0.39.0
34268
+ * The version of the OpenAPI document: 0.40.0
34163
34269
  * Contact: info@pollination.cloud
34164
34270
  *
34165
34271
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34178,7 +34284,7 @@ var functionFolderOutput = /*#__PURE__*/Object.freeze({
34178
34284
  * pollination-server
34179
34285
  * Pollination Server OpenAPI Definition
34180
34286
  *
34181
- * The version of the OpenAPI document: 0.39.0
34287
+ * The version of the OpenAPI document: 0.40.0
34182
34288
  * Contact: info@pollination.cloud
34183
34289
  *
34184
34290
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34197,7 +34303,7 @@ var functionIntegerInput = /*#__PURE__*/Object.freeze({
34197
34303
  * pollination-server
34198
34304
  * Pollination Server OpenAPI Definition
34199
34305
  *
34200
- * The version of the OpenAPI document: 0.39.0
34306
+ * The version of the OpenAPI document: 0.40.0
34201
34307
  * Contact: info@pollination.cloud
34202
34308
  *
34203
34309
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34216,7 +34322,7 @@ var functionIntegerOutput = /*#__PURE__*/Object.freeze({
34216
34322
  * pollination-server
34217
34323
  * Pollination Server OpenAPI Definition
34218
34324
  *
34219
- * The version of the OpenAPI document: 0.39.0
34325
+ * The version of the OpenAPI document: 0.40.0
34220
34326
  * Contact: info@pollination.cloud
34221
34327
  *
34222
34328
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34235,7 +34341,7 @@ var functionJsonobjectInput = /*#__PURE__*/Object.freeze({
34235
34341
  * pollination-server
34236
34342
  * Pollination Server OpenAPI Definition
34237
34343
  *
34238
- * The version of the OpenAPI document: 0.39.0
34344
+ * The version of the OpenAPI document: 0.40.0
34239
34345
  * Contact: info@pollination.cloud
34240
34346
  *
34241
34347
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34254,7 +34360,7 @@ var functionJsonobjectOutput = /*#__PURE__*/Object.freeze({
34254
34360
  * pollination-server
34255
34361
  * Pollination Server OpenAPI Definition
34256
34362
  *
34257
- * The version of the OpenAPI document: 0.39.0
34363
+ * The version of the OpenAPI document: 0.40.0
34258
34364
  * Contact: info@pollination.cloud
34259
34365
  *
34260
34366
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34273,7 +34379,7 @@ var functionNumberInput = /*#__PURE__*/Object.freeze({
34273
34379
  * pollination-server
34274
34380
  * Pollination Server OpenAPI Definition
34275
34381
  *
34276
- * The version of the OpenAPI document: 0.39.0
34382
+ * The version of the OpenAPI document: 0.40.0
34277
34383
  * Contact: info@pollination.cloud
34278
34384
  *
34279
34385
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34292,7 +34398,7 @@ var functionNumberOutput = /*#__PURE__*/Object.freeze({
34292
34398
  * pollination-server
34293
34399
  * Pollination Server OpenAPI Definition
34294
34400
  *
34295
- * The version of the OpenAPI document: 0.39.0
34401
+ * The version of the OpenAPI document: 0.40.0
34296
34402
  * Contact: info@pollination.cloud
34297
34403
  *
34298
34404
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34311,7 +34417,7 @@ var functionPathInput = /*#__PURE__*/Object.freeze({
34311
34417
  * pollination-server
34312
34418
  * Pollination Server OpenAPI Definition
34313
34419
  *
34314
- * The version of the OpenAPI document: 0.39.0
34420
+ * The version of the OpenAPI document: 0.40.0
34315
34421
  * Contact: info@pollination.cloud
34316
34422
  *
34317
34423
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34330,7 +34436,7 @@ var functionPathOutput = /*#__PURE__*/Object.freeze({
34330
34436
  * pollination-server
34331
34437
  * Pollination Server OpenAPI Definition
34332
34438
  *
34333
- * The version of the OpenAPI document: 0.39.0
34439
+ * The version of the OpenAPI document: 0.40.0
34334
34440
  * Contact: info@pollination.cloud
34335
34441
  *
34336
34442
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34349,7 +34455,7 @@ var functionStringInput = /*#__PURE__*/Object.freeze({
34349
34455
  * pollination-server
34350
34456
  * Pollination Server OpenAPI Definition
34351
34457
  *
34352
- * The version of the OpenAPI document: 0.39.0
34458
+ * The version of the OpenAPI document: 0.40.0
34353
34459
  * Contact: info@pollination.cloud
34354
34460
  *
34355
34461
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34368,7 +34474,7 @@ var functionStringOutput = /*#__PURE__*/Object.freeze({
34368
34474
  * pollination-server
34369
34475
  * Pollination Server OpenAPI Definition
34370
34476
  *
34371
- * The version of the OpenAPI document: 0.39.0
34477
+ * The version of the OpenAPI document: 0.40.0
34372
34478
  * Contact: info@pollination.cloud
34373
34479
  *
34374
34480
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34387,7 +34493,7 @@ var http = /*#__PURE__*/Object.freeze({
34387
34493
  * pollination-server
34388
34494
  * Pollination Server OpenAPI Definition
34389
34495
  *
34390
- * The version of the OpenAPI document: 0.39.0
34496
+ * The version of the OpenAPI document: 0.40.0
34391
34497
  * Contact: info@pollination.cloud
34392
34498
  *
34393
34499
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34406,7 +34512,7 @@ var httpvalidationError = /*#__PURE__*/Object.freeze({
34406
34512
  * pollination-server
34407
34513
  * Pollination Server OpenAPI Definition
34408
34514
  *
34409
- * The version of the OpenAPI document: 0.39.0
34515
+ * The version of the OpenAPI document: 0.40.0
34410
34516
  * Contact: info@pollination.cloud
34411
34517
  *
34412
34518
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34425,7 +34531,7 @@ var ioaliasHandler = /*#__PURE__*/Object.freeze({
34425
34531
  * pollination-server
34426
34532
  * Pollination Server OpenAPI Definition
34427
34533
  *
34428
- * The version of the OpenAPI document: 0.39.0
34534
+ * The version of the OpenAPI document: 0.40.0
34429
34535
  * Contact: info@pollination.cloud
34430
34536
  *
34431
34537
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34444,7 +34550,7 @@ var inputFileReference = /*#__PURE__*/Object.freeze({
34444
34550
  * pollination-server
34445
34551
  * Pollination Server OpenAPI Definition
34446
34552
  *
34447
- * The version of the OpenAPI document: 0.39.0
34553
+ * The version of the OpenAPI document: 0.40.0
34448
34554
  * Contact: info@pollination.cloud
34449
34555
  *
34450
34556
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34463,7 +34569,7 @@ var inputFolderReference = /*#__PURE__*/Object.freeze({
34463
34569
  * pollination-server
34464
34570
  * Pollination Server OpenAPI Definition
34465
34571
  *
34466
- * The version of the OpenAPI document: 0.39.0
34572
+ * The version of the OpenAPI document: 0.40.0
34467
34573
  * Contact: info@pollination.cloud
34468
34574
  *
34469
34575
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34482,7 +34588,7 @@ var inputPathReference = /*#__PURE__*/Object.freeze({
34482
34588
  * pollination-server
34483
34589
  * Pollination Server OpenAPI Definition
34484
34590
  *
34485
- * The version of the OpenAPI document: 0.39.0
34591
+ * The version of the OpenAPI document: 0.40.0
34486
34592
  * Contact: info@pollination.cloud
34487
34593
  *
34488
34594
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34501,7 +34607,7 @@ var inputReference = /*#__PURE__*/Object.freeze({
34501
34607
  * pollination-server
34502
34608
  * Pollination Server OpenAPI Definition
34503
34609
  *
34504
- * The version of the OpenAPI document: 0.39.0
34610
+ * The version of the OpenAPI document: 0.40.0
34505
34611
  * Contact: info@pollination.cloud
34506
34612
  *
34507
34613
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34521,7 +34627,7 @@ var itemType = createCommonjsModule(function (module, exports) {
34521
34627
  * pollination-server
34522
34628
  * Pollination Server OpenAPI Definition
34523
34629
  *
34524
- * The version of the OpenAPI document: 0.39.0
34630
+ * The version of the OpenAPI document: 0.40.0
34525
34631
  * Contact: info@pollination.cloud
34526
34632
  *
34527
34633
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34547,7 +34653,7 @@ exports.ItemType = void 0;
34547
34653
  * pollination-server
34548
34654
  * Pollination Server OpenAPI Definition
34549
34655
  *
34550
- * The version of the OpenAPI document: 0.39.0
34656
+ * The version of the OpenAPI document: 0.40.0
34551
34657
  * Contact: info@pollination.cloud
34552
34658
  *
34553
34659
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34566,7 +34672,7 @@ var job = /*#__PURE__*/Object.freeze({
34566
34672
  * pollination-server
34567
34673
  * Pollination Server OpenAPI Definition
34568
34674
  *
34569
- * The version of the OpenAPI document: 0.39.0
34675
+ * The version of the OpenAPI document: 0.40.0
34570
34676
  * Contact: info@pollination.cloud
34571
34677
  *
34572
34678
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34585,7 +34691,7 @@ var jobArgument = /*#__PURE__*/Object.freeze({
34585
34691
  * pollination-server
34586
34692
  * Pollination Server OpenAPI Definition
34587
34693
  *
34588
- * The version of the OpenAPI document: 0.39.0
34694
+ * The version of the OpenAPI document: 0.40.0
34589
34695
  * Contact: info@pollination.cloud
34590
34696
  *
34591
34697
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34604,7 +34710,7 @@ var jobPathArgument = /*#__PURE__*/Object.freeze({
34604
34710
  * pollination-server
34605
34711
  * Pollination Server OpenAPI Definition
34606
34712
  *
34607
- * The version of the OpenAPI document: 0.39.0
34713
+ * The version of the OpenAPI document: 0.40.0
34608
34714
  * Contact: info@pollination.cloud
34609
34715
  *
34610
34716
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34624,7 +34730,7 @@ var jobStatusEnum = createCommonjsModule(function (module, exports) {
34624
34730
  * pollination-server
34625
34731
  * Pollination Server OpenAPI Definition
34626
34732
  *
34627
- * The version of the OpenAPI document: 0.39.0
34733
+ * The version of the OpenAPI document: 0.40.0
34628
34734
  * Contact: info@pollination.cloud
34629
34735
  *
34630
34736
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34650,7 +34756,7 @@ exports.JobStatusEnum = void 0;
34650
34756
  * pollination-server
34651
34757
  * Pollination Server OpenAPI Definition
34652
34758
  *
34653
- * The version of the OpenAPI document: 0.39.0
34759
+ * The version of the OpenAPI document: 0.40.0
34654
34760
  * Contact: info@pollination.cloud
34655
34761
  *
34656
34762
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34669,7 +34775,7 @@ var keyRequest = /*#__PURE__*/Object.freeze({
34669
34775
  * pollination-server
34670
34776
  * Pollination Server OpenAPI Definition
34671
34777
  *
34672
- * The version of the OpenAPI document: 0.39.0
34778
+ * The version of the OpenAPI document: 0.40.0
34673
34779
  * Contact: info@pollination.cloud
34674
34780
  *
34675
34781
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34688,7 +34794,7 @@ var license = /*#__PURE__*/Object.freeze({
34688
34794
  * pollination-server
34689
34795
  * Pollination Server OpenAPI Definition
34690
34796
  *
34691
- * The version of the OpenAPI document: 0.39.0
34797
+ * The version of the OpenAPI document: 0.40.0
34692
34798
  * Contact: info@pollination.cloud
34693
34799
  *
34694
34800
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34707,7 +34813,7 @@ var licensePoolAccessPolicy = /*#__PURE__*/Object.freeze({
34707
34813
  * pollination-server
34708
34814
  * Pollination Server OpenAPI Definition
34709
34815
  *
34710
- * The version of the OpenAPI document: 0.39.0
34816
+ * The version of the OpenAPI document: 0.40.0
34711
34817
  * Contact: info@pollination.cloud
34712
34818
  *
34713
34819
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34726,7 +34832,7 @@ var licensePoolAccessPolicyList = /*#__PURE__*/Object.freeze({
34726
34832
  * pollination-server
34727
34833
  * Pollination Server OpenAPI Definition
34728
34834
  *
34729
- * The version of the OpenAPI document: 0.39.0
34835
+ * The version of the OpenAPI document: 0.40.0
34730
34836
  * Contact: info@pollination.cloud
34731
34837
  *
34732
34838
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34745,7 +34851,7 @@ var licensePoolList = /*#__PURE__*/Object.freeze({
34745
34851
  * pollination-server
34746
34852
  * Pollination Server OpenAPI Definition
34747
34853
  *
34748
- * The version of the OpenAPI document: 0.39.0
34854
+ * The version of the OpenAPI document: 0.40.0
34749
34855
  * Contact: info@pollination.cloud
34750
34856
  *
34751
34857
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34764,7 +34870,7 @@ var licensePoolPolicySubject = /*#__PURE__*/Object.freeze({
34764
34870
  * pollination-server
34765
34871
  * Pollination Server OpenAPI Definition
34766
34872
  *
34767
- * The version of the OpenAPI document: 0.39.0
34873
+ * The version of the OpenAPI document: 0.40.0
34768
34874
  * Contact: info@pollination.cloud
34769
34875
  *
34770
34876
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34783,7 +34889,7 @@ var licensePoolPolicySubjectList = /*#__PURE__*/Object.freeze({
34783
34889
  * pollination-server
34784
34890
  * Pollination Server OpenAPI Definition
34785
34891
  *
34786
- * The version of the OpenAPI document: 0.39.0
34892
+ * The version of the OpenAPI document: 0.40.0
34787
34893
  * Contact: info@pollination.cloud
34788
34894
  *
34789
34895
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34802,7 +34908,7 @@ var licensePoolPublic = /*#__PURE__*/Object.freeze({
34802
34908
  * pollination-server
34803
34909
  * Pollination Server OpenAPI Definition
34804
34910
  *
34805
- * The version of the OpenAPI document: 0.39.0
34911
+ * The version of the OpenAPI document: 0.40.0
34806
34912
  * Contact: info@pollination.cloud
34807
34913
  *
34808
34914
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34821,7 +34927,7 @@ var licensePoolUpdate = /*#__PURE__*/Object.freeze({
34821
34927
  * pollination-server
34822
34928
  * Pollination Server OpenAPI Definition
34823
34929
  *
34824
- * The version of the OpenAPI document: 0.39.0
34930
+ * The version of the OpenAPI document: 0.40.0
34825
34931
  * Contact: info@pollination.cloud
34826
34932
  *
34827
34933
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34841,7 +34947,7 @@ var licenseType = createCommonjsModule(function (module, exports) {
34841
34947
  * pollination-server
34842
34948
  * Pollination Server OpenAPI Definition
34843
34949
  *
34844
- * The version of the OpenAPI document: 0.39.0
34950
+ * The version of the OpenAPI document: 0.40.0
34845
34951
  * Contact: info@pollination.cloud
34846
34952
  *
34847
34953
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34863,7 +34969,7 @@ exports.LicenseType = void 0;
34863
34969
  * pollination-server
34864
34970
  * Pollination Server OpenAPI Definition
34865
34971
  *
34866
- * The version of the OpenAPI document: 0.39.0
34972
+ * The version of the OpenAPI document: 0.40.0
34867
34973
  * Contact: info@pollination.cloud
34868
34974
  *
34869
34975
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34882,7 +34988,7 @@ var localConfig = /*#__PURE__*/Object.freeze({
34882
34988
  * pollination-server
34883
34989
  * Pollination Server OpenAPI Definition
34884
34990
  *
34885
- * The version of the OpenAPI document: 0.39.0
34991
+ * The version of the OpenAPI document: 0.40.0
34886
34992
  * Contact: info@pollination.cloud
34887
34993
  *
34888
34994
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34901,7 +35007,7 @@ var location = /*#__PURE__*/Object.freeze({
34901
35007
  * pollination-server
34902
35008
  * Pollination Server OpenAPI Definition
34903
35009
  *
34904
- * The version of the OpenAPI document: 0.39.0
35010
+ * The version of the OpenAPI document: 0.40.0
34905
35011
  * Contact: info@pollination.cloud
34906
35012
  *
34907
35013
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34920,7 +35026,7 @@ var maintainer = /*#__PURE__*/Object.freeze({
34920
35026
  * pollination-server
34921
35027
  * Pollination Server OpenAPI Definition
34922
35028
  *
34923
- * The version of the OpenAPI document: 0.39.0
35029
+ * The version of the OpenAPI document: 0.40.0
34924
35030
  * Contact: info@pollination.cloud
34925
35031
  *
34926
35032
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34939,7 +35045,7 @@ var metaData = /*#__PURE__*/Object.freeze({
34939
35045
  * pollination-server
34940
35046
  * Pollination Server OpenAPI Definition
34941
35047
  *
34942
- * The version of the OpenAPI document: 0.39.0
35048
+ * The version of the OpenAPI document: 0.40.0
34943
35049
  * Contact: info@pollination.cloud
34944
35050
  *
34945
35051
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34958,7 +35064,7 @@ var metadata = /*#__PURE__*/Object.freeze({
34958
35064
  * pollination-server
34959
35065
  * Pollination Server OpenAPI Definition
34960
35066
  *
34961
- * The version of the OpenAPI document: 0.39.0
35067
+ * The version of the OpenAPI document: 0.40.0
34962
35068
  * Contact: info@pollination.cloud
34963
35069
  *
34964
35070
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34977,7 +35083,7 @@ var newApplicationVersion = /*#__PURE__*/Object.freeze({
34977
35083
  * pollination-server
34978
35084
  * Pollination Server OpenAPI Definition
34979
35085
  *
34980
- * The version of the OpenAPI document: 0.39.0
35086
+ * The version of the OpenAPI document: 0.40.0
34981
35087
  * Contact: info@pollination.cloud
34982
35088
  *
34983
35089
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34996,7 +35102,7 @@ var newPluginPackage = /*#__PURE__*/Object.freeze({
34996
35102
  * pollination-server
34997
35103
  * Pollination Server OpenAPI Definition
34998
35104
  *
34999
- * The version of the OpenAPI document: 0.39.0
35105
+ * The version of the OpenAPI document: 0.40.0
35000
35106
  * Contact: info@pollination.cloud
35001
35107
  *
35002
35108
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35015,7 +35121,7 @@ var newRecipePackage = /*#__PURE__*/Object.freeze({
35015
35121
  * pollination-server
35016
35122
  * Pollination Server OpenAPI Definition
35017
35123
  *
35018
- * The version of the OpenAPI document: 0.39.0
35124
+ * The version of the OpenAPI document: 0.40.0
35019
35125
  * Contact: info@pollination.cloud
35020
35126
  *
35021
35127
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35034,7 +35140,7 @@ var organization = /*#__PURE__*/Object.freeze({
35034
35140
  * pollination-server
35035
35141
  * Pollination Server OpenAPI Definition
35036
35142
  *
35037
- * The version of the OpenAPI document: 0.39.0
35143
+ * The version of the OpenAPI document: 0.40.0
35038
35144
  * Contact: info@pollination.cloud
35039
35145
  *
35040
35146
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35053,7 +35159,7 @@ var organizationCreate = /*#__PURE__*/Object.freeze({
35053
35159
  * pollination-server
35054
35160
  * Pollination Server OpenAPI Definition
35055
35161
  *
35056
- * The version of the OpenAPI document: 0.39.0
35162
+ * The version of the OpenAPI document: 0.40.0
35057
35163
  * Contact: info@pollination.cloud
35058
35164
  *
35059
35165
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35072,7 +35178,7 @@ var organizationList = /*#__PURE__*/Object.freeze({
35072
35178
  * pollination-server
35073
35179
  * Pollination Server OpenAPI Definition
35074
35180
  *
35075
- * The version of the OpenAPI document: 0.39.0
35181
+ * The version of the OpenAPI document: 0.40.0
35076
35182
  * Contact: info@pollination.cloud
35077
35183
  *
35078
35184
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35091,7 +35197,7 @@ var organizationMember = /*#__PURE__*/Object.freeze({
35091
35197
  * pollination-server
35092
35198
  * Pollination Server OpenAPI Definition
35093
35199
  *
35094
- * The version of the OpenAPI document: 0.39.0
35200
+ * The version of the OpenAPI document: 0.40.0
35095
35201
  * Contact: info@pollination.cloud
35096
35202
  *
35097
35203
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35111,7 +35217,7 @@ var organizationRoleEnum = createCommonjsModule(function (module, exports) {
35111
35217
  * pollination-server
35112
35218
  * Pollination Server OpenAPI Definition
35113
35219
  *
35114
- * The version of the OpenAPI document: 0.39.0
35220
+ * The version of the OpenAPI document: 0.40.0
35115
35221
  * Contact: info@pollination.cloud
35116
35222
  *
35117
35223
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35132,7 +35238,7 @@ exports.OrganizationRoleEnum = void 0;
35132
35238
  * pollination-server
35133
35239
  * Pollination Server OpenAPI Definition
35134
35240
  *
35135
- * The version of the OpenAPI document: 0.39.0
35241
+ * The version of the OpenAPI document: 0.40.0
35136
35242
  * Contact: info@pollination.cloud
35137
35243
  *
35138
35244
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35152,7 +35258,7 @@ var packageSortKey = createCommonjsModule(function (module, exports) {
35152
35258
  * pollination-server
35153
35259
  * Pollination Server OpenAPI Definition
35154
35260
  *
35155
- * The version of the OpenAPI document: 0.39.0
35261
+ * The version of the OpenAPI document: 0.40.0
35156
35262
  * Contact: info@pollination.cloud
35157
35263
  *
35158
35264
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35174,7 +35280,7 @@ exports.PackageSortKey = void 0;
35174
35280
  * pollination-server
35175
35281
  * Pollination Server OpenAPI Definition
35176
35282
  *
35177
- * The version of the OpenAPI document: 0.39.0
35283
+ * The version of the OpenAPI document: 0.40.0
35178
35284
  * Contact: info@pollination.cloud
35179
35285
  *
35180
35286
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35194,7 +35300,7 @@ var pausedReason = createCommonjsModule(function (module, exports) {
35194
35300
  * pollination-server
35195
35301
  * Pollination Server OpenAPI Definition
35196
35302
  *
35197
- * The version of the OpenAPI document: 0.39.0
35303
+ * The version of the OpenAPI document: 0.40.0
35198
35304
  * Contact: info@pollination.cloud
35199
35305
  *
35200
35306
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35215,7 +35321,7 @@ exports.PausedReason = void 0;
35215
35321
  * pollination-server
35216
35322
  * Pollination Server OpenAPI Definition
35217
35323
  *
35218
- * The version of the OpenAPI document: 0.39.0
35324
+ * The version of the OpenAPI document: 0.40.0
35219
35325
  * Contact: info@pollination.cloud
35220
35326
  *
35221
35327
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35234,7 +35340,7 @@ var payLink = /*#__PURE__*/Object.freeze({
35234
35340
  * pollination-server
35235
35341
  * Pollination Server OpenAPI Definition
35236
35342
  *
35237
- * The version of the OpenAPI document: 0.39.0
35343
+ * The version of the OpenAPI document: 0.40.0
35238
35344
  * Contact: info@pollination.cloud
35239
35345
  *
35240
35346
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35253,7 +35359,7 @@ var payment = /*#__PURE__*/Object.freeze({
35253
35359
  * pollination-server
35254
35360
  * Pollination Server OpenAPI Definition
35255
35361
  *
35256
- * The version of the OpenAPI document: 0.39.0
35362
+ * The version of the OpenAPI document: 0.40.0
35257
35363
  * Contact: info@pollination.cloud
35258
35364
  *
35259
35365
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35273,7 +35379,7 @@ var paymentMethodEnum = createCommonjsModule(function (module, exports) {
35273
35379
  * pollination-server
35274
35380
  * Pollination Server OpenAPI Definition
35275
35381
  *
35276
- * The version of the OpenAPI document: 0.39.0
35382
+ * The version of the OpenAPI document: 0.40.0
35277
35383
  * Contact: info@pollination.cloud
35278
35384
  *
35279
35385
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35296,7 +35402,7 @@ var permission = createCommonjsModule(function (module, exports) {
35296
35402
  * pollination-server
35297
35403
  * Pollination Server OpenAPI Definition
35298
35404
  *
35299
- * The version of the OpenAPI document: 0.39.0
35405
+ * The version of the OpenAPI document: 0.40.0
35300
35406
  * Contact: info@pollination.cloud
35301
35407
  *
35302
35408
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35319,7 +35425,7 @@ var planType = createCommonjsModule(function (module, exports) {
35319
35425
  * pollination-server
35320
35426
  * Pollination Server OpenAPI Definition
35321
35427
  *
35322
- * The version of the OpenAPI document: 0.39.0
35428
+ * The version of the OpenAPI document: 0.40.0
35323
35429
  * Contact: info@pollination.cloud
35324
35430
  *
35325
35431
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35345,7 +35451,7 @@ exports.PlanType = void 0;
35345
35451
  * pollination-server
35346
35452
  * Pollination Server OpenAPI Definition
35347
35453
  *
35348
- * The version of the OpenAPI document: 0.39.0
35454
+ * The version of the OpenAPI document: 0.40.0
35349
35455
  * Contact: info@pollination.cloud
35350
35456
  *
35351
35457
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35364,7 +35470,7 @@ var plugin = /*#__PURE__*/Object.freeze({
35364
35470
  * pollination-server
35365
35471
  * Pollination Server OpenAPI Definition
35366
35472
  *
35367
- * The version of the OpenAPI document: 0.39.0
35473
+ * The version of the OpenAPI document: 0.40.0
35368
35474
  * Contact: info@pollination.cloud
35369
35475
  *
35370
35476
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35383,7 +35489,7 @@ var pluginConfig = /*#__PURE__*/Object.freeze({
35383
35489
  * pollination-server
35384
35490
  * Pollination Server OpenAPI Definition
35385
35491
  *
35386
- * The version of the OpenAPI document: 0.39.0
35492
+ * The version of the OpenAPI document: 0.40.0
35387
35493
  * Contact: info@pollination.cloud
35388
35494
  *
35389
35495
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35402,7 +35508,7 @@ var pluginPackage = /*#__PURE__*/Object.freeze({
35402
35508
  * pollination-server
35403
35509
  * Pollination Server OpenAPI Definition
35404
35510
  *
35405
- * The version of the OpenAPI document: 0.39.0
35511
+ * The version of the OpenAPI document: 0.40.0
35406
35512
  * Contact: info@pollination.cloud
35407
35513
  *
35408
35514
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35421,7 +35527,7 @@ var pluginPackageList = /*#__PURE__*/Object.freeze({
35421
35527
  * pollination-server
35422
35528
  * Pollination Server OpenAPI Definition
35423
35529
  *
35424
- * The version of the OpenAPI document: 0.39.0
35530
+ * The version of the OpenAPI document: 0.40.0
35425
35531
  * Contact: info@pollination.cloud
35426
35532
  *
35427
35533
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35440,7 +35546,7 @@ var policySubject = /*#__PURE__*/Object.freeze({
35440
35546
  * pollination-server
35441
35547
  * Pollination Server OpenAPI Definition
35442
35548
  *
35443
- * The version of the OpenAPI document: 0.39.0
35549
+ * The version of the OpenAPI document: 0.40.0
35444
35550
  * Contact: info@pollination.cloud
35445
35551
  *
35446
35552
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35459,7 +35565,7 @@ var project = /*#__PURE__*/Object.freeze({
35459
35565
  * pollination-server
35460
35566
  * Pollination Server OpenAPI Definition
35461
35567
  *
35462
- * The version of the OpenAPI document: 0.39.0
35568
+ * The version of the OpenAPI document: 0.40.0
35463
35569
  * Contact: info@pollination.cloud
35464
35570
  *
35465
35571
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35478,7 +35584,7 @@ var projectAccessPolicy = /*#__PURE__*/Object.freeze({
35478
35584
  * pollination-server
35479
35585
  * Pollination Server OpenAPI Definition
35480
35586
  *
35481
- * The version of the OpenAPI document: 0.39.0
35587
+ * The version of the OpenAPI document: 0.40.0
35482
35588
  * Contact: info@pollination.cloud
35483
35589
  *
35484
35590
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35497,7 +35603,7 @@ var projectAccessPolicyList = /*#__PURE__*/Object.freeze({
35497
35603
  * pollination-server
35498
35604
  * Pollination Server OpenAPI Definition
35499
35605
  *
35500
- * The version of the OpenAPI document: 0.39.0
35606
+ * The version of the OpenAPI document: 0.40.0
35501
35607
  * Contact: info@pollination.cloud
35502
35608
  *
35503
35609
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35516,7 +35622,7 @@ var projectCreate = /*#__PURE__*/Object.freeze({
35516
35622
  * pollination-server
35517
35623
  * Pollination Server OpenAPI Definition
35518
35624
  *
35519
- * The version of the OpenAPI document: 0.39.0
35625
+ * The version of the OpenAPI document: 0.40.0
35520
35626
  * Contact: info@pollination.cloud
35521
35627
  *
35522
35628
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35535,7 +35641,7 @@ var projectFolder = /*#__PURE__*/Object.freeze({
35535
35641
  * pollination-server
35536
35642
  * Pollination Server OpenAPI Definition
35537
35643
  *
35538
- * The version of the OpenAPI document: 0.39.0
35644
+ * The version of the OpenAPI document: 0.40.0
35539
35645
  * Contact: info@pollination.cloud
35540
35646
  *
35541
35647
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35554,7 +35660,7 @@ var projectList = /*#__PURE__*/Object.freeze({
35554
35660
  * pollination-server
35555
35661
  * Pollination Server OpenAPI Definition
35556
35662
  *
35557
- * The version of the OpenAPI document: 0.39.0
35663
+ * The version of the OpenAPI document: 0.40.0
35558
35664
  * Contact: info@pollination.cloud
35559
35665
  *
35560
35666
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35573,7 +35679,7 @@ var projectPolicySubject = /*#__PURE__*/Object.freeze({
35573
35679
  * pollination-server
35574
35680
  * Pollination Server OpenAPI Definition
35575
35681
  *
35576
- * The version of the OpenAPI document: 0.39.0
35682
+ * The version of the OpenAPI document: 0.40.0
35577
35683
  * Contact: info@pollination.cloud
35578
35684
  *
35579
35685
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35592,7 +35698,7 @@ var projectRecipeFilter = /*#__PURE__*/Object.freeze({
35592
35698
  * pollination-server
35593
35699
  * Pollination Server OpenAPI Definition
35594
35700
  *
35595
- * The version of the OpenAPI document: 0.39.0
35701
+ * The version of the OpenAPI document: 0.40.0
35596
35702
  * Contact: info@pollination.cloud
35597
35703
  *
35598
35704
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35612,7 +35718,7 @@ var projectSortKey = createCommonjsModule(function (module, exports) {
35612
35718
  * pollination-server
35613
35719
  * Pollination Server OpenAPI Definition
35614
35720
  *
35615
- * The version of the OpenAPI document: 0.39.0
35721
+ * The version of the OpenAPI document: 0.40.0
35616
35722
  * Contact: info@pollination.cloud
35617
35723
  *
35618
35724
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35634,7 +35740,7 @@ exports.ProjectSortKey = void 0;
35634
35740
  * pollination-server
35635
35741
  * Pollination Server OpenAPI Definition
35636
35742
  *
35637
- * The version of the OpenAPI document: 0.39.0
35743
+ * The version of the OpenAPI document: 0.40.0
35638
35744
  * Contact: info@pollination.cloud
35639
35745
  *
35640
35746
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35653,7 +35759,7 @@ var projectUpdate = /*#__PURE__*/Object.freeze({
35653
35759
  * pollination-server
35654
35760
  * Pollination Server OpenAPI Definition
35655
35761
  *
35656
- * The version of the OpenAPI document: 0.39.0
35762
+ * The version of the OpenAPI document: 0.40.0
35657
35763
  * Contact: info@pollination.cloud
35658
35764
  *
35659
35765
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35672,7 +35778,7 @@ var publicAccountList = /*#__PURE__*/Object.freeze({
35672
35778
  * pollination-server
35673
35779
  * Pollination Server OpenAPI Definition
35674
35780
  *
35675
- * The version of the OpenAPI document: 0.39.0
35781
+ * The version of the OpenAPI document: 0.40.0
35676
35782
  * Contact: info@pollination.cloud
35677
35783
  *
35678
35784
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35691,7 +35797,7 @@ var quota = /*#__PURE__*/Object.freeze({
35691
35797
  * pollination-server
35692
35798
  * Pollination Server OpenAPI Definition
35693
35799
  *
35694
- * The version of the OpenAPI document: 0.39.0
35800
+ * The version of the OpenAPI document: 0.40.0
35695
35801
  * Contact: info@pollination.cloud
35696
35802
  *
35697
35803
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35710,7 +35816,7 @@ var quotaList = /*#__PURE__*/Object.freeze({
35710
35816
  * pollination-server
35711
35817
  * Pollination Server OpenAPI Definition
35712
35818
  *
35713
- * The version of the OpenAPI document: 0.39.0
35819
+ * The version of the OpenAPI document: 0.40.0
35714
35820
  * Contact: info@pollination.cloud
35715
35821
  *
35716
35822
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35730,7 +35836,7 @@ var quotaType = createCommonjsModule(function (module, exports) {
35730
35836
  * pollination-server
35731
35837
  * Pollination Server OpenAPI Definition
35732
35838
  *
35733
- * The version of the OpenAPI document: 0.39.0
35839
+ * The version of the OpenAPI document: 0.40.0
35734
35840
  * Contact: info@pollination.cloud
35735
35841
  *
35736
35842
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35762,7 +35868,7 @@ exports.QuotaType = void 0;
35762
35868
  * pollination-server
35763
35869
  * Pollination Server OpenAPI Definition
35764
35870
  *
35765
- * The version of the OpenAPI document: 0.39.0
35871
+ * The version of the OpenAPI document: 0.40.0
35766
35872
  * Contact: info@pollination.cloud
35767
35873
  *
35768
35874
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35781,7 +35887,7 @@ var recipe = /*#__PURE__*/Object.freeze({
35781
35887
  * pollination-server
35782
35888
  * Pollination Server OpenAPI Definition
35783
35889
  *
35784
- * The version of the OpenAPI document: 0.39.0
35890
+ * The version of the OpenAPI document: 0.40.0
35785
35891
  * Contact: info@pollination.cloud
35786
35892
  *
35787
35893
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35800,7 +35906,7 @@ var recipeInterface = /*#__PURE__*/Object.freeze({
35800
35906
  * pollination-server
35801
35907
  * Pollination Server OpenAPI Definition
35802
35908
  *
35803
- * The version of the OpenAPI document: 0.39.0
35909
+ * The version of the OpenAPI document: 0.40.0
35804
35910
  * Contact: info@pollination.cloud
35805
35911
  *
35806
35912
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35819,7 +35925,7 @@ var recipeInterfaceList = /*#__PURE__*/Object.freeze({
35819
35925
  * pollination-server
35820
35926
  * Pollination Server OpenAPI Definition
35821
35927
  *
35822
- * The version of the OpenAPI document: 0.39.0
35928
+ * The version of the OpenAPI document: 0.40.0
35823
35929
  * Contact: info@pollination.cloud
35824
35930
  *
35825
35931
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35838,7 +35944,7 @@ var recipePackage = /*#__PURE__*/Object.freeze({
35838
35944
  * pollination-server
35839
35945
  * Pollination Server OpenAPI Definition
35840
35946
  *
35841
- * The version of the OpenAPI document: 0.39.0
35947
+ * The version of the OpenAPI document: 0.40.0
35842
35948
  * Contact: info@pollination.cloud
35843
35949
  *
35844
35950
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35857,7 +35963,7 @@ var recipePackageList = /*#__PURE__*/Object.freeze({
35857
35963
  * pollination-server
35858
35964
  * Pollination Server OpenAPI Definition
35859
35965
  *
35860
- * The version of the OpenAPI document: 0.39.0
35966
+ * The version of the OpenAPI document: 0.40.0
35861
35967
  * Contact: info@pollination.cloud
35862
35968
  *
35863
35969
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35876,7 +35982,7 @@ var repository = /*#__PURE__*/Object.freeze({
35876
35982
  * pollination-server
35877
35983
  * Pollination Server OpenAPI Definition
35878
35984
  *
35879
- * The version of the OpenAPI document: 0.39.0
35985
+ * The version of the OpenAPI document: 0.40.0
35880
35986
  * Contact: info@pollination.cloud
35881
35987
  *
35882
35988
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35895,7 +36001,7 @@ var repositoryAccessPolicy = /*#__PURE__*/Object.freeze({
35895
36001
  * pollination-server
35896
36002
  * Pollination Server OpenAPI Definition
35897
36003
  *
35898
- * The version of the OpenAPI document: 0.39.0
36004
+ * The version of the OpenAPI document: 0.40.0
35899
36005
  * Contact: info@pollination.cloud
35900
36006
  *
35901
36007
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35914,7 +36020,7 @@ var repositoryAccessPolicyList = /*#__PURE__*/Object.freeze({
35914
36020
  * pollination-server
35915
36021
  * Pollination Server OpenAPI Definition
35916
36022
  *
35917
- * The version of the OpenAPI document: 0.39.0
36023
+ * The version of the OpenAPI document: 0.40.0
35918
36024
  * Contact: info@pollination.cloud
35919
36025
  *
35920
36026
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35933,7 +36039,7 @@ var repositoryCreate = /*#__PURE__*/Object.freeze({
35933
36039
  * pollination-server
35934
36040
  * Pollination Server OpenAPI Definition
35935
36041
  *
35936
- * The version of the OpenAPI document: 0.39.0
36042
+ * The version of the OpenAPI document: 0.40.0
35937
36043
  * Contact: info@pollination.cloud
35938
36044
  *
35939
36045
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35952,7 +36058,7 @@ var repositoryIndex = /*#__PURE__*/Object.freeze({
35952
36058
  * pollination-server
35953
36059
  * Pollination Server OpenAPI Definition
35954
36060
  *
35955
- * The version of the OpenAPI document: 0.39.0
36061
+ * The version of the OpenAPI document: 0.40.0
35956
36062
  * Contact: info@pollination.cloud
35957
36063
  *
35958
36064
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35971,7 +36077,7 @@ var repositoryList = /*#__PURE__*/Object.freeze({
35971
36077
  * pollination-server
35972
36078
  * Pollination Server OpenAPI Definition
35973
36079
  *
35974
- * The version of the OpenAPI document: 0.39.0
36080
+ * The version of the OpenAPI document: 0.40.0
35975
36081
  * Contact: info@pollination.cloud
35976
36082
  *
35977
36083
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35990,7 +36096,7 @@ var repositoryMetadata = /*#__PURE__*/Object.freeze({
35990
36096
  * pollination-server
35991
36097
  * Pollination Server OpenAPI Definition
35992
36098
  *
35993
- * The version of the OpenAPI document: 0.39.0
36099
+ * The version of the OpenAPI document: 0.40.0
35994
36100
  * Contact: info@pollination.cloud
35995
36101
  *
35996
36102
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36010,7 +36116,7 @@ var repositorySortKey = createCommonjsModule(function (module, exports) {
36010
36116
  * pollination-server
36011
36117
  * Pollination Server OpenAPI Definition
36012
36118
  *
36013
- * The version of the OpenAPI document: 0.39.0
36119
+ * The version of the OpenAPI document: 0.40.0
36014
36120
  * Contact: info@pollination.cloud
36015
36121
  *
36016
36122
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36033,7 +36139,7 @@ exports.RepositorySortKey = void 0;
36033
36139
  * pollination-server
36034
36140
  * Pollination Server OpenAPI Definition
36035
36141
  *
36036
- * The version of the OpenAPI document: 0.39.0
36142
+ * The version of the OpenAPI document: 0.40.0
36037
36143
  * Contact: info@pollination.cloud
36038
36144
  *
36039
36145
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36052,7 +36158,7 @@ var repositoryUpdate = /*#__PURE__*/Object.freeze({
36052
36158
  * pollination-server
36053
36159
  * Pollination Server OpenAPI Definition
36054
36160
  *
36055
- * The version of the OpenAPI document: 0.39.0
36161
+ * The version of the OpenAPI document: 0.40.0
36056
36162
  * Contact: info@pollination.cloud
36057
36163
  *
36058
36164
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36071,7 +36177,7 @@ var repositoryUserPermissions = /*#__PURE__*/Object.freeze({
36071
36177
  * pollination-server
36072
36178
  * Pollination Server OpenAPI Definition
36073
36179
  *
36074
- * The version of the OpenAPI document: 0.39.0
36180
+ * The version of the OpenAPI document: 0.40.0
36075
36181
  * Contact: info@pollination.cloud
36076
36182
  *
36077
36183
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36091,7 +36197,7 @@ var roleEnum = createCommonjsModule(function (module, exports) {
36091
36197
  * pollination-server
36092
36198
  * Pollination Server OpenAPI Definition
36093
36199
  *
36094
- * The version of the OpenAPI document: 0.39.0
36200
+ * The version of the OpenAPI document: 0.40.0
36095
36201
  * Contact: info@pollination.cloud
36096
36202
  *
36097
36203
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36112,7 +36218,7 @@ exports.RoleEnum = void 0;
36112
36218
  * pollination-server
36113
36219
  * Pollination Server OpenAPI Definition
36114
36220
  *
36115
- * The version of the OpenAPI document: 0.39.0
36221
+ * The version of the OpenAPI document: 0.40.0
36116
36222
  * Contact: info@pollination.cloud
36117
36223
  *
36118
36224
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36131,7 +36237,7 @@ var run = /*#__PURE__*/Object.freeze({
36131
36237
  * pollination-server
36132
36238
  * Pollination Server OpenAPI Definition
36133
36239
  *
36134
- * The version of the OpenAPI document: 0.39.0
36240
+ * The version of the OpenAPI document: 0.40.0
36135
36241
  * Contact: info@pollination.cloud
36136
36242
  *
36137
36243
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36150,7 +36256,7 @@ var runList = /*#__PURE__*/Object.freeze({
36150
36256
  * pollination-server
36151
36257
  * Pollination Server OpenAPI Definition
36152
36258
  *
36153
- * The version of the OpenAPI document: 0.39.0
36259
+ * The version of the OpenAPI document: 0.40.0
36154
36260
  * Contact: info@pollination.cloud
36155
36261
  *
36156
36262
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36169,7 +36275,7 @@ var runMeta = /*#__PURE__*/Object.freeze({
36169
36275
  * pollination-server
36170
36276
  * Pollination Server OpenAPI Definition
36171
36277
  *
36172
- * The version of the OpenAPI document: 0.39.0
36278
+ * The version of the OpenAPI document: 0.40.0
36173
36279
  * Contact: info@pollination.cloud
36174
36280
  *
36175
36281
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36188,7 +36294,7 @@ var runProgress = /*#__PURE__*/Object.freeze({
36188
36294
  * pollination-server
36189
36295
  * Pollination Server OpenAPI Definition
36190
36296
  *
36191
- * The version of the OpenAPI document: 0.39.0
36297
+ * The version of the OpenAPI document: 0.40.0
36192
36298
  * Contact: info@pollination.cloud
36193
36299
  *
36194
36300
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36207,7 +36313,7 @@ var runResultList = /*#__PURE__*/Object.freeze({
36207
36313
  * pollination-server
36208
36314
  * Pollination Server OpenAPI Definition
36209
36315
  *
36210
- * The version of the OpenAPI document: 0.39.0
36316
+ * The version of the OpenAPI document: 0.40.0
36211
36317
  * Contact: info@pollination.cloud
36212
36318
  *
36213
36319
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36227,7 +36333,7 @@ var runStatusEnum = createCommonjsModule(function (module, exports) {
36227
36333
  * pollination-server
36228
36334
  * Pollination Server OpenAPI Definition
36229
36335
  *
36230
- * The version of the OpenAPI document: 0.39.0
36336
+ * The version of the OpenAPI document: 0.40.0
36231
36337
  * Contact: info@pollination.cloud
36232
36338
  *
36233
36339
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36254,7 +36360,7 @@ exports.RunStatusEnum = void 0;
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).
@@ -36273,7 +36379,7 @@ var s3 = /*#__PURE__*/Object.freeze({
36273
36379
  * pollination-server
36274
36380
  * Pollination Server OpenAPI Definition
36275
36381
  *
36276
- * The version of the OpenAPI document: 0.39.0
36382
+ * The version of the OpenAPI document: 0.40.0
36277
36383
  * Contact: info@pollination.cloud
36278
36384
  *
36279
36385
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36293,7 +36399,7 @@ var sortEnum = createCommonjsModule(function (module, exports) {
36293
36399
  * pollination-server
36294
36400
  * Pollination Server OpenAPI Definition
36295
36401
  *
36296
- * The version of the OpenAPI document: 0.39.0
36402
+ * The version of the OpenAPI document: 0.40.0
36297
36403
  * Contact: info@pollination.cloud
36298
36404
  *
36299
36405
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36315,7 +36421,7 @@ var statusType = createCommonjsModule(function (module, exports) {
36315
36421
  * pollination-server
36316
36422
  * Pollination Server OpenAPI Definition
36317
36423
  *
36318
- * The version of the OpenAPI document: 0.39.0
36424
+ * The version of the OpenAPI document: 0.40.0
36319
36425
  * Contact: info@pollination.cloud
36320
36426
  *
36321
36427
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36339,7 +36445,7 @@ exports.StatusType = void 0;
36339
36445
  * pollination-server
36340
36446
  * Pollination Server OpenAPI Definition
36341
36447
  *
36342
- * The version of the OpenAPI document: 0.39.0
36448
+ * The version of the OpenAPI document: 0.40.0
36343
36449
  * Contact: info@pollination.cloud
36344
36450
  *
36345
36451
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36358,7 +36464,7 @@ var stepArrayInput = /*#__PURE__*/Object.freeze({
36358
36464
  * pollination-server
36359
36465
  * Pollination Server OpenAPI Definition
36360
36466
  *
36361
- * The version of the OpenAPI document: 0.39.0
36467
+ * The version of the OpenAPI document: 0.40.0
36362
36468
  * Contact: info@pollination.cloud
36363
36469
  *
36364
36470
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36377,7 +36483,7 @@ var stepArrayOutput = /*#__PURE__*/Object.freeze({
36377
36483
  * pollination-server
36378
36484
  * Pollination Server OpenAPI Definition
36379
36485
  *
36380
- * The version of the OpenAPI document: 0.39.0
36486
+ * The version of the OpenAPI document: 0.40.0
36381
36487
  * Contact: info@pollination.cloud
36382
36488
  *
36383
36489
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36396,7 +36502,7 @@ var stepBooleanInput = /*#__PURE__*/Object.freeze({
36396
36502
  * pollination-server
36397
36503
  * Pollination Server OpenAPI Definition
36398
36504
  *
36399
- * The version of the OpenAPI document: 0.39.0
36505
+ * The version of the OpenAPI document: 0.40.0
36400
36506
  * Contact: info@pollination.cloud
36401
36507
  *
36402
36508
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36415,7 +36521,7 @@ var stepBooleanOutput = /*#__PURE__*/Object.freeze({
36415
36521
  * pollination-server
36416
36522
  * Pollination Server OpenAPI Definition
36417
36523
  *
36418
- * The version of the OpenAPI document: 0.39.0
36524
+ * The version of the OpenAPI document: 0.40.0
36419
36525
  * Contact: info@pollination.cloud
36420
36526
  *
36421
36527
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36434,7 +36540,7 @@ var stepFileInput = /*#__PURE__*/Object.freeze({
36434
36540
  * pollination-server
36435
36541
  * Pollination Server OpenAPI Definition
36436
36542
  *
36437
- * The version of the OpenAPI document: 0.39.0
36543
+ * The version of the OpenAPI document: 0.40.0
36438
36544
  * Contact: info@pollination.cloud
36439
36545
  *
36440
36546
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36453,7 +36559,7 @@ var stepFileOutput = /*#__PURE__*/Object.freeze({
36453
36559
  * pollination-server
36454
36560
  * Pollination Server OpenAPI Definition
36455
36561
  *
36456
- * The version of the OpenAPI document: 0.39.0
36562
+ * The version of the OpenAPI document: 0.40.0
36457
36563
  * Contact: info@pollination.cloud
36458
36564
  *
36459
36565
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36472,7 +36578,7 @@ var stepFolderInput = /*#__PURE__*/Object.freeze({
36472
36578
  * pollination-server
36473
36579
  * Pollination Server OpenAPI Definition
36474
36580
  *
36475
- * The version of the OpenAPI document: 0.39.0
36581
+ * The version of the OpenAPI document: 0.40.0
36476
36582
  * Contact: info@pollination.cloud
36477
36583
  *
36478
36584
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36491,7 +36597,7 @@ var stepFolderOutput = /*#__PURE__*/Object.freeze({
36491
36597
  * pollination-server
36492
36598
  * Pollination Server OpenAPI Definition
36493
36599
  *
36494
- * The version of the OpenAPI document: 0.39.0
36600
+ * The version of the OpenAPI document: 0.40.0
36495
36601
  * Contact: info@pollination.cloud
36496
36602
  *
36497
36603
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36510,7 +36616,7 @@ var stepIntegerInput = /*#__PURE__*/Object.freeze({
36510
36616
  * pollination-server
36511
36617
  * Pollination Server OpenAPI Definition
36512
36618
  *
36513
- * The version of the OpenAPI document: 0.39.0
36619
+ * The version of the OpenAPI document: 0.40.0
36514
36620
  * Contact: info@pollination.cloud
36515
36621
  *
36516
36622
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36529,7 +36635,7 @@ var stepIntegerOutput = /*#__PURE__*/Object.freeze({
36529
36635
  * pollination-server
36530
36636
  * Pollination Server OpenAPI Definition
36531
36637
  *
36532
- * The version of the OpenAPI document: 0.39.0
36638
+ * The version of the OpenAPI document: 0.40.0
36533
36639
  * Contact: info@pollination.cloud
36534
36640
  *
36535
36641
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36548,7 +36654,7 @@ var stepJsonobjectInput = /*#__PURE__*/Object.freeze({
36548
36654
  * pollination-server
36549
36655
  * Pollination Server OpenAPI Definition
36550
36656
  *
36551
- * The version of the OpenAPI document: 0.39.0
36657
+ * The version of the OpenAPI document: 0.40.0
36552
36658
  * Contact: info@pollination.cloud
36553
36659
  *
36554
36660
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36567,7 +36673,7 @@ var stepJsonobjectOutput = /*#__PURE__*/Object.freeze({
36567
36673
  * pollination-server
36568
36674
  * Pollination Server OpenAPI Definition
36569
36675
  *
36570
- * The version of the OpenAPI document: 0.39.0
36676
+ * The version of the OpenAPI document: 0.40.0
36571
36677
  * Contact: info@pollination.cloud
36572
36678
  *
36573
36679
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36586,7 +36692,7 @@ var stepList = /*#__PURE__*/Object.freeze({
36586
36692
  * pollination-server
36587
36693
  * Pollination Server OpenAPI Definition
36588
36694
  *
36589
- * The version of the OpenAPI document: 0.39.0
36695
+ * The version of the OpenAPI document: 0.40.0
36590
36696
  * Contact: info@pollination.cloud
36591
36697
  *
36592
36698
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36605,7 +36711,7 @@ var stepNumberInput = /*#__PURE__*/Object.freeze({
36605
36711
  * pollination-server
36606
36712
  * Pollination Server OpenAPI Definition
36607
36713
  *
36608
- * The version of the OpenAPI document: 0.39.0
36714
+ * The version of the OpenAPI document: 0.40.0
36609
36715
  * Contact: info@pollination.cloud
36610
36716
  *
36611
36717
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36624,7 +36730,7 @@ var stepNumberOutput = /*#__PURE__*/Object.freeze({
36624
36730
  * pollination-server
36625
36731
  * Pollination Server OpenAPI Definition
36626
36732
  *
36627
- * The version of the OpenAPI document: 0.39.0
36733
+ * The version of the OpenAPI document: 0.40.0
36628
36734
  * Contact: info@pollination.cloud
36629
36735
  *
36630
36736
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36643,7 +36749,7 @@ var stepPathInput = /*#__PURE__*/Object.freeze({
36643
36749
  * pollination-server
36644
36750
  * Pollination Server OpenAPI Definition
36645
36751
  *
36646
- * The version of the OpenAPI document: 0.39.0
36752
+ * The version of the OpenAPI document: 0.40.0
36647
36753
  * Contact: info@pollination.cloud
36648
36754
  *
36649
36755
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36662,7 +36768,7 @@ var stepPathOutput = /*#__PURE__*/Object.freeze({
36662
36768
  * pollination-server
36663
36769
  * Pollination Server OpenAPI Definition
36664
36770
  *
36665
- * The version of the OpenAPI document: 0.39.0
36771
+ * The version of the OpenAPI document: 0.40.0
36666
36772
  * Contact: info@pollination.cloud
36667
36773
  *
36668
36774
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36682,7 +36788,7 @@ var stepStatusEnum = createCommonjsModule(function (module, exports) {
36682
36788
  * pollination-server
36683
36789
  * Pollination Server OpenAPI Definition
36684
36790
  *
36685
- * The version of the OpenAPI document: 0.39.0
36791
+ * The version of the OpenAPI document: 0.40.0
36686
36792
  * Contact: info@pollination.cloud
36687
36793
  *
36688
36794
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36707,7 +36813,7 @@ exports.StepStatusEnum = void 0;
36707
36813
  * pollination-server
36708
36814
  * Pollination Server OpenAPI Definition
36709
36815
  *
36710
- * The version of the OpenAPI document: 0.39.0
36816
+ * The version of the OpenAPI document: 0.40.0
36711
36817
  * Contact: info@pollination.cloud
36712
36818
  *
36713
36819
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36726,7 +36832,7 @@ var stepStringInput = /*#__PURE__*/Object.freeze({
36726
36832
  * pollination-server
36727
36833
  * Pollination Server OpenAPI Definition
36728
36834
  *
36729
- * The version of the OpenAPI document: 0.39.0
36835
+ * The version of the OpenAPI document: 0.40.0
36730
36836
  * Contact: info@pollination.cloud
36731
36837
  *
36732
36838
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36746,7 +36852,7 @@ var subjectType = createCommonjsModule(function (module, exports) {
36746
36852
  * pollination-server
36747
36853
  * Pollination Server OpenAPI Definition
36748
36854
  *
36749
- * The version of the OpenAPI document: 0.39.0
36855
+ * The version of the OpenAPI document: 0.40.0
36750
36856
  * Contact: info@pollination.cloud
36751
36857
  *
36752
36858
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36767,7 +36873,7 @@ exports.SubjectType = void 0;
36767
36873
  * pollination-server
36768
36874
  * Pollination Server OpenAPI Definition
36769
36875
  *
36770
- * The version of the OpenAPI document: 0.39.0
36876
+ * The version of the OpenAPI document: 0.40.0
36771
36877
  * Contact: info@pollination.cloud
36772
36878
  *
36773
36879
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36786,7 +36892,7 @@ var subscription = /*#__PURE__*/Object.freeze({
36786
36892
  * pollination-server
36787
36893
  * Pollination Server OpenAPI Definition
36788
36894
  *
36789
- * The version of the OpenAPI document: 0.39.0
36895
+ * The version of the OpenAPI document: 0.40.0
36790
36896
  * Contact: info@pollination.cloud
36791
36897
  *
36792
36898
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36805,7 +36911,7 @@ var subscriptionCreate = /*#__PURE__*/Object.freeze({
36805
36911
  * pollination-server
36806
36912
  * Pollination Server OpenAPI Definition
36807
36913
  *
36808
- * The version of the OpenAPI document: 0.39.0
36914
+ * The version of the OpenAPI document: 0.40.0
36809
36915
  * Contact: info@pollination.cloud
36810
36916
  *
36811
36917
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36824,7 +36930,7 @@ var subscriptionPayment = /*#__PURE__*/Object.freeze({
36824
36930
  * pollination-server
36825
36931
  * Pollination Server OpenAPI Definition
36826
36932
  *
36827
- * The version of the OpenAPI document: 0.39.0
36933
+ * The version of the OpenAPI document: 0.40.0
36828
36934
  * Contact: info@pollination.cloud
36829
36935
  *
36830
36936
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36843,7 +36949,7 @@ var subscriptionPlan = /*#__PURE__*/Object.freeze({
36843
36949
  * pollination-server
36844
36950
  * Pollination Server OpenAPI Definition
36845
36951
  *
36846
- * The version of the OpenAPI document: 0.39.0
36952
+ * The version of the OpenAPI document: 0.40.0
36847
36953
  * Contact: info@pollination.cloud
36848
36954
  *
36849
36955
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36862,7 +36968,7 @@ var subscriptionUpdate = /*#__PURE__*/Object.freeze({
36862
36968
  * pollination-server
36863
36969
  * Pollination Server OpenAPI Definition
36864
36970
  *
36865
- * The version of the OpenAPI document: 0.39.0
36971
+ * The version of the OpenAPI document: 0.40.0
36866
36972
  * Contact: info@pollination.cloud
36867
36973
  *
36868
36974
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36881,7 +36987,7 @@ var subscriptionUpdateDryRun = /*#__PURE__*/Object.freeze({
36881
36987
  * pollination-server
36882
36988
  * Pollination Server OpenAPI Definition
36883
36989
  *
36884
- * The version of the OpenAPI document: 0.39.0
36990
+ * The version of the OpenAPI document: 0.40.0
36885
36991
  * Contact: info@pollination.cloud
36886
36992
  *
36887
36993
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36900,7 +37006,7 @@ var taskArgument = /*#__PURE__*/Object.freeze({
36900
37006
  * pollination-server
36901
37007
  * Pollination Server OpenAPI Definition
36902
37008
  *
36903
- * The version of the OpenAPI document: 0.39.0
37009
+ * The version of the OpenAPI document: 0.40.0
36904
37010
  * Contact: info@pollination.cloud
36905
37011
  *
36906
37012
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36919,7 +37025,7 @@ var taskFileReference = /*#__PURE__*/Object.freeze({
36919
37025
  * pollination-server
36920
37026
  * Pollination Server OpenAPI Definition
36921
37027
  *
36922
- * The version of the OpenAPI document: 0.39.0
37028
+ * The version of the OpenAPI document: 0.40.0
36923
37029
  * Contact: info@pollination.cloud
36924
37030
  *
36925
37031
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36938,7 +37044,7 @@ var taskFolderReference = /*#__PURE__*/Object.freeze({
36938
37044
  * pollination-server
36939
37045
  * Pollination Server OpenAPI Definition
36940
37046
  *
36941
- * The version of the OpenAPI document: 0.39.0
37047
+ * The version of the OpenAPI document: 0.40.0
36942
37048
  * Contact: info@pollination.cloud
36943
37049
  *
36944
37050
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36957,7 +37063,7 @@ var taskPathArgument = /*#__PURE__*/Object.freeze({
36957
37063
  * pollination-server
36958
37064
  * Pollination Server OpenAPI Definition
36959
37065
  *
36960
- * The version of the OpenAPI document: 0.39.0
37066
+ * The version of the OpenAPI document: 0.40.0
36961
37067
  * Contact: info@pollination.cloud
36962
37068
  *
36963
37069
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36976,7 +37082,7 @@ var taskPathReference = /*#__PURE__*/Object.freeze({
36976
37082
  * pollination-server
36977
37083
  * Pollination Server OpenAPI Definition
36978
37084
  *
36979
- * The version of the OpenAPI document: 0.39.0
37085
+ * The version of the OpenAPI document: 0.40.0
36980
37086
  * Contact: info@pollination.cloud
36981
37087
  *
36982
37088
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36995,7 +37101,7 @@ var taskPathReturn = /*#__PURE__*/Object.freeze({
36995
37101
  * pollination-server
36996
37102
  * Pollination Server OpenAPI Definition
36997
37103
  *
36998
- * The version of the OpenAPI document: 0.39.0
37104
+ * The version of the OpenAPI document: 0.40.0
36999
37105
  * Contact: info@pollination.cloud
37000
37106
  *
37001
37107
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37014,7 +37120,7 @@ var taskReference = /*#__PURE__*/Object.freeze({
37014
37120
  * pollination-server
37015
37121
  * Pollination Server OpenAPI Definition
37016
37122
  *
37017
- * The version of the OpenAPI document: 0.39.0
37123
+ * The version of the OpenAPI document: 0.40.0
37018
37124
  * Contact: info@pollination.cloud
37019
37125
  *
37020
37126
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37033,7 +37139,7 @@ var taskReturn = /*#__PURE__*/Object.freeze({
37033
37139
  * pollination-server
37034
37140
  * Pollination Server OpenAPI Definition
37035
37141
  *
37036
- * The version of the OpenAPI document: 0.39.0
37142
+ * The version of the OpenAPI document: 0.40.0
37037
37143
  * Contact: info@pollination.cloud
37038
37144
  *
37039
37145
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37052,7 +37158,7 @@ var team = /*#__PURE__*/Object.freeze({
37052
37158
  * pollination-server
37053
37159
  * Pollination Server OpenAPI Definition
37054
37160
  *
37055
- * The version of the OpenAPI document: 0.39.0
37161
+ * The version of the OpenAPI document: 0.40.0
37056
37162
  * Contact: info@pollination.cloud
37057
37163
  *
37058
37164
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37071,7 +37177,7 @@ var teamCreate = /*#__PURE__*/Object.freeze({
37071
37177
  * pollination-server
37072
37178
  * Pollination Server OpenAPI Definition
37073
37179
  *
37074
- * The version of the OpenAPI document: 0.39.0
37180
+ * The version of the OpenAPI document: 0.40.0
37075
37181
  * Contact: info@pollination.cloud
37076
37182
  *
37077
37183
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37090,7 +37196,7 @@ var teamList = /*#__PURE__*/Object.freeze({
37090
37196
  * pollination-server
37091
37197
  * Pollination Server OpenAPI Definition
37092
37198
  *
37093
- * The version of the OpenAPI document: 0.39.0
37199
+ * The version of the OpenAPI document: 0.40.0
37094
37200
  * Contact: info@pollination.cloud
37095
37201
  *
37096
37202
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37109,7 +37215,7 @@ var teamMember = /*#__PURE__*/Object.freeze({
37109
37215
  * pollination-server
37110
37216
  * Pollination Server OpenAPI Definition
37111
37217
  *
37112
- * The version of the OpenAPI document: 0.39.0
37218
+ * The version of the OpenAPI document: 0.40.0
37113
37219
  * Contact: info@pollination.cloud
37114
37220
  *
37115
37221
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37129,7 +37235,7 @@ var teamRoleEnum = createCommonjsModule(function (module, exports) {
37129
37235
  * pollination-server
37130
37236
  * Pollination Server OpenAPI Definition
37131
37237
  *
37132
- * The version of the OpenAPI document: 0.39.0
37238
+ * The version of the OpenAPI document: 0.40.0
37133
37239
  * Contact: info@pollination.cloud
37134
37240
  *
37135
37241
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37150,7 +37256,7 @@ exports.TeamRoleEnum = void 0;
37150
37256
  * pollination-server
37151
37257
  * Pollination Server OpenAPI Definition
37152
37258
  *
37153
- * The version of the OpenAPI document: 0.39.0
37259
+ * The version of the OpenAPI document: 0.40.0
37154
37260
  * Contact: info@pollination.cloud
37155
37261
  *
37156
37262
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37169,7 +37275,7 @@ var teamUpdate = /*#__PURE__*/Object.freeze({
37169
37275
  * pollination-server
37170
37276
  * Pollination Server OpenAPI Definition
37171
37277
  *
37172
- * The version of the OpenAPI document: 0.39.0
37278
+ * The version of the OpenAPI document: 0.40.0
37173
37279
  * Contact: info@pollination.cloud
37174
37280
  *
37175
37281
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37188,7 +37294,7 @@ var templateFunction = /*#__PURE__*/Object.freeze({
37188
37294
  * pollination-server
37189
37295
  * Pollination Server OpenAPI Definition
37190
37296
  *
37191
- * The version of the OpenAPI document: 0.39.0
37297
+ * The version of the OpenAPI document: 0.40.0
37192
37298
  * Contact: info@pollination.cloud
37193
37299
  *
37194
37300
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37207,7 +37313,7 @@ var updateAccepted = /*#__PURE__*/Object.freeze({
37207
37313
  * pollination-server
37208
37314
  * Pollination Server OpenAPI Definition
37209
37315
  *
37210
- * The version of the OpenAPI document: 0.39.0
37316
+ * The version of the OpenAPI document: 0.40.0
37211
37317
  * Contact: info@pollination.cloud
37212
37318
  *
37213
37319
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37226,7 +37332,7 @@ var usage = /*#__PURE__*/Object.freeze({
37226
37332
  * pollination-server
37227
37333
  * Pollination Server OpenAPI Definition
37228
37334
  *
37229
- * The version of the OpenAPI document: 0.39.0
37335
+ * The version of the OpenAPI document: 0.40.0
37230
37336
  * Contact: info@pollination.cloud
37231
37337
  *
37232
37338
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37245,7 +37351,7 @@ var userCreate = /*#__PURE__*/Object.freeze({
37245
37351
  * pollination-server
37246
37352
  * Pollination Server OpenAPI Definition
37247
37353
  *
37248
- * The version of the OpenAPI document: 0.39.0
37354
+ * The version of the OpenAPI document: 0.40.0
37249
37355
  * Contact: info@pollination.cloud
37250
37356
  *
37251
37357
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37264,7 +37370,7 @@ var userPermission = /*#__PURE__*/Object.freeze({
37264
37370
  * pollination-server
37265
37371
  * Pollination Server OpenAPI Definition
37266
37372
  *
37267
- * The version of the OpenAPI document: 0.39.0
37373
+ * The version of the OpenAPI document: 0.40.0
37268
37374
  * Contact: info@pollination.cloud
37269
37375
  *
37270
37376
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37283,7 +37389,7 @@ var userPrivate = /*#__PURE__*/Object.freeze({
37283
37389
  * pollination-server
37284
37390
  * Pollination Server OpenAPI Definition
37285
37391
  *
37286
- * The version of the OpenAPI document: 0.39.0
37392
+ * The version of the OpenAPI document: 0.40.0
37287
37393
  * Contact: info@pollination.cloud
37288
37394
  *
37289
37395
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37302,7 +37408,7 @@ var userPublic = /*#__PURE__*/Object.freeze({
37302
37408
  * pollination-server
37303
37409
  * Pollination Server OpenAPI Definition
37304
37410
  *
37305
- * The version of the OpenAPI document: 0.39.0
37411
+ * The version of the OpenAPI document: 0.40.0
37306
37412
  * Contact: info@pollination.cloud
37307
37413
  *
37308
37414
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37321,7 +37427,7 @@ var userPublicList = /*#__PURE__*/Object.freeze({
37321
37427
  * pollination-server
37322
37428
  * Pollination Server OpenAPI Definition
37323
37429
  *
37324
- * The version of the OpenAPI document: 0.39.0
37430
+ * The version of the OpenAPI document: 0.40.0
37325
37431
  * Contact: info@pollination.cloud
37326
37432
  *
37327
37433
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37340,7 +37446,7 @@ var userUpdate = /*#__PURE__*/Object.freeze({
37340
37446
  * pollination-server
37341
37447
  * Pollination Server OpenAPI Definition
37342
37448
  *
37343
- * The version of the OpenAPI document: 0.39.0
37449
+ * The version of the OpenAPI document: 0.40.0
37344
37450
  * Contact: info@pollination.cloud
37345
37451
  *
37346
37452
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37359,7 +37465,7 @@ var validationError = /*#__PURE__*/Object.freeze({
37359
37465
  * pollination-server
37360
37466
  * Pollination Server OpenAPI Definition
37361
37467
  *
37362
- * The version of the OpenAPI document: 0.39.0
37468
+ * The version of the OpenAPI document: 0.40.0
37363
37469
  * Contact: info@pollination.cloud
37364
37470
  *
37365
37471
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37378,7 +37484,7 @@ var valueFileReference = /*#__PURE__*/Object.freeze({
37378
37484
  * pollination-server
37379
37485
  * Pollination Server OpenAPI Definition
37380
37486
  *
37381
- * The version of the OpenAPI document: 0.39.0
37487
+ * The version of the OpenAPI document: 0.40.0
37382
37488
  * Contact: info@pollination.cloud
37383
37489
  *
37384
37490
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37397,7 +37503,7 @@ var valueFolderReference = /*#__PURE__*/Object.freeze({
37397
37503
  * pollination-server
37398
37504
  * Pollination Server OpenAPI Definition
37399
37505
  *
37400
- * The version of the OpenAPI document: 0.39.0
37506
+ * The version of the OpenAPI document: 0.40.0
37401
37507
  * Contact: info@pollination.cloud
37402
37508
  *
37403
37509
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37416,7 +37522,7 @@ var valueListReference = /*#__PURE__*/Object.freeze({
37416
37522
  * pollination-server
37417
37523
  * Pollination Server OpenAPI Definition
37418
37524
  *
37419
- * The version of the OpenAPI document: 0.39.0
37525
+ * The version of the OpenAPI document: 0.40.0
37420
37526
  * Contact: info@pollination.cloud
37421
37527
  *
37422
37528
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38183,7 +38289,7 @@ var dist$1 = createCommonjsModule(function (module, exports) {
38183
38289
  * pollination-server
38184
38290
  * Pollination Server OpenAPI Definition
38185
38291
  *
38186
- * The version of the OpenAPI document: 0.39.0
38292
+ * The version of the OpenAPI document: 0.40.0
38187
38293
  * Contact: info@pollination.cloud
38188
38294
  *
38189
38295
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41209,11 +41315,26 @@ var useJobs = function (client) {
41209
41315
  return data;
41210
41316
  });
41211
41317
  }, [client]);
41318
+ var retryFailedRuns = useCallback(function (projectOwner, projectName, jobId) {
41319
+ if (!client || !client.jobs)
41320
+ return;
41321
+ return client.jobs
41322
+ .retryJob({
41323
+ owner: projectOwner,
41324
+ name: projectName,
41325
+ jobId: jobId
41326
+ })
41327
+ .then(function (_a) {
41328
+ var data = _a.data;
41329
+ return data;
41330
+ });
41331
+ }, [client]);
41212
41332
  return {
41213
41333
  listJobs: listJobs,
41214
41334
  fetchJob: fetchJob,
41215
41335
  deleteJob: deleteJob,
41216
41336
  cancelJob: cancelJob,
41337
+ retryFailedRuns: retryFailedRuns,
41217
41338
  statusMap: statusMap,
41218
41339
  getDuration: getDuration,
41219
41340
  };
@@ -56091,17 +56212,18 @@ var StudyCard = function (_a) {
56091
56212
  /**
56092
56213
  * Fetch hooks
56093
56214
  */
56094
- var _7 = useJobs(client), fetchJob = _7.fetchJob, getDuration = _7.getDuration, statusMap = _7.statusMap, deleteJob = _7.deleteJob, cancelJob = _7.cancelJob;
56215
+ var _7 = useJobs(client), fetchJob = _7.fetchJob, getDuration = _7.getDuration, statusMap = _7.statusMap, deleteJob = _7.deleteJob, cancelJob = _7.cancelJob, retryFailedRuns = _7.retryFailedRuns;
56095
56216
  var _8 = useRuns(client), listRuns = _8.listRuns, getTrigger = _8.getTrigger;
56096
- var _9 = useWindowDimensions(), width = _9.width; _9.height;
56097
- var _10 = useState(false), seeDescription = _10[0], setSeeDescription = _10[1];
56098
- var _11 = useState(false), seeAction = _11[0], setSeeAction = _11[1];
56099
- var _12 = useState(false), stopRefresh = _12[0], setStopRefresh = _12[1];
56100
- var _13 = useState(false), isReady = _13[0], setIsReady = _13[1];
56217
+ var width = useWindowDimensions().width;
56218
+ var _9 = useState(false), seeDescription = _9[0], setSeeDescription = _9[1];
56219
+ var _10 = useState(false), seeAction = _10[0], setSeeAction = _10[1];
56220
+ var _11 = useState(false), stopRefresh = _11[0], setStopRefresh = _11[1];
56221
+ var _12 = useState(false), isReady = _12[0], setIsReady = _12[1];
56222
+ var _13 = useState(false), retryLoading = _13[0], setRetryLoading = _13[1];
56101
56223
  /**
56102
56224
  * From job to run
56103
56225
  */
56104
- var _14 = useSWR(authUser && _study ? [projectOwner, projectName, _study.id] : undefined, fetchJob, {
56226
+ var study = useSWR(authUser && _study ? [projectOwner, projectName, _study.id] : undefined, fetchJob, {
56105
56227
  revalidateOnFocus: true,
56106
56228
  refreshWhenHidden: true,
56107
56229
  refreshInterval: stopRefresh ? undefined : interval,
@@ -56135,7 +56257,7 @@ var StudyCard = function (_a) {
56135
56257
  if (study.status.finished_at)
56136
56258
  setStopRefresh(true);
56137
56259
  }
56138
- }), study = _14.data; _14.error; _14.isValidating;
56260
+ }).data;
56139
56261
  var sendJob = useCallback(function (job) { return getValue(job); }, [study]);
56140
56262
  var total = useMemo(function () {
56141
56263
  if (!study)
@@ -56159,8 +56281,8 @@ var StudyCard = function (_a) {
56159
56281
  }
56160
56282
  return study.status.status.toLocaleLowerCase();
56161
56283
  }, [study]);
56162
- var _15 = useState(), run = _15[0], setRun = _15[1];
56163
- var _16 = useState(getDuration(study)), duration = _16[0], setDuration = _16[1];
56284
+ var _14 = useState(), run = _14[0], setRun = _14[1];
56285
+ var _15 = useState(getDuration(study)), duration = _15[0], setDuration = _15[1];
56164
56286
  useEffect(function () {
56165
56287
  setRun(undefined);
56166
56288
  if (!study)
@@ -56191,7 +56313,7 @@ var StudyCard = function (_a) {
56191
56313
  info: false,
56192
56314
  settings: false
56193
56315
  };
56194
- var _17 = useState(__assign(__assign({}, initialValues), (_b = {}, _b[defaultTab] = true, _b))), hover = _17[0], setHover = _17[1];
56316
+ var _16 = useState(__assign(__assign({}, initialValues), (_b = {}, _b[defaultTab] = true, _b))), hover = _16[0], setHover = _16[1];
56195
56317
  var toggleHover = useCallback(function (id, value) {
56196
56318
  if (value === void 0) { value = false; }
56197
56319
  setHover(function (prevHover) {
@@ -56367,7 +56489,9 @@ var StudyCard = function (_a) {
56367
56489
  } },
56368
56490
  React__default.createElement(Trash$1, { style: { display: 'inline', margin: '0 5px 0 0' } }),
56369
56491
  " Delete"),
56370
- React__default.createElement(Button, { style: (width > 600) ? { display: 'inline' } : { display: 'inline', float: 'left' }, disabled: !study || (study.status.runs_pending < 1 && study.status.runs_running < 1), onClick: function (e) {
56492
+ React__default.createElement(Button, { style: (width > 600) ?
56493
+ { display: 'inline', margin: '0 10px 0 0' }
56494
+ : { display: 'inline', float: 'left', margin: '0 10px 0 0' }, disabled: !study || (study.status.runs_pending < 1 && study.status.runs_running < 1), onClick: function (e) {
56371
56495
  e.stopPropagation();
56372
56496
  if (!study)
56373
56497
  return;
@@ -56376,7 +56500,39 @@ var StudyCard = function (_a) {
56376
56500
  .catch(function (e) { return console.log(e); });
56377
56501
  } },
56378
56502
  React__default.createElement(XOctagon$1, { style: { display: 'inline', margin: '0 5px 0 0' } }),
56379
- " Cancel")))));
56503
+ " Cancel"),
56504
+ React__default.createElement(Button, { style: (width > 600) ? { display: 'inline' } : { display: 'inline', float: 'left' }, disabled: !study || (study.status.runs_cancelled == 0 || study.status.runs_failed == 0), loading: retryLoading, onClick: function (e) {
56505
+ setRetryLoading(true);
56506
+ e.stopPropagation();
56507
+ if (!study)
56508
+ return;
56509
+ n$1.promise(retryFailedRuns(projectOwner, projectName, study.id), {
56510
+ loading: 'Retrying failed runs...',
56511
+ success: 'Retried failed runs',
56512
+ error: function (err) {
56513
+ console.log(err);
56514
+ return "Failed to retry failed run: ".concat(err);
56515
+ }
56516
+ }, {
56517
+ style: { minWidth: '300px', fontSize: '12px' },
56518
+ success: {
56519
+ duration: 5000,
56520
+ icon: '🔥',
56521
+ position: 'bottom-left'
56522
+ },
56523
+ error: {
56524
+ duration: 5000,
56525
+ position: 'bottom-left'
56526
+ },
56527
+ loading: {
56528
+ position: 'bottom-left'
56529
+ }
56530
+ }).finally(function () {
56531
+ setRetryLoading(false);
56532
+ });
56533
+ } },
56534
+ React__default.createElement(Recycle$1, { style: { display: 'inline', margin: '0 5px 0 0' } }),
56535
+ " Retry Failed Runs")))));
56380
56536
  };
56381
56537
 
56382
56538
  var RunTabs;
@@ -56415,10 +56571,13 @@ var RunCard = function (_a) {
56415
56571
  var _8 = useState(false), stopRefresh = _8[0], setStopRefresh = _8[1];
56416
56572
  var _9 = useState(false), isReady = _9[0], setIsReady = _9[1];
56417
56573
  var _10 = useState(false), retryLoading = _10[0], setRetryLoading = _10[1];
56574
+ var swrKey = useMemo(function () {
56575
+ return authUser && _run ? (!localRun ? [projectOwner, projectName, _run.id] : [_run.id, _run['subfolder']]) : undefined;
56576
+ }, [authUser, _run, localRun, projectOwner, projectName]);
56418
56577
  /*
56419
56578
  * From run and stop when it is done
56420
56579
  */
56421
- var _11 = useSWR(authUser && _run ? (!localRun ? [projectOwner, projectName, _run.id] : [_run.id, _run['subfolder']]) : undefined, localRun ? fetchLocalRun : fetchRun, {
56580
+ var _11 = useSWR(swrKey, localRun ? fetchLocalRun : fetchRun, {
56422
56581
  revalidateOnFocus: true,
56423
56582
  refreshWhenHidden: true,
56424
56583
  refreshInterval: stopRefresh ? undefined : interval,
@@ -56721,7 +56880,9 @@ var RunCard = function (_a) {
56721
56880
  if (!run)
56722
56881
  return;
56723
56882
  cancelRun(projectOwner, projectName, run.id)
56724
- .then(function (d) { return console.log(d); })
56883
+ .then(function (d) {
56884
+ mutate(swrKey);
56885
+ })
56725
56886
  .catch(function (e) { return console.log(e); });
56726
56887
  } },
56727
56888
  React__default.createElement(XOctagon$1, { style: { display: 'inline', margin: '0 5px 0 0' } }),
@@ -56735,14 +56896,15 @@ var RunCard = function (_a) {
56735
56896
  if (!run)
56736
56897
  return;
56737
56898
  n$1.promise(retryRun(projectOwner, projectName, run.id), {
56738
- loading: 'Loading',
56899
+ loading: 'Retrying run...',
56739
56900
  success: function (data) {
56740
56901
  setStopRefresh(false);
56902
+ mutate(swrKey);
56741
56903
  return 'Retry in progress. Please wait.';
56742
56904
  },
56743
56905
  error: function (err) {
56744
56906
  console.log(err);
56745
- return "This just happened: ".concat(err.toString());
56907
+ return "Failed to retry run: ".concat(err);
56746
56908
  },
56747
56909
  }, {
56748
56910
  style: { minWidth: '300px', fontSize: '12px' },