@pnp/graph 3.3.2 → 3.4.1-v3nightly.20220614
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/behaviors/consistency-level.d.ts +4 -0
- package/behaviors/consistency-level.d.ts.map +1 -0
- package/behaviors/consistency-level.js +10 -0
- package/behaviors/consistency-level.js.map +1 -0
- package/behaviors/paged.d.ts +21 -0
- package/behaviors/paged.d.ts.map +1 -0
- package/behaviors/paged.js +44 -0
- package/behaviors/paged.js.map +1 -0
- package/behaviors/telemetry.js +1 -1
- package/bookings/funcs.d.ts +11 -0
- package/bookings/funcs.d.ts.map +1 -0
- package/bookings/funcs.js +15 -0
- package/bookings/funcs.js.map +1 -0
- package/bookings/index.d.ts +9 -0
- package/bookings/index.d.ts.map +1 -0
- package/bookings/index.js +18 -0
- package/bookings/index.js.map +1 -0
- package/bookings/types.d.ts +241 -0
- package/bookings/types.d.ts.map +1 -0
- package/bookings/types.js +298 -0
- package/bookings/types.js.map +1 -0
- package/graphqueryable.d.ts +12 -41
- package/graphqueryable.d.ts.map +1 -1
- package/graphqueryable.js +29 -16
- package/graphqueryable.js.map +1 -1
- package/groups/types.d.ts +3 -3
- package/groups/types.d.ts.map +1 -1
- package/groups/types.js +3 -3
- package/groups/types.js.map +1 -1
- package/index.d.ts +3 -1
- package/index.d.ts.map +1 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/messages/types.d.ts +2 -2
- package/messages/types.d.ts.map +1 -1
- package/messages/types.js +2 -2
- package/messages/types.js.map +1 -1
- package/package.json +34 -34
- package/users/types.d.ts +3 -3
- package/users/types.d.ts.map +1 -1
- package/users/types.js +3 -3
- package/users/types.js.map +1 -1
|
@@ -0,0 +1,298 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import { _DirectoryObject } from "../directory-objects/types.js";
|
|
3
|
+
import { _GraphQueryableCollection, graphInvokableFactory } from "../graphqueryable.js";
|
|
4
|
+
import { defaultPath, deleteable, updateable, getById } from "../decorators.js";
|
|
5
|
+
import { graphPost } from "../operations.js";
|
|
6
|
+
import { body } from "@pnp/queryable";
|
|
7
|
+
import { calendarView } from "./funcs.js";
|
|
8
|
+
/**
|
|
9
|
+
* Describes a Booking Currency entity
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
export class _BookingCurrency extends _DirectoryObject {
|
|
13
|
+
}
|
|
14
|
+
export const BookingCurrency = graphInvokableFactory(_BookingCurrency);
|
|
15
|
+
/**
|
|
16
|
+
* Describes a collection of Booking Currency objects
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
let _BookingCurrencies = class _BookingCurrencies extends _GraphQueryableCollection {
|
|
20
|
+
};
|
|
21
|
+
_BookingCurrencies = __decorate([
|
|
22
|
+
defaultPath("solutions/bookingCurrencies"),
|
|
23
|
+
getById(BookingCurrency)
|
|
24
|
+
], _BookingCurrencies);
|
|
25
|
+
export { _BookingCurrencies };
|
|
26
|
+
export const BookingCurrencies = graphInvokableFactory(_BookingCurrencies);
|
|
27
|
+
/**
|
|
28
|
+
* Represents a booking business entity
|
|
29
|
+
*/
|
|
30
|
+
let _BookingBusiness = class _BookingBusiness extends _DirectoryObject {
|
|
31
|
+
constructor() {
|
|
32
|
+
super(...arguments);
|
|
33
|
+
/**
|
|
34
|
+
* Get the calendar view for the booking business.
|
|
35
|
+
*/
|
|
36
|
+
this.calendarView = calendarView;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Make the scheduling page of a business available to external customers.
|
|
40
|
+
*/
|
|
41
|
+
publish() {
|
|
42
|
+
return graphPost(BookingBusiness(this, "publish"));
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Make the scheduling page of this business not available to external customers.
|
|
46
|
+
*/
|
|
47
|
+
unpublish() {
|
|
48
|
+
return graphPost(BookingBusiness(this, "unpublish"));
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Get the appointments for the booking business.
|
|
52
|
+
*/
|
|
53
|
+
get appointments() {
|
|
54
|
+
return BookingAppointments(this);
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Get the customers for the booking business.
|
|
58
|
+
*/
|
|
59
|
+
get customers() {
|
|
60
|
+
return BookingCustomers(this);
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Get the services for the booking business.
|
|
64
|
+
*/
|
|
65
|
+
get services() {
|
|
66
|
+
return BookingServices(this);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Get the staff members for the booking business.
|
|
70
|
+
*/
|
|
71
|
+
get staffMembers() {
|
|
72
|
+
return BookingStaffMembers(this);
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Get the staff members for the booking business.
|
|
76
|
+
*/
|
|
77
|
+
get customQuestions() {
|
|
78
|
+
return BookingCustomQuestions(this);
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
_BookingBusiness = __decorate([
|
|
82
|
+
deleteable(),
|
|
83
|
+
updateable()
|
|
84
|
+
], _BookingBusiness);
|
|
85
|
+
export { _BookingBusiness };
|
|
86
|
+
export const BookingBusiness = graphInvokableFactory(_BookingBusiness);
|
|
87
|
+
/**
|
|
88
|
+
* Describes a collection of Booking Business objects
|
|
89
|
+
*
|
|
90
|
+
*/
|
|
91
|
+
let _BookingBusinesses = class _BookingBusinesses extends _GraphQueryableCollection {
|
|
92
|
+
/**
|
|
93
|
+
* Create a new booking business as specified in the request body.
|
|
94
|
+
*
|
|
95
|
+
* @param name The name of the business, which interfaces with customers. This name appears at the top of the business scheduling page.
|
|
96
|
+
* @param additionalProperties A plain object collection of additional properties you want to set on the new group of type IBookingBusiness
|
|
97
|
+
*/
|
|
98
|
+
async add(name, additionalProperties = {}) {
|
|
99
|
+
const postBody = {
|
|
100
|
+
displayName: name,
|
|
101
|
+
...additionalProperties,
|
|
102
|
+
};
|
|
103
|
+
const data = await graphPost(this, body(postBody));
|
|
104
|
+
return {
|
|
105
|
+
data,
|
|
106
|
+
bookingBusiness: this.getById(data.id),
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
};
|
|
110
|
+
_BookingBusinesses = __decorate([
|
|
111
|
+
defaultPath("solutions/bookingBusinesses"),
|
|
112
|
+
getById(BookingBusiness)
|
|
113
|
+
], _BookingBusinesses);
|
|
114
|
+
export { _BookingBusinesses };
|
|
115
|
+
export const BookingBusinesses = graphInvokableFactory(_BookingBusinesses);
|
|
116
|
+
/**
|
|
117
|
+
* Represents a booking appointment entity
|
|
118
|
+
*/
|
|
119
|
+
let _BookingApointment = class _BookingApointment extends _DirectoryObject {
|
|
120
|
+
/**
|
|
121
|
+
* Cancel the specified bookingAppointment in the specified bookingBusiness and send a message to the involved customer and staff members.
|
|
122
|
+
*/
|
|
123
|
+
cancel(cancellationMessage) {
|
|
124
|
+
const postBody = { cancellationMessage };
|
|
125
|
+
return graphPost(BookingAppointment(this, "cancel"), body(postBody));
|
|
126
|
+
}
|
|
127
|
+
};
|
|
128
|
+
_BookingApointment = __decorate([
|
|
129
|
+
deleteable(),
|
|
130
|
+
updateable()
|
|
131
|
+
], _BookingApointment);
|
|
132
|
+
export { _BookingApointment };
|
|
133
|
+
export const BookingAppointment = graphInvokableFactory(_BookingApointment);
|
|
134
|
+
/**
|
|
135
|
+
* Describes a collection of booking appointment objects
|
|
136
|
+
*
|
|
137
|
+
*/
|
|
138
|
+
let _BookingAppointments = class _BookingAppointments extends _GraphQueryableCollection {
|
|
139
|
+
/**
|
|
140
|
+
* Create a new booking appointment as specified in the request body.
|
|
141
|
+
*
|
|
142
|
+
* @param bookingAppointment a JSON representation of a BookingAppointment object.
|
|
143
|
+
*/
|
|
144
|
+
async add(bookingAppointment) {
|
|
145
|
+
const data = await graphPost(this, body(bookingAppointment));
|
|
146
|
+
return {
|
|
147
|
+
data,
|
|
148
|
+
bookingAppointment: this.getById(data.id),
|
|
149
|
+
};
|
|
150
|
+
}
|
|
151
|
+
};
|
|
152
|
+
_BookingAppointments = __decorate([
|
|
153
|
+
defaultPath("appointments"),
|
|
154
|
+
getById(BookingAppointment)
|
|
155
|
+
], _BookingAppointments);
|
|
156
|
+
export { _BookingAppointments };
|
|
157
|
+
export const BookingAppointments = graphInvokableFactory(_BookingAppointments);
|
|
158
|
+
/**
|
|
159
|
+
* Represents a booking customer entity
|
|
160
|
+
*/
|
|
161
|
+
let _BookingCustomer = class _BookingCustomer extends _DirectoryObject {
|
|
162
|
+
};
|
|
163
|
+
_BookingCustomer = __decorate([
|
|
164
|
+
deleteable(),
|
|
165
|
+
updateable()
|
|
166
|
+
], _BookingCustomer);
|
|
167
|
+
export { _BookingCustomer };
|
|
168
|
+
export const BookingCustomer = graphInvokableFactory(_BookingCustomer);
|
|
169
|
+
/**
|
|
170
|
+
* Describes a collection of booking customer objects
|
|
171
|
+
*
|
|
172
|
+
*/
|
|
173
|
+
let _BookingCustomers = class _BookingCustomers extends _GraphQueryableCollection {
|
|
174
|
+
/**
|
|
175
|
+
* Create a new booking customer as specified in the request body.
|
|
176
|
+
*
|
|
177
|
+
* @param bookingCustomer a JSON representation of a BookingCustomer object.
|
|
178
|
+
*/
|
|
179
|
+
async add(bookingCustomer) {
|
|
180
|
+
const data = await graphPost(this, body(bookingCustomer));
|
|
181
|
+
return {
|
|
182
|
+
data,
|
|
183
|
+
bookingCustomer: this.getById(data.id),
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
};
|
|
187
|
+
_BookingCustomers = __decorate([
|
|
188
|
+
defaultPath("customers"),
|
|
189
|
+
getById(BookingCustomer)
|
|
190
|
+
], _BookingCustomers);
|
|
191
|
+
export { _BookingCustomers };
|
|
192
|
+
export const BookingCustomers = graphInvokableFactory(_BookingCustomers);
|
|
193
|
+
/**
|
|
194
|
+
* Represents a booking service entity
|
|
195
|
+
*/
|
|
196
|
+
let _BookingService = class _BookingService extends _DirectoryObject {
|
|
197
|
+
};
|
|
198
|
+
_BookingService = __decorate([
|
|
199
|
+
deleteable(),
|
|
200
|
+
updateable()
|
|
201
|
+
], _BookingService);
|
|
202
|
+
export { _BookingService };
|
|
203
|
+
export const BookingService = graphInvokableFactory(_BookingService);
|
|
204
|
+
/**
|
|
205
|
+
* Describes a collection of booking service objects
|
|
206
|
+
*
|
|
207
|
+
*/
|
|
208
|
+
let _BookingServices = class _BookingServices extends _GraphQueryableCollection {
|
|
209
|
+
/**
|
|
210
|
+
* Create a new booking service as specified in the request body.
|
|
211
|
+
*
|
|
212
|
+
* @param bookingService a JSON representation of a BookingService object.
|
|
213
|
+
*/
|
|
214
|
+
async add(bookingService) {
|
|
215
|
+
const data = await graphPost(this, body(bookingService));
|
|
216
|
+
return {
|
|
217
|
+
data,
|
|
218
|
+
bookingService: this.getById(data.id),
|
|
219
|
+
};
|
|
220
|
+
}
|
|
221
|
+
};
|
|
222
|
+
_BookingServices = __decorate([
|
|
223
|
+
defaultPath("services"),
|
|
224
|
+
getById(BookingService)
|
|
225
|
+
], _BookingServices);
|
|
226
|
+
export { _BookingServices };
|
|
227
|
+
export const BookingServices = graphInvokableFactory(_BookingServices);
|
|
228
|
+
/**
|
|
229
|
+
* Represents a booking staffmember entity
|
|
230
|
+
*/
|
|
231
|
+
let _BookingStaffMember = class _BookingStaffMember extends _DirectoryObject {
|
|
232
|
+
};
|
|
233
|
+
_BookingStaffMember = __decorate([
|
|
234
|
+
deleteable(),
|
|
235
|
+
updateable()
|
|
236
|
+
], _BookingStaffMember);
|
|
237
|
+
export { _BookingStaffMember };
|
|
238
|
+
export const BookingStaffMember = graphInvokableFactory(_BookingStaffMember);
|
|
239
|
+
/**
|
|
240
|
+
* Describes a collection of booking staffmember objects
|
|
241
|
+
*
|
|
242
|
+
*/
|
|
243
|
+
let _BookingStaffMembers = class _BookingStaffMembers extends _GraphQueryableCollection {
|
|
244
|
+
/**
|
|
245
|
+
* Create a new booking staffmember as specified in the request body.
|
|
246
|
+
*
|
|
247
|
+
* @param bookingStaffMember a JSON representation of a BookingStaffMember object.
|
|
248
|
+
*/
|
|
249
|
+
async add(bookingStaffMember) {
|
|
250
|
+
const data = await graphPost(this, body(bookingStaffMember));
|
|
251
|
+
return {
|
|
252
|
+
data,
|
|
253
|
+
bookingStaffMember: this.getById(data.id),
|
|
254
|
+
};
|
|
255
|
+
}
|
|
256
|
+
};
|
|
257
|
+
_BookingStaffMembers = __decorate([
|
|
258
|
+
defaultPath("staffMembers"),
|
|
259
|
+
getById(BookingStaffMember)
|
|
260
|
+
], _BookingStaffMembers);
|
|
261
|
+
export { _BookingStaffMembers };
|
|
262
|
+
export const BookingStaffMembers = graphInvokableFactory(_BookingStaffMembers);
|
|
263
|
+
/**
|
|
264
|
+
* Represents a booking custom questions entity
|
|
265
|
+
*/
|
|
266
|
+
let _BookingCustomQuestion = class _BookingCustomQuestion extends _DirectoryObject {
|
|
267
|
+
};
|
|
268
|
+
_BookingCustomQuestion = __decorate([
|
|
269
|
+
deleteable(),
|
|
270
|
+
updateable()
|
|
271
|
+
], _BookingCustomQuestion);
|
|
272
|
+
export { _BookingCustomQuestion };
|
|
273
|
+
export const BookingCustomQuestion = graphInvokableFactory(_BookingCustomQuestion);
|
|
274
|
+
/**
|
|
275
|
+
* Describes a collection of booking custom questions objects
|
|
276
|
+
*
|
|
277
|
+
*/
|
|
278
|
+
let _BookingCustomQuestions = class _BookingCustomQuestions extends _GraphQueryableCollection {
|
|
279
|
+
/**
|
|
280
|
+
* Create a new booking customquestions as specified in the request body.
|
|
281
|
+
*
|
|
282
|
+
* @param bookingCustomQuestion a JSON representation of a BookingCustomQuestion object.
|
|
283
|
+
*/
|
|
284
|
+
async add(bookingCustomQuestion) {
|
|
285
|
+
const data = await graphPost(this, body(bookingCustomQuestion));
|
|
286
|
+
return {
|
|
287
|
+
data,
|
|
288
|
+
bookingCustomQuestion: this.getById(data.id),
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
};
|
|
292
|
+
_BookingCustomQuestions = __decorate([
|
|
293
|
+
defaultPath("customquestions"),
|
|
294
|
+
getById(BookingCustomQuestion)
|
|
295
|
+
], _BookingCustomQuestions);
|
|
296
|
+
export { _BookingCustomQuestions };
|
|
297
|
+
export const BookingCustomQuestions = graphInvokableFactory(_BookingCustomQuestions);
|
|
298
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../packages/graph/bookings/types.ts"],"names":[],"mappings":";AASA,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,yBAAyB,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AACxF,OAAO,EAAE,WAAW,EAAE,UAAU,EAAe,UAAU,EAAe,OAAO,EAAY,MAAM,kBAAkB,CAAC;AACpH,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAE1C;;;GAGG;AACH,MAAM,OAAO,gBAAiB,SAAQ,gBAAwC;CAAI;AAElF,MAAM,CAAC,MAAM,eAAe,GAAG,qBAAqB,CAAmB,gBAAgB,CAAC,CAAC;AAEzF;;;GAGG;AAGH,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,yBAAmD;CAAG,CAAA;AAAjF,kBAAkB;IAF9B,WAAW,CAAC,6BAA6B,CAAC;IAC1C,OAAO,CAAC,eAAe,CAAC;GACZ,kBAAkB,CAA+D;SAAjF,kBAAkB;AAE/B,MAAM,CAAC,MAAM,iBAAiB,GAAG,qBAAqB,CAAqB,kBAAkB,CAAC,CAAC;AAE/F;;GAEG;AAGH,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,gBAAwC;IAA9E;;QACI;;WAEG;QACI,iBAAY,GAAG,YAAY,CAAC;IAiDvC,CAAC;IA/CG;;OAEG;IACI,OAAO;QACV,OAAO,SAAS,CAAC,eAAe,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC,CAAC;IACvD,CAAC;IACD;;OAEG;IACI,SAAS;QACZ,OAAO,SAAS,CAAC,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC;IACzD,CAAC;IAED;;OAEG;IACH,IAAW,YAAY;QACnB,OAAO,mBAAmB,CAAC,IAAI,CAAC,CAAC;IACrC,CAAC;IAED;;OAEG;IACH,IAAW,SAAS;QAChB,OAAO,gBAAgB,CAAC,IAAI,CAAC,CAAC;IAClC,CAAC;IAED;;OAEG;IACH,IAAW,QAAQ;QACf,OAAO,eAAe,CAAC,IAAI,CAAC,CAAC;IACjC,CAAC;IAED;;OAEG;IACH,IAAW,YAAY;QACnB,OAAO,mBAAmB,CAAC,IAAI,CAAC,CAAC;IACrC,CAAC;IAED;;OAEG;IACH,IAAW,eAAe;QACtB,OAAO,sBAAsB,CAAC,IAAI,CAAC,CAAC;IACxC,CAAC;CACJ,CAAA;AArDY,gBAAgB;IAF5B,UAAU,EAAE;IACZ,UAAU,EAAE;GACA,gBAAgB,CAqD5B;SArDY,gBAAgB;AAuD7B,MAAM,CAAC,MAAM,eAAe,GAAG,qBAAqB,CAAmB,gBAAgB,CAAC,CAAC;AAEzF;;;GAGG;AAGH,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,yBAAmD;IACvF;;;;;WAKO;IACA,KAAK,CAAC,GAAG,CAAC,IAAY,EAAE,uBAA4C,EAAE;QAEzE,MAAM,QAAQ,GAAG;YACb,WAAW,EAAE,IAAI;YACjB,GAAG,oBAAoB;SAC1B,CAAC;QAEF,MAAM,IAAI,GAAG,MAAM,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;QAEnD,OAAO;YACH,IAAI;YACJ,eAAe,EAAQ,IAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;SAChD,CAAC;IACN,CAAC;CACJ,CAAA;AArBY,kBAAkB;IAF9B,WAAW,CAAC,6BAA6B,CAAC;IAC1C,OAAO,CAAC,eAAe,CAAC;GACZ,kBAAkB,CAqB9B;SArBY,kBAAkB;AAwB/B,MAAM,CAAC,MAAM,iBAAiB,GAAG,qBAAqB,CAAqB,kBAAkB,CAAC,CAAC;AAE/F;;GAEG;AAGH,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,gBAA2C;IAC/E;;OAEG;IACI,MAAM,CAAC,mBAA2B;QACrC,MAAM,QAAQ,GAAG,EAAE,mBAAmB,EAAE,CAAC;QACzC,OAAO,SAAS,CAAC,kBAAkB,CAAC,IAAI,EAAE,QAAQ,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;IACzE,CAAC;CACJ,CAAA;AARY,kBAAkB;IAF9B,UAAU,EAAE;IACZ,UAAU,EAAE;GACA,kBAAkB,CAQ9B;SARY,kBAAkB;AAU/B,MAAM,CAAC,MAAM,kBAAkB,GAAG,qBAAqB,CAAsB,kBAAkB,CAAC,CAAC;AAEjG;;;GAGG;AAGH,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,yBAAsD;IAC5F;;;;OAIG;IACI,KAAK,CAAC,GAAG,CAAC,kBAA6C;QAC1D,MAAM,IAAI,GAAG,MAAM,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC;QAE7D,OAAO;YACH,IAAI;YACJ,kBAAkB,EAAQ,IAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;SACnD,CAAC;IACN,CAAC;CACJ,CAAA;AAdY,oBAAoB;IAFhC,WAAW,CAAC,cAAc,CAAC;IAC3B,OAAO,CAAC,kBAAkB,CAAC;GACf,oBAAoB,CAchC;SAdY,oBAAoB;AAiBjC,MAAM,CAAC,MAAM,mBAAmB,GAAG,qBAAqB,CAAuB,oBAAoB,CAAC,CAAC;AAErG;;GAEG;AAGH,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,gBAAwC;CAAI,CAAA;AAArE,gBAAgB;IAF5B,UAAU,EAAE;IACZ,UAAU,EAAE;GACA,gBAAgB,CAAqD;SAArE,gBAAgB;AAE7B,MAAM,CAAC,MAAM,eAAe,GAAG,qBAAqB,CAAmB,gBAAgB,CAAC,CAAC;AAEzF;;;GAGG;AAGH,IAAa,iBAAiB,GAA9B,MAAa,iBAAkB,SAAQ,yBAAmD;IACtF;;;;OAIG;IACI,KAAK,CAAC,GAAG,CAAC,eAAuC;QACpD,MAAM,IAAI,GAAG,MAAM,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC;QAE1D,OAAO;YACH,IAAI;YACJ,eAAe,EAAQ,IAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;SAChD,CAAC;IACN,CAAC;CACJ,CAAA;AAdY,iBAAiB;IAF7B,WAAW,CAAC,WAAW,CAAC;IACxB,OAAO,CAAC,eAAe,CAAC;GACZ,iBAAiB,CAc7B;SAdY,iBAAiB;AAiB9B,MAAM,CAAC,MAAM,gBAAgB,GAAG,qBAAqB,CAAoB,iBAAiB,CAAC,CAAC;AAE5F;;GAEG;AAGH,IAAa,eAAe,GAA5B,MAAa,eAAgB,SAAQ,gBAAuC;CAAI,CAAA;AAAnE,eAAe;IAF3B,UAAU,EAAE;IACZ,UAAU,EAAE;GACA,eAAe,CAAoD;SAAnE,eAAe;AAE5B,MAAM,CAAC,MAAM,cAAc,GAAG,qBAAqB,CAAkB,eAAe,CAAC,CAAC;AAEtF;;;GAGG;AAGH,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,yBAAkD;IACpF;;;;OAIG;IACI,KAAK,CAAC,GAAG,CAAC,cAAqC;QAClD,MAAM,IAAI,GAAG,MAAM,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC;QAEzD,OAAO;YACH,IAAI;YACJ,cAAc,EAAQ,IAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;SAC/C,CAAC;IACN,CAAC;CACJ,CAAA;AAdY,gBAAgB;IAF5B,WAAW,CAAC,UAAU,CAAC;IACvB,OAAO,CAAC,cAAc,CAAC;GACX,gBAAgB,CAc5B;SAdY,gBAAgB;AAiB7B,MAAM,CAAC,MAAM,eAAe,GAAG,qBAAqB,CAAmB,gBAAgB,CAAC,CAAC;AAEzF;;GAEG;AAGH,IAAa,mBAAmB,GAAhC,MAAa,mBAAoB,SAAQ,gBAA2C;CAAI,CAAA;AAA3E,mBAAmB;IAF/B,UAAU,EAAE;IACZ,UAAU,EAAE;GACA,mBAAmB,CAAwD;SAA3E,mBAAmB;AAEhC,MAAM,CAAC,MAAM,kBAAkB,GAAG,qBAAqB,CAAsB,mBAAmB,CAAC,CAAC;AAElG;;;GAGG;AAGH,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,yBAAsD;IAC5F;;;;OAIG;IACI,KAAK,CAAC,GAAG,CAAC,kBAA6C;QAC1D,MAAM,IAAI,GAAG,MAAM,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC;QAE7D,OAAO;YACH,IAAI;YACJ,kBAAkB,EAAQ,IAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;SACnD,CAAC;IACN,CAAC;CACJ,CAAA;AAdY,oBAAoB;IAFhC,WAAW,CAAC,cAAc,CAAC;IAC3B,OAAO,CAAC,kBAAkB,CAAC;GACf,oBAAoB,CAchC;SAdY,oBAAoB;AAiBjC,MAAM,CAAC,MAAM,mBAAmB,GAAG,qBAAqB,CAAuB,oBAAoB,CAAC,CAAC;AAErG;;GAEG;AAGH,IAAa,sBAAsB,GAAnC,MAAa,sBAAuB,SAAQ,gBAA8C;CAAI,CAAA;AAAjF,sBAAsB;IAFlC,UAAU,EAAE;IACZ,UAAU,EAAE;GACA,sBAAsB,CAA2D;SAAjF,sBAAsB;AAEnC,MAAM,CAAC,MAAM,qBAAqB,GAAG,qBAAqB,CAAyB,sBAAsB,CAAC,CAAC;AAE3G;;;GAGG;AAGH,IAAa,uBAAuB,GAApC,MAAa,uBAAwB,SAAQ,yBAAyD;IAClG;;;;OAIG;IACI,KAAK,CAAC,GAAG,CAAC,qBAAmD;QAChE,MAAM,IAAI,GAAG,MAAM,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC;QAEhE,OAAO;YACH,IAAI;YACJ,qBAAqB,EAAQ,IAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;SACtD,CAAC;IACN,CAAC;CACJ,CAAA;AAdY,uBAAuB;IAFnC,WAAW,CAAC,iBAAiB,CAAC;IAC9B,OAAO,CAAC,qBAAqB,CAAC;GAClB,uBAAuB,CAcnC;SAdY,uBAAuB;AAiBpC,MAAM,CAAC,MAAM,sBAAsB,GAAG,qBAAqB,CAA0B,uBAAuB,CAAC,CAAC"}
|
package/graphqueryable.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IInvokable, Queryable } from "@pnp/queryable";
|
|
2
|
+
import { IPagedResult } from "./behaviors/paged.js";
|
|
2
3
|
export declare type GraphInit = string | IGraphQueryable | [IGraphQueryable, string];
|
|
3
4
|
export interface IGraphQueryableConstructor<T> {
|
|
4
5
|
new (base: GraphInit, path?: string): T;
|
|
@@ -75,60 +76,30 @@ export declare class _GraphQueryableCollection<GetType = any[]> extends _GraphQu
|
|
|
75
76
|
* @param num Number of items to skip
|
|
76
77
|
*/
|
|
77
78
|
skip(num: number): this;
|
|
78
|
-
/**
|
|
79
|
-
* To request second and subsequent pages of Graph data
|
|
80
|
-
*/
|
|
81
|
-
skipToken(token: string): this;
|
|
82
|
-
/**
|
|
83
|
-
* Retrieves the total count of matching resources
|
|
84
|
-
*/
|
|
85
|
-
get count(): IGraphQueryableSearchableCollection;
|
|
86
|
-
}
|
|
87
|
-
export interface IGraphQueryableCollection<GetType = any[]> extends IInvokable, IGraphQueryable<GetType> {
|
|
88
|
-
/**
|
|
89
|
-
* Retrieves the total count of matching resources
|
|
90
|
-
*/
|
|
91
|
-
count: this;
|
|
92
|
-
/**
|
|
93
|
-
*
|
|
94
|
-
* @param filter The string representing the filter query
|
|
95
|
-
*/
|
|
96
|
-
filter(filter: string): this;
|
|
97
|
-
/**
|
|
98
|
-
* Orders based on the supplied fields
|
|
99
|
-
*
|
|
100
|
-
* @param orderby The name of the field on which to sort
|
|
101
|
-
* @param ascending If false DESC is appended, otherwise ASC (default)
|
|
102
|
-
*/
|
|
103
|
-
orderBy(orderBy: string, ascending?: boolean): this;
|
|
104
|
-
/**
|
|
105
|
-
* Limits the query to only return the specified number of items
|
|
106
|
-
*
|
|
107
|
-
* @param top The query row limit
|
|
108
|
-
*/
|
|
109
|
-
top(top: number): this;
|
|
110
79
|
/**
|
|
111
80
|
* Skips a set number of items in the return set
|
|
112
81
|
*
|
|
113
82
|
* @param num Number of items to skip
|
|
114
83
|
*/
|
|
115
|
-
|
|
84
|
+
search(query: string): this;
|
|
116
85
|
/**
|
|
117
86
|
* To request second and subsequent pages of Graph data
|
|
118
87
|
*/
|
|
119
88
|
skipToken(token: string): this;
|
|
120
|
-
}
|
|
121
|
-
export declare const GraphQueryableCollection: IGraphInvokableFactory<IGraphQueryableCollection<any[]>>;
|
|
122
|
-
export declare class _GraphQueryableSearchableCollection<GetType = any[]> extends _GraphQueryableCollection<GetType> {
|
|
123
89
|
/**
|
|
124
|
-
*
|
|
90
|
+
* Retrieves the total count of matching resources
|
|
125
91
|
*/
|
|
126
|
-
|
|
92
|
+
count(): Promise<number>;
|
|
93
|
+
/**
|
|
94
|
+
* Allows reading through a collection as pages of information whose size is determined by top or the api method's default
|
|
95
|
+
*
|
|
96
|
+
* @returns an object containing results, the ability to determine if there are more results, and request the next page of results
|
|
97
|
+
*/
|
|
98
|
+
paged(): Promise<IPagedResult>;
|
|
127
99
|
}
|
|
128
|
-
export interface
|
|
129
|
-
search(query: string): this;
|
|
100
|
+
export interface IGraphQueryableCollection<GetType = any[]> extends _GraphQueryableCollection<GetType> {
|
|
130
101
|
}
|
|
131
|
-
export declare const
|
|
102
|
+
export declare const GraphQueryableCollection: IGraphInvokableFactory<IGraphQueryableCollection<any[]>>;
|
|
132
103
|
/**
|
|
133
104
|
* Represents an instance that can be selected
|
|
134
105
|
*
|
package/graphqueryable.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphqueryable.d.ts","sourceRoot":"","sources":["../../../packages/graph/graphqueryable.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"graphqueryable.d.ts","sourceRoot":"","sources":["../../../packages/graph/graphqueryable.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAa,SAAS,EAAoB,MAAM,gBAAgB,CAAC;AAEpF,OAAO,EAAW,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAE7D,oBAAY,SAAS,GAAG,MAAM,GAAG,eAAe,GAAG,CAAC,eAAe,EAAE,MAAM,CAAC,CAAC;AAE7E,MAAM,WAAW,0BAA0B,CAAC,CAAC;IACzC,KAAI,IAAI,EAAE,SAAS,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC;CAC1C;AAED,oBAAY,sBAAsB,CAAC,CAAC,SAAS,eAAe,IAAI,CAAC,IAAI,EAAE,SAAS,EAAE,IAAI,CAAC,EAAE,MAAM,KAAK,CAAC,GAAG,UAAU,CAAC;AAEnH,eAAO,MAAM,qBAAqB,sCAAkC,GAAG,8BAEtE,CAAC;AAEF;;;GAGG;AACH,qBAAa,eAAe,CAAC,OAAO,GAAG,GAAG,CAAE,SAAQ,SAAS,CAAC,OAAO,CAAC;IAElE,SAAS,CAAC,SAAS,EAAE,MAAM,CAAC;IAE5B;;;;;;OAMG;gBACS,IAAI,EAAE,SAAS,EAAE,IAAI,CAAC,EAAE,MAAM;IAkB1C;;;;OAIG;IACI,MAAM,CAAC,GAAG,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI;IAQzC;;;;OAIG;IACI,MAAM,CAAC,GAAG,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI;IAQzC;;;OAGG;IACI,aAAa,IAAI,MAAM;IAY9B;;;;OAIG;IACH,SAAS,CAAC,SAAS,CAAC,CAAC,SAAS,eAAe,EACzC,OAAO,EAAE,0BAA0B,CAAC,CAAC,CAAC,EACtC,IAAI,GAAE,SAA0B,EAChC,IAAI,CAAC,EAAE,MAAM,GAAG,CAAC;CAIxB;AAED,MAAM,WAAW,eAAe,CAAC,OAAO,GAAG,GAAG,CAAE,SAAQ,eAAe,CAAC,OAAO,CAAC;CAAI;AACpF,eAAO,MAAM,cAAc,8CAA0D,CAAC;AAEtF;;;GAGG;AACH,qBAAa,yBAAyB,CAAC,OAAO,GAAG,GAAG,EAAE,CAAE,SAAQ,eAAe,CAAC,OAAO,CAAC;IAEpF;;;OAGG;IACI,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAKnC;;;;;OAKG;IACI,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,UAAO,GAAG,IAAI;IASvD;;;;OAIG;IACI,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAK7B;;;;OAIG;IACI,IAAI,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAK9B;;;;OAIG;IACI,MAAM,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAMlC;;OAEG;IACI,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAKrC;;OAEG;IACU,KAAK,IAAI,OAAO,CAAC,MAAM,CAAC;IAOrC;;;;OAIG;IACI,KAAK,IAAI,OAAO,CAAC,YAAY,CAAC;CAGxC;AACD,MAAM,WAAW,yBAAyB,CAAC,OAAO,GAAG,GAAG,EAAE,CAAE,SAAQ,yBAAyB,CAAC,OAAO,CAAC;CAAI;AAC1G,eAAO,MAAM,wBAAwB,0DAA8E,CAAC;AAEpH;;;GAGG;AACH,qBAAa,uBAAuB,CAAC,OAAO,GAAG,GAAG,CAAE,SAAQ,eAAe,CAAC,OAAO,CAAC;CAAI;AAExF,MAAM,WAAW,uBAAuB,CAAC,OAAO,GAAG,GAAG,CAAE,SAAQ,UAAU,EAAE,eAAe,CAAC,OAAO,CAAC;CAAI;AACxG,eAAO,MAAM,sBAAsB,sDAA0E,CAAC"}
|
package/graphqueryable.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { isArray } from "@pnp/core";
|
|
2
|
-
import {
|
|
2
|
+
import { JSONParse, Queryable, queryableFactory } from "@pnp/queryable";
|
|
3
|
+
import { ConsistencyLevel } from "./behaviors/consistency-level.js";
|
|
4
|
+
import { AsPaged } from "./behaviors/paged.js";
|
|
3
5
|
export const graphInvokableFactory = (f) => {
|
|
4
6
|
return queryableFactory(f);
|
|
5
7
|
};
|
|
@@ -34,7 +36,8 @@ export class _GraphQueryable extends Queryable {
|
|
|
34
36
|
*/
|
|
35
37
|
select(...selects) {
|
|
36
38
|
if (selects.length > 0) {
|
|
37
|
-
this.query.set("$select", selects.map(encodeURIComponent).join(","));
|
|
39
|
+
// this.query.set("$select", selects.map(encodeURIComponent).join(","));
|
|
40
|
+
this.query.set("$select", selects.join(","));
|
|
38
41
|
}
|
|
39
42
|
return this;
|
|
40
43
|
}
|
|
@@ -45,7 +48,8 @@ export class _GraphQueryable extends Queryable {
|
|
|
45
48
|
*/
|
|
46
49
|
expand(...expands) {
|
|
47
50
|
if (expands.length > 0) {
|
|
48
|
-
this.query.set("$expand", expands.map(encodeURIComponent).join(","));
|
|
51
|
+
// this.query.set("$expand", expands.map(encodeURIComponent).join(","));
|
|
52
|
+
this.query.set("$expand", expands.join(","));
|
|
49
53
|
}
|
|
50
54
|
return this;
|
|
51
55
|
}
|
|
@@ -94,7 +98,8 @@ export class _GraphQueryableCollection extends _GraphQueryable {
|
|
|
94
98
|
var _a;
|
|
95
99
|
const o = "$orderby";
|
|
96
100
|
const query = ((_a = this.query.get(o)) === null || _a === void 0 ? void 0 : _a.split(",")) || [];
|
|
97
|
-
|
|
101
|
+
// const eUri = encodeURIComponent(orderBy);
|
|
102
|
+
query.push(`${orderBy} ${ascending ? "asc" : "desc"}`);
|
|
98
103
|
this.query.set(o, query.join(","));
|
|
99
104
|
return this;
|
|
100
105
|
}
|
|
@@ -116,6 +121,16 @@ export class _GraphQueryableCollection extends _GraphQueryable {
|
|
|
116
121
|
this.query.set("$skip", num.toString());
|
|
117
122
|
return this;
|
|
118
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* Skips a set number of items in the return set
|
|
126
|
+
*
|
|
127
|
+
* @param num Number of items to skip
|
|
128
|
+
*/
|
|
129
|
+
search(query) {
|
|
130
|
+
this.using(ConsistencyLevel());
|
|
131
|
+
this.query.set("$search", query);
|
|
132
|
+
return this;
|
|
133
|
+
}
|
|
119
134
|
/**
|
|
120
135
|
* To request second and subsequent pages of Graph data
|
|
121
136
|
*/
|
|
@@ -126,24 +141,22 @@ export class _GraphQueryableCollection extends _GraphQueryable {
|
|
|
126
141
|
/**
|
|
127
142
|
* Retrieves the total count of matching resources
|
|
128
143
|
*/
|
|
129
|
-
|
|
130
|
-
const q =
|
|
144
|
+
async count() {
|
|
145
|
+
const q = GraphQueryableCollection(this).using(ConsistencyLevel(), JSONParse());
|
|
131
146
|
q.query.set("$count", "true");
|
|
132
|
-
|
|
147
|
+
const r = await q.top(1)();
|
|
148
|
+
return parseFloat(r["@odata.count"]);
|
|
133
149
|
}
|
|
134
|
-
}
|
|
135
|
-
export const GraphQueryableCollection = graphInvokableFactory(_GraphQueryableCollection);
|
|
136
|
-
export class _GraphQueryableSearchableCollection extends _GraphQueryableCollection {
|
|
137
150
|
/**
|
|
138
|
-
*
|
|
151
|
+
* Allows reading through a collection as pages of information whose size is determined by top or the api method's default
|
|
152
|
+
*
|
|
153
|
+
* @returns an object containing results, the ability to determine if there are more results, and request the next page of results
|
|
139
154
|
*/
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
q.query.set("$search", query);
|
|
143
|
-
return q;
|
|
155
|
+
paged() {
|
|
156
|
+
return AsPaged(this)();
|
|
144
157
|
}
|
|
145
158
|
}
|
|
146
|
-
export const
|
|
159
|
+
export const GraphQueryableCollection = graphInvokableFactory(_GraphQueryableCollection);
|
|
147
160
|
/**
|
|
148
161
|
* Represents an instance that can be selected
|
|
149
162
|
*
|
package/graphqueryable.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphqueryable.js","sourceRoot":"","sources":["../../../packages/graph/graphqueryable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAc,
|
|
1
|
+
{"version":3,"file":"graphqueryable.js","sourceRoot":"","sources":["../../../packages/graph/graphqueryable.ts"],"names":[],"mappings":"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"}
|
package/groups/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Event as IEventType, Group as IGroupType } from "@microsoft/microsoft-graph-types";
|
|
2
|
-
import {
|
|
2
|
+
import { _GraphQueryableCollection } from "../graphqueryable.js";
|
|
3
3
|
import { IDeleteable, IUpdateable, IGetById } from "../decorators.js";
|
|
4
4
|
import { _DirectoryObject } from "../directory-objects/types.js";
|
|
5
5
|
export declare enum GroupType {
|
|
@@ -54,10 +54,10 @@ export interface IGroup extends _Group, IDeleteable, IUpdateable {
|
|
|
54
54
|
}
|
|
55
55
|
export declare const Group: import("../graphqueryable.js").IGraphInvokableFactory<IGroup>;
|
|
56
56
|
/**
|
|
57
|
-
* Describes a collection of
|
|
57
|
+
* Describes a collection of Group objects
|
|
58
58
|
*
|
|
59
59
|
*/
|
|
60
|
-
export declare class _Groups extends
|
|
60
|
+
export declare class _Groups extends _GraphQueryableCollection<IGroupType[]> {
|
|
61
61
|
/**
|
|
62
62
|
* Create a new group as specified in the request body.
|
|
63
63
|
*
|
package/groups/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../packages/graph/groups/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,UAAU,EAAE,KAAK,IAAI,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAE5F,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../packages/graph/groups/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,UAAU,EAAE,KAAK,IAAI,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAE5F,OAAO,EAAE,yBAAyB,EAAyB,MAAM,sBAAsB,CAAC;AACxF,OAAO,EAA2B,WAAW,EAAc,WAAW,EAAW,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEpH,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAEjE,oBAAY,SAAS;IACjB;;OAEG;IACH,SAAS,IAAA;IACT;;OAEG;IACH,OAAO,IAAA;IACP;;OAEG;IACH,QAAQ,IAAA;CACX;AAED;;GAEG;AACH,qBAEa,MAAO,SAAQ,gBAAgB,CAAC,UAAU,CAAC;IACpD;;OAEG;IACI,WAAW,IAAI,OAAO,CAAC,IAAI,CAAC;IAGnC;;OAEG;IACI,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC;IAGtC;;OAEG;IACI,gBAAgB,IAAI,OAAO,CAAC,IAAI,CAAC;IAGxC;;;OAGG;IACI,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IAGvC;;;OAGG;IACI,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC;IAGzC;;;;;OAKG;IACI,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;CAOxE;AACD,MAAM,WAAW,MAAO,SAAQ,MAAM,EAAE,WAAW,EAAE,WAAW;CAAI;AACpE,eAAO,MAAM,KAAK,+DAAwC,CAAC;AAE3D;;;GAGG;AACH,qBAEa,OAAQ,SAAQ,yBAAyB,CAAC,UAAU,EAAE,CAAC;IAEhE;;;;;;;OAOG;IACU,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,oBAAoB,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAM,GAAG,OAAO,CAAC,eAAe,CAAC;CA0BvJ;AACD,MAAM,WAAW,OAAQ,SAAQ,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC;CAAI;AAC9D,eAAO,MAAM,MAAM,gEAA0C,CAAC;AAE9D;;GAEG;AACH,MAAM,WAAW,eAAe;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,GAAG,CAAC;CACb"}
|
package/groups/types.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __decorate } from "tslib";
|
|
2
2
|
import { body } from "@pnp/queryable";
|
|
3
|
-
import {
|
|
3
|
+
import { _GraphQueryableCollection, graphInvokableFactory } from "../graphqueryable.js";
|
|
4
4
|
import { defaultPath, deleteable, updateable, getById } from "../decorators.js";
|
|
5
5
|
import { graphPost } from "../operations.js";
|
|
6
6
|
import { _DirectoryObject } from "../directory-objects/types.js";
|
|
@@ -75,10 +75,10 @@ _Group = __decorate([
|
|
|
75
75
|
export { _Group };
|
|
76
76
|
export const Group = graphInvokableFactory(_Group);
|
|
77
77
|
/**
|
|
78
|
-
* Describes a collection of
|
|
78
|
+
* Describes a collection of Group objects
|
|
79
79
|
*
|
|
80
80
|
*/
|
|
81
|
-
let _Groups = class _Groups extends
|
|
81
|
+
let _Groups = class _Groups extends _GraphQueryableCollection {
|
|
82
82
|
/**
|
|
83
83
|
* Create a new group as specified in the request body.
|
|
84
84
|
*
|
package/groups/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../packages/graph/groups/types.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACtC,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../packages/graph/groups/types.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export { graphfi as graphfi, GraphFI as GraphFI } from "./fi.js";
|
|
2
|
-
export { IGraphQueryableCollection, IGraphQueryableInstance,
|
|
2
|
+
export { IGraphQueryableCollection, IGraphQueryableInstance, GraphQueryable, IGraphQueryable, GraphQueryableCollection, GraphQueryableInstance, IGraphQueryableConstructor, } from "./graphqueryable.js";
|
|
3
3
|
export * from "./operations.js";
|
|
4
|
+
export * from "./behaviors/consistency-level.js";
|
|
4
5
|
export * from "./behaviors/defaults.js";
|
|
5
6
|
export * from "./behaviors/endpoint.js";
|
|
6
7
|
export * from "./behaviors/graphbrowser.js";
|
|
8
|
+
export * from "./behaviors/paged.js";
|
|
7
9
|
export * from "./behaviors/telemetry.js";
|
|
8
10
|
export * from "./behaviors/spfx.js";
|
|
9
11
|
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../packages/graph/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,SAAS,CAAC;AAEjE,OAAO,EACH,yBAAyB,EACzB,uBAAuB,EACvB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../packages/graph/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,SAAS,CAAC;AAEjE,OAAO,EACH,yBAAyB,EACzB,uBAAuB,EACvB,cAAc,EACd,eAAe,EACf,wBAAwB,EACxB,sBAAsB,EACtB,0BAA0B,GAC7B,MAAM,qBAAqB,CAAC;AAE7B,cAAc,iBAAiB,CAAC;AAEhC,cAAc,kCAAkC,CAAC;AACjD,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC"}
|
package/index.js
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export { graphfi as graphfi, GraphFI as GraphFI } from "./fi.js";
|
|
2
|
-
export { GraphQueryable, GraphQueryableCollection, GraphQueryableInstance,
|
|
2
|
+
export { GraphQueryable, GraphQueryableCollection, GraphQueryableInstance, } from "./graphqueryable.js";
|
|
3
3
|
export * from "./operations.js";
|
|
4
|
+
export * from "./behaviors/consistency-level.js";
|
|
4
5
|
export * from "./behaviors/defaults.js";
|
|
5
6
|
export * from "./behaviors/endpoint.js";
|
|
6
7
|
export * from "./behaviors/graphbrowser.js";
|
|
8
|
+
export * from "./behaviors/paged.js";
|
|
7
9
|
export * from "./behaviors/telemetry.js";
|
|
8
10
|
export * from "./behaviors/spfx.js";
|
|
9
11
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../packages/graph/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,SAAS,CAAC;AAEjE,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../packages/graph/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,SAAS,CAAC;AAEjE,OAAO,EAGH,cAAc,EAEd,wBAAwB,EACxB,sBAAsB,GAEzB,MAAM,qBAAqB,CAAC;AAE7B,cAAc,iBAAiB,CAAC;AAEhC,cAAc,kCAAkC,CAAC;AACjD,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC"}
|
package/messages/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Message as IMessageType, MailFolder as IMailFolderType, MailboxSettings as IMailboxSettingsType } from "@microsoft/microsoft-graph-types";
|
|
2
|
-
import {
|
|
2
|
+
import { _GraphQueryableInstance, _GraphQueryableCollection } from "../graphqueryable.js";
|
|
3
3
|
import { IGetById, IAddable, IUpdateable } from "../decorators.js";
|
|
4
4
|
/**
|
|
5
5
|
* Message
|
|
@@ -12,7 +12,7 @@ export declare const Message: import("../graphqueryable.js").IGraphInvokableFact
|
|
|
12
12
|
/**
|
|
13
13
|
* Messages
|
|
14
14
|
*/
|
|
15
|
-
export declare class _Messages extends
|
|
15
|
+
export declare class _Messages extends _GraphQueryableCollection<IMessageType[]> {
|
|
16
16
|
}
|
|
17
17
|
export interface IMessages extends _Messages, IGetById<IMessage>, IAddable<IMessageType> {
|
|
18
18
|
}
|
package/messages/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../packages/graph/messages/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,UAAU,IAAI,eAAe,EAAE,eAAe,IAAI,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AACnJ,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../packages/graph/messages/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,UAAU,IAAI,eAAe,EAAE,eAAe,IAAI,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AACnJ,OAAO,EAAE,uBAAuB,EAAE,yBAAyB,EAAyB,MAAM,sBAAsB,CAAC;AACjH,OAAO,EAAiC,QAAQ,EAAE,QAAQ,EAAc,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAE9G;;GAEG;AACH,qBAAa,QAAS,SAAQ,uBAAuB,CAAC,YAAY,CAAC;CAAI;AACvE,MAAM,WAAW,QAAS,SAAQ,QAAQ;CAAI;AAC9C,eAAO,MAAM,OAAO,iEAA4C,CAAC;AAEjE;;GAEG;AACH,qBAGa,SAAU,SAAQ,yBAAyB,CAAC,YAAY,EAAE,CAAC;CAAI;AAC5E,MAAM,WAAW,SAAU,SAAQ,SAAS,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAC,YAAY,CAAC;CAAI;AAC5F,eAAO,MAAM,QAAQ,kEAA8C,CAAC;AAEpE;;GAEG;AACH,qBAAa,WAAY,SAAQ,uBAAuB,CAAC,eAAe,CAAC;CAAI;AAC7E,MAAM,WAAW,WAAY,SAAQ,WAAW;CAAI;AACpD,eAAO,MAAM,UAAU,oEAAkD,CAAC;AAE1E;;GAEG;AACH,qBAGa,YAAa,SAAQ,yBAAyB,CAAC,eAAe,EAAE,CAAC;CAAI;AAClF,MAAM,WAAW,YAAa,SAAQ,YAAY,EAAE,QAAQ,CAAC,WAAW,CAAC,EAAE,QAAQ,CAAC,eAAe,CAAC;CAAI;AACxG,eAAO,MAAM,WAAW,qEAAoD,CAAC;AAE7E;;GAEG;AACH,qBAEa,gBAAiB,SAAQ,uBAAuB,CAAC,oBAAoB,CAAC;CAAI;AACvF,MAAM,WAAW,gBAAiB,SAAQ,gBAAgB,EAAE,WAAW,CAAC,oBAAoB,CAAC;CAAI;AACjG,eAAO,MAAM,eAAe,yEAA4D,CAAC"}
|