flexinet-api 0.0.1155-prerelease0 → 0.0.1156-prerelease0
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.ts +8 -1
- package/dist/api.d.ts +7 -0
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +7 -0
- package/dist/esm/api.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
## flexinet-api@0.0.
|
1
|
+
## flexinet-api@0.0.1156-prerelease0
|
2
2
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
4
4
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
36
36
|
_published:_
|
37
37
|
|
38
38
|
```
|
39
|
-
npm install flexinet-api@0.0.
|
39
|
+
npm install flexinet-api@0.0.1156-prerelease0 --save
|
40
40
|
```
|
41
41
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
@@ -1092,6 +1092,12 @@ export interface Notification {
|
|
1092
1092
|
* @memberof Notification
|
1093
1093
|
*/
|
1094
1094
|
'references'?: Array<NotificationReferencesInner>;
|
1095
|
+
/**
|
1096
|
+
*
|
1097
|
+
* @type {User}
|
1098
|
+
* @memberof Notification
|
1099
|
+
*/
|
1100
|
+
'user'?: User;
|
1095
1101
|
}
|
1096
1102
|
|
1097
1103
|
|
@@ -1135,7 +1141,8 @@ export const NotificationKind = {
|
|
1135
1141
|
NewProduct: 'new_product',
|
1136
1142
|
ExpiryReminder: 'expiry_reminder',
|
1137
1143
|
OrderConfirmation: 'order_confirmation',
|
1138
|
-
ProductRequestResponse: 'product_request_response'
|
1144
|
+
ProductRequestResponse: 'product_request_response',
|
1145
|
+
ProductRequest: 'product_request'
|
1139
1146
|
} as const;
|
1140
1147
|
|
1141
1148
|
export type NotificationKind = typeof NotificationKind[keyof typeof NotificationKind];
|
package/dist/api.d.ts
CHANGED
@@ -1033,6 +1033,12 @@ export interface Notification {
|
|
1033
1033
|
* @memberof Notification
|
1034
1034
|
*/
|
1035
1035
|
'references'?: Array<NotificationReferencesInner>;
|
1036
|
+
/**
|
1037
|
+
*
|
1038
|
+
* @type {User}
|
1039
|
+
* @memberof Notification
|
1040
|
+
*/
|
1041
|
+
'user'?: User;
|
1036
1042
|
}
|
1037
1043
|
/**
|
1038
1044
|
*
|
@@ -1070,6 +1076,7 @@ export declare const NotificationKind: {
|
|
1070
1076
|
readonly ExpiryReminder: "expiry_reminder";
|
1071
1077
|
readonly OrderConfirmation: "order_confirmation";
|
1072
1078
|
readonly ProductRequestResponse: "product_request_response";
|
1079
|
+
readonly ProductRequest: "product_request";
|
1073
1080
|
};
|
1074
1081
|
export type NotificationKind = typeof NotificationKind[keyof typeof NotificationKind];
|
1075
1082
|
/**
|
package/dist/api.js
CHANGED
@@ -136,7 +136,8 @@ exports.NotificationKind = {
|
|
136
136
|
NewProduct: 'new_product',
|
137
137
|
ExpiryReminder: 'expiry_reminder',
|
138
138
|
OrderConfirmation: 'order_confirmation',
|
139
|
-
ProductRequestResponse: 'product_request_response'
|
139
|
+
ProductRequestResponse: 'product_request_response',
|
140
|
+
ProductRequest: 'product_request'
|
140
141
|
};
|
141
142
|
/**
|
142
143
|
*
|
package/dist/esm/api.d.ts
CHANGED
@@ -1033,6 +1033,12 @@ export interface Notification {
|
|
1033
1033
|
* @memberof Notification
|
1034
1034
|
*/
|
1035
1035
|
'references'?: Array<NotificationReferencesInner>;
|
1036
|
+
/**
|
1037
|
+
*
|
1038
|
+
* @type {User}
|
1039
|
+
* @memberof Notification
|
1040
|
+
*/
|
1041
|
+
'user'?: User;
|
1036
1042
|
}
|
1037
1043
|
/**
|
1038
1044
|
*
|
@@ -1070,6 +1076,7 @@ export declare const NotificationKind: {
|
|
1070
1076
|
readonly ExpiryReminder: "expiry_reminder";
|
1071
1077
|
readonly OrderConfirmation: "order_confirmation";
|
1072
1078
|
readonly ProductRequestResponse: "product_request_response";
|
1079
|
+
readonly ProductRequest: "product_request";
|
1073
1080
|
};
|
1074
1081
|
export type NotificationKind = typeof NotificationKind[keyof typeof NotificationKind];
|
1075
1082
|
/**
|
package/dist/esm/api.js
CHANGED
@@ -131,7 +131,8 @@ export const NotificationKind = {
|
|
131
131
|
NewProduct: 'new_product',
|
132
132
|
ExpiryReminder: 'expiry_reminder',
|
133
133
|
OrderConfirmation: 'order_confirmation',
|
134
|
-
ProductRequestResponse: 'product_request_response'
|
134
|
+
ProductRequestResponse: 'product_request_response',
|
135
|
+
ProductRequest: 'product_request'
|
135
136
|
};
|
136
137
|
/**
|
137
138
|
*
|