@infisale-client/api 1.2.97 → 1.2.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/api.d.ts +6 -5
- package/dist/api/api.js +2 -1
- package/dist/api/api.mjs +2 -1
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -527,6 +527,7 @@ export declare const FileKeywordEnum: {
|
|
|
527
527
|
readonly PRODUCT: "product";
|
|
528
528
|
readonly ATTACHMENT: "attachment";
|
|
529
529
|
readonly COMMENT: "comment";
|
|
530
|
+
readonly LEGAL: "legal";
|
|
530
531
|
};
|
|
531
532
|
export type FileKeywordEnum = typeof FileKeywordEnum[keyof typeof FileKeywordEnum];
|
|
532
533
|
/**
|
|
@@ -6857,13 +6858,13 @@ export interface IProductPostRequest {
|
|
|
6857
6858
|
* @type {string}
|
|
6858
6859
|
* @memberof IProductPostRequest
|
|
6859
6860
|
*/
|
|
6860
|
-
'category'
|
|
6861
|
+
'category'?: string;
|
|
6861
6862
|
/**
|
|
6862
6863
|
*
|
|
6863
6864
|
* @type {string}
|
|
6864
6865
|
* @memberof IProductPostRequest
|
|
6865
6866
|
*/
|
|
6866
|
-
'brand'
|
|
6867
|
+
'brand'?: string;
|
|
6867
6868
|
/**
|
|
6868
6869
|
*
|
|
6869
6870
|
* @type {ITemplateResponse}
|
|
@@ -7022,13 +7023,13 @@ export interface IProductResponse {
|
|
|
7022
7023
|
* @type {IBrandResponse}
|
|
7023
7024
|
* @memberof IProductResponse
|
|
7024
7025
|
*/
|
|
7025
|
-
'brand'
|
|
7026
|
+
'brand'?: IBrandResponse;
|
|
7026
7027
|
/**
|
|
7027
7028
|
*
|
|
7028
7029
|
* @type {ICategoryResponse}
|
|
7029
7030
|
* @memberof IProductResponse
|
|
7030
7031
|
*/
|
|
7031
|
-
'category'
|
|
7032
|
+
'category'?: ICategoryResponse;
|
|
7032
7033
|
/**
|
|
7033
7034
|
*
|
|
7034
7035
|
* @type {ITemplateResponse}
|
|
@@ -10673,7 +10674,7 @@ export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
|
10673
10674
|
* @type {string}
|
|
10674
10675
|
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10675
10676
|
*/
|
|
10676
|
-
'category'
|
|
10677
|
+
'category'?: string;
|
|
10677
10678
|
/**
|
|
10678
10679
|
*
|
|
10679
10680
|
* @type {Array<string>}
|
package/dist/api/api.js
CHANGED
package/dist/api/api.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.99",
|
|
4
4
|
"description": "api-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "57df51cb5d3142ef5248f9329c9a63a8f2c721d7"
|
|
41
41
|
}
|