@eide/foir-proto-ts 0.48.0 → 0.49.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/package.json +2 -1
- package/src/identity/v1/identity_connect.d.ts +28 -1
- package/src/identity/v1/identity_connect.js +28 -1
- package/src/identity/v1/identity_pb.d.ts +140 -0
- package/src/identity/v1/identity_pb.js +107 -64
- package/src/models/v1/models_connect.d.ts +32 -1
- package/src/models/v1/models_connect.js +32 -1
- package/src/models/v1/models_pb.d.ts +145 -0
- package/src/models/v1/models_pb.js +44 -1
- package/src/operations/v1/operations_connect.d.ts +63 -1
- package/src/operations/v1/operations_connect.js +63 -1
- package/src/operations/v1/operations_pb.d.ts +363 -0
- package/src/operations/v1/operations_pb.js +157 -65
- package/src/publish/v1/publish_pb.d.ts +238 -0
- package/src/publish/v1/publish_pb.js +64 -0
- package/src/settings/v1/settings_connect.d.ts +72 -1
- package/src/settings/v1/settings_connect.js +72 -1
- package/src/settings/v1/settings_pb.d.ts +330 -0
- package/src/settings/v1/settings_pb.js +100 -1
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "import_extension=js"
|
|
2
|
+
// @generated from file publish/v1/publish.proto (package publish.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file publish/v1/publish.proto.
|
|
11
|
+
*/
|
|
12
|
+
export declare const file_publish_v1_publish: GenFile;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* @generated from message publish.v1.BreakingChange
|
|
16
|
+
*/
|
|
17
|
+
export declare type BreakingChange = Message<"publish.v1.BreakingChange"> & {
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: publish.v1.BreakingChangeSeverity severity = 1;
|
|
20
|
+
*/
|
|
21
|
+
severity: BreakingChangeSeverity;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* One of: "model" | "operation" | "context_dimension" | "auth_provider"
|
|
25
|
+
* | "profile_schema".
|
|
26
|
+
*
|
|
27
|
+
* @generated from field: string entity_kind = 2;
|
|
28
|
+
*/
|
|
29
|
+
entityKind: string;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* The user-facing key of the entity (e.g. model key "article").
|
|
33
|
+
*
|
|
34
|
+
* @generated from field: string entity_key = 3;
|
|
35
|
+
*/
|
|
36
|
+
entityKey: string;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Path within the entity that changed, e.g. "fields.subtitle" or
|
|
40
|
+
* "config.publishing".
|
|
41
|
+
*
|
|
42
|
+
* @generated from field: string path = 4;
|
|
43
|
+
*/
|
|
44
|
+
path: string;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Human-readable explanation suitable for surfacing in the admin UI.
|
|
48
|
+
*
|
|
49
|
+
* @generated from field: string description = 5;
|
|
50
|
+
*/
|
|
51
|
+
description: string;
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Describes the message publish.v1.BreakingChange.
|
|
56
|
+
* Use `create(BreakingChangeSchema)` to create a new message.
|
|
57
|
+
*/
|
|
58
|
+
export declare const BreakingChangeSchema: GenMessage<BreakingChange>;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* PublishStatus is returned by per-entity GetXPublishStatus RPCs. Drives the
|
|
62
|
+
* "Published v3 · Draft v5" badge in the admin UI and the per-entity diff
|
|
63
|
+
* modal.
|
|
64
|
+
*
|
|
65
|
+
* @generated from message publish.v1.PublishStatus
|
|
66
|
+
*/
|
|
67
|
+
export declare type PublishStatus = Message<"publish.v1.PublishStatus"> & {
|
|
68
|
+
/**
|
|
69
|
+
* @generated from field: optional string published_version_id = 1;
|
|
70
|
+
*/
|
|
71
|
+
publishedVersionId?: string | undefined;
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* @generated from field: optional string current_version_id = 2;
|
|
75
|
+
*/
|
|
76
|
+
currentVersionId?: string | undefined;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: optional google.protobuf.Timestamp published_at = 3;
|
|
80
|
+
*/
|
|
81
|
+
publishedAt?: Timestamp | undefined;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* @generated from field: optional string published_by = 4;
|
|
85
|
+
*/
|
|
86
|
+
publishedBy?: string | undefined;
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* True when current_version_id != published_version_id (or current exists
|
|
90
|
+
* and published does not). Computed server-side so the UI doesn't have to
|
|
91
|
+
* reproduce the comparison logic.
|
|
92
|
+
*
|
|
93
|
+
* @generated from field: bool has_pending_changes = 5;
|
|
94
|
+
*/
|
|
95
|
+
hasPendingChanges: boolean;
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Detected schema-shape changes between published and current draft.
|
|
99
|
+
* Empty when has_pending_changes is false; non-empty when there are
|
|
100
|
+
* changes to publish (additive entries are still surfaced so the user
|
|
101
|
+
* sees the full delta).
|
|
102
|
+
*
|
|
103
|
+
* @generated from field: repeated publish.v1.BreakingChange breaking_changes = 6;
|
|
104
|
+
*/
|
|
105
|
+
breakingChanges: BreakingChange[];
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Describes the message publish.v1.PublishStatus.
|
|
110
|
+
* Use `create(PublishStatusSchema)` to create a new message.
|
|
111
|
+
*/
|
|
112
|
+
export declare const PublishStatusSchema: GenMessage<PublishStatus>;
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* PendingEntity describes one entity with unpublished changes. Returned in
|
|
116
|
+
* the project-wide GetProjectPublishStatus response. Drives the "Pending
|
|
117
|
+
* schema changes" page that lists every entity due for publish.
|
|
118
|
+
*
|
|
119
|
+
* @generated from message publish.v1.PendingEntity
|
|
120
|
+
*/
|
|
121
|
+
export declare type PendingEntity = Message<"publish.v1.PendingEntity"> & {
|
|
122
|
+
/**
|
|
123
|
+
* @generated from field: string entity_kind = 1;
|
|
124
|
+
*/
|
|
125
|
+
entityKind: string;
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* @generated from field: string entity_id = 2;
|
|
129
|
+
*/
|
|
130
|
+
entityId: string;
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* @generated from field: string entity_key = 3;
|
|
134
|
+
*/
|
|
135
|
+
entityKey: string;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* @generated from field: string entity_name = 4;
|
|
139
|
+
*/
|
|
140
|
+
entityName: string;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Short summary of what changed, e.g. "added field 'subtitle'", "removed
|
|
144
|
+
* operation 'sendInvoice'". Used in the list view; the diff modal pulls
|
|
145
|
+
* the full breaking_changes list.
|
|
146
|
+
*
|
|
147
|
+
* @generated from field: string change_summary = 5;
|
|
148
|
+
*/
|
|
149
|
+
changeSummary: string;
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* @generated from field: repeated publish.v1.BreakingChange breaking_changes = 6;
|
|
153
|
+
*/
|
|
154
|
+
breakingChanges: BreakingChange[];
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Describes the message publish.v1.PendingEntity.
|
|
159
|
+
* Use `create(PendingEntitySchema)` to create a new message.
|
|
160
|
+
*/
|
|
161
|
+
export declare const PendingEntitySchema: GenMessage<PendingEntity>;
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* SchemaChannel selects which version of the GraphQL schema should be
|
|
165
|
+
* served / introspected. PUBLISHED is the default for any caller — newer
|
|
166
|
+
* services that need draft introspection (admin app, sk_ keys with the
|
|
167
|
+
* drafts:read scope sending X-Foir-Schema-Channel: draft) explicitly
|
|
168
|
+
* request DRAFT.
|
|
169
|
+
*
|
|
170
|
+
* @generated from enum publish.v1.SchemaChannel
|
|
171
|
+
*/
|
|
172
|
+
export enum SchemaChannel {
|
|
173
|
+
/**
|
|
174
|
+
* The zero / wire-default value MUST be UNSPECIFIED for buf lint
|
|
175
|
+
* compliance. It is treated as PUBLISHED everywhere — the safer
|
|
176
|
+
* behaviour for any caller that hasn't been updated to set a channel
|
|
177
|
+
* explicitly.
|
|
178
|
+
*
|
|
179
|
+
* @generated from enum value: SCHEMA_CHANNEL_UNSPECIFIED = 0;
|
|
180
|
+
*/
|
|
181
|
+
UNSPECIFIED = 0,
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* @generated from enum value: SCHEMA_CHANNEL_PUBLISHED = 1;
|
|
185
|
+
*/
|
|
186
|
+
PUBLISHED = 1,
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* @generated from enum value: SCHEMA_CHANNEL_DRAFT = 2;
|
|
190
|
+
*/
|
|
191
|
+
DRAFT = 2,
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* Describes the enum publish.v1.SchemaChannel.
|
|
196
|
+
*/
|
|
197
|
+
export declare const SchemaChannelSchema: GenEnum<SchemaChannel>;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* @generated from enum publish.v1.BreakingChangeSeverity
|
|
201
|
+
*/
|
|
202
|
+
export enum BreakingChangeSeverity {
|
|
203
|
+
/**
|
|
204
|
+
* @generated from enum value: BREAKING_CHANGE_SEVERITY_UNSPECIFIED = 0;
|
|
205
|
+
*/
|
|
206
|
+
UNSPECIFIED = 0,
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Safe additive change — new optional field, new type, new operation.
|
|
210
|
+
* Existing queries are unaffected.
|
|
211
|
+
*
|
|
212
|
+
* @generated from enum value: BREAKING_CHANGE_SEVERITY_ADDITIVE = 1;
|
|
213
|
+
*/
|
|
214
|
+
ADDITIVE = 1,
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* Existing-clients-may-care change — deprecation marker added,
|
|
218
|
+
* description changed, default value changed.
|
|
219
|
+
*
|
|
220
|
+
* @generated from enum value: BREAKING_CHANGE_SEVERITY_WARNING = 2;
|
|
221
|
+
*/
|
|
222
|
+
WARNING = 2,
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Definitely breaks existing queries — removed field/type, narrowed
|
|
226
|
+
* type (Int → String), required-flag added on a previously-optional
|
|
227
|
+
* field, removed enum value, removed operation.
|
|
228
|
+
*
|
|
229
|
+
* @generated from enum value: BREAKING_CHANGE_SEVERITY_BREAKING = 3;
|
|
230
|
+
*/
|
|
231
|
+
BREAKING = 3,
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* Describes the enum publish.v1.BreakingChangeSeverity.
|
|
236
|
+
*/
|
|
237
|
+
export declare const BreakingChangeSeveritySchema: GenEnum<BreakingChangeSeverity>;
|
|
238
|
+
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "import_extension=js"
|
|
2
|
+
// @generated from file publish/v1/publish.proto (package publish.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { enumDesc, fileDesc, messageDesc, tsEnum } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file publish/v1/publish.proto.
|
|
10
|
+
*/
|
|
11
|
+
export const file_publish_v1_publish = /*@__PURE__*/
|
|
12
|
+
fileDesc("ChhwdWJsaXNoL3YxL3B1Ymxpc2gucHJvdG8SCnB1Ymxpc2gudjEikgEKDkJyZWFraW5nQ2hhbmdlEjQKCHNldmVyaXR5GAEgASgOMiIucHVibGlzaC52MS5CcmVha2luZ0NoYW5nZVNldmVyaXR5EhMKC2VudGl0eV9raW5kGAIgASgJEhIKCmVudGl0eV9rZXkYAyABKAkSDAoEcGF0aBgEIAEoCRITCgtkZXNjcmlwdGlvbhgFIAEoCSLKAgoNUHVibGlzaFN0YXR1cxIhChRwdWJsaXNoZWRfdmVyc2lvbl9pZBgBIAEoCUgAiAEBEh8KEmN1cnJlbnRfdmVyc2lvbl9pZBgCIAEoCUgBiAEBEjUKDHB1Ymxpc2hlZF9hdBgDIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBIAogBARIZCgxwdWJsaXNoZWRfYnkYBCABKAlIA4gBARIbChNoYXNfcGVuZGluZ19jaGFuZ2VzGAUgASgIEjQKEGJyZWFraW5nX2NoYW5nZXMYBiADKAsyGi5wdWJsaXNoLnYxLkJyZWFraW5nQ2hhbmdlQhcKFV9wdWJsaXNoZWRfdmVyc2lvbl9pZEIVChNfY3VycmVudF92ZXJzaW9uX2lkQg8KDV9wdWJsaXNoZWRfYXRCDwoNX3B1Ymxpc2hlZF9ieSKuAQoNUGVuZGluZ0VudGl0eRITCgtlbnRpdHlfa2luZBgBIAEoCRIRCgllbnRpdHlfaWQYAiABKAkSEgoKZW50aXR5X2tleRgDIAEoCRITCgtlbnRpdHlfbmFtZRgEIAEoCRIWCg5jaGFuZ2Vfc3VtbWFyeRgFIAEoCRI0ChBicmVha2luZ19jaGFuZ2VzGAYgAygLMhoucHVibGlzaC52MS5CcmVha2luZ0NoYW5nZSpnCg1TY2hlbWFDaGFubmVsEh4KGlNDSEVNQV9DSEFOTkVMX1VOU1BFQ0lGSUVEEAASHAoYU0NIRU1BX0NIQU5ORUxfUFVCTElTSEVEEAESGAoUU0NIRU1BX0NIQU5ORUxfRFJBRlQQAiq2AQoWQnJlYWtpbmdDaGFuZ2VTZXZlcml0eRIoCiRCUkVBS0lOR19DSEFOR0VfU0VWRVJJVFlfVU5TUEVDSUZJRUQQABIlCiFCUkVBS0lOR19DSEFOR0VfU0VWRVJJVFlfQURESVRJVkUQARIkCiBCUkVBS0lOR19DSEFOR0VfU0VWRVJJVFlfV0FSTklORxACEiUKIUJSRUFLSU5HX0NIQU5HRV9TRVZFUklUWV9CUkVBS0lORxADQjtaOWdpdGh1Yi5jb20vZWlkZXN0dWRpby9mb2lyL2dlbi9wcm90by9wdWJsaXNoL3YxO3B1Ymxpc2h2MWIGcHJvdG8z", [file_google_protobuf_timestamp]);
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Describes the message publish.v1.BreakingChange.
|
|
16
|
+
* Use `create(BreakingChangeSchema)` to create a new message.
|
|
17
|
+
*/
|
|
18
|
+
export const BreakingChangeSchema = /*@__PURE__*/
|
|
19
|
+
messageDesc(file_publish_v1_publish, 0);
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message publish.v1.PublishStatus.
|
|
23
|
+
* Use `create(PublishStatusSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const PublishStatusSchema = /*@__PURE__*/
|
|
26
|
+
messageDesc(file_publish_v1_publish, 1);
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Describes the message publish.v1.PendingEntity.
|
|
30
|
+
* Use `create(PendingEntitySchema)` to create a new message.
|
|
31
|
+
*/
|
|
32
|
+
export const PendingEntitySchema = /*@__PURE__*/
|
|
33
|
+
messageDesc(file_publish_v1_publish, 2);
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Describes the enum publish.v1.SchemaChannel.
|
|
37
|
+
*/
|
|
38
|
+
export const SchemaChannelSchema = /*@__PURE__*/
|
|
39
|
+
enumDesc(file_publish_v1_publish, 0);
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* SchemaChannel selects which version of the GraphQL schema should be
|
|
43
|
+
* served / introspected. PUBLISHED is the default for any caller — newer
|
|
44
|
+
* services that need draft introspection (admin app, sk_ keys with the
|
|
45
|
+
* drafts:read scope sending X-Foir-Schema-Channel: draft) explicitly
|
|
46
|
+
* request DRAFT.
|
|
47
|
+
*
|
|
48
|
+
* @generated from enum publish.v1.SchemaChannel
|
|
49
|
+
*/
|
|
50
|
+
export const SchemaChannel = /*@__PURE__*/
|
|
51
|
+
tsEnum(SchemaChannelSchema);
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Describes the enum publish.v1.BreakingChangeSeverity.
|
|
55
|
+
*/
|
|
56
|
+
export const BreakingChangeSeveritySchema = /*@__PURE__*/
|
|
57
|
+
enumDesc(file_publish_v1_publish, 1);
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @generated from enum publish.v1.BreakingChangeSeverity
|
|
61
|
+
*/
|
|
62
|
+
export const BreakingChangeSeverity = /*@__PURE__*/
|
|
63
|
+
tsEnum(BreakingChangeSeveritySchema);
|
|
64
|
+
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { AcceptShareRequest, AcceptShareResponse, BulkSetSettingsRequest, BulkSetSettingsResponse, ClearRecentlyOpenedRequest, ClearRecentlyOpenedResponse, CreateContextDimensionRequest, CreateContextDimensionResponse, CreateLocaleRequest, CreateLocaleResponse, CreateNoteRequest, CreateNoteResponse, CreateShareRequest, CreateShareResponse, CreateVariantCatalogEntryRequest, CreateVariantCatalogEntryResponse, DeclineShareRequest, DeclineShareResponse, DeleteContextDimensionRequest, DeleteContextDimensionResponse, DeleteCustomerProfileRequest, DeleteCustomerProfileResponse, DeleteLocaleRequest, DeleteLocaleResponse, DeleteNoteRequest, DeleteNoteResponse, DeleteSettingRequest, DeleteSettingResponse, DeleteSettingsByCategoryRequest, DeleteSettingsByCategoryResponse, DeleteVariantCatalogEntryRequest, DeleteVariantCatalogEntryResponse, EnsureDefaultVariantCatalogEntryRequest, EnsureDefaultVariantCatalogEntryResponse, GetContextDimensionByKeyRequest, GetContextDimensionByKeyResponse, GetContextDimensionRequest, GetContextDimensionResponse, GetContextDimensionValuesRequest, GetContextDimensionValuesResponse, GetCustomerProfileRequest, GetCustomerProfileResponse, GetCustomerProfileSchemaRequest, GetCustomerProfileSchemaResponse, GetCustomerResolutionAttributesRequest, GetCustomerResolutionAttributesResponse, GetDefaultLocaleRequest, GetDefaultLocaleResponse, GetDefaultVariantCatalogEntryRequest, GetDefaultVariantCatalogEntryResponse, GetEditorConfigsRequest, GetEditorConfigsResponse, GetLocaleByCodeRequest, GetLocaleByCodeResponse, GetLocaleRequest, GetLocaleResponse, GetNavPreferencesRequest, GetNavPreferencesResponse, GetNoteRequest, GetNoteResponse, GetProjectSchemaRequest, GetProjectSchemaResponse, GetSettingsRequest, GetSettingsResponse, GetShareRequest, GetShareResponse, GetVariantCatalogEntryRequest, GetVariantCatalogEntryResponse, ListAuditLogsRequest, ListAuditLogsResponse, ListContextDimensionsRequest, ListContextDimensionsResponse, ListLocalesRequest, ListLocalesResponse, ListMyMentionsRequest, ListMyMentionsResponse, ListNotesRequest, ListNotesResponse, ListRecentlyOpenedRequest, ListRecentlyOpenedResponse, ListSharesRequest, ListSharesResponse, ListVariantCatalogRequest, ListVariantCatalogResponse, MarkMentionsSeenRequest, MarkMentionsSeenResponse, RemoveRecentlyOpenedRequest, RemoveRecentlyOpenedResponse, ResolveNoteRequest, ResolveNoteResponse, RevokeShareRequest, RevokeShareResponse, SearchCustomerProfilesRequest, SearchCustomerProfilesResponse, SearchNotesRequest, SearchNotesResponse, SetCustomerProfileRequest, SetCustomerProfileResponse, TrackRecentlyOpenedRequest, TrackRecentlyOpenedResponse, UnresolveNoteRequest, UnresolveNoteResponse, UpdateContextDimensionRequest, UpdateContextDimensionResponse, UpdateCustomerProfileSchemaRequest, UpdateCustomerProfileSchemaResponse, UpdateLocaleRequest, UpdateLocaleResponse, UpdateMentionStatusRequest, UpdateMentionStatusResponse, UpdateNavPreferencesRequest, UpdateNavPreferencesResponse, UpdateNoteRequest, UpdateNoteResponse, UpdateSettingRequest, UpdateSettingResponse, UpdateShareRequest, UpdateShareResponse, UpdateVariantCatalogEntryRequest, UpdateVariantCatalogEntryResponse } from "./settings_pbjs";
|
|
6
|
+
import { AcceptShareRequest, AcceptShareResponse, BulkSetSettingsRequest, BulkSetSettingsResponse, ClearRecentlyOpenedRequest, ClearRecentlyOpenedResponse, CreateContextDimensionRequest, CreateContextDimensionResponse, CreateLocaleRequest, CreateLocaleResponse, CreateNoteRequest, CreateNoteResponse, CreateShareRequest, CreateShareResponse, CreateVariantCatalogEntryRequest, CreateVariantCatalogEntryResponse, DeclineShareRequest, DeclineShareResponse, DeleteContextDimensionRequest, DeleteContextDimensionResponse, DeleteCustomerProfileRequest, DeleteCustomerProfileResponse, DeleteLocaleRequest, DeleteLocaleResponse, DeleteNoteRequest, DeleteNoteResponse, DeleteSettingRequest, DeleteSettingResponse, DeleteSettingsByCategoryRequest, DeleteSettingsByCategoryResponse, DeleteVariantCatalogEntryRequest, DeleteVariantCatalogEntryResponse, EnsureDefaultVariantCatalogEntryRequest, EnsureDefaultVariantCatalogEntryResponse, GetContextDimensionByKeyRequest, GetContextDimensionByKeyResponse, GetContextDimensionPublishStatusRequest, GetContextDimensionPublishStatusResponse, GetContextDimensionRequest, GetContextDimensionResponse, GetContextDimensionValuesRequest, GetContextDimensionValuesResponse, GetCustomerProfileRequest, GetCustomerProfileResponse, GetCustomerProfileSchemaRequest, GetCustomerProfileSchemaResponse, GetCustomerResolutionAttributesRequest, GetCustomerResolutionAttributesResponse, GetDefaultLocaleRequest, GetDefaultLocaleResponse, GetDefaultVariantCatalogEntryRequest, GetDefaultVariantCatalogEntryResponse, GetEditorConfigsRequest, GetEditorConfigsResponse, GetLocaleByCodeRequest, GetLocaleByCodeResponse, GetLocaleRequest, GetLocaleResponse, GetNavPreferencesRequest, GetNavPreferencesResponse, GetNoteRequest, GetNoteResponse, GetProfileSchemaPublishStatusRequest, GetProfileSchemaPublishStatusResponse, GetProjectPublishStatusRequest, GetProjectPublishStatusResponse, GetProjectSchemaRequest, GetProjectSchemaResponse, GetSettingsRequest, GetSettingsResponse, GetShareRequest, GetShareResponse, GetVariantCatalogEntryRequest, GetVariantCatalogEntryResponse, ListAuditLogsRequest, ListAuditLogsResponse, ListContextDimensionsRequest, ListContextDimensionsResponse, ListLocalesRequest, ListLocalesResponse, ListMyMentionsRequest, ListMyMentionsResponse, ListNotesRequest, ListNotesResponse, ListRecentlyOpenedRequest, ListRecentlyOpenedResponse, ListSharesRequest, ListSharesResponse, ListVariantCatalogRequest, ListVariantCatalogResponse, MarkMentionsSeenRequest, MarkMentionsSeenResponse, PublishContextDimensionRequest, PublishContextDimensionResponse, PublishProfileSchemaRequest, PublishProfileSchemaResponse, PublishProjectSchemaRequest, PublishProjectSchemaResponse, RemoveRecentlyOpenedRequest, RemoveRecentlyOpenedResponse, ResolveNoteRequest, ResolveNoteResponse, RevokeShareRequest, RevokeShareResponse, SearchCustomerProfilesRequest, SearchCustomerProfilesResponse, SearchNotesRequest, SearchNotesResponse, SetCustomerProfileRequest, SetCustomerProfileResponse, TrackRecentlyOpenedRequest, TrackRecentlyOpenedResponse, UnpublishContextDimensionRequest, UnpublishContextDimensionResponse, UnresolveNoteRequest, UnresolveNoteResponse, UpdateContextDimensionRequest, UpdateContextDimensionResponse, UpdateCustomerProfileSchemaRequest, UpdateCustomerProfileSchemaResponse, UpdateLocaleRequest, UpdateLocaleResponse, UpdateMentionStatusRequest, UpdateMentionStatusResponse, UpdateNavPreferencesRequest, UpdateNavPreferencesResponse, UpdateNoteRequest, UpdateNoteResponse, UpdateSettingRequest, UpdateSettingResponse, UpdateShareRequest, UpdateShareResponse, UpdateVariantCatalogEntryRequest, UpdateVariantCatalogEntryResponse } from "./settings_pbjs";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -582,6 +582,77 @@ export declare const SettingsService: {
|
|
|
582
582
|
readonly O: typeof GetProjectSchemaResponse,
|
|
583
583
|
readonly kind: MethodKind.Unary,
|
|
584
584
|
},
|
|
585
|
+
/**
|
|
586
|
+
* Schema publishing — context dimensions & profile schema. (Models live
|
|
587
|
+
* in ModelsService.PublishModel, operations in OperationsService, auth
|
|
588
|
+
* providers in IdentityService.PublishAuthProvider.)
|
|
589
|
+
*
|
|
590
|
+
* @generated from rpc settings.v1.SettingsService.PublishContextDimension
|
|
591
|
+
*/
|
|
592
|
+
readonly publishContextDimension: {
|
|
593
|
+
readonly name: "PublishContextDimension",
|
|
594
|
+
readonly I: typeof PublishContextDimensionRequest,
|
|
595
|
+
readonly O: typeof PublishContextDimensionResponse,
|
|
596
|
+
readonly kind: MethodKind.Unary,
|
|
597
|
+
},
|
|
598
|
+
/**
|
|
599
|
+
* @generated from rpc settings.v1.SettingsService.UnpublishContextDimension
|
|
600
|
+
*/
|
|
601
|
+
readonly unpublishContextDimension: {
|
|
602
|
+
readonly name: "UnpublishContextDimension",
|
|
603
|
+
readonly I: typeof UnpublishContextDimensionRequest,
|
|
604
|
+
readonly O: typeof UnpublishContextDimensionResponse,
|
|
605
|
+
readonly kind: MethodKind.Unary,
|
|
606
|
+
},
|
|
607
|
+
/**
|
|
608
|
+
* @generated from rpc settings.v1.SettingsService.GetContextDimensionPublishStatus
|
|
609
|
+
*/
|
|
610
|
+
readonly getContextDimensionPublishStatus: {
|
|
611
|
+
readonly name: "GetContextDimensionPublishStatus",
|
|
612
|
+
readonly I: typeof GetContextDimensionPublishStatusRequest,
|
|
613
|
+
readonly O: typeof GetContextDimensionPublishStatusResponse,
|
|
614
|
+
readonly kind: MethodKind.Unary,
|
|
615
|
+
},
|
|
616
|
+
/**
|
|
617
|
+
* @generated from rpc settings.v1.SettingsService.PublishProfileSchema
|
|
618
|
+
*/
|
|
619
|
+
readonly publishProfileSchema: {
|
|
620
|
+
readonly name: "PublishProfileSchema",
|
|
621
|
+
readonly I: typeof PublishProfileSchemaRequest,
|
|
622
|
+
readonly O: typeof PublishProfileSchemaResponse,
|
|
623
|
+
readonly kind: MethodKind.Unary,
|
|
624
|
+
},
|
|
625
|
+
/**
|
|
626
|
+
* @generated from rpc settings.v1.SettingsService.GetProfileSchemaPublishStatus
|
|
627
|
+
*/
|
|
628
|
+
readonly getProfileSchemaPublishStatus: {
|
|
629
|
+
readonly name: "GetProfileSchemaPublishStatus",
|
|
630
|
+
readonly I: typeof GetProfileSchemaPublishStatusRequest,
|
|
631
|
+
readonly O: typeof GetProfileSchemaPublishStatusResponse,
|
|
632
|
+
readonly kind: MethodKind.Unary,
|
|
633
|
+
},
|
|
634
|
+
/**
|
|
635
|
+
* Project-wide aggregator. Lists every entity with pending changes
|
|
636
|
+
* (across all kinds) and a single Publish call that promotes them all
|
|
637
|
+
* in one transaction.
|
|
638
|
+
*
|
|
639
|
+
* @generated from rpc settings.v1.SettingsService.GetProjectPublishStatus
|
|
640
|
+
*/
|
|
641
|
+
readonly getProjectPublishStatus: {
|
|
642
|
+
readonly name: "GetProjectPublishStatus",
|
|
643
|
+
readonly I: typeof GetProjectPublishStatusRequest,
|
|
644
|
+
readonly O: typeof GetProjectPublishStatusResponse,
|
|
645
|
+
readonly kind: MethodKind.Unary,
|
|
646
|
+
},
|
|
647
|
+
/**
|
|
648
|
+
* @generated from rpc settings.v1.SettingsService.PublishProjectSchema
|
|
649
|
+
*/
|
|
650
|
+
readonly publishProjectSchema: {
|
|
651
|
+
readonly name: "PublishProjectSchema",
|
|
652
|
+
readonly I: typeof PublishProjectSchemaRequest,
|
|
653
|
+
readonly O: typeof PublishProjectSchemaResponse,
|
|
654
|
+
readonly kind: MethodKind.Unary,
|
|
655
|
+
},
|
|
585
656
|
}
|
|
586
657
|
};
|
|
587
658
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { AcceptShareRequest, AcceptShareResponse, BulkSetSettingsRequest, BulkSetSettingsResponse, ClearRecentlyOpenedRequest, ClearRecentlyOpenedResponse, CreateContextDimensionRequest, CreateContextDimensionResponse, CreateLocaleRequest, CreateLocaleResponse, CreateNoteRequest, CreateNoteResponse, CreateShareRequest, CreateShareResponse, CreateVariantCatalogEntryRequest, CreateVariantCatalogEntryResponse, DeclineShareRequest, DeclineShareResponse, DeleteContextDimensionRequest, DeleteContextDimensionResponse, DeleteCustomerProfileRequest, DeleteCustomerProfileResponse, DeleteLocaleRequest, DeleteLocaleResponse, DeleteNoteRequest, DeleteNoteResponse, DeleteSettingRequest, DeleteSettingResponse, DeleteSettingsByCategoryRequest, DeleteSettingsByCategoryResponse, DeleteVariantCatalogEntryRequest, DeleteVariantCatalogEntryResponse, EnsureDefaultVariantCatalogEntryRequest, EnsureDefaultVariantCatalogEntryResponse, GetContextDimensionByKeyRequest, GetContextDimensionByKeyResponse, GetContextDimensionRequest, GetContextDimensionResponse, GetContextDimensionValuesRequest, GetContextDimensionValuesResponse, GetCustomerProfileRequest, GetCustomerProfileResponse, GetCustomerProfileSchemaRequest, GetCustomerProfileSchemaResponse, GetCustomerResolutionAttributesRequest, GetCustomerResolutionAttributesResponse, GetDefaultLocaleRequest, GetDefaultLocaleResponse, GetDefaultVariantCatalogEntryRequest, GetDefaultVariantCatalogEntryResponse, GetEditorConfigsRequest, GetEditorConfigsResponse, GetLocaleByCodeRequest, GetLocaleByCodeResponse, GetLocaleRequest, GetLocaleResponse, GetNavPreferencesRequest, GetNavPreferencesResponse, GetNoteRequest, GetNoteResponse, GetProjectSchemaRequest, GetProjectSchemaResponse, GetSettingsRequest, GetSettingsResponse, GetShareRequest, GetShareResponse, GetVariantCatalogEntryRequest, GetVariantCatalogEntryResponse, ListAuditLogsRequest, ListAuditLogsResponse, ListContextDimensionsRequest, ListContextDimensionsResponse, ListLocalesRequest, ListLocalesResponse, ListMyMentionsRequest, ListMyMentionsResponse, ListNotesRequest, ListNotesResponse, ListRecentlyOpenedRequest, ListRecentlyOpenedResponse, ListSharesRequest, ListSharesResponse, ListVariantCatalogRequest, ListVariantCatalogResponse, MarkMentionsSeenRequest, MarkMentionsSeenResponse, RemoveRecentlyOpenedRequest, RemoveRecentlyOpenedResponse, ResolveNoteRequest, ResolveNoteResponse, RevokeShareRequest, RevokeShareResponse, SearchCustomerProfilesRequest, SearchCustomerProfilesResponse, SearchNotesRequest, SearchNotesResponse, SetCustomerProfileRequest, SetCustomerProfileResponse, TrackRecentlyOpenedRequest, TrackRecentlyOpenedResponse, UnresolveNoteRequest, UnresolveNoteResponse, UpdateContextDimensionRequest, UpdateContextDimensionResponse, UpdateCustomerProfileSchemaRequest, UpdateCustomerProfileSchemaResponse, UpdateLocaleRequest, UpdateLocaleResponse, UpdateMentionStatusRequest, UpdateMentionStatusResponse, UpdateNavPreferencesRequest, UpdateNavPreferencesResponse, UpdateNoteRequest, UpdateNoteResponse, UpdateSettingRequest, UpdateSettingResponse, UpdateShareRequest, UpdateShareResponse, UpdateVariantCatalogEntryRequest, UpdateVariantCatalogEntryResponse } from "./settings_pbjs";
|
|
6
|
+
import { AcceptShareRequest, AcceptShareResponse, BulkSetSettingsRequest, BulkSetSettingsResponse, ClearRecentlyOpenedRequest, ClearRecentlyOpenedResponse, CreateContextDimensionRequest, CreateContextDimensionResponse, CreateLocaleRequest, CreateLocaleResponse, CreateNoteRequest, CreateNoteResponse, CreateShareRequest, CreateShareResponse, CreateVariantCatalogEntryRequest, CreateVariantCatalogEntryResponse, DeclineShareRequest, DeclineShareResponse, DeleteContextDimensionRequest, DeleteContextDimensionResponse, DeleteCustomerProfileRequest, DeleteCustomerProfileResponse, DeleteLocaleRequest, DeleteLocaleResponse, DeleteNoteRequest, DeleteNoteResponse, DeleteSettingRequest, DeleteSettingResponse, DeleteSettingsByCategoryRequest, DeleteSettingsByCategoryResponse, DeleteVariantCatalogEntryRequest, DeleteVariantCatalogEntryResponse, EnsureDefaultVariantCatalogEntryRequest, EnsureDefaultVariantCatalogEntryResponse, GetContextDimensionByKeyRequest, GetContextDimensionByKeyResponse, GetContextDimensionPublishStatusRequest, GetContextDimensionPublishStatusResponse, GetContextDimensionRequest, GetContextDimensionResponse, GetContextDimensionValuesRequest, GetContextDimensionValuesResponse, GetCustomerProfileRequest, GetCustomerProfileResponse, GetCustomerProfileSchemaRequest, GetCustomerProfileSchemaResponse, GetCustomerResolutionAttributesRequest, GetCustomerResolutionAttributesResponse, GetDefaultLocaleRequest, GetDefaultLocaleResponse, GetDefaultVariantCatalogEntryRequest, GetDefaultVariantCatalogEntryResponse, GetEditorConfigsRequest, GetEditorConfigsResponse, GetLocaleByCodeRequest, GetLocaleByCodeResponse, GetLocaleRequest, GetLocaleResponse, GetNavPreferencesRequest, GetNavPreferencesResponse, GetNoteRequest, GetNoteResponse, GetProfileSchemaPublishStatusRequest, GetProfileSchemaPublishStatusResponse, GetProjectPublishStatusRequest, GetProjectPublishStatusResponse, GetProjectSchemaRequest, GetProjectSchemaResponse, GetSettingsRequest, GetSettingsResponse, GetShareRequest, GetShareResponse, GetVariantCatalogEntryRequest, GetVariantCatalogEntryResponse, ListAuditLogsRequest, ListAuditLogsResponse, ListContextDimensionsRequest, ListContextDimensionsResponse, ListLocalesRequest, ListLocalesResponse, ListMyMentionsRequest, ListMyMentionsResponse, ListNotesRequest, ListNotesResponse, ListRecentlyOpenedRequest, ListRecentlyOpenedResponse, ListSharesRequest, ListSharesResponse, ListVariantCatalogRequest, ListVariantCatalogResponse, MarkMentionsSeenRequest, MarkMentionsSeenResponse, PublishContextDimensionRequest, PublishContextDimensionResponse, PublishProfileSchemaRequest, PublishProfileSchemaResponse, PublishProjectSchemaRequest, PublishProjectSchemaResponse, RemoveRecentlyOpenedRequest, RemoveRecentlyOpenedResponse, ResolveNoteRequest, ResolveNoteResponse, RevokeShareRequest, RevokeShareResponse, SearchCustomerProfilesRequest, SearchCustomerProfilesResponse, SearchNotesRequest, SearchNotesResponse, SetCustomerProfileRequest, SetCustomerProfileResponse, TrackRecentlyOpenedRequest, TrackRecentlyOpenedResponse, UnpublishContextDimensionRequest, UnpublishContextDimensionResponse, UnresolveNoteRequest, UnresolveNoteResponse, UpdateContextDimensionRequest, UpdateContextDimensionResponse, UpdateCustomerProfileSchemaRequest, UpdateCustomerProfileSchemaResponse, UpdateLocaleRequest, UpdateLocaleResponse, UpdateMentionStatusRequest, UpdateMentionStatusResponse, UpdateNavPreferencesRequest, UpdateNavPreferencesResponse, UpdateNoteRequest, UpdateNoteResponse, UpdateSettingRequest, UpdateSettingResponse, UpdateShareRequest, UpdateShareResponse, UpdateVariantCatalogEntryRequest, UpdateVariantCatalogEntryResponse } from "./settings_pbjs";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -582,6 +582,77 @@ export const SettingsService = {
|
|
|
582
582
|
O: GetProjectSchemaResponse,
|
|
583
583
|
kind: MethodKind.Unary,
|
|
584
584
|
},
|
|
585
|
+
/**
|
|
586
|
+
* Schema publishing — context dimensions & profile schema. (Models live
|
|
587
|
+
* in ModelsService.PublishModel, operations in OperationsService, auth
|
|
588
|
+
* providers in IdentityService.PublishAuthProvider.)
|
|
589
|
+
*
|
|
590
|
+
* @generated from rpc settings.v1.SettingsService.PublishContextDimension
|
|
591
|
+
*/
|
|
592
|
+
publishContextDimension: {
|
|
593
|
+
name: "PublishContextDimension",
|
|
594
|
+
I: PublishContextDimensionRequest,
|
|
595
|
+
O: PublishContextDimensionResponse,
|
|
596
|
+
kind: MethodKind.Unary,
|
|
597
|
+
},
|
|
598
|
+
/**
|
|
599
|
+
* @generated from rpc settings.v1.SettingsService.UnpublishContextDimension
|
|
600
|
+
*/
|
|
601
|
+
unpublishContextDimension: {
|
|
602
|
+
name: "UnpublishContextDimension",
|
|
603
|
+
I: UnpublishContextDimensionRequest,
|
|
604
|
+
O: UnpublishContextDimensionResponse,
|
|
605
|
+
kind: MethodKind.Unary,
|
|
606
|
+
},
|
|
607
|
+
/**
|
|
608
|
+
* @generated from rpc settings.v1.SettingsService.GetContextDimensionPublishStatus
|
|
609
|
+
*/
|
|
610
|
+
getContextDimensionPublishStatus: {
|
|
611
|
+
name: "GetContextDimensionPublishStatus",
|
|
612
|
+
I: GetContextDimensionPublishStatusRequest,
|
|
613
|
+
O: GetContextDimensionPublishStatusResponse,
|
|
614
|
+
kind: MethodKind.Unary,
|
|
615
|
+
},
|
|
616
|
+
/**
|
|
617
|
+
* @generated from rpc settings.v1.SettingsService.PublishProfileSchema
|
|
618
|
+
*/
|
|
619
|
+
publishProfileSchema: {
|
|
620
|
+
name: "PublishProfileSchema",
|
|
621
|
+
I: PublishProfileSchemaRequest,
|
|
622
|
+
O: PublishProfileSchemaResponse,
|
|
623
|
+
kind: MethodKind.Unary,
|
|
624
|
+
},
|
|
625
|
+
/**
|
|
626
|
+
* @generated from rpc settings.v1.SettingsService.GetProfileSchemaPublishStatus
|
|
627
|
+
*/
|
|
628
|
+
getProfileSchemaPublishStatus: {
|
|
629
|
+
name: "GetProfileSchemaPublishStatus",
|
|
630
|
+
I: GetProfileSchemaPublishStatusRequest,
|
|
631
|
+
O: GetProfileSchemaPublishStatusResponse,
|
|
632
|
+
kind: MethodKind.Unary,
|
|
633
|
+
},
|
|
634
|
+
/**
|
|
635
|
+
* Project-wide aggregator. Lists every entity with pending changes
|
|
636
|
+
* (across all kinds) and a single Publish call that promotes them all
|
|
637
|
+
* in one transaction.
|
|
638
|
+
*
|
|
639
|
+
* @generated from rpc settings.v1.SettingsService.GetProjectPublishStatus
|
|
640
|
+
*/
|
|
641
|
+
getProjectPublishStatus: {
|
|
642
|
+
name: "GetProjectPublishStatus",
|
|
643
|
+
I: GetProjectPublishStatusRequest,
|
|
644
|
+
O: GetProjectPublishStatusResponse,
|
|
645
|
+
kind: MethodKind.Unary,
|
|
646
|
+
},
|
|
647
|
+
/**
|
|
648
|
+
* @generated from rpc settings.v1.SettingsService.PublishProjectSchema
|
|
649
|
+
*/
|
|
650
|
+
publishProjectSchema: {
|
|
651
|
+
name: "PublishProjectSchema",
|
|
652
|
+
I: PublishProjectSchemaRequest,
|
|
653
|
+
O: PublishProjectSchemaResponse,
|
|
654
|
+
kind: MethodKind.Unary,
|
|
655
|
+
},
|
|
585
656
|
}
|
|
586
657
|
};
|
|
587
658
|
|