@saritasa/crm-delmar-core-sdk 0.1.28 → 0.1.29
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/fesm2022/saritasa-crm-delmar-core-sdk.mjs +5 -17
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/billing-frequency-enum.dto.d.ts +3 -2
- package/model/hosting-frequency-enum.dto.d.ts +3 -2
- package/model/models.d.ts +0 -3
- package/model/project-margin-report.dto.d.ts +4 -4
- package/model/project-request.dto.d.ts +4 -4
- package/model/project-serializer-with-stats.dto.d.ts +4 -4
- package/model/project-status-report.dto.d.ts +4 -4
- package/model/project.dto.d.ts +4 -4
- package/package.json +2 -2
- package/model/blank-enum.dto.d.ts +0 -12
- package/model/project-billing-frequency.dto.d.ts +0 -16
- package/model/project-hosting-frequency.dto.d.ts +0 -16
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `weekly` - Weekly * `monthly` - Monthly * `bi_monthly` - Bi-monthly * `quarterly` - Quarterly * `annual` - Annual * `scheduled` - Scheduled
|
|
11
|
+
* * `weekly` - Weekly * `monthly` - Monthly * `bi_monthly` - Bi-monthly * `quarterly` - Quarterly * `annual` - Annual * `scheduled` - Scheduled * `no_value` -
|
|
12
12
|
*/
|
|
13
13
|
export declare enum BillingFrequencyEnumDto {
|
|
14
14
|
Weekly = "weekly",
|
|
@@ -16,5 +16,6 @@ export declare enum BillingFrequencyEnumDto {
|
|
|
16
16
|
BiMonthly = "bi_monthly",
|
|
17
17
|
Quarterly = "quarterly",
|
|
18
18
|
Annual = "annual",
|
|
19
|
-
Scheduled = "scheduled"
|
|
19
|
+
Scheduled = "scheduled",
|
|
20
|
+
NoValue = "no_value"
|
|
20
21
|
}
|
|
@@ -8,11 +8,12 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `monthly` - Monthly * `quarterly` - Quarterly * `semi_annual` - Semi-Annual * `annual` - Annual
|
|
11
|
+
* * `monthly` - Monthly * `quarterly` - Quarterly * `semi_annual` - Semi-Annual * `annual` - Annual * `no_value` -
|
|
12
12
|
*/
|
|
13
13
|
export declare enum HostingFrequencyEnumDto {
|
|
14
14
|
Monthly = "monthly",
|
|
15
15
|
Quarterly = "quarterly",
|
|
16
16
|
SemiAnnual = "semi_annual",
|
|
17
|
-
Annual = "annual"
|
|
17
|
+
Annual = "annual",
|
|
18
|
+
NoValue = "no_value"
|
|
18
19
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ export * from "./billable-chart.dto";
|
|
|
2
2
|
export * from "./billing-frequency-enum.dto";
|
|
3
3
|
export * from "./billing-method-enum.dto";
|
|
4
4
|
export * from "./billing-type-enum.dto";
|
|
5
|
-
export * from "./blank-enum.dto";
|
|
6
5
|
export * from "./branch-change-state-request.dto";
|
|
7
6
|
export * from "./branch.dto";
|
|
8
7
|
export * from "./branch-period.dto";
|
|
@@ -1046,9 +1045,7 @@ export * from "./profile-update-timezone-error-component.dto";
|
|
|
1046
1045
|
export * from "./profile-update-updated-by-error-component.dto";
|
|
1047
1046
|
export * from "./profile-update-validation-error.dto";
|
|
1048
1047
|
export * from "./progress-info.dto";
|
|
1049
|
-
export * from "./project-billing-frequency.dto";
|
|
1050
1048
|
export * from "./project.dto";
|
|
1051
|
-
export * from "./project-hosting-frequency.dto";
|
|
1052
1049
|
export * from "./project-margin-report.dto";
|
|
1053
1050
|
export * from "./project-note.dto";
|
|
1054
1051
|
export * from "./project-note-request.dto";
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import {
|
|
10
|
+
import { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
|
|
11
11
|
import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
12
12
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
13
|
-
import {
|
|
13
|
+
import { HostingFrequencyEnumDto } from "./hosting-frequency-enum.dto";
|
|
14
14
|
/**
|
|
15
15
|
* Serializer to present margin report for `Project` instances.
|
|
16
16
|
*/
|
|
@@ -33,10 +33,10 @@ export interface ProjectMarginReportDto {
|
|
|
33
33
|
*/
|
|
34
34
|
readonly total_duration: number;
|
|
35
35
|
readonly priority_data: SimpleProjectPriorityDto | null;
|
|
36
|
-
billing_frequency?:
|
|
36
|
+
billing_frequency?: BillingFrequencyEnumDto;
|
|
37
37
|
priority?: number | null;
|
|
38
38
|
has_hosting?: boolean;
|
|
39
39
|
hosting_fee?: string | null;
|
|
40
|
-
hosting_frequency?:
|
|
40
|
+
hosting_frequency?: HostingFrequencyEnumDto;
|
|
41
41
|
hosting_start?: string | null;
|
|
42
42
|
}
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
import { SimpleJiraProjectRequestDto } from "./simple-jira-project-request.dto";
|
|
11
|
-
import {
|
|
11
|
+
import { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
|
|
12
12
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
13
|
-
import {
|
|
13
|
+
import { HostingFrequencyEnumDto } from "./hosting-frequency-enum.dto";
|
|
14
14
|
import { ProjectStatusEnumDto } from "./project-status-enum.dto";
|
|
15
15
|
/**
|
|
16
16
|
* Serializer for Project model.
|
|
@@ -31,10 +31,10 @@ export interface ProjectRequestDto {
|
|
|
31
31
|
client: number;
|
|
32
32
|
project_managers: Array<number>;
|
|
33
33
|
jira_link: SimpleJiraProjectRequestDto | null;
|
|
34
|
-
billing_frequency?:
|
|
34
|
+
billing_frequency?: BillingFrequencyEnumDto;
|
|
35
35
|
has_hosting?: boolean;
|
|
36
36
|
hosting_fee?: string | null;
|
|
37
|
-
hosting_frequency?:
|
|
37
|
+
hosting_frequency?: HostingFrequencyEnumDto;
|
|
38
38
|
hosting_start?: string | null;
|
|
39
39
|
tech_manager?: number | null;
|
|
40
40
|
qa_manager?: number | null;
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { SimpleJiraProjectDto } from "./simple-jira-project.dto";
|
|
11
11
|
import { SimpleUserDto } from "./simple-user.dto";
|
|
12
|
-
import {
|
|
12
|
+
import { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
|
|
13
13
|
import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
14
14
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
15
|
-
import { ProjectBillingFrequencyDto } from "./project-billing-frequency.dto";
|
|
16
15
|
import { SimpleClientDto } from "./simple-client.dto";
|
|
16
|
+
import { HostingFrequencyEnumDto } from "./hosting-frequency-enum.dto";
|
|
17
17
|
import { SimpleClientContactDto } from "./simple-client-contact.dto";
|
|
18
18
|
import { ProjectStatusEnumDto } from "./project-status-enum.dto";
|
|
19
19
|
/**
|
|
@@ -56,10 +56,10 @@ export interface ProjectSerializerWithStatsDto {
|
|
|
56
56
|
readonly project_managers_data: Array<SimpleUserDto>;
|
|
57
57
|
readonly created_by_data: SimpleUserDto | null;
|
|
58
58
|
readonly updated_by_data: SimpleUserDto | null;
|
|
59
|
-
billing_frequency?:
|
|
59
|
+
billing_frequency?: BillingFrequencyEnumDto;
|
|
60
60
|
has_hosting?: boolean;
|
|
61
61
|
hosting_fee?: string | null;
|
|
62
|
-
hosting_frequency?:
|
|
62
|
+
hosting_frequency?: HostingFrequencyEnumDto;
|
|
63
63
|
hosting_start?: string | null;
|
|
64
64
|
tech_manager?: number | null;
|
|
65
65
|
qa_manager?: number | null;
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
import { SimpleClientStatusReportDto } from "./simple-client-status-report.dto";
|
|
11
11
|
import { SimpleJiraProjectDto } from "./simple-jira-project.dto";
|
|
12
12
|
import { SimpleUserDto } from "./simple-user.dto";
|
|
13
|
-
import {
|
|
13
|
+
import { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
|
|
14
14
|
import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
15
15
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
16
|
-
import {
|
|
16
|
+
import { HostingFrequencyEnumDto } from "./hosting-frequency-enum.dto";
|
|
17
17
|
import { SimpleClientContactDto } from "./simple-client-contact.dto";
|
|
18
18
|
import { ProjectStatusEnumDto } from "./project-status-enum.dto";
|
|
19
19
|
/**
|
|
@@ -51,10 +51,10 @@ export interface ProjectStatusReportDto {
|
|
|
51
51
|
readonly project_managers_data: Array<SimpleUserDto>;
|
|
52
52
|
readonly created_by_data: SimpleUserDto | null;
|
|
53
53
|
readonly updated_by_data: SimpleUserDto | null;
|
|
54
|
-
billing_frequency?:
|
|
54
|
+
billing_frequency?: BillingFrequencyEnumDto;
|
|
55
55
|
has_hosting?: boolean;
|
|
56
56
|
hosting_fee?: string | null;
|
|
57
|
-
hosting_frequency?:
|
|
57
|
+
hosting_frequency?: HostingFrequencyEnumDto;
|
|
58
58
|
hosting_start?: string | null;
|
|
59
59
|
tech_manager?: number | null;
|
|
60
60
|
qa_manager?: number | null;
|
package/model/project.dto.d.ts
CHANGED
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { SimpleJiraProjectDto } from "./simple-jira-project.dto";
|
|
11
11
|
import { SimpleUserDto } from "./simple-user.dto";
|
|
12
|
-
import {
|
|
12
|
+
import { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
|
|
13
13
|
import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
14
14
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
15
|
-
import { ProjectBillingFrequencyDto } from "./project-billing-frequency.dto";
|
|
16
15
|
import { SimpleClientDto } from "./simple-client.dto";
|
|
16
|
+
import { HostingFrequencyEnumDto } from "./hosting-frequency-enum.dto";
|
|
17
17
|
import { SimpleClientContactDto } from "./simple-client-contact.dto";
|
|
18
18
|
import { ProjectStatusEnumDto } from "./project-status-enum.dto";
|
|
19
19
|
/**
|
|
@@ -48,10 +48,10 @@ export interface ProjectDto {
|
|
|
48
48
|
readonly project_managers_data: Array<SimpleUserDto>;
|
|
49
49
|
readonly created_by_data: SimpleUserDto | null;
|
|
50
50
|
readonly updated_by_data: SimpleUserDto | null;
|
|
51
|
-
billing_frequency?:
|
|
51
|
+
billing_frequency?: BillingFrequencyEnumDto;
|
|
52
52
|
has_hosting?: boolean;
|
|
53
53
|
hosting_fee?: string | null;
|
|
54
|
-
hosting_frequency?:
|
|
54
|
+
hosting_frequency?: HostingFrequencyEnumDto;
|
|
55
55
|
hosting_start?: string | null;
|
|
56
56
|
tech_manager?: number | null;
|
|
57
57
|
qa_manager?: number | null;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.
|
|
3
|
+
"version": "0.1.29",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.23)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Delmar Api
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
-
* https://openapi-generator.tech
|
|
8
|
-
* Do not edit the class manually.
|
|
9
|
-
*/
|
|
10
|
-
export declare enum BlankEnumDto {
|
|
11
|
-
Empty = ""
|
|
12
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Delmar Api
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
-
* https://openapi-generator.tech
|
|
8
|
-
* Do not edit the class manually.
|
|
9
|
-
*/
|
|
10
|
-
import { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
|
|
11
|
-
import { BlankEnumDto } from "./blank-enum.dto";
|
|
12
|
-
/**
|
|
13
|
-
* @type ProjectBillingFrequencyDto
|
|
14
|
-
* @export
|
|
15
|
-
*/
|
|
16
|
-
export type ProjectBillingFrequencyDto = BillingFrequencyEnumDto | BlankEnumDto;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Delmar Api
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
-
* https://openapi-generator.tech
|
|
8
|
-
* Do not edit the class manually.
|
|
9
|
-
*/
|
|
10
|
-
import { HostingFrequencyEnumDto } from "./hosting-frequency-enum.dto";
|
|
11
|
-
import { BlankEnumDto } from "./blank-enum.dto";
|
|
12
|
-
/**
|
|
13
|
-
* @type ProjectHostingFrequencyDto
|
|
14
|
-
* @export
|
|
15
|
-
*/
|
|
16
|
-
export type ProjectHostingFrequencyDto = BlankEnumDto | HostingFrequencyEnumDto;
|