@glissandoo/lib 1.123.0-dev.212.1 → 1.123.0-dev.214.1
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare namespace CalendarFeedFbFunctionsTypes {
|
|
2
2
|
interface Preferences {
|
|
3
3
|
includeTentative: boolean;
|
|
4
|
+
includePending: boolean;
|
|
4
5
|
}
|
|
5
6
|
interface Status extends Preferences {
|
|
6
7
|
enabled: boolean;
|
|
@@ -18,6 +19,7 @@ export declare namespace CalendarFeedFbFunctionsTypes {
|
|
|
18
19
|
type GetStatusResult = Status;
|
|
19
20
|
interface UpdatePreferencesParams {
|
|
20
21
|
includeTentative?: boolean;
|
|
22
|
+
includePending?: boolean;
|
|
21
23
|
}
|
|
22
24
|
type UpdatePreferencesResult = Status;
|
|
23
25
|
type RegenerateParams = void;
|
package/package.json
CHANGED
|
@@ -105,6 +105,7 @@ export type Database = {
|
|
|
105
105
|
content_revision: number;
|
|
106
106
|
created_at: string;
|
|
107
107
|
enabled: boolean;
|
|
108
|
+
include_pending: boolean;
|
|
108
109
|
include_tentative: boolean;
|
|
109
110
|
revoked_at: string | null;
|
|
110
111
|
token_hash: string;
|
|
@@ -115,6 +116,7 @@ export type Database = {
|
|
|
115
116
|
content_revision?: number;
|
|
116
117
|
created_at?: string;
|
|
117
118
|
enabled?: boolean;
|
|
119
|
+
include_pending?: boolean;
|
|
118
120
|
include_tentative?: boolean;
|
|
119
121
|
revoked_at?: string | null;
|
|
120
122
|
token_hash: string;
|
|
@@ -125,6 +127,7 @@ export type Database = {
|
|
|
125
127
|
content_revision?: number;
|
|
126
128
|
created_at?: string;
|
|
127
129
|
enabled?: boolean;
|
|
130
|
+
include_pending?: boolean;
|
|
128
131
|
include_tentative?: boolean;
|
|
129
132
|
revoked_at?: string | null;
|
|
130
133
|
token_hash?: string;
|
|
@@ -3068,6 +3071,17 @@ export type Database = {
|
|
|
3068
3071
|
};
|
|
3069
3072
|
};
|
|
3070
3073
|
Functions: {
|
|
3074
|
+
backfillEventDatetimeEnds: {
|
|
3075
|
+
Args: {
|
|
3076
|
+
p_apply?: boolean;
|
|
3077
|
+
p_events: Json;
|
|
3078
|
+
};
|
|
3079
|
+
Returns: {
|
|
3080
|
+
changed: number;
|
|
3081
|
+
matched: number;
|
|
3082
|
+
mismatched: number;
|
|
3083
|
+
}[];
|
|
3084
|
+
};
|
|
3071
3085
|
catalogComposerLocationMatches: {
|
|
3072
3086
|
Args: {
|
|
3073
3087
|
composerId: string;
|
|
@@ -3310,6 +3324,7 @@ export type Database = {
|
|
|
3310
3324
|
};
|
|
3311
3325
|
getCalendarFeedEvents: {
|
|
3312
3326
|
Args: {
|
|
3327
|
+
p_include_pending: boolean;
|
|
3313
3328
|
p_include_tentative: boolean;
|
|
3314
3329
|
p_range_end: string;
|
|
3315
3330
|
p_range_start: string;
|
|
@@ -3327,6 +3342,7 @@ export type Database = {
|
|
|
3327
3342
|
latitude: number;
|
|
3328
3343
|
location: string;
|
|
3329
3344
|
longitude: number;
|
|
3345
|
+
participationStatus: string;
|
|
3330
3346
|
sequence: number;
|
|
3331
3347
|
startsAt: string;
|
|
3332
3348
|
status: string;
|
|
@@ -3346,6 +3362,7 @@ export type Database = {
|
|
|
3346
3362
|
p_token_hash: string;
|
|
3347
3363
|
};
|
|
3348
3364
|
Returns: {
|
|
3365
|
+
includePending: boolean;
|
|
3349
3366
|
includeTentative: boolean;
|
|
3350
3367
|
userId: string;
|
|
3351
3368
|
}[];
|
|
@@ -104,6 +104,7 @@ export type Database = {
|
|
|
104
104
|
content_revision: number;
|
|
105
105
|
created_at: string;
|
|
106
106
|
enabled: boolean;
|
|
107
|
+
include_pending: boolean;
|
|
107
108
|
include_tentative: boolean;
|
|
108
109
|
revoked_at: string | null;
|
|
109
110
|
token_hash: string;
|
|
@@ -114,6 +115,7 @@ export type Database = {
|
|
|
114
115
|
content_revision?: number;
|
|
115
116
|
created_at?: string;
|
|
116
117
|
enabled?: boolean;
|
|
118
|
+
include_pending?: boolean;
|
|
117
119
|
include_tentative?: boolean;
|
|
118
120
|
revoked_at?: string | null;
|
|
119
121
|
token_hash: string;
|
|
@@ -124,6 +126,7 @@ export type Database = {
|
|
|
124
126
|
content_revision?: number;
|
|
125
127
|
created_at?: string;
|
|
126
128
|
enabled?: boolean;
|
|
129
|
+
include_pending?: boolean;
|
|
127
130
|
include_tentative?: boolean;
|
|
128
131
|
revoked_at?: string | null;
|
|
129
132
|
token_hash?: string;
|
|
@@ -3079,6 +3082,14 @@ export type Database = {
|
|
|
3079
3082
|
};
|
|
3080
3083
|
};
|
|
3081
3084
|
Functions: {
|
|
3085
|
+
backfillEventDatetimeEnds: {
|
|
3086
|
+
Args: { p_apply?: boolean; p_events: Json };
|
|
3087
|
+
Returns: {
|
|
3088
|
+
changed: number;
|
|
3089
|
+
matched: number;
|
|
3090
|
+
mismatched: number;
|
|
3091
|
+
}[];
|
|
3092
|
+
};
|
|
3082
3093
|
catalogComposerLocationMatches: {
|
|
3083
3094
|
Args: {
|
|
3084
3095
|
composerId: string;
|
|
@@ -3283,6 +3294,7 @@ export type Database = {
|
|
|
3283
3294
|
};
|
|
3284
3295
|
getCalendarFeedEvents: {
|
|
3285
3296
|
Args: {
|
|
3297
|
+
p_include_pending: boolean;
|
|
3286
3298
|
p_include_tentative: boolean;
|
|
3287
3299
|
p_range_end: string;
|
|
3288
3300
|
p_range_start: string;
|
|
@@ -3300,6 +3312,7 @@ export type Database = {
|
|
|
3300
3312
|
latitude: number;
|
|
3301
3313
|
location: string;
|
|
3302
3314
|
longitude: number;
|
|
3315
|
+
participationStatus: string;
|
|
3303
3316
|
sequence: number;
|
|
3304
3317
|
startsAt: string;
|
|
3305
3318
|
status: string;
|
|
@@ -3312,6 +3325,7 @@ export type Database = {
|
|
|
3312
3325
|
resolveCalendarFeed: {
|
|
3313
3326
|
Args: { p_token_hash: string };
|
|
3314
3327
|
Returns: {
|
|
3328
|
+
includePending: boolean;
|
|
3315
3329
|
includeTentative: boolean;
|
|
3316
3330
|
userId: string;
|
|
3317
3331
|
}[];
|