microsoft-graph 1.0.8 → 2.1.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/.vscode/settings.json +1 -5
- package/LICENCE.md +96 -325
- package/README.md +59 -37
- package/dist/docs/getItem.js +11 -0
- package/dist/errors/ContextNotRegisteredError.d.ts +4 -0
- package/dist/errors/ContextNotRegisteredError.d.ts.map +1 -0
- package/dist/errors/ContextNotRegisteredError.js +6 -0
- package/dist/errors/InconsistentContextError.d.ts +4 -0
- package/dist/errors/InconsistentContextError.d.ts.map +1 -0
- package/dist/errors/InconsistentContextError.js +6 -0
- package/dist/graphApi.d.ts.map +1 -1
- package/dist/graphApi.js +17 -5
- package/dist/microsoftGraph/errors/BadTemplateError.js +6 -0
- package/dist/microsoftGraph/errors/InvalidArgumentError.js +6 -0
- package/dist/microsoftGraph/errors/RequestFailedError.js +6 -0
- package/dist/microsoftGraph/graphApi.js +49 -0
- package/dist/microsoftGraph/helpers/openSite.js +12 -0
- package/dist/microsoftGraph/helpers/openWorkbook.js +23 -0
- package/dist/microsoftGraph/helpers/openWorksheet.js +7 -0
- package/dist/microsoftGraph/models/AccessToken.js +1 -0
- package/dist/microsoftGraph/models/DriveId.js +1 -0
- package/dist/microsoftGraph/models/DriveItemId.js +1 -0
- package/dist/microsoftGraph/models/DriveItemPath.js +1 -0
- package/dist/microsoftGraph/models/DriveItemRef.js +1 -0
- package/dist/microsoftGraph/models/DriveRef.js +1 -0
- package/dist/microsoftGraph/models/GraphOperation.js +1 -0
- package/dist/microsoftGraph/models/GraphOptions.js +1 -0
- package/dist/microsoftGraph/models/HostName.js +1 -0
- package/dist/microsoftGraph/models/Scope.js +1 -0
- package/dist/microsoftGraph/models/SiteId.js +1 -0
- package/dist/microsoftGraph/models/SiteName.js +1 -0
- package/dist/microsoftGraph/models/SiteRef.js +1 -0
- package/dist/microsoftGraph/models/WorkbookNamedRangeRef.js +1 -0
- package/dist/microsoftGraph/models/WorkbookRangeAddress.js +1 -0
- package/dist/microsoftGraph/models/WorkbookRangeName.js +1 -0
- package/dist/microsoftGraph/models/WorkbookRangeRef.js +1 -0
- package/dist/microsoftGraph/models/WorkbookRef.js +1 -0
- package/dist/microsoftGraph/models/WorkbookSessionId.js +1 -0
- package/dist/microsoftGraph/models/WorkbookWorksheetId.js +1 -0
- package/dist/microsoftGraph/models/WorkbookWorksheetRef.js +1 -0
- package/dist/microsoftGraph/models/regenerate-dtos.js +68 -0
- package/dist/microsoftGraph/operations/drive/createFolder.js +17 -0
- package/dist/microsoftGraph/operations/drive/listDrives.js +11 -0
- package/dist/microsoftGraph/operations/driveItem/copyDriveItem.js +20 -0
- package/dist/microsoftGraph/operations/driveItem/deleteDriveItem.js +11 -0
- package/dist/microsoftGraph/operations/driveItem/getDriveItem.js +11 -0
- package/dist/microsoftGraph/operations/driveItem/getDriveItemByPath.js +11 -0
- package/dist/microsoftGraph/operations/driveItem/listDriveItems.js +11 -0
- package/dist/microsoftGraph/operations/site/getSite.js +11 -0
- package/dist/microsoftGraph/operations/site/getSiteByName.js +11 -0
- package/dist/microsoftGraph/operations/site/listSites.js +11 -0
- package/dist/microsoftGraph/operations/site/searchSites.js +11 -0
- package/dist/microsoftGraph/operations/workbook/createWorkbook.js +14 -0
- package/dist/microsoftGraph/operations/workbook/deleteWorkbook.js +5 -0
- package/dist/microsoftGraph/operations/workbookRange/clearWorkbookRange.js +16 -0
- package/dist/microsoftGraph/operations/workbookRange/deleteWorkbookRange.js +16 -0
- package/dist/microsoftGraph/operations/workbookRange/getWorkbookNamedRange.js +13 -0
- package/dist/microsoftGraph/operations/workbookRange/getWorkbookRange.js +13 -0
- package/dist/microsoftGraph/operations/workbookRange/getWorkbookUsedRange.js +13 -0
- package/dist/microsoftGraph/operations/workbookRange/insertWorkbookCells.js +16 -0
- package/dist/microsoftGraph/operations/workbookRange/updateWorkbookNamedRange.js +14 -0
- package/dist/microsoftGraph/operations/workbookRange/updateWorkbookRange.js +14 -0
- package/dist/microsoftGraph/operations/workbookSession/closeWorkbookSession.js +17 -0
- package/dist/microsoftGraph/operations/workbookSession/createWorkbookSession.js +15 -0
- package/dist/microsoftGraph/operations/workbookSession/refreshWorkbookSession.js +18 -0
- package/dist/microsoftGraph/operations/workbookWorksheet/createWorkbookWorksheet.js +16 -0
- package/dist/microsoftGraph/operations/workbookWorksheet/deleteWorkbookWorksheet.js +13 -0
- package/dist/microsoftGraph/operations/workbookWorksheet/listWorkbookWorksheets.js +13 -0
- package/dist/microsoftGraph/operations/workbookWorksheet/updateWorkbookWorksheet.js +14 -0
- package/dist/microsoftGraph/services/accessToken.js +12 -0
- package/dist/microsoftGraph/services/configuration.js +20 -0
- package/dist/microsoftGraph/services/sharepointUrl.js +23 -0
- package/dist/microsoftGraph/services/stringCaseConversion.js +3 -0
- package/dist/microsoftGraph/services/templatedPaths.js +19 -0
- package/dist/models/ClientId.d.ts +4 -0
- package/dist/models/ClientId.d.ts.map +1 -0
- package/dist/models/ClientId.js +1 -0
- package/dist/models/ClientSecret.d.ts +4 -0
- package/dist/models/ClientSecret.d.ts.map +1 -0
- package/dist/models/ClientSecret.js +1 -0
- package/dist/models/Context.d.ts +11 -0
- package/dist/models/Context.d.ts.map +1 -0
- package/dist/models/Context.js +1 -0
- package/dist/models/ContextId.d.ts +4 -0
- package/dist/models/ContextId.d.ts.map +1 -0
- package/dist/models/ContextId.js +1 -0
- package/dist/models/ContextRef.d.ts +5 -0
- package/dist/models/ContextRef.d.ts.map +1 -0
- package/dist/models/ContextRef.js +1 -0
- package/dist/models/GraphOperation.d.ts +3 -0
- package/dist/models/GraphOperation.d.ts.map +1 -1
- package/dist/models/GraphOperationDefinition.d.ts.map +1 -1
- package/dist/models/HttpProxy.d.ts +4 -0
- package/dist/models/HttpProxy.d.ts.map +1 -0
- package/dist/models/HttpProxy.js +1 -0
- package/dist/models/SiteRef.d.ts +2 -1
- package/dist/models/SiteRef.d.ts.map +1 -1
- package/dist/models/TenantId.d.ts +4 -0
- package/dist/models/TenantId.d.ts.map +1 -0
- package/dist/models/TenantId.js +1 -0
- package/dist/operations/drive/createFolder.d.ts.map +1 -1
- package/dist/operations/drive/createFolder.js +3 -2
- package/dist/operations/drive/listDrives.d.ts.map +1 -1
- package/dist/operations/drive/listDrives.js +4 -3
- package/dist/operations/driveItem/deleteDriveItem.d.ts.map +1 -1
- package/dist/operations/driveItem/deleteDriveItem.js +1 -0
- package/dist/operations/driveItem/getDriveItem.d.ts.map +1 -1
- package/dist/operations/driveItem/getDriveItem.js +1 -0
- package/dist/operations/driveItem/getDriveItemByPath.d.ts.map +1 -1
- package/dist/operations/driveItem/getDriveItemByPath.js +3 -2
- package/dist/operations/driveItem/getDriveItemContent.d.ts.map +1 -1
- package/dist/operations/driveItem/getDriveItemContent.js +5 -3
- package/dist/operations/driveItem/getDriveItemContent.test.js +6 -6
- package/dist/operations/driveItem/initiateCopyDriveItem.d.ts.map +1 -1
- package/dist/operations/driveItem/initiateCopyDriveItem.js +1 -0
- package/dist/operations/driveItem/listDriveItems.d.ts.map +1 -1
- package/dist/operations/driveItem/listDriveItems.js +3 -2
- package/dist/operations/site/getSite.d.ts.map +1 -1
- package/dist/operations/site/getSite.js +1 -0
- package/dist/operations/site/getSite.test.js +1 -5
- package/dist/operations/site/getSiteByName.d.ts +2 -1
- package/dist/operations/site/getSiteByName.d.ts.map +1 -1
- package/dist/operations/site/getSiteByName.js +6 -4
- package/dist/operations/site/getSiteByName.test.js +1 -6
- package/dist/operations/site/listSites.d.ts +2 -1
- package/dist/operations/site/listSites.d.ts.map +1 -1
- package/dist/operations/site/listSites.js +6 -4
- package/dist/operations/site/listSites.test.js +3 -1
- package/dist/operations/site/searchSites.d.ts +2 -1
- package/dist/operations/site/searchSites.d.ts.map +1 -1
- package/dist/operations/site/searchSites.js +6 -4
- package/dist/operations/site/searchSites.test.js +5 -8
- package/dist/operations/user/userSendMail.d.ts +2 -1
- package/dist/operations/user/userSendMail.d.ts.map +1 -1
- package/dist/operations/user/userSendMail.js +2 -1
- package/dist/operations/workbook/calculateWorkbook.d.ts.map +1 -1
- package/dist/operations/workbook/calculateWorkbook.js +1 -0
- package/dist/operations/workbook/createWorkbook.d.ts +3 -2
- package/dist/operations/workbook/createWorkbook.d.ts.map +1 -1
- package/dist/operations/workbook/createWorkbook.js +7 -5
- package/dist/operations/workbookRange/clearWorkbookRange.d.ts.map +1 -1
- package/dist/operations/workbookRange/clearWorkbookRange.js +1 -0
- package/dist/operations/workbookRange/clearWorkbookRange.test.js +6 -6
- package/dist/operations/workbookRange/deleteWorkbookRange.d.ts.map +1 -1
- package/dist/operations/workbookRange/deleteWorkbookRange.js +1 -0
- package/dist/operations/workbookRange/deleteWorkbookRange.test.js +6 -6
- package/dist/operations/workbookRange/getWorkbookNamedRange.d.ts.map +1 -1
- package/dist/operations/workbookRange/getWorkbookNamedRange.js +1 -0
- package/dist/operations/workbookRange/getWorkbookUsedRange.d.ts.map +1 -1
- package/dist/operations/workbookRange/getWorkbookUsedRange.js +3 -2
- package/dist/operations/workbookRange/getWorkbookUsedRange.test.js +6 -6
- package/dist/operations/workbookRange/getWorkbookVisibleRange.d.ts.map +1 -1
- package/dist/operations/workbookRange/getWorkbookVisibleRange.js +1 -0
- package/dist/operations/workbookRange/getWorkbookVisibleRange.test.js +12 -12
- package/dist/operations/workbookRange/insertWorkbookCells.d.ts.map +1 -1
- package/dist/operations/workbookRange/insertWorkbookCells.js +3 -2
- package/dist/operations/workbookRange/insertWorkbookCells.test.js +4 -4
- package/dist/operations/workbookRange/updateWorkbookNamedRange.d.ts.map +1 -1
- package/dist/operations/workbookRange/updateWorkbookNamedRange.js +1 -0
- package/dist/operations/workbookRange/updateWorkbookRange.d.ts.map +1 -1
- package/dist/operations/workbookRange/updateWorkbookRange.js +1 -0
- package/dist/operations/workbookRange/updateWorkbookRange.test.js +6 -6
- package/dist/operations/workbookSession/closeWorkbookSession.d.ts.map +1 -1
- package/dist/operations/workbookSession/closeWorkbookSession.js +1 -0
- package/dist/operations/workbookSession/createWorkbookSession.d.ts.map +1 -1
- package/dist/operations/workbookSession/createWorkbookSession.js +1 -0
- package/dist/operations/workbookSession/refreshWorkbookSession.d.ts.map +1 -1
- package/dist/operations/workbookSession/refreshWorkbookSession.js +1 -0
- package/dist/operations/workbookTable/createWorkbookTable.d.ts.map +1 -1
- package/dist/operations/workbookTable/createWorkbookTable.js +3 -2
- package/dist/operations/workbookTable/createWorkbookTable.test.js +2 -2
- package/dist/operations/workbookTable/getWorkbookTable.d.ts.map +1 -1
- package/dist/operations/workbookTable/getWorkbookTable.js +1 -0
- package/dist/operations/workbookTable/getWorkbookTable.test.js +2 -2
- package/dist/operations/workbookTable/getWorkbookTableBodyRange.d.ts.map +1 -1
- package/dist/operations/workbookTable/getWorkbookTableBodyRange.js +3 -2
- package/dist/operations/workbookTable/getWorkbookTableBodyRange.test.js +2 -2
- package/dist/operations/workbookTable/getWorkbookTableHeaderRange.d.ts.map +1 -1
- package/dist/operations/workbookTable/getWorkbookTableHeaderRange.js +3 -2
- package/dist/operations/workbookTable/getWorkbookTableHeaderRange.test.js +2 -2
- package/dist/operations/workbookTable/listWorkbookTableColumns.d.ts.map +1 -1
- package/dist/operations/workbookTable/listWorkbookTableColumns.js +1 -0
- package/dist/operations/workbookTable/listWorkbookTableColumns.test.js +2 -2
- package/dist/operations/workbookTable/listWorkbookTableRows.d.ts.map +1 -1
- package/dist/operations/workbookTable/listWorkbookTableRows.js +1 -0
- package/dist/operations/workbookTable/listWorkbookTableRows.test.js +2 -2
- package/dist/operations/workbookTable/listWorkbookTables.d.ts.map +1 -1
- package/dist/operations/workbookTable/listWorkbookTables.js +3 -2
- package/dist/operations/workbookTable/listWorkbookTables.test.js +2 -2
- package/dist/operations/workbookWorksheet/createWorkbookWorksheet.d.ts.map +1 -1
- package/dist/operations/workbookWorksheet/createWorkbookWorksheet.js +3 -2
- package/dist/operations/workbookWorksheet/deleteWorkbookWorksheet.d.ts.map +1 -1
- package/dist/operations/workbookWorksheet/deleteWorkbookWorksheet.js +1 -0
- package/dist/operations/workbookWorksheet/getWorkbookWorksheetRange.d.ts.map +1 -1
- package/dist/operations/workbookWorksheet/getWorkbookWorksheetRange.js +1 -0
- package/dist/operations/workbookWorksheet/getWorkbookWorksheetRange.test.js +4 -4
- package/dist/operations/workbookWorksheet/listWorkbookWorksheets.d.ts.map +1 -1
- package/dist/operations/workbookWorksheet/listWorkbookWorksheets.js +3 -2
- package/dist/operations/workbookWorksheet/updateWorkbookWorksheet.d.ts.map +1 -1
- package/dist/operations/workbookWorksheet/updateWorkbookWorksheet.js +1 -0
- package/dist/operations/workbookWorksheet/updateWorkbookWorksheet.test.js +7 -3
- package/dist/services/accessToken.d.ts +5 -2
- package/dist/services/accessToken.d.ts.map +1 -1
- package/dist/services/accessToken.js +9 -9
- package/dist/services/context.d.ts +13 -0
- package/dist/services/context.d.ts.map +1 -0
- package/dist/services/context.js +41 -0
- package/dist/services/drive.d.ts +2 -1
- package/dist/services/drive.d.ts.map +1 -1
- package/dist/services/drive.js +16 -6
- package/dist/services/driveItem.d.ts +1 -1
- package/dist/services/driveItem.d.ts.map +1 -1
- package/dist/services/driveItem.js +2 -1
- package/dist/services/environmentVariable.d.ts +3 -0
- package/dist/services/environmentVariable.d.ts.map +1 -0
- package/dist/services/environmentVariable.js +14 -0
- package/dist/services/httpAgent.d.ts +3 -2
- package/dist/services/httpAgent.d.ts.map +1 -1
- package/dist/services/httpAgent.js +3 -5
- package/dist/services/random.d.ts +2 -0
- package/dist/services/random.d.ts.map +1 -0
- package/dist/services/random.js +9 -0
- package/dist/services/site.d.ts +3 -1
- package/dist/services/site.d.ts.map +1 -1
- package/dist/services/site.js +9 -5
- package/dist/services/temporaryFiles.d.ts.map +1 -1
- package/dist/services/temporaryFiles.js +3 -9
- package/dist/services/workbookRange.d.ts +1 -1
- package/dist/services/workbookRange.d.ts.map +1 -1
- package/dist/services/workbookRange.js +2 -1
- package/dist/services/workbookRangeAddress.d.ts +1 -1
- package/dist/services/workbookRangeAddress.d.ts.map +1 -1
- package/dist/services/workbookRangeAddress.js +1 -1
- package/dist/services/workbookTable.d.ts +1 -1
- package/dist/services/workbookTable.d.ts.map +1 -1
- package/dist/services/workbookTable.js +2 -1
- package/dist/services/workbookWorksheet.d.ts +1 -1
- package/dist/services/workbookWorksheet.d.ts.map +1 -1
- package/dist/services/workbookWorksheet.js +2 -1
- package/dist/tasks/getRangeLastUsedCell.test.js +8 -8
- package/dist/tasks/getWorkbookTableVisibleBody.test.js +6 -6
- package/dist/tasks/setColumnHidden.test.js +5 -5
- package/dist/tasks/setRowHidden.test.js +5 -5
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +980 -432
- package/update-exports.ts +1 -1
- package/docs/envs.md +0 -11
package/.vscode/settings.json
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"editor.codeActionsOnSave": {
|
|
3
|
-
"source.organizeImports": "explicit",
|
|
4
|
-
"source.addMissingImports":"explicit",
|
|
5
|
-
"source.fixAll": "explicit",
|
|
6
|
-
},
|
|
7
2
|
"editor.formatOnSave": true,
|
|
8
3
|
"[typescript]": {
|
|
9
4
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
|
10
5
|
},
|
|
11
6
|
"cSpell.words": [
|
|
12
7
|
"Entra",
|
|
8
|
+
"FSAI",
|
|
13
9
|
"msgraph"
|
|
14
10
|
],
|
|
15
11
|
}
|
package/LICENCE.md
CHANGED
|
@@ -1,360 +1,131 @@
|
|
|
1
|
-
|
|
2
|
-
Public License
|
|
3
|
-
|
|
4
|
-
By exercising the Licensed Rights (defined below), You accept and agree
|
|
5
|
-
to be bound by the terms and conditions of this Creative Commons
|
|
6
|
-
Attribution-NonCommercial-ShareAlike 4.0 International Public License
|
|
7
|
-
("Public License"). To the extent this Public License may be
|
|
8
|
-
interpreted as a contract, You are granted the Licensed Rights in
|
|
9
|
-
consideration of Your acceptance of these terms and conditions, and the
|
|
10
|
-
Licensor grants You such rights in consideration of benefits the
|
|
11
|
-
Licensor receives from making the Licensed Material available under
|
|
12
|
-
these terms and conditions.
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
Section 1 -- Definitions.
|
|
16
|
-
|
|
17
|
-
a. Adapted Material means material subject to Copyright and Similar
|
|
18
|
-
Rights that is derived from or based upon the Licensed Material
|
|
19
|
-
and in which the Licensed Material is translated, altered,
|
|
20
|
-
arranged, transformed, or otherwise modified in a manner requiring
|
|
21
|
-
permission under the Copyright and Similar Rights held by the
|
|
22
|
-
Licensor. For purposes of this Public License, where the Licensed
|
|
23
|
-
Material is a musical work, performance, or sound recording,
|
|
24
|
-
Adapted Material is always produced where the Licensed Material is
|
|
25
|
-
synched in timed relation with a moving image.
|
|
26
|
-
|
|
27
|
-
b. Adapter's License means the license You apply to Your Copyright
|
|
28
|
-
and Similar Rights in Your contributions to Adapted Material in
|
|
29
|
-
accordance with the terms and conditions of this Public License.
|
|
30
|
-
|
|
31
|
-
c. BY-NC-SA Compatible License means a license listed at
|
|
32
|
-
creativecommons.org/compatiblelicenses, approved by Creative
|
|
33
|
-
Commons as essentially the equivalent of this Public License.
|
|
34
|
-
|
|
35
|
-
d. Copyright and Similar Rights means copyright and/or similar rights
|
|
36
|
-
closely related to copyright including, without limitation,
|
|
37
|
-
performance, broadcast, sound recording, and Sui Generis Database
|
|
38
|
-
Rights, without regard to how the rights are labeled or
|
|
39
|
-
categorized. For purposes of this Public License, the rights
|
|
40
|
-
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
|
41
|
-
Rights.
|
|
42
|
-
|
|
43
|
-
e. Effective Technological Measures means those measures that, in the
|
|
44
|
-
absence of proper authority, may not be circumvented under laws
|
|
45
|
-
fulfilling obligations under Article 11 of the WIPO Copyright
|
|
46
|
-
Treaty adopted on December 20, 1996, and/or similar international
|
|
47
|
-
agreements.
|
|
48
|
-
|
|
49
|
-
f. Exceptions and Limitations means fair use, fair dealing, and/or
|
|
50
|
-
any other exception or limitation to Copyright and Similar Rights
|
|
51
|
-
that applies to Your use of the Licensed Material.
|
|
52
|
-
|
|
53
|
-
g. License Elements means the license attributes listed in the name
|
|
54
|
-
of a Creative Commons Public License. The License Elements of this
|
|
55
|
-
Public License are Attribution, NonCommercial, and ShareAlike.
|
|
56
|
-
|
|
57
|
-
h. Licensed Material means the artistic or literary work, database,
|
|
58
|
-
or other material to which the Licensor applied this Public
|
|
59
|
-
License.
|
|
60
|
-
|
|
61
|
-
i. Licensed Rights means the rights granted to You subject to the
|
|
62
|
-
terms and conditions of this Public License, which are limited to
|
|
63
|
-
all Copyright and Similar Rights that apply to Your use of the
|
|
64
|
-
Licensed Material and that the Licensor has authority to license.
|
|
65
|
-
|
|
66
|
-
j. Licensor means the individual(s) or entity(ies) granting rights
|
|
67
|
-
under this Public License.
|
|
68
|
-
|
|
69
|
-
k. NonCommercial means not primarily intended for or directed towards
|
|
70
|
-
commercial advantage or monetary compensation. For purposes of
|
|
71
|
-
this Public License, the exchange of the Licensed Material for
|
|
72
|
-
other material subject to Copyright and Similar Rights by digital
|
|
73
|
-
file-sharing or similar means is NonCommercial provided there is
|
|
74
|
-
no payment of monetary compensation in connection with the
|
|
75
|
-
exchange.
|
|
76
|
-
|
|
77
|
-
l. Share means to provide material to the public by any means or
|
|
78
|
-
process that requires permission under the Licensed Rights, such
|
|
79
|
-
as reproduction, public display, public performance, distribution,
|
|
80
|
-
dissemination, communication, or importation, and to make material
|
|
81
|
-
available to the public including in ways that members of the
|
|
82
|
-
public may access the material from a place and at a time
|
|
83
|
-
individually chosen by them.
|
|
84
|
-
|
|
85
|
-
m. Sui Generis Database Rights means rights other than copyright
|
|
86
|
-
resulting from Directive 96/9/EC of the European Parliament and of
|
|
87
|
-
the Council of 11 March 1996 on the legal protection of databases,
|
|
88
|
-
as amended and/or succeeded, as well as other essentially
|
|
89
|
-
equivalent rights anywhere in the world.
|
|
90
|
-
|
|
91
|
-
n. You means the individual or entity exercising the Licensed Rights
|
|
92
|
-
under this Public License. Your has a corresponding meaning.
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
Section 2 -- Scope.
|
|
96
|
-
|
|
97
|
-
a. License grant.
|
|
98
|
-
|
|
99
|
-
1. Subject to the terms and conditions of this Public License,
|
|
100
|
-
the Licensor hereby grants You a worldwide, royalty-free,
|
|
101
|
-
non-sublicensable, non-exclusive, irrevocable license to
|
|
102
|
-
exercise the Licensed Rights in the Licensed Material to:
|
|
103
|
-
|
|
104
|
-
a. reproduce and Share the Licensed Material, in whole or
|
|
105
|
-
in part, for NonCommercial purposes only; and
|
|
106
|
-
|
|
107
|
-
b. produce, reproduce, and Share Adapted Material for
|
|
108
|
-
NonCommercial purposes only.
|
|
109
|
-
|
|
110
|
-
2. Exceptions and Limitations. For the avoidance of doubt, where
|
|
111
|
-
Exceptions and Limitations apply to Your use, this Public
|
|
112
|
-
License does not apply, and You do not need to comply with
|
|
113
|
-
its terms and conditions.
|
|
114
|
-
|
|
115
|
-
3. Term. The term of this Public License is specified in Section
|
|
116
|
-
6(a).
|
|
117
|
-
|
|
118
|
-
4. Media and formats; technical modifications allowed. The
|
|
119
|
-
Licensor authorizes You to exercise the Licensed Rights in
|
|
120
|
-
all media and formats whether now known or hereafter created,
|
|
121
|
-
and to make technical modifications necessary to do so. The
|
|
122
|
-
Licensor waives and/or agrees not to assert any right or
|
|
123
|
-
authority to forbid You from making technical modifications
|
|
124
|
-
necessary to exercise the Licensed Rights, including
|
|
125
|
-
technical modifications necessary to circumvent Effective
|
|
126
|
-
Technological Measures. For purposes of this Public License,
|
|
127
|
-
simply making modifications authorized by this Section 2(a)
|
|
128
|
-
(4) never produces Adapted Material.
|
|
129
|
-
|
|
130
|
-
5. Downstream recipients.
|
|
131
|
-
|
|
132
|
-
a. Offer from the Licensor -- Licensed Material. Every
|
|
133
|
-
recipient of the Licensed Material automatically
|
|
134
|
-
receives an offer from the Licensor to exercise the
|
|
135
|
-
Licensed Rights under the terms and conditions of this
|
|
136
|
-
Public License.
|
|
137
|
-
|
|
138
|
-
b. Additional offer from the Licensor -- Adapted Material.
|
|
139
|
-
Every recipient of Adapted Material from You
|
|
140
|
-
automatically receives an offer from the Licensor to
|
|
141
|
-
exercise the Licensed Rights in the Adapted Material
|
|
142
|
-
under the conditions of the Adapter's License You apply.
|
|
143
|
-
|
|
144
|
-
c. No downstream restrictions. You may not offer or impose
|
|
145
|
-
any additional or different terms or conditions on, or
|
|
146
|
-
apply any Effective Technological Measures to, the
|
|
147
|
-
Licensed Material if doing so restricts exercise of the
|
|
148
|
-
Licensed Rights by any recipient of the Licensed
|
|
149
|
-
Material.
|
|
150
|
-
|
|
151
|
-
6. No endorsement. Nothing in this Public License constitutes or
|
|
152
|
-
may be construed as permission to assert or imply that You
|
|
153
|
-
are, or that Your use of the Licensed Material is, connected
|
|
154
|
-
with, or sponsored, endorsed, or granted official status by,
|
|
155
|
-
the Licensor or others designated to receive attribution as
|
|
156
|
-
provided in Section 3(a)(1)(A)(i).
|
|
157
|
-
|
|
158
|
-
b. Other rights.
|
|
159
|
-
|
|
160
|
-
1. Moral rights, such as the right of integrity, are not
|
|
161
|
-
licensed under this Public License, nor are publicity,
|
|
162
|
-
privacy, and/or other similar personality rights; however, to
|
|
163
|
-
the extent possible, the Licensor waives and/or agrees not to
|
|
164
|
-
assert any such rights held by the Licensor to the limited
|
|
165
|
-
extent necessary to allow You to exercise the Licensed
|
|
166
|
-
Rights, but not otherwise.
|
|
167
|
-
|
|
168
|
-
2. Patent and trademark rights are not licensed under this
|
|
169
|
-
Public License.
|
|
170
|
-
|
|
171
|
-
3. To the extent possible, the Licensor waives any right to
|
|
172
|
-
collect royalties from You for the exercise of the Licensed
|
|
173
|
-
Rights, whether directly or through a collecting society
|
|
174
|
-
under any voluntary or waivable statutory or compulsory
|
|
175
|
-
licensing scheme. In all other cases the Licensor expressly
|
|
176
|
-
reserves any right to collect such royalties, including when
|
|
177
|
-
the Licensed Material is used other than for NonCommercial
|
|
178
|
-
purposes.
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
Section 3 -- License Conditions.
|
|
182
|
-
|
|
183
|
-
Your exercise of the Licensed Rights is expressly made subject to the
|
|
184
|
-
following conditions.
|
|
185
|
-
|
|
186
|
-
a. Attribution.
|
|
187
|
-
|
|
188
|
-
1. If You Share the Licensed Material (including in modified
|
|
189
|
-
form), You must:
|
|
190
|
-
|
|
191
|
-
a. retain the following if it is supplied by the Licensor
|
|
192
|
-
with the Licensed Material:
|
|
193
|
-
|
|
194
|
-
i. identification of the creator(s) of the Licensed
|
|
195
|
-
Material and any others designated to receive
|
|
196
|
-
attribution, in any reasonable manner requested by
|
|
197
|
-
the Licensor (including by pseudonym if
|
|
198
|
-
designated);
|
|
199
|
-
|
|
200
|
-
ii. a copyright notice;
|
|
201
|
-
|
|
202
|
-
iii. a notice that refers to this Public License;
|
|
203
|
-
|
|
204
|
-
iv. a notice that refers to the disclaimer of
|
|
205
|
-
warranties;
|
|
206
|
-
|
|
207
|
-
v. a URI or hyperlink to the Licensed Material to the
|
|
208
|
-
extent reasonably practicable;
|
|
209
|
-
|
|
210
|
-
b. indicate if You modified the Licensed Material and
|
|
211
|
-
retain an indication of any previous modifications; and
|
|
212
|
-
|
|
213
|
-
c. indicate the Licensed Material is licensed under this
|
|
214
|
-
Public License, and include the text of, or the URI or
|
|
215
|
-
hyperlink to, this Public License.
|
|
216
|
-
|
|
217
|
-
2. You may satisfy the conditions in Section 3(a)(1) in any
|
|
218
|
-
reasonable manner based on the medium, means, and context in
|
|
219
|
-
which You Share the Licensed Material. For example, it may be
|
|
220
|
-
reasonable to satisfy the conditions by providing a URI or
|
|
221
|
-
hyperlink to a resource that includes the required
|
|
222
|
-
information.
|
|
223
|
-
3. If requested by the Licensor, You must remove any of the
|
|
224
|
-
information required by Section 3(a)(1)(A) to the extent
|
|
225
|
-
reasonably practicable.
|
|
226
|
-
|
|
227
|
-
b. ShareAlike.
|
|
1
|
+
# PolyForm Noncommercial License 1.0.0
|
|
228
2
|
|
|
229
|
-
|
|
230
|
-
Adapted Material You produce, the following conditions also apply.
|
|
3
|
+
<https://polyformproject.org/licenses/noncommercial/1.0.0>
|
|
231
4
|
|
|
232
|
-
|
|
233
|
-
license with the same License Elements, this version or
|
|
234
|
-
later, or a BY-NC-SA Compatible License.
|
|
5
|
+
## Acceptance
|
|
235
6
|
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
context in which You Share Adapted Material.
|
|
7
|
+
In order to get any license under these terms, you must agree
|
|
8
|
+
to them as both strict obligations and conditions to all
|
|
9
|
+
your licenses.
|
|
240
10
|
|
|
241
|
-
|
|
242
|
-
or conditions on, or apply any Effective Technological
|
|
243
|
-
Measures to, Adapted Material that restrict exercise of the
|
|
244
|
-
rights granted under the Adapter's License You apply.
|
|
11
|
+
## Copyright License
|
|
245
12
|
|
|
13
|
+
The licensor grants you a copyright license for the
|
|
14
|
+
software to do everything you might do with the software
|
|
15
|
+
that would otherwise infringe the licensor's copyright
|
|
16
|
+
in it for any permitted purpose. However, you may
|
|
17
|
+
only distribute the software according to [Distribution
|
|
18
|
+
License](#distribution-license) and make changes or new works
|
|
19
|
+
based on the software according to [Changes and New Works
|
|
20
|
+
License](#changes-and-new-works-license).
|
|
246
21
|
|
|
247
|
-
|
|
22
|
+
## Distribution License
|
|
248
23
|
|
|
249
|
-
|
|
250
|
-
|
|
24
|
+
The licensor grants you an additional copyright license
|
|
25
|
+
to distribute copies of the software. Your license
|
|
26
|
+
to distribute covers distributing the software with
|
|
27
|
+
changes and new works permitted by [Changes and New Works
|
|
28
|
+
License](#changes-and-new-works-license).
|
|
251
29
|
|
|
252
|
-
|
|
253
|
-
to extract, reuse, reproduce, and Share all or a substantial
|
|
254
|
-
portion of the contents of the database for NonCommercial purposes
|
|
255
|
-
only;
|
|
30
|
+
## Notices
|
|
256
31
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
32
|
+
You must ensure that anyone who gets a copy of any part of
|
|
33
|
+
the software from you also gets a copy of these terms or the
|
|
34
|
+
URL for them above, as well as copies of any plain-text lines
|
|
35
|
+
beginning with `Required Notice:` that the licensor provided
|
|
36
|
+
with the software. For example:
|
|
262
37
|
|
|
263
|
-
|
|
264
|
-
all or a substantial portion of the contents of the database.
|
|
38
|
+
> Required Notice: Copyright Yoyodyne, Inc. (http://example.com)
|
|
265
39
|
|
|
266
|
-
|
|
267
|
-
replace Your obligations under this Public License where the Licensed
|
|
268
|
-
Rights include other Copyright and Similar Rights.
|
|
40
|
+
## Changes and New Works License
|
|
269
41
|
|
|
42
|
+
The licensor grants you an additional copyright license to
|
|
43
|
+
make changes and new works based on the software for any
|
|
44
|
+
permitted purpose.
|
|
270
45
|
|
|
271
|
-
|
|
46
|
+
## Patent License
|
|
272
47
|
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
|
277
|
-
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
|
278
|
-
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
279
|
-
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
|
280
|
-
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
|
281
|
-
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
|
282
|
-
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
|
48
|
+
The licensor grants you a patent license for the software that
|
|
49
|
+
covers patent claims the licensor can license, or becomes able
|
|
50
|
+
to license, that you would infringe by using the software.
|
|
283
51
|
|
|
284
|
-
|
|
285
|
-
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
|
286
|
-
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
|
287
|
-
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
|
288
|
-
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
|
289
|
-
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
|
290
|
-
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
|
291
|
-
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
|
292
|
-
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
|
52
|
+
## Noncommercial Purposes
|
|
293
53
|
|
|
294
|
-
|
|
295
|
-
above shall be interpreted in a manner that, to the extent
|
|
296
|
-
possible, most closely approximates an absolute disclaimer and
|
|
297
|
-
waiver of all liability.
|
|
54
|
+
Any noncommercial purpose is a permitted purpose.
|
|
298
55
|
|
|
56
|
+
## Personal Uses
|
|
299
57
|
|
|
300
|
-
|
|
58
|
+
Personal use for research, experiment, and testing for
|
|
59
|
+
the benefit of public knowledge, personal study, private
|
|
60
|
+
entertainment, hobby projects, amateur pursuits, or religious
|
|
61
|
+
observance, without any anticipated commercial application,
|
|
62
|
+
is use for a permitted purpose.
|
|
301
63
|
|
|
302
|
-
|
|
303
|
-
Similar Rights licensed here. However, if You fail to comply with
|
|
304
|
-
this Public License, then Your rights under this Public License
|
|
305
|
-
terminate automatically.
|
|
64
|
+
## Noncommercial Organizations
|
|
306
65
|
|
|
307
|
-
|
|
308
|
-
|
|
66
|
+
Use by any charitable organization, educational institution,
|
|
67
|
+
public research organization, public safety or health
|
|
68
|
+
organization, environmental protection organization,
|
|
69
|
+
or government institution is use for a permitted purpose
|
|
70
|
+
regardless of the source of funding or obligations resulting
|
|
71
|
+
from the funding.
|
|
309
72
|
|
|
310
|
-
|
|
311
|
-
it is cured within 30 days of Your discovery of the
|
|
312
|
-
violation; or
|
|
73
|
+
## Fair Use
|
|
313
74
|
|
|
314
|
-
|
|
75
|
+
You may have "fair use" rights for the software under the
|
|
76
|
+
law. These terms do not limit them.
|
|
315
77
|
|
|
316
|
-
|
|
317
|
-
right the Licensor may have to seek remedies for Your violations
|
|
318
|
-
of this Public License.
|
|
78
|
+
## No Other Rights
|
|
319
79
|
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
80
|
+
These terms do not allow you to sublicense or transfer any of
|
|
81
|
+
your licenses to anyone else, or prevent the licensor from
|
|
82
|
+
granting licenses to anyone else. These terms do not imply
|
|
83
|
+
any other licenses.
|
|
324
84
|
|
|
325
|
-
|
|
326
|
-
License.
|
|
85
|
+
## Patent Defense
|
|
327
86
|
|
|
87
|
+
If you make any written claim that the software infringes or
|
|
88
|
+
contributes to infringement of any patent, your patent license
|
|
89
|
+
for the software granted under these terms ends immediately. If
|
|
90
|
+
your company makes such a claim, your patent license ends
|
|
91
|
+
immediately for work on behalf of your company.
|
|
328
92
|
|
|
329
|
-
|
|
93
|
+
## Violations
|
|
330
94
|
|
|
331
|
-
|
|
332
|
-
|
|
95
|
+
The first time you are notified in writing that you have
|
|
96
|
+
violated any of these terms, or done anything with the software
|
|
97
|
+
not covered by your licenses, your licenses can nonetheless
|
|
98
|
+
continue if you come into full compliance with these terms,
|
|
99
|
+
and take practical steps to correct past violations, within
|
|
100
|
+
32 days of receiving notice. Otherwise, all your licenses
|
|
101
|
+
end immediately.
|
|
333
102
|
|
|
334
|
-
|
|
335
|
-
Licensed Material not stated herein are separate from and
|
|
336
|
-
independent of the terms and conditions of this Public License.
|
|
103
|
+
## No Liability
|
|
337
104
|
|
|
105
|
+
***As far as the law allows, the software comes as is, without
|
|
106
|
+
any warranty or condition, and the licensor will not be liable
|
|
107
|
+
to you for any damages arising out of these terms or the use
|
|
108
|
+
or nature of the software, under any kind of legal claim.***
|
|
338
109
|
|
|
339
|
-
|
|
110
|
+
## Definitions
|
|
340
111
|
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
be made without permission under this Public License.
|
|
112
|
+
The **licensor** is the individual or entity offering these
|
|
113
|
+
terms, and the **software** is the software the licensor makes
|
|
114
|
+
available under these terms.
|
|
345
115
|
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
minimum extent necessary to make it enforceable. If the provision
|
|
349
|
-
cannot be reformed, it shall be severed from this Public License
|
|
350
|
-
without affecting the enforceability of the remaining terms and
|
|
351
|
-
conditions.
|
|
116
|
+
**You** refers to the individual or entity agreeing to these
|
|
117
|
+
terms.
|
|
352
118
|
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
119
|
+
**Your company** is any legal entity, sole proprietorship,
|
|
120
|
+
or other kind of organization that you work for, plus all
|
|
121
|
+
organizations that have control over, are under the control of,
|
|
122
|
+
or are under common control with that organization. **Control**
|
|
123
|
+
means ownership of substantially all the assets of an entity,
|
|
124
|
+
or the power to direct its management and policies by vote,
|
|
125
|
+
contract, or otherwise. Control can be direct or indirect.
|
|
356
126
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
127
|
+
**Your licenses** are all the licenses granted to you for the
|
|
128
|
+
software under these terms.
|
|
129
|
+
|
|
130
|
+
**Use** means anything you do with the software requiring one
|
|
131
|
+
of your licenses.
|
package/README.md
CHANGED
|
@@ -4,44 +4,66 @@ This is an extensible library that allows access to Microsoft's GraphAPI, includ
|
|
|
4
4
|
|
|
5
5
|
Note that this is a THIRD PARTY library and not associated with Microsoft.
|
|
6
6
|
|
|
7
|
+
## Breaking changes
|
|
8
|
+
### v2.0.0
|
|
9
|
+
* Contextual authentication. Authentication details are no longer automatically loaded from envs. You need to call `const contextRef = register(tenantId, clientId, clientSecret, httpProxy);`
|
|
10
|
+
* References are created with new funcs. Like `createSiteRef`.
|
|
11
|
+
|
|
7
12
|
## Usage
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
13
|
+
Install the NPM package `npm i microsoft-graph`, then:
|
|
14
|
+
|
|
15
|
+
### Prepare configuration
|
|
16
|
+
Something like this, but whatever works in your context.
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
const tenantId = getEnvironmentVariable("AZURE_TENANT_ID") as TenantId;
|
|
20
|
+
const clientId = getEnvironmentVariable("AZURE_CLIENT_ID") as ClientId;
|
|
21
|
+
const clientSecret = getEnvironmentVariable("AZURE_CLIENT_SECRET") as ClientSecret;
|
|
22
|
+
const siteId = getEnvironmentVariable("SHAREPOINT_DEFAULT_SITE_ID") as SiteId;
|
|
23
|
+
const driveId = getEnvironmentVariable("SHAREPOINT_DEFAULT_DRIVE_ID") as DriveId;
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Get reference to drive
|
|
27
|
+
```typescript
|
|
28
|
+
const contextRef = register(tenantId, clientId, clientSecret);
|
|
29
|
+
const siteRef = createSiteRef(contextRef, siteId);
|
|
30
|
+
const driveRef = createDriveRef(siteRef, driveId);
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Create folder
|
|
34
|
+
```typescript
|
|
35
|
+
const folder = await createFolder(driveRef, "folder-name");
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Create workbook
|
|
39
|
+
```typescript
|
|
40
|
+
const workbook = await createWorkbookAndStartSession(folder, "workbook-name");
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Update range
|
|
44
|
+
```typescript
|
|
45
|
+
const worksheet = await getWorkbookWorksheetByName(workbook, "Sheet1");
|
|
46
|
+
const rangeRef = createWorkbookRangeRef(worksheet, "A1:B2");
|
|
47
|
+
await updateWorkbookRange(rangeRef, {
|
|
48
|
+
values: [
|
|
49
|
+
[1, 2],
|
|
50
|
+
[3, 4]
|
|
51
|
+
]
|
|
52
|
+
});
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### List files
|
|
56
|
+
```typescript
|
|
57
|
+
for (const item of await listDriveItems(folder)) {
|
|
58
|
+
console.debug(` - ${item.name}`);
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### Cleanup
|
|
63
|
+
```typescript
|
|
64
|
+
await closeWorkbookSession(workbook);
|
|
65
|
+
await deleteDriveItemWithRetry(folder); // May take a moment to unlock the file
|
|
66
|
+
```
|
|
45
67
|
|
|
46
68
|
From here, have a look at:
|
|
47
69
|
* [`/docs`](https://github.com/ProspectSafe/microsoft-graph/tree/main/docs) for more general documentation and advice.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { generatePath } from "../src/microsoftGraph/services/templatedPaths.js";
|
|
2
|
+
/** Retrieve the metadata for an item in a drive. @see https://learn.microsoft.com/en-us/graph/api/driveitem-get */
|
|
3
|
+
export default function getItem(itemRef, opts) {
|
|
4
|
+
return {
|
|
5
|
+
method: "GET",
|
|
6
|
+
path: generatePath(`/sites/{site-id}/drives/{drive-id}/items/{item-id}`, itemRef),
|
|
7
|
+
headers: {},
|
|
8
|
+
body: null,
|
|
9
|
+
dependsOn: opts?.dependsOn,
|
|
10
|
+
};
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ContextNotRegisteredError.d.ts","sourceRoot":"","sources":["../../src/errors/ContextNotRegisteredError.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,OAAO,yBAA0B,SAAQ,KAAK;gBACxC,OAAO,EAAE,MAAM;CAIlC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InconsistentContextError.d.ts","sourceRoot":"","sources":["../../src/errors/InconsistentContextError.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,OAAO,wBAAyB,SAAQ,KAAK;gBACvC,OAAO,EAAE,MAAM;CAIlC"}
|
package/dist/graphApi.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphApi.d.ts","sourceRoot":"","sources":["../src/graphApi.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"graphApi.d.ts","sourceRoot":"","sources":["../src/graphApi.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,cAAc,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAC3F,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAM/C,eAAO,MAAM,mBAAmB,EAA6C,KAAK,CAAC;AACnF,eAAO,MAAM,QAAQ,qCAAqC,CAAC;AAC3D,eAAO,MAAM,aAAa,4CAAuB,CAAC;AAiBlD,KAAK,gBAAgB,CAAC,CAAC,IAAI;KACtB,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,SAAS,cAAc,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK;CACnE,CAAC;AAGF,wBAAgB,SAAS,CAAC,CAAC,EAAE,UAAU,EAAE,wBAAwB,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAMvF;AA2BD,6LAA6L;AAC7L,wBAAsB,QAAQ,CAAC,CAAC,SAAS,cAAc,CAAC,OAAO,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAC,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAG3G;AAED,2DAA2D;AAC3D,wBAAsB,UAAU,CAAC,CAAC,SAAS,cAAc,CAAC,OAAO,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAC,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAQ7G"}
|