@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
|
@@ -30,6 +30,7 @@ export type Scalars = {
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
|
|
33
|
+
|
|
33
34
|
export type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole | IApplicationRole;
|
|
34
35
|
|
|
35
36
|
export type IAccountAddress = {
|
|
@@ -158,13 +159,13 @@ export enum IApplicationRoles {
|
|
|
158
159
|
|
|
159
160
|
export type IApplicationSettings = IISettingsSubject & {
|
|
160
161
|
__typename?: 'ApplicationSettings';
|
|
161
|
-
/**
|
|
162
|
+
/** The ID. */
|
|
162
163
|
id?: Maybe<Scalars['ID']>;
|
|
163
|
-
/**
|
|
164
|
+
/** The latest settings. */
|
|
164
165
|
latestSettings?: Maybe<ISettings>;
|
|
165
|
-
/**
|
|
166
|
+
/** The URL to the settings. */
|
|
166
167
|
settingsURL: Scalars['URI'];
|
|
167
|
-
/**
|
|
168
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
168
169
|
viewerCanAdminister: Scalars['Boolean'];
|
|
169
170
|
/**
|
|
170
171
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -221,6 +222,11 @@ export type IAuthUserInput = {
|
|
|
221
222
|
phoneNo?: Maybe<Scalars['Int']>;
|
|
222
223
|
};
|
|
223
224
|
|
|
225
|
+
export enum ICacheControlScope {
|
|
226
|
+
Public = 'PUBLIC',
|
|
227
|
+
Private = 'PRIVATE'
|
|
228
|
+
}
|
|
229
|
+
|
|
224
230
|
export type ICardImage = {
|
|
225
231
|
__typename?: 'CardImage';
|
|
226
232
|
front?: Maybe<IFileInfo>;
|
|
@@ -297,11 +303,11 @@ export enum IConfigFragmentName {
|
|
|
297
303
|
ApplicationPolicies = 'applicationPolicies',
|
|
298
304
|
Roles = 'roles',
|
|
299
305
|
ContributionRoles = 'contributionRoles',
|
|
300
|
-
/**
|
|
306
|
+
/** Team Members Document with role value */
|
|
301
307
|
TeamMembers = 'teamMembers',
|
|
302
|
-
/**
|
|
308
|
+
/** Organization Members Document with role value */
|
|
303
309
|
OrgMembers = 'orgMembers',
|
|
304
|
-
/**
|
|
310
|
+
/** Billing */
|
|
305
311
|
BillingPlanPolicies = 'billingPlanPolicies'
|
|
306
312
|
}
|
|
307
313
|
|
|
@@ -464,12 +470,12 @@ export type IContributionRoles = {
|
|
|
464
470
|
|
|
465
471
|
export type IContributionSettings = {
|
|
466
472
|
__typename?: 'ContributionSettings';
|
|
467
|
-
/**
|
|
473
|
+
/** name of the settings */
|
|
468
474
|
name?: Maybe<Scalars['String']>;
|
|
469
475
|
range?: Maybe<IRange>;
|
|
470
476
|
key?: Maybe<Scalars['String']>;
|
|
471
477
|
keyRange?: Maybe<IRange>;
|
|
472
|
-
/**
|
|
478
|
+
/** @deprecated */
|
|
473
479
|
default?: Maybe<Scalars['String']>;
|
|
474
480
|
value?: Maybe<Scalars['AnyObject']>;
|
|
475
481
|
valueRange?: Maybe<IRange>;
|
|
@@ -497,32 +503,32 @@ export type IContributionSettings = {
|
|
|
497
503
|
restricted?: Maybe<Scalars['Boolean']>;
|
|
498
504
|
extensionInfo?: Maybe<IConfigurationExtensionInfo>;
|
|
499
505
|
properties?: Maybe<IContributionSettingsProperties>;
|
|
500
|
-
/**
|
|
506
|
+
/** dependency to parent setting key */
|
|
501
507
|
settingDependencies?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
502
508
|
allKeysAreBoolean?: Maybe<Scalars['Boolean']>;
|
|
503
|
-
/**
|
|
509
|
+
/** Edit Presentation for controlling whether a single-line inputbox or multi-line textarea is rendered for the string setting in Settings editor */
|
|
504
510
|
editPresentation?: Maybe<IEditPresentationTypes>;
|
|
505
511
|
defaultValueSource?: Maybe<Scalars['AnyObject']>;
|
|
506
512
|
isLanguageTagSetting?: Maybe<Scalars['Boolean']>;
|
|
507
513
|
categoryOrder?: Maybe<Scalars['Int']>;
|
|
508
514
|
categoryLabel?: Maybe<Scalars['String']>;
|
|
509
|
-
/**
|
|
515
|
+
/** minimum value for restricting numeric values */
|
|
510
516
|
minimum?: Maybe<Scalars['Int']>;
|
|
511
|
-
/**
|
|
517
|
+
/** maximum value for restricting numeric values */
|
|
512
518
|
maximum?: Maybe<Scalars['Int']>;
|
|
513
|
-
/**
|
|
519
|
+
/** max. length for restricting string length */
|
|
514
520
|
maxLength?: Maybe<Scalars['Int']>;
|
|
515
|
-
/**
|
|
521
|
+
/** min. length for restricting string length */
|
|
516
522
|
minLength?: Maybe<Scalars['Int']>;
|
|
517
|
-
/**
|
|
523
|
+
/** pattern for restricting strings to a given regular expression */
|
|
518
524
|
pattern?: Maybe<Scalars['String']>;
|
|
519
|
-
/**
|
|
525
|
+
/** Pattern Error Message for giving a tailored error message when a pttern does not match */
|
|
520
526
|
patternErrorMessage?: Maybe<Scalars['String']>;
|
|
521
|
-
/**
|
|
527
|
+
/** format for restricting strings to well-known formats, such as date, time, ipv4, email, and uri */
|
|
522
528
|
format?: Maybe<Scalars['String']>;
|
|
523
|
-
/**
|
|
529
|
+
/** Max. Items for restricting array length */
|
|
524
530
|
maxItems?: Maybe<Scalars['Int']>;
|
|
525
|
-
/**
|
|
531
|
+
/** Min. Items for restricting array length */
|
|
526
532
|
minItems?: Maybe<Scalars['Int']>;
|
|
527
533
|
};
|
|
528
534
|
|
|
@@ -534,8 +540,8 @@ export type IContributionSettingsProperties = {
|
|
|
534
540
|
|
|
535
541
|
export type ICountries = {
|
|
536
542
|
__typename?: 'Countries';
|
|
537
|
-
data?: Maybe<Array<Maybe<ICountry>>>;
|
|
538
543
|
totalCount: Scalars['Int'];
|
|
544
|
+
data?: Maybe<Array<Maybe<ICountry>>>;
|
|
539
545
|
};
|
|
540
546
|
|
|
541
547
|
export type ICountry = IICountry & {
|
|
@@ -599,13 +605,13 @@ export type IDefaultRole = IIConfigurationModel & {
|
|
|
599
605
|
|
|
600
606
|
export type IDefaultSettings = IISettingsSubject & {
|
|
601
607
|
__typename?: 'DefaultSettings';
|
|
602
|
-
/**
|
|
608
|
+
/** The ID. */
|
|
603
609
|
id?: Maybe<Scalars['ID']>;
|
|
604
|
-
/**
|
|
610
|
+
/** The latest settings. */
|
|
605
611
|
latestSettings?: Maybe<ISettings>;
|
|
606
|
-
/**
|
|
612
|
+
/** The URL to the settings. */
|
|
607
613
|
settingsURL: Scalars['URI'];
|
|
608
|
-
/**
|
|
614
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
609
615
|
viewerCanAdminister: Scalars['Boolean'];
|
|
610
616
|
/**
|
|
611
617
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -740,13 +746,13 @@ export enum IGlobalLanguages {
|
|
|
740
746
|
|
|
741
747
|
export type IGlobalSettings = IISettingsSubject & {
|
|
742
748
|
__typename?: 'GlobalSettings';
|
|
743
|
-
/**
|
|
749
|
+
/** The ID. */
|
|
744
750
|
id?: Maybe<Scalars['ID']>;
|
|
745
|
-
/**
|
|
751
|
+
/** The latest settings. */
|
|
746
752
|
latestSettings?: Maybe<ISettings>;
|
|
747
|
-
/**
|
|
753
|
+
/** The URL to the settings. */
|
|
748
754
|
settingsURL: Scalars['URI'];
|
|
749
|
-
/**
|
|
755
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
750
756
|
viewerCanAdminister: Scalars['Boolean'];
|
|
751
757
|
/**
|
|
752
758
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -914,13 +920,13 @@ export type IIResourceUserRole = {
|
|
|
914
920
|
* configuration"), an organization, or a user.
|
|
915
921
|
*/
|
|
916
922
|
export type IISettingsSubject = {
|
|
917
|
-
/**
|
|
923
|
+
/** The ID. */
|
|
918
924
|
id?: Maybe<Scalars['ID']>;
|
|
919
|
-
/**
|
|
925
|
+
/** The latest settings. */
|
|
920
926
|
latestSettings?: Maybe<ISettings>;
|
|
921
|
-
/**
|
|
927
|
+
/** The URL to the settings. */
|
|
922
928
|
settingsURL: Scalars['URI'];
|
|
923
|
-
/**
|
|
929
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
924
930
|
viewerCanAdminister: Scalars['Boolean'];
|
|
925
931
|
/**
|
|
926
932
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -992,9 +998,9 @@ export enum IInviteStatus {
|
|
|
992
998
|
* For example, in {"a": [0, {"b": 3}]}, the value 3 is located at the key path ["a", 1, "b"].
|
|
993
999
|
*/
|
|
994
1000
|
export type IKeyPathSegment = {
|
|
995
|
-
/**
|
|
1001
|
+
/** The name of the property in the object at this location to descend into. */
|
|
996
1002
|
property?: Maybe<Scalars['String']>;
|
|
997
|
-
/**
|
|
1003
|
+
/** The index of the array at this location to descend into. */
|
|
998
1004
|
index?: Maybe<Scalars['Int']>;
|
|
999
1005
|
};
|
|
1000
1006
|
|
|
@@ -1040,13 +1046,13 @@ export type IMachineConfiguration = IIConfigurationModel & {
|
|
|
1040
1046
|
|
|
1041
1047
|
export type IMachineSettings = IISettingsSubject & {
|
|
1042
1048
|
__typename?: 'MachineSettings';
|
|
1043
|
-
/**
|
|
1049
|
+
/** The ID. */
|
|
1044
1050
|
id?: Maybe<Scalars['ID']>;
|
|
1045
|
-
/**
|
|
1051
|
+
/** The latest settings. */
|
|
1046
1052
|
latestSettings?: Maybe<ISettings>;
|
|
1047
|
-
/**
|
|
1053
|
+
/** The URL to the settings. */
|
|
1048
1054
|
settingsURL: Scalars['URI'];
|
|
1049
|
-
/**
|
|
1055
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
1050
1056
|
viewerCanAdminister: Scalars['Boolean'];
|
|
1051
1057
|
/**
|
|
1052
1058
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -1069,13 +1075,13 @@ export enum IMailTemplateId {
|
|
|
1069
1075
|
|
|
1070
1076
|
export type IMemorySettings = IISettingsSubject & {
|
|
1071
1077
|
__typename?: 'MemorySettings';
|
|
1072
|
-
/**
|
|
1078
|
+
/** The ID. */
|
|
1073
1079
|
id?: Maybe<Scalars['ID']>;
|
|
1074
|
-
/**
|
|
1080
|
+
/** The latest settings. */
|
|
1075
1081
|
latestSettings?: Maybe<ISettings>;
|
|
1076
|
-
/**
|
|
1082
|
+
/** The URL to the settings. */
|
|
1077
1083
|
settingsURL: Scalars['URI'];
|
|
1078
|
-
/**
|
|
1084
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
1079
1085
|
viewerCanAdminister: Scalars['Boolean'];
|
|
1080
1086
|
/**
|
|
1081
1087
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -1907,6 +1913,7 @@ export type IOrganizationInvitation = {
|
|
|
1907
1913
|
email?: Maybe<Scalars['String']>;
|
|
1908
1914
|
teamId?: Maybe<Scalars['String']>;
|
|
1909
1915
|
role?: Maybe<IApplicationRoles>;
|
|
1916
|
+
phoneNumber?: Maybe<IPhoneNumber>;
|
|
1910
1917
|
active?: Maybe<Scalars['Boolean']>;
|
|
1911
1918
|
fullName?: Maybe<Scalars['String']>;
|
|
1912
1919
|
inviteCount?: Maybe<Scalars['Int']>;
|
|
@@ -2004,13 +2011,13 @@ export type IOrganizationResourceData = IIResourceData & {
|
|
|
2004
2011
|
|
|
2005
2012
|
export type IOrganizationResourceSettings = IISettingsSubject & {
|
|
2006
2013
|
__typename?: 'OrganizationResourceSettings';
|
|
2007
|
-
/**
|
|
2014
|
+
/** The ID. */
|
|
2008
2015
|
id?: Maybe<Scalars['ID']>;
|
|
2009
|
-
/**
|
|
2016
|
+
/** The latest settings. */
|
|
2010
2017
|
latestSettings?: Maybe<ISettings>;
|
|
2011
|
-
/**
|
|
2018
|
+
/** The URL to the settings. */
|
|
2012
2019
|
settingsURL: Scalars['URI'];
|
|
2013
|
-
/**
|
|
2020
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
2014
2021
|
viewerCanAdminister: Scalars['Boolean'];
|
|
2015
2022
|
/**
|
|
2016
2023
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -2030,13 +2037,13 @@ export type IOrganizationRole = IIConfigurationModel & {
|
|
|
2030
2037
|
|
|
2031
2038
|
export type IOrganizationSettings = IISettingsSubject & {
|
|
2032
2039
|
__typename?: 'OrganizationSettings';
|
|
2033
|
-
/**
|
|
2040
|
+
/** The ID. */
|
|
2034
2041
|
id?: Maybe<Scalars['ID']>;
|
|
2035
|
-
/**
|
|
2042
|
+
/** The latest settings. */
|
|
2036
2043
|
latestSettings?: Maybe<ISettings>;
|
|
2037
|
-
/**
|
|
2044
|
+
/** The URL to the settings. */
|
|
2038
2045
|
settingsURL: Scalars['URI'];
|
|
2039
|
-
/**
|
|
2046
|
+
/** Whether the viewer can modify the subject's settings. */
|
|
2040
2047
|
viewerCanAdminister: Scalars['Boolean'];
|
|
2041
2048
|
/**
|
|
2042
2049
|
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
|
@@ -2045,6 +2052,13 @@ export type IOrganizationSettings = IISettingsSubject & {
|
|
|
2045
2052
|
settingsCascade: ISettingsCascade;
|
|
2046
2053
|
};
|
|
2047
2054
|
|
|
2055
|
+
export type IOrganizationSharedTokenDecode = {
|
|
2056
|
+
__typename?: 'OrganizationSharedTokenDecode';
|
|
2057
|
+
orgName?: Maybe<Scalars['String']>;
|
|
2058
|
+
teamName?: Maybe<Scalars['String']>;
|
|
2059
|
+
invitedBy?: Maybe<Scalars['String']>;
|
|
2060
|
+
};
|
|
2061
|
+
|
|
2048
2062
|
export type IOrganizationUpdateRequest = {
|
|
2049
2063
|
id?: Maybe<Scalars['String']>;
|
|
2050
2064
|
requestedUserId?: Maybe<Scalars['String']>;
|
|
@@ -2078,7 +2092,7 @@ export enum IPermissionResource {
|
|
|
2078
2092
|
|
|
2079
2093
|
export type IPermissionSubject = {
|
|
2080
2094
|
__typename?: 'PermissionSubject';
|
|
2081
|
-
/**
|
|
2095
|
+
/** The URL to the roles. */
|
|
2082
2096
|
roleURL: Scalars['URI'];
|
|
2083
2097
|
/** The time when this was created. */
|
|
2084
2098
|
createdAt?: Maybe<Scalars['String']>;
|
|
@@ -2317,6 +2331,7 @@ export type IQuery = {
|
|
|
2317
2331
|
country: ICountry;
|
|
2318
2332
|
countryByName: ICountry;
|
|
2319
2333
|
decodeOrganizationInvitation?: Maybe<IOrganizationInvitationDecode>;
|
|
2334
|
+
decodeOrganizationSharedToken?: Maybe<IOrganizationSharedTokenDecode>;
|
|
2320
2335
|
/** Return the permissions groups */
|
|
2321
2336
|
defaultPermissions?: Maybe<Array<Maybe<ISettingsGroup>>>;
|
|
2322
2337
|
/** Return the Policies groups */
|
|
@@ -2369,6 +2384,7 @@ export type IQuery = {
|
|
|
2369
2384
|
getOrganizationInvitation?: Maybe<IOrganizationInvitation>;
|
|
2370
2385
|
getOrganizationMembers?: Maybe<IOrgMembersOutput>;
|
|
2371
2386
|
getOrganizationResourceContext?: Maybe<IOrganizationData>;
|
|
2387
|
+
getOrganizationSharableLink?: Maybe<Scalars['String']>;
|
|
2372
2388
|
getOrganizationTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
|
2373
2389
|
getRole?: Maybe<IAccessRole>;
|
|
2374
2390
|
getRoles?: Maybe<Array<Maybe<IAccessRole>>>;
|
|
@@ -2475,6 +2491,11 @@ export type IQueryDecodeOrganizationInvitationArgs = {
|
|
|
2475
2491
|
};
|
|
2476
2492
|
|
|
2477
2493
|
|
|
2494
|
+
export type IQueryDecodeOrganizationSharedTokenArgs = {
|
|
2495
|
+
token: Scalars['String'];
|
|
2496
|
+
};
|
|
2497
|
+
|
|
2498
|
+
|
|
2478
2499
|
export type IQueryDefaultPermissionsArgs = {
|
|
2479
2500
|
target?: Maybe<Scalars['Int']>;
|
|
2480
2501
|
};
|
|
@@ -2598,6 +2619,11 @@ export type IQueryGetOrganizationResourceContextArgs = {
|
|
|
2598
2619
|
};
|
|
2599
2620
|
|
|
2600
2621
|
|
|
2622
|
+
export type IQueryGetOrganizationSharableLinkArgs = {
|
|
2623
|
+
teamId?: Maybe<Scalars['String']>;
|
|
2624
|
+
};
|
|
2625
|
+
|
|
2626
|
+
|
|
2601
2627
|
export type IQueryGetOrganizationTeamsArgs = {
|
|
2602
2628
|
orgName?: Maybe<Scalars['String']>;
|
|
2603
2629
|
};
|
|
@@ -2848,7 +2874,7 @@ export type ISettingsGroup = {
|
|
|
2848
2874
|
title?: Maybe<Scalars['String']>;
|
|
2849
2875
|
titleRange?: Maybe<IRange>;
|
|
2850
2876
|
sections?: Maybe<Array<Maybe<ISettingsSection>>>;
|
|
2851
|
-
/**
|
|
2877
|
+
/** Deprecated @sri remove it next time */
|
|
2852
2878
|
contributedByExtension?: Maybe<Scalars['Boolean']>;
|
|
2853
2879
|
order?: Maybe<Scalars['Int']>;
|
|
2854
2880
|
extensionInfo?: Maybe<IConfigurationExtensionInfo>;
|
|
@@ -3311,7 +3337,7 @@ export type IUserSessionId = {
|
|
|
3311
3337
|
/** UserSettings is a combination of ApplicationSettings and MachineSettings */
|
|
3312
3338
|
export type IUserSettings = IISettingsSubject & {
|
|
3313
3339
|
__typename?: 'UserSettings';
|
|
3314
|
-
/**
|
|
3340
|
+
/** The ID. */
|
|
3315
3341
|
id?: Maybe<Scalars['ID']>;
|
|
3316
3342
|
/**
|
|
3317
3343
|
* The latest settings for the user.
|
|
@@ -3387,7 +3413,7 @@ export type IViewerSettingsInput = {
|
|
|
3387
3413
|
|
|
3388
3414
|
export type IViewerSettingsSubject = {
|
|
3389
3415
|
__typename?: 'ViewerSettingsSubject';
|
|
3390
|
-
/**
|
|
3416
|
+
/** The URL to the settings. */
|
|
3391
3417
|
settingsURL: Scalars['URI'];
|
|
3392
3418
|
/** Graphql typed settings */
|
|
3393
3419
|
settings?: Maybe<IPreferences>;
|
|
@@ -3502,6 +3528,7 @@ export type IResolversTypes = {
|
|
|
3502
3528
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
|
3503
3529
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
|
3504
3530
|
AuthUserInput: IAuthUserInput;
|
|
3531
|
+
CacheControlScope: ICacheControlScope;
|
|
3505
3532
|
CardImage: ResolverTypeWrapper<ICardImage>;
|
|
3506
3533
|
Cities: ResolverTypeWrapper<ICities>;
|
|
3507
3534
|
CitiesInput: ICitiesInput;
|
|
@@ -3632,6 +3659,7 @@ export type IResolversTypes = {
|
|
|
3632
3659
|
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
|
3633
3660
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
|
3634
3661
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
|
3662
|
+
OrganizationSharedTokenDecode: ResolverTypeWrapper<IOrganizationSharedTokenDecode>;
|
|
3635
3663
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
3636
3664
|
Overrides: ResolverTypeWrapper<IOverrides>;
|
|
3637
3665
|
PermissionAction: IPermissionAction;
|
|
@@ -3869,6 +3897,7 @@ export type IResolversParentTypes = {
|
|
|
3869
3897
|
OrganizationResourceSettings: IOrganizationResourceSettings;
|
|
3870
3898
|
OrganizationRole: IOrganizationRole;
|
|
3871
3899
|
OrganizationSettings: IOrganizationSettings;
|
|
3900
|
+
OrganizationSharedTokenDecode: IOrganizationSharedTokenDecode;
|
|
3872
3901
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
3873
3902
|
Overrides: IOverrides;
|
|
3874
3903
|
PermissionSubject: IPermissionSubject;
|
|
@@ -3972,6 +4001,11 @@ export type IAddNamespaceContextDirectiveArgs = { };
|
|
|
3972
4001
|
|
|
3973
4002
|
export type IAddNamespaceContextDirectiveResolver<Result, Parent, ContextType = any, Args = IAddNamespaceContextDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
3974
4003
|
|
|
4004
|
+
export type ICacheControlDirectiveArgs = { maxAge?: Maybe<Scalars['Int']>;
|
|
4005
|
+
scope?: Maybe<ICacheControlScope>; };
|
|
4006
|
+
|
|
4007
|
+
export type ICacheControlDirectiveResolver<Result, Parent, ContextType = any, Args = ICacheControlDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
4008
|
+
|
|
3975
4009
|
export type IHasScopeDirectiveArgs = { scope?: Maybe<Array<Maybe<Scalars['String']>>>; };
|
|
3976
4010
|
|
|
3977
4011
|
export type IHasScopeDirectiveResolver<Result, Parent, ContextType = any, Args = IHasScopeDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
@@ -4266,8 +4300,8 @@ export type IContributionSettingsPropertiesResolvers<ContextType = any, ParentTy
|
|
|
4266
4300
|
};
|
|
4267
4301
|
|
|
4268
4302
|
export type ICountriesResolvers<ContextType = any, ParentType extends IResolversParentTypes['Countries'] = IResolversParentTypes['Countries']> = {
|
|
4269
|
-
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType>;
|
|
4270
4303
|
totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
4304
|
+
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType>;
|
|
4271
4305
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
4272
4306
|
};
|
|
4273
4307
|
|
|
@@ -4822,6 +4856,7 @@ export type IOrganizationInvitationResolvers<ContextType = any, ParentType exten
|
|
|
4822
4856
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4823
4857
|
teamId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4824
4858
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
|
4859
|
+
phoneNumber?: Resolver<Maybe<IResolversTypes['PhoneNumber']>, ParentType, ContextType>;
|
|
4825
4860
|
active?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
4826
4861
|
fullName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4827
4862
|
inviteCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
@@ -4904,6 +4939,13 @@ export type IOrganizationSettingsResolvers<ContextType = any, ParentType extends
|
|
|
4904
4939
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
4905
4940
|
};
|
|
4906
4941
|
|
|
4942
|
+
export type IOrganizationSharedTokenDecodeResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationSharedTokenDecode'] = IResolversParentTypes['OrganizationSharedTokenDecode']> = {
|
|
4943
|
+
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4944
|
+
teamName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4945
|
+
invitedBy?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4946
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
4947
|
+
};
|
|
4948
|
+
|
|
4907
4949
|
export type IOverridesResolvers<ContextType = any, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
|
|
4908
4950
|
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
4909
4951
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
|
@@ -5062,6 +5104,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
5062
5104
|
country?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IQueryCountryArgs, 'id'>>;
|
|
5063
5105
|
countryByName?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IQueryCountryByNameArgs, 'name'>>;
|
|
5064
5106
|
decodeOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitationDecode']>, ParentType, ContextType, RequireFields<IQueryDecodeOrganizationInvitationArgs, 'token'>>;
|
|
5107
|
+
decodeOrganizationSharedToken?: Resolver<Maybe<IResolversTypes['OrganizationSharedTokenDecode']>, ParentType, ContextType, RequireFields<IQueryDecodeOrganizationSharedTokenArgs, 'token'>>;
|
|
5065
5108
|
defaultPermissions?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<IQueryDefaultPermissionsArgs, never>>;
|
|
5066
5109
|
defaultPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<IQueryDefaultPoliciesArgs, never>>;
|
|
5067
5110
|
defaultPreferences?: Resolver<Maybe<IResolversTypes['PreferencesResponse']>, ParentType, ContextType>;
|
|
@@ -5097,6 +5140,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
5097
5140
|
getOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitation']>, ParentType, ContextType, RequireFields<IQueryGetOrganizationInvitationArgs, 'id'>>;
|
|
5098
5141
|
getOrganizationMembers?: Resolver<Maybe<IResolversTypes['OrgMembersOutput']>, ParentType, ContextType, RequireFields<IQueryGetOrganizationMembersArgs, never>>;
|
|
5099
5142
|
getOrganizationResourceContext?: Resolver<Maybe<IResolversTypes['OrganizationData']>, ParentType, ContextType, RequireFields<IQueryGetOrganizationResourceContextArgs, never>>;
|
|
5143
|
+
getOrganizationSharableLink?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IQueryGetOrganizationSharableLinkArgs, never>>;
|
|
5100
5144
|
getOrganizationTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IQueryGetOrganizationTeamsArgs, never>>;
|
|
5101
5145
|
getRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType, RequireFields<IQueryGetRoleArgs, never>>;
|
|
5102
5146
|
getRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType, RequireFields<IQueryGetRolesArgs, never>>;
|
|
@@ -5558,6 +5602,7 @@ export type IResolvers<ContextType = any> = {
|
|
|
5558
5602
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
|
5559
5603
|
OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
|
|
5560
5604
|
OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
|
|
5605
|
+
OrganizationSharedTokenDecode?: IOrganizationSharedTokenDecodeResolvers<ContextType>;
|
|
5561
5606
|
Overrides?: IOverridesResolvers<ContextType>;
|
|
5562
5607
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
|
5563
5608
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
|
@@ -5626,6 +5671,7 @@ export type IResolvers<ContextType = any> = {
|
|
|
5626
5671
|
export type IDirectiveResolvers<ContextType = any> = {
|
|
5627
5672
|
addAccountContext?: IAddAccountContextDirectiveResolver<any, any, ContextType>;
|
|
5628
5673
|
addNamespaceContext?: IAddNamespaceContextDirectiveResolver<any, any, ContextType>;
|
|
5674
|
+
cacheControl?: ICacheControlDirectiveResolver<any, any, ContextType>;
|
|
5629
5675
|
hasScope?: IHasScopeDirectiveResolver<any, any, ContextType>;
|
|
5630
5676
|
isAuthenticated?: IIsAuthenticatedDirectiveResolver<any, any, ContextType>;
|
|
5631
5677
|
profile?: IProfileDirectiveResolver<any, any, ContextType>;
|