@emilgroup/setting-sdk-node 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/setting-sdk-node@0.
|
|
20
|
+
npm install @emilgroup/setting-sdk-node@0.3.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/setting-sdk-node@0.
|
|
24
|
+
yarn add @emilgroup/setting-sdk-node@0.3.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import ``.
|
package/api/public-keys-api.ts
CHANGED
|
@@ -200,8 +200,8 @@ export const PublicKeysApiAxiosParamCreator = function (configuration?: Configur
|
|
|
200
200
|
* List public keys with optional filters, sorting, and pagination. Use filters to find keys by slug, code, or other attributes.
|
|
201
201
|
* @summary List public keys
|
|
202
202
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
203
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
204
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
203
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
204
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
205
205
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, slug, key</i>
|
|
206
206
|
* @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: createdAt</i>
|
|
207
207
|
* @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/>
|
|
@@ -410,8 +410,8 @@ export const PublicKeysApiFp = function(configuration?: Configuration) {
|
|
|
410
410
|
* List public keys with optional filters, sorting, and pagination. Use filters to find keys by slug, code, or other attributes.
|
|
411
411
|
* @summary List public keys
|
|
412
412
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
413
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
414
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
413
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
414
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
415
415
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, slug, key</i>
|
|
416
416
|
* @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: createdAt</i>
|
|
417
417
|
* @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/>
|
|
@@ -496,8 +496,8 @@ export const PublicKeysApiFactory = function (configuration?: Configuration, bas
|
|
|
496
496
|
* List public keys with optional filters, sorting, and pagination. Use filters to find keys by slug, code, or other attributes.
|
|
497
497
|
* @summary List public keys
|
|
498
498
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
499
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
500
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
499
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
500
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
501
501
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, slug, key</i>
|
|
502
502
|
* @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: createdAt</i>
|
|
503
503
|
* @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/>
|
|
@@ -624,14 +624,14 @@ export interface PublicKeysApiListPublicKeysRequest {
|
|
|
624
624
|
readonly authorization?: string
|
|
625
625
|
|
|
626
626
|
/**
|
|
627
|
-
* Filter the response by one or multiple fields.
|
|
627
|
+
* 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, key, createdAt, updatedAt, deletedAt</i>
|
|
628
628
|
* @type {string}
|
|
629
629
|
* @memberof PublicKeysApiListPublicKeys
|
|
630
630
|
*/
|
|
631
631
|
readonly filter?: string
|
|
632
632
|
|
|
633
633
|
/**
|
|
634
|
-
* Filters the response by one or multiple fields.
|
|
634
|
+
* 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, key, createdAt, updatedAt, deletedAt</i>
|
|
635
635
|
* @type {string}
|
|
636
636
|
* @memberof PublicKeysApiListPublicKeys
|
|
637
637
|
*/
|
|
@@ -58,8 +58,8 @@ export declare const PublicKeysApiAxiosParamCreator: (configuration?: Configurat
|
|
|
58
58
|
* List public keys with optional filters, sorting, and pagination. Use filters to find keys by slug, code, or other attributes.
|
|
59
59
|
* @summary List public keys
|
|
60
60
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
61
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
62
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
61
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
62
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
63
63
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, slug, key</i>
|
|
64
64
|
* @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: createdAt</i>
|
|
65
65
|
* @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/>
|
|
@@ -125,8 +125,8 @@ export declare const PublicKeysApiFp: (configuration?: Configuration) => {
|
|
|
125
125
|
* List public keys with optional filters, sorting, and pagination. Use filters to find keys by slug, code, or other attributes.
|
|
126
126
|
* @summary List public keys
|
|
127
127
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
128
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
129
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
128
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
129
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
130
130
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, slug, key</i>
|
|
131
131
|
* @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: createdAt</i>
|
|
132
132
|
* @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/>
|
|
@@ -192,8 +192,8 @@ export declare const PublicKeysApiFactory: (configuration?: Configuration, baseP
|
|
|
192
192
|
* List public keys with optional filters, sorting, and pagination. Use filters to find keys by slug, code, or other attributes.
|
|
193
193
|
* @summary List public keys
|
|
194
194
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
195
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
196
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
195
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
196
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
197
197
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, slug, key</i>
|
|
198
198
|
* @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: createdAt</i>
|
|
199
199
|
* @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/>
|
|
@@ -303,13 +303,13 @@ export interface PublicKeysApiListPublicKeysRequest {
|
|
|
303
303
|
*/
|
|
304
304
|
readonly authorization?: string;
|
|
305
305
|
/**
|
|
306
|
-
* Filter the response by one or multiple fields.
|
|
306
|
+
* 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, key, createdAt, updatedAt, deletedAt</i>
|
|
307
307
|
* @type {string}
|
|
308
308
|
* @memberof PublicKeysApiListPublicKeys
|
|
309
309
|
*/
|
|
310
310
|
readonly filter?: string;
|
|
311
311
|
/**
|
|
312
|
-
* Filters the response by one or multiple fields.
|
|
312
|
+
* 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, key, createdAt, updatedAt, deletedAt</i>
|
|
313
313
|
* @type {string}
|
|
314
314
|
* @memberof PublicKeysApiListPublicKeys
|
|
315
315
|
*/
|
|
@@ -256,8 +256,8 @@ var PublicKeysApiAxiosParamCreator = function (configuration) {
|
|
|
256
256
|
* List public keys with optional filters, sorting, and pagination. Use filters to find keys by slug, code, or other attributes.
|
|
257
257
|
* @summary List public keys
|
|
258
258
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
259
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
260
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
259
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
260
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
261
261
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, slug, key</i>
|
|
262
262
|
* @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: createdAt</i>
|
|
263
263
|
* @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/>
|
|
@@ -496,8 +496,8 @@ var PublicKeysApiFp = function (configuration) {
|
|
|
496
496
|
* List public keys with optional filters, sorting, and pagination. Use filters to find keys by slug, code, or other attributes.
|
|
497
497
|
* @summary List public keys
|
|
498
498
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
499
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
500
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
499
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
500
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
501
501
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, slug, key</i>
|
|
502
502
|
* @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: createdAt</i>
|
|
503
503
|
* @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/>
|
|
@@ -609,8 +609,8 @@ var PublicKeysApiFactory = function (configuration, basePath, axios) {
|
|
|
609
609
|
* List public keys with optional filters, sorting, and pagination. Use filters to find keys by slug, code, or other attributes.
|
|
610
610
|
* @summary List public keys
|
|
611
611
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
612
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
613
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
612
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
613
|
+
* @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, key, createdAt, updatedAt, deletedAt</i>
|
|
614
614
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, slug, key</i>
|
|
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: createdAt</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/>
|