@agendize/js-agendize-api 1.43.0 → 1.45.0
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/agendizeApi.d.ts +2 -2
- package/dist/data/Account.d.ts +2 -0
- package/dist/data/EventSearch.d.ts +6 -0
- package/dist/data/Form.d.ts +22 -0
- package/dist/js-agendize-api.es.js +8355 -8355
- package/dist/repository/secured/externalEventSecuredRepository.d.ts +9 -0
- package/dist/repository/secured/serviceGroupSecuredRepository.d.ts +2 -1
- package/dist/repository/secured/serviceSecuredRepository.d.ts +2 -1
- package/dist/service/secured/serviceGroupSecuredService.d.ts +1 -1
- package/dist/service/secured/serviceSecuredService.d.ts +1 -1
- package/package.json +1 -1
package/dist/agendizeApi.d.ts
CHANGED
|
@@ -269,7 +269,7 @@ export declare class AgendizeApi {
|
|
|
269
269
|
local: boolean;
|
|
270
270
|
}>;
|
|
271
271
|
deleteStaff(organisation: string, companyId: string, staffId: string): Promise<void>;
|
|
272
|
-
getAllServices(companyId: string, account?: string, showDeletedDeployment?: boolean, mode?: QUERY_TYPE): Promise<{
|
|
272
|
+
getAllServices(companyId: string, account?: string, showDeletedDeployment?: boolean, sortMode?: string, mode?: QUERY_TYPE): Promise<{
|
|
273
273
|
results: ServiceEntity[] | undefined;
|
|
274
274
|
local: boolean;
|
|
275
275
|
}>;
|
|
@@ -296,7 +296,7 @@ export declare class AgendizeApi {
|
|
|
296
296
|
result: ServiceGroupEntity | undefined;
|
|
297
297
|
local: boolean;
|
|
298
298
|
}>;
|
|
299
|
-
getAllServiceGroups(companyId: string, account: string, withDisabledServices?: boolean, mode?: QUERY_TYPE): Promise<{
|
|
299
|
+
getAllServiceGroups(companyId: string, account: string, withDisabledServices?: boolean, widgetOrder?: boolean, mode?: QUERY_TYPE): Promise<{
|
|
300
300
|
results: ServiceGroupEntity[] | undefined;
|
|
301
301
|
local: boolean;
|
|
302
302
|
}>;
|
package/dist/data/Account.d.ts
CHANGED
|
@@ -99,6 +99,7 @@ export declare class AccountSecuredEntity extends SecuredBodyEntity {
|
|
|
99
99
|
help?: HelpEntity;
|
|
100
100
|
accountSettings?: AccountSettingsEntity;
|
|
101
101
|
deploymentEnabled: boolean;
|
|
102
|
+
isReseller?: boolean;
|
|
102
103
|
constructor();
|
|
103
104
|
static fromAccountDto(dto: AccountDto): AccountSecuredEntity;
|
|
104
105
|
static fromAccountDto2(dto: AccountDto): AccountSecuredEntity;
|
|
@@ -229,4 +230,5 @@ export declare class AccountDto {
|
|
|
229
230
|
directories?: string[];
|
|
230
231
|
deploymentEnabled?: boolean;
|
|
231
232
|
help?: HelpDto;
|
|
233
|
+
isReseller?: boolean;
|
|
232
234
|
}
|
|
@@ -39,6 +39,8 @@ export declare class EventSearchEntity {
|
|
|
39
39
|
end: Date;
|
|
40
40
|
status?: EventSearchStatusEntity;
|
|
41
41
|
conflict?: boolean;
|
|
42
|
+
meta?: boolean;
|
|
43
|
+
resourceCount?: number;
|
|
42
44
|
conflicts?: EventSearchConflictEntity[];
|
|
43
45
|
securityKey?: string;
|
|
44
46
|
static fromEventDto(dto: EventSearchDto): EventSearchEntity;
|
|
@@ -53,6 +55,7 @@ export declare class EventSearchCompanyEntity {
|
|
|
53
55
|
export declare class EventSearchServiceEntity {
|
|
54
56
|
id: string;
|
|
55
57
|
name: string;
|
|
58
|
+
capacity?: number;
|
|
56
59
|
static fromDto(dto: EventSearchServiceDto): EventSearchServiceEntity;
|
|
57
60
|
}
|
|
58
61
|
export declare class EventSearchStaffEntity {
|
|
@@ -189,6 +192,7 @@ export declare class EventSearchCompanyDto {
|
|
|
189
192
|
export declare class EventSearchServiceDto {
|
|
190
193
|
id: string;
|
|
191
194
|
name: string;
|
|
195
|
+
capacity?: number;
|
|
192
196
|
}
|
|
193
197
|
export declare class EventSearchStaffDto {
|
|
194
198
|
id: string;
|
|
@@ -227,6 +231,8 @@ export declare class EventSearchDto {
|
|
|
227
231
|
status?: EventSearchStatusDto;
|
|
228
232
|
customStatus?: CustomStatusDto;
|
|
229
233
|
conflict?: boolean;
|
|
234
|
+
meta?: boolean;
|
|
235
|
+
resourceCount?: number;
|
|
230
236
|
conflicts?: EventSearchConflictDto[];
|
|
231
237
|
securityKey?: string;
|
|
232
238
|
}
|
package/dist/data/Form.d.ts
CHANGED
|
@@ -139,9 +139,21 @@ export declare class FormItemEntity {
|
|
|
139
139
|
visible: boolean;
|
|
140
140
|
backofficeVisible: boolean | undefined;
|
|
141
141
|
values: {
|
|
142
|
+
id: string;
|
|
142
143
|
label: string;
|
|
143
144
|
value: string;
|
|
144
145
|
values?: {
|
|
146
|
+
id: string;
|
|
147
|
+
label: string;
|
|
148
|
+
value: string;
|
|
149
|
+
}[];
|
|
150
|
+
}[] | undefined;
|
|
151
|
+
valueGroups: {
|
|
152
|
+
id: string;
|
|
153
|
+
label: string;
|
|
154
|
+
value: string;
|
|
155
|
+
values?: {
|
|
156
|
+
id: string;
|
|
145
157
|
label: string;
|
|
146
158
|
value: string;
|
|
147
159
|
}[];
|
|
@@ -156,6 +168,16 @@ export declare class FormItemEntity {
|
|
|
156
168
|
maxlength: number | undefined;
|
|
157
169
|
countries: string[] | undefined;
|
|
158
170
|
};
|
|
171
|
+
static formItemEntityValuesToFormFieldValues(values: FormValueEntity[] | undefined): {
|
|
172
|
+
id: string;
|
|
173
|
+
label: string;
|
|
174
|
+
value: string;
|
|
175
|
+
values?: {
|
|
176
|
+
id: string;
|
|
177
|
+
label: string;
|
|
178
|
+
value: string;
|
|
179
|
+
}[];
|
|
180
|
+
}[] | undefined;
|
|
159
181
|
static formItemsToFormFields(formItems: FormItemEntity[], extractSubItem?: boolean, showInvisible?: boolean): any[] | undefined;
|
|
160
182
|
}
|
|
161
183
|
export declare class FormItemDto {
|