@mindline/sync 1.0.50 → 1.0.51

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/.vs/slnx.sqlite CHANGED
Binary file
package/index.d.ts CHANGED
@@ -19,20 +19,20 @@ declare module "@mindline/sync" {
19
19
  // SignalR endpoint
20
20
  static signalREndpoint(): string;
21
21
  // graph API endpoints
22
- static graphGroupsEndpoint: string = "https://graph.microsoft.com/v1.0/groups";
23
- static graphMailEndpoint: string = "https://graph.microsoft.com/v1.0/me/messages";
24
- static graphMeEndpoint: string = "https://graph.microsoft.com/v1.0/me";
25
- static graphUsersEndpoint: string = "https://graph.microsoft.com/v1.0/users";
22
+ static graphGroupsEndpoint: string;
23
+ static graphMailEndpoint: string;
24
+ static graphMeEndpoint: string;
25
+ static graphUsersEndpoint: string;
26
26
  // sovereign cloud tenant info endpoints
27
- static graphTenantByDomainPredicate: string = "beta/tenantRelationships/findTenantInformationByDomainName";
28
- static graphTenantByIdPredicate: string = "beta/tenantRelationships/findTenantInformationByTenantId";
27
+ static graphTenantByDomainPredicate: string;
28
+ static graphTenantByIdPredicate: string;
29
29
  // authority values are based on the well-known OIDC auth endpoints
30
- static authorityWW: string = "https://login.microsoftonline.com/";
31
- static authorityWWRegex: RegExp = /^(https:\/\/login\.microsoftonline\.(?:us|com)\/)([\dA-Fa-f]{8}-[\dA-Fa-f]{4}-[\dA-Fa-f]{4}-[\dA-Fa-f]{4}-[\dA-Fa-f]{12})\/oauth2\/authorize$/;
32
- static authorityUS: string = "https://login.microsoftonline.us/";
33
- static authorityUSRegex: RegExp = /^(https:\/\/login\.microsoftonline\.(?:us|com)\/)([\dA-Fa-f]{8}-[\dA-Fa-f]{4}-[\dA-Fa-f]{4}-[\dA-Fa-f]{4}-[\dA-Fa-f]{12})\/oauth2\/authorize$/;
34
- static authorityCN: string = "https://login.partner.microsoftonline.cn/";
35
- static authorityCNRegex: RegExp = /^(https:\/\/login\.partner\.microsoftonline\.cn\/)([\dA-Fa-f]{8}-[\dA-Fa-f]{4}-[\dA-Fa-f]{4}-[\dA-Fa-f]{4}-[\dA-Fa-f]{12})\/oauth2\/authorize$/;
30
+ static authorityWW: string;
31
+ static authorityWWRegex: RegExp;
32
+ static authorityUS: string;
33
+ static authorityUSRegex: RegExp;
34
+ static authorityCN: string;
35
+ static authorityCNRegex: RegExp;
36
36
  };
37
37
  export class Group {
38
38
  id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mindline/sync",
3
3
  "type": "module",
4
- "version": "1.0.50",
4
+ "version": "1.0.51",
5
5
  "types": "index.d.ts",
6
6
  "exports": "./index.ts",
7
7
  "description": "sync is a node.js package encapsulating javscript classes required for configuring Mindline sync service.",