You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The commit timestamp of this change in Cloud Firestore. If the operation is IMPORT, this timestamp is epoch to ensure that any operation on an imported document supersedes the IMPORT.",
79
+
},
80
+
{
81
+
name: "event_id",
82
+
mode: "NULLABLE",
83
+
type: "STRING",
84
+
description:
85
+
"The ID of the most-recent document change event that triggered the Cloud Function created by the extension. Empty for imports.",
86
+
},
87
+
{
88
+
name: "document_name",
89
+
mode: "NULLABLE",
90
+
type: "STRING",
91
+
description:
92
+
"The full name of the changed document, for example, projects/collection/databases/(default)/documents/users/me).",
93
+
},
94
+
{
95
+
name: "operation",
96
+
mode: "NULLABLE",
97
+
type: "STRING",
98
+
description: "One of CREATE, UPDATE, IMPORT.",
99
+
},
100
+
{
101
+
name: "data",
102
+
mode: "NULLABLE",
103
+
type: "STRING",
104
+
description:
105
+
"The full JSON representation of the current document state.",
106
+
},
107
+
],
108
+
};
109
+
110
+
exportconstRawChangelogSchema: any={
111
+
fields: [
112
+
{
113
+
name: "timestamp",
114
+
mode: "REQUIRED",
115
+
type: "TIMESTAMP",
116
+
description:
117
+
"The commit timestamp of this change in Cloud Firestore. If the operation is IMPORT, this timestamp is epoch to ensure that any operation on an imported document supersedes the IMPORT.",
118
+
},
119
+
{
120
+
name: "event_id",
121
+
mode: "REQUIRED",
122
+
type: "STRING",
123
+
description:
124
+
"The ID of the document change event that triggered the Cloud Function created by the extension. Empty for imports.",
125
+
},
126
+
{
127
+
name: "document_name",
128
+
mode: "REQUIRED",
129
+
type: "STRING",
130
+
description:
131
+
"The full name of the changed document, for example, projects/collection/databases/(default)/documents/users/me).",
132
+
},
133
+
{
134
+
name: "operation",
135
+
mode: "REQUIRED",
136
+
type: "STRING",
137
+
description: "One of CREATE, UPDATE, IMPORT, or DELETE.",
138
+
},
139
+
{
140
+
name: "data",
141
+
mode: "NULLABLE",
142
+
type: "STRING",
143
+
description:
144
+
"The full JSON representation of the document state after the indicated operation is applied. This field will be null for DELETE operations.",
0 commit comments