gd-sprest-def 1.2.2 → 1.2.3

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.
@@ -6077,16 +6077,16 @@ export interface setSolidColorCollections {
6077
6077
  }
6078
6078
 
6079
6079
  /*********************************************
6080
- * delete
6080
+ * _delete
6081
6081
  **********************************************/
6082
- export interface delete {
6082
+ export interface _delete {
6083
6083
 
6084
6084
  }
6085
6085
 
6086
6086
  /*********************************************
6087
- * deleteCollections
6087
+ * _deleteCollections
6088
6088
  **********************************************/
6089
- export interface deleteCollections {
6089
+ export interface _deleteCollections {
6090
6090
 
6091
6091
  }
6092
6092
 
@@ -7323,16 +7323,16 @@ export interface updateDevicePropertiesCollections {
7323
7323
  }
7324
7324
 
7325
7325
  /*********************************************
7326
- * import
7326
+ * _import
7327
7327
  **********************************************/
7328
- export interface import {
7328
+ export interface _import {
7329
7329
 
7330
7330
  }
7331
7331
 
7332
7332
  /*********************************************
7333
- * importCollections
7333
+ * _importCollections
7334
7334
  **********************************************/
7335
- export interface importCollections {
7335
+ export interface _importCollections {
7336
7336
 
7337
7337
  }
7338
7338
 
@@ -43,7 +43,7 @@ export type operationResult = {
43
43
  export type provisioningAction = {
44
44
  other: 0;
45
45
  create: 1;
46
- _delete: 2;
46
+ delete: 2;
47
47
  disable: 3;
48
48
  update: 4;
49
49
  stagedDelete: 5;
@@ -69,7 +69,7 @@ export type provisioningStatusErrorCategory = {
69
69
 
70
70
  /** provisioningStepType types */
71
71
  export type provisioningStepType = {
72
- _import: 0;
72
+ import: 0;
73
73
  scoping: 1;
74
74
  matching: 2;
75
75
  processing: 3;
@@ -17,9 +17,9 @@ export interface casesRootCollections {
17
17
  }
18
18
 
19
19
  /*********************************************
20
- * _case
20
+ * case
21
21
  **********************************************/
22
- export interface _case {
22
+ export interface case {
23
23
  createdDateTime?: any;
24
24
  description?: string;
25
25
  displayName?: string;
@@ -29,9 +29,9 @@ export interface _case {
29
29
  }
30
30
 
31
31
  /*********************************************
32
- * _caseCollections
32
+ * caseCollections
33
33
  **********************************************/
34
- export interface _caseCollections {
34
+ export interface caseCollections {
35
35
 
36
36
  }
37
37
 
package/lib/enums.ts CHANGED
@@ -45,7 +45,7 @@ export const operationResult: GraphTypes.operationResult = {
45
45
  export const provisioningAction: GraphTypes.provisioningAction = {
46
46
  other: 0,
47
47
  create: 1,
48
- _delete: 2,
48
+ delete: 2,
49
49
  disable: 3,
50
50
  update: 4,
51
51
  stagedDelete: 5,
@@ -71,7 +71,7 @@ export const provisioningStatusErrorCategory: GraphTypes.provisioningStatusError
71
71
 
72
72
  /** provisioningStepType types */
73
73
  export const provisioningStepType: GraphTypes.provisioningStepType = {
74
- _import: 0,
74
+ import: 0,
75
75
  scoping: 1,
76
76
  matching: 2,
77
77
  processing: 3,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-sprest-def",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
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",