@messenger-box/cron-job-server-module 5.0.3-alpha.4 → 5.0.11-alpha.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/CHANGELOG.md +139 -7
- package/lib/index.js +10 -3
- package/lib/index.js.map +1 -1
- package/lib/interfaces/generated-models.d.ts +94 -56
- package/package.json +4 -4
- package/src/interfaces/generated-models.ts +102 -56
|
@@ -153,13 +153,13 @@ export declare enum IApplicationRoles {
|
|
|
153
153
|
}
|
|
154
154
|
export type IApplicationSettings = IISettingsSubject & {
|
|
155
155
|
__typename?: 'ApplicationSettings';
|
|
156
|
-
/**
|
|
156
|
+
/** The ID. */
|
|
157
157
|
id?: Maybe<Scalars['ID']>;
|
|
158
|
-
/**
|
|
158
|
+
/** The latest settings. */
|
|
159
159
|
latestSettings?: Maybe<ISettings>;
|
|
160
|
-
/**
|
|
160
|
+
/** The URL to the settings. */
|
|
161
161
|
settingsURL: Scalars['URI'];
|
|
162
|
-
/**
|
|
162
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
163
163
|
viewerCanAdminister: Scalars['Boolean'];
|
|
164
164
|
/**
|
|
165
165
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -210,6 +210,10 @@ export type IAuthUserInput = {
|
|
|
210
210
|
picture?: Maybe<Scalars['String']>;
|
|
211
211
|
phoneNo?: Maybe<Scalars['Int']>;
|
|
212
212
|
};
|
|
213
|
+
export declare enum ICacheControlScope {
|
|
214
|
+
Public = "PUBLIC",
|
|
215
|
+
Private = "PRIVATE"
|
|
216
|
+
}
|
|
213
217
|
export type ICardImage = {
|
|
214
218
|
__typename?: 'CardImage';
|
|
215
219
|
front?: Maybe<IFileInfo>;
|
|
@@ -277,11 +281,11 @@ export declare enum IConfigFragmentName {
|
|
|
277
281
|
ApplicationPolicies = "applicationPolicies",
|
|
278
282
|
Roles = "roles",
|
|
279
283
|
ContributionRoles = "contributionRoles",
|
|
280
|
-
/**
|
|
284
|
+
/** Team Members Document with role value */
|
|
281
285
|
TeamMembers = "teamMembers",
|
|
282
|
-
/**
|
|
286
|
+
/** Organization Members Document with role value */
|
|
283
287
|
OrgMembers = "orgMembers",
|
|
284
|
-
/**
|
|
288
|
+
/** Billing */
|
|
285
289
|
BillingPlanPolicies = "billingPlanPolicies"
|
|
286
290
|
}
|
|
287
291
|
export type IConfiguration = IDefaultConfiguration | IPolicyConfiguration | IApplicationConfiguration | IUserConfiguration | IMachineConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
|
|
@@ -425,12 +429,12 @@ export type IContributionRoles = {
|
|
|
425
429
|
};
|
|
426
430
|
export type IContributionSettings = {
|
|
427
431
|
__typename?: 'ContributionSettings';
|
|
428
|
-
/**
|
|
432
|
+
/** name of the settings */
|
|
429
433
|
name?: Maybe<Scalars['String']>;
|
|
430
434
|
range?: Maybe<IRange>;
|
|
431
435
|
key?: Maybe<Scalars['String']>;
|
|
432
436
|
keyRange?: Maybe<IRange>;
|
|
433
|
-
/**
|
|
437
|
+
/** @deprecated */
|
|
434
438
|
default?: Maybe<Scalars['String']>;
|
|
435
439
|
value?: Maybe<Scalars['AnyObject']>;
|
|
436
440
|
valueRange?: Maybe<IRange>;
|
|
@@ -458,32 +462,32 @@ export type IContributionSettings = {
|
|
|
458
462
|
restricted?: Maybe<Scalars['Boolean']>;
|
|
459
463
|
extensionInfo?: Maybe<IConfigurationExtensionInfo>;
|
|
460
464
|
properties?: Maybe<IContributionSettingsProperties>;
|
|
461
|
-
/**
|
|
465
|
+
/** dependency to parent setting key */
|
|
462
466
|
settingDependencies?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
463
467
|
allKeysAreBoolean?: Maybe<Scalars['Boolean']>;
|
|
464
|
-
/**
|
|
468
|
+
/** Edit Presentation for controlling whether a single-line inputbox or multi-line textarea is rendered for the string setting in Settings editor */
|
|
465
469
|
editPresentation?: Maybe<IEditPresentationTypes>;
|
|
466
470
|
defaultValueSource?: Maybe<Scalars['AnyObject']>;
|
|
467
471
|
isLanguageTagSetting?: Maybe<Scalars['Boolean']>;
|
|
468
472
|
categoryOrder?: Maybe<Scalars['Int']>;
|
|
469
473
|
categoryLabel?: Maybe<Scalars['String']>;
|
|
470
|
-
/**
|
|
474
|
+
/** minimum value for restricting numeric values */
|
|
471
475
|
minimum?: Maybe<Scalars['Int']>;
|
|
472
|
-
/**
|
|
476
|
+
/** maximum value for restricting numeric values */
|
|
473
477
|
maximum?: Maybe<Scalars['Int']>;
|
|
474
|
-
/**
|
|
478
|
+
/** max. length for restricting string length */
|
|
475
479
|
maxLength?: Maybe<Scalars['Int']>;
|
|
476
|
-
/**
|
|
480
|
+
/** min. length for restricting string length */
|
|
477
481
|
minLength?: Maybe<Scalars['Int']>;
|
|
478
|
-
/**
|
|
482
|
+
/** pattern for restricting strings to a given regular expression */
|
|
479
483
|
pattern?: Maybe<Scalars['String']>;
|
|
480
|
-
/**
|
|
484
|
+
/** Pattern Error Message for giving a tailored error message when a pttern does not match */
|
|
481
485
|
patternErrorMessage?: Maybe<Scalars['String']>;
|
|
482
|
-
/**
|
|
486
|
+
/** format for restricting strings to well-known formats, such as date, time, ipv4, email, and uri */
|
|
483
487
|
format?: Maybe<Scalars['String']>;
|
|
484
|
-
/**
|
|
488
|
+
/** Max. Items for restricting array length */
|
|
485
489
|
maxItems?: Maybe<Scalars['Int']>;
|
|
486
|
-
/**
|
|
490
|
+
/** Min. Items for restricting array length */
|
|
487
491
|
minItems?: Maybe<Scalars['Int']>;
|
|
488
492
|
};
|
|
489
493
|
export type IContributionSettingsProperties = {
|
|
@@ -493,8 +497,8 @@ export type IContributionSettingsProperties = {
|
|
|
493
497
|
};
|
|
494
498
|
export type ICountries = {
|
|
495
499
|
__typename?: 'Countries';
|
|
496
|
-
data?: Maybe<Array<Maybe<ICountry>>>;
|
|
497
500
|
totalCount: Scalars['Int'];
|
|
501
|
+
data?: Maybe<Array<Maybe<ICountry>>>;
|
|
498
502
|
};
|
|
499
503
|
export type ICountry = IICountry & {
|
|
500
504
|
__typename?: 'Country';
|
|
@@ -548,13 +552,13 @@ export type IDefaultRole = IIConfigurationModel & {
|
|
|
548
552
|
};
|
|
549
553
|
export type IDefaultSettings = IISettingsSubject & {
|
|
550
554
|
__typename?: 'DefaultSettings';
|
|
551
|
-
/**
|
|
555
|
+
/** The ID. */
|
|
552
556
|
id?: Maybe<Scalars['ID']>;
|
|
553
|
-
/**
|
|
557
|
+
/** The latest settings. */
|
|
554
558
|
latestSettings?: Maybe<ISettings>;
|
|
555
|
-
/**
|
|
559
|
+
/** The URL to the settings. */
|
|
556
560
|
settingsURL: Scalars['URI'];
|
|
557
|
-
/**
|
|
561
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
558
562
|
viewerCanAdminister: Scalars['Boolean'];
|
|
559
563
|
/**
|
|
560
564
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -670,13 +674,13 @@ export declare enum IGlobalLanguages {
|
|
|
670
674
|
}
|
|
671
675
|
export type IGlobalSettings = IISettingsSubject & {
|
|
672
676
|
__typename?: 'GlobalSettings';
|
|
673
|
-
/**
|
|
677
|
+
/** The ID. */
|
|
674
678
|
id?: Maybe<Scalars['ID']>;
|
|
675
|
-
/**
|
|
679
|
+
/** The latest settings. */
|
|
676
680
|
latestSettings?: Maybe<ISettings>;
|
|
677
|
-
/**
|
|
681
|
+
/** The URL to the settings. */
|
|
678
682
|
settingsURL: Scalars['URI'];
|
|
679
|
-
/**
|
|
683
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
680
684
|
viewerCanAdminister: Scalars['Boolean'];
|
|
681
685
|
/**
|
|
682
686
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -825,13 +829,13 @@ export type IIResourceUserRole = {
|
|
|
825
829
|
* configuration"), an organization, or a user.
|
|
826
830
|
*/
|
|
827
831
|
export type IISettingsSubject = {
|
|
828
|
-
/**
|
|
832
|
+
/** The ID. */
|
|
829
833
|
id?: Maybe<Scalars['ID']>;
|
|
830
|
-
/**
|
|
834
|
+
/** The latest settings. */
|
|
831
835
|
latestSettings?: Maybe<ISettings>;
|
|
832
|
-
/**
|
|
836
|
+
/** The URL to the settings. */
|
|
833
837
|
settingsURL: Scalars['URI'];
|
|
834
|
-
/**
|
|
838
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
835
839
|
viewerCanAdminister: Scalars['Boolean'];
|
|
836
840
|
/**
|
|
837
841
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -894,9 +898,9 @@ export declare enum IInviteStatus {
|
|
|
894
898
|
* For example, in {"a": [0, {"b": 3}]}, the value 3 is located at the key path ["a", 1, "b"].
|
|
895
899
|
*/
|
|
896
900
|
export type IKeyPathSegment = {
|
|
897
|
-
/**
|
|
901
|
+
/** The name of the property in the object at this location to descend into. */
|
|
898
902
|
property?: Maybe<Scalars['String']>;
|
|
899
|
-
/**
|
|
903
|
+
/** The index of the array at this location to descend into. */
|
|
900
904
|
index?: Maybe<Scalars['Int']>;
|
|
901
905
|
};
|
|
902
906
|
export type ILanguage = {
|
|
@@ -936,13 +940,13 @@ export type IMachineConfiguration = IIConfigurationModel & {
|
|
|
936
940
|
};
|
|
937
941
|
export type IMachineSettings = IISettingsSubject & {
|
|
938
942
|
__typename?: 'MachineSettings';
|
|
939
|
-
/**
|
|
943
|
+
/** The ID. */
|
|
940
944
|
id?: Maybe<Scalars['ID']>;
|
|
941
|
-
/**
|
|
945
|
+
/** The latest settings. */
|
|
942
946
|
latestSettings?: Maybe<ISettings>;
|
|
943
|
-
/**
|
|
947
|
+
/** The URL to the settings. */
|
|
944
948
|
settingsURL: Scalars['URI'];
|
|
945
|
-
/**
|
|
949
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
946
950
|
viewerCanAdminister: Scalars['Boolean'];
|
|
947
951
|
/**
|
|
948
952
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -963,13 +967,13 @@ export declare enum IMailTemplateId {
|
|
|
963
967
|
}
|
|
964
968
|
export type IMemorySettings = IISettingsSubject & {
|
|
965
969
|
__typename?: 'MemorySettings';
|
|
966
|
-
/**
|
|
970
|
+
/** The ID. */
|
|
967
971
|
id?: Maybe<Scalars['ID']>;
|
|
968
|
-
/**
|
|
972
|
+
/** The latest settings. */
|
|
969
973
|
latestSettings?: Maybe<ISettings>;
|
|
970
|
-
/**
|
|
974
|
+
/** The URL to the settings. */
|
|
971
975
|
settingsURL: Scalars['URI'];
|
|
972
|
-
/**
|
|
976
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
973
977
|
viewerCanAdminister: Scalars['Boolean'];
|
|
974
978
|
/**
|
|
975
979
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -1608,6 +1612,7 @@ export type IOrganizationInvitation = {
|
|
|
1608
1612
|
email?: Maybe<Scalars['String']>;
|
|
1609
1613
|
teamId?: Maybe<Scalars['String']>;
|
|
1610
1614
|
role?: Maybe<IApplicationRoles>;
|
|
1615
|
+
phoneNumber?: Maybe<IPhoneNumber>;
|
|
1611
1616
|
active?: Maybe<Scalars['Boolean']>;
|
|
1612
1617
|
fullName?: Maybe<Scalars['String']>;
|
|
1613
1618
|
inviteCount?: Maybe<Scalars['Int']>;
|
|
@@ -1695,13 +1700,13 @@ export type IOrganizationResourceData = IIResourceData & {
|
|
|
1695
1700
|
};
|
|
1696
1701
|
export type IOrganizationResourceSettings = IISettingsSubject & {
|
|
1697
1702
|
__typename?: 'OrganizationResourceSettings';
|
|
1698
|
-
/**
|
|
1703
|
+
/** The ID. */
|
|
1699
1704
|
id?: Maybe<Scalars['ID']>;
|
|
1700
|
-
/**
|
|
1705
|
+
/** The latest settings. */
|
|
1701
1706
|
latestSettings?: Maybe<ISettings>;
|
|
1702
|
-
/**
|
|
1707
|
+
/** The URL to the settings. */
|
|
1703
1708
|
settingsURL: Scalars['URI'];
|
|
1704
|
-
/**
|
|
1709
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
1705
1710
|
viewerCanAdminister: Scalars['Boolean'];
|
|
1706
1711
|
/**
|
|
1707
1712
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -1719,13 +1724,13 @@ export type IOrganizationRole = IIConfigurationModel & {
|
|
|
1719
1724
|
};
|
|
1720
1725
|
export type IOrganizationSettings = IISettingsSubject & {
|
|
1721
1726
|
__typename?: 'OrganizationSettings';
|
|
1722
|
-
/**
|
|
1727
|
+
/** The ID. */
|
|
1723
1728
|
id?: Maybe<Scalars['ID']>;
|
|
1724
|
-
/**
|
|
1729
|
+
/** The latest settings. */
|
|
1725
1730
|
latestSettings?: Maybe<ISettings>;
|
|
1726
|
-
/**
|
|
1731
|
+
/** The URL to the settings. */
|
|
1727
1732
|
settingsURL: Scalars['URI'];
|
|
1728
|
-
/**
|
|
1733
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
1729
1734
|
viewerCanAdminister: Scalars['Boolean'];
|
|
1730
1735
|
/**
|
|
1731
1736
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -1733,6 +1738,12 @@ export type IOrganizationSettings = IISettingsSubject & {
|
|
|
1733
1738
|
*/
|
|
1734
1739
|
settingsCascade: ISettingsCascade;
|
|
1735
1740
|
};
|
|
1741
|
+
export type IOrganizationSharedTokenDecode = {
|
|
1742
|
+
__typename?: 'OrganizationSharedTokenDecode';
|
|
1743
|
+
orgName?: Maybe<Scalars['String']>;
|
|
1744
|
+
teamName?: Maybe<Scalars['String']>;
|
|
1745
|
+
invitedBy?: Maybe<Scalars['String']>;
|
|
1746
|
+
};
|
|
1736
1747
|
export type IOrganizationUpdateRequest = {
|
|
1737
1748
|
id?: Maybe<Scalars['String']>;
|
|
1738
1749
|
requestedUserId?: Maybe<Scalars['String']>;
|
|
@@ -1762,7 +1773,7 @@ export declare enum IPermissionResource {
|
|
|
1762
1773
|
}
|
|
1763
1774
|
export type IPermissionSubject = {
|
|
1764
1775
|
__typename?: 'PermissionSubject';
|
|
1765
|
-
/**
|
|
1776
|
+
/** The URL to the roles. */
|
|
1766
1777
|
roleURL: Scalars['URI'];
|
|
1767
1778
|
/** The time when this was created. */
|
|
1768
1779
|
createdAt?: Maybe<Scalars['String']>;
|
|
@@ -1972,6 +1983,7 @@ export type IQuery = {
|
|
|
1972
1983
|
country: ICountry;
|
|
1973
1984
|
countryByName: ICountry;
|
|
1974
1985
|
decodeOrganizationInvitation?: Maybe<IOrganizationInvitationDecode>;
|
|
1986
|
+
decodeOrganizationSharedToken?: Maybe<IOrganizationSharedTokenDecode>;
|
|
1975
1987
|
/** Return the permissions groups */
|
|
1976
1988
|
defaultPermissions?: Maybe<Array<Maybe<ISettingsGroup>>>;
|
|
1977
1989
|
/** Return the Policies groups */
|
|
@@ -2024,6 +2036,7 @@ export type IQuery = {
|
|
|
2024
2036
|
getOrganizationInvitation?: Maybe<IOrganizationInvitation>;
|
|
2025
2037
|
getOrganizationMembers?: Maybe<IOrgMembersOutput>;
|
|
2026
2038
|
getOrganizationResourceContext?: Maybe<IOrganizationData>;
|
|
2039
|
+
getOrganizationSharableLink?: Maybe<Scalars['String']>;
|
|
2027
2040
|
getOrganizationTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
|
2028
2041
|
getRole?: Maybe<IAccessRole>;
|
|
2029
2042
|
getRoles?: Maybe<Array<Maybe<IAccessRole>>>;
|
|
@@ -2106,6 +2119,9 @@ export type IQueryCountryByNameArgs = {
|
|
|
2106
2119
|
export type IQueryDecodeOrganizationInvitationArgs = {
|
|
2107
2120
|
token: Scalars['String'];
|
|
2108
2121
|
};
|
|
2122
|
+
export type IQueryDecodeOrganizationSharedTokenArgs = {
|
|
2123
|
+
token: Scalars['String'];
|
|
2124
|
+
};
|
|
2109
2125
|
export type IQueryDefaultPermissionsArgs = {
|
|
2110
2126
|
target?: Maybe<Scalars['Int']>;
|
|
2111
2127
|
};
|
|
@@ -2183,6 +2199,9 @@ export type IQueryGetOrganizationMembersArgs = {
|
|
|
2183
2199
|
export type IQueryGetOrganizationResourceContextArgs = {
|
|
2184
2200
|
orgId?: Maybe<Scalars['String']>;
|
|
2185
2201
|
};
|
|
2202
|
+
export type IQueryGetOrganizationSharableLinkArgs = {
|
|
2203
|
+
teamId?: Maybe<Scalars['String']>;
|
|
2204
|
+
};
|
|
2186
2205
|
export type IQueryGetOrganizationTeamsArgs = {
|
|
2187
2206
|
orgName?: Maybe<Scalars['String']>;
|
|
2188
2207
|
};
|
|
@@ -2375,7 +2394,7 @@ export type ISettingsGroup = {
|
|
|
2375
2394
|
title?: Maybe<Scalars['String']>;
|
|
2376
2395
|
titleRange?: Maybe<IRange>;
|
|
2377
2396
|
sections?: Maybe<Array<Maybe<ISettingsSection>>>;
|
|
2378
|
-
/**
|
|
2397
|
+
/** Deprecated @sri remove it next time */
|
|
2379
2398
|
contributedByExtension?: Maybe<Scalars['Boolean']>;
|
|
2380
2399
|
order?: Maybe<Scalars['Int']>;
|
|
2381
2400
|
extensionInfo?: Maybe<IConfigurationExtensionInfo>;
|
|
@@ -2777,7 +2796,7 @@ export type IUserSessionId = {
|
|
|
2777
2796
|
/** UserSettings is a combination of ApplicationSettings and MachineSettings */
|
|
2778
2797
|
export type IUserSettings = IISettingsSubject & {
|
|
2779
2798
|
__typename?: 'UserSettings';
|
|
2780
|
-
/**
|
|
2799
|
+
/** The ID. */
|
|
2781
2800
|
id?: Maybe<Scalars['ID']>;
|
|
2782
2801
|
/**
|
|
2783
2802
|
* The latest settings for the user.
|
|
@@ -2847,7 +2866,7 @@ export type IViewerSettingsInput = {
|
|
|
2847
2866
|
};
|
|
2848
2867
|
export type IViewerSettingsSubject = {
|
|
2849
2868
|
__typename?: 'ViewerSettingsSubject';
|
|
2850
|
-
/**
|
|
2869
|
+
/** The URL to the settings. */
|
|
2851
2870
|
settingsURL: Scalars['URI'];
|
|
2852
2871
|
/** Graphql typed settings */
|
|
2853
2872
|
settings?: Maybe<IPreferences>;
|
|
@@ -2914,6 +2933,7 @@ export type IResolversTypes = {
|
|
|
2914
2933
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
|
2915
2934
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
|
2916
2935
|
AuthUserInput: IAuthUserInput;
|
|
2936
|
+
CacheControlScope: ICacheControlScope;
|
|
2917
2937
|
CardImage: ResolverTypeWrapper<ICardImage>;
|
|
2918
2938
|
Cities: ResolverTypeWrapper<ICities>;
|
|
2919
2939
|
CitiesInput: ICitiesInput;
|
|
@@ -3048,6 +3068,7 @@ export type IResolversTypes = {
|
|
|
3048
3068
|
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
|
3049
3069
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
|
3050
3070
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
|
3071
|
+
OrganizationSharedTokenDecode: ResolverTypeWrapper<IOrganizationSharedTokenDecode>;
|
|
3051
3072
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
3052
3073
|
Overrides: ResolverTypeWrapper<IOverrides>;
|
|
3053
3074
|
PermissionAction: IPermissionAction;
|
|
@@ -3294,6 +3315,7 @@ export type IResolversParentTypes = {
|
|
|
3294
3315
|
OrganizationResourceSettings: IOrganizationResourceSettings;
|
|
3295
3316
|
OrganizationRole: IOrganizationRole;
|
|
3296
3317
|
OrganizationSettings: IOrganizationSettings;
|
|
3318
|
+
OrganizationSharedTokenDecode: IOrganizationSharedTokenDecode;
|
|
3297
3319
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
3298
3320
|
Overrides: IOverrides;
|
|
3299
3321
|
PermissionSubject: IPermissionSubject;
|
|
@@ -3398,6 +3420,11 @@ export type IAddAccountContextDirectiveArgs = {};
|
|
|
3398
3420
|
export type IAddAccountContextDirectiveResolver<Result, Parent, ContextType = any, Args = IAddAccountContextDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
3399
3421
|
export type IAddNamespaceContextDirectiveArgs = {};
|
|
3400
3422
|
export type IAddNamespaceContextDirectiveResolver<Result, Parent, ContextType = any, Args = IAddNamespaceContextDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
3423
|
+
export type ICacheControlDirectiveArgs = {
|
|
3424
|
+
maxAge?: Maybe<Scalars['Int']>;
|
|
3425
|
+
scope?: Maybe<ICacheControlScope>;
|
|
3426
|
+
};
|
|
3427
|
+
export type ICacheControlDirectiveResolver<Result, Parent, ContextType = any, Args = ICacheControlDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
3401
3428
|
export type IHasScopeDirectiveArgs = {
|
|
3402
3429
|
scope?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
3403
3430
|
};
|
|
@@ -3659,8 +3686,8 @@ export type IContributionSettingsPropertiesResolvers<ContextType = any, ParentTy
|
|
|
3659
3686
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3660
3687
|
};
|
|
3661
3688
|
export type ICountriesResolvers<ContextType = any, ParentType extends IResolversParentTypes['Countries'] = IResolversParentTypes['Countries']> = {
|
|
3662
|
-
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType>;
|
|
3663
3689
|
totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
3690
|
+
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType>;
|
|
3664
3691
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3665
3692
|
};
|
|
3666
3693
|
export type ICountryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Country'] = IResolversParentTypes['Country']> = {
|
|
@@ -4162,6 +4189,7 @@ export type IOrganizationInvitationResolvers<ContextType = any, ParentType exten
|
|
|
4162
4189
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4163
4190
|
teamId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4164
4191
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
|
4192
|
+
phoneNumber?: Resolver<Maybe<IResolversTypes['PhoneNumber']>, ParentType, ContextType>;
|
|
4165
4193
|
active?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
4166
4194
|
fullName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4167
4195
|
inviteCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
@@ -4235,6 +4263,12 @@ export type IOrganizationSettingsResolvers<ContextType = any, ParentType extends
|
|
|
4235
4263
|
settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
|
|
4236
4264
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
4237
4265
|
};
|
|
4266
|
+
export type IOrganizationSharedTokenDecodeResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationSharedTokenDecode'] = IResolversParentTypes['OrganizationSharedTokenDecode']> = {
|
|
4267
|
+
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4268
|
+
teamName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4269
|
+
invitedBy?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4270
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
4271
|
+
};
|
|
4238
4272
|
export type IOverridesResolvers<ContextType = any, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
|
|
4239
4273
|
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
4240
4274
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
|
@@ -4372,6 +4406,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
4372
4406
|
country?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IQueryCountryArgs, 'id'>>;
|
|
4373
4407
|
countryByName?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IQueryCountryByNameArgs, 'name'>>;
|
|
4374
4408
|
decodeOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitationDecode']>, ParentType, ContextType, RequireFields<IQueryDecodeOrganizationInvitationArgs, 'token'>>;
|
|
4409
|
+
decodeOrganizationSharedToken?: Resolver<Maybe<IResolversTypes['OrganizationSharedTokenDecode']>, ParentType, ContextType, RequireFields<IQueryDecodeOrganizationSharedTokenArgs, 'token'>>;
|
|
4375
4410
|
defaultPermissions?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<IQueryDefaultPermissionsArgs, never>>;
|
|
4376
4411
|
defaultPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<IQueryDefaultPoliciesArgs, never>>;
|
|
4377
4412
|
defaultPreferences?: Resolver<Maybe<IResolversTypes['PreferencesResponse']>, ParentType, ContextType>;
|
|
@@ -4407,6 +4442,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
4407
4442
|
getOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitation']>, ParentType, ContextType, RequireFields<IQueryGetOrganizationInvitationArgs, 'id'>>;
|
|
4408
4443
|
getOrganizationMembers?: Resolver<Maybe<IResolversTypes['OrgMembersOutput']>, ParentType, ContextType, RequireFields<IQueryGetOrganizationMembersArgs, never>>;
|
|
4409
4444
|
getOrganizationResourceContext?: Resolver<Maybe<IResolversTypes['OrganizationData']>, ParentType, ContextType, RequireFields<IQueryGetOrganizationResourceContextArgs, never>>;
|
|
4445
|
+
getOrganizationSharableLink?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IQueryGetOrganizationSharableLinkArgs, never>>;
|
|
4410
4446
|
getOrganizationTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IQueryGetOrganizationTeamsArgs, never>>;
|
|
4411
4447
|
getRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType, RequireFields<IQueryGetRoleArgs, never>>;
|
|
4412
4448
|
getRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType, RequireFields<IQueryGetRolesArgs, never>>;
|
|
@@ -4827,6 +4863,7 @@ export type IResolvers<ContextType = any> = {
|
|
|
4827
4863
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
|
4828
4864
|
OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
|
|
4829
4865
|
OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
|
|
4866
|
+
OrganizationSharedTokenDecode?: IOrganizationSharedTokenDecodeResolvers<ContextType>;
|
|
4830
4867
|
Overrides?: IOverridesResolvers<ContextType>;
|
|
4831
4868
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
|
4832
4869
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
|
@@ -4893,6 +4930,7 @@ export type IResolvers<ContextType = any> = {
|
|
|
4893
4930
|
export type IDirectiveResolvers<ContextType = any> = {
|
|
4894
4931
|
addAccountContext?: IAddAccountContextDirectiveResolver<any, any, ContextType>;
|
|
4895
4932
|
addNamespaceContext?: IAddNamespaceContextDirectiveResolver<any, any, ContextType>;
|
|
4933
|
+
cacheControl?: ICacheControlDirectiveResolver<any, any, ContextType>;
|
|
4896
4934
|
hasScope?: IHasScopeDirectiveResolver<any, any, ContextType>;
|
|
4897
4935
|
isAuthenticated?: IIsAuthenticatedDirectiveResolver<any, any, ContextType>;
|
|
4898
4936
|
profile?: IProfileDirectiveResolver<any, any, ContextType>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@messenger-box/cron-job-server-module",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.11-alpha.0",
|
|
4
4
|
"description": "Extension to Messenger box cron jobs server",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"watch": "yarn build:lib:watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@messenger-box/core": "5.0.
|
|
25
|
-
"@messenger-box/platform-server": "5.0.
|
|
24
|
+
"@messenger-box/core": "5.0.11-alpha.0",
|
|
25
|
+
"@messenger-box/platform-server": "5.0.11-alpha.0",
|
|
26
26
|
"@skoropletov/moleculer-cron-tasks": "^0.0.8"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"typescript": {
|
|
59
59
|
"definition": "lib/index.d.ts"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "5253c44ec3ca295009613a2459f848e08656629c"
|
|
62
62
|
}
|