@gscdump/contracts 1.4.7 → 1.4.10

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,4 +1,4 @@
1
- import { addPartnerTeamMemberSchema, bindPartnerSiteTeamSchema, bindPartnerTeamCatalogResponseSchema, bindPartnerTeamCatalogSchema, builderStateSchema, createPartnerTeamSchema, gscComparisonFilterSchema, gscdumpAnalysisBundleResponseSchema, gscdumpAnalysisPresetSchema, gscdumpAnalysisResponseSchema, gscdumpAvailableSiteSchema, gscdumpCanonicalMismatchesResponseSchema, gscdumpDataDetailResponseSchema, gscdumpDataResponseSchema, gscdumpDeletePartnerUserResponseSchema, gscdumpIndexPercentResponseSchema, gscdumpIndexingDiagnosticsResponseSchema, gscdumpIndexingResponseSchema, gscdumpKeywordSparklinesResponseSchema, gscdumpPageTrendResponseSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapMembershipParamsSchema, gscdumpSitemapMembershipResponseSchema, gscdumpSitemapsResponseSchema, gscdumpTeamRoleSchema, gscdumpTopAssociationResponseSchema, gscdumpUserRegistrationSchema, indexingUrlsResponseSchema, partnerSiteTeamBindingResponseSchema, partnerSitemapActionResponseSchema, partnerSitemapActionSchema, partnerTeamCreatedResponseSchema, partnerTeamDeletedResponseSchema, partnerTeamMemberAddedResponseSchema, partnerTeamMemberRemovedResponseSchema, partnerTeamMemberRoleResponseSchema, partnerTeamMembersResponseSchema, partnerTeamRenamedResponseSchema, registerPartnerSiteSchema, registerPartnerUserSchema, renamePartnerTeamSchema, searchTypeSchema, siteIntIdCrosswalkResponseSchema, teamCatalogRefSchema, updatePartnerUserTokensSchema } from "../schemas.mjs";
1
+ import { addPartnerTeamMemberSchema, bindPartnerSiteTeamSchema, bindPartnerTeamCatalogResponseSchema, bindPartnerTeamCatalogSchema, builderStateSchema, createPartnerTeamSchema, gscComparisonFilterSchema, gscdumpAnalysisBundleResponseSchema, gscdumpAnalysisPresetSchema, gscdumpAnalysisResponseSchema, gscdumpAvailableSiteSchema, gscdumpCanonicalMismatchesResponseSchema, gscdumpDataDetailResponseSchema, gscdumpDataResponseSchema, gscdumpDeletePartnerUserResponseSchema, gscdumpIndexPercentResponseSchema, gscdumpIndexingDiagnosticsResponseSchema, gscdumpIndexingResponseSchema, gscdumpIndexingTransitionFieldSchema, gscdumpKeywordSparklinesResponseSchema, gscdumpPageTrendResponseSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapMembershipParamsSchema, gscdumpSitemapMembershipResponseSchema, gscdumpSitemapsResponseSchema, gscdumpTeamRoleSchema, gscdumpTopAssociationResponseSchema, gscdumpUserRegistrationSchema, indexingUrlsResponseSchema, partnerSiteTeamBindingResponseSchema, partnerSitemapActionResponseSchema, partnerSitemapActionSchema, partnerTeamCreatedResponseSchema, partnerTeamDeletedResponseSchema, partnerTeamMemberAddedResponseSchema, partnerTeamMemberRemovedResponseSchema, partnerTeamMemberRoleResponseSchema, partnerTeamMembersResponseSchema, partnerTeamRenamedResponseSchema, registerPartnerSiteSchema, registerPartnerUserSchema, renamePartnerTeamSchema, searchTypeSchema, siteIntIdCrosswalkResponseSchema, teamCatalogRefSchema, updatePartnerUserTokensSchema } from "../schemas.mjs";
2
2
  import "./version.mjs";
3
3
  import { HTTP_V1_ERROR_CODES, defineHttpOperation, defineHttpSurface, defineResponseObject, defineSuccessResponse } from "./http-core.mjs";
4
4
  import { GSCDUMP_REALTIME_ACK_POLICY, GSCDUMP_REALTIME_CLOSE_CODES, GSCDUMP_REALTIME_CONNECTION_POLICY, GSCDUMP_REALTIME_LIMITS, GSCDUMP_REALTIME_PING, GSCDUMP_REALTIME_PONG, GSCDUMP_REALTIME_REPLAY_POLICY, GSCDUMP_REALTIME_SUBPROTOCOL, GSCDUMP_REALTIME_TICKET_AUDIENCE, GSCDUMP_REALTIME_TICKET_ISSUER, GSCDUMP_REALTIME_TICKET_POLICY, GSCDUMP_REALTIME_TICKET_PREFIX, REALTIME_V1_EVENT_SEMANTICS, createRealtimeV1Schemas } from "./realtime.mjs";
@@ -86,6 +86,7 @@ function createGscdumpV1Protocol() {
86
86
  const analyticsReportDetailResponse = defineSuccessResponse(analyticsReportDetailData, analyticsMeta);
87
87
  const integerQuery = (number, wirePattern) => z.union([number, z.string().regex(wirePattern)]);
88
88
  const numericQuery = z.union([z.number(), z.string().regex(/^-?(?:\d+(?:\.\d+)?|\.\d+)$/)]);
89
+ const calendarDate = z.string().regex(/^\d{4}-\d{2}-\d{2}$/, "expected YYYY-MM-DD");
89
90
  const indexingSummaryQuery = z.strictObject({ days: integerQuery(z.number().int().min(1).max(90), /^(?:[1-9]|[1-8]\d|90)$/).optional() });
90
91
  const indexingUrlsQuery = z.strictObject({
91
92
  limit: integerQuery(z.number().int().min(1).max(500), /^(?:[1-9]|[1-9]\d|[1-4]\d{2}|500)$/).optional(),
@@ -104,6 +105,26 @@ function createGscdumpV1Protocol() {
104
105
  z.literal("false")
105
106
  ]).optional()
106
107
  });
108
+ const indexingTransitionsQuery = z.strictObject({
109
+ startDate: calendarDate.optional(),
110
+ endDate: calendarDate.optional(),
111
+ field: gscdumpIndexingTransitionFieldSchema.optional(),
112
+ fromValue: z.string().min(1).max(2048).optional(),
113
+ toValue: z.string().min(1).max(2048).optional(),
114
+ limit: integerQuery(z.number().int().min(1).max(500), /^(?:[1-9]|[1-9]\d|[1-4]\d{2}|500)$/).optional(),
115
+ offset: integerQuery(z.number().int().min(0), /^(?:0|[1-9]\d*)$/).optional()
116
+ }).superRefine((value, ctx) => {
117
+ if (value.startDate === void 0 !== (value.endDate === void 0)) ctx.addIssue({
118
+ code: "custom",
119
+ path: [value.startDate === void 0 ? "startDate" : "endDate"],
120
+ message: "startDate and endDate must be supplied together"
121
+ });
122
+ if (value.startDate && value.endDate && value.startDate > value.endDate) ctx.addIssue({
123
+ code: "custom",
124
+ path: ["endDate"],
125
+ message: "endDate must not precede startDate"
126
+ });
127
+ });
107
128
  const indexingDiagnosticsQuery = z.strictObject({
108
129
  sampleIssues: z.union([z.string(), z.array(z.string())]).optional(),
109
130
  sampleLimit: integerQuery(z.number().int().min(1).max(25), /^(?:[1-9]|1\d|2[0-5])$/).optional()
@@ -167,6 +188,50 @@ function createGscdumpV1Protocol() {
167
188
  }).strict();
168
189
  const indexingSummaryResponse = defineSuccessResponse(defineResponseObject(gscdumpIndexingResponseSchema.shape), partnerResponseMeta);
169
190
  const indexingUrlsResponse = defineSuccessResponse(defineResponseObject(indexingUrlsResponseSchema.shape), partnerResponseMeta);
191
+ const indexingTransition = defineResponseObject({
192
+ url: z.string(),
193
+ field: gscdumpIndexingTransitionFieldSchema,
194
+ fromValue: z.string().nullable(),
195
+ toValue: z.string().nullable(),
196
+ changedAfter: z.string(),
197
+ changedBefore: z.string(),
198
+ detectedAt: z.string(),
199
+ observationGapDays: z.number().nonnegative()
200
+ });
201
+ const emptyObservationWindow = defineResponseObject({
202
+ _tag: z.literal("empty"),
203
+ gapDaysMedian: z.null(),
204
+ gapDaysP90: z.null(),
205
+ sampleSize: z.literal(0)
206
+ });
207
+ const sampledObservationWindow = defineResponseObject({
208
+ _tag: z.literal("sampled"),
209
+ gapDaysMedian: z.number().nonnegative(),
210
+ gapDaysP90: z.number().nonnegative(),
211
+ sampleSize: z.number().int().positive()
212
+ });
213
+ const indexingTransitionsPagination = defineResponseObject({
214
+ total: z.number().int().nonnegative(),
215
+ limit: z.number().int().positive(),
216
+ offset: z.number().int().nonnegative(),
217
+ hasMore: z.boolean()
218
+ });
219
+ const indexingTransitionsMeta = defineResponseObject({
220
+ siteUrl: z.string(),
221
+ startDate: calendarDate,
222
+ endDate: calendarDate
223
+ });
224
+ const indexingTransitionsResponse = defineSuccessResponse(defineResponseObject({
225
+ transitions: z.array(indexingTransition.producer),
226
+ observationWindow: z.discriminatedUnion("_tag", [emptyObservationWindow.producer, sampledObservationWindow.producer]),
227
+ pagination: indexingTransitionsPagination.producer,
228
+ meta: indexingTransitionsMeta.producer
229
+ }, {
230
+ transitions: z.array(indexingTransition.client),
231
+ observationWindow: z.discriminatedUnion("_tag", [emptyObservationWindow.client, sampledObservationWindow.client]),
232
+ pagination: indexingTransitionsPagination.client,
233
+ meta: indexingTransitionsMeta.client
234
+ }), partnerResponseMeta);
170
235
  const indexingDiagnosticsResponse = defineSuccessResponse(defineResponseObject(gscdumpIndexingDiagnosticsResponseSchema.shape), partnerResponseMeta);
171
236
  const sitemapsResponse = defineSuccessResponse(defineResponseObject(gscdumpSitemapsResponseSchema.shape), partnerResponseMeta);
172
237
  const sitemapChangesResponse = defineSuccessResponse(defineResponseObject({
@@ -188,7 +253,6 @@ function createGscdumpV1Protocol() {
188
253
  updated: z.boolean(),
189
254
  sites: z.array(gscdumpAvailableSiteSchema)
190
255
  }), partnerResponseMeta);
191
- const calendarDate = z.string().regex(/^\d{4}-\d{2}-\d{2}$/, "expected YYYY-MM-DD");
192
256
  const trendQuery = z.strictObject({
193
257
  startDate: calendarDate,
194
258
  endDate: calendarDate,
@@ -1053,6 +1117,89 @@ function createGscdumpV1Protocol() {
1053
1117
  }
1054
1118
  }
1055
1119
  }),
1120
+ listSiteIndexingTransitions: defineHttpOperation({
1121
+ id: "partner.sites.indexing.transitions.list",
1122
+ method: "GET",
1123
+ path: "/sites/{siteId}/indexing/transitions",
1124
+ visibility: "public",
1125
+ semantics: {
1126
+ kind: "query",
1127
+ sideEffects: "none",
1128
+ idempotent: true,
1129
+ retry: "idempotent",
1130
+ readConsistency: "primary"
1131
+ },
1132
+ auth: {
1133
+ credentials: ["user_key", "partner_key"],
1134
+ scopes: ["indexing:read"],
1135
+ ownership: [{
1136
+ credential: "user_key",
1137
+ rule: "authorized_site"
1138
+ }, {
1139
+ credential: "partner_key",
1140
+ rule: "authorized_site"
1141
+ }]
1142
+ },
1143
+ request: {
1144
+ params: z.strictObject({ siteId: realtimeSchemas.publicSiteId }),
1145
+ query: indexingTransitionsQuery,
1146
+ headers: requestHeaders,
1147
+ body: null
1148
+ },
1149
+ responses: { 200: indexingTransitionsResponse },
1150
+ errors: partnerSiteErrors,
1151
+ errorResponse: errorEnvelopeSchemas(partnerSiteErrors, realtimeSchemas.publicRequestId),
1152
+ resources: {
1153
+ reads: [{
1154
+ type: "site.indexing",
1155
+ idFrom: "params.siteId"
1156
+ }],
1157
+ changes: []
1158
+ },
1159
+ lifecycle: { introduced: "1.4.8" },
1160
+ docs: {
1161
+ summary: "List observed indexing transitions",
1162
+ description: "Returns URL inspection state changes as bounded observation intervals. detectedAt is the first observation showing the new state, not the exact change time.",
1163
+ tags: ["Indexing"],
1164
+ examples: {
1165
+ request: {
1166
+ params: { siteId: "s_01" },
1167
+ query: {
1168
+ startDate: "2026-06-01",
1169
+ endDate: "2026-07-26",
1170
+ field: "coverageState"
1171
+ }
1172
+ },
1173
+ response: {
1174
+ data: {
1175
+ transitions: [],
1176
+ observationWindow: {
1177
+ _tag: "empty",
1178
+ gapDaysMedian: null,
1179
+ gapDaysP90: null,
1180
+ sampleSize: 0
1181
+ },
1182
+ pagination: {
1183
+ total: 0,
1184
+ limit: 100,
1185
+ offset: 0,
1186
+ hasMore: false
1187
+ },
1188
+ meta: {
1189
+ siteUrl: "sc-domain:example.com",
1190
+ startDate: "2026-06-01",
1191
+ endDate: "2026-07-26"
1192
+ }
1193
+ },
1194
+ meta: {
1195
+ requestId: "req_01",
1196
+ surface: "partner",
1197
+ version: "1.0"
1198
+ }
1199
+ }
1200
+ }
1201
+ }
1202
+ }),
1056
1203
  getSiteIndexingDiagnostics: defineHttpOperation({
1057
1204
  id: "partner.sites.indexing.diagnostics.get",
1058
1205
  method: "GET",
@@ -4070,6 +4217,8 @@ function createGscdumpV1Protocol() {
4070
4217
  indexingDiagnosticsResponse,
4071
4218
  indexingSummaryQuery,
4072
4219
  indexingSummaryResponse,
4220
+ indexingTransitionsQuery,
4221
+ indexingTransitionsResponse,
4073
4222
  indexingUrlsQuery,
4074
4223
  indexingUrlsResponse,
4075
4224
  lifecycleResponse,
@@ -1,6 +1,6 @@
1
1
  import { GSCDUMP_HTTP_V1_VERSION } from "./version.mjs";
2
2
  import { CompatibleResponseSchema, HTTP_V1_CREDENTIALS, HTTP_V1_CREDENTIAL_SCOPES, HTTP_V1_ERROR_CODES, HTTP_V1_METHODS, HTTP_V1_SCOPES, HTTP_V1_SURFACES, HttpV1Credential, HttpV1ErrorCode, HttpV1Method, HttpV1OperationDefinition, HttpV1OwnershipRule, HttpV1RequestSchemas, HttpV1ResourceReference, HttpV1ResourceType, HttpV1Scope, HttpV1Semantics, HttpV1Surface, HttpV1SurfaceName, HttpV1Visibility, buildHttpOperationPath, defineHttpOperation, defineHttpSurface, defineResponseObject, defineSuccessResponse } from "./http-core.mjs";
3
3
  import { GSCDUMP_REALTIME_ACK_POLICY, GSCDUMP_REALTIME_CLOSE_CODES, GSCDUMP_REALTIME_CONNECTION_POLICY, GSCDUMP_REALTIME_LIMITS, GSCDUMP_REALTIME_MAX_CONNECTION_SECONDS, GSCDUMP_REALTIME_PING, GSCDUMP_REALTIME_PONG, GSCDUMP_REALTIME_PROTOCOL_VERSION, GSCDUMP_REALTIME_REPLAY_POLICY, GSCDUMP_REALTIME_SUBPROTOCOL, GSCDUMP_REALTIME_TICKET_AUDIENCE, GSCDUMP_REALTIME_TICKET_ISSUER, GSCDUMP_REALTIME_TICKET_POLICY, GSCDUMP_REALTIME_TICKET_PREFIX, GSCDUMP_REALTIME_TICKET_TTL_SECONDS, REALTIME_V1_EVENT_NAMES, REALTIME_V1_EVENT_SEMANTICS, REALTIME_V1_RESOURCE_TYPES, RealtimeTicketV1Response, RealtimeV1ClientFrame, RealtimeV1Cursor, RealtimeV1Event, RealtimeV1ResourceChange, RealtimeV1Schemas, RealtimeV1ServerFrame, RealtimeV1StreamHead, RealtimeV1StreamId, RealtimeV1TicketClaims, RealtimeV1TicketRequest, createRealtimeV1Schemas } from "./realtime.mjs";
4
- import { AnalyticsReportDetailV1Request, AnalyticsReportDetailV1Response, AnalyticsReportV1Request, AnalyticsReportV1Response, AnalyticsRowsV1Request, AnalyticsRowsV1Response, GscdumpV1ErrorEnvelope, GscdumpV1Protocol, GscdumpV1RequestMetadata, PartnerAnalysisBundleV1Response, PartnerAnalysisV1Response, PartnerAvailableSitesV1Response, PartnerIndexingDiagnosticsV1Response, PartnerIndexingUrlsV1Response, PartnerIndexingV1Response, PartnerSiteDeletionV1Response, PartnerSiteRegistrationV1Response, PartnerSitemapChangesV1Response, PartnerSitemapsV1Response, PartnerUserLifecycleV1Response, createGscdumpV1Protocol } from "./operations.mjs";
4
+ import { AnalyticsReportDetailV1Request, AnalyticsReportDetailV1Response, AnalyticsReportV1Request, AnalyticsReportV1Response, AnalyticsRowsV1Request, AnalyticsRowsV1Response, GscdumpV1ErrorEnvelope, GscdumpV1Protocol, GscdumpV1RequestMetadata, PartnerAnalysisBundleV1Response, PartnerAnalysisV1Response, PartnerAvailableSitesV1Response, PartnerIndexingDiagnosticsV1Response, PartnerIndexingTransitionsV1Response, PartnerIndexingUrlsV1Response, PartnerIndexingV1Response, PartnerSiteDeletionV1Response, PartnerSiteRegistrationV1Response, PartnerSitemapChangesV1Response, PartnerSitemapsV1Response, PartnerUserLifecycleV1Response, createGscdumpV1Protocol } from "./operations.mjs";
5
5
  import "./http.mjs";
6
- export { AnalyticsReportDetailV1Request, AnalyticsReportDetailV1Response, AnalyticsReportV1Request, AnalyticsReportV1Response, AnalyticsRowsV1Request, AnalyticsRowsV1Response, CompatibleResponseSchema, GSCDUMP_HTTP_V1_VERSION, GSCDUMP_REALTIME_ACK_POLICY, GSCDUMP_REALTIME_CLOSE_CODES, GSCDUMP_REALTIME_CONNECTION_POLICY, GSCDUMP_REALTIME_LIMITS, GSCDUMP_REALTIME_MAX_CONNECTION_SECONDS, GSCDUMP_REALTIME_PING, GSCDUMP_REALTIME_PONG, GSCDUMP_REALTIME_PROTOCOL_VERSION, GSCDUMP_REALTIME_REPLAY_POLICY, GSCDUMP_REALTIME_SUBPROTOCOL, GSCDUMP_REALTIME_TICKET_AUDIENCE, GSCDUMP_REALTIME_TICKET_ISSUER, GSCDUMP_REALTIME_TICKET_POLICY, GSCDUMP_REALTIME_TICKET_PREFIX, GSCDUMP_REALTIME_TICKET_TTL_SECONDS, GscdumpV1ErrorEnvelope, GscdumpV1Protocol, GscdumpV1RequestMetadata, HTTP_V1_CREDENTIALS, HTTP_V1_CREDENTIAL_SCOPES, HTTP_V1_ERROR_CODES, HTTP_V1_METHODS, HTTP_V1_SCOPES, HTTP_V1_SURFACES, HttpV1Credential, HttpV1ErrorCode, HttpV1Method, HttpV1OperationDefinition, HttpV1OwnershipRule, HttpV1RequestSchemas, HttpV1ResourceReference, HttpV1ResourceType, HttpV1Scope, HttpV1Semantics, HttpV1Surface, HttpV1SurfaceName, HttpV1Visibility, PartnerAnalysisBundleV1Response, PartnerAnalysisV1Response, PartnerAvailableSitesV1Response, PartnerIndexingDiagnosticsV1Response, PartnerIndexingUrlsV1Response, PartnerIndexingV1Response, PartnerSiteDeletionV1Response, PartnerSiteRegistrationV1Response, PartnerSitemapChangesV1Response, PartnerSitemapsV1Response, PartnerUserLifecycleV1Response, REALTIME_V1_EVENT_NAMES, REALTIME_V1_EVENT_SEMANTICS, REALTIME_V1_RESOURCE_TYPES, RealtimeTicketV1Response, RealtimeV1ClientFrame, RealtimeV1Cursor, RealtimeV1Event, RealtimeV1ResourceChange, RealtimeV1Schemas, RealtimeV1ServerFrame, RealtimeV1StreamHead, RealtimeV1StreamId, RealtimeV1TicketClaims, RealtimeV1TicketRequest, buildHttpOperationPath, createGscdumpV1Protocol, createRealtimeV1Schemas, defineHttpOperation, defineHttpSurface, defineResponseObject, defineSuccessResponse };
6
+ export { AnalyticsReportDetailV1Request, AnalyticsReportDetailV1Response, AnalyticsReportV1Request, AnalyticsReportV1Response, AnalyticsRowsV1Request, AnalyticsRowsV1Response, CompatibleResponseSchema, GSCDUMP_HTTP_V1_VERSION, GSCDUMP_REALTIME_ACK_POLICY, GSCDUMP_REALTIME_CLOSE_CODES, GSCDUMP_REALTIME_CONNECTION_POLICY, GSCDUMP_REALTIME_LIMITS, GSCDUMP_REALTIME_MAX_CONNECTION_SECONDS, GSCDUMP_REALTIME_PING, GSCDUMP_REALTIME_PONG, GSCDUMP_REALTIME_PROTOCOL_VERSION, GSCDUMP_REALTIME_REPLAY_POLICY, GSCDUMP_REALTIME_SUBPROTOCOL, GSCDUMP_REALTIME_TICKET_AUDIENCE, GSCDUMP_REALTIME_TICKET_ISSUER, GSCDUMP_REALTIME_TICKET_POLICY, GSCDUMP_REALTIME_TICKET_PREFIX, GSCDUMP_REALTIME_TICKET_TTL_SECONDS, GscdumpV1ErrorEnvelope, GscdumpV1Protocol, GscdumpV1RequestMetadata, HTTP_V1_CREDENTIALS, HTTP_V1_CREDENTIAL_SCOPES, HTTP_V1_ERROR_CODES, HTTP_V1_METHODS, HTTP_V1_SCOPES, HTTP_V1_SURFACES, HttpV1Credential, HttpV1ErrorCode, HttpV1Method, HttpV1OperationDefinition, HttpV1OwnershipRule, HttpV1RequestSchemas, HttpV1ResourceReference, HttpV1ResourceType, HttpV1Scope, HttpV1Semantics, HttpV1Surface, HttpV1SurfaceName, HttpV1Visibility, PartnerAnalysisBundleV1Response, PartnerAnalysisV1Response, PartnerAvailableSitesV1Response, PartnerIndexingDiagnosticsV1Response, PartnerIndexingTransitionsV1Response, PartnerIndexingUrlsV1Response, PartnerIndexingV1Response, PartnerSiteDeletionV1Response, PartnerSiteRegistrationV1Response, PartnerSitemapChangesV1Response, PartnerSitemapsV1Response, PartnerUserLifecycleV1Response, REALTIME_V1_EVENT_NAMES, REALTIME_V1_EVENT_SEMANTICS, REALTIME_V1_RESOURCE_TYPES, RealtimeTicketV1Response, RealtimeV1ClientFrame, RealtimeV1Cursor, RealtimeV1Event, RealtimeV1ResourceChange, RealtimeV1Schemas, RealtimeV1ServerFrame, RealtimeV1StreamHead, RealtimeV1StreamId, RealtimeV1TicketClaims, RealtimeV1TicketRequest, buildHttpOperationPath, createGscdumpV1Protocol, createRealtimeV1Schemas, defineHttpOperation, defineHttpSurface, defineResponseObject, defineSuccessResponse };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/contracts",
3
3
  "type": "module",
4
- "version": "1.4.7",
4
+ "version": "1.4.10",
5
5
  "description": "Shared gscdump.com API, webhook, realtime, and lifecycle contracts.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",