@emilgroup/insurance-sdk-node 1.94.1-beta.0 → 1.94.1-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/booking-funnels-api.ts +12 -12
- package/api/commission-agreement-items-api.ts +12 -12
- package/api/commission-agreement-products-api.ts +12 -12
- package/api/commission-agreement-versions-api.ts +12 -12
- package/api/commission-agreements-api.ts +12 -12
- package/api/commission-recipients-api.ts +12 -12
- package/api/partner-links-api.ts +12 -12
- package/api/policies-api.ts +36 -36
- package/api/product-configs-api.ts +8 -8
- package/dist/api/booking-funnels-api.d.ts +12 -12
- package/dist/api/booking-funnels-api.js +10 -10
- package/dist/api/commission-agreement-items-api.d.ts +12 -12
- package/dist/api/commission-agreement-items-api.js +10 -10
- package/dist/api/commission-agreement-products-api.d.ts +12 -12
- package/dist/api/commission-agreement-products-api.js +10 -10
- package/dist/api/commission-agreement-versions-api.d.ts +12 -12
- package/dist/api/commission-agreement-versions-api.js +10 -10
- package/dist/api/commission-agreements-api.d.ts +12 -12
- package/dist/api/commission-agreements-api.js +10 -10
- package/dist/api/commission-recipients-api.d.ts +12 -12
- package/dist/api/commission-recipients-api.js +10 -10
- package/dist/api/partner-links-api.d.ts +12 -12
- package/dist/api/partner-links-api.js +10 -10
- package/dist/api/policies-api.d.ts +36 -36
- package/dist/api/policies-api.js +30 -30
- package/dist/api/product-configs-api.d.ts +8 -8
- package/dist/api/product-configs-api.js +6 -6
- package/dist/models/product-version-class.d.ts +6 -0
- package/models/product-version-class.ts +6 -0
- package/package.json +1 -1
package/dist/api/policies-api.js
CHANGED
|
@@ -460,16 +460,16 @@ var PoliciesApiAxiosParamCreator = function (configuration) {
|
|
|
460
460
|
});
|
|
461
461
|
},
|
|
462
462
|
/**
|
|
463
|
-
* Returns a list of policies you have previously created.
|
|
463
|
+
* Returns a list of policies you have previously created. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
464
464
|
* @summary List policies
|
|
465
465
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
466
466
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
467
467
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
468
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
468
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadCode, policyNumber, holder, policyStartDate, productSlug, productVersionId, productId, accountCode, productName, status, statuses, createdAt, policyData, partnerCode</i>
|
|
469
469
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
470
470
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, policyNumber, createdAt, updatedAt, policyStartDate, productVersionId, productId</i>
|
|
471
471
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: versions, product, timelines, premiums, premiumItems, premiumFormulas, currentVersion, currentTimelines, currentPremiums, currentPremiumItems, currentPremiumFormulas, partnerLinks<i>
|
|
472
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
472
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, leadCode, policyNumber, holder, policyStartDate, productSlug, productVersionId, productId, accountCode, productName, status, statuses, createdAt, policyData, partnerCode</i>
|
|
473
473
|
* @param {*} [options] Override http request option.
|
|
474
474
|
* @throws {RequiredError}
|
|
475
475
|
*/
|
|
@@ -532,16 +532,16 @@ var PoliciesApiAxiosParamCreator = function (configuration) {
|
|
|
532
532
|
});
|
|
533
533
|
},
|
|
534
534
|
/**
|
|
535
|
-
* Returns a list of policy objects you have previously created.
|
|
535
|
+
* Returns a list of policy objects you have previously created. The policy objects are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
536
536
|
* @summary List policy objects
|
|
537
537
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
538
538
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
539
539
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
540
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
540
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, insuredObjectId, insuredObjectName, policyCode, date</i>
|
|
541
541
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
542
542
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, timesliceId, insuredObjectId, createdAt, updatedAt</i>
|
|
543
543
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
544
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
544
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, insuredObjectId, insuredObjectName, policyCode, date</i>
|
|
545
545
|
* @param {*} [options] Override http request option.
|
|
546
546
|
* @throws {RequiredError}
|
|
547
547
|
*/
|
|
@@ -604,17 +604,17 @@ var PoliciesApiAxiosParamCreator = function (configuration) {
|
|
|
604
604
|
});
|
|
605
605
|
},
|
|
606
606
|
/**
|
|
607
|
-
* Returns a list of policy versions you have previously created.
|
|
607
|
+
* Returns a list of policy versions you have previously created. The policy versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
608
608
|
* @summary List policy versions
|
|
609
609
|
* @param {string} policyCode
|
|
610
610
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
611
611
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
612
612
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
613
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
613
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, policyId</i>
|
|
614
614
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
615
615
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, policyId, createdAt, updatedAt</i>
|
|
616
616
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: timelines, premiums, premiumItems, premiumFormulas<i>
|
|
617
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
617
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, policyId</i>
|
|
618
618
|
* @param {*} [options] Override http request option.
|
|
619
619
|
* @throws {RequiredError}
|
|
620
620
|
*/
|
|
@@ -1214,16 +1214,16 @@ var PoliciesApiFp = function (configuration) {
|
|
|
1214
1214
|
});
|
|
1215
1215
|
},
|
|
1216
1216
|
/**
|
|
1217
|
-
* Returns a list of policies you have previously created.
|
|
1217
|
+
* Returns a list of policies you have previously created. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
1218
1218
|
* @summary List policies
|
|
1219
1219
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1220
1220
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
1221
1221
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
1222
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
1222
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadCode, policyNumber, holder, policyStartDate, productSlug, productVersionId, productId, accountCode, productName, status, statuses, createdAt, policyData, partnerCode</i>
|
|
1223
1223
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
1224
1224
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, policyNumber, createdAt, updatedAt, policyStartDate, productVersionId, productId</i>
|
|
1225
1225
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: versions, product, timelines, premiums, premiumItems, premiumFormulas, currentVersion, currentTimelines, currentPremiums, currentPremiumItems, currentPremiumFormulas, partnerLinks<i>
|
|
1226
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
1226
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, leadCode, policyNumber, holder, policyStartDate, productSlug, productVersionId, productId, accountCode, productName, status, statuses, createdAt, policyData, partnerCode</i>
|
|
1227
1227
|
* @param {*} [options] Override http request option.
|
|
1228
1228
|
* @throws {RequiredError}
|
|
1229
1229
|
*/
|
|
@@ -1241,16 +1241,16 @@ var PoliciesApiFp = function (configuration) {
|
|
|
1241
1241
|
});
|
|
1242
1242
|
},
|
|
1243
1243
|
/**
|
|
1244
|
-
* Returns a list of policy objects you have previously created.
|
|
1244
|
+
* Returns a list of policy objects you have previously created. The policy objects are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
1245
1245
|
* @summary List policy objects
|
|
1246
1246
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1247
1247
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
1248
1248
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
1249
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
1249
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, insuredObjectId, insuredObjectName, policyCode, date</i>
|
|
1250
1250
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
1251
1251
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, timesliceId, insuredObjectId, createdAt, updatedAt</i>
|
|
1252
1252
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
1253
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
1253
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, insuredObjectId, insuredObjectName, policyCode, date</i>
|
|
1254
1254
|
* @param {*} [options] Override http request option.
|
|
1255
1255
|
* @throws {RequiredError}
|
|
1256
1256
|
*/
|
|
@@ -1268,17 +1268,17 @@ var PoliciesApiFp = function (configuration) {
|
|
|
1268
1268
|
});
|
|
1269
1269
|
},
|
|
1270
1270
|
/**
|
|
1271
|
-
* Returns a list of policy versions you have previously created.
|
|
1271
|
+
* Returns a list of policy versions you have previously created. The policy versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
1272
1272
|
* @summary List policy versions
|
|
1273
1273
|
* @param {string} policyCode
|
|
1274
1274
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1275
1275
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
1276
1276
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
1277
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
1277
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, policyId</i>
|
|
1278
1278
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
1279
1279
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, policyId, createdAt, updatedAt</i>
|
|
1280
1280
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: timelines, premiums, premiumItems, premiumFormulas<i>
|
|
1281
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
1281
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, policyId</i>
|
|
1282
1282
|
* @param {*} [options] Override http request option.
|
|
1283
1283
|
* @throws {RequiredError}
|
|
1284
1284
|
*/
|
|
@@ -1543,16 +1543,16 @@ var PoliciesApiFactory = function (configuration, basePath, axios) {
|
|
|
1543
1543
|
return localVarFp.getPolicyDataByDate(code, authorization, timesliceDate, expand, options).then(function (request) { return request(axios, basePath); });
|
|
1544
1544
|
},
|
|
1545
1545
|
/**
|
|
1546
|
-
* Returns a list of policies you have previously created.
|
|
1546
|
+
* Returns a list of policies you have previously created. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
1547
1547
|
* @summary List policies
|
|
1548
1548
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1549
1549
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
1550
1550
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
1551
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
1551
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadCode, policyNumber, holder, policyStartDate, productSlug, productVersionId, productId, accountCode, productName, status, statuses, createdAt, policyData, partnerCode</i>
|
|
1552
1552
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
1553
1553
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, policyNumber, createdAt, updatedAt, policyStartDate, productVersionId, productId</i>
|
|
1554
1554
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: versions, product, timelines, premiums, premiumItems, premiumFormulas, currentVersion, currentTimelines, currentPremiums, currentPremiumItems, currentPremiumFormulas, partnerLinks<i>
|
|
1555
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
1555
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, leadCode, policyNumber, holder, policyStartDate, productSlug, productVersionId, productId, accountCode, productName, status, statuses, createdAt, policyData, partnerCode</i>
|
|
1556
1556
|
* @param {*} [options] Override http request option.
|
|
1557
1557
|
* @throws {RequiredError}
|
|
1558
1558
|
*/
|
|
@@ -1560,16 +1560,16 @@ var PoliciesApiFactory = function (configuration, basePath, axios) {
|
|
|
1560
1560
|
return localVarFp.listPolicies(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
1561
1561
|
},
|
|
1562
1562
|
/**
|
|
1563
|
-
* Returns a list of policy objects you have previously created.
|
|
1563
|
+
* Returns a list of policy objects you have previously created. The policy objects are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
1564
1564
|
* @summary List policy objects
|
|
1565
1565
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1566
1566
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
1567
1567
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
1568
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
1568
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, insuredObjectId, insuredObjectName, policyCode, date</i>
|
|
1569
1569
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
1570
1570
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, timesliceId, insuredObjectId, createdAt, updatedAt</i>
|
|
1571
1571
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
1572
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
1572
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, insuredObjectId, insuredObjectName, policyCode, date</i>
|
|
1573
1573
|
* @param {*} [options] Override http request option.
|
|
1574
1574
|
* @throws {RequiredError}
|
|
1575
1575
|
*/
|
|
@@ -1577,17 +1577,17 @@ var PoliciesApiFactory = function (configuration, basePath, axios) {
|
|
|
1577
1577
|
return localVarFp.listPolicyObjects(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
1578
1578
|
},
|
|
1579
1579
|
/**
|
|
1580
|
-
* Returns a list of policy versions you have previously created.
|
|
1580
|
+
* Returns a list of policy versions you have previously created. The policy versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
1581
1581
|
* @summary List policy versions
|
|
1582
1582
|
* @param {string} policyCode
|
|
1583
1583
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1584
1584
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
1585
1585
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
1586
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
1586
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, policyId</i>
|
|
1587
1587
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
1588
1588
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, policyId, createdAt, updatedAt</i>
|
|
1589
1589
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: timelines, premiums, premiumItems, premiumFormulas<i>
|
|
1590
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
1590
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, policyId</i>
|
|
1591
1591
|
* @param {*} [options] Override http request option.
|
|
1592
1592
|
* @throws {RequiredError}
|
|
1593
1593
|
*/
|
|
@@ -1777,7 +1777,7 @@ var PoliciesApi = /** @class */ (function (_super) {
|
|
|
1777
1777
|
return (0, exports.PoliciesApiFp)(this.configuration).getPolicyDataByDate(requestParameters.code, requestParameters.authorization, requestParameters.timesliceDate, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1778
1778
|
};
|
|
1779
1779
|
/**
|
|
1780
|
-
* Returns a list of policies you have previously created.
|
|
1780
|
+
* Returns a list of policies you have previously created. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
1781
1781
|
* @summary List policies
|
|
1782
1782
|
* @param {PoliciesApiListPoliciesRequest} requestParameters Request parameters.
|
|
1783
1783
|
* @param {*} [options] Override http request option.
|
|
@@ -1790,7 +1790,7 @@ var PoliciesApi = /** @class */ (function (_super) {
|
|
|
1790
1790
|
return (0, exports.PoliciesApiFp)(this.configuration).listPolicies(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1791
1791
|
};
|
|
1792
1792
|
/**
|
|
1793
|
-
* Returns a list of policy objects you have previously created.
|
|
1793
|
+
* Returns a list of policy objects you have previously created. The policy objects are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
1794
1794
|
* @summary List policy objects
|
|
1795
1795
|
* @param {PoliciesApiListPolicyObjectsRequest} requestParameters Request parameters.
|
|
1796
1796
|
* @param {*} [options] Override http request option.
|
|
@@ -1803,7 +1803,7 @@ var PoliciesApi = /** @class */ (function (_super) {
|
|
|
1803
1803
|
return (0, exports.PoliciesApiFp)(this.configuration).listPolicyObjects(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1804
1804
|
};
|
|
1805
1805
|
/**
|
|
1806
|
-
* Returns a list of policy versions you have previously created.
|
|
1806
|
+
* Returns a list of policy versions you have previously created. The policy versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.policies.view\"
|
|
1807
1807
|
* @summary List policy versions
|
|
1808
1808
|
* @param {PoliciesApiListPolicyVersionsRequest} requestParameters Request parameters.
|
|
1809
1809
|
* @param {*} [options] Override http request option.
|
|
@@ -69,11 +69,11 @@ export declare const ProductConfigsApiAxiosParamCreator: (configuration?: Config
|
|
|
69
69
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
70
70
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
71
71
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
72
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
72
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
73
73
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
74
74
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
75
75
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
76
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
76
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
77
77
|
* @param {*} [options] Override http request option.
|
|
78
78
|
* @throws {RequiredError}
|
|
79
79
|
*/
|
|
@@ -140,11 +140,11 @@ export declare const ProductConfigsApiFp: (configuration?: Configuration) => {
|
|
|
140
140
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
141
141
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
142
142
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
143
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
143
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
144
144
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
145
145
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
146
146
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
147
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
147
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
148
148
|
* @param {*} [options] Override http request option.
|
|
149
149
|
* @throws {RequiredError}
|
|
150
150
|
*/
|
|
@@ -211,11 +211,11 @@ export declare const ProductConfigsApiFactory: (configuration?: Configuration, b
|
|
|
211
211
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
212
212
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
213
213
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
214
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
214
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
215
215
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
216
216
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
217
217
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
218
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
218
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
219
219
|
* @param {*} [options] Override http request option.
|
|
220
220
|
* @throws {RequiredError}
|
|
221
221
|
*/
|
|
@@ -351,7 +351,7 @@ export interface ProductConfigsApiListProductConfigsRequest {
|
|
|
351
351
|
*/
|
|
352
352
|
readonly pageToken?: string;
|
|
353
353
|
/**
|
|
354
|
-
* Filter the response by one or multiple fields.
|
|
354
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
355
355
|
* @type {string}
|
|
356
356
|
* @memberof ProductConfigsApiListProductConfigs
|
|
357
357
|
*/
|
|
@@ -375,7 +375,7 @@ export interface ProductConfigsApiListProductConfigsRequest {
|
|
|
375
375
|
*/
|
|
376
376
|
readonly expand?: string;
|
|
377
377
|
/**
|
|
378
|
-
* Filters the response by one or multiple fields.
|
|
378
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
379
379
|
* @type {string}
|
|
380
380
|
* @memberof ProductConfigsApiListProductConfigs
|
|
381
381
|
*/
|
|
@@ -316,11 +316,11 @@ var ProductConfigsApiAxiosParamCreator = function (configuration) {
|
|
|
316
316
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
317
317
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
318
318
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
319
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
319
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
320
320
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
321
321
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
322
322
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
323
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
323
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
324
324
|
* @param {*} [options] Override http request option.
|
|
325
325
|
* @throws {RequiredError}
|
|
326
326
|
*/
|
|
@@ -546,11 +546,11 @@ var ProductConfigsApiFp = function (configuration) {
|
|
|
546
546
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
547
547
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
548
548
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
549
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
549
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
550
550
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
551
551
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
552
552
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
553
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
553
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
554
554
|
* @param {*} [options] Override http request option.
|
|
555
555
|
* @throws {RequiredError}
|
|
556
556
|
*/
|
|
@@ -653,11 +653,11 @@ var ProductConfigsApiFactory = function (configuration, basePath, axios) {
|
|
|
653
653
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
654
654
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
655
655
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
656
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
656
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
657
657
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
658
658
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
659
659
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
660
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
660
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, slug, productSlug, productVersionId, createdAt</i>
|
|
661
661
|
* @param {*} [options] Override http request option.
|
|
662
662
|
* @throws {RequiredError}
|
|
663
663
|
*/
|
|
@@ -27,6 +27,12 @@ export interface ProductVersionClass {
|
|
|
27
27
|
* @memberof ProductVersionClass
|
|
28
28
|
*/
|
|
29
29
|
'productId': number;
|
|
30
|
+
/**
|
|
31
|
+
* Product version code.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ProductVersionClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
30
36
|
/**
|
|
31
37
|
* Product version description.
|
|
32
38
|
* @type {string}
|
|
@@ -32,6 +32,12 @@ export interface ProductVersionClass {
|
|
|
32
32
|
* @memberof ProductVersionClass
|
|
33
33
|
*/
|
|
34
34
|
'productId': number;
|
|
35
|
+
/**
|
|
36
|
+
* Product version code.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ProductVersionClass
|
|
39
|
+
*/
|
|
40
|
+
'code': string;
|
|
35
41
|
/**
|
|
36
42
|
* Product version description.
|
|
37
43
|
* @type {string}
|