gd-sprest-def 2.0.9 → 2.1.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.
package/base.d.ts CHANGED
@@ -156,6 +156,7 @@ export interface IMethodInfo {
156
156
  argValues?: Array<any>;
157
157
  data?: any;
158
158
  getAllItemsFl?: boolean;
159
+ getAllItemsWaitTime?: number;
159
160
  inheritMetadataType?: boolean;
160
161
  metadataType?: string;
161
162
  name?: string;
@@ -185,6 +186,9 @@ export interface IODataQuery {
185
186
  */
186
187
  GetAllItems?: boolean;
187
188
 
189
+ /** Time in ms to wait between calls to avoid throttling. */
190
+ GetAllItemsWaitTime?: number;
191
+
188
192
  /** The order by fields. */
189
193
  OrderBy?: Array<string>;
190
194
 
package/lib/base.d.ts CHANGED
@@ -156,6 +156,7 @@ export interface IMethodInfo {
156
156
  argValues?: Array<any>;
157
157
  data?: any;
158
158
  getAllItemsFl?: boolean;
159
+ getAllItemsWaitTime?: number;
159
160
  inheritMetadataType?: boolean;
160
161
  metadataType?: string;
161
162
  name?: string;
@@ -185,6 +186,9 @@ export interface IODataQuery {
185
186
  */
186
187
  GetAllItems?: boolean;
187
188
 
189
+ /** Time in ms to wait between calls to avoid throttling. */
190
+ GetAllItemsWaitTime?: number;
191
+
188
192
  /** The order by fields. */
189
193
  OrderBy?: Array<string>;
190
194
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-sprest-def",
3
- "version": "2.0.9",
3
+ "version": "2.1.1",
4
4
  "description": "TypeScript definition files generated from the $metadata REST endpoint in SharePoint.",
5
5
  "author": "Gunjan Datta <me@dattabase.com> (https://gunjandatta.github.io)",
6
6
  "license": "MIT",