@trusted-solutions/sdit.models 0.22.13 → 0.22.14
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/lambda/contract.d.ts +3 -1
- package/package.json +1 -1
package/lambda/contract.d.ts
CHANGED
|
@@ -35,7 +35,9 @@ export declare type GetContractBySubscriptionIdResponse = Contract;
|
|
|
35
35
|
/**
|
|
36
36
|
* Create Contract use case
|
|
37
37
|
*/
|
|
38
|
-
export
|
|
38
|
+
export interface CreateContractRequest extends ContractCore {
|
|
39
|
+
forceCreate?: boolean;
|
|
40
|
+
}
|
|
39
41
|
export declare type CreateContractResponse = Contract;
|
|
40
42
|
/**
|
|
41
43
|
* Update Contract Duration use case
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trusted-solutions/sdit.models",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.14",
|
|
4
4
|
"description": "TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|