@arrowsphere/api-client 3.70.0 → 3.71.0-rc.bdj.1
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.
|
@@ -41,57 +41,57 @@ export declare enum LicenseEventStatusCode {
|
|
|
41
41
|
}
|
|
42
42
|
export declare const LicenseEventStatusActionCodes: Partial<Record<LicenseEventStatusCode, LicenseEventType>>;
|
|
43
43
|
export interface LicenseEventVendor {
|
|
44
|
-
name
|
|
45
|
-
code
|
|
44
|
+
name?: string;
|
|
45
|
+
code?: string;
|
|
46
46
|
}
|
|
47
47
|
export interface LicenseEventCustomer {
|
|
48
|
-
name
|
|
49
|
-
ref
|
|
48
|
+
name?: string;
|
|
49
|
+
ref?: string;
|
|
50
50
|
}
|
|
51
51
|
export interface LicenseEventReseller {
|
|
52
|
-
name
|
|
53
|
-
ref
|
|
52
|
+
name?: string;
|
|
53
|
+
ref?: string;
|
|
54
54
|
}
|
|
55
55
|
export interface LicenseEventPriceband {
|
|
56
|
-
vendorSku
|
|
57
|
-
arrowsphereSku
|
|
56
|
+
vendorSku?: string;
|
|
57
|
+
arrowsphereSku?: string;
|
|
58
58
|
}
|
|
59
59
|
export interface LicenseEventOffer {
|
|
60
|
-
arrowsphereSku
|
|
61
|
-
name
|
|
60
|
+
arrowsphereSku?: string;
|
|
61
|
+
name?: string;
|
|
62
62
|
isManualProvisioning?: boolean | null;
|
|
63
63
|
}
|
|
64
64
|
export interface LicenseEventQuantity {
|
|
65
|
-
current
|
|
66
|
-
requested
|
|
65
|
+
current?: number;
|
|
66
|
+
requested?: number | null;
|
|
67
67
|
}
|
|
68
68
|
export interface LicenseEventUser {
|
|
69
|
-
name
|
|
70
|
-
email
|
|
69
|
+
name?: string;
|
|
70
|
+
email?: string;
|
|
71
71
|
}
|
|
72
72
|
export interface LicenseEventDetails {
|
|
73
|
-
message
|
|
74
|
-
source
|
|
73
|
+
message?: string;
|
|
74
|
+
source?: string | null;
|
|
75
75
|
}
|
|
76
76
|
export interface LicenseEvent {
|
|
77
|
-
id
|
|
78
|
-
partnerRef
|
|
79
|
-
orderRef
|
|
80
|
-
createdAt
|
|
81
|
-
customer
|
|
82
|
-
reseller
|
|
83
|
-
marketplace
|
|
84
|
-
friendlyName
|
|
85
|
-
vendor
|
|
86
|
-
priceband
|
|
87
|
-
offer
|
|
88
|
-
uom
|
|
89
|
-
periodicity
|
|
90
|
-
term
|
|
91
|
-
trial
|
|
92
|
-
quantity
|
|
93
|
-
statusCode
|
|
94
|
-
user
|
|
95
|
-
actionType
|
|
96
|
-
eventDetails
|
|
77
|
+
id?: number;
|
|
78
|
+
partnerRef?: string;
|
|
79
|
+
orderRef?: string;
|
|
80
|
+
createdAt?: string;
|
|
81
|
+
customer?: LicenseEventCustomer;
|
|
82
|
+
reseller?: LicenseEventReseller;
|
|
83
|
+
marketplace?: string;
|
|
84
|
+
friendlyName?: string;
|
|
85
|
+
vendor?: LicenseEventVendor;
|
|
86
|
+
priceband?: LicenseEventPriceband;
|
|
87
|
+
offer?: LicenseEventOffer;
|
|
88
|
+
uom?: string;
|
|
89
|
+
periodicity?: number;
|
|
90
|
+
term?: number;
|
|
91
|
+
trial?: boolean;
|
|
92
|
+
quantity?: LicenseEventQuantity;
|
|
93
|
+
statusCode?: string;
|
|
94
|
+
user?: LicenseEventUser;
|
|
95
|
+
actionType?: LicenseEventActionType;
|
|
96
|
+
eventDetails?: LicenseEventDetails;
|
|
97
97
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { LicenseEvent } from './licenseEvent';
|
|
2
2
|
export interface LicenseEventPagination {
|
|
3
|
-
perPage
|
|
4
|
-
currentPage
|
|
5
|
-
totalPage
|
|
6
|
-
total
|
|
7
|
-
next
|
|
8
|
-
previous
|
|
3
|
+
perPage?: number;
|
|
4
|
+
currentPage?: number;
|
|
5
|
+
totalPage?: number;
|
|
6
|
+
total?: number;
|
|
7
|
+
next?: string;
|
|
8
|
+
previous?: string;
|
|
9
9
|
}
|
|
10
10
|
export interface PaginatedLicenseEvents {
|
|
11
|
-
filters
|
|
12
|
-
pagination
|
|
13
|
-
events
|
|
11
|
+
filters?: LicenseEventFilters[];
|
|
12
|
+
pagination?: LicenseEventPagination;
|
|
13
|
+
events?: Array<{
|
|
14
14
|
event: LicenseEvent;
|
|
15
15
|
}>;
|
|
16
16
|
}
|
|
@@ -80,12 +80,10 @@ export declare type LicensesEventGetEventsQueryType = {
|
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
82
|
export declare type LicensesEventGetEventsResponseType = {
|
|
83
|
-
[
|
|
84
|
-
[
|
|
85
|
-
|
|
86
|
-
};
|
|
83
|
+
[LicensesEventQueries.GET_EVENTS]?: {
|
|
84
|
+
[LicensesEventGetEventsQueryField.EVENTS]?: LicensesEventGetEventsResponseDataType[];
|
|
85
|
+
[LicensesEventGetEventsResponseField.PAGINATION]?: LicensesEventPageType;
|
|
87
86
|
};
|
|
88
|
-
[LicensesEventGetEventsResponseField.PAGINATION]?: LicensesEventPageType;
|
|
89
87
|
};
|
|
90
88
|
export declare type LicensesEventGetEventsResponseDataType = {
|
|
91
89
|
[LicensesEventDataField.EVENT]?: LicenseEvent;
|
package/package.json
CHANGED